• Home
  • Raw
  • Download

Lines Matching refs:vreg

229 static JValue GetFieldValue(const ShadowFrame& shadow_frame, uint32_t vreg)  in GetFieldValue()  argument
234 field_value.SetZ(static_cast<uint8_t>(shadow_frame.GetVReg(vreg))); in GetFieldValue()
237 field_value.SetB(static_cast<int8_t>(shadow_frame.GetVReg(vreg))); in GetFieldValue()
240 field_value.SetC(static_cast<uint16_t>(shadow_frame.GetVReg(vreg))); in GetFieldValue()
243 field_value.SetS(static_cast<int16_t>(shadow_frame.GetVReg(vreg))); in GetFieldValue()
246 field_value.SetI(shadow_frame.GetVReg(vreg)); in GetFieldValue()
249 field_value.SetJ(shadow_frame.GetVRegLong(vreg)); in GetFieldValue()
252 field_value.SetL(shadow_frame.GetVRegReference(vreg)); in GetFieldValue()
935 size_t vreg = 0; in InvokeBootstrapMethod() local
947 bootstrap_frame->SetVRegReference(vreg++, lookup.Ptr()); in InvokeBootstrapMethod()
958 bootstrap_frame->SetVRegReference(vreg++, name.Ptr()); in InvokeBootstrapMethod()
970 bootstrap_frame->SetVRegReference(vreg++, method_type.Get()); in InvokeBootstrapMethod()
982 bootstrap_frame->SetVReg(vreg, jvalue.i); in InvokeBootstrapMethod()
983 vreg += 1; in InvokeBootstrapMethod()
986 bootstrap_frame->SetVRegLong(vreg, jvalue.j); in InvokeBootstrapMethod()
987 vreg += 2; in InvokeBootstrapMethod()
990 bootstrap_frame->SetVRegFloat(vreg, jvalue.f); in InvokeBootstrapMethod()
991 vreg += 1; in InvokeBootstrapMethod()
994 bootstrap_frame->SetVRegDouble(vreg, jvalue.d); in InvokeBootstrapMethod()
995 vreg += 2; in InvokeBootstrapMethod()
1005 bootstrap_frame->SetVRegReference(vreg, ref.Ptr()); in InvokeBootstrapMethod()
1006 vreg += 1; in InvokeBootstrapMethod()
1017 bootstrap_frame->SetVRegReference(vreg, ref.Ptr()); in InvokeBootstrapMethod()
1018 vreg += 1; in InvokeBootstrapMethod()
1028 bootstrap_frame->SetVRegReference(vreg, ref.Ptr()); in InvokeBootstrapMethod()
1029 vreg += 1; in InvokeBootstrapMethod()
1039 bootstrap_frame->SetVRegReference(vreg, ref.Ptr()); in InvokeBootstrapMethod()
1040 vreg += 1; in InvokeBootstrapMethod()
1044 bootstrap_frame->SetVRegReference(vreg, nullptr); in InvokeBootstrapMethod()
1045 vreg += 1; in InvokeBootstrapMethod()
1061 RangeInstructionOperands operands(0, vreg); in InvokeBootstrapMethod()