Searched refs:ModRM (Results 1 – 7 of 7) sorted by relevance
/external/swiftshader/third_party/LLVM/utils/TableGen/ |
D | X86ModRMFilters.h | 125 uint8_t ModRM; 131 AddRegEscapeFilter(uint8_t modRM) : ModRM(modRM) { in AddRegEscapeFilter() 135 if (modRM >= ModRM && modRM < ModRM + 8) in accepts() 175 uint8_t ModRM; 182 ModRM(modRM) { in ExactFilter() 186 if (ModRM == modRM) in accepts()
|
/external/llvm/utils/TableGen/ |
D | X86ModRMFilters.h | 116 uint8_t ModRM; variable 123 ModRM(modRM) { in ExactFilter() 127 return (ModRM == modRM); in accepts()
|
/external/swiftshader/third_party/subzero/unittest/AssemblerX8632/ |
D | X87.cpp | 71 constexpr uint8_t ModRM = (/*mod*/ 2 << 6) | (/*reg*/ 7 << 3) | in TEST_F() local 73 verifyBytes<ByteCount>(codeBytes(), Opcode, ModRM, 0x45, 0x23, 0x01, 0x00); in TEST_F() 84 constexpr uint8_t ModRM = (/*mod*/ 2 << 6) | (/*reg*/ 5 << 3) | in TEST_F() local 86 verifyBytes<ByteCount>(codeBytes(), Opcode, ModRM, 0x45, 0x23, 0x01, 0x00); in TEST_F()
|
D | GPRArith.cpp | 302 static constexpr uint8_t ModRM = \ in TEST_F() 305 verifyBytes<ByteCount>(codeBytes(), Opcode, ModRM, (Value)&0xFF, \ in TEST_F()
|
/external/swiftshader/third_party/subzero/unittest/AssemblerX8664/ |
D | GPRArith.cpp | 335 static constexpr uint8_t ModRM = \ in TEST_F() 342 codeBytes(), 0x67, Opcode, ModRM, SIB, (Value)&0xFF, \ in TEST_F()
|
/external/swiftshader/third_party/LLVM/lib/Target/X86/ |
D | X86ISelLowering.cpp | 9554 unsigned char ModRM = N86R11 | (4 << 3) | (3 << 6); // ...r11 in LowerINIT_TRAMPOLINE() local 9557 OutChains[5] = DAG.getStore(Root, dl, DAG.getConstant(ModRM, MVT::i8), Addr, in LowerINIT_TRAMPOLINE()
|
/external/llvm/lib/Target/X86/ |
D | X86ISelLowering.cpp | 18807 unsigned char ModRM = N86R11 | (4 << 3) | (3 << 6); // ...r11 in LowerINIT_TRAMPOLINE() local 18810 OutChains[5] = DAG.getStore(Root, dl, DAG.getConstant(ModRM, dl, MVT::i8), in LowerINIT_TRAMPOLINE()
|