HomeSort by relevance Sort by last modified time
    Searched refs:reg_or_opcode (Results 1 - 2 of 2) sorted by null

  /art/runtime/
disassembler_x86.cc 487 uint8_t reg_or_opcode = (instr[1] >> 3) & 7; local
488 switch (reg_or_opcode) {
620 uint8_t reg_or_opcode = (modrm >> 3) & 7; local
674 opcode << modrm_opcodes[reg_or_opcode];
678 DumpReg(args, rex, reg_or_opcode, byte_operand, prefix[2], dst_reg_file);
689 DumpReg(args, rex, reg_or_opcode, byte_operand, prefix[2], src_reg_file);
  /art/compiler/utils/x86/
assembler_x86.cc 1316 void X86Assembler::EmitOperand(int reg_or_opcode, const Operand& operand) {
1317 CHECK_GE(reg_or_opcode, 0);
1318 CHECK_LT(reg_or_opcode, 8);
1323 EmitUint8(operand.encoding_[0] + (reg_or_opcode << 3));
1336 void X86Assembler::EmitComplex(int reg_or_opcode,
1339 CHECK_GE(reg_or_opcode, 0);
1340 CHECK_LT(reg_or_opcode, 8);
1344 EmitOperand(reg_or_opcode, operand);
1348 EmitUint8(0x05 + (reg_or_opcode << 3));
1352 EmitOperand(reg_or_opcode, operand)
    [all...]

Completed in 191 milliseconds