Re-land [openmp] Fix warnings when building on Windows with latest MSVC or Clang...
[llvm-project.git] / llvm / test / Transforms / Attributor / ArgumentPromotion / byval-2.ll
blobb76254f6609046f1799a5d466c430df3a4151736
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
5 %struct.ss = type { i32, i64 }
7 define internal void @f(ptr byval(%struct.ss)  %b, ptr byval(i32) %X) nounwind  {
8 ; CHECK: Function Attrs: mustprogress nofree norecurse nosync nounwind willreturn memory(none)
9 ; CHECK-LABEL: define {{[^@]+}}@f
10 ; CHECK-SAME: (i32 [[TMP0:%.*]], i64 [[TMP1:%.*]], i32 [[TMP2:%.*]]) #[[ATTR0:[0-9]+]] {
11 ; CHECK-NEXT:  entry:
12 ; CHECK-NEXT:    [[X_PRIV:%.*]] = alloca i32, align 4
13 ; CHECK-NEXT:    store i32 [[TMP2]], ptr [[X_PRIV]], align 4
14 ; CHECK-NEXT:    [[B_PRIV:%.*]] = alloca [[STRUCT_SS:%.*]], align 8
15 ; CHECK-NEXT:    store i32 [[TMP0]], ptr [[B_PRIV]], align 4
16 ; CHECK-NEXT:    [[B_PRIV_B4:%.*]] = getelementptr i8, ptr [[B_PRIV]], i64 4
17 ; CHECK-NEXT:    store i64 [[TMP1]], ptr [[B_PRIV_B4]], align 4
18 ; CHECK-NEXT:    [[TMP1:%.*]] = load i32, ptr [[B_PRIV]], align 8
19 ; CHECK-NEXT:    [[TMP2:%.*]] = add i32 [[TMP1]], 1
20 ; CHECK-NEXT:    store i32 [[TMP2]], ptr [[B_PRIV]], align 8
21 ; CHECK-NEXT:    store i32 0, ptr [[X_PRIV]], align 4
22 ; CHECK-NEXT:    ret void
24 entry:
25   %tmp1 = load i32, ptr %b, align 4
26   %tmp2 = add i32 %tmp1, 1
27   store i32 %tmp2, ptr %b, align 4
29   store i32 0, ptr %X
30   ret void
33 define i32 @test(ptr %X) {
35 ; TUNIT: Function Attrs: mustprogress nofree norecurse nosync nounwind willreturn memory(argmem: readwrite)
36 ; TUNIT-LABEL: define {{[^@]+}}@test
37 ; TUNIT-SAME: (ptr nocapture nofree nonnull readonly [[X:%.*]]) #[[ATTR1:[0-9]+]] {
38 ; TUNIT-NEXT:  entry:
39 ; TUNIT-NEXT:    [[S:%.*]] = alloca [[STRUCT_SS:%.*]], align 8
40 ; TUNIT-NEXT:    store i32 1, ptr [[S]], align 8
41 ; TUNIT-NEXT:    [[TMP4:%.*]] = getelementptr [[STRUCT_SS]], ptr [[S]], i32 0, i32 1
42 ; TUNIT-NEXT:    [[TMP0:%.*]] = load i32, ptr [[S]], align 8
43 ; TUNIT-NEXT:    [[S_B4:%.*]] = getelementptr i8, ptr [[S]], i64 4
44 ; TUNIT-NEXT:    [[TMP1:%.*]] = load i64, ptr [[S_B4]], align 8
45 ; TUNIT-NEXT:    [[TMP2:%.*]] = load i32, ptr [[X]], align 4
46 ; TUNIT-NEXT:    call void @f(i32 [[TMP0]], i64 [[TMP1]], i32 [[TMP2]]) #[[ATTR2:[0-9]+]]
47 ; TUNIT-NEXT:    ret i32 0
49 ; CGSCC: Function Attrs: mustprogress nofree nosync nounwind willreturn memory(argmem: readwrite)
50 ; CGSCC-LABEL: define {{[^@]+}}@test
51 ; CGSCC-SAME: (ptr nocapture nofree noundef nonnull readonly align 4 dereferenceable(4) [[X:%.*]]) #[[ATTR1:[0-9]+]] {
52 ; CGSCC-NEXT:  entry:
53 ; CGSCC-NEXT:    [[S:%.*]] = alloca [[STRUCT_SS:%.*]], align 8
54 ; CGSCC-NEXT:    [[TMP4:%.*]] = getelementptr [[STRUCT_SS]], ptr [[S]], i32 0, i32 1
55 ; CGSCC-NEXT:    ret i32 0
57 entry:
58   %S = alloca %struct.ss
59   store i32 1, ptr %S, align 8
60   %tmp4 = getelementptr %struct.ss, ptr %S, i32 0, i32 1
61   store i64 2, ptr %tmp4, align 4
62   call void @f(ptr byval(%struct.ss) %S, ptr byval(i32) %X)
63   ret i32 0
66 ; TUNIT: attributes #[[ATTR0]] = { mustprogress nofree norecurse nosync nounwind willreturn memory(none) }
67 ; TUNIT: attributes #[[ATTR1]] = { mustprogress nofree norecurse nosync nounwind willreturn memory(argmem: readwrite) }
68 ; TUNIT: attributes #[[ATTR2]] = { nofree nosync nounwind willreturn }
70 ; CGSCC: attributes #[[ATTR0]] = { mustprogress nofree norecurse nosync nounwind willreturn memory(none) }
71 ; CGSCC: attributes #[[ATTR1]] = { mustprogress nofree nosync nounwind willreturn memory(argmem: readwrite) }