Searched refs:reg_or_opcode (Results 1 – 2 of 2) 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() 1483 uint8_t reg_or_opcode = (modrm >> 3) & 7; in DumpInstruction() local 1490 opcode3 = modrm_opcodes[reg_or_opcode]; in DumpInstruction() 1504 DumpReg(args, rex, reg_or_opcode, byte_operand, prefix[2], dst_reg_file); in DumpInstruction() 1515 DumpReg(args, rex, reg_or_opcode, byte_operand, prefix[2], src_reg_file); in DumpInstruction()
|
/art/compiler/utils/x86_64/ |
D | assembler_x86_64.cc | 3380 void X86_64Assembler::EmitOperand(uint8_t reg_or_opcode, const Operand& operand) { in EmitOperand() argument 3381 CHECK_GE(reg_or_opcode, 0); in EmitOperand() 3382 CHECK_LT(reg_or_opcode, 8); in EmitOperand() 3387 EmitUint8(operand.encoding_[0] + (reg_or_opcode << 3)); in EmitOperand() 3411 void X86_64Assembler::EmitComplex(uint8_t reg_or_opcode, in EmitComplex() argument 3415 CHECK_GE(reg_or_opcode, 0); in EmitComplex() 3416 CHECK_LT(reg_or_opcode, 8); in EmitComplex() 3420 EmitOperand(reg_or_opcode, operand); in EmitComplex() 3424 EmitUint8(0x05 + (reg_or_opcode << 3)); in EmitComplex() 3428 EmitOperand(reg_or_opcode, operand); in EmitComplex() [all …]
|