Lines Matching refs:operand
1390 void X86Assembler::shll(Register operand, Register shifter) { in shll() argument
1391 EmitGenericShift(4, Operand(operand), shifter); in shll()
1410 void X86Assembler::shrl(Register operand, Register shifter) { in shrl() argument
1411 EmitGenericShift(5, Operand(operand), shifter); in shrl()
1430 void X86Assembler::sarl(Register operand, Register shifter) { in sarl() argument
1431 EmitGenericShift(7, Operand(operand), shifter); in sarl()
1486 void X86Assembler::roll(Register operand, Register shifter) { in roll() argument
1487 EmitGenericShift(0, Operand(operand), shifter); in roll()
1496 void X86Assembler::rorl(Register operand, Register shifter) { in rorl() argument
1497 EmitGenericShift(1, Operand(operand), shifter); in rorl()
1816 void X86Assembler::EmitOperand(int reg_or_opcode, const Operand& operand) { in EmitOperand() argument
1819 const int length = operand.length_; in EmitOperand()
1822 CHECK_EQ(operand.encoding_[0] & 0x38, 0); in EmitOperand()
1823 EmitUint8(operand.encoding_[0] + (reg_or_opcode << 3)); in EmitOperand()
1826 EmitUint8(operand.encoding_[i]); in EmitOperand()
1828 AssemblerFixup* fixup = operand.GetFixup(); in EmitOperand()
1841 const Operand& operand, in EmitComplex() argument
1848 EmitOperand(reg_or_opcode, operand); in EmitComplex()
1850 } else if (operand.IsRegister(EAX)) { in EmitComplex()
1856 EmitOperand(reg_or_opcode, operand); in EmitComplex()
1897 const Operand& operand, in EmitGenericShift() argument
1903 EmitOperand(reg_or_opcode, operand); in EmitGenericShift()
1906 EmitOperand(reg_or_opcode, operand); in EmitGenericShift()
1913 const Operand& operand, in EmitGenericShift() argument
1918 EmitOperand(reg_or_opcode, operand); in EmitGenericShift()