Searched refs:reg_or_opcode (Results 1 – 3 of 3) sorted by relevance
/art/disassembler/ |
D | disassembler_x86.cc | 1037 uint8_t reg_or_opcode = (instr[1] >> 3) & 7; in DumpInstruction() local 1038 switch (reg_or_opcode) { in DumpInstruction() 1499 uint8_t reg_or_opcode = (modrm >> 3) & 7; in DumpInstruction() local 1506 opcode3 = modrm_opcodes[reg_or_opcode]; in DumpInstruction() 1520 DumpReg(args, rex, reg_or_opcode, byte_operand, prefix[2], dst_reg_file); in DumpInstruction() 1531 DumpReg(args, rex, reg_or_opcode, byte_operand, prefix[2], src_reg_file); in DumpInstruction()
|
/art/compiler/utils/x86/ |
D | assembler_x86.cc | 2980 void X86Assembler::EmitOperand(int reg_or_opcode, const Operand& operand) { in EmitOperand() argument 2981 CHECK_GE(reg_or_opcode, 0); in EmitOperand() 2982 CHECK_LT(reg_or_opcode, 8); in EmitOperand() 2987 EmitUint8(operand.encoding_[0] + (reg_or_opcode << 3)); in EmitOperand() 3009 void X86Assembler::EmitComplex(int reg_or_opcode, in EmitComplex() argument 3013 CHECK_GE(reg_or_opcode, 0); in EmitComplex() 3014 CHECK_LT(reg_or_opcode, 8); in EmitComplex() 3018 EmitOperand(reg_or_opcode, operand); in EmitComplex() 3022 EmitUint8(0x05 + (reg_or_opcode << 3)); in EmitComplex() 3026 EmitOperand(reg_or_opcode, operand); in EmitComplex() [all …]
|
/art/compiler/utils/x86_64/ |
D | assembler_x86_64.cc | 3626 void X86_64Assembler::EmitOperand(uint8_t reg_or_opcode, const Operand& operand) { in EmitOperand() argument 3627 CHECK_GE(reg_or_opcode, 0); in EmitOperand() 3628 CHECK_LT(reg_or_opcode, 8); in EmitOperand() 3633 EmitUint8(operand.encoding_[0] + (reg_or_opcode << 3)); in EmitOperand() 3657 void X86_64Assembler::EmitComplex(uint8_t reg_or_opcode, in EmitComplex() argument 3661 CHECK_GE(reg_or_opcode, 0); in EmitComplex() 3662 CHECK_LT(reg_or_opcode, 8); in EmitComplex() 3666 EmitOperand(reg_or_opcode, operand); in EmitComplex() 3670 EmitUint8(0x05 + (reg_or_opcode << 3)); in EmitComplex() 3674 EmitOperand(reg_or_opcode, operand); in EmitComplex() [all …]
|