data.isa revision 7181:10f3db60741a
1// -*- mode:c++ -*-
2
3// Copyright (c) 2010 ARM Limited
4// All rights reserved
5//
6// The license below extends only to copyright in the software and shall
7// not be construed as granting a license to any other intellectual
8// property including but not limited to intellectual property relating
9// to a hardware implementation of the functionality of the software
10// licensed hereunder.  You may use the software subject to the license
11// terms below provided that you ensure that this notice is replicated
12// unmodified and in its entirety in all distributions of the software,
13// modified or unmodified, in source code or in binary form.
14//
15// Redistribution and use in source and binary forms, with or without
16// modification, are permitted provided that the following conditions are
17// met: redistributions of source code must retain the above copyright
18// notice, this list of conditions and the following disclaimer;
19// redistributions in binary form must reproduce the above copyright
20// notice, this list of conditions and the following disclaimer in the
21// documentation and/or other materials provided with the distribution;
22// neither the name of the copyright holders nor the names of its
23// contributors may be used to endorse or promote products derived from
24// this software without specific prior written permission.
25//
26// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
27// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
28// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
29// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
30// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
31// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
32// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
33// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
34// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
35// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
36// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
37//
38// Authors: Gabe Black
39
40let {{
41
42    header_output = ""
43    decoder_output = ""
44    exec_output = ""
45
46    calcQCode = '''
47        cprintf("canOverflow: %%d\\n", Dest < resTemp);
48        replaceBits(CondCodes, 27, Dest < resTemp);
49    '''
50
51    calcCcCode = '''
52        uint16_t _ic, _iv, _iz, _in;
53        _in = (resTemp >> %(negBit)d) & 1;
54        _iz = (resTemp == 0);
55        _iv = %(ivValue)s & 1;
56        _ic = %(icValue)s & 1;
57
58        CondCodes =  _in << 31 | _iz << 30 | _ic << 29 | _iv << 28 |
59                    (CondCodes & 0x0FFFFFFF);
60
61        DPRINTF(Arm, "(in, iz, ic, iv) = (%%d, %%d, %%d, %%d)\\n",
62                     _in, _iz, _ic, _iv);
63       '''
64
65    # Dict of code to set the carry flag. (imm, reg, reg-reg)
66    oldC = 'CondCodes<29:>'
67    oldV = 'CondCodes<28:>'
68    carryCode = {
69        "none": (oldC, oldC, oldC),
70        "llbit": (oldC, oldC, oldC),
71        "overflow": ('0', '0', '0'),
72        "add": ('findCarry(32, resTemp, Op1, secondOp)',
73                'findCarry(32, resTemp, Op1, secondOp)',
74                'findCarry(32, resTemp, Op1, secondOp)'),
75        "sub": ('findCarry(32, resTemp, Op1, ~secondOp)',
76                'findCarry(32, resTemp, Op1, ~secondOp)',
77                'findCarry(32, resTemp, Op1, ~secondOp)'),
78        "rsb": ('findCarry(32, resTemp, secondOp, ~Op1)',
79                'findCarry(32, resTemp, secondOp, ~Op1)',
80                'findCarry(32, resTemp, secondOp, ~Op1)'),
81        "logic": ('(rotC ? bits(secondOp, 31) : %s)' % oldC,
82                  'shift_carry_imm(Op2, shiftAmt, shiftType, %s)' % oldC,
83                  'shift_carry_rs(Op2, Shift<7:0>, shiftType, %s)' % oldC)
84    }
85    # Dict of code to set the overflow flag.
86    overflowCode = {
87        "none": oldV,
88        "llbit": oldV,
89        "overflow": '0',
90        "add": 'findOverflow(32, resTemp, Op1, secondOp)',
91        "sub": 'findOverflow(32, resTemp, Op1, ~secondOp)',
92        "rsb": 'findOverflow(32, resTemp, secondOp, ~Op1)',
93        "logic": oldV
94    }
95
96    secondOpRe = re.compile("secondOp")
97    immOp2 = "imm"
98    regOp2 = "shift_rm_imm(Op2, shiftAmt, shiftType, CondCodes<29:>)"
99    regRegOp2 = "shift_rm_rs(Op2, Shift<7:0>, shiftType, CondCodes<29:>)"
100
101    def buildDataInst(mnem, code, flagType = "logic"):
102        global header_output, decoder_output, exec_output
103        cCode = carryCode[flagType]
104        vCode = overflowCode[flagType]
105        negBit = 31
106        if flagType == "llbit":
107            negBit = 63
108        if flagType == "overflow":
109            immCcCode = regCcCode = regRegCcCode = calcQCode
110        else:
111            immCcCode = calcCcCode % {
112                "icValue": secondOpRe.sub(immOp2, cCode[0]),
113                "ivValue": secondOpRe.sub(immOp2, vCode),
114                "negBit": negBit
115            }
116            regCcCode = calcCcCode % {
117                "icValue": secondOpRe.sub(regOp2, cCode[1]),
118                "ivValue": secondOpRe.sub(regOp2, vCode),
119                "negBit": negBit
120            }
121            regRegCcCode = calcCcCode % {
122                "icValue": secondOpRe.sub(regRegOp2, cCode[2]),
123                "ivValue": secondOpRe.sub(regRegOp2, vCode),
124                "negBit": negBit
125            }
126        immCode = secondOpRe.sub(immOp2, code)
127        regCode = secondOpRe.sub(regOp2, code)
128        regRegCode = secondOpRe.sub(regRegOp2, code)
129        immIop = InstObjParams(mnem, mnem.capitalize() + "Imm", "DataImmOp",
130                               {"code" : immCode,
131                                "predicate_test": predicateTest})
132        regIop = InstObjParams(mnem, mnem.capitalize() + "Reg", "DataRegOp",
133                               {"code" : regCode,
134                                "predicate_test": predicateTest})
135        regRegIop = InstObjParams(mnem, mnem.capitalize() + "RegReg",
136                                  "DataRegRegOp",
137                                  {"code" : regRegCode,
138                                   "predicate_test": predicateTest})
139        immIopCc = InstObjParams(mnem + "s", mnem.capitalize() + "ImmCc",
140                                 "DataImmOp",
141                                 {"code" : immCode + immCcCode,
142                                  "predicate_test": predicateTest})
143        regIopCc = InstObjParams(mnem + "s", mnem.capitalize() + "RegCc",
144                                 "DataRegOp",
145                                 {"code" : regCode + regCcCode,
146                                  "predicate_test": predicateTest})
147        regRegIopCc = InstObjParams(mnem + "s",
148                                    mnem.capitalize() + "RegRegCc",
149                                    "DataRegRegOp",
150                                    {"code" : regRegCode + regRegCcCode,
151                                     "predicate_test": predicateTest})
152        header_output += DataImmDeclare.subst(immIop) + \
153                         DataImmDeclare.subst(immIopCc) + \
154                         DataRegDeclare.subst(regIop) + \
155                         DataRegDeclare.subst(regIopCc) + \
156                         DataRegRegDeclare.subst(regRegIop) + \
157                         DataRegRegDeclare.subst(regRegIopCc)
158        decoder_output += DataImmConstructor.subst(immIop) + \
159                          DataImmConstructor.subst(immIopCc) + \
160                          DataRegConstructor.subst(regIop) + \
161                          DataRegConstructor.subst(regIopCc) + \
162                          DataRegRegConstructor.subst(regRegIop) + \
163                          DataRegRegConstructor.subst(regRegIopCc)
164        exec_output += PredOpExecute.subst(immIop) + \
165                       PredOpExecute.subst(immIopCc) + \
166                       PredOpExecute.subst(regIop) + \
167                       PredOpExecute.subst(regIopCc) + \
168                       PredOpExecute.subst(regRegIop) + \
169                       PredOpExecute.subst(regRegIopCc)
170
171    buildDataInst("and", "Dest = resTemp = Op1 & secondOp;")
172    buildDataInst("eor", "Dest = resTemp = Op1 ^ secondOp;")
173    buildDataInst("sub", "Dest = resTemp = Op1 - secondOp;", "sub")
174    buildDataInst("rsb", "Dest = resTemp = secondOp - Op1;", "rsb")
175    buildDataInst("add", "Dest = resTemp = Op1 + secondOp;", "add")
176    buildDataInst("adc", "Dest = resTemp = Op1 + secondOp + %s;" % oldC, "add")
177    buildDataInst("sbc", "Dest = resTemp = Op1 - secondOp - !%s;" % oldC, "sub")
178    buildDataInst("rsc", "Dest = resTemp = secondOp - Op1 - !%s;" % oldC, "rsb")
179    buildDataInst("tst", "resTemp = Op1 & secondOp;")
180    buildDataInst("teq", "resTemp = Op1 ^ secondOp;")
181    buildDataInst("cmp", "resTemp = Op1 - secondOp;", "sub")
182    buildDataInst("cmn", "resTemp = Op1 + secondOp;", "add")
183    buildDataInst("orr", "Dest = resTemp = Op1 | secondOp;")
184    buildDataInst("orn", "Dest = resTemp = Op1 | ~secondOp;")
185    buildDataInst("mov", "Dest = resTemp = secondOp;")
186    buildDataInst("bic", "Dest = resTemp = Op1 & ~secondOp;")
187    buildDataInst("mvn", "Dest = resTemp = ~secondOp;")
188    buildDataInst("movt",
189            "Dest = resTemp = insertBits(Op1, 31, 16, secondOp);")
190}};
191