Searched refs:LowBits (Results 1 – 3 of 3) sorted by relevance
164 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 …]
38 constexpr uint8_t LowBits() const { in LowBits() function56 constexpr uint8_t LowBits() const { in LowBits() function
116 && ((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()