39 #ifndef __ARCH_X86_INSTS_MICROLDSTOP_HH__ 40 #define __ARCH_X86_INSTS_MICROLDSTOP_HH__ 68 const char * mnem,
const char * _instMnem,
72 uint8_t _dataSize, uint8_t _addressSize,
76 scale(_scale), index(_index.index()), base(_base.index()),
77 disp(_disp), segment(_segment.index()),
78 dataSize(_dataSize), addressSize(_addressSize),
79 memFlags(_memFlags | _segment.index())
83 (dataSize == 1 && !_machInst.rex.present) ? 1 << 6 : 0;
85 (addressSize == 1 && !_machInst.rex.present) ? 1 << 6 : 0;
99 const char * mnem,
const char * _instMnem,
104 uint8_t _dataSize, uint8_t _addressSize,
107 MemOp(_machInst, mnem, _instMnem, setFlags,
108 _scale, _index, _base, _disp, _segment,
109 _dataSize, _addressSize, _memFlags,
132 const char * mnem,
const char * _instMnem,
137 uint8_t _dataSize, uint8_t _addressSize,
140 MemOp(_machInst, mnem, _instMnem, setFlags,
141 _scale, _index, _base, _disp, _segment,
142 _dataSize, _addressSize, _memFlags,
144 dataLow(_dataLow.
index()),
145 dataHi(_dataHi.
index())
154 #endif //__ARCH_X86_INSTS_MICROLDSTOP_HH__
const Request::FlagsType memFlags
Class for register indices passed to instruction constructors.
Declaration of a request, the overall memory request consisting of the parts of the request that are ...
LdStOp(ExtMachInst _machInst, const char *mnem, const char *_instMnem, uint64_t setFlags, uint8_t _scale, InstRegIndex _index, InstRegIndex _base, uint64_t _disp, InstRegIndex _segment, InstRegIndex _data, uint8_t _dataSize, uint8_t _addressSize, Request::FlagsType _memFlags, OpClass __opClass)
LdStSplitOp(ExtMachInst _machInst, const char *mnem, const char *_instMnem, uint64_t setFlags, uint8_t _scale, InstRegIndex _index, InstRegIndex _base, uint64_t _disp, InstRegIndex _segment, InstRegIndex _dataLow, InstRegIndex _dataHi, uint8_t _dataSize, uint8_t _addressSize, Request::FlagsType _memFlags, OpClass __opClass)
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Base class for load and store ops using two registers, we will call them split ops for this reason...
Base class for memory ops.
std::string generateDisassembly(Addr pc, const Loader::SymbolTable *symtab) const
Internal function to generate disassembly string.
Declaration of the Packet class.
Base class for load and store ops using one register.
This is exposed globally, independent of the ISA.
const uint8_t addressSize
const RegIndex & index() const
Index accessors.
TheISA::ExtMachInst ExtMachInst
Binary extended machine instruction type.
MemOp(ExtMachInst _machInst, const char *mnem, const char *_instMnem, uint64_t setFlags, uint8_t _scale, InstRegIndex _index, InstRegIndex _base, uint64_t _disp, InstRegIndex _segment, uint8_t _dataSize, uint8_t _addressSize, Request::FlagsType _memFlags, OpClass __opClass)