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.cc85 if (callee == codegen->GetGraph()->GetArtMethod() && !codegen->GetGraph()->IsDebuggable()) { in SharpenInvokeStaticOrDirect()
116 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.cc883 if (graph_->IsDebuggable() || graph_->HasTryCatch()) { in Run()
Dinliner.cc133 } else if (graph_->IsDebuggable()) { in Run()
1816 graph_->IsDebuggable(), in TryBuildAndInlineHelper()
Dssa_liveness_analysis.h1287 if (graph->IsDebuggable()) return true; in ShouldBeLiveForEnvironment()
Dloop_optimization.cc2288 if (graph_->IsDebuggable() && phi->HasEquivalentPhi()) { in TrySetPhiInduction()
2515 if (i->HasEnvironmentUses() && graph_->IsDebuggable()) { in CanRemoveCycle()
Dintrinsics_arm_vixl.cc2306 if (invoke->GetBlock()->GetGraph()->IsDebuggable()) { in CreateFPToFPCallLocations()
2331 if (invoke->GetBlock()->GetGraph()->IsDebuggable()) { in CreateFPFPToFPCallLocations()
Dinstruction_simplifier.cc1618 if (GetGraph()->IsDebuggable()) { in VisitCondition()
Dcode_generator_arm64.cc1225 if (GetGraph()->IsDebuggable()) { in SetupBlockedRegisters()
Dnodes.h537 bool IsDebuggable() const { return debuggable_; } in IsDebuggable() function
Dcode_generator_mips64.cc1792 if (GetGraph()->IsDebuggable()) { in SetupBlockedRegisters()
Dcode_generator_arm_vixl.cc2043 if (GetGraph()->IsDebuggable()) { in SetupBlockedRegisters()
Dcode_generator_mips.cc1930 if (GetGraph()->IsDebuggable()) { in SetupBlockedRegisters()
/art/runtime/
Doat.h98 bool IsDebuggable() const;
Doat.cc369 bool OatHeader::IsDebuggable() const { in IsDebuggable() function in art::OatHeader
Doat_file.h141 bool IsDebuggable() const;
Doat_file.cc2164 bool OatFile::IsDebuggable() const { in IsDebuggable() function in art::OatFile
2165 return GetOatHeader().IsDebuggable(); in IsDebuggable()
Doat_file_manager.cc428 if (kEnableAppImage && (!runtime->IsJavaDebuggable() || source_oat_file->IsDebuggable())) { in ShouldLoadAppImage()