HomeSort by relevance Sort by last modified time
    Searched defs:shadow_frame (Results 1 - 6 of 6) sorted by null

  /art/runtime/interpreter/
interpreter.cc 241 ShadowFrame& shadow_frame,
244 DCHECK(!shadow_frame.GetMethod()->IsAbstract());
245 DCHECK(!shadow_frame.GetMethod()->IsNative());
246 if (LIKELY(shadow_frame.GetDexPC() == 0)) { // Entering the method, but not via deoptimization.
251 ArtMethod *method = shadow_frame.GetMethod();
254 instrumentation->MethodEnterEvent(self, shadow_frame.GetThisObject(code_item->ins_size_),
261 jit->MethodEntered(self, shadow_frame.GetMethod());
267 ArtInterpreterToCompiledCodeBridge(self, nullptr, code_item, &shadow_frame, &result);
269 self->PushShadowFrame(&shadow_frame);
277 shadow_frame.GetMethod()->GetDeclaringClass()->AssertInitializedOrInitializingInThread(self)
394 ShadowFrame* shadow_frame = shadow_frame_unique_ptr.get(); local
    [all...]
unstarted_runtime_test.cc 51 ShadowFrame* shadow_frame, \
55 interpreter::UnstartedRuntime::Unstarted ## Name(self, shadow_frame, result, arg_offset); \
397 ShadowFrame* shadow_frame = ShadowFrame::CreateDeoptimizedFrame(10, nullptr, method, 0); local
401 shadow_frame->SetVRegReference(0, reference_empty_string);
402 shadow_frame->SetVRegReference(1, string_arg);
404 interpreter::DoCall<false, false>(method, self, *shadow_frame, inst, inst_data[0], &result);
425 ShadowFrame::DeleteDeoptimizedFrame(shadow_frame);
895 ShadowFrame* shadow_frame = ShadowFrame::CreateDeoptimizedFrame(10, nullptr, nullptr, 0); local
898 shadow_frame->SetVRegReference(0, class_klass);
899 UnstartedClassIsAnonymousClass(self, shadow_frame, &result, 0)
920 ShadowFrame* shadow_frame = ShadowFrame::CreateDeoptimizedFrame(10, nullptr, nullptr, 0); local
954 ShadowFrame* shadow_frame = ShadowFrame::CreateDeoptimizedFrame(10, nullptr, nullptr, 0); local
1032 ShadowFrame* shadow_frame = ShadowFrame::CreateDeoptimizedFrame(10, nullptr, method, 0); local
1049 ShadowFrame* shadow_frame = ShadowFrame::CreateDeoptimizedFrame(10, nullptr, nullptr, 0); local
1129 ShadowFrame* shadow_frame = ShadowFrame::CreateDeoptimizedFrame(10, nullptr, nullptr, 0); local
1186 ShadowFrame* shadow_frame = ShadowFrame::CreateDeoptimizedFrame(10, nullptr, boot_cp_init, 0); local
1297 ShadowFrame* shadow_frame = ShadowFrame::CreateDeoptimizedFrame(10, nullptr, nullptr, 0); local
1351 ShadowFrame* shadow_frame = ShadowFrame::CreateDeoptimizedFrame(10, nullptr, nullptr, 0); local
    [all...]
  /art/runtime/jit/
jit.cc 446 ShadowFrame* shadow_frame = nullptr; local
493 shadow_frame = thread->PopShadowFrame();
513 int32_t vreg_value = shadow_frame->GetVReg(vreg);
548 thread->PushShadowFrame(shadow_frame);
  /art/runtime/
stack.cc 228 ShadowFrame* shadow_frame = thread_->FindDebuggerShadowFrame(frame_id); local
229 if (shadow_frame != nullptr) {
236 shadow_frame->GetVRegReference(vreg)));
238 *val = shadow_frame->GetVReg(vreg);
448 ShadowFrame* shadow_frame = GetCurrentShadowFrame(); local
449 if (shadow_frame == nullptr) {
454 shadow_frame = thread_->FindOrCreateDebuggerShadowFrame(frame_id, num_regs, m, GetDexPc());
455 CHECK(shadow_frame != nullptr);
461 shadow_frame->SetVRegReference(vreg, reinterpret_cast<mirror::Object*>(new_value));
463 shadow_frame->SetVReg(vreg, new_value)
485 ShadowFrame* shadow_frame = GetCurrentShadowFrame(); local
    [all...]
thread.cc 207 StackedShadowFrameRecord(ShadowFrame* shadow_frame,
210 : shadow_frame_(shadow_frame),
272 ShadowFrame* shadow_frame = record->GetShadowFrame(); local
274 return shadow_frame;
280 ShadowFrame* shadow_frame,
285 return new (memory) FrameIdToShadowFrame(frame_id, shadow_frame, next);
303 ShadowFrame* shadow_frame,
306 shadow_frame_(shadow_frame),
355 ShadowFrame* shadow_frame = FindDebuggerShadowFrame(frame_id); local
356 if (shadow_frame != nullptr)
3109 ShadowFrame* shadow_frame = GetCurrentShadowFrame(); local
3569 ShadowFrame* shadow_frame = local
    [all...]
  /art/runtime/entrypoints/quick/
quick_trampoline_entrypoints.cc 772 ShadowFrame* shadow_frame = shadow_frame_unique_ptr.get(); local
775 shadow_frame, first_arg_reg)
2555 ShadowFrame* shadow_frame = shadow_frame_unique_ptr.get(); local
    [all...]

Completed in 475 milliseconds