Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/X86/Disassembler/
H A DX86Disassembler.cpp162 if (modFromModRM(modRM) == 0x3) in decode()
166 if (modFromModRM(modRM) == 0x3) in decode()
170 if (modFromModRM(modRM) == 0x3) in decode()
545 switch (modFromModRM(insn->modRM)) { in readSIB()
612 mod = modFromModRM(insn->modRM); in readModRM()
H A DX86DisassemblerDecoder.h25 #define modFromModRM(modRM) (((modRM) & 0xc0) >> 6) macro