diff options
| author | Matthew Simpson <mssimpso@codeaurora.org> | 2016-05-19 15:37:19 +0000 |
|---|---|---|
| committer | Matthew Simpson <mssimpso@codeaurora.org> | 2016-05-19 15:37:19 +0000 |
| commit | 6feebe984744141806d3b7d6a9041066d1298bdf (patch) | |
| tree | bf9d2dff7fa3896b0b6d8b773db60e22a9c3b34c /llvm/test/Analysis/LoopAccessAnalysis | |
| parent | ed29c21d5de6811d40c8c023ddad6b27d0ef635d (diff) | |
| download | bcm5719-llvm-6feebe984744141806d3b7d6a9041066d1298bdf.tar.gz bcm5719-llvm-6feebe984744141806d3b7d6a9041066d1298bdf.zip | |
[LAA] Check independence of strided accesses before forward case
This patch changes the order in which we attempt to prove the independence of
strided accesses. We previously did this after we knew the dependence distance
was positive. With this change, we check for independence before handling the
negative distance case. The patch prevents LAA from reporting forward
dependences for independent strided accesses.
This change was requested in the review of D19984.
llvm-svn: 270072
Diffstat (limited to 'llvm/test/Analysis/LoopAccessAnalysis')
| -rw-r--r-- | llvm/test/Analysis/LoopAccessAnalysis/independent-interleaved.ll | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/llvm/test/Analysis/LoopAccessAnalysis/independent-interleaved.ll b/llvm/test/Analysis/LoopAccessAnalysis/independent-interleaved.ll new file mode 100644 index 00000000000..1be6ee6dc70 --- /dev/null +++ b/llvm/test/Analysis/LoopAccessAnalysis/independent-interleaved.ll @@ -0,0 +1,45 @@ +; RUN: opt < %s -store-to-load-forwarding-conflict-detection=false -loop-accesses -analyze | FileCheck %s + +; This test checks that we prove the strided accesses to be independent before +; concluding that there is a forward dependence. + +; struct pair { +; int x; +; int y; +; }; +; +; int independent_interleaved(struct pair *p, int z, int n) { +; int s = 0; +; for (int i = 0; i < n; i++) { +; p[i].y = z; +; s += p[i].x; +; } +; return s; +; } + +; CHECK: for.body: +; CHECK-NOT: Forward: +; CHECK-NOT: store i32 %z, i32* %p_i.y, align 8 -> +; CHECK-NOT: %0 = load i32, i32* %p_i.x, align 8 + +%pair = type { i32, i32 } +define i32 @independent_interleaved(%pair *%p, i64 %n, i32 %z) { +entry: + br label %for.body + +for.body: + %i = phi i64 [ %i.next, %for.body ], [ 0, %entry ] + %s = phi i32 [ %1, %for.body ], [ 0, %entry ] + %p_i.x = getelementptr inbounds %pair, %pair* %p, i64 %i, i32 0 + %p_i.y = getelementptr inbounds %pair, %pair* %p, i64 %i, i32 1 + store i32 %z, i32* %p_i.y, align 8 + %0 = load i32, i32* %p_i.x, align 8 + %1 = add nsw i32 %0, %s + %i.next = add nuw nsw i64 %i, 1 + %cond = icmp slt i64 %i.next, %n + br i1 %cond, label %for.body, label %for.end + +for.end: + %2 = phi i32 [ %1, %for.body ] + ret i32 %2 +} |

