Home
last modified time | relevance | path

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

/art/runtime/
Ddex_instruction.cc273 …os << opcode << " v" << static_cast<int>(VRegA_22c()) << ", v" << static_cast<int>(VRegB_22c()) <<… in DumpString()
282 …os << opcode << " v" << static_cast<int>(VRegA_22c()) << ", v" << static_cast<int>(VRegB_22c()) <<… in DumpString()
296 …os << opcode << " v" << static_cast<int>(VRegA_22c()) << ", v" << static_cast<int>(VRegB_22c()) <<… in DumpString()
305 …os << opcode << " v" << static_cast<int>(VRegA_22c()) << ", v" << static_cast<int>(VRegB_22c()) <<… in DumpString()
313 …os << opcode << " v" << static_cast<int>(VRegA_22c()) << ", v" << static_cast<int>(VRegB_22c()) <<… in DumpString()
321 …os << opcode << " v" << static_cast<int>(VRegA_22c()) << ", v" << static_cast<int>(VRegB_22c()) <<… in DumpString()
327 … os << StringPrintf("%s v%d, v%d, thing@%d", opcode, VRegA_22c(), VRegB_22c(), VRegC_22c()); in DumpString()
Ddex_instruction.h285 uint4_t VRegA_22c() const { in VRegA_22c() function
286 return VRegA_22c(Fetch16(0)); in VRegA_22c()
333 uint4_t VRegA_22c(uint16_t inst_data) const;
Ddex_instruction-inl.h70 case k22c: return VRegA_22c(); in VRegA()
144 inline uint4_t Instruction::VRegA_22c(uint16_t inst_data) const { in VRegA_22c() function
/art/runtime/quick/
Dinline_method_analyser.cc238 if ((zero_vreg_mask & (1u << new_iput->VRegA_22c())) == 0u) { in RecordConstructorIPut()
247 iputs[new_pos].arg = new_iput->VRegA_22c() - this_vreg; in RecordConstructorIPut()
615 uint32_t dst_reg = instruction->VRegA_22c(); in AnalyseIGetMethod()
685 uint32_t src_reg = instruction->VRegA_22c(); in AnalyseIPutMethod()
/art/runtime/interpreter/
Dinterpreter_common.cc69 uint32_t vregA = is_static ? inst->VRegA_21c(inst_data) : inst->VRegA_22c(inst_data); in DoFieldGet()
155 const uint32_t vregA = inst->VRegA_22c(inst_data); in EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL()
257 uint32_t vregA = is_static ? inst->VRegA_21c(inst_data) : inst->VRegA_22c(inst_data); in DoFieldPut()
361 const uint32_t vregA = inst->VRegA_22c(inst_data); in EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL()
Dinterpreter_common.h490 const uint32_t dest_vreg = inst->VRegA_22c(); in DoLiberateVariable()
951 uint32_t vreg_target_closure = inst->VRegA_22c(inst_data); in SHARED_REQUIRES()
Dinterpreter_goto_table_impl.cc523 … shadow_frame.SetVReg(inst->VRegA_22c(inst_data), (obj != nullptr && obj->InstanceOf(c)) ? 1 : 0); in ExecuteGotoImpl()
581 shadow_frame.SetVRegReference(inst->VRegA_22c(inst_data), obj); in ExecuteGotoImpl()
Dinterpreter_switch_impl.cc465 shadow_frame.SetVReg(inst->VRegA_22c(inst_data), in ExecuteSwitchImpl()
525 shadow_frame.SetVRegReference(inst->VRegA_22c(inst_data), obj); in ExecuteSwitchImpl()
/art/runtime/verifier/
Dmethod_verifier.cc2353 inst->VRegA_22c(), in CodeFlowVerifyInstruction()
2386 inst->VRegA_22c(), in CodeFlowVerifyInstruction()
2607 (inst->VRegA_21t() == instance_of_inst->VRegA_22c()) && in CodeFlowVerifyInstruction()
2608 (instance_of_inst->VRegA_22c() != instance_of_inst->VRegB_22c())) { in CodeFlowVerifyInstruction()
4295 work_line_->SetRegisterType<LockOp::kClear>(this, inst->VRegA_22c(), precise_type); in VerifyNewArray()
4675 const uint32_t vregA = (is_static) ? inst->VRegA_21c() : inst->VRegA_22c(); in VerifyISFieldAccess()
4803 const uint32_t vregA = inst->VRegA_22c(); in VerifyQuickFieldAccess()
/art/compiler/optimizing/
Dinstruction_builder.cc1190 uint32_t source_or_dest_reg = instruction.VRegA_22c(); in BuildInstanceFieldAccess()
2432 UpdateLocal(instruction.VRegA_22c(), current_block_->GetLastInstruction()); in ProcessDexInstruction()
2644 uint8_t destination = instruction.VRegA_22c(); in ProcessDexInstruction()
/art/runtime/interpreter/mterp/
Dmterp.cc413 shadow_frame->SetVRegReference(inst->VRegA_22c(inst_data), obj); in MterpNewArray()