Home
last modified time | relevance | path

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

/external/swiftshader/third_party/LLVM/lib/Target/X86/
DX86CodeEmitter.cpp347 inline static unsigned char ModRMByte(unsigned Mod, unsigned RegOpcode, in ModRMByte() argument
349 assert(Mod < 4 && RegOpcode < 8 && RM < 8 && "ModRM Fields out of range!"); in ModRMByte()
350 return RM | (RegOpcode << 3) | (Mod << 6); in ModRMByte()
/external/swiftshader/third_party/LLVM/lib/Target/X86/MCTargetDesc/
DX86MCCodeEmitter.cpp95 inline static unsigned char ModRMByte(unsigned Mod, unsigned RegOpcode, in ModRMByte() argument
97 assert(Mod < 4 && RegOpcode < 8 && RM < 8 && "ModRM Fields out of range!"); in ModRMByte()
98 return RM | (RegOpcode << 3) | (Mod << 6); in ModRMByte()
/external/llvm/lib/Target/X86/MCTargetDesc/
DX86MCCodeEmitter.cpp108 inline static uint8_t ModRMByte(unsigned Mod, unsigned RegOpcode, in ModRMByte() argument
110 assert(Mod < 4 && RegOpcode < 8 && RM < 8 && "ModRM Fields out of range!"); in ModRMByte()
111 return RM | (RegOpcode << 3) | (Mod << 6); in ModRMByte()