int.isa revision 12616:4b463b4dc098
1// -*- mode:c++ -*-
2
3// Copyright (c) 2007 MIPS Technologies, Inc.
4// All rights reserved.
5//
6// Redistribution and use in source and binary forms, with or without
7// modification, are permitted provided that the following conditions are
8// met: redistributions of source code must retain the above copyright
9// notice, this list of conditions and the following disclaimer;
10// redistributions in binary form must reproduce the above copyright
11// notice, this list of conditions and the following disclaimer in the
12// documentation and/or other materials provided with the distribution;
13// neither the name of the copyright holders nor the names of its
14// contributors may be used to endorse or promote products derived from
15// this software without specific prior written permission.
16//
17// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28//
29// Authors: Korey Sewell
30
31////////////////////////////////////////////////////////////////////
32//
33// Integer operate instructions
34//
35output header {{
36#include <iostream>
37    using namespace std;
38        /**
39         * Base class for integer operations.
40         */
41        class IntOp : public MipsStaticInst
42        {
43                protected:
44
45                /// Constructor
46                IntOp(const char *mnem, MachInst _machInst, OpClass __opClass) :
47                                MipsStaticInst(mnem, _machInst, __opClass)
48                {
49                }
50
51                std::string generateDisassembly(
52                        Addr pc, const SymbolTable *symtab) const override;
53        };
54
55
56        class HiLoOp: public IntOp
57        {
58                protected:
59
60                /// Constructor
61                HiLoOp(const char *mnem, MachInst _machInst, OpClass __opClass) :
62                                IntOp(mnem, _machInst, __opClass)
63                {
64                }
65
66                std::string generateDisassembly(
67                        Addr pc, const SymbolTable *symtab) const override;
68        };
69
70        class HiLoRsSelOp: public HiLoOp
71        {
72                protected:
73
74                /// Constructor
75                HiLoRsSelOp(const char *mnem, MachInst _machInst, OpClass __opClass) :
76                                HiLoOp(mnem, _machInst, __opClass)
77                {
78                }
79
80                std::string generateDisassembly(
81                        Addr pc, const SymbolTable *symtab) const override;
82        };
83
84        class HiLoRdSelOp: public HiLoOp
85        {
86                protected:
87
88                /// Constructor
89                HiLoRdSelOp(const char *mnem, MachInst _machInst, OpClass __opClass) :
90                                HiLoOp(mnem, _machInst, __opClass)
91                {
92                }
93
94                std::string generateDisassembly(
95                        Addr pc, const SymbolTable *symtab) const override;
96        };
97
98        class HiLoRdSelValOp: public HiLoOp
99        {
100                protected:
101
102                /// Constructor
103                HiLoRdSelValOp(const char *mnem, MachInst _machInst, OpClass __opClass) :
104                                HiLoOp(mnem, _machInst, __opClass)
105                {
106                }
107
108                std::string generateDisassembly(
109                        Addr pc, const SymbolTable *symtab) const override;
110        };
111
112        class IntImmOp : public MipsStaticInst
113        {
114                protected:
115
116                int16_t imm;
117                int32_t sextImm;
118                uint32_t zextImm;
119
120                /// Constructor
121                IntImmOp(const char *mnem, MachInst _machInst, OpClass __opClass) :
122                    MipsStaticInst(mnem, _machInst, __opClass),imm(INTIMM),
123                    sextImm(INTIMM),zextImm(0x0000FFFF & INTIMM)
124                {
125                    //If Bit 15 is 1 then Sign Extend
126                    int32_t temp = sextImm & 0x00008000;
127                    if (temp > 0 && strcmp(mnemonic,"lui") != 0) {
128                        sextImm |= 0xFFFF0000;
129                    }
130                }
131
132                std::string generateDisassembly(
133                        Addr pc, const SymbolTable *symtab) const override;
134        };
135
136}};
137
138// HiLo instruction class execute method template.
139def template HiLoExecute {{
140        Fault %(class_name)s::execute(
141            ExecContext *xc, Trace::InstRecord *traceData) const
142        {
143                Fault fault = NoFault;
144
145                %(fp_enable_check)s;
146                %(op_decl)s;
147                %(op_rd)s;
148                %(code)s;
149
150                if(fault == NoFault)
151                {
152                    %(op_wb)s;
153                }
154                return fault;
155        }
156}};
157
158// HiLoRsSel instruction class execute method template.
159def template HiLoRsSelExecute {{
160        Fault %(class_name)s::execute(
161            ExecContext *xc, Trace::InstRecord *traceData) const
162        {
163                Fault fault = NoFault;
164
165                %(op_decl)s;
166
167                if( ACSRC > 0 && !isDspEnabled(xc) )
168                {
169                    fault = std::make_shared<DspStateDisabledFault>();
170                }
171                else
172                {
173                    %(op_rd)s;
174                    %(code)s;
175                }
176
177                if(fault == NoFault)
178                {
179                    %(op_wb)s;
180                }
181                return fault;
182        }
183}};
184
185// HiLoRdSel instruction class execute method template.
186def template HiLoRdSelExecute {{
187        Fault %(class_name)s::execute(
188            ExecContext *xc, Trace::InstRecord *traceData) const
189        {
190                Fault fault = NoFault;
191
192                %(op_decl)s;
193
194                if( ACDST > 0 && !isDspEnabled(xc) )
195                {
196                    fault = std::make_shared<DspStateDisabledFault>();
197                }
198                else
199                {
200                    %(op_rd)s;
201                    %(code)s;
202                }
203
204                if(fault == NoFault)
205                {
206                    %(op_wb)s;
207                }
208                return fault;
209        }
210}};
211
212//Outputs to decoder.cc
213output decoder {{
214        std::string IntOp::generateDisassembly(Addr pc, const SymbolTable *symtab) const
215        {
216            std::stringstream ss;
217
218            ccprintf(ss, "%-10s ", mnemonic);
219
220            // just print the first dest... if there's a second one,
221            // it's generally implicit
222            if (_numDestRegs > 0) {
223                printReg(ss, _destRegIdx[0]);
224                ss << ", ";
225            }
226
227            // just print the first two source regs... if there's
228            // a third one, it's a read-modify-write dest (Rc),
229            // e.g. for CMOVxx
230            if (_numSrcRegs > 0) {
231                printReg(ss, _srcRegIdx[0]);
232            }
233
234            if (_numSrcRegs > 1) {
235                ss << ", ";
236                printReg(ss, _srcRegIdx[1]);
237            }
238
239            return ss.str();
240        }
241
242        std::string HiLoOp::generateDisassembly(Addr pc, const SymbolTable *symtab) const
243        {
244            std::stringstream ss;
245
246            ccprintf(ss, "%-10s ", mnemonic);
247
248            //Destination Registers are implicit for HI/LO ops
249            if (_numSrcRegs > 0) {
250                printReg(ss, _srcRegIdx[0]);
251            }
252
253            if (_numSrcRegs > 1) {
254                ss << ", ";
255                printReg(ss, _srcRegIdx[1]);
256            }
257
258            return ss.str();
259        }
260
261        std::string HiLoRsSelOp::generateDisassembly(Addr pc, const SymbolTable *symtab) const
262        {
263            std::stringstream ss;
264
265            ccprintf(ss, "%-10s ", mnemonic);
266
267            if (_numDestRegs > 0 && _destRegIdx[0].index() < 32) {
268                printReg(ss, _destRegIdx[0]);
269            } else if (_numSrcRegs > 0 && _srcRegIdx[0].index() < 32) {
270                printReg(ss, _srcRegIdx[0]);
271            }
272
273            return ss.str();
274        }
275
276        std::string HiLoRdSelOp::generateDisassembly(Addr pc, const SymbolTable *symtab) const
277        {
278            std::stringstream ss;
279
280            ccprintf(ss, "%-10s ", mnemonic);
281
282            if (_numDestRegs > 0 && _destRegIdx[0].index() < 32) {
283                printReg(ss, _destRegIdx[0]);
284            } else if (_numSrcRegs > 0 && _srcRegIdx[0].index() < 32) {
285                printReg(ss, _srcRegIdx[0]);
286            }
287
288            return ss.str();
289        }
290
291        std::string HiLoRdSelValOp::generateDisassembly(Addr pc, const SymbolTable *symtab) const
292        {
293            std::stringstream ss;
294
295            ccprintf(ss, "%-10s ", mnemonic);
296
297            if (_numDestRegs > 0 && _destRegIdx[0].index() < 32) {
298                printReg(ss, _destRegIdx[0]);
299            } else if (_numSrcRegs > 0 && _srcRegIdx[0].index() < 32) {
300                printReg(ss, _srcRegIdx[0]);
301            }
302
303            return ss.str();
304        }
305
306        std::string IntImmOp::generateDisassembly(Addr pc, const SymbolTable *symtab) const
307        {
308            std::stringstream ss;
309
310            ccprintf(ss, "%-10s ", mnemonic);
311
312            if (_numDestRegs > 0) {
313                printReg(ss, _destRegIdx[0]);
314            }
315
316            ss << ", ";
317
318            if (_numSrcRegs > 0) {
319                printReg(ss, _srcRegIdx[0]);
320                ss << ", ";
321            }
322
323            if(strcmp(mnemonic,"lui") == 0)
324                ccprintf(ss, "0x%x ", sextImm);
325            else
326                ss << (int) sextImm;
327
328            return ss.str();
329        }
330
331}};
332
333def format IntOp(code, *opt_flags) {{
334    iop = InstObjParams(name, Name, 'IntOp', code, opt_flags)
335    header_output = BasicDeclare.subst(iop)
336    decoder_output = BasicConstructor.subst(iop)
337    decode_block = RegNopCheckDecode.subst(iop)
338    exec_output = BasicExecute.subst(iop)
339}};
340
341def format IntImmOp(code, *opt_flags) {{
342    iop = InstObjParams(name, Name, 'IntImmOp', code, opt_flags)
343    header_output = BasicDeclare.subst(iop)
344    decoder_output = BasicConstructor.subst(iop)
345    decode_block = ImmNopCheckDecode.subst(iop)
346    exec_output = BasicExecute.subst(iop)
347}};
348
349def format HiLoRsSelOp(code, *opt_flags) {{
350    iop = InstObjParams(name, Name, 'HiLoRsSelOp', code, opt_flags)
351    header_output = BasicDeclare.subst(iop)
352    decoder_output = BasicConstructor.subst(iop)
353    decode_block = BasicDecode.subst(iop)
354    exec_output = HiLoRsSelExecute.subst(iop)
355}};
356
357def format HiLoRdSelOp(code, *opt_flags) {{
358    iop = InstObjParams(name, Name, 'HiLoRdSelOp', code, opt_flags)
359    header_output = BasicDeclare.subst(iop)
360    decoder_output = BasicConstructor.subst(iop)
361    decode_block = BasicDecode.subst(iop)
362    exec_output = HiLoRdSelExecute.subst(iop)
363}};
364
365def format HiLoRdSelValOp(code, *opt_flags) {{
366
367    if '_sd' in code:
368        code = 'int64_t ' + code
369    elif '_ud' in code:
370        code = 'uint64_t ' + code
371
372    code += 'HI_RD_SEL = val<63:32>;\n'
373    code += 'LO_RD_SEL = val<31:0>;\n'
374
375    iop = InstObjParams(name, Name, 'HiLoRdSelOp', code, opt_flags)
376    header_output = BasicDeclare.subst(iop)
377    decoder_output = BasicConstructor.subst(iop)
378    decode_block = BasicDecode.subst(iop)
379    exec_output = HiLoRdSelExecute.subst(iop)
380}};
381
382def format HiLoOp(code, *opt_flags) {{
383    iop = InstObjParams(name, Name, 'HiLoOp', code, opt_flags)
384    header_output = BasicDeclare.subst(iop)
385    decoder_output = BasicConstructor.subst(iop)
386    decode_block = BasicDecode.subst(iop)
387    exec_output = HiLoExecute.subst(iop)
388}};
389