Home
last modified time | relevance | path

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

/art/runtime/
Dinstrumentation_test.cc445 EXPECT_FALSE(instr->IsDeoptimized(method_to_deoptimize)); in TEST_F()
451 EXPECT_TRUE(instr->IsDeoptimized(method_to_deoptimize)); in TEST_F()
457 EXPECT_FALSE(instr->IsDeoptimized(method_to_deoptimize)); in TEST_F()
492 EXPECT_FALSE(instr->IsDeoptimized(method_to_deoptimize)); in TEST_F()
500 EXPECT_TRUE(instr->IsDeoptimized(method_to_deoptimize)); in TEST_F()
508 EXPECT_TRUE(instr->IsDeoptimized(method_to_deoptimize)); in TEST_F()
515 EXPECT_TRUE(instr->IsDeoptimized(method_to_deoptimize)); in TEST_F()
521 EXPECT_FALSE(instr->IsDeoptimized(method_to_deoptimize)); in TEST_F()
Dinstrumentation.cc133 if ((forced_interpret_only_ || IsDeoptimized(method)) && !method->IsNative()) { in InstallStubsForMethod()
141 if ((interpreter_stubs_installed_ || forced_interpret_only_ || IsDeoptimized(method)) && in InstallStubsForMethod()
665 if ((interpreter_stubs_installed_ || IsDeoptimized(method)) && !method->IsNative()) { in UpdateMethodsCode()
776 bool Instrumentation::IsDeoptimized(ArtMethod* method) { in IsDeoptimized() function in art::instrumentation::Instrumentation
1013 (interpreter_stubs_installed_ || IsDeoptimized(visitor.caller) || in PopInstrumentationStackFrame()
Dinstrumentation.h177 bool IsDeoptimized(ArtMethod* method)
Ddebugger.cc3342 CHECK(!instrumentation->IsDeoptimized(m)); in SanityCheckExistingBreakpoints()
3347 CHECK(instrumentation->IsDeoptimized(m)); in SanityCheckExistingBreakpoints()
3351 CHECK(!instrumentation->IsDeoptimized(m)); in SanityCheckExistingBreakpoints()
3466 Runtime::Current()->GetInstrumentation()->IsDeoptimized(m)); in UnwatchLocation()
3549 return instrumentation->IsDeoptimized(m); in IsForcedInterpreterNeededForResolutionImpl()
3586 return instrumentation->IsDeoptimized(m); in IsForcedInstrumentationNeededForResolutionImpl()
3614 return instrumentation->IsDeoptimized(m); in IsForcedInterpreterNeededForUpcallImpl()
/art/runtime/entrypoints/quick/
Dquick_instrumentation_entrypoints.cc35 if (instrumentation->IsDeoptimized(method)) { in artInstrumentationMethodEntryFromCode()