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.cc164 EmitRegisterOperand(2, reg.LowBits()); in call()
187 EmitUint8(0x50 + reg.LowBits()); in pushq()
215 EmitUint8(0x58 + reg.LowBits()); in popq()
233 EmitRegisterOperand(0, dst.LowBits()); in movq()
237 EmitUint8(0xB8 + dst.LowBits()); in movq()
247 EmitUint8(0xB8 + dst.LowBits()); in movl()
267 EmitRegisterOperand(src.LowBits(), dst.LowBits()); in movq()
275 EmitRegisterOperand(dst.LowBits(), src.LowBits()); in movl()
283 EmitOperand(dst.LowBits(), src); in movq()
291 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.h116 && ((encoding_[0] & 0x07) == reg.LowBits()) // Register codes match. in IsRegister()
133 encoding_[0] = (mod_in << 6) | rm_in.LowBits(); in SetModRM()
146 encoding_[1] = (scale_in << 6) | (static_cast<uint8_t>(index_in.LowBits()) << 3) | in SetSIB()
147 static_cast<uint8_t>(base_in.LowBits()); in SetSIB()
206 if (disp == 0 && base_in.LowBits() != RBP) { in Init()
208 if (base_in.LowBits() == RSP) { in Init()
213 if (base_in.LowBits() == RSP) { in Init()
219 if (base_in.LowBits() == RSP) { in Init()
236 if (disp == 0 && base_in.LowBits() != RBP) { in Address()