41 #ifndef __ARCH_ARM_INSTS_PREDINST_HH__ 42 #define __ARCH_ARM_INSTS_PREDINST_HH__ 50 static inline uint32_t
54 return rotateValue == 0 ? immValue :
55 (immValue >> rotateValue) | (immValue << (32 - rotateValue));
58 static inline uint32_t
61 uint32_t bigData = dataImm;
62 uint32_t bigCtrl = ctrlImm;
68 return bigData | (bigData << 16);
70 return (bigData << 8) | (bigData << 24);
72 return (bigData << 0) | (bigData << 8) |
73 (bigData << 16) | (bigData << 24);
76 bigCtrl = (bigCtrl << 1) | ((bigData >> 7) & 0x1);
78 return bigData << (32 - bigCtrl);
81 static inline uint64_t
83 bool isAarch64 =
false)
85 uint64_t bigData =
data;
90 bigData = (bigData << 0) | (bigData << 32);
94 bigData = (bigData << 8) | (bigData << 40);
98 bigData = (bigData << 16) | (bigData << 48);
102 bigData = (bigData << 24) | (bigData << 56);
106 bigData = (bigData << 0) | (bigData << 16) |
107 (bigData << 32) | (bigData << 48);
111 bigData = (bigData << 8) | (bigData << 24) |
112 (bigData << 40) | (bigData << 56);
115 bigData = (0xff
ULL << 0) | (bigData << 8) |
116 (0xff
ULL << 32) | (bigData << 40);
119 bigData = (0xffff
ULL << 0) | (bigData << 16) |
120 (0xffff
ULL << 32) | (bigData << 48);
125 for (
int i = 7;
i >= 0;
i--) {
127 bigData |= (
ULL(0xFF) << (
i * 8));
131 bigData = (bigData << 0) | (bigData << 8) |
132 (bigData << 16) | (bigData << 24) |
133 (bigData << 32) | (bigData << 40) |
134 (bigData << 48) | (bigData << 56);
141 bVal =
bits(bigData, 6) ? (0x1F) : (0x20);
142 bigData = (
bits(bigData, 5, 0) << 19) |
143 (bVal << 25) | (
bits(bigData, 7) << 31);
144 bigData |= (bigData << 32);
146 }
else if (isAarch64) {
147 bVal =
bits(bigData, 6) ? (0x0FF) : (0x100);
148 bigData = (
bits(bigData, 5, 0) << 48) |
149 (bVal << 54) | (
bits(bigData, 7) << 63);
164 static inline uint64_t
167 uint64_t bigData =
data;
171 repData =
bits(data, 6) ? 0x3 : 0;
172 bigData = (
bits(bigData, 5, 0) << 6) |
173 (repData << 12) | (
bits(~bigData, 6) << 14) |
174 (
bits(bigData, 7) << 15);
177 repData =
bits(data, 6) ? 0x1F : 0;
178 bigData = (
bits(bigData, 5, 0) << 19) |
179 (repData << 25) | (
bits(~bigData, 6) << 30) |
180 (
bits(bigData, 7) << 31);
183 repData =
bits(data, 6) ? 0xFF : 0;
184 bigData = (
bits(bigData, 5, 0) << 48) |
185 (repData << 54) | (
bits(~bigData, 6) << 62) |
186 (
bits(bigData, 7) << 63);
189 panic(
"Unrecognized FP data type");
203 "Invalid floating point data type in VFP/SIMD or SVE instruction");
220 if (machInst.aarch64)
222 else if (machInst.itstateMask)
243 PredOp(mnem, _machInst, __opClass),
244 imm(machInst.imm), rotated_imm(0), rotated_carry(0),
245 rotate(machInst.rotate << 1)
249 rotated_carry =
bits(rotated_imm, 31);
252 std::string generateDisassembly(
268 PredOp(mnem, _machInst, __opClass),
269 shift_size(machInst.
shiftSize), shift(machInst.shift)
273 std::string generateDisassembly(
288 PredOp(mnem, _machInst, __opClass),
289 dest(_dest), op1(_op1), imm(_imm), rotC(_rotC)
292 std::string generateDisassembly(
306 PredOp(mnem, _machInst, __opClass),
307 dest(_dest), op1(_op1), op2(_op2),
308 shiftAmt(_shiftAmt), shiftType(_shiftType)
311 std::string generateDisassembly(
324 PredOp(mnem, _machInst, __opClass),
325 dest(_dest), op1(_op1), op2(_op2), shift(_shift),
326 shiftType(_shiftType)
329 std::string generateDisassembly(
345 PredOp(mnem, _machInst, __opClass),
346 numMicroops(0), microOps(nullptr)
351 flags[IsMacroop] =
true;
363 assert(microPC < numMicroops);
364 return microOps[microPC];
370 panic(
"Execute method called when it shouldn't!");
373 std::string generateDisassembly(
384 PredOp(mnem, _machInst, __opClass)
386 flags[IsMicroop] =
true;
392 if (flags[IsLastMicroop])
400 #endif //__ARCH_ARM_INSTS_PREDINST_HH__ #define panic(...)
This implements a cprintf based panic() function.
static FpDataType decode_fp_data_type(uint8_t encoding)
Base class for predicated micro-operations.
Bitfield< 11, 7 > shiftSize
static uint32_t rotate_imm(uint32_t immValue, uint32_t rotateValue)
Base class for predicated integer operations.
static uint64_t vfp_modified_imm(uint8_t data, FpDataType dtype)
static uint64_t simd_modified_imm(bool op, uint8_t cmode, uint8_t data, bool &immValid, bool isAarch64=false)
static uint32_t modified_imm(uint8_t ctrlImm, uint8_t dataImm)
PredMicroop(const char *mnem, ExtMachInst _machInst, OpClass __opClass)
Constructor.
Base class for predicated immediate operations.
Base class for predicated integer operations.
The ExecContext is an abstract base class the provides the interface used by the ISA to manipulate th...
PredImmOp(const char *mnem, ExtMachInst _machInst, OpClass __opClass)
Constructor.
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
PredOp(const char *mnem, ExtMachInst _machInst, OpClass __opClass)
Constructor.
#define ULL(N)
uint64_t constant
StaticInstPtr fetchMicroop(MicroPC microPC) const override
Return the microop that goes with a particular micropc.
Bitfield< 27, 25 > encoding
DataRegOp(const char *mnem, ExtMachInst _machInst, OpClass __opClass, IntRegIndex _dest, IntRegIndex _op1, IntRegIndex _op2, int32_t _shiftAmt, ArmShiftType _shiftType)
Base class for predicated macro-operations.
PredMacroOp(const char *mnem, ExtMachInst _machInst, OpClass __opClass)
Constructor.
FpDataType
Floating point data types.
PredIntOp(const char *mnem, ExtMachInst _machInst, OpClass __opClass)
Constructor.
void advancePC(PCState &pcState) const
DataRegRegOp(const char *mnem, ExtMachInst _machInst, OpClass __opClass, IntRegIndex _dest, IntRegIndex _op1, IntRegIndex _op2, IntRegIndex _shift, ArmShiftType _shiftType)
Fault execute(ExecContext *, Trace::InstRecord *) const override
TheISA::ExtMachInst ExtMachInst
Binary extended machine instruction type.
T bits(T val, int first, int last)
Extract the bitfield from position 'first' to 'last' (inclusive) from 'val' and right justify it...
GenericISA::DelaySlotPCState< MachInst > PCState
std::shared_ptr< FaultBase > Fault
DataImmOp(const char *mnem, ExtMachInst _machInst, OpClass __opClass, IntRegIndex _dest, IntRegIndex _op1, uint32_t _imm, bool _rotC)