Home
last modified time | relevance | path

Searched refs:VRegB_21c (Results 1 – 10 of 10) sorted by relevance

/art/runtime/
Ddex_instruction.cc165 uint32_t string_idx = VRegB_21c(); in DumpString()
174 uint32_t type_idx = VRegB_21c(); in DumpString()
187 uint32_t field_idx = VRegB_21c(); in DumpString()
200 uint32_t field_idx = VRegB_21c(); in DumpString()
206 os << StringPrintf("%s v%d, thing@%d", opcode, VRegA_21c(), VRegB_21c()); in DumpString()
Ddex_instruction-inl.h245 case k21c: return VRegB_21c(); in VRegB()
282 inline uint16_t Instruction::VRegB_21c() const { in VRegB_21c() function
Ddex_instruction.h344 uint16_t VRegB_21c() const;
/art/compiler/dex/
Dverified_method.cc289 method_verifier->ResolveCheckedClass(inst->VRegB_21c()); in GenerateSafeCastSet()
Dmir_analysis.cc1144 uint16_t field_idx = insn->VRegB_21c(); in DoCacheFieldLoweringInfo()
/art/runtime/interpreter/
Dinterpreter_common.cc33 const uint32_t field_idx = is_static ? inst->VRegB_21c() : inst->VRegC_22c(); in DoFieldGet()
209 uint32_t field_idx = is_static ? inst->VRegB_21c() : inst->VRegC_22c(); in DoFieldPut()
Dinterpreter_goto_table_impl.cc433 String* s = ResolveString(self, mh, inst->VRegB_21c()); in ExecuteGotoImpl()
455 Class* c = ResolveVerifyAndClinit(inst->VRegB_21c(), shadow_frame.GetMethod(), in ExecuteGotoImpl()
491 Class* c = ResolveVerifyAndClinit(inst->VRegB_21c(), shadow_frame.GetMethod(), in ExecuteGotoImpl()
535 inst->VRegB_21c(), shadow_frame.GetMethod(), self, in ExecuteGotoImpl()
Dinterpreter_switch_impl.cc346 String* s = ResolveString(self, mh, inst->VRegB_21c()); in ExecuteSwitchImpl()
368 Class* c = ResolveVerifyAndClinit(inst->VRegB_21c(), shadow_frame.GetMethod(), in ExecuteSwitchImpl()
404 Class* c = ResolveVerifyAndClinit(inst->VRegB_21c(), shadow_frame.GetMethod(), in ExecuteSwitchImpl()
448 inst->VRegB_21c(), shadow_frame.GetMethod(), self, in ExecuteSwitchImpl()
/art/runtime/verifier/
Dmethod_verifier.cc1689 RegType& res_type = ResolveClassAndCheckAccess(inst->VRegB_21c()); in CodeFlowVerifyInstruction()
1734 const uint32_t type_idx = (is_checkcast) ? inst->VRegB_21c() : inst->VRegC_22c(); in CodeFlowVerifyInstruction()
1790 RegType& res_type = ResolveClassAndCheckAccess(inst->VRegB_21c()); in CodeFlowVerifyInstruction()
3700 uint32_t field_idx = is_static ? inst->VRegB_21c() : inst->VRegC_22c(); in VerifyISGet()
3766 uint32_t field_idx = is_static ? inst->VRegB_21c() : inst->VRegC_22c(); in VerifyISPut()
/art/compiler/optimizing/
Dbuilder.cc690 new (arena_) HNewInstance(dex_offset, instruction.VRegB_21c())); in AnalyzeDexInstruction()