HomeSort by relevance Sort by last modified time
    Searched refs:GetVReg (Results 1 - 16 of 16) sorted by null

  /art/test/457-regs/
regs_jni.cc 41 CHECK(GetVReg(m, 0, kIntVReg, &value));
44 CHECK(GetVReg(m, 1, kIntVReg, &value));
47 CHECK(GetVReg(m, 2, kIntVReg, &value));
50 CHECK(GetVReg(m, 3, kIntVReg, &value));
53 CHECK(GetVReg(m, 4, kIntVReg, &value));
59 CHECK(GetVReg(m, 0, kIntVReg, &value));
62 CHECK(GetVReg(m, 1, kIntVReg, &value));
65 bool success = GetVReg(m, 2, kIntVReg, &value);
68 CHECK(GetVReg(m, 3, kReferenceVReg, &value));
71 CHECK(GetVReg(m, 4, kFloatVReg, &value))
    [all...]
  /art/test/454-get-vreg/
get_vreg_jni.cc 44 CHECK(GetVReg(m, 0, kIntVReg, &value));
47 bool success = GetVReg(m, 1, kIntVReg, &value);
50 success = GetVReg(m, 2, kIntVReg, &value);
53 CHECK(GetVReg(m, 3, kReferenceVReg, &value));
56 CHECK(GetVReg(m, 4, kIntVReg, &value));
59 CHECK(GetVReg(m, 5, kFloatVReg, &value));
63 CHECK(GetVReg(m, 6, kIntVReg, &value));
66 CHECK(GetVReg(m, 7, kIntVReg, &value));
69 CHECK(GetVReg(m, 8, kIntVReg, &value));
72 CHECK(GetVReg(m, 9, kIntVReg, &value))
    [all...]
  /art/test/461-get-reference-vreg/
get_reference_vreg_jni.cc 43 CHECK(GetVReg(m, 1, kReferenceVReg, &value));
49 CHECK(GetVReg(m, 1, kReferenceVReg, &value));
53 CHECK(GetVReg(m, 1, kReferenceVReg, &value));
57 CHECK(GetVReg(m, 0, kReferenceVReg, &value));
  /art/test/466-get-live-vreg/
get_live_vreg_jni.cc 40 CHECK(GetVReg(m, 0, kIntVReg, &value));
46 CHECK_EQ(GetVReg(m, 0, kIntVReg, &value), false);
48 CHECK(GetVReg(m, 0, kIntVReg, &value));
  /art/runtime/interpreter/
interpreter_goto_table_impl.cc 181 shadow_frame.GetVReg(inst->VRegB_12x(inst_data)));
187 shadow_frame.GetVReg(inst->VRegB_22x()));
193 shadow_frame.GetVReg(inst->VRegB_32x()));
287 result.SetI(shadow_frame.GetVReg(inst->VRegA_11x(inst_data)));
544 int32_t length = shadow_frame.GetVReg(inst->VRegB_22c(inst_data));
758 if (shadow_frame.GetVReg(inst->VRegA_22t(inst_data)) == shadow_frame.GetVReg(inst->VRegB_22t(inst_data))) {
775 if (shadow_frame.GetVReg(inst->VRegA_22t(inst_data)) !=
776 shadow_frame.GetVReg(inst->VRegB_22t(inst_data))) {
793 if (shadow_frame.GetVReg(inst->VRegA_22t(inst_data))
    [all...]
interpreter_switch_impl.cc 93 shadow_frame.GetVReg(inst->VRegB_12x(inst_data)));
99 shadow_frame.GetVReg(inst->VRegB_22x()));
105 shadow_frame.GetVReg(inst->VRegB_32x()));
195 result.SetI(shadow_frame.GetVReg(inst->VRegA_11x(inst_data)));
449 int32_t length = shadow_frame.GetVReg(inst->VRegB_22c(inst_data));
650 if (shadow_frame.GetVReg(inst->VRegA_22t(inst_data)) ==
651 shadow_frame.GetVReg(inst->VRegB_22t(inst_data))) {
664 if (shadow_frame.GetVReg(inst->VRegA_22t(inst_data)) !=
665 shadow_frame.GetVReg(inst->VRegB_22t(inst_data))) {
678 if (shadow_frame.GetVReg(inst->VRegA_22t(inst_data))
    [all...]
interpreter_common.cc 198 field_value.SetZ(static_cast<uint8_t>(shadow_frame.GetVReg(vreg)));
201 field_value.SetB(static_cast<int8_t>(shadow_frame.GetVReg(vreg)));
204 field_value.SetC(static_cast<uint16_t>(shadow_frame.GetVReg(vreg)));
207 field_value.SetS(static_cast<int16_t>(shadow_frame.GetVReg(vreg)));
210 field_value.SetI(shadow_frame.GetVReg(vreg));
261 f->SetBoolean<transaction_active>(obj, shadow_frame.GetVReg(vregA));
264 f->SetByte<transaction_active>(obj, shadow_frame.GetVReg(vregA));
267 f->SetChar<transaction_active>(obj, shadow_frame.GetVReg(vregA));
270 f->SetShort<transaction_active>(obj, shadow_frame.GetVReg(vregA));
273 f->SetInt<transaction_active>(obj, shadow_frame.GetVReg(vregA))
    [all...]
unstarted_runtime.cc 142 bool initialize_class = shadow_frame->GetVReg(arg_offset + 1) != 0;
159 bool initialize_class = shadow_frame->GetVReg(arg_offset + 1) != 0;
321 jint src_pos = shadow_frame->GetVReg(arg_offset + 1);
322 jint dst_pos = shadow_frame->GetVReg(arg_offset + 3);
323 jint length = shadow_frame->GetVReg(arg_offset + 4);
613 int offset = shadow_frame->GetVReg(arg_offset + 3);
614 int count = shadow_frame->GetVReg(arg_offset + 4);
751 jint start = shadow_frame->GetVReg(arg_offset + 1);
752 jint end = shadow_frame->GetVReg(arg_offset + 2);
753 jint index = shadow_frame->GetVReg(arg_offset + 4)
    [all...]
interpreter_common.h 295 int32_t test_val = shadow_frame.GetVReg(inst->VRegA_31t(inst_data));
323 int32_t test_val = shadow_frame.GetVReg(inst->VRegA_31t(inst_data));
370 uint32_t raw_value = shadow_frame.GetVReg(i);
  /art/test/455-set-vreg/
set_vreg_jni.cc 41 CHECK(GetVReg(m, 1, kReferenceVReg, &value));
51 CHECK(GetVReg(m, 3, kReferenceVReg, &value));
61 CHECK(GetVReg(m, 1, kReferenceVReg, &value));
71 CHECK(GetVReg(m, 3, kReferenceVReg, &value));
  /art/runtime/
quick_exception_handler.cc 238 if (GetVReg(m, reg, kind, &value) && IsReferenceVReg(m, reg)) {
256 if (GetVReg(m, reg, kind, &value)) {
268 if (GetVReg(m, reg, kind, &value)) {
286 if (GetVReg(m, reg, kind, &value)) {
298 if (GetVReg(m, reg, kind, &value)) {
307 if (GetVReg(m, reg, kind, &value)) {
stack.h 45 // The kind of vreg being accessed in calls to Set/GetVReg.
122 int32_t GetVReg(size_t i) const {
488 bool GetVReg(ArtMethod* m, uint16_t vreg, VRegKind kind, uint32_t* val) const
stack.cc 151 bool success = GetVReg(m, reg, kReferenceVReg, &value);
191 bool StackVisitor::GetVReg(ArtMethod* m, uint16_t vreg, VRegKind kind, uint32_t* val) const {
202 *val = cur_shadow_frame_->GetVReg(vreg);
    [all...]
reflection.cc 178 Append(shadow_frame->GetVReg(cur_arg));
190 Append(shadow_frame->GetVReg(cur_arg));
    [all...]
debugger.cc     [all...]
monitor.cc     [all...]

Completed in 529 milliseconds