Home
last modified time | relevance | path

Searched refs:modFromModRM (Results 1 – 2 of 2) sorted by relevance

/freebsd-12.1/contrib/llvm/lib/Target/X86/Disassembler/
H A DX86DisassemblerDecoder.cpp165 if (modFromModRM(modRM) == 0x3) in decode()
169 if (modFromModRM(modRM) == 0x3) in decode()
173 if (modFromModRM(modRM) == 0x3) in decode()
1204 switch (modFromModRM(insn->modRM)) { in readSIB()
1294 mod = modFromModRM(insn->modRM); in readModRM()
H A DX86DisassemblerDecoder.h26 #define modFromModRM(modRM) (((modRM) & 0xc0) >> 6) macro