Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dssa_liveness_analysis_test.cc122 EXPECT_FALSE(graph_->IsDebuggable()); in TEST_F()
195 EXPECT_FALSE(graph_->IsDebuggable()); in TEST_F()
Dsharpening.cc86 if (callee == codegen->GetGraph()->GetArtMethod() && !codegen->GetGraph()->IsDebuggable()) { in SharpenInvokeStaticOrDirect()
127 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()
Dloop_optimization.cc768 !graph_->IsDebuggable() && in TryOptimizeInnerLoopFinite()
2244 if (graph_->IsDebuggable() && phi->HasEquivalentPhi()) { in TrySetPhiInduction()
2471 if (i->HasEnvironmentUses() && graph_->IsDebuggable()) { in CanRemoveCycle()
Dload_store_elimination.cc927 if (graph_->IsDebuggable() || graph_->HasTryCatch()) { in Run()
Dinliner.cc133 } else if (graph_->IsDebuggable()) { in Run()
2044 graph_->IsDebuggable(), in TryBuildAndInlineHelper()
Dssa_liveness_analysis.h1287 if (graph->IsDebuggable()) return true; in ShouldBeLiveForEnvironment()
Dintrinsics_arm_vixl.cc2306 if (invoke->GetBlock()->GetGraph()->IsDebuggable()) { in CreateFPToFPCallLocations()
2331 if (invoke->GetBlock()->GetGraph()->IsDebuggable()) { in CreateFPFPToFPCallLocations()
Dcode_generator.cc1104 graph->IsDebuggable() || in NeedsVregInfo()
Dinstruction_simplifier.cc1608 if (GetGraph()->IsDebuggable()) { in VisitCondition()
Dnodes.h543 bool IsDebuggable() const { return debuggable_; } in IsDebuggable() function
Dcode_generator_arm64.cc1311 if (GetGraph()->IsDebuggable()) { in SetupBlockedRegisters()
Dcode_generator_arm_vixl.cc2045 if (GetGraph()->IsDebuggable()) { in SetupBlockedRegisters()
/art/runtime/
Doat.h101 bool IsDebuggable() const;
Doat.cc387 bool OatHeader::IsDebuggable() const { in IsDebuggable() function in art::OatHeader
Doat_file.h173 bool IsDebuggable() const;
Doat_file.cc278 return Runtime::Current() != nullptr && !IsDebuggable() && Runtime::Current()->IsJavaDebuggable(); in ShouldUnquickenVDex()
2150 bool OatFile::IsDebuggable() const { in IsDebuggable() function in art::OatFile
2151 return GetOatHeader().IsDebuggable(); in IsDebuggable()
Doat_file_manager.cc434 if (kEnableAppImage && (!runtime->IsJavaDebuggable() || source_oat_file->IsDebuggable())) { in ShouldLoadAppImage()
Druntime.cc2896 if (of == nullptr || of->IsDebuggable()) { in DeoptimizeBootImage()