Searched refs:VRegB_22c (Results 1 – 10 of 10) sorted by relevance
/art/libdexfile/dex/ |
D | dex_instruction.cc | 279 …< opcode << " v" << static_cast<int>(VRegA_22c()) << ", v" << static_cast<int>(VRegB_22c()) << ", " in DumpString() 293 …< opcode << " v" << static_cast<int>(VRegA_22c()) << ", v" << static_cast<int>(VRegB_22c()) << ", " in DumpString() 302 << static_cast<int>(VRegB_22c()) << ", " << file->PrettyType(type_idx) in DumpString() 311 << static_cast<int>(VRegB_22c()) << ", " << file->PrettyType(type_idx) in DumpString() 317 … os << StringPrintf("%s v%d, v%d, thing@%d", opcode, VRegA_22c(), VRegB_22c(), VRegC_22c()); in DumpString()
|
D | dex_instruction.h | 418 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;
|
D | dex_instruction-inl.h | 308 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/ |
D | inline_method_analyser.cc | 126 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/ |
D | dexanalyze_bytecode.cc | 264 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()
|
D | dexanalyze_experiments.cc | 291 const uint32_t receiver = inst.VRegB_22c(); in ProcessDexFile()
|
/art/runtime/interpreter/mterp/ |
D | mterp.cc | 455 int32_t length = shadow_frame->GetVReg(inst->VRegB_22c(inst_data)); in MterpNewArray() 689 : shadow_frame->GetVRegReference(inst->VRegB_22c(inst_data)); in MterpFieldAccessSlow() 725 : ObjPtr<mirror::Object>(shadow_frame->GetVRegReference(inst->VRegB_22c(inst_data))); in MterpFieldAccessFast() 752 : shadow_frame->GetVRegReference(inst->VRegB_22c(inst_data)); in MterpFieldAccessFast()
|
/art/runtime/interpreter/ |
D | interpreter_common.h | 509 obj = shadow_frame.GetVRegReference(inst->VRegB_22c(inst_data)); in DoFieldGet() 601 obj = shadow_frame.GetVRegReference(inst->VRegB_22c(inst_data)); in DoFieldPut()
|
/art/runtime/verifier/ |
D | method_verifier.cc | 2453 uint32_t orig_type_reg = (is_checkcast) ? inst->VRegA_21c() : inst->VRegB_22c(); in CodeFlowVerifyInstruction() 2700 (instance_of_inst.VRegA_22c() != instance_of_inst.VRegB_22c())) { in CodeFlowVerifyInstruction() 2714 const RegType& orig_type = work_line_->GetRegisterType(this, instance_of_inst.VRegB_22c()); in CodeFlowVerifyInstruction() 2735 instance_of_inst.VRegB_22c(), in CodeFlowVerifyInstruction() 2751 if (move_trg == instance_of_inst.VRegB_22c() && in CodeFlowVerifyInstruction() 4376 work_line_->VerifyRegisterType(this, inst->VRegB_22c(), reg_types_.Integer()); in VerifyNewArray() 4734 const RegType& object_type = work_line_->GetRegisterType(this, inst->VRegB_22c()); in VerifyISFieldAccess()
|
/art/compiler/optimizing/ |
D | instruction_builder.cc | 1937 uint32_t obj_reg = instruction.VRegB_22c(); in BuildInstanceFieldAccess() 3330 HInstruction* length = LoadLocal(instruction.VRegB_22c(), DataType::Type::kInt32); in ProcessDexInstruction() 3524 uint8_t reference = instruction.VRegB_22c(); in ProcessDexInstruction()
|