Searched refs:reg_or_opcode (Results 1 - 3 of 3) sorted by relevance

/art/disassembler/
H A Ddisassembler_x86.cc1037 uint8_t reg_or_opcode = (instr[1] >> 3) & 7; local
1038 switch (reg_or_opcode) {
1483 uint8_t reg_or_opcode = (modrm >> 3) & 7; local
1490 opcode3 = modrm_opcodes[reg_or_opcode];
1504 DumpReg(args, rex, reg_or_opcode, byte_operand, prefix[2], dst_reg_file);
1515 DumpReg(args, rex, reg_or_opcode, byte_operand, prefix[2], src_reg_file);
/art/compiler/utils/x86/
H A Dassembler_x86.cc2743 void X86Assembler::EmitOperand(int reg_or_opcode, const Operand& operand) { argument
2744 CHECK_GE(reg_or_opcode, 0);
2745 CHECK_LT(reg_or_opcode, 8);
2750 EmitUint8(operand.encoding_[0] + (reg_or_opcode << 3));
2772 void X86Assembler::EmitComplex(int reg_or_opcode, argument
2776 CHECK_GE(reg_or_opcode, 0);
2777 CHECK_LT(reg_or_opcode, 8);
2781 EmitOperand(reg_or_opcode, operand);
2785 EmitUint8(0x05 + (reg_or_opcode << 3));
2789 EmitOperand(reg_or_opcode, operan
2829 EmitGenericShift(int reg_or_opcode, const Operand& operand, const Immediate& imm) argument
2845 EmitGenericShift(int reg_or_opcode, const Operand& operand, Register shifter) argument
[all...]
/art/compiler/utils/x86_64/
H A Dassembler_x86_64.cc3380 void X86_64Assembler::EmitOperand(uint8_t reg_or_opcode, const Operand& operand) { argument
3381 CHECK_GE(reg_or_opcode, 0);
3382 CHECK_LT(reg_or_opcode, 8);
3387 EmitUint8(operand.encoding_[0] + (reg_or_opcode << 3));
3411 void X86_64Assembler::EmitComplex(uint8_t reg_or_opcode, argument
3415 CHECK_GE(reg_or_opcode, 0);
3416 CHECK_LT(reg_or_opcode, 8);
3420 EmitOperand(reg_or_opcode, operand);
3424 EmitUint8(0x05 + (reg_or_opcode << 3));
3428 EmitOperand(reg_or_opcode, operan
3468 EmitGenericShift(bool wide, int reg_or_opcode, CpuRegister reg, const Immediate& imm) argument
3490 EmitGenericShift(bool wide, int reg_or_opcode, CpuRegister operand, CpuRegister shifter) argument
[all...]

Completed in 4296 milliseconds