Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / Transforms / Attributor / ArgumentPromotion / live_called_from_dead.ll
blob1c34fff8dd7554d0fecd26030fc0ef7dc68cb55f
1 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py UTC_ARGS: --function-signature --check-attributes --check-globals
2 ; RUN: opt -aa-pipeline=basic-aa -passes=attributor -attributor-manifest-internal  -attributor-annotate-decl-cs  -S < %s | FileCheck %s --check-prefixes=CHECK,TUNIT
3 ; RUN: opt -aa-pipeline=basic-aa -passes=attributor-cgscc -attributor-manifest-internal  -attributor-annotate-decl-cs -S < %s | FileCheck %s --check-prefixes=CHECK,CGSCC
6 define internal void @dead() {
7 ; CGSCC-LABEL: define {{[^@]+}}@dead() {
8 ; CGSCC-NEXT:    [[TMP1:%.*]] = call i32 @test()
9 ; CGSCC-NEXT:    ret void
11   call i32 @test(ptr null, ptr null)
12   ret void
15 define internal i32 @test(ptr %X, ptr %Y) {
16 ; CGSCC: Function Attrs: mustprogress nofree norecurse nosync nounwind willreturn memory(none)
17 ; CGSCC-LABEL: define {{[^@]+}}@test
18 ; CGSCC-SAME: () #[[ATTR0:[0-9]+]] {
19 ; CGSCC-NEXT:    br i1 true, label [[LIVE:%.*]], label [[DEAD:%.*]]
20 ; CGSCC:       live:
21 ; CGSCC-NEXT:    ret i32 undef
22 ; CGSCC:       dead:
23 ; CGSCC-NEXT:    unreachable
25   br i1 true, label %live, label %dead
26 live:
27   store i32 0, ptr %X
28   ret i32 0
29 dead:
30   call i32 @caller(ptr null)
31   call void @dead()
32   ret i32 1
35 define internal i32 @caller(ptr %B) {
36 ; CGSCC: Function Attrs: mustprogress nofree norecurse nosync nounwind willreturn memory(none)
37 ; CGSCC-LABEL: define {{[^@]+}}@caller
38 ; CGSCC-SAME: () #[[ATTR0]] {
39 ; CGSCC-NEXT:    [[A:%.*]] = alloca i32, align 4
40 ; CGSCC-NEXT:    [[A1:%.*]] = alloca i8, i32 0, align 4
41 ; CGSCC-NEXT:    ret i32 0
43   %A = alloca i32
44   store i32 1, ptr %A
45   %C = call i32 @test(ptr %A, ptr %B)
46   ret i32 %C
49 define i32 @callercaller() {
50 ; TUNIT: Function Attrs: mustprogress nofree norecurse nosync nounwind willreturn memory(none)
51 ; TUNIT-LABEL: define {{[^@]+}}@callercaller
52 ; TUNIT-SAME: () #[[ATTR0:[0-9]+]] {
53 ; TUNIT-NEXT:    [[B:%.*]] = alloca i32, align 4
54 ; TUNIT-NEXT:    ret i32 0
56 ; CGSCC: Function Attrs: mustprogress nofree nosync nounwind willreturn memory(none)
57 ; CGSCC-LABEL: define {{[^@]+}}@callercaller
58 ; CGSCC-SAME: () #[[ATTR1:[0-9]+]] {
59 ; CGSCC-NEXT:    [[B:%.*]] = alloca i32, align 4
60 ; CGSCC-NEXT:    [[X:%.*]] = call noundef i32 @caller() #[[ATTR2:[0-9]+]]
61 ; CGSCC-NEXT:    ret i32 [[X]]
63   %B = alloca i32
64   store i32 2, ptr %B
65   %X = call i32 @caller(ptr %B)
66   ret i32 %X
70 ; TUNIT: attributes #[[ATTR0]] = { mustprogress nofree norecurse nosync nounwind willreturn memory(none) }
72 ; CGSCC: attributes #[[ATTR0]] = { mustprogress nofree norecurse nosync nounwind willreturn memory(none) }
73 ; CGSCC: attributes #[[ATTR1]] = { mustprogress nofree nosync nounwind willreturn memory(none) }
74 ; CGSCC: attributes #[[ATTR2]] = { nofree nosync willreturn }
76 ;; NOTE: These prefixes are unused and the list is autogenerated. Do not add tests below this line:
77 ; CHECK: {{.*}}