blob: 737ee45350347c4ef89c79ed04873744a7ded690 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001; This testcase tests for various features the basicaa test should be able to
2; determine, as noted in the comments.
3
Dan Gohman3c7d3082009-09-11 18:01:28 +00004; RUN: opt < %s -basicaa -gvn -instcombine -dce -S | not grep REMOVE
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005
Tanya Lattnera695f012008-02-14 06:56:27 +00006@Global = external global { i32 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007
8; Array test: Test that operations on one local array do not invalidate
9; operations on another array. Important for scientific codes.
10;
Tanya Lattnera695f012008-02-14 06:56:27 +000011define i32 @different_array_test(i64 %A, i64 %B) {
12 %Array1 = alloca i32, i32 100
13 %Array2 = alloca i32, i32 200
Dan Gohmanf17a25c2007-07-18 16:29:46 +000014
Tanya Lattnera695f012008-02-14 06:56:27 +000015 %pointer = getelementptr i32* %Array1, i64 %A
16 %val = load i32* %pointer
Dan Gohmanf17a25c2007-07-18 16:29:46 +000017
Tanya Lattnera695f012008-02-14 06:56:27 +000018 %pointer2 = getelementptr i32* %Array2, i64 %B
19 store i32 7, i32* %pointer2
Dan Gohmanf17a25c2007-07-18 16:29:46 +000020
Tanya Lattnera695f012008-02-14 06:56:27 +000021 %REMOVE = load i32* %pointer ; redundant with above load
22 %retval = sub i32 %REMOVE, %val
23 ret i32 %retval
Dan Gohmanf17a25c2007-07-18 16:29:46 +000024}
25
26; Constant index test: Constant indexes into the same array should not
27; interfere with each other. Again, important for scientific codes.
28;
Tanya Lattnera695f012008-02-14 06:56:27 +000029define i32 @constant_array_index_test() {
30 %Array = alloca i32, i32 100
31 %P1 = getelementptr i32* %Array, i64 7
32 %P2 = getelementptr i32* %Array, i64 6
Dan Gohmanf17a25c2007-07-18 16:29:46 +000033
Tanya Lattnera695f012008-02-14 06:56:27 +000034 %A = load i32* %P1
35 store i32 1, i32* %P2 ; Should not invalidate load
36 %BREMOVE = load i32* %P1
37 %Val = sub i32 %A, %BREMOVE
38 ret i32 %Val
Dan Gohmanf17a25c2007-07-18 16:29:46 +000039}
40
41; Test that if two pointers are spaced out by a constant getelementptr, that
42; they cannot alias.
Tanya Lattnera695f012008-02-14 06:56:27 +000043define i32 @gep_distance_test(i32* %A) {
44 %REMOVEu = load i32* %A
45 %B = getelementptr i32* %A, i64 2 ; Cannot alias A
46 store i32 7, i32* %B
47 %REMOVEv = load i32* %A
48 %r = sub i32 %REMOVEu, %REMOVEv
49 ret i32 %r
Dan Gohmanf17a25c2007-07-18 16:29:46 +000050}
51
52; Test that if two pointers are spaced out by a constant offset, that they
53; cannot alias, even if there is a variable offset between them...
Tanya Lattnera695f012008-02-14 06:56:27 +000054define i32 @gep_distance_test2({i32,i32}* %A, i64 %distance) {
55 %A1 = getelementptr {i32,i32}* %A, i64 0, i32 0
56 %REMOVEu = load i32* %A1
57 %B = getelementptr {i32,i32}* %A, i64 %distance, i32 1
58 store i32 7, i32* %B ; B cannot alias A, it's at least 4 bytes away
59 %REMOVEv = load i32* %A1
60 %r = sub i32 %REMOVEu, %REMOVEv
61 ret i32 %r
Dan Gohmanf17a25c2007-07-18 16:29:46 +000062}
63
64; Test that we can do funny pointer things and that distance calc will still
65; work.
Tanya Lattnera695f012008-02-14 06:56:27 +000066define i32 @gep_distance_test3(i32 * %A) {
67 %X = load i32* %A
68 %B = bitcast i32* %A to i8*
69 %C = getelementptr i8* %B, i64 4
70 %Y = load i8* %C
71 ret i32 8
Dan Gohmanf17a25c2007-07-18 16:29:46 +000072}
73
74; Test that we can disambiguate globals reached through constantexpr geps
Tanya Lattnera695f012008-02-14 06:56:27 +000075define i32 @constexpr_test() {
76 %X = alloca i32
77 %Y = load i32* %X
78 store i32 5, i32* getelementptr ({ i32 }* @Global, i64 0, i32 0)
79 %REMOVE = load i32* %X
80 %retval = sub i32 %Y, %REMOVE
81 ret i32 %retval
Dan Gohmanf17a25c2007-07-18 16:29:46 +000082}