[PATCH] D33195: [Polly] Add invalidation of the loop SCEVs after merge block generation
Baranidharan Mohan via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon May 22 07:05:27 PDT 2017
mbdharan updated this revision to Diff 99758.
mbdharan added a comment.
Add changes to reflect the comments.
https://reviews.llvm.org/D33195
Files:
lib/CodeGen/BlockGenerators.cpp
test/Isl/CodeGen/two-scops-in-row-invalidate-scevs.ll
Index: test/Isl/CodeGen/two-scops-in-row-invalidate-scevs.ll
===================================================================
--- /dev/null
+++ test/Isl/CodeGen/two-scops-in-row-invalidate-scevs.ll
@@ -0,0 +1,70 @@
+; RUN: opt %loadPolly -polly-codegen -S < %s | FileCheck %s
+;
+; CHECK-LABEL: for.cond:
+; CHECK: %num.0 = phi i32 [ %add, %for.body15 ], [ 0, %for.cond.pre_entry_bb ]
+; CHECK: br i1 false, label %for.body15, label %for.end22
+
+; CHECK-LABEL: polly.merge_new_and_old:
+; CHECK: %num.0.merge = phi i32 [ %num.0.final_reload, %polly.exiting ], [ %num.0, %for.end22 ]
+; CHECK: br label %for.end44
+
+target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
+
+define void @func(i32* %p) {
+entry:
+ %counters = alloca [64 x i32], align 16
+ %lenCounters = alloca [17 x i32], align 16
+ br label %for.cond
+
+for.cond: ; preds = %for.body15, %for.cond
+ %num.0 = phi i32 [ 0, %entry ], [ %add, %for.body15 ]
+ br i1 false, label %for.body15, label %for.end22
+
+for.body15: ; preds = %for.cond
+ %arrayidx17 = getelementptr inbounds [64 x i32], [64 x i32]* %counters, i64 0, i64 0
+ %0 = load i32, i32* %arrayidx17, align 4
+ %add = add i32 %num.0, %0
+ br label %for.cond
+
+for.end22: ; preds = %for.cond
+ br label %for.end44
+
+for.end44: ; preds = %for.end22
+ br i1 undef, label %if.then50, label %if.end67
+
+if.then50: ; preds = %for.end44
+ br label %cleanup
+
+if.end67: ; preds = %for.end44
+ br label %do.body
+
+do.body: ; preds = %cond.end109, %if.end67
+ %e.0 = phi i32 [ 0, %if.end67 ], [ %inc128, %cond.end109 ]
+ br label %cond.end109
+
+cond.end109: ; preds = %do.body
+ %idxprom122 = zext i32 %e.0 to i64
+ %arrayidx123 = getelementptr inbounds i32, i32* %p, i64 %idxprom122
+ %inc128 = add i32 %e.0, 1
+ %sub129 = sub i32 %num.0, %inc128
+ %cmp130 = icmp ugt i32 %sub129, 1
+ br i1 %cmp130, label %do.body, label %do.end
+
+do.end: ; preds = %cond.end109
+ %1 = load i32, i32* %arrayidx123, align 4
+ %arrayidx142 = getelementptr inbounds [17 x i32], [17 x i32]* %lenCounters, i64 0, i64 1
+ store i32 2, i32* %arrayidx142, align 4
+ br label %for.cond201
+
+for.cond201: ; preds = %for.body204, %do.end
+ br i1 undef, label %for.body204, label %for.end214
+
+for.body204: ; preds = %for.cond201
+ br label %for.cond201
+
+for.end214: ; preds = %for.cond201
+ br label %cleanup
+
+cleanup: ; preds = %for.end214, %if.then50
+ ret void
+}
Index: lib/CodeGen/BlockGenerators.cpp
===================================================================
--- lib/CodeGen/BlockGenerators.cpp
+++ lib/CodeGen/BlockGenerators.cpp
@@ -858,6 +858,18 @@
SE.forgetValue(&Inst);
else
llvm_unreachable("Unexpected statement type found");
+
+ // Invalidate SCEV of loops surrounding the EscapeUsers
+ for (const auto &EscapeMapping : EscapeMap) {
+ const EscapeUserVectorTy &EscapeUsers = EscapeMapping.second.second;
+ for (Instruction *EUser : EscapeUsers) {
+ if (Loop *L = LI.getLoopFor(EUser->getParent()))
+ while (L) {
+ SE.forgetLoop(L);
+ L = L->getParentLoop();
+ }
+ }
+ }
}
void BlockGenerator::finalizeSCoP(Scop &S) {
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D33195.99758.patch
Type: text/x-patch
Size: 3697 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20170522/307265b6/attachment.bin>
More information about the llvm-commits
mailing list