[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / Transforms / Attributor / ArgumentPromotion / inalloca.ll
blobdef445504fa07a0d08a7211dc23aed505446a325
1 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py UTC_ARGS: --function-signature --check-attributes --check-globals
2 ; RUN: opt -attributor -enable-new-pm=0 -attributor-manifest-internal  -attributor-max-iterations-verify -attributor-annotate-decl-cs -attributor-max-iterations=5 -S < %s | FileCheck %s --check-prefixes=CHECK,NOT_CGSCC_NPM,NOT_CGSCC_OPM,NOT_TUNIT_NPM,IS__TUNIT____,IS________OPM,IS__TUNIT_OPM
3 ; RUN: opt -aa-pipeline=basic-aa -passes=attributor -attributor-manifest-internal  -attributor-max-iterations-verify -attributor-annotate-decl-cs -attributor-max-iterations=5 -S < %s | FileCheck %s --check-prefixes=CHECK,NOT_CGSCC_OPM,NOT_CGSCC_NPM,NOT_TUNIT_OPM,IS__TUNIT____,IS________NPM,IS__TUNIT_NPM
4 ; RUN: opt -attributor-cgscc -enable-new-pm=0 -attributor-manifest-internal  -attributor-annotate-decl-cs -S < %s | FileCheck %s --check-prefixes=CHECK,NOT_TUNIT_NPM,NOT_TUNIT_OPM,NOT_CGSCC_NPM,IS__CGSCC____,IS________OPM,IS__CGSCC_OPM
5 ; RUN: opt -aa-pipeline=basic-aa -passes=attributor-cgscc -attributor-manifest-internal  -attributor-annotate-decl-cs -S < %s | FileCheck %s --check-prefixes=CHECK,NOT_TUNIT_NPM,NOT_TUNIT_OPM,NOT_CGSCC_OPM,IS__CGSCC____,IS________NPM,IS__CGSCC_NPM
7 target datalayout = "E-p:64:64:64-a0:0:8-f32:32:32-f64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-v64:64:64-v128:128:128"
9 %struct.ss = type { i32, i32 }
11 ; Argpromote + sroa should change this to passing the two integers by value.
12 define internal i32 @f(%struct.ss* inalloca(%struct.ss) %s) {
13 ; IS__TUNIT____: Function Attrs: argmemonly nofree nosync nounwind readonly willreturn
14 ; IS__TUNIT____-LABEL: define {{[^@]+}}@f
15 ; IS__TUNIT____-SAME: (%struct.ss* noalias nocapture nofree noundef nonnull inalloca([[STRUCT_SS:%.*]]) align 4 dereferenceable(8) [[S:%.*]]) #[[ATTR0:[0-9]+]] {
16 ; IS__TUNIT____-NEXT:  entry:
17 ; IS__TUNIT____-NEXT:    [[F0:%.*]] = getelementptr [[STRUCT_SS]], %struct.ss* [[S]], i32 0, i32 0
18 ; IS__TUNIT____-NEXT:    [[F1:%.*]] = getelementptr [[STRUCT_SS]], %struct.ss* [[S]], i32 0, i32 1
19 ; IS__TUNIT____-NEXT:    [[A:%.*]] = load i32, i32* [[F0]], align 4
20 ; IS__TUNIT____-NEXT:    [[B:%.*]] = load i32, i32* [[F1]], align 4
21 ; IS__TUNIT____-NEXT:    [[R:%.*]] = add i32 [[A]], [[B]]
22 ; IS__TUNIT____-NEXT:    ret i32 [[R]]
24 ; IS__CGSCC____: Function Attrs: argmemonly nofree norecurse nosync nounwind readonly willreturn
25 ; IS__CGSCC____-LABEL: define {{[^@]+}}@f
26 ; IS__CGSCC____-SAME: (%struct.ss* noalias nocapture nofree noundef nonnull inalloca([[STRUCT_SS:%.*]]) align 4 dereferenceable(8) [[S:%.*]]) #[[ATTR0:[0-9]+]] {
27 ; IS__CGSCC____-NEXT:  entry:
28 ; IS__CGSCC____-NEXT:    [[F0:%.*]] = getelementptr [[STRUCT_SS]], %struct.ss* [[S]], i32 0, i32 0
29 ; IS__CGSCC____-NEXT:    [[F1:%.*]] = getelementptr [[STRUCT_SS]], %struct.ss* [[S]], i32 0, i32 1
30 ; IS__CGSCC____-NEXT:    [[A:%.*]] = load i32, i32* [[F0]], align 4
31 ; IS__CGSCC____-NEXT:    [[B:%.*]] = load i32, i32* [[F1]], align 4
32 ; IS__CGSCC____-NEXT:    [[R:%.*]] = add i32 [[A]], [[B]]
33 ; IS__CGSCC____-NEXT:    ret i32 [[R]]
35 entry:
36   %f0 = getelementptr %struct.ss, %struct.ss* %s, i32 0, i32 0
37   %f1 = getelementptr %struct.ss, %struct.ss* %s, i32 0, i32 1
38   %a = load i32, i32* %f0, align 4
39   %b = load i32, i32* %f1, align 4
40   %r = add i32 %a, %b
41   ret i32 %r
44 define i32 @main() {
45 ; IS__TUNIT____: Function Attrs: nofree nosync nounwind readnone willreturn
46 ; IS__TUNIT____-LABEL: define {{[^@]+}}@main
47 ; IS__TUNIT____-SAME: () #[[ATTR1:[0-9]+]] {
48 ; IS__TUNIT____-NEXT:  entry:
49 ; IS__TUNIT____-NEXT:    [[S:%.*]] = alloca inalloca [[STRUCT_SS:%.*]], align 4
50 ; IS__TUNIT____-NEXT:    [[F0:%.*]] = getelementptr [[STRUCT_SS]], %struct.ss* [[S]], i32 0, i32 0
51 ; IS__TUNIT____-NEXT:    [[F1:%.*]] = getelementptr [[STRUCT_SS]], %struct.ss* [[S]], i32 0, i32 1
52 ; IS__TUNIT____-NEXT:    store i32 1, i32* [[F0]], align 4
53 ; IS__TUNIT____-NEXT:    store i32 2, i32* [[F1]], align 4
54 ; IS__TUNIT____-NEXT:    [[R:%.*]] = call i32 @f(%struct.ss* noalias nocapture nofree noundef nonnull inalloca([[STRUCT_SS]]) align 4 dereferenceable(8) [[S]]) #[[ATTR2:[0-9]+]]
55 ; IS__TUNIT____-NEXT:    ret i32 [[R]]
57 ; IS__CGSCC____: Function Attrs: nofree norecurse nosync nounwind readnone willreturn
58 ; IS__CGSCC____-LABEL: define {{[^@]+}}@main
59 ; IS__CGSCC____-SAME: () #[[ATTR1:[0-9]+]] {
60 ; IS__CGSCC____-NEXT:  entry:
61 ; IS__CGSCC____-NEXT:    [[S:%.*]] = alloca inalloca [[STRUCT_SS:%.*]], align 4
62 ; IS__CGSCC____-NEXT:    [[F0:%.*]] = getelementptr [[STRUCT_SS]], %struct.ss* [[S]], i32 0, i32 0
63 ; IS__CGSCC____-NEXT:    [[F1:%.*]] = getelementptr [[STRUCT_SS]], %struct.ss* [[S]], i32 0, i32 1
64 ; IS__CGSCC____-NEXT:    store i32 1, i32* [[F0]], align 4
65 ; IS__CGSCC____-NEXT:    store i32 2, i32* [[F1]], align 4
66 ; IS__CGSCC____-NEXT:    [[R:%.*]] = call i32 @f(%struct.ss* noalias nocapture nofree noundef nonnull inalloca([[STRUCT_SS]]) align 4 dereferenceable(8) [[S]]) #[[ATTR2:[0-9]+]]
67 ; IS__CGSCC____-NEXT:    ret i32 [[R]]
69 entry:
70   %S = alloca inalloca %struct.ss
71   %f0 = getelementptr %struct.ss, %struct.ss* %S, i32 0, i32 0
72   %f1 = getelementptr %struct.ss, %struct.ss* %S, i32 0, i32 1
73   store i32 1, i32* %f0, align 4
74   store i32 2, i32* %f1, align 4
75   %r = call i32 @f(%struct.ss* inalloca(%struct.ss) %S)
76   ret i32 %r
79 ; Argpromote can't promote %a because of the icmp use.
80 define internal i1 @g(%struct.ss* %a, %struct.ss* inalloca(%struct.ss) %b) nounwind  {
81 ; IS__CGSCC____: Function Attrs: nofree norecurse nosync nounwind readnone willreturn
82 ; IS__CGSCC____-LABEL: define {{[^@]+}}@g
83 ; IS__CGSCC____-SAME: (%struct.ss* noalias nocapture nofree nonnull readnone align 4 dereferenceable(8) [[A:%.*]], %struct.ss* noalias nocapture nofree nonnull writeonly inalloca([[STRUCT_SS:%.*]]) align 4 dereferenceable(8) [[B:%.*]]) #[[ATTR1]] {
84 ; IS__CGSCC____-NEXT:  entry:
85 ; IS__CGSCC____-NEXT:    ret i1 undef
87 entry:
88   %c = icmp eq %struct.ss* %a, %b
89   ret i1 %c
92 define i32 @test() {
93 ; IS__TUNIT____: Function Attrs: nofree nosync nounwind readnone willreturn
94 ; IS__TUNIT____-LABEL: define {{[^@]+}}@test
95 ; IS__TUNIT____-SAME: () #[[ATTR1]] {
96 ; IS__TUNIT____-NEXT:  entry:
97 ; IS__TUNIT____-NEXT:    ret i32 0
99 ; IS__CGSCC____: Function Attrs: nofree norecurse nosync nounwind readnone willreturn
100 ; IS__CGSCC____-LABEL: define {{[^@]+}}@test
101 ; IS__CGSCC____-SAME: () #[[ATTR1]] {
102 ; IS__CGSCC____-NEXT:  entry:
103 ; IS__CGSCC____-NEXT:    ret i32 0
105 entry:
106   %S = alloca inalloca %struct.ss
107   %c = call i1 @g(%struct.ss* %S, %struct.ss* inalloca(%struct.ss) %S)
108   ret i32 0
111 ; IS__TUNIT____: attributes #[[ATTR0]] = { argmemonly nofree nosync nounwind readonly willreturn }
112 ; IS__TUNIT____: attributes #[[ATTR1]] = { nofree nosync nounwind readnone willreturn }
113 ; IS__TUNIT____: attributes #[[ATTR2]] = { nofree nosync nounwind readonly willreturn }
115 ; IS__CGSCC____: attributes #[[ATTR0]] = { argmemonly nofree norecurse nosync nounwind readonly willreturn }
116 ; IS__CGSCC____: attributes #[[ATTR1]] = { nofree norecurse nosync nounwind readnone willreturn }
117 ; IS__CGSCC____: attributes #[[ATTR2]] = { nounwind readonly willreturn }