Home
last modified time | relevance | path

Searched refs:modRM (Results 1 – 9 of 9) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/utils/TableGen/
H A DX86ModRMFilters.h45 virtual bool accepts(uint8_t modRM) const = 0;
58 bool accepts(uint8_t modRM) const override { in accepts() argument
81 bool accepts(uint8_t modRM) const override { in accepts() argument
82 return (R == ((modRM & 0xc0) == 0xc0)); in accepts()
104 bool accepts(uint8_t modRM) const override { in accepts() argument
105 return (((R && ((modRM & 0xc0) == 0xc0)) || in accepts()
106 (!R && ((modRM & 0xc0) != 0xc0))) && in accepts()
107 (((modRM & 0x38) >> 3) == NNN)); in accepts()
129 bool accepts(uint8_t modRM) const override { in accepts() argument
130 return ((R && ((modRM & 0xc0) == 0xc0)) && in accepts()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/Disassembler/
H A DX86DisassemblerDecoder.h25 #define modFromModRM(modRM) (((modRM) & 0xc0) >> 6) argument
26 #define regFromModRM(modRM) (((modRM) & 0x38) >> 3) argument
27 #define rmFromModRM(modRM) ((modRM) & 0x7) argument
602 uint8_t modRM; member
H A DX86Disassembler.cpp124 uint8_t opcode, uint8_t modRM) { in decode() argument
162 if (modFromModRM(modRM) == 0x3) in decode()
166 if (modFromModRM(modRM) == 0x3) in decode()
167 return modRMTable[dec->instructionIDs + ((modRM & 0x38) >> 3) + 8]; in decode()
168 return modRMTable[dec->instructionIDs + ((modRM & 0x38) >> 3)]; in decode()
170 if (modFromModRM(modRM) == 0x3) in decode()
171 return modRMTable[dec->instructionIDs + (modRM & 0x3f) + 8]; in decode()
172 return modRMTable[dec->instructionIDs + ((modRM & 0x38) >> 3)]; in decode()
174 return modRMTable[dec->instructionIDs + modRM]; in decode()
545 switch (modFromModRM(insn->modRM)) { in readSIB()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/i386/
H A Dx86-tune.def566 operand that cannot be represented using a modRM byte. The XOR
H A Dpredicates.md1242 ;; by the modRM array.
H A Di386.md18969 ;; represented using a modRM byte. The XOR replacement is long decoded,
/netbsd-src/external/gpl3/gcc/dist/gcc/config/i386/
H A Dx86-tune.def659 operand that cannot be represented using a modRM byte. The XOR
H A Dpredicates.md1365 ;; by the modRM array.
H A Di386.md21765 ;; represented using a modRM byte. The XOR replacement is long decoded,