Home
last modified time | relevance | path

Searched refs:IsDebuggable (Results 1 – 21 of 21) sorted by relevance

/art/compiler/optimizing/
Dssa_liveness_analysis_test.cc124 EXPECT_FALSE(graph_->IsDebuggable()); in TEST_F()
197 EXPECT_FALSE(graph_->IsDebuggable()); in TEST_F()
Dsharpening.cc86 if (callee == codegen->GetGraph()->GetArtMethod() && !codegen->GetGraph()->IsDebuggable()) { in SharpenInvokeStaticOrDirect()
134 if (codegen->GetGraph()->IsDebuggable()) { in SharpenInvokeStaticOrDirect()
Dssa_phi_elimination.cc53 bool keep_alive = (graph_->IsDebuggable() && phi->HasEnvironmentUses()); in MarkDeadPhis()
Dcode_sinking.cc351 if (graph_->IsDebuggable() || in SinkCodeToUncommonBranch()
Dssa_builder.cc454 if (graph_->IsDebuggable()) { in RemoveRedundantUninitializedStrings()
Dload_store_elimination.cc916 if (graph_->IsDebuggable() || graph_->HasTryCatch()) { in Run()
Dloop_optimization.cc771 !graph_->IsDebuggable() && in TryOptimizeInnerLoopFinite()
2255 if (graph_->IsDebuggable() && phi->HasEquivalentPhi()) { in TrySetPhiInduction()
2482 if (i->HasEnvironmentUses() && graph_->IsDebuggable()) { in CanRemoveCycle()
Dinliner.cc133 } else if (graph_->IsDebuggable()) { in Run()
2047 graph_->IsDebuggable(), in TryBuildAndInlineHelper()
Dssa_liveness_analysis.h1287 if (graph->IsDebuggable()) return true; in ShouldBeLiveForEnvironment()
Dintrinsics_arm_vixl.cc2256 if (invoke->GetBlock()->GetGraph()->IsDebuggable()) { in CreateFPToFPCallLocations()
2281 if (invoke->GetBlock()->GetGraph()->IsDebuggable()) { in CreateFPFPToFPCallLocations()
Dcode_generator.cc1155 graph->IsDebuggable() || in NeedsVregInfo()
Dinstruction_simplifier.cc1614 if (GetGraph()->IsDebuggable()) { in VisitCondition()
Dnodes.h598 bool IsDebuggable() const { return debuggable_; } in IsDebuggable() function
Dcode_generator_arm64.cc1374 if (GetGraph()->IsDebuggable()) { in SetupBlockedRegisters()
Dcode_generator_arm_vixl.cc2046 if (GetGraph()->IsDebuggable()) { in SetupBlockedRegisters()
/art/runtime/
Doat.h102 bool IsDebuggable() const;
Doat_file.h173 bool IsDebuggable() const;
Doat.cc387 bool OatHeader::IsDebuggable() const { in IsDebuggable() function in art::OatHeader
Doat_file.cc279 return Runtime::Current() != nullptr && !IsDebuggable() && Runtime::Current()->IsJavaDebuggable(); in ShouldUnquickenVDex()
2163 bool OatFile::IsDebuggable() const { in IsDebuggable() function in art::OatFile
2164 return GetOatHeader().IsDebuggable(); in IsDebuggable()
Doat_file_manager.cc209 return kEnableAppImage && (!runtime->IsJavaDebuggable() || source_oat_file->IsDebuggable()); in ShouldLoadAppImage()
Druntime.cc2892 if (of == nullptr || of->IsDebuggable()) { in DeoptimizeBootImage()