Home
last modified time | relevance | path

Searched refs:ShouldDeoptimizeCaller (Results 1 – 3 of 3) sorted by relevance

/art/runtime/
Dinstrumentation.cc1684 if (!ShouldDeoptimizeCaller(self, sp)) { in PushDeoptContextIfNeeded()
1704 if (self->IsAsyncExceptionPending() || ShouldDeoptimizeCaller(self, sp)) { in DeoptimizeIfNeeded()
1728 bool Instrumentation::ShouldDeoptimizeCaller(Thread* self, ArtMethod** sp) { in ShouldDeoptimizeCaller() function in art::instrumentation::Instrumentation
1738 return ShouldDeoptimizeCaller(self, sp, frame_info.FrameSizeInBytes()); in ShouldDeoptimizeCaller()
1741 bool Instrumentation::ShouldDeoptimizeCaller(Thread* self, ArtMethod** sp, size_t frame_size) { in ShouldDeoptimizeCaller() function in art::instrumentation::Instrumentation
Dinstrumentation.h544 bool ShouldDeoptimizeCaller(Thread* self, ArtMethod** sp) REQUIRES_SHARED(Locks::mutator_lock_);
545 bool ShouldDeoptimizeCaller(Thread* self, ArtMethod** sp, size_t frame_size)
/art/runtime/entrypoints/quick/
Dquick_trampoline_entrypoints.cc752 if (UNLIKELY(instr->ShouldDeoptimizeCaller(self, sp))) { in artQuickToInterpreterBridge()
2532 if (instr->ShouldDeoptimizeCaller(self, sp) || instr->IsDeoptimized(method)) { in artMethodEntryHook()
2603 const bool deoptimize = instr->ShouldDeoptimizeCaller(self, sp, frame_size) || in artMethodExitHook()