Home
last modified time | relevance | path

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

/art/runtime/
Dinstrumentation.cc281 return (InterpretOnly(method) || thread->IsForceInterpreter()) && HasDexPcListeners(); in NeedsDexPcEvents()
284 bool Instrumentation::InterpretOnly(ArtMethod* method) REQUIRES_SHARED(Locks::mutator_lock_) { in InterpretOnly() function in art::instrumentation::Instrumentation
288 return InterpretOnly() || IsDeoptimized(method); in InterpretOnly()
322 DCHECK(!Runtime::Current()->GetInstrumentation()->InterpretOnly(method)); in GetOptimizedCodeFor()
427 if (InterpretOnly(method)) { in InstallStubsForMethod()
1195 if (InterpretOnly(method)) { in UpdateMethodsCodeImpl()
1311 if (InterpretOnly(method)) { in Undeoptimize()
1432 if (InterpretOnly(method)) { in GetCodeForInvoke()
Dinstrumentation.h360 bool InterpretOnly() const { in InterpretOnly() function
363 bool InterpretOnly(ArtMethod* method) REQUIRES_SHARED(Locks::mutator_lock_);
Dinstrumentation_test.cc757 EXPECT_TRUE(instr->InterpretOnly()); \
759 EXPECT_TRUE(instr->InterpretOnly()); \
761 EXPECT_FALSE(instr->InterpretOnly()); \
Ddebugger.cc156 if (Runtime::Current()->GetInstrumentation()->InterpretOnly()) { in IsForcedInterpreterNeededForExceptionImpl()
Druntime.cc2953 if (GetInstrumentation()->InterpretOnly()) { in AddCurrentRuntimeFeaturesAsDex2OatArguments()
Dclass_linker.cc2266 (runtime->GetInstrumentation()->InterpretOnly() || in AddImageSpace()
/art/runtime/interpreter/mterp/
Dnterp.cc60 !instr->InterpretOnly() && !runtime->IsAotCompiler() && in CanRuntimeUseNterp()