Home
last modified time | relevance | path

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

/art/runtime/interpreter/
Dinterpreter_switch_impl-inl.h399 shadow_frame.SetVReg(inst->VRegA_12x(inst_data), in MOVE()
405 shadow_frame.SetVReg(inst->VRegA_22x(inst_data), in MOVE_FROM16()
411 shadow_frame.SetVReg(inst->VRegA_32x(), in MOVE_16()
453 shadow_frame.SetVReg(inst->VRegA_11x(inst_data), ResultRegister()->GetI()); in MOVE_RESULT()
635 shadow_frame.SetVReg(dst, val); in CONST_4()
645 shadow_frame.SetVReg(dst, val); in CONST_16()
655 shadow_frame.SetVReg(dst, val); in CONST()
665 shadow_frame.SetVReg(dst, val); in CONST_HIGH16()
814 shadow_frame.SetVReg(inst->VRegA_22c(inst_data), in INSTANCE_OF()
826 shadow_frame.SetVReg(inst->VRegA_12x(inst_data), array->AsArray()->GetLength()); in ARRAY_LENGTH()
[all …]
Dunstarted_runtime_test.cc150 tmp->SetVReg(1, src_pos); in RunArrayCopy()
152 tmp->SetVReg(3, dst_pos); in RunArrayCopy()
153 tmp->SetVReg(4, length); in RunArrayCopy()
343 tmp->SetVReg(1, start_index); in TEST_F()
344 tmp->SetVReg(2, count); in TEST_F()
346 tmp->SetVReg(3, trg_offset); in TEST_F()
391 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.cc134 shadow_frame.SetVReg(vregA, result.GetZ()); in DoFieldGet()
137 shadow_frame.SetVReg(vregA, result.GetB()); in DoFieldGet()
140 shadow_frame.SetVReg(vregA, result.GetC()); in DoFieldGet()
143 shadow_frame.SetVReg(vregA, result.GetS()); in DoFieldGet()
146 shadow_frame.SetVReg(vregA, result.GetI()); in DoFieldGet()
232 shadow_frame.SetVReg(vregA, static_cast<int32_t>(obj->GetField32(field_offset))); in EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL()
235 shadow_frame.SetVReg(vregA, static_cast<int32_t>(obj->GetFieldBoolean(field_offset))); in EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL()
238 shadow_frame.SetVReg(vregA, static_cast<int32_t>(obj->GetFieldByte(field_offset))); in EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL()
241 shadow_frame.SetVReg(vregA, static_cast<int32_t>(obj->GetFieldChar(field_offset))); in EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL()
244 shadow_frame.SetVReg(vregA, static_cast<int32_t>(obj->GetFieldShort(field_offset))); in EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL()
[all …]
Dinterpreter_common.h431 shadow_frame.SetVReg(result_reg, kMinInt); in DoIntDivide()
433 shadow_frame.SetVReg(result_reg, dividend / divisor); in DoIntDivide()
449 shadow_frame.SetVReg(result_reg, 0); in DoIntRemainder()
451 shadow_frame.SetVReg(result_reg, dividend % divisor); in DoIntRemainder()
Dshadow_frame.h206 void SetVReg(size_t i, int32_t val) { in SetVReg() function
Dinterpreter.cc471 shadow_frame->SetVReg(cur_reg, args[arg_pos]); in EnterInterpreterFromInvoke()
/art/runtime/
Dmethod_handles-inl.h84 shadow_frame_->SetVReg(arg_index_++, value); in Set()
Dstack.h234 bool SetVReg(ArtMethod* m, uint16_t vreg, uint32_t new_value, VRegKind kind)
Dstack.cc375 bool StackVisitor::SetVReg(ArtMethod* m, in SetVReg() function in art::StackVisitor
398 shadow_frame->SetVReg(vreg, new_value); in SetVReg()
Dquick_exception_handler.cc541 new_frame->SetVReg(vreg, value); in HandleOptimizingDeoptimization()
Ddebugger.cc2806 if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(value), kIntVReg)) { in SetLocalValue()
2813 if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(value), kIntVReg)) { in SetLocalValue()
2819 if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(value), kIntVReg)) { in SetLocalValue()
2825 if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(value), kFloatVReg)) { in SetLocalValue()
2843 if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(reinterpret_cast<uintptr_t>(o)), in SetLocalValue()
Dmethod_handles.cc329 callee_frame->SetVReg(dst_reg, src_value); in CopyArgumentsFromCallerFrame()
/art/openjdkjvmti/
Dti_method.cc820 if (!visitor.SetVReg(method, in Execute()
830 if (!visitor.SetVReg(method, in Execute()
/art/runtime/interpreter/mterp/
Dmterp.cc687 shadow_frame->SetVReg(vRegA, static_cast<int32_t>(value)); // Sign/zero extend. in MterpFieldAccess()
/art/runtime/entrypoints/quick/
Dquick_trampoline_entrypoints.cc657 sf_->SetVReg(cur_reg_, *reinterpret_cast<jint*>(GetParamAddress())); in Visit()