Home
last modified time | relevance | path

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

/art/libdexfile/dex/
Ddex_instruction.cc461 os << opcode << ", {v" << VRegC_4rcc() << " .. v" << (VRegC_4rcc() + VRegA_4rcc()) in DumpString()
472 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.h471 case k4rcc: return VRegC_4rcc(); in VRegC()
518 inline uint16_t Instruction::VRegC_4rcc() const { in VRegC_4rcc() function
Ddex_instruction.h461 uint16_t VRegC_4rcc() const;
/art/runtime/interpreter/
Dinterpreter_common.cc336 const uint32_t vRegC = (is_range) ? inst->VRegC_4rcc() : inst->VRegC_45cc(); in DoMethodHandleInvokeCommon()
382 RangeInstructionOperands operands(inst->VRegC_4rcc() + 1, inst->VRegA_4rcc() - 1); in DoMethodHandleInvokeCommon()
482 const uint32_t vRegC = is_var_args ? inst->VRegC_45cc() : inst->VRegC_4rcc(); in DoVarHandleInvokeCommon()
498 RangeInstructionOperands all_operands(inst->VRegC_4rcc(), inst->VRegA_4rcc()); in DoVarHandleInvokeCommon()
/art/compiler/optimizing/
Dinstruction_builder.cc2778 RangeInstructionOperands operands(instruction.VRegC_4rcc(), instruction.VRegA_4rcc()); in ProcessDexInstruction()