util.isa revision 2706
1// -*- mode:c++ -*- 2 3// Copyright (c) 2003-2006 The Regents of The University of Michigan 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: Steve Reinhardt 30// Korey Sewell 31 32let {{ 33def LoadStoreBase(name, Name, ea_code, memacc_code, mem_flags, inst_flags, 34 postacc_code = '', base_class = 'Memory', 35 decode_template = BasicDecode, exec_template_base = ''): 36 # Make sure flags are in lists (convert to lists if not). 37 mem_flags = makeList(mem_flags) 38 inst_flags = makeList(inst_flags) 39 40 # add hook to get effective addresses into execution trace output. 41 ea_code += '\nif (traceData) { traceData->setAddr(EA); }\n' 42 43 # generate code block objects 44 ea_cblk = CodeBlock(ea_code) 45 memacc_cblk = CodeBlock(memacc_code) 46 postacc_cblk = CodeBlock(postacc_code) 47 48 # Some CPU models execute the memory operation as an atomic unit, 49 # while others want to separate them into an effective address 50 # computation and a memory access operation. As a result, we need 51 # to generate three StaticInst objects. Note that the latter two 52 # are nested inside the larger "atomic" one. 53 54 # generate InstObjParams for EAComp object 55 ea_iop = InstObjParams(name, Name, base_class, ea_cblk, inst_flags) 56 57 # generate InstObjParams for MemAcc object 58 memacc_iop = InstObjParams(name, Name, base_class, memacc_cblk, inst_flags) 59 # in the split execution model, the MemAcc portion is responsible 60 # for the post-access code. 61 memacc_iop.postacc_code = postacc_cblk.code 62 63 # generate InstObjParams for InitiateAcc, CompleteAcc object 64 # The code used depends on the template being used 65 if (exec_template_base == 'Load'): 66 initiateacc_cblk = CodeBlock(ea_code + memacc_code) 67 completeacc_cblk = CodeBlock(memacc_code + postacc_code) 68 elif (exec_template_base == 'Store'): 69 initiateacc_cblk = CodeBlock(ea_code + memacc_code) 70 completeacc_cblk = CodeBlock(postacc_code) 71 else: 72 initiateacc_cblk = '' 73 completeacc_cblk = '' 74 75 initiateacc_iop = InstObjParams(name, Name, base_class, initiateacc_cblk, 76 inst_flags) 77 78 completeacc_iop = InstObjParams(name, Name, base_class, completeacc_cblk, 79 inst_flags) 80 81 if (exec_template_base == 'Load'): 82 initiateacc_iop.ea_code = ea_cblk.code 83 initiateacc_iop.memacc_code = memacc_cblk.code 84 completeacc_iop.memacc_code = memacc_cblk.code 85 completeacc_iop.postacc_code = postacc_cblk.code 86 elif (exec_template_base == 'Store'): 87 initiateacc_iop.ea_code = ea_cblk.code 88 initiateacc_iop.memacc_code = memacc_cblk.code 89 completeacc_iop.postacc_code = postacc_cblk.code 90 91 # generate InstObjParams for unified execution 92 cblk = CodeBlock(ea_code + memacc_code + postacc_code) 93 iop = InstObjParams(name, Name, base_class, cblk, inst_flags) 94 95 iop.ea_constructor = ea_cblk.constructor 96 iop.ea_code = ea_cblk.code 97 iop.memacc_constructor = memacc_cblk.constructor 98 iop.memacc_code = memacc_cblk.code 99 iop.postacc_code = postacc_cblk.code 100 101 if mem_flags: 102 s = '\n\tmemAccessFlags = ' + string.join(mem_flags, '|') + ';' 103 iop.constructor += s 104 memacc_iop.constructor += s 105 106 # select templates 107 memAccExecTemplate = eval(exec_template_base + 'MemAccExecute') 108 fullExecTemplate = eval(exec_template_base + 'Execute') 109 initiateAccTemplate = eval(exec_template_base + 'InitiateAcc') 110 completeAccTemplate = eval(exec_template_base + 'CompleteAcc') 111 112 # (header_output, decoder_output, decode_block, exec_output) 113 return (LoadStoreDeclare.subst(iop), LoadStoreConstructor.subst(iop), 114 decode_template.subst(iop), 115 EACompExecute.subst(ea_iop) 116 + memAccExecTemplate.subst(memacc_iop) 117 + fullExecTemplate.subst(iop) 118 + initiateAccTemplate.subst(initiateacc_iop) 119 + completeAccTemplate.subst(completeacc_iop)) 120}}; 121 122output header {{ 123 std::string inst2string(MachInst machInst); 124}}; 125 126output decoder {{ 127 128std::string inst2string(MachInst machInst) 129{ 130 string str = ""; 131 uint32_t mask = 0x80000000; 132 133 for(int i=0; i < 32; i++) { 134 if ((machInst & mask) == 0) { 135 str += "0"; 136 } else { 137 str += "1"; 138 } 139 140 mask = mask >> 1; 141 } 142 143 return str; 144} 145 146}}; 147output exec {{ 148 149 using namespace MipsISA; 150 151 /// CLEAR ALL CPU INST/EXE HAZARDS 152 inline void 153 clear_exe_inst_hazards() 154 { 155 //CODE HERE 156 } 157 158 159 /// Check "FP enabled" machine status bit. Called when executing any FP 160 /// instruction in full-system mode. 161 /// @retval Full-system mode: NoFault if FP is enabled, FenFault 162 /// if not. Non-full-system mode: always returns NoFault. 163#if FULL_SYSTEM 164 inline Fault checkFpEnableFault(%(CPU_exec_context)s *xc) 165 { 166 Fault fault = NoFault; // dummy... this ipr access should not fault 167 if (!Mips34k::ICSR_FPE(xc->readIpr(MipsISA::IPR_ICSR, fault))) { 168 fault = FloatEnableFault; 169 } 170 return fault; 171 } 172#else 173 inline Fault checkFpEnableFault(%(CPU_exec_context)s *xc) 174 { 175 return NoFault; 176 } 177#endif 178 179 180 181}}; 182 183 184