Home
last modified time | relevance | path

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

/art/runtime/quick/
Dinline_method_analyser.cc147 uint32_t reg = return_instruction->VRegA_11x(); in AnalyseReturnMethod()
176 int32_t return_reg = return_instruction->VRegA_11x(); in AnalyseConstMethod()
214 uint32_t return_reg = return_instruction->VRegA_11x(); in AnalyseIGetMethod()
279 uint32_t return_reg = return_instruction->VRegA_11x(); in AnalyseIPutMethod()
/art/runtime/
Ddex_instruction.h247 uint8_t VRegA_11x() const { in VRegA_11x() function
248 return VRegA_11x(Fetch16(0)); in VRegA_11x()
310 uint8_t VRegA_11x(uint16_t inst_data) const;
Ddex_instruction-inl.h62 case k11x: return VRegA_11x(); in VRegA()
104 inline uint8_t Instruction::VRegA_11x(uint16_t inst_data) const { in VRegA_11x() function
Ddex_instruction.cc161 case k11x: os << StringPrintf("%s v%d", opcode, VRegA_11x()); break; in DumpString()
/art/runtime/interpreter/
Dinterpreter_goto_table_impl.cc234 shadow_frame.SetVReg(inst->VRegA_11x(inst_data), result_register.GetI()); in ExecuteGotoImpl()
239 shadow_frame.SetVRegLong(inst->VRegA_11x(inst_data), result_register.GetJ()); in ExecuteGotoImpl()
244 shadow_frame.SetVRegReference(inst->VRegA_11x(inst_data), result_register.GetL()); in ExecuteGotoImpl()
251 shadow_frame.SetVRegReference(inst->VRegA_11x(inst_data), exception); in ExecuteGotoImpl()
287 result.SetI(shadow_frame.GetVReg(inst->VRegA_11x(inst_data))); in ExecuteGotoImpl()
301 result.SetJ(shadow_frame.GetVRegLong(inst->VRegA_11x(inst_data))); in ExecuteGotoImpl()
316 const uint8_t vreg_index = inst->VRegA_11x(inst_data); in ExecuteGotoImpl()
446 Object* obj = shadow_frame.GetVRegReference(inst->VRegA_11x(inst_data)); in ExecuteGotoImpl()
458 Object* obj = shadow_frame.GetVRegReference(inst->VRegA_11x(inst_data)); in ExecuteGotoImpl()
587 Object* exception = shadow_frame.GetVRegReference(inst->VRegA_11x(inst_data)); in ExecuteGotoImpl()
Dinterpreter_switch_impl.cc146 shadow_frame.SetVReg(inst->VRegA_11x(inst_data), result_register.GetI()); in ExecuteSwitchImpl()
151 shadow_frame.SetVRegLong(inst->VRegA_11x(inst_data), result_register.GetJ()); in ExecuteSwitchImpl()
156 shadow_frame.SetVRegReference(inst->VRegA_11x(inst_data), result_register.GetL()); in ExecuteSwitchImpl()
163 shadow_frame.SetVRegReference(inst->VRegA_11x(inst_data), exception); in ExecuteSwitchImpl()
195 result.SetI(shadow_frame.GetVReg(inst->VRegA_11x(inst_data))); in ExecuteSwitchImpl()
207 result.SetJ(shadow_frame.GetVRegLong(inst->VRegA_11x(inst_data))); in ExecuteSwitchImpl()
220 const size_t ref_idx = inst->VRegA_11x(inst_data); in ExecuteSwitchImpl()
349 Object* obj = shadow_frame.GetVRegReference(inst->VRegA_11x(inst_data)); in ExecuteSwitchImpl()
361 Object* obj = shadow_frame.GetVRegReference(inst->VRegA_11x(inst_data)); in ExecuteSwitchImpl()
496 Object* exception = shadow_frame.GetVRegReference(inst->VRegA_11x(inst_data)); in ExecuteSwitchImpl()
/art/runtime/verifier/
Dmethod_verifier.cc1715 work_line_->CopyResultRegister1(this, inst->VRegA_11x(), false); in CodeFlowVerifyInstruction()
1718 work_line_->CopyResultRegister2(this, inst->VRegA_11x()); in CodeFlowVerifyInstruction()
1721 work_line_->CopyResultRegister1(this, inst->VRegA_11x(), true); in CodeFlowVerifyInstruction()
1736 work_line_->SetRegisterType(this, inst->VRegA_11x(), res_type); in CodeFlowVerifyInstruction()
1756 const uint32_t vregA = inst->VRegA_11x(); in CodeFlowVerifyInstruction()
1779 const uint32_t vregA = inst->VRegA_11x(); in CodeFlowVerifyInstruction()
1796 const uint32_t vregA = inst->VRegA_11x(); in CodeFlowVerifyInstruction()
1900 work_line_->PushMonitor(this, inst->VRegA_11x(), work_insn_idx_); in CodeFlowVerifyInstruction()
1924 work_line_->PopMonitor(this, inst->VRegA_11x()); in CodeFlowVerifyInstruction()
2058 const RegType& res_type = work_line_->GetRegisterType(this, inst->VRegA_11x()); in CodeFlowVerifyInstruction()
[all …]
/art/compiler/optimizing/
Dbuilder.cc2220 UpdateLocal(instruction.VRegA_11x(), current_block_->GetLastInstruction()); in AnalyzeDexInstruction()
2225 HInstruction* exception = LoadLocal(instruction.VRegA_11x(), Primitive::kPrimNot); in AnalyzeDexInstruction()
2256 LoadLocal(instruction.VRegA_11x(), Primitive::kPrimNot), in AnalyzeDexInstruction()
2264 LoadLocal(instruction.VRegA_11x(), Primitive::kPrimNot), in AnalyzeDexInstruction()
/art/compiler/dex/
Dmir_graph.cc399 int monitor_reg = monitor_exit->VRegA_11x(); in IsBadMonitorExitCatch()
402 if (check_insn->VRegA_11x() == monitor_reg) { in IsBadMonitorExitCatch()
443 check_insn->VRegA_11x() == monitor_reg; in IsBadMonitorExitCatch()