Home
last modified time | relevance | path

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

/art/runtime/interpreter/
Dinterpreter_switch_impl.cc136 shadow_frame.SetVReg(inst->VRegA_12x(inst_data), in ExecuteSwitchImpl()
142 shadow_frame.SetVReg(inst->VRegA_22x(inst_data), in ExecuteSwitchImpl()
148 shadow_frame.SetVReg(inst->VRegA_32x(), in ExecuteSwitchImpl()
190 shadow_frame.SetVReg(inst->VRegA_11x(inst_data), result_register.GetI()); in ExecuteSwitchImpl()
334 shadow_frame.SetVReg(dst, val); in ExecuteSwitchImpl()
345 shadow_frame.SetVReg(dst, val); in ExecuteSwitchImpl()
356 shadow_frame.SetVReg(dst, val); in ExecuteSwitchImpl()
367 shadow_frame.SetVReg(dst, val); in ExecuteSwitchImpl()
491 shadow_frame.SetVReg(inst->VRegA_22c(inst_data), in ExecuteSwitchImpl()
504 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()
741 tmp->SetVReg(0, static_cast<int32_t>(i)); in TEST_F()
758 tmp->SetVReg(0, static_cast<int32_t>(i)); in TEST_F()
780 tmp->SetVReg(0, static_cast<int32_t>(i)); in TEST_F()
[all …]
Dinterpreter_common.cc72 shadow_frame.SetVReg(vregA, result.GetZ()); in DoFieldGet()
75 shadow_frame.SetVReg(vregA, result.GetB()); in DoFieldGet()
78 shadow_frame.SetVReg(vregA, result.GetC()); in DoFieldGet()
81 shadow_frame.SetVReg(vregA, result.GetS()); in DoFieldGet()
84 shadow_frame.SetVReg(vregA, result.GetI()); in DoFieldGet()
164 shadow_frame.SetVReg(vregA, static_cast<int32_t>(obj->GetField32(field_offset))); in EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL()
167 shadow_frame.SetVReg(vregA, static_cast<int32_t>(obj->GetFieldBoolean(field_offset))); in EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL()
170 shadow_frame.SetVReg(vregA, static_cast<int32_t>(obj->GetFieldByte(field_offset))); in EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL()
173 shadow_frame.SetVReg(vregA, static_cast<int32_t>(obj->GetFieldChar(field_offset))); in EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL()
176 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()
Dinterpreter.cc422 shadow_frame->SetVReg(cur_reg, args[arg_pos]); in EnterInterpreterFromInvoke()
/art/runtime/
Dmethod_handles.h187 shadow_frame_->SetVReg(arg_index_++, value); in Set()
Dstack.h271 void SetVReg(size_t i, int32_t val) { in SetVReg() function
686 bool SetVReg(ArtMethod* m, uint16_t vreg, uint32_t new_value, VRegKind kind)
Dstack.cc440 bool StackVisitor::SetVReg(ArtMethod* m, in SetVReg() function in art::StackVisitor
463 shadow_frame->SetVReg(vreg, new_value); in SetVReg()
Dquick_exception_handler.cc486 new_frame->SetVReg(vreg, value); in HandleOptimizingDeoptimization()
Ddebugger.cc2795 if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(value), kIntVReg)) { in SetLocalValue()
2802 if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(value), kIntVReg)) { in SetLocalValue()
2808 if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(value), kIntVReg)) { in SetLocalValue()
2814 if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(value), kFloatVReg)) { in SetLocalValue()
2832 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.cc681 sf_->SetVReg(cur_reg_, *reinterpret_cast<jint*>(GetParamAddress())); in Visit()