Home
last modified time | relevance | path

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

/art/disassembler/
Ddisassembler_x86.cc976 uint8_t reg_or_opcode = (instr[1] >> 3) & 7; in DumpInstruction() local
977 switch (reg_or_opcode) { in DumpInstruction()
1414 uint8_t reg_or_opcode = (modrm >> 3) & 7; in DumpInstruction() local
1421 opcode3 = modrm_opcodes[reg_or_opcode]; in DumpInstruction()
1435 DumpReg(args, rex, reg_or_opcode, byte_operand, prefix[2], dst_reg_file); in DumpInstruction()
1446 DumpReg(args, rex, reg_or_opcode, byte_operand, prefix[2], src_reg_file); in DumpInstruction()
/art/compiler/utils/x86/
Dassembler_x86.cc2444 void X86Assembler::EmitOperand(int reg_or_opcode, const Operand& operand) { in EmitOperand() argument
2445 CHECK_GE(reg_or_opcode, 0); in EmitOperand()
2446 CHECK_LT(reg_or_opcode, 8); in EmitOperand()
2451 EmitUint8(operand.encoding_[0] + (reg_or_opcode << 3)); in EmitOperand()
2468 void X86Assembler::EmitComplex(int reg_or_opcode, in EmitComplex() argument
2471 CHECK_GE(reg_or_opcode, 0); in EmitComplex()
2472 CHECK_LT(reg_or_opcode, 8); in EmitComplex()
2476 EmitOperand(reg_or_opcode, operand); in EmitComplex()
2480 EmitUint8(0x05 + (reg_or_opcode << 3)); in EmitComplex()
2484 EmitOperand(reg_or_opcode, operand); in EmitComplex()
[all …]
/art/compiler/utils/x86_64/
Dassembler_x86_64.cc3047 void X86_64Assembler::EmitOperand(uint8_t reg_or_opcode, const Operand& operand) { in EmitOperand() argument
3048 CHECK_GE(reg_or_opcode, 0); in EmitOperand()
3049 CHECK_LT(reg_or_opcode, 8); in EmitOperand()
3054 EmitUint8(operand.encoding_[0] + (reg_or_opcode << 3)); in EmitOperand()
3075 void X86_64Assembler::EmitComplex(uint8_t reg_or_opcode, in EmitComplex() argument
3078 CHECK_GE(reg_or_opcode, 0); in EmitComplex()
3079 CHECK_LT(reg_or_opcode, 8); in EmitComplex()
3083 EmitOperand(reg_or_opcode, operand); in EmitComplex()
3087 EmitUint8(0x05 + (reg_or_opcode << 3)); in EmitComplex()
3091 EmitOperand(reg_or_opcode, operand); in EmitComplex()
[all …]