[sanitizer] Improve FreeBSD ASLR detection
[llvm-project.git] / llvm / test / Transforms / ArgumentPromotion / crash.ll
blobd55f4624e0c34c4b973dee748ce935fec95a6128
1 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py UTC_ARGS: --function-signature --scrub-attributes
2 ; RUN: opt -S < %s -inline -argpromotion | FileCheck %s --check-prefix=ARGPROMOTION
3 ; RUN: opt -S < %s -passes=inline,argpromotion | FileCheck %s --check-prefixes=ARGPROMOTION,ALL_NEWPM
5 %S = type { %S* }
7 ; Inlining should nuke the invoke (and any inlined calls) here even with
8 ; argument promotion running along with it.
9 define void @zot() personality i32 (...)* @wibble {
10 ; ARGPROMOTION-LABEL: define {{[^@]+}}@zot() personality i32 (...)* @wibble
11 ; ARGPROMOTION-NEXT:  bb:
12 ; ARGPROMOTION-NEXT:    unreachable
13 ; ARGPROMOTION:       hoge.exit:
14 ; ARGPROMOTION-NEXT:    br label [[BB1:%.*]]
15 ; ARGPROMOTION:       bb1:
16 ; ARGPROMOTION-NEXT:    unreachable
17 ; ARGPROMOTION:       bb2:
18 ; ARGPROMOTION-NEXT:    [[TMP:%.*]] = landingpad { i8*, i32 }
19 ; ARGPROMOTION-NEXT:    cleanup
20 ; ARGPROMOTION-NEXT:    unreachable
22 bb:
23   invoke void @hoge()
24   to label %bb1 unwind label %bb2
26 bb1:
27   unreachable
29 bb2:
30   %tmp = landingpad { i8*, i32 }
31   cleanup
32   unreachable
35 define internal void @hoge() {
36 bb:
37   %tmp = call fastcc i8* @spam(i1 (i8*)* @eggs)
38   %tmp1 = call fastcc i8* @spam(i1 (i8*)* @barney)
39   unreachable
42 define internal fastcc i8* @spam(i1 (i8*)* %arg) {
43 bb:
44   unreachable
47 define internal i1 @eggs(i8* %arg) {
48 ; ALL_NEWPM-LABEL: define {{[^@]+}}@eggs()
49 ; ALL_NEWPM-NEXT:  bb:
50 ; ALL_NEWPM-NEXT:    unreachable
52 bb:
53   %tmp = call zeroext i1 @barney(i8* %arg)
54   unreachable
57 define internal i1 @barney(i8* %arg) {
58 bb:
59   ret i1 undef
62 define i32 @test_inf_promote_caller(i32 %arg) {
63 ; ARGPROMOTION-LABEL: define {{[^@]+}}@test_inf_promote_caller
64 ; ARGPROMOTION-SAME: (i32 [[ARG:%.*]])
65 ; ARGPROMOTION-NEXT:  bb:
66 ; ARGPROMOTION-NEXT:    [[TMP:%.*]] = alloca [[S:%.*]]
67 ; ARGPROMOTION-NEXT:    [[TMP1:%.*]] = alloca [[S]]
68 ; ARGPROMOTION-NEXT:    [[TMP2:%.*]] = call i32 @test_inf_promote_callee(%S* [[TMP]], %S* [[TMP1]])
69 ; ARGPROMOTION-NEXT:    ret i32 0
71 bb:
72   %tmp = alloca %S
73   %tmp1 = alloca %S
74   %tmp2 = call i32 @test_inf_promote_callee(%S* %tmp, %S* %tmp1)
76   ret i32 0
79 define internal i32 @test_inf_promote_callee(%S* %arg, %S* %arg1) {
80 ; ARGPROMOTION-LABEL: define {{[^@]+}}@test_inf_promote_callee
81 ; ARGPROMOTION-SAME: (%S* [[ARG:%.*]], %S* [[ARG1:%.*]])
82 ; ARGPROMOTION-NEXT:  bb:
83 ; ARGPROMOTION-NEXT:    [[TMP:%.*]] = getelementptr [[S:%.*]], %S* [[ARG1]], i32 0, i32 0
84 ; ARGPROMOTION-NEXT:    [[TMP2:%.*]] = load %S*, %S** [[TMP]]
85 ; ARGPROMOTION-NEXT:    [[TMP3:%.*]] = getelementptr [[S]], %S* [[ARG]], i32 0, i32 0
86 ; ARGPROMOTION-NEXT:    [[TMP4:%.*]] = load %S*, %S** [[TMP3]]
87 ; ARGPROMOTION-NEXT:    [[TMP5:%.*]] = call i32 @test_inf_promote_callee(%S* [[TMP4]], %S* [[TMP2]])
88 ; ARGPROMOTION-NEXT:    ret i32 0
90 bb:
91   %tmp = getelementptr %S, %S* %arg1, i32 0, i32 0
92   %tmp2 = load %S*, %S** %tmp
93   %tmp3 = getelementptr %S, %S* %arg, i32 0, i32 0
94   %tmp4 = load %S*, %S** %tmp3
95   %tmp5 = call i32 @test_inf_promote_callee(%S* %tmp4, %S* %tmp2)
97   ret i32 0
100 declare i32 @wibble(...)