Home
last modified time | relevance | path

Searched refs:VRegA_35c (Results 1 – 9 of 9) sorted by relevance

/aosp12/art/libdexfile/dex/
H A Ddex_instruction.cc366 DumpArgs(VRegA_35c()); in DumpString()
379 DumpArgs(VRegA_35c()); in DumpString()
388 DumpArgs(VRegA_35c()); in DumpString()
395 DumpArgs(VRegA_35c()); in DumpString()
H A Ddex_instruction.h357 uint4_t VRegA_35c() const { in VRegA_35c() function
358 return VRegA_35c(Fetch16(0)); in VRegA_35c()
393 uint4_t VRegA_35c(uint16_t inst_data) const;
H A Ddex_instruction-inl.h119 case k35c: return VRegA_35c(inst_data); in VRegA()
235 inline uint4_t Instruction::VRegA_35c(uint16_t inst_data) const { in VRegA_35c() function
/aosp12/art/compiler/dex/
H A Dinline_method_analyser.cc167 size_t number_of_args = invoke_direct->VRegA_35c(); in CountForwardedConstructorArguments()
319 instruction.VRegA_35c() <= code_item->InsSize()) { in DoAnalyseConstructor()
/aosp12/art/runtime/interpreter/
H A Dinterpreter_common.h321 (is_range) ? inst->VRegA_3rc(inst_data) : inst->VRegA_35c(inst_data); in DoInvoke()
445 VarArgsInstructionOperands operands(args, inst->VRegA_35c()); in DoInvokeCustom()
H A Dinterpreter_common.cc1419 (is_range) ? inst->VRegA_3rc(inst_data) : inst->VRegA_35c(inst_data); in DoCall()
1444 const int32_t length = is_range ? inst->VRegA_3rc() : inst->VRegA_35c(); in DoFilledNewArray()
/aosp12/art/runtime/interpreter/mterp/
H A Dnterp.cc645 const int32_t length = is_range ? inst->VRegA_3rc() : inst->VRegA_35c(); in DoFilledNewArray()
/aosp12/art/tools/dexanalyze/
H A Ddexanalyze_experiments.cc46 return IsRange(inst.Opcode()) ? inst.VRegA_3rc() : inst.VRegA_35c(); in NumberOfArgs()
/aosp12/art/runtime/verifier/
H A Dmethod_verifier.cc4385 uint32_t arg_count = (is_range) ? inst->VRegA_3rc() : inst->VRegA_35c(); in VerifyNewArray()