[PATCH] D131817: [InstrProf] Add option to disable loop opt after PGO
Ellis Hoag via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Aug 17 12:23:37 PDT 2022
This revision was automatically updated to reflect the committed changes.
Closed by commit rG0f946a50a485: [InstrProf] Add option to disable loop opt after PGO (authored by ellis).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D131817/new/
https://reviews.llvm.org/D131817
Files:
llvm/lib/Passes/PassBuilderPipelines.cpp
Index: llvm/lib/Passes/PassBuilderPipelines.cpp
===================================================================
--- llvm/lib/Passes/PassBuilderPipelines.cpp
+++ llvm/lib/Passes/PassBuilderPipelines.cpp
@@ -182,6 +182,10 @@
"enable-merge-functions", cl::init(false), cl::Hidden,
cl::desc("Enable function merging as part of the optimization pipeline"));
+static cl::opt<bool> EnablePostPGOLoopRotation(
+ "enable-post-pgo-loop-rotation", cl::init(true), cl::Hidden,
+ cl::desc("Run the loop rotation transformation after PGO instrumentation"));
+
PipelineTuningOptions::PipelineTuningOptions() {
LoopInterleaving = true;
LoopVectorization = true;
@@ -664,13 +668,15 @@
// Perform PGO instrumentation.
MPM.addPass(PGOInstrumentationGen(IsCS));
- // Disable header duplication in loop rotation at -Oz.
- MPM.addPass(createModuleToFunctionPassAdaptor(
- createFunctionToLoopPassAdaptor(
- LoopRotatePass(Level != OptimizationLevel::Oz),
- /*UseMemorySSA=*/false,
- /*UseBlockFrequencyInfo=*/false),
- PTO.EagerlyInvalidateAnalyses));
+ if (EnablePostPGOLoopRotation) {
+ // Disable header duplication in loop rotation at -Oz.
+ MPM.addPass(createModuleToFunctionPassAdaptor(
+ createFunctionToLoopPassAdaptor(
+ LoopRotatePass(Level != OptimizationLevel::Oz),
+ /*UseMemorySSA=*/false,
+ /*UseBlockFrequencyInfo=*/false),
+ PTO.EagerlyInvalidateAnalyses));
+ }
// Add the profile lowering pass.
InstrProfOptions Options;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D131817.453394.patch
Type: text/x-patch
Size: 1556 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20220817/03841987/attachment.bin>
More information about the llvm-commits
mailing list