Home
last modified time | relevance | path

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

/external/llvm/lib/Target/X86/MCTargetDesc/
DX86MCCodeEmitter.cpp128 inline static unsigned char ModRMByte(unsigned Mod, unsigned RegOpcode, in ModRMByte() argument
130 assert(Mod < 4 && RegOpcode < 8 && RM < 8 && "ModRM Fields out of range!"); in ModRMByte()
131 return RM | (RegOpcode << 3) | (Mod << 6); in ModRMByte()