diff options
author | George Burgess IV <george.burgess.iv@gmail.com> | 2016-03-23 18:31:55 +0000 |
---|---|---|
committer | George Burgess IV <george.burgess.iv@gmail.com> | 2016-03-23 18:31:55 +0000 |
commit | 0e4898685f8654b8a01e1580cc9a14497cb3f794 (patch) | |
tree | aeea6bfeb96a96510c64f77e993e6735fa9bd7de /llvm/test/Transforms/Util/MemorySSA | |
parent | 12b79aa0f1b7aa6e792a0b65d219a969f4ea8f0b (diff) | |
download | bcm5719-llvm-0e4898685f8654b8a01e1580cc9a14497cb3f794.tar.gz bcm5719-llvm-0e4898685f8654b8a01e1580cc9a14497cb3f794.zip |
Fix bugs in the MemorySSA walker.
There are a few bugs in the walker that this patch addresses.
Primarily:
- Caching can break when we have multiple BBs without phis
- We weren't optimizing some phis properly
- Because of how the DFS iterator works, there were times where we
wouldn't cache any results of our DFS
I left the test cases with FIXMEs in, because I'm not sure how much
effort it will take to get those to work (read: We'll probably
ultimately have to end up redoing the walker, or we'll have to come up
with some creative caching tricks), and more test coverage = better.
Differential Revision: http://reviews.llvm.org/D18065
llvm-svn: 264180
Diffstat (limited to 'llvm/test/Transforms/Util/MemorySSA')
-rw-r--r-- | llvm/test/Transforms/Util/MemorySSA/cyclicphi.ll | 90 | ||||
-rw-r--r-- | llvm/test/Transforms/Util/MemorySSA/phi-translation.ll | 147 |
2 files changed, 237 insertions, 0 deletions
diff --git a/llvm/test/Transforms/Util/MemorySSA/cyclicphi.ll b/llvm/test/Transforms/Util/MemorySSA/cyclicphi.ll index 51c2e4cb310..55ec1abfefc 100644 --- a/llvm/test/Transforms/Util/MemorySSA/cyclicphi.ll +++ b/llvm/test/Transforms/Util/MemorySSA/cyclicphi.ll @@ -31,3 +31,93 @@ bb77: ; preds = %bb68, %bb26 %tmp79 = getelementptr inbounds i64, i64* %tmp78, i64 undef br label %bb26 } + +; CHECK-LABEL: define void @quux_skip +define void @quux_skip(%struct.hoge* noalias %f, i64* noalias %g) align 2 { + %tmp = getelementptr inbounds %struct.hoge, %struct.hoge* %f, i64 0, i32 1, i32 0 + %tmp24 = getelementptr inbounds %struct.hoge, %struct.hoge* %f, i64 0, i32 1 + %tmp25 = bitcast %struct.widget* %tmp24 to i64** + br label %bb26 + +bb26: ; preds = %bb77, %0 +; CHECK: 3 = MemoryPhi({%0,liveOnEntry},{bb77,2}) +; CHECK-NEXT: br i1 undef, label %bb68, label %bb77 + br i1 undef, label %bb68, label %bb77 + +bb68: ; preds = %bb26 +; CHECK: MemoryUse(3) +; CHECK-NEXT: %tmp69 = load i64, i64* %g, align 8 + %tmp69 = load i64, i64* %g, align 8 +; CHECK: 1 = MemoryDef(3) +; CHECK-NEXT: store i64 %tmp69, i64* %g, align 8 + store i64 %tmp69, i64* %g, align 8 + br label %bb77 + +bb77: ; preds = %bb68, %bb26 +; CHECK: 2 = MemoryPhi({bb26,3},{bb68,1}) +; FIXME: This should be MemoryUse(liveOnEntry) +; CHECK: MemoryUse(2) +; CHECK-NEXT: %tmp78 = load i64*, i64** %tmp25, align 8 + %tmp78 = load i64*, i64** %tmp25, align 8 + br label %bb26 +} + +; CHECK-LABEL: define void @quux_dominated +define void @quux_dominated(%struct.hoge* noalias %f, i64* noalias %g) align 2 { + %tmp = getelementptr inbounds %struct.hoge, %struct.hoge* %f, i64 0, i32 1, i32 0 + %tmp24 = getelementptr inbounds %struct.hoge, %struct.hoge* %f, i64 0, i32 1 + %tmp25 = bitcast %struct.widget* %tmp24 to i64** + br label %bb26 + +bb26: ; preds = %bb77, %0 +; CHECK: 4 = MemoryPhi({%0,liveOnEntry},{bb77,2}) +; CHECK: MemoryUse(4) +; CHECK-NEXT: load i64*, i64** %tmp25, align 8 + load i64*, i64** %tmp25, align 8 + br i1 undef, label %bb68, label %bb77 + +bb68: ; preds = %bb26 +; CHECK: MemoryUse(4) +; CHECK-NEXT: %tmp69 = load i64, i64* %g, align 8 + %tmp69 = load i64, i64* %g, align 8 +; CHECK: 1 = MemoryDef(4) +; CHECK-NEXT: store i64 %tmp69, i64* %g, align 8 + store i64 %tmp69, i64* %g, align 8 + br label %bb77 + +bb77: ; preds = %bb68, %bb26 +; CHECK: 3 = MemoryPhi({bb26,4},{bb68,1}) +; CHECK: 2 = MemoryDef(3) +; CHECK-NEXT: store i64* null, i64** %tmp25, align 8 + store i64* null, i64** %tmp25, align 8 + br label %bb26 +} + +; CHECK-LABEL: define void @quux_nodominate +define void @quux_nodominate(%struct.hoge* noalias %f, i64* noalias %g) align 2 { + %tmp = getelementptr inbounds %struct.hoge, %struct.hoge* %f, i64 0, i32 1, i32 0 + %tmp24 = getelementptr inbounds %struct.hoge, %struct.hoge* %f, i64 0, i32 1 + %tmp25 = bitcast %struct.widget* %tmp24 to i64** + br label %bb26 + +bb26: ; preds = %bb77, %0 +; CHECK: 3 = MemoryPhi({%0,liveOnEntry},{bb77,2}) +; CHECK: MemoryUse(liveOnEntry) +; CHECK-NEXT: load i64*, i64** %tmp25, align 8 + load i64*, i64** %tmp25, align 8 + br i1 undef, label %bb68, label %bb77 + +bb68: ; preds = %bb26 +; CHECK: MemoryUse(3) +; CHECK-NEXT: %tmp69 = load i64, i64* %g, align 8 + %tmp69 = load i64, i64* %g, align 8 +; CHECK: 1 = MemoryDef(3) +; CHECK-NEXT: store i64 %tmp69, i64* %g, align 8 + store i64 %tmp69, i64* %g, align 8 + br label %bb77 + +bb77: ; preds = %bb68, %bb26 +; CHECK: 2 = MemoryPhi({bb26,3},{bb68,1}) +; CHECK-NEXT: br label %bb26 + br label %bb26 +} diff --git a/llvm/test/Transforms/Util/MemorySSA/phi-translation.ll b/llvm/test/Transforms/Util/MemorySSA/phi-translation.ll new file mode 100644 index 00000000000..a2cba18dcf4 --- /dev/null +++ b/llvm/test/Transforms/Util/MemorySSA/phi-translation.ll @@ -0,0 +1,147 @@ +; RUN: opt -basicaa -print-memoryssa -verify-memoryssa -analyze < %s 2>&1 | FileCheck %s + +; %ptr can't alias %local, so we should be able to optimize the use of %local to +; point to the store to %local. +; CHECK-LABEL: define void @check +define void @check(i8* %ptr, i1 %bool) { +entry: + %local = alloca i8, align 1 +; CHECK: 1 = MemoryDef(liveOnEntry) +; CHECK-NEXT: store i8 0, i8* %local, align 1 + store i8 0, i8* %local, align 1 + br i1 %bool, label %if.then, label %if.end + +if.then: + %p2 = getelementptr inbounds i8, i8* %ptr, i32 1 +; CHECK: 2 = MemoryDef(1) +; CHECK-NEXT: store i8 0, i8* %p2, align 1 + store i8 0, i8* %p2, align 1 + br label %if.end + +if.end: +; CHECK: 3 = MemoryPhi({entry,1},{if.then,2}) +; CHECK: MemoryUse(1) +; CHECK-NEXT: load i8, i8* %local, align 1 + load i8, i8* %local, align 1 + ret void +} + +; CHECK-LABEL: define void @check2 +define void @check2(i1 %val1, i1 %val2, i1 %val3) { +entry: + %local = alloca i8, align 1 + %local2 = alloca i8, align 1 + +; CHECK: 1 = MemoryDef(liveOnEntry) +; CHECK-NEXT: store i8 0, i8* %local + store i8 0, i8* %local + br i1 %val1, label %if.then, label %phi.3 + +if.then: +; CHECK: 2 = MemoryDef(1) +; CHECK-NEXT: store i8 2, i8* %local2 + store i8 2, i8* %local2 + br i1 %val2, label %phi.2, label %phi.3 + +phi.3: +; CHECK: 6 = MemoryPhi({entry,1},{if.then,2}) +; CHECK: 3 = MemoryDef(6) +; CHECK-NEXT: store i8 3, i8* %local2 + store i8 3, i8* %local2 + br i1 %val3, label %phi.2, label %phi.1 + +phi.2: +; CHECK: 5 = MemoryPhi({if.then,2},{phi.3,3}) +; CHECK: 4 = MemoryDef(5) +; CHECK-NEXT: store i8 4, i8* %local2 + store i8 4, i8* %local2 + br label %phi.1 + +phi.1: +; Order matters here; phi.2 needs to come before phi.3, because that's the order +; they're visited in. +; CHECK: 7 = MemoryPhi({phi.2,4},{phi.3,3}) +; FIXME: This should be MemoryUse(1) +; CHECK: MemoryUse(7) +; CHECK-NEXT: load i8, i8* %local + load i8, i8* %local + ret void +} + +; CHECK-LABEL: define void @cross_phi +define void @cross_phi(i8* noalias %p1, i8* noalias %p2) { +; CHECK: 1 = MemoryDef(liveOnEntry) +; CHECK-NEXT: store i8 0, i8* %p1 + store i8 0, i8* %p1 +; CHECK: MemoryUse(1) +; CHECK-NEXT: load i8, i8* %p1 + load i8, i8* %p1 + br i1 undef, label %a, label %b + +a: +; CHECK: 2 = MemoryDef(1) +; CHECK-NEXT: store i8 0, i8* %p2 + store i8 0, i8* %p2 + br i1 undef, label %c, label %d + +b: +; CHECK: 3 = MemoryDef(1) +; CHECK-NEXT: store i8 1, i8* %p2 + store i8 1, i8* %p2 + br i1 undef, label %c, label %d + +c: +; CHECK: 6 = MemoryPhi({a,2},{b,3}) +; CHECK: 4 = MemoryDef(6) +; CHECK-NEXT: store i8 2, i8* %p2 + store i8 2, i8* %p2 + br label %e + +d: +; CHECK: 7 = MemoryPhi({a,2},{b,3}) +; CHECK: 5 = MemoryDef(7) +; CHECK-NEXT: store i8 3, i8* %p2 + store i8 3, i8* %p2 + br label %e + +e: +; 8 = MemoryPhi({c,4},{d,5}) +; FIXME: This should be MemoryUse(1) +; CHECK: MemoryUse(8) +; CHECK-NEXT: load i8, i8* %p1 + load i8, i8* %p1 + ret void +} + +; CHECK-LABEL: define void @looped +define void @looped(i8* noalias %p1, i8* noalias %p2) { +; CHECK: 1 = MemoryDef(liveOnEntry) +; CHECK-NEXT: store i8 0, i8* %p1 + store i8 0, i8* %p1 + br label %loop.1 + +loop.1: +; CHECK: 7 = MemoryPhi({%0,1},{loop.3,4}) +; CHECK: 2 = MemoryDef(7) +; CHECK-NEXT: store i8 0, i8* %p2 + store i8 0, i8* %p2 + br i1 undef, label %loop.2, label %loop.3 + +loop.2: +; CHECK: 6 = MemoryPhi({loop.1,2},{loop.3,4}) +; CHECK: 3 = MemoryDef(6) +; CHECK-NEXT: store i8 1, i8* %p2 + store i8 1, i8* %p2 + br label %loop.3 + +loop.3: +; CHECK: 5 = MemoryPhi({loop.1,2},{loop.2,3}) +; CHECK: 4 = MemoryDef(5) +; CHECK-NEXT: store i8 2, i8* %p2 + store i8 2, i8* %p2 +; FIXME: This should be MemoryUse(1) +; CHECK: MemoryUse(5) +; CHECK-NEXT: load i8, i8* %p1 + load i8, i8* %p1 + br i1 undef, label %loop.2, label %loop.1 +} |