Home
last modified time | relevance | path

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

/art/compiler/utils/x86_64/
Dassembler_x86_64.cc79 EmitRegisterOperand(2, reg.LowBits()); in call()
102 EmitUint8(0x50 + reg.LowBits()); in pushq()
130 EmitUint8(0x58 + reg.LowBits()); in popq()
148 EmitRegisterOperand(0, dst.LowBits()); in movq()
152 EmitUint8(0xB8 + dst.LowBits()); in movq()
162 EmitUint8(0xB8 + dst.LowBits()); in movl()
182 EmitRegisterOperand(src.LowBits(), dst.LowBits()); in movq()
190 EmitRegisterOperand(dst.LowBits(), src.LowBits()); in movl()
198 EmitOperand(dst.LowBits(), src); in movq()
206 EmitOperand(dst.LowBits(), src); in movl()
[all …]
Dconstants_x86_64.h38 constexpr uint8_t LowBits() const { in LowBits() function
56 constexpr uint8_t LowBits() const { in LowBits() function
Dassembler_x86_64.h117 && ((encoding_[0] & 0x07) == reg.LowBits()) // Register codes match. in IsRegister()
134 encoding_[0] = (mod_in << 6) | rm_in.LowBits(); in SetModRM()
147 encoding_[1] = (scale_in << 6) | (static_cast<uint8_t>(index_in.LowBits()) << 3) | in SetSIB()
148 static_cast<uint8_t>(base_in.LowBits()); in SetSIB()
207 if (disp == 0 && base_in.LowBits() != RBP) { in Init()
209 if (base_in.LowBits() == RSP) { in Init()
214 if (base_in.LowBits() == RSP) { in Init()
220 if (base_in.LowBits() == RSP) { in Init()
237 if (disp == 0 && base_in.LowBits() != RBP) { in Address()