Home
last modified time | relevance | path

Searched defs:rex (Results 1 – 3 of 3) sorted by relevance

/art/disassembler/
Ddisassembler_x86.cc79 static void DumpReg0(std::ostream& os, uint8_t rex, size_t reg, in DumpReg0()
94 static void DumpAnyReg(std::ostream& os, uint8_t rex, size_t reg, in DumpAnyReg()
105 static void DumpReg(std::ostream& os, uint8_t rex, uint8_t reg, in DumpReg()
112 static void DumpRmReg(std::ostream& os, uint8_t rex, uint8_t reg, in DumpRmReg()
119 static void DumpAddrReg(std::ostream& os, uint8_t rex, uint8_t reg) { in DumpAddrReg()
127 static void DumpBaseReg(std::ostream& os, uint8_t rex, uint8_t reg) { in DumpBaseReg()
133 static void DumpOpcodeReg(std::ostream& os, uint8_t rex, uint8_t reg, in DumpOpcodeReg()
325 uint8_t rex = (supports_rex_ && (*instr >= 0x40) && (*instr <= 0x4F)) ? *instr : 0; in DumpInstruction() local
/art/compiler/utils/x86_64/
Dassembler_x86_64.cc497 uint8_t rex = src.rex(); in vmovaps() local
549 uint8_t rex = src.rex(); in vmovups() local
603 uint8_t rex = dst.rex(); in vmovaps() local
656 uint8_t rex = dst.rex(); in vmovups() local
1090 uint8_t rex = src.rex(); in vmovapd() local
1144 uint8_t rex = src.rex(); in vmovupd() local
1196 uint8_t rex = dst.rex(); in vmovapd() local
1250 uint8_t rex = dst.rex(); in vmovupd() local
1632 uint8_t rex = src.rex(); in vmovdqa() local
1687 uint8_t rex = src.rex(); in vmovdqu() local
[all …]
Dassembler_x86_64.h99 uint8_t rex() const { in rex() function