diff options
| author | Michael Kuperstein <mkuper@google.com> | 2016-08-19 17:05:22 +0000 |
|---|---|---|
| committer | Michael Kuperstein <mkuper@google.com> | 2016-08-19 17:05:22 +0000 |
| commit | 41898f0396533432d51fc34ceb9fbfb8f75efd3e (patch) | |
| tree | de4ce1c3133f8f838022bfaa1e57fc89e9bf40aa /llvm/test/Analysis/AliasSet | |
| parent | d7a3782ae4b86421b45704adbe3deac028e49dc8 (diff) | |
| download | bcm5719-llvm-41898f0396533432d51fc34ceb9fbfb8f75efd3e.tar.gz bcm5719-llvm-41898f0396533432d51fc34ceb9fbfb8f75efd3e.zip | |
[AliasSetTracker] Degrade AliasSetTracker when may-alias sets get too large.
Repeated inserts into AliasSetTracker have quadratic behavior - inserting a
pointer into AST is linear, since it requires walking over all "may" alias
sets and running an alias check vs. every pointer in the set.
We can avoid this by tracking the total number of pointers in "may" sets,
and when that number exceeds a threshold, declare the tracker "saturated".
This lumps all pointers into a single "may" set that aliases every other
pointer.
(This is a stop-gap solution until we migrate to MemorySSA)
This fixes PR28832.
Differential Revision: https://reviews.llvm.org/D23432
llvm-svn: 279274
Diffstat (limited to 'llvm/test/Analysis/AliasSet')
| -rw-r--r-- | llvm/test/Analysis/AliasSet/saturation.ll | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/llvm/test/Analysis/AliasSet/saturation.ll b/llvm/test/Analysis/AliasSet/saturation.ll new file mode 100644 index 00000000000..406ecbca1c2 --- /dev/null +++ b/llvm/test/Analysis/AliasSet/saturation.ll @@ -0,0 +1,53 @@ +; RUN: opt -basicaa -print-alias-sets -alias-set-saturation-threshold=2 -S -o - < %s 2>&1 | FileCheck %s --check-prefix=CHECK --check-prefix=NOSAT +; RUN: opt -basicaa -print-alias-sets -alias-set-saturation-threshold=1 -S -o - < %s 2>&1 | FileCheck %s --check-prefix=CHECK --check-prefix=SAT + +; CHECK-LABEL: 'allmust' +; CHECK: AliasSet[{{.*}}, 1] must alias, Mod Pointers: (i32* %a, 4) +; CHECK: AliasSet[{{.*}}, 1] must alias, Mod Pointers: (i32* %b, 4) +; CHECK: AliasSet[{{.*}}, 1] must alias, Mod Pointers: (i32* %c, 4) +; CHECK: AliasSet[{{.*}}, 1] must alias, Mod Pointers: (i32* %d, 4) +define void @allmust() { + %a = alloca i32 + %b = alloca i32 + %c = alloca i32 + %d = alloca i32 + store i32 1, i32* %a + store i32 2, i32* %b + store i32 3, i32* %c + store i32 4, i32* %d + ret void +} + +; CHECK-LABEL :'mergemay' +; NOSAT: AliasSet[{{.*}}, 2] may alias, Mod Pointers: (i32* %a, 4), (i32* %a1, 4) +; NOSAT: AliasSet[{{.*}}, 1] must alias, Mod Pointers: (i32* %b, 4) +; SAT: AliasSet[{{.*}}, 2] may alias, Mod forwarding to 0x[[FWD:[0-9a-f]*]] +; SAT: AliasSet[{{.*}}, 1] must alias, Mod forwarding to 0x[[FWD]] +; SAT: AliasSet[0x[[FWD]], 2] may alias, Mod/Ref Pointers: (i32* %a, 4), (i32* %a1, 4), (i32* %b, 4) +define void @mergemay(i32 %k) { + %a = alloca i32 + %b = alloca i32 + store i32 1, i32* %a + store i32 2, i32* %b + %a1 = getelementptr i32, i32 *%a, i32 %k + store i32 2, i32* %a1 + ret void +} + +; CHECK-LABEL: 'mergemust' +; NOSAT: AliasSet[{{.*}}, 1] must alias, Mod Pointers: (i32* %a, 4) +; NOSAT: AliasSet[{{.*}}, 1] must alias, Mod Pointers: (i32* %b, 4) +; NOSAT: AliasSet[{{.*}}, 2] may alias, Mod Pointers: (i32* %c, 4), (i32* %d, 4) +; SAT: AliasSet[{{.*}}, 1] must alias, Mod forwarding to 0x[[FWD:[0-9a-f]*]] +; SAT: AliasSet[{{.*}}, 1] must alias, Mod forwarding to 0x[[FWD]] +; SAT: AliasSet[{{.*}}, 2] may alias, Mod forwarding to 0x[[FWD]] +; SAT: AliasSet[0x[[FWD]], 3] may alias, Mod/Ref Pointers: (i32* %a, 4), (i32* %b, 4), (i32* %c, 4), (i32* %d, 4) +define void @mergemust(i32* %c, i32* %d) { + %a = alloca i32 + %b = alloca i32 + store i32 1, i32* %a + store i32 2, i32* %b + store i32 3, i32* %c + store i32 4, i32* %d + ret void +} |

