Home
last modified time | relevance | path

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

/art/runtime/
Ddex_instruction.cc259 …< opcode << " v" << static_cast<int>(VRegA_22c()) << ", v" << static_cast<int>(VRegB_22c()) << ", " in DumpString()
268 …< opcode << " v" << static_cast<int>(VRegA_22c()) << ", v" << static_cast<int>(VRegB_22c()) << ", " in DumpString()
282 …< opcode << " v" << static_cast<int>(VRegA_22c()) << ", v" << static_cast<int>(VRegB_22c()) << ", " in DumpString()
291 …< opcode << " v" << static_cast<int>(VRegA_22c()) << ", v" << static_cast<int>(VRegB_22c()) << ", " in DumpString()
300 << static_cast<int>(VRegB_22c()) << ", " << file->PrettyType(type_idx) in DumpString()
309 << static_cast<int>(VRegB_22c()) << ", " << file->PrettyType(type_idx) in DumpString()
315 … os << StringPrintf("%s v%d, v%d, thing@%d", opcode, VRegA_22c(), VRegB_22c(), VRegC_22c()); in DumpString()
Ddex_instruction.h401 uint4_t VRegB_22c() const { in VRegB_22c() function
402 return VRegB_22c(Fetch16(0)); in VRegB_22c()
427 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.cc127 instruction_->VRegB_22c() == code_item_->registers_size_ - code_item_->ins_size_; in IPutOnThis()
355 DCHECK_EQ(instruction->VRegB_22c(), this_vreg); in DoAnalyseConstructor()
596 uint32_t object_reg = instruction->VRegB_22c(); in AnalyseIGetMethod()
665 uint32_t object_reg = instruction->VRegB_22c(); in AnalyseIPutMethod()
/art/runtime/interpreter/
Dinterpreter_common.cc61 obj = shadow_frame.GetVRegReference(inst->VRegB_22c(inst_data)); in DoFieldGet()
140 ObjPtr<mirror::Object> obj = shadow_frame.GetVRegReference(inst->VRegB_22c(inst_data)); in EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL()
265 obj = shadow_frame.GetVRegReference(inst->VRegB_22c(inst_data)); in DoFieldPut()
315 ObjPtr<mirror::Object> obj = shadow_frame.GetVRegReference(inst->VRegB_22c(inst_data)); in EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL()
Dinterpreter_switch_impl.cc547 ObjPtr<mirror::Object> obj = shadow_frame.GetVRegReference(inst->VRegB_22c(inst_data)); in ExecuteSwitchImpl()
604 int32_t length = shadow_frame.GetVReg(inst->VRegB_22c(inst_data)); in ExecuteSwitchImpl()
/art/runtime/verifier/
Dmethod_verifier.cc2417 uint32_t orig_type_reg = (is_checkcast) ? inst->VRegA_21c() : inst->VRegB_22c(); in CodeFlowVerifyInstruction()
2666 (instance_of_inst->VRegA_22c() != instance_of_inst->VRegB_22c())) { in CodeFlowVerifyInstruction()
2677 const RegType& orig_type = work_line_->GetRegisterType(this, instance_of_inst->VRegB_22c()); in CodeFlowVerifyInstruction()
2696 instance_of_inst->VRegB_22c(), in CodeFlowVerifyInstruction()
2714 if (move_inst->VRegA_12x() == instance_of_inst->VRegB_22c()) { in CodeFlowVerifyInstruction()
2721 if (move_inst->VRegA_22x() == instance_of_inst->VRegB_22c()) { in CodeFlowVerifyInstruction()
2728 if (move_inst->VRegA_32x() == instance_of_inst->VRegB_22c()) { in CodeFlowVerifyInstruction()
4606 work_line_->VerifyRegisterType(this, inst->VRegB_22c(), reg_types_.Integer()); in VerifyNewArray()
4943 const RegType& object_type = work_line_->GetRegisterType(this, inst->VRegB_22c()); in VerifyISFieldAccess()
5069 const RegType& object_type = reg_line->GetRegisterType(this, inst->VRegB_22c()); in GetQuickFieldAccess()
/art/compiler/optimizing/
Dinstruction_builder.cc1261 uint32_t obj_reg = instruction.VRegB_22c(); in BuildInstanceFieldAccess()
2573 HInstruction* length = LoadLocal(instruction.VRegB_22c(), Primitive::kPrimInt); in ProcessDexInstruction()
2786 uint8_t reference = instruction.VRegB_22c(); in ProcessDexInstruction()
/art/runtime/interpreter/mterp/
Dmterp.cc478 int32_t length = shadow_frame->GetVReg(inst->VRegB_22c(inst_data)); in MterpNewArray()