[PATCH] D95250: [NewPM][AMDGPU] Skip adding CGSCCOptimizerLate callbacks at O0
Arthur Eubanks via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Jan 22 10:49:57 PST 2021
aeubanks created this revision.
aeubanks added reviewers: arsenm, asbirlea, rnk.
Herald added subscribers: kerbowa, hiraditya, t-tye, tpr, dstuttard, yaxunl, nhaehnle, jvesely, kzhuravl.
aeubanks requested review of this revision.
Herald added subscribers: llvm-commits, wdng.
Herald added a project: LLVM.
The legacy PM's EP_CGSCCOptimizerLate was only used under not-O0.
Fixes clang/test/CodeGenCXX/cxx0x-initializer-stdinitializerlist.cpp under the new PM.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D95250
Files:
llvm/lib/Target/AMDGPU/AMDGPUTargetMachine.cpp
Index: llvm/lib/Target/AMDGPU/AMDGPUTargetMachine.cpp
===================================================================
--- llvm/lib/Target/AMDGPU/AMDGPUTargetMachine.cpp
+++ llvm/lib/Target/AMDGPU/AMDGPUTargetMachine.cpp
@@ -579,24 +579,27 @@
PB.registerCGSCCOptimizerLateEPCallback(
[this, DebugPassManager](CGSCCPassManager &PM,
PassBuilder::OptimizationLevel Level) {
- FunctionPassManager FPM(DebugPassManager);
+ if (Level == PassBuilder::OptimizationLevel::O0)
+ return;
- // Add infer address spaces pass to the opt pipeline after inlining
- // but before SROA to increase SROA opportunities.
- FPM.addPass(InferAddressSpacesPass());
+ FunctionPassManager FPM(DebugPassManager);
- // This should run after inlining to have any chance of doing
- // anything, and before other cleanup optimizations.
- FPM.addPass(AMDGPULowerKernelAttributesPass());
+ // Add infer address spaces pass to the opt pipeline after inlining
+ // but before SROA to increase SROA opportunities.
+ FPM.addPass(InferAddressSpacesPass());
- if (Level != PassBuilder::OptimizationLevel::O0) {
- // Promote alloca to vector before SROA and loop unroll. If we
- // manage to eliminate allocas before unroll we may choose to unroll
- // less.
- FPM.addPass(AMDGPUPromoteAllocaToVectorPass(*this));
- }
+ // This should run after inlining to have any chance of doing
+ // anything, and before other cleanup optimizations.
+ FPM.addPass(AMDGPULowerKernelAttributesPass());
+
+ if (Level != PassBuilder::OptimizationLevel::O0) {
+ // Promote alloca to vector before SROA and loop unroll. If we
+ // manage to eliminate allocas before unroll we may choose to unroll
+ // less.
+ FPM.addPass(AMDGPUPromoteAllocaToVectorPass(*this));
+ }
- PM.addPass(createCGSCCToFunctionPassAdaptor(std::move(FPM)));
+ PM.addPass(createCGSCCToFunctionPassAdaptor(std::move(FPM)));
});
}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D95250.318580.patch
Type: text/x-patch
Size: 2161 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20210122/b17840ef/attachment.bin>
More information about the llvm-commits
mailing list