Re-land [openmp] Fix warnings when building on Windows with latest MSVC or Clang...
[llvm-project.git] / llvm / test / Analysis / TypeBasedAliasAnalysis / aliastest.ll
blobe73744184b9c007e6c5d767d0a2b331460200e4a
1 ; RUN: opt < %s -aa-pipeline=tbaa,basic-aa -passes=gvn -S | FileCheck %s
3 ; Test that basic alias queries work.
5 ; CHECK: @test0_yes
6 ; CHECK: add i8 %x, %x
7 define i8 @test0_yes(ptr %a, ptr %b) nounwind {
8   %x = load i8, ptr %a, !tbaa !1
9   store i8 0, ptr %b, !tbaa !2
10   %y = load i8, ptr %a, !tbaa !1
11   %z = add i8 %x, %y
12   ret i8 %z
15 ; CHECK: @test0_no
16 ; CHECK: add i8 %x, %y
17 define i8 @test0_no(ptr %a, ptr %b) nounwind {
18   %x = load i8, ptr %a, !tbaa !3
19   store i8 0, ptr %b, !tbaa !4
20   %y = load i8, ptr %a, !tbaa !3
21   %z = add i8 %x, %y
22   ret i8 %z
25 ; Test that basic invariant-memory queries work.
27 ; CHECK: @test1_yes
28 ; CHECK: add i8 %x, %x
29 define i8 @test1_yes(ptr %a, ptr %b) nounwind {
30   %x = load i8, ptr %a, !tbaa !5
31   store i8 0, ptr %b
32   %y = load i8, ptr %a, !tbaa !5
33   %z = add i8 %x, %y
34   ret i8 %z
37 ; CHECK: @test1_no
38 ; CHECK: add i8 %x, %y
39 define i8 @test1_no(ptr %a, ptr %b) nounwind {
40   %x = load i8, ptr %a, !tbaa !6
41   store i8 0, ptr %b
42   %y = load i8, ptr %a, !tbaa !6
43   %z = add i8 %x, %y
44   ret i8 %z
47 ; Root note.
48 !0 = !{ }
49 ; Some type.
50 !1 = !{!7, !7, i64 0}
51 ; Some other non-aliasing type.
52 !2 = !{!8, !8, i64 0}
54 ; Some type.
55 !3 = !{!9, !9, i64 0}
56 ; Some type in a different type system.
57 !4 = !{!10, !10, i64 0}
59 ; Invariant memory.
60 !5 = !{!11, !11, i64 0, i1 1}
61 ; Not invariant memory.
62 !6 = !{!11, !11, i64 0, i1 0}
63 !7 = !{ !"foo", !0 }
64 !8 = !{ !"bar", !0 }
65 !9 = !{ !"foo", !0 }
66 !10 = !{ !"bar", !12 }
67 !11 = !{ !"qux", !0}
68 !12 = !{!"different"}