Home
last modified time | relevance | path

Searched refs:VRegC_4rcc (Results 1 – 6 of 6) sorted by relevance

/art/libdexfile/dex/
Ddex_instruction.cc496 os << opcode << ", {v" << VRegC_4rcc() << " .. v" << (VRegC_4rcc() + VRegA_4rcc()) in DumpString()
507 os << opcode << ", {v" << VRegC_4rcc() << " .. v" << (VRegC_4rcc() + VRegA_4rcc()) in DumpString()
Ddex_instruction_test.cc132 ASSERT_EQ(0xcafe, ins->VRegC_4rcc()); in TEST()
Ddex_instruction-inl.h424 case k4rcc: return VRegC_4rcc(); in VRegC()
471 inline uint16_t Instruction::VRegC_4rcc() const { in VRegC_4rcc() function
Ddex_instruction.h454 uint16_t VRegC_4rcc() const;
/art/runtime/interpreter/
Dinterpreter_common.cc661 const uint32_t vRegC = (is_range) ? inst->VRegC_4rcc() : inst->VRegC_45cc(); in DoMethodHandleInvokeCommon()
707 RangeInstructionOperands operands(inst->VRegC_4rcc() + 1, inst->VRegA_4rcc() - 1); in DoMethodHandleInvokeCommon()
807 const uint32_t vRegC = is_var_args ? inst->VRegC_45cc() : inst->VRegC_4rcc(); in DoVarHandleInvokeCommon()
823 RangeInstructionOperands all_operands(inst->VRegC_4rcc(), inst->VRegA_4rcc()); in DoVarHandleInvokeCommon()
/art/compiler/optimizing/
Dinstruction_builder.cc2315 RangeInstructionOperands operands(instruction.VRegC_4rcc(), instruction.VRegA_4rcc()); in ProcessDexInstruction()