/art/runtime/interpreter/ |
D | interpreter_switch_impl.cc | 99 shadow_frame.GetVReg(inst->VRegB_12x(inst_data))); in ExecuteSwitchImpl() 105 shadow_frame.GetVReg(inst->VRegB_22x())); in ExecuteSwitchImpl() 111 shadow_frame.GetVReg(inst->VRegB_32x())); in ExecuteSwitchImpl() 214 result.SetI(shadow_frame.GetVReg(inst->VRegA_11x(inst_data))); in ExecuteSwitchImpl() 473 int32_t length = shadow_frame.GetVReg(inst->VRegB_22c(inst_data)); in ExecuteSwitchImpl() 686 …if (shadow_frame.GetVReg(inst->VRegA_22t(inst_data)) == shadow_frame.GetVReg(inst->VRegB_22t(inst_… in ExecuteSwitchImpl() 701 …if (shadow_frame.GetVReg(inst->VRegA_22t(inst_data)) != shadow_frame.GetVReg(inst->VRegB_22t(inst_… in ExecuteSwitchImpl() 716 …if (shadow_frame.GetVReg(inst->VRegA_22t(inst_data)) < shadow_frame.GetVReg(inst->VRegB_22t(inst_d… in ExecuteSwitchImpl() 731 …if (shadow_frame.GetVReg(inst->VRegA_22t(inst_data)) >= shadow_frame.GetVReg(inst->VRegB_22t(inst_… in ExecuteSwitchImpl() 746 …if (shadow_frame.GetVReg(inst->VRegA_22t(inst_data)) > shadow_frame.GetVReg(inst->VRegB_22t(inst_d… in ExecuteSwitchImpl() [all …]
|
D | interpreter_goto_table_impl.cc | 172 shadow_frame.GetVReg(inst->VRegB_12x(inst_data))); in ExecuteGotoImpl() 178 shadow_frame.GetVReg(inst->VRegB_22x())); in ExecuteGotoImpl() 184 shadow_frame.GetVReg(inst->VRegB_32x())); in ExecuteGotoImpl() 294 result.SetI(shadow_frame.GetVReg(inst->VRegA_11x(inst_data))); in ExecuteGotoImpl() 559 int32_t length = shadow_frame.GetVReg(inst->VRegB_22c(inst_data)); in ExecuteGotoImpl() 776 …if (shadow_frame.GetVReg(inst->VRegA_22t(inst_data)) == shadow_frame.GetVReg(inst->VRegB_22t(inst_… in ExecuteGotoImpl() 792 …if (shadow_frame.GetVReg(inst->VRegA_22t(inst_data)) != shadow_frame.GetVReg(inst->VRegB_22t(inst_… in ExecuteGotoImpl() 808 …if (shadow_frame.GetVReg(inst->VRegA_22t(inst_data)) < shadow_frame.GetVReg(inst->VRegB_22t(inst_d… in ExecuteGotoImpl() 824 …if (shadow_frame.GetVReg(inst->VRegA_22t(inst_data)) >= shadow_frame.GetVReg(inst->VRegB_22t(inst_… in ExecuteGotoImpl() 840 …if (shadow_frame.GetVReg(inst->VRegA_22t(inst_data)) > shadow_frame.GetVReg(inst->VRegB_22t(inst_d… in ExecuteGotoImpl() [all …]
|
D | interpreter_common.cc | 176 field_value.SetZ(static_cast<uint8_t>(shadow_frame.GetVReg(vreg))); in GetFieldValue() 179 field_value.SetB(static_cast<int8_t>(shadow_frame.GetVReg(vreg))); in GetFieldValue() 182 field_value.SetC(static_cast<uint16_t>(shadow_frame.GetVReg(vreg))); in GetFieldValue() 185 field_value.SetS(static_cast<int16_t>(shadow_frame.GetVReg(vreg))); in GetFieldValue() 188 field_value.SetI(shadow_frame.GetVReg(vreg)); in GetFieldValue() 240 f->SetBoolean<transaction_active>(obj, shadow_frame.GetVReg(vregA)); in DoFieldPut() 243 f->SetByte<transaction_active>(obj, shadow_frame.GetVReg(vregA)); in DoFieldPut() 246 f->SetChar<transaction_active>(obj, shadow_frame.GetVReg(vregA)); in DoFieldPut() 249 f->SetShort<transaction_active>(obj, shadow_frame.GetVReg(vregA)); in DoFieldPut() 252 f->SetInt<transaction_active>(obj, shadow_frame.GetVReg(vregA)); in DoFieldPut() [all …]
|
D | interpreter_common.h | 288 int32_t test_val = shadow_frame.GetVReg(inst->VRegA_31t(inst_data)); in DoPackedSwitch() 313 int32_t test_val = shadow_frame.GetVReg(inst->VRegA_31t(inst_data)); in DoSparseSwitch() 357 uint32_t raw_value = shadow_frame.GetVReg(i); in TraceExecution()
|
/art/runtime/ |
D | quick_exception_handler.cc | 230 reinterpret_cast<mirror::Object*>(GetVReg(h_method.Get(), in HandleDeoptimization() 238 new_frame->SetVReg(reg, GetVReg(h_method.Get(), reg, kind)); in HandleDeoptimization() 245 new_frame->SetVReg(reg, GetVReg(h_method.Get(), reg, kind)); in HandleDeoptimization() 253 new_frame->SetVReg(reg, GetVReg(h_method.Get(), reg, kind)); in HandleDeoptimization() 260 new_frame->SetVReg(reg, GetVReg(h_method.Get(), reg, kind)); in HandleDeoptimization() 264 new_frame->SetVReg(reg, GetVReg(h_method.Get(), reg, kind)); in HandleDeoptimization()
|
D | stack.h | 188 int32_t GetVReg(size_t i) const { in GetVReg() function 578 bool GetVReg(mirror::ArtMethod* m, uint16_t vreg, VRegKind kind, uint32_t* val) const 581 uint32_t GetVReg(mirror::ArtMethod* m, uint16_t vreg, VRegKind kind) const in GetVReg() function 584 bool success = GetVReg(m, vreg, kind, &val); in GetVReg()
|
D | stack.cc | 144 return reinterpret_cast<mirror::Object*>(GetVReg(m, reg, kReferenceVReg)); in GetThisObject() 154 bool StackVisitor::GetVReg(mirror::ArtMethod* m, uint16_t vreg, VRegKind kind, in GetVReg() function in art::StackVisitor 196 *val = cur_shadow_frame_->GetVReg(vreg); in GetVReg()
|
D | reflection.cc | 184 Append(shadow_frame->GetVReg(cur_arg)); in BuildArgArrayFromFrame() 196 Append(shadow_frame->GetVReg(cur_arg)); in BuildArgArrayFromFrame()
|
D | debugger.cc | 2559 if (visitor.GetVReg(m, reg, kIntVReg, &intVal)) { in GetLocalValue() 2571 if (visitor.GetVReg(m, reg, kIntVReg, &intVal)) { in GetLocalValue() 2584 if (visitor.GetVReg(m, reg, kIntVReg, &intVal)) { in GetLocalValue() 2596 if (visitor.GetVReg(m, reg, kIntVReg, &intVal)) { in GetLocalValue() 2608 if (visitor.GetVReg(m, reg, kFloatVReg, &intVal)) { in GetLocalValue() 2626 if (visitor.GetVReg(m, reg, kReferenceVReg, &intVal)) { in GetLocalValue()
|
D | monitor.cc | 1048 … mirror::Object* o = reinterpret_cast<mirror::Object*>(stack_visitor->GetVReg(m, monitor_register, in VisitLocks()
|
/art/runtime/entrypoints/portable/ |
D | portable_thread_entrypoints.cc | 45 new_frame->SetVReg(reg, cur_frame->GetVReg(reg)); in VisitFrame()
|