Searched refs:reg_or_opcode (Results 1 – 3 of 3) 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 | 3908 void X86Assembler::EmitOperand(int reg_or_opcode, const Operand& operand) { in EmitOperand() argument 3909 CHECK_GE(reg_or_opcode, 0); in EmitOperand() 3910 CHECK_LT(reg_or_opcode, 8); in EmitOperand() 3915 EmitUint8(operand.encoding_[0] + (reg_or_opcode << 3)); in EmitOperand() 3937 void X86Assembler::EmitComplex(int reg_or_opcode, in EmitComplex() argument 3941 CHECK_GE(reg_or_opcode, 0); in EmitComplex() 3942 CHECK_LT(reg_or_opcode, 8); in EmitComplex() 3946 EmitOperand(reg_or_opcode, operand); in EmitComplex() 3950 EmitUint8(0x05 + (reg_or_opcode << 3)); in EmitComplex() 3954 EmitOperand(reg_or_opcode, operand); in EmitComplex() [all …]
|
/art/compiler/utils/x86_64/ |
D | assembler_x86_64.cc | 5397 void X86_64Assembler::EmitOperand(uint8_t reg_or_opcode, const Operand& operand) { in EmitOperand() argument 5398 CHECK_GE(reg_or_opcode, 0); in EmitOperand() 5399 CHECK_LT(reg_or_opcode, 8); in EmitOperand() 5404 EmitUint8(operand.encoding_[0] + (reg_or_opcode << 3)); in EmitOperand() 5428 void X86_64Assembler::EmitComplex(uint8_t reg_or_opcode, in EmitComplex() argument 5432 CHECK_GE(reg_or_opcode, 0); in EmitComplex() 5433 CHECK_LT(reg_or_opcode, 8); in EmitComplex() 5437 EmitOperand(reg_or_opcode, operand); in EmitComplex() 5441 EmitUint8(0x05 + (reg_or_opcode << 3)); in EmitComplex() 5445 EmitOperand(reg_or_opcode, operand); in EmitComplex() [all …]
|