[llvm] [LoopInterchange] Hoist isComputableLoopNest() in the control flow (PR #124247)
Ryotaro Kasuga via llvm-commits
llvm-commits at lists.llvm.org
Thu Jan 30 23:23:56 PST 2025
================
@@ -1761,10 +1759,23 @@ PreservedAnalyses LoopInterchangePass::run(LoopNest &LN,
// Ensure minimum depth of the loop nest to do the interchange.
if (!hasSupportedLoopDepth(LoopList, ORE))
return PreservedAnalyses::all();
+ // Ensure computable loop nest.
+ if (!isComputableLoopNest(&AR.SE, LoopList)) {
+ LLVM_DEBUG(dbgs() << "Not valid loop candidate for interchange\n");
+ return PreservedAnalyses::all();
+ }
+
+ ORE.emit([&]() {
+ return OptimizationRemarkAnalysis(DEBUG_TYPE, "Dependence",
+ LN.getOutermostLoop().getStartLoc(),
+ LN.getOutermostLoop().getHeader())
+ << "Computed dependence info, invoking the transform.";
----------------
kasuga-fj wrote:
Sorry for chipping in many times, but I don't think what we want to capture here is "interchange is legal", I think it is something like "This loop form is not supported, so we will not continue the following processes (including the legality check)". Let me know if I'm wrong.
https://github.com/llvm/llvm-project/pull/124247
More information about the llvm-commits
mailing list