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.h41 constexpr uint8_t LowBits() const { in LowBits() function
59 constexpr uint8_t LowBits() const { in LowBits() function
Dassembler_x86_64.h132 && ((encoding_[0] & 0x07) == reg.LowBits()) // Register codes match. in IsRegister()
156 encoding_[0] = (mod_in << 6) | rm_in.LowBits(); in SetModRM()
169 encoding_[1] = (scale_in << 6) | (static_cast<uint8_t>(index_in.LowBits()) << 3) | in SetSIB()
170 static_cast<uint8_t>(base_in.LowBits()); in SetSIB()
229 if (disp == 0 && base_in.LowBits() != RBP) { in Init()
231 if (base_in.LowBits() == RSP) { in Init()
236 if (base_in.LowBits() == RSP) { in Init()
242 if (base_in.LowBits() == RSP) { in Init()
258 if (disp == 0 && base_in.LowBits() != RBP) { in Address()
1013 EmitOperand(reg.LowBits(), address); in LockCmpxchgw()
[all …]