112169Sgabeblack@google.com// -*- mode:c++ -*-
212169Sgabeblack@google.com
312169Sgabeblack@google.com// Copyright 2017 Google, Inc.
412169Sgabeblack@google.com//
512169Sgabeblack@google.com// The license below extends only to copyright in the software and shall
612169Sgabeblack@google.com// not be construed as granting a license to any other intellectual
712169Sgabeblack@google.com// property including but not limited to intellectual property relating
812169Sgabeblack@google.com// to a hardware implementation of the functionality of the software
912169Sgabeblack@google.com// licensed hereunder.  You may use the software subject to the license
1012169Sgabeblack@google.com// terms below provided that you ensure that this notice is replicated
1112169Sgabeblack@google.com// unmodified and in its entirety in all distributions of the software,
1212169Sgabeblack@google.com// modified or unmodified, in source code or in binary form.
1312169Sgabeblack@google.com//
1412169Sgabeblack@google.com// Redistribution and use in source and binary forms, with or without
1512169Sgabeblack@google.com// modification, are permitted provided that the following conditions are
1612169Sgabeblack@google.com// met: redistributions of source code must retain the above copyright
1712169Sgabeblack@google.com// notice, this list of conditions and the following disclaimer;
1812169Sgabeblack@google.com// redistributions in binary form must reproduce the above copyright
1912169Sgabeblack@google.com// notice, this list of conditions and the following disclaimer in the
2012169Sgabeblack@google.com// documentation and/or other materials provided with the distribution;
2112169Sgabeblack@google.com// neither the name of the copyright holders nor the names of its
2212169Sgabeblack@google.com// contributors may be used to endorse or promote products derived from
2312169Sgabeblack@google.com// this software without specific prior written permission.
2412169Sgabeblack@google.com//
2512169Sgabeblack@google.com// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
2612169Sgabeblack@google.com// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
2712169Sgabeblack@google.com// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
2812169Sgabeblack@google.com// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
2912169Sgabeblack@google.com// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
3012169Sgabeblack@google.com// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
3112169Sgabeblack@google.com// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
3212169Sgabeblack@google.com// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
3312169Sgabeblack@google.com// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
3412169Sgabeblack@google.com// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
3512169Sgabeblack@google.com// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3612169Sgabeblack@google.com//
3712169Sgabeblack@google.com// Authors: Gabe Black
3812169Sgabeblack@google.com
3912169Sgabeblack@google.comdef format CondInst(cond, *opTypeSet) {{
4012169Sgabeblack@google.com    blocks = OutputBlocks()
4112169Sgabeblack@google.com
4212169Sgabeblack@google.com    if_blocks = specializeInst(Name, list(opTypeSet), EmulEnv())
4312169Sgabeblack@google.com    blocks.append(if_blocks)
4412169Sgabeblack@google.com    else_blocks = specializeInst('UD2', [], EmulEnv())
4512169Sgabeblack@google.com    blocks.append(else_blocks)
4612169Sgabeblack@google.com
4712169Sgabeblack@google.com    (header_output, decoder_output,
4812169Sgabeblack@google.com     decode_block, exec_output) = blocks.makeList()
4912169Sgabeblack@google.com    decode_block = '\tif (%s) {\n%s\n\t} else {\n%s\n}\n' % \
5012169Sgabeblack@google.com        (cond, if_blocks.decode_block, else_blocks.decode_block)
5112169Sgabeblack@google.com}};
52