HomeSort by relevance Sort by last modified time
    Searched refs:modRM (Results 1 - 3 of 3) sorted by null

  /external/llvm/utils/TableGen/
X86ModRMFilters.h 46 virtual bool accepts(uint8_t modRM) const = 0;
59 bool accepts(uint8_t modRM) const {
82 bool accepts(uint8_t modRM) const {
83 if (R == ((modRM & 0xc0) == 0xc0))
112 bool accepts(uint8_t modRM) const {
113 if ((C0_FF && modRM >= 0xc0 && (modRM == NNN_or_ModRM)) ||
114 (!C0_FF && modRM < 0xc0 && ((modRM & 0x38) >> 3) == NNN_or_ModRM))
127 uint8_t ModRM;
    [all...]
  /external/llvm/lib/Target/X86/Disassembler/
X86DisassemblerDecoder.h 36 #define modFromModRM(modRM) (((modRM) & 0xc0) >> 6)
37 #define regFromModRM(modRM) (((modRM) & 0x38) >> 3)
38 #define rmFromModRM(modRM) ((modRM) & 0x7)
499 uint8_t modRM;
X86DisassemblerDecoder.c 97 * @param modRM - The ModR/M byte if required, or any value if not.
103 uint8_t modRM) {
134 if (modFromModRM(modRM) == 0x3)
138 if (modFromModRM(modRM) == 0x3)
139 return modRMTable[dec->instructionIDs+((modRM & 0x38) >> 3)+8];
140 return modRMTable[dec->instructionIDs+((modRM & 0x38) >> 3)];
142 return modRMTable[dec->instructionIDs+modRM];
675 insn->modRM);
846 * ModRM required with OpSize but not present; give up and return version
982 switch (modFromModRM(insn->modRM)) {
    [all...]

Completed in 197 milliseconds