Home
last modified time | relevance | path

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

/art/runtime/interpreter/
Dinterpreter_switch_impl.cc184 shadow_frame.SetVReg(inst->VRegA_12x(inst_data), in ExecuteSwitchImpl()
190 shadow_frame.SetVReg(inst->VRegA_22x(inst_data), in ExecuteSwitchImpl()
196 shadow_frame.SetVReg(inst->VRegA_32x(), in ExecuteSwitchImpl()
238 shadow_frame.SetVReg(inst->VRegA_11x(inst_data), result_register.GetI()); in ExecuteSwitchImpl()
391 shadow_frame.SetVReg(dst, val); in ExecuteSwitchImpl()
402 shadow_frame.SetVReg(dst, val); in ExecuteSwitchImpl()
413 shadow_frame.SetVReg(dst, val); in ExecuteSwitchImpl()
424 shadow_frame.SetVReg(dst, val); in ExecuteSwitchImpl()
548 shadow_frame.SetVReg(inst->VRegA_22c(inst_data), in ExecuteSwitchImpl()
561 shadow_frame.SetVReg(inst->VRegA_12x(inst_data), array->AsArray()->GetLength()); in ExecuteSwitchImpl()
[all …]
Dunstarted_runtime_test.cc124 tmp->SetVReg(1, src_pos); in RunArrayCopy()
126 tmp->SetVReg(3, dst_pos); in RunArrayCopy()
127 tmp->SetVReg(4, length); in RunArrayCopy()
325 tmp->SetVReg(1, start_index); in TEST_F()
326 tmp->SetVReg(2, count); in TEST_F()
328 tmp->SetVReg(3, trg_offset); in TEST_F()
375 tmp->SetVReg(1, i); in TEST_F()
743 tmp->SetVReg(0, static_cast<int32_t>(i)); in TEST_F()
760 tmp->SetVReg(0, static_cast<int32_t>(i)); in TEST_F()
782 tmp->SetVReg(0, static_cast<int32_t>(i)); in TEST_F()
[all …]
Dinterpreter_common.cc77 shadow_frame.SetVReg(vregA, result.GetZ()); in DoFieldGet()
80 shadow_frame.SetVReg(vregA, result.GetB()); in DoFieldGet()
83 shadow_frame.SetVReg(vregA, result.GetC()); in DoFieldGet()
86 shadow_frame.SetVReg(vregA, result.GetS()); in DoFieldGet()
89 shadow_frame.SetVReg(vregA, result.GetI()); in DoFieldGet()
173 shadow_frame.SetVReg(vregA, static_cast<int32_t>(obj->GetField32(field_offset))); in EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL()
176 shadow_frame.SetVReg(vregA, static_cast<int32_t>(obj->GetFieldBoolean(field_offset))); in EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL()
179 shadow_frame.SetVReg(vregA, static_cast<int32_t>(obj->GetFieldByte(field_offset))); in EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL()
182 shadow_frame.SetVReg(vregA, static_cast<int32_t>(obj->GetFieldChar(field_offset))); in EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL()
185 shadow_frame.SetVReg(vregA, static_cast<int32_t>(obj->GetFieldShort(field_offset))); in EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL()
[all …]
Dinterpreter_common.h336 shadow_frame.SetVReg(result_reg, kMinInt); in DoIntDivide()
338 shadow_frame.SetVReg(result_reg, dividend / divisor); in DoIntDivide()
354 shadow_frame.SetVReg(result_reg, 0); in DoIntRemainder()
356 shadow_frame.SetVReg(result_reg, dividend % divisor); in DoIntRemainder()
526 new_shadow_frame->SetVReg(dest_reg, src_value); in AssignRegister()
Dshadow_frame.h205 void SetVReg(size_t i, int32_t val) { in SetVReg() function
Dinterpreter.cc434 shadow_frame->SetVReg(cur_reg, args[arg_pos]); in EnterInterpreterFromInvoke()
/art/runtime/
Dmethod_handles.h186 shadow_frame_->SetVReg(arg_index_++, value); in Set()
Dstack.h204 bool SetVReg(ArtMethod* m, uint16_t vreg, uint32_t new_value, VRegKind kind)
Dstack.cc393 bool StackVisitor::SetVReg(ArtMethod* m, in SetVReg() function in art::StackVisitor
416 shadow_frame->SetVReg(vreg, new_value); in SetVReg()
Dquick_exception_handler.cc486 new_frame->SetVReg(vreg, value); in HandleOptimizingDeoptimization()
Ddebugger.cc2802 if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(value), kIntVReg)) { in SetLocalValue()
2809 if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(value), kIntVReg)) { in SetLocalValue()
2815 if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(value), kIntVReg)) { in SetLocalValue()
2821 if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(value), kFloatVReg)) { in SetLocalValue()
2839 if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(reinterpret_cast<uintptr_t>(o)), in SetLocalValue()
Dmethod_handles.cc322 callee_frame->SetVReg(dst_reg, src_value); in CopyArgumentsFromCallerFrame()
/art/runtime/entrypoints/quick/
Dquick_trampoline_entrypoints.cc691 sf_->SetVReg(cur_reg_, *reinterpret_cast<jint*>(GetParamAddress())); in Visit()