Home
last modified time | relevance | path

Searched refs:IsDeoptimized (Results 1 – 7 of 7) sorted by relevance

/art/test/1947-breakpoint-redefine-deopt/
Dcheck_deopt.cc28 return Runtime::Current()->GetInstrumentation()->IsDeoptimized(art_method); in Java_Main_isMethodDeoptimized()
/art/runtime/
Dinstrumentation_test.cc637 EXPECT_FALSE(instr->IsDeoptimized(method_to_deoptimize)); in TEST_F()
643 EXPECT_TRUE(instr->IsDeoptimized(method_to_deoptimize)); in TEST_F()
649 EXPECT_FALSE(instr->IsDeoptimized(method_to_deoptimize)); in TEST_F()
686 EXPECT_FALSE(instr->IsDeoptimized(method_to_deoptimize)); in TEST_F()
694 EXPECT_TRUE(instr->IsDeoptimized(method_to_deoptimize)); in TEST_F()
702 EXPECT_TRUE(instr->IsDeoptimized(method_to_deoptimize)); in TEST_F()
709 EXPECT_TRUE(instr->IsDeoptimized(method_to_deoptimize)); in TEST_F()
715 EXPECT_FALSE(instr->IsDeoptimized(method_to_deoptimize)); in TEST_F()
Dinstrumentation.cc229 if ((forced_interpret_only_ || IsDeoptimized(method)) && !method->IsNative()) { in InstallStubsForMethod()
237 if ((interpreter_stubs_installed_ || forced_interpret_only_ || IsDeoptimized(method)) && in InstallStubsForMethod()
865 if ((interpreter_stubs_installed_ || IsDeoptimized(method)) && !method->IsNative()) { in UpdateMethodsCodeImpl()
1023 bool Instrumentation::IsDeoptimized(ArtMethod* method) { in IsDeoptimized() function in art::instrumentation::Instrumentation
1524 (interpreter_stubs_installed_ || IsDeoptimized(visitor.caller) || in PopInstrumentationStackFrame()
Dinstrumentation.h259 bool IsDeoptimized(ArtMethod* method)
Ddebugger.cc3305 CHECK(!instrumentation->IsDeoptimized(m)); in SanityCheckExistingBreakpoints()
3310 CHECK(instrumentation->IsDeoptimized(m)); in SanityCheckExistingBreakpoints()
3314 CHECK(!instrumentation->IsDeoptimized(m)); in SanityCheckExistingBreakpoints()
3423 Runtime::Current()->GetInstrumentation()->IsDeoptimized(m)); in UnwatchLocation()
3506 return instrumentation->IsDeoptimized(m); in IsForcedInterpreterNeededForResolutionImpl()
3543 return instrumentation->IsDeoptimized(m); in IsForcedInstrumentationNeededForResolutionImpl()
3577 return instrumentation->IsDeoptimized(m); in IsForcedInterpreterNeededForUpcallImpl()
3608 if (Runtime::Current()->GetInstrumentation()->IsDeoptimized(method)) { in IsForcedInterpreterNeededForExceptionImpl()
/art/runtime/jit/
Djit.cc264 if (instrumentation->AreAllMethodsDeoptimized() || instrumentation->IsDeoptimized(method)) { in CompileMethod()
/art/runtime/entrypoints/quick/
Dquick_trampoline_entrypoints.cc1125 if (instrumentation->IsDeoptimized(method)) { in artInstrumentationMethodEntryFromCode()