Lines Matching refs:reg_or_opcode
1324 void X86Assembler::EmitOperand(int reg_or_opcode, const Operand& operand) { in EmitOperand() argument
1325 CHECK_GE(reg_or_opcode, 0); in EmitOperand()
1326 CHECK_LT(reg_or_opcode, 8); in EmitOperand()
1331 EmitUint8(operand.encoding_[0] + (reg_or_opcode << 3)); in EmitOperand()
1344 void X86Assembler::EmitComplex(int reg_or_opcode, in EmitComplex() argument
1347 CHECK_GE(reg_or_opcode, 0); in EmitComplex()
1348 CHECK_LT(reg_or_opcode, 8); in EmitComplex()
1352 EmitOperand(reg_or_opcode, operand); in EmitComplex()
1356 EmitUint8(0x05 + (reg_or_opcode << 3)); in EmitComplex()
1360 EmitOperand(reg_or_opcode, operand); in EmitComplex()
1385 void X86Assembler::EmitGenericShift(int reg_or_opcode, in EmitGenericShift() argument
1392 EmitOperand(reg_or_opcode, Operand(reg)); in EmitGenericShift()
1395 EmitOperand(reg_or_opcode, Operand(reg)); in EmitGenericShift()
1401 void X86Assembler::EmitGenericShift(int reg_or_opcode, in EmitGenericShift() argument
1407 EmitOperand(reg_or_opcode, Operand(operand)); in EmitGenericShift()