Home
last modified time | relevance | path

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

/art/runtime/quick/
Dinline_method_analyser.cc148 uint32_t reg = return_instruction->VRegA_11x(); in AnalyseReturnMethod()
177 int32_t return_reg = return_instruction->VRegA_11x(); in AnalyseConstMethod()
215 uint32_t return_reg = return_instruction->VRegA_11x(); in AnalyseIGetMethod()
280 uint32_t return_reg = return_instruction->VRegA_11x(); in AnalyseIPutMethod()
/art/runtime/
Ddex_instruction.h249 uint8_t VRegA_11x() const { in VRegA_11x() function
250 return VRegA_11x(Fetch16(0)); in VRegA_11x()
312 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.cc143 case k11x: os << StringPrintf("%s v%d", opcode, VRegA_11x()); break; in DumpString()
/art/runtime/interpreter/
Dinterpreter_goto_table_impl.cc222 shadow_frame.SetVReg(inst->VRegA_11x(inst_data), result_register.GetI()); in ExecuteGotoImpl()
227 shadow_frame.SetVRegLong(inst->VRegA_11x(inst_data), result_register.GetJ()); in ExecuteGotoImpl()
232 shadow_frame.SetVRegReference(inst->VRegA_11x(inst_data), result_register.GetL()); in ExecuteGotoImpl()
238 shadow_frame.SetVRegReference(inst->VRegA_11x(inst_data), exception); in ExecuteGotoImpl()
290 result.SetI(shadow_frame.GetVReg(inst->VRegA_11x(inst_data))); in ExecuteGotoImpl()
309 result.SetJ(shadow_frame.GetVRegLong(inst->VRegA_11x(inst_data))); in ExecuteGotoImpl()
331 const uint8_t vreg_index = inst->VRegA_11x(inst_data); in ExecuteGotoImpl()
467 Object* obj = shadow_frame.GetVRegReference(inst->VRegA_11x(inst_data)); in ExecuteGotoImpl()
479 Object* obj = shadow_frame.GetVRegReference(inst->VRegA_11x(inst_data)); in ExecuteGotoImpl()
614 Object* exception = shadow_frame.GetVRegReference(inst->VRegA_11x(inst_data)); in ExecuteGotoImpl()
Dinterpreter_switch_impl.cc149 shadow_frame.SetVReg(inst->VRegA_11x(inst_data), result_register.GetI()); in ExecuteSwitchImpl()
154 shadow_frame.SetVRegLong(inst->VRegA_11x(inst_data), result_register.GetJ()); in ExecuteSwitchImpl()
159 shadow_frame.SetVRegReference(inst->VRegA_11x(inst_data), result_register.GetL()); in ExecuteSwitchImpl()
165 shadow_frame.SetVRegReference(inst->VRegA_11x(inst_data), exception); in ExecuteSwitchImpl()
210 result.SetI(shadow_frame.GetVReg(inst->VRegA_11x(inst_data))); in ExecuteSwitchImpl()
226 result.SetJ(shadow_frame.GetVRegLong(inst->VRegA_11x(inst_data))); in ExecuteSwitchImpl()
245 const size_t ref_idx = inst->VRegA_11x(inst_data); in ExecuteSwitchImpl()
380 Object* obj = shadow_frame.GetVRegReference(inst->VRegA_11x(inst_data)); in ExecuteSwitchImpl()
392 Object* obj = shadow_frame.GetVRegReference(inst->VRegA_11x(inst_data)); in ExecuteSwitchImpl()
528 Object* exception = shadow_frame.GetVRegReference(inst->VRegA_11x(inst_data)); in ExecuteSwitchImpl()
/art/runtime/verifier/
Dmethod_verifier.cc1531 work_line_->CopyResultRegister1(inst->VRegA_11x(), false); in CodeFlowVerifyInstruction()
1534 work_line_->CopyResultRegister2(inst->VRegA_11x()); in CodeFlowVerifyInstruction()
1537 work_line_->CopyResultRegister1(inst->VRegA_11x(), true); in CodeFlowVerifyInstruction()
1546 work_line_->SetRegisterType(inst->VRegA_11x(), res_type); in CodeFlowVerifyInstruction()
1566 const uint32_t vregA = inst->VRegA_11x(); in CodeFlowVerifyInstruction()
1589 const uint32_t vregA = inst->VRegA_11x(); in CodeFlowVerifyInstruction()
1606 const uint32_t vregA = inst->VRegA_11x(); in CodeFlowVerifyInstruction()
1697 work_line_->PushMonitor(inst->VRegA_11x(), work_insn_idx_); in CodeFlowVerifyInstruction()
1721 work_line_->PopMonitor(inst->VRegA_11x()); in CodeFlowVerifyInstruction()
1855 RegType& res_type = work_line_->GetRegisterType(inst->VRegA_11x()); in CodeFlowVerifyInstruction()
[all …]
/art/compiler/dex/
Dmir_graph.cc344 int monitor_reg = monitor_exit->VRegA_11x(); in IsBadMonitorExitCatch()
347 if (check_insn->VRegA_11x() == monitor_reg) { in IsBadMonitorExitCatch()
387 check_insn->VRegA_11x() == monitor_reg; in IsBadMonitorExitCatch()