Searched refs:VRegA_11x (Results 1 – 8 of 8) sorted by relevance
/art/runtime/quick/ |
D | inline_method_analyser.cc | 148 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/ |
D | dex_instruction.h | 249 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;
|
D | dex_instruction-inl.h | 62 case k11x: return VRegA_11x(); in VRegA() 104 inline uint8_t Instruction::VRegA_11x(uint16_t inst_data) const { in VRegA_11x() function
|
D | dex_instruction.cc | 143 case k11x: os << StringPrintf("%s v%d", opcode, VRegA_11x()); break; in DumpString()
|
/art/runtime/interpreter/ |
D | interpreter_goto_table_impl.cc | 222 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()
|
D | interpreter_switch_impl.cc | 149 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/ |
D | method_verifier.cc | 1531 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/ |
D | mir_graph.cc | 344 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()
|