Home
last modified time | relevance | path

Searched refs:IsDebuggable (Results 1 – 20 of 20) 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()
Dssa_phi_elimination.cc53 bool keep_alive = (graph_->IsDebuggable() && phi->HasEnvironmentUses()); in MarkDeadPhis()
Dsharpening.cc90 !codegen->GetGraph()->IsDebuggable() && in SharpenLoadMethod()
149 if (codegen->GetGraph()->IsDebuggable()) { in SharpenLoadMethod()
Dcode_sinking.cc352 if (graph_->IsDebuggable() || in SinkCodeToUncommonBranch()
Dssa_builder.cc454 if (graph_->IsDebuggable()) { in RemoveRedundantUninitializedStrings()
Dloop_optimization.cc769 !graph_->IsDebuggable() && in TryOptimizeInnerLoopFinite()
2359 if (graph_->IsDebuggable() && phi->HasEquivalentPhi()) { in TrySetPhiInduction()
2586 if (i->HasEnvironmentUses() && graph_->IsDebuggable()) { in CanRemoveCycle()
Dinliner.cc133 } else if (graph_->IsDebuggable()) { in Run()
1938 graph_->IsDebuggable(), in TryBuildAndInlineHelper()
Dssa_liveness_analysis.h1287 if (graph->IsDebuggable()) return true; in ShouldBeLiveForEnvironment()
Dcode_generator.cc1177 graph->IsDebuggable() || in NeedsVregInfo()
Dinstruction_simplifier.cc1706 if (GetGraph()->IsDebuggable()) { in VisitCondition()
Dintrinsics_arm_vixl.cc1737 if (invoke->GetBlock()->GetGraph()->IsDebuggable()) { in CreateFPToFPCallLocations()
1762 if (invoke->GetBlock()->GetGraph()->IsDebuggable()) { in CreateFPFPToFPCallLocations()
Dload_store_elimination.cc3875 if (graph_->IsDebuggable() || graph_->HasTryCatch()) { in Run()
Dnodes.h619 bool IsDebuggable() const { return debuggable_; } in IsDebuggable() function
Dcode_generator_arm64.cc1360 if (GetGraph()->IsDebuggable()) { in SetupBlockedRegisters()
Dcode_generator_arm_vixl.cc2073 if (GetGraph()->IsDebuggable()) { in SetupBlockedRegisters()
/art/runtime/
Doat.h106 bool IsDebuggable() const;
Doat.cc407 bool OatHeader::IsDebuggable() const { in IsDebuggable() function in art::OatHeader
Doat_file.h180 bool IsDebuggable() const;
Doat_file.cc290 (GetOatHeader().IsValid() && !IsDebuggable()); in ShouldUnquickenVDex()
2380 bool OatFile::IsDebuggable() const { in IsDebuggable() function in art::OatFile
2381 return GetOatHeader().IsDebuggable(); in IsDebuggable()
Doat_file_manager.cc165 return kEnableAppImage && (!runtime->IsJavaDebuggable() || source_oat_file->IsDebuggable()); in ShouldLoadAppImage()