Home
last modified time | relevance | path

Searched refs:VRegB_22c (Results 1 – 10 of 10) 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.h418 uint4_t VRegB_22c() const { in VRegB_22c() function
419 return VRegB_22c(Fetch16(0)); in VRegB_22c()
444 uint4_t VRegB_22c(uint16_t inst_data) const;
Ddex_instruction-inl.h308 case k22c: return VRegB_22c(inst_data); in VRegB()
367 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.cc521 int32_t length = shadow_frame->GetVReg(inst->VRegB_22c(inst_data)); in MterpNewArray()
734 : shadow_frame->GetVRegReference(inst->VRegB_22c(inst_data)); in MterpFieldAccessSlow()
773 : ObjPtr<mirror::Object>(shadow_frame->GetVRegReference(inst->VRegB_22c(inst_data))); in MterpFieldAccessFast()
800 : shadow_frame->GetVRegReference(inst->VRegB_22c(inst_data)); in MterpFieldAccessFast()
/art/runtime/interpreter/
Dinterpreter_common.h530 obj = shadow_frame.GetVRegReference(inst->VRegB_22c(inst_data)); in DoFieldGet()
578 ObjPtr<mirror::Object> obj = shadow_frame.GetVRegReference(inst->VRegB_22c(inst_data)); in DoIGetQuick()
687 obj = shadow_frame.GetVRegReference(inst->VRegB_22c(inst_data)); in DoFieldPut()
718 ObjPtr<mirror::Object> obj = shadow_frame.GetVRegReference(inst->VRegB_22c(inst_data)); in DoIPutQuick()
/art/runtime/verifier/
Dmethod_verifier.cc2461 uint32_t orig_type_reg = (is_checkcast) ? inst->VRegA_21c() : inst->VRegB_22c(); in CodeFlowVerifyInstruction()
2707 (instance_of_inst.VRegA_22c() != instance_of_inst.VRegB_22c())) { in CodeFlowVerifyInstruction()
2721 const RegType& orig_type = work_line_->GetRegisterType(this, instance_of_inst.VRegB_22c()); in CodeFlowVerifyInstruction()
2742 instance_of_inst.VRegB_22c(), in CodeFlowVerifyInstruction()
2758 if (move_trg == instance_of_inst.VRegB_22c() && in CodeFlowVerifyInstruction()
4440 work_line_->VerifyRegisterType(this, inst->VRegB_22c(), reg_types_.Integer()); in VerifyNewArray()
4804 const RegType& object_type = work_line_->GetRegisterType(this, inst->VRegB_22c()); in VerifyISFieldAccess()
/art/compiler/optimizing/
Dinstruction_builder.cc1811 uint32_t obj_reg = instruction.VRegB_22c(); in BuildInstanceFieldAccess()
3162 HInstruction* length = LoadLocal(instruction.VRegB_22c(), DataType::Type::kInt32); in ProcessDexInstruction()
3370 uint8_t reference = instruction.VRegB_22c(); in ProcessDexInstruction()