Searched refs:reg_or_opcode (Results 1 – 2 of 2) sorted by relevance
/art/disassembler/ |
D | disassembler_x86.cc | 1052 uint8_t reg_or_opcode = (instr[1] >> 3) & 7; in DumpInstruction() local 1053 switch (reg_or_opcode) { in DumpInstruction() 1515 uint8_t reg_or_opcode = (modrm >> 3) & 7; in DumpInstruction() local 1522 opcode3 = modrm_opcodes[reg_or_opcode]; in DumpInstruction() 1536 DumpReg(args, rex, reg_or_opcode, byte_operand, prefix[2], dst_reg_file); in DumpInstruction() 1548 DumpReg(args, rex, reg_or_opcode, byte_operand, prefix[2], src_reg_file); in DumpInstruction()
|
/art/compiler/utils/x86/ |
D | assembler_x86.cc | 3741 void X86Assembler::EmitOperand(int reg_or_opcode, const Operand& operand) { in EmitOperand() argument 3742 CHECK_GE(reg_or_opcode, 0); in EmitOperand() 3743 CHECK_LT(reg_or_opcode, 8); in EmitOperand() 3748 EmitUint8(operand.encoding_[0] + (reg_or_opcode << 3)); in EmitOperand() 3770 void X86Assembler::EmitComplex(int reg_or_opcode, in EmitComplex() argument 3774 CHECK_GE(reg_or_opcode, 0); in EmitComplex() 3775 CHECK_LT(reg_or_opcode, 8); in EmitComplex() 3779 EmitOperand(reg_or_opcode, operand); in EmitComplex() 3783 EmitUint8(0x05 + (reg_or_opcode << 3)); in EmitComplex() 3787 EmitOperand(reg_or_opcode, operand); in EmitComplex() [all …]
|