Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/Target/X86/Disassembler/
H A DX86Disassembler.cpp168 if (modFromModRM(modRM) == 0x3) in decode()
172 if (modFromModRM(modRM) == 0x3) in decode()
176 if (modFromModRM(modRM) == 0x3) in decode()
547 switch (modFromModRM(insn->modRM)) { in readSIB()
614 mod = modFromModRM(insn->modRM); in readModRM()
H A DX86DisassemblerDecoder.h25 #define modFromModRM(modRM) (((modRM) & 0xc0) >> 6) macro