Searched refs:reg_or_opcode (Results 1 – 3 of 3) sorted by relevance
/art/disassembler/ |
D | disassembler_x86.cc | 877 uint8_t reg_or_opcode = (instr[1] >> 3) & 7; in DumpInstruction() local 878 switch (reg_or_opcode) { in DumpInstruction() 1299 uint8_t reg_or_opcode = (modrm >> 3) & 7; in DumpInstruction() local 1306 opcode3 = modrm_opcodes[reg_or_opcode]; in DumpInstruction() 1320 DumpReg(args, rex, reg_or_opcode, byte_operand, prefix[2], dst_reg_file); in DumpInstruction() 1331 DumpReg(args, rex, reg_or_opcode, byte_operand, prefix[2], src_reg_file); in DumpInstruction()
|
/art/compiler/utils/x86/ |
D | assembler_x86.cc | 1816 void X86Assembler::EmitOperand(int reg_or_opcode, const Operand& operand) { in EmitOperand() argument 1817 CHECK_GE(reg_or_opcode, 0); in EmitOperand() 1818 CHECK_LT(reg_or_opcode, 8); in EmitOperand() 1823 EmitUint8(operand.encoding_[0] + (reg_or_opcode << 3)); in EmitOperand() 1840 void X86Assembler::EmitComplex(int reg_or_opcode, in EmitComplex() argument 1843 CHECK_GE(reg_or_opcode, 0); in EmitComplex() 1844 CHECK_LT(reg_or_opcode, 8); in EmitComplex() 1848 EmitOperand(reg_or_opcode, operand); in EmitComplex() 1852 EmitUint8(0x05 + (reg_or_opcode << 3)); in EmitComplex() 1856 EmitOperand(reg_or_opcode, operand); in EmitComplex() [all …]
|
/art/compiler/utils/x86_64/ |
D | assembler_x86_64.cc | 2377 void X86_64Assembler::EmitOperand(uint8_t reg_or_opcode, const Operand& operand) { in EmitOperand() argument 2378 CHECK_GE(reg_or_opcode, 0); in EmitOperand() 2379 CHECK_LT(reg_or_opcode, 8); in EmitOperand() 2384 EmitUint8(operand.encoding_[0] + (reg_or_opcode << 3)); in EmitOperand() 2405 void X86_64Assembler::EmitComplex(uint8_t reg_or_opcode, in EmitComplex() argument 2408 CHECK_GE(reg_or_opcode, 0); in EmitComplex() 2409 CHECK_LT(reg_or_opcode, 8); in EmitComplex() 2413 EmitOperand(reg_or_opcode, operand); in EmitComplex() 2417 EmitUint8(0x05 + (reg_or_opcode << 3)); in EmitComplex() 2421 EmitOperand(reg_or_opcode, operand); in EmitComplex() [all …]
|