Home
last modified time | relevance | path

Searched refs:VRegB_22c (Results 1 – 11 of 11) sorted by relevance

/art/libdexfile/dex/
Ddex_instruction.cc279 …< opcode << " v" << static_cast<int>(VRegA_22c()) << ", v" << static_cast<int>(VRegB_22c()) << ", " in DumpString()
288 …< opcode << " v" << static_cast<int>(VRegA_22c()) << ", v" << static_cast<int>(VRegB_22c()) << ", " in DumpString()
302 …< opcode << " v" << static_cast<int>(VRegA_22c()) << ", v" << static_cast<int>(VRegB_22c()) << ", " in DumpString()
311 …< opcode << " v" << static_cast<int>(VRegA_22c()) << ", v" << static_cast<int>(VRegB_22c()) << ", " in DumpString()
320 << static_cast<int>(VRegB_22c()) << ", " << file->PrettyType(type_idx) in DumpString()
329 << static_cast<int>(VRegB_22c()) << ", " << file->PrettyType(type_idx) in DumpString()
335 … os << StringPrintf("%s v%d, v%d, thing@%d", opcode, VRegA_22c(), VRegB_22c(), VRegC_22c()); in DumpString()
Ddex_instruction.h412 uint4_t VRegB_22c() const { in VRegB_22c() function
413 return VRegB_22c(Fetch16(0)); in VRegB_22c()
438 uint4_t VRegB_22c(uint16_t inst_data) const;
Ddex_instruction-inl.h266 case k22c: return VRegB_22c(); in VRegB()
325 inline uint4_t Instruction::VRegB_22c(uint16_t inst_data) const { in VRegB_22c() function
/art/compiler/dex/
Dinline_method_analyser.cc126 instruction_->VRegB_22c() == code_item_->RegistersSize() - code_item_->InsSize(); in IPutOnThis()
358 DCHECK_EQ(instruction.VRegB_22c(), this_vreg); in DoAnalyseConstructor()
598 uint32_t object_reg = instruction->VRegB_22c(); in AnalyseIGetMethod()
667 uint32_t object_reg = instruction->VRegB_22c(); in AnalyseIPutMethod()
/art/tools/dexanalyze/
Ddexanalyze_bytecode.cc264 uint32_t receiver = inst->VRegB_22c(); in ProcessCodeItem()
439 uint32_t in_reg = inst->VRegB_22c(); in ProcessCodeItem()
452 uint32_t len_reg = inst->VRegB_22c(); in ProcessCodeItem()
Ddexanalyze_experiments.cc291 const uint32_t receiver = inst.VRegB_22c(); in ProcessDexFile()
/art/runtime/interpreter/mterp/
Dmterp.cc524 int32_t length = shadow_frame->GetVReg(inst->VRegB_22c(inst_data)); in MterpNewArray()
737 : shadow_frame->GetVRegReference(inst->VRegB_22c(inst_data)); in MterpFieldAccessSlow()
776 : ObjPtr<mirror::Object>(shadow_frame->GetVRegReference(inst->VRegB_22c(inst_data))); in MterpFieldAccessFast()
803 : shadow_frame->GetVRegReference(inst->VRegB_22c(inst_data)); in MterpFieldAccessFast()
/art/runtime/interpreter/
Dinterpreter_common.cc118 obj = shadow_frame.GetVRegReference(inst->VRegB_22c(inst_data)); in DoFieldGet()
199 ObjPtr<mirror::Object> obj = shadow_frame.GetVRegReference(inst->VRegB_22c(inst_data)); in EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL()
332 obj = shadow_frame.GetVRegReference(inst->VRegB_22c(inst_data)); in DoFieldPut()
382 ObjPtr<mirror::Object> obj = shadow_frame.GetVRegReference(inst->VRegB_22c(inst_data)); in EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL()
Dinterpreter_switch_impl-inl.h813 ObjPtr<mirror::Object> obj = shadow_frame.GetVRegReference(inst->VRegB_22c(inst_data)); in INSTANCE_OF()
866 int32_t length = shadow_frame.GetVReg(inst->VRegB_22c(inst_data)); in NEW_ARRAY()
/art/runtime/verifier/
Dmethod_verifier.cc2447 uint32_t orig_type_reg = (is_checkcast) ? inst->VRegA_21c() : inst->VRegB_22c(); in CodeFlowVerifyInstruction()
2698 (instance_of_inst.VRegA_22c() != instance_of_inst.VRegB_22c())) { in CodeFlowVerifyInstruction()
2709 const RegType& orig_type = work_line_->GetRegisterType(this, instance_of_inst.VRegB_22c()); in CodeFlowVerifyInstruction()
2730 instance_of_inst.VRegB_22c(), in CodeFlowVerifyInstruction()
2750 if (move_trg == instance_of_inst.VRegB_22c() && in CodeFlowVerifyInstruction()
4434 work_line_->VerifyRegisterType(this, inst->VRegB_22c(), reg_types_.Integer()); in VerifyNewArray()
4797 const RegType& object_type = work_line_->GetRegisterType(this, inst->VRegB_22c()); in VerifyISFieldAccess()
/art/compiler/optimizing/
Dinstruction_builder.cc1528 uint32_t obj_reg = instruction.VRegB_22c(); in BuildInstanceFieldAccess()
2867 HInstruction* length = LoadLocal(instruction.VRegB_22c(), DataType::Type::kInt32); in ProcessDexInstruction()
3075 uint8_t reference = instruction.VRegB_22c(); in ProcessDexInstruction()