Home
last modified time | relevance | path

Searched refs:VRegA_4rcc (Results 1 – 7 of 7) sorted by relevance

/art/libdexfile/dex/
Ddex_instruction_test.cc123 ASSERT_EQ(4u, ins->VRegA_4rcc()); in TEST()
124 ASSERT_EQ(4u, ins->VRegA_4rcc(instruction[0])); in TEST()
Ddex_instruction.h369 uint8_t VRegA_4rcc() const { in VRegA_4rcc() function
370 return VRegA_4rcc(Fetch16(0)); in VRegA_4rcc()
397 uint8_t VRegA_4rcc(uint16_t inst_data) const;
Ddex_instruction-inl.h122 case k4rcc: return VRegA_4rcc(inst_data); in VRegA()
255 inline uint8_t Instruction::VRegA_4rcc(uint16_t inst_data) const { in VRegA_4rcc() function
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()
/art/runtime/interpreter/
Dinterpreter_common.cc386 RangeInstructionOperands operands(inst->VRegC_4rcc() + 1, inst->VRegA_4rcc() - 1); in DoMethodHandleInvokeCommon()
502 RangeInstructionOperands all_operands(inst->VRegC_4rcc(), inst->VRegA_4rcc()); in DoVarHandleInvokeCommon()
/art/runtime/entrypoints/quick/
Dquick_trampoline_entrypoints.cc2551 const size_t num_vregs = is_range ? inst.VRegA_4rcc() : inst.VRegA_45cc(); in artInvokePolymorphic()
/art/compiler/optimizing/
Dinstruction_builder.cc2610 RangeInstructionOperands operands(instruction.VRegC_4rcc(), instruction.VRegA_4rcc()); in ProcessDexInstruction()