[PATCH] D138265: [PowerPC] move ctrloop pass before tail duplication
ChenZheng via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Dec 1 21:35:05 PST 2022
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rGb61ff0ca76a5: [PowerPC] move ctrloop pass before tail duplication (authored by shchenz).
Changed prior to commit:
https://reviews.llvm.org/D138265?vs=476349&id=479521#toc
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D138265/new/
https://reviews.llvm.org/D138265
Files:
llvm/lib/Target/PowerPC/PPCTargetMachine.cpp
llvm/test/CodeGen/PowerPC/O3-pipeline.ll
Index: llvm/test/CodeGen/PowerPC/O3-pipeline.ll
===================================================================
--- llvm/test/CodeGen/PowerPC/O3-pipeline.ll
+++ llvm/test/CodeGen/PowerPC/O3-pipeline.ll
@@ -95,6 +95,9 @@
; CHECK-NEXT: PowerPC CTR Loops Verify
; CHECK-NEXT: PowerPC VSX Copy Legalization
; CHECK-NEXT: Finalize ISel and expand pseudo-instructions
+; CHECK-NEXT: MachineDominator Tree Construction
+; CHECK-NEXT: Machine Natural Loop Construction
+; CHECK-NEXT: PowerPC CTR loops generation
; CHECK-NEXT: Lazy Machine Block Frequency Analysis
; CHECK-NEXT: Early Tail Duplication
; CHECK-NEXT: Optimize machine instruction PHIs
@@ -134,9 +137,6 @@
; CHECK-NEXT: PowerPC TOC Register Dependencies
; CHECK-NEXT: MachineDominator Tree Construction
; CHECK-NEXT: Machine Natural Loop Construction
-; CHECK-NEXT: PowerPC CTR loops generation
-; CHECK-NEXT: MachineDominator Tree Construction
-; CHECK-NEXT: Machine Natural Loop Construction
; CHECK-NEXT: Slot index numbering
; CHECK-NEXT: Live Interval Analysis
; CHECK-NEXT: Lazy Machine Block Frequency Analysis
Index: llvm/lib/Target/PowerPC/PPCTargetMachine.cpp
===================================================================
--- llvm/lib/Target/PowerPC/PPCTargetMachine.cpp
+++ llvm/lib/Target/PowerPC/PPCTargetMachine.cpp
@@ -500,6 +500,11 @@
}
void PPCPassConfig::addMachineSSAOptimization() {
+ // Run CTR loops pass before any cfg modification pass to prevent the
+ // canonical form of hardware loop from being destroied.
+ if (!DisableCTRLoops && getOptLevel() != CodeGenOpt::None)
+ addPass(createPPCCTRLoopsPass());
+
// PPCBranchCoalescingPass need to be done before machine sinking
// since it merges empty blocks.
if (EnableBranchCoalescing && getOptLevel() != CodeGenOpt::None)
@@ -540,16 +545,6 @@
if (EnableExtraTOCRegDeps)
addPass(createPPCTOCRegDepsPass());
- // Run CTR loops pass before MachinePipeliner pass.
- // MachinePipeliner will pipeline all instructions before the terminator, but
- // we don't want DecreaseCTRPseudo to be pipelined.
- // Note we may lose some MachinePipeliner opportunities if we run CTR loops
- // generation pass before MachinePipeliner and the loop is converted back to
- // a normal loop. We can revisit this later for running PPCCTRLoops after
- // MachinePipeliner and handling DecreaseCTRPseudo in MachinePipeliner pass.
- if (getOptLevel() != CodeGenOpt::None)
- addPass(createPPCCTRLoopsPass());
-
if (getOptLevel() != CodeGenOpt::None)
addPass(&MachinePipelinerID);
}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D138265.479521.patch
Type: text/x-patch
Size: 2666 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20221202/012d2b44/attachment.bin>
More information about the llvm-commits
mailing list