Searched refs:VRegA_11x (Results 1 – 9 of 9) sorted by relevance
/art/runtime/quick/ |
D | inline_method_analyser.cc | 147 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/ |
D | dex_instruction.h | 247 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;
|
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 | 161 case k11x: os << StringPrintf("%s v%d", opcode, VRegA_11x()); break; in DumpString()
|
/art/runtime/interpreter/ |
D | interpreter_goto_table_impl.cc | 234 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()
|
D | interpreter_switch_impl.cc | 146 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/ |
D | method_verifier.cc | 1715 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/ |
D | builder.cc | 2220 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/ |
D | mir_graph.cc | 399 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()
|