Home
last modified time | relevance | path

Searched refs:SetVReg (Results 1 – 14 of 14) sorted by relevance

/art/runtime/interpreter/
Dinterpreter_switch_impl.cc231 shadow_frame.SetVReg(inst->VRegA_12x(inst_data), in ExecuteSwitchImplCpp()
237 shadow_frame.SetVReg(inst->VRegA_22x(inst_data), in ExecuteSwitchImplCpp()
243 shadow_frame.SetVReg(inst->VRegA_32x(), in ExecuteSwitchImplCpp()
285 shadow_frame.SetVReg(inst->VRegA_11x(inst_data), result_register.GetI()); in ExecuteSwitchImplCpp()
448 shadow_frame.SetVReg(dst, val); in ExecuteSwitchImplCpp()
459 shadow_frame.SetVReg(dst, val); in ExecuteSwitchImplCpp()
470 shadow_frame.SetVReg(dst, val); in ExecuteSwitchImplCpp()
481 shadow_frame.SetVReg(dst, val); in ExecuteSwitchImplCpp()
635 shadow_frame.SetVReg(inst->VRegA_22c(inst_data), in ExecuteSwitchImplCpp()
648 shadow_frame.SetVReg(inst->VRegA_12x(inst_data), array->AsArray()->GetLength()); in ExecuteSwitchImplCpp()
[all …]
Dunstarted_runtime_test.cc125 tmp->SetVReg(1, src_pos); in RunArrayCopy()
127 tmp->SetVReg(3, dst_pos); in RunArrayCopy()
128 tmp->SetVReg(4, length); in RunArrayCopy()
326 tmp->SetVReg(1, start_index); in TEST_F()
327 tmp->SetVReg(2, count); in TEST_F()
329 tmp->SetVReg(3, trg_offset); in TEST_F()
376 tmp->SetVReg(1, i); in TEST_F()
748 tmp->SetVReg(0, static_cast<int32_t>(i)); in TEST_F()
765 tmp->SetVReg(0, static_cast<int32_t>(i)); in TEST_F()
787 tmp->SetVReg(0, static_cast<int32_t>(i)); in TEST_F()
[all …]
Dinterpreter_common.cc89 shadow_frame.SetVReg(vregA, result.GetZ()); in DoFieldGet()
92 shadow_frame.SetVReg(vregA, result.GetB()); in DoFieldGet()
95 shadow_frame.SetVReg(vregA, result.GetC()); in DoFieldGet()
98 shadow_frame.SetVReg(vregA, result.GetS()); in DoFieldGet()
101 shadow_frame.SetVReg(vregA, result.GetI()); in DoFieldGet()
187 shadow_frame.SetVReg(vregA, static_cast<int32_t>(obj->GetField32(field_offset))); in EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL()
190 shadow_frame.SetVReg(vregA, static_cast<int32_t>(obj->GetFieldBoolean(field_offset))); in EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL()
193 shadow_frame.SetVReg(vregA, static_cast<int32_t>(obj->GetFieldByte(field_offset))); in EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL()
196 shadow_frame.SetVReg(vregA, static_cast<int32_t>(obj->GetFieldChar(field_offset))); in EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL()
199 shadow_frame.SetVReg(vregA, static_cast<int32_t>(obj->GetFieldShort(field_offset))); in EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL()
[all …]
Dinterpreter_common.h362 shadow_frame.SetVReg(result_reg, kMinInt); in DoIntDivide()
364 shadow_frame.SetVReg(result_reg, dividend / divisor); in DoIntDivide()
380 shadow_frame.SetVReg(result_reg, 0); in DoIntRemainder()
382 shadow_frame.SetVReg(result_reg, dividend % divisor); in DoIntRemainder()
560 new_shadow_frame->SetVReg(dest_reg, src_value); in AssignRegister()
Dshadow_frame.h199 void SetVReg(size_t i, int32_t val) { in SetVReg() function
Dinterpreter.cc442 shadow_frame->SetVReg(cur_reg, args[arg_pos]); in EnterInterpreterFromInvoke()
/art/runtime/
Dmethod_handles.h177 shadow_frame_->SetVReg(arg_index_++, value); in Set()
Dstack.h203 bool SetVReg(ArtMethod* m, uint16_t vreg, uint32_t new_value, VRegKind kind)
Dstack.cc394 bool StackVisitor::SetVReg(ArtMethod* m, in SetVReg() function in art::StackVisitor
417 shadow_frame->SetVReg(vreg, new_value); in SetVReg()
Dquick_exception_handler.cc490 new_frame->SetVReg(vreg, value); in HandleOptimizingDeoptimization()
Ddebugger.cc2880 if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(value), kIntVReg)) { in SetLocalValue()
2887 if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(value), kIntVReg)) { in SetLocalValue()
2893 if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(value), kIntVReg)) { in SetLocalValue()
2899 if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(value), kFloatVReg)) { in SetLocalValue()
2917 if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(reinterpret_cast<uintptr_t>(o)), in SetLocalValue()
Dmethod_handles.cc327 callee_frame->SetVReg(dst_reg, src_value); in CopyArgumentsFromCallerFrame()
/art/openjdkjvmti/
Dti_method.cc863 if (!visitor.SetVReg(method, in Execute()
873 if (!visitor.SetVReg(method, in Execute()
/art/runtime/entrypoints/quick/
Dquick_trampoline_entrypoints.cc694 sf_->SetVReg(cur_reg_, *reinterpret_cast<jint*>(GetParamAddress())); in Visit()