[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / llvm / test / Transforms / Attributor / ArgumentPromotion / tail.ll
blob71a6e39e71668bbe39acfd8947f0e89714a92490
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
4 ; PR14710
6 target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
8 %pair = type { i32, i32 }
10 declare ptr @foo(ptr)
12 define internal void @bar(ptr byval(%pair) %Data) {
13 ; TUNIT: Function Attrs: memory(readwrite, argmem: none)
14 ; TUNIT-LABEL: define {{[^@]+}}@bar
15 ; TUNIT-SAME: (i32 [[TMP0:%.*]], i32 [[TMP1:%.*]]) #[[ATTR0:[0-9]+]] {
16 ; TUNIT-NEXT:    [[DATA_PRIV:%.*]] = alloca [[PAIR:%.*]], align 8
17 ; TUNIT-NEXT:    store i32 [[TMP0]], ptr [[DATA_PRIV]], align 4
18 ; TUNIT-NEXT:    [[DATA_PRIV_0_1:%.*]] = getelementptr [[PAIR]], ptr [[DATA_PRIV]], i64 0, i32 1
19 ; TUNIT-NEXT:    store i32 [[TMP1]], ptr [[DATA_PRIV_0_1]], align 4
20 ; TUNIT-NEXT:    [[TMP3:%.*]] = call ptr @foo(ptr nonnull dereferenceable(8) [[DATA_PRIV]])
21 ; TUNIT-NEXT:    ret void
23 ; CGSCC: Function Attrs: memory(readwrite, argmem: none)
24 ; CGSCC-LABEL: define {{[^@]+}}@bar
25 ; CGSCC-SAME: (i32 [[TMP0:%.*]], i32 [[TMP1:%.*]]) #[[ATTR0:[0-9]+]] {
26 ; CGSCC-NEXT:    [[DATA_PRIV:%.*]] = alloca [[PAIR:%.*]], align 8
27 ; CGSCC-NEXT:    store i32 [[TMP0]], ptr [[DATA_PRIV]], align 4
28 ; CGSCC-NEXT:    [[DATA_PRIV_0_1:%.*]] = getelementptr [[PAIR]], ptr [[DATA_PRIV]], i64 0, i32 1
29 ; CGSCC-NEXT:    store i32 [[TMP1]], ptr [[DATA_PRIV_0_1]], align 4
30 ; CGSCC-NEXT:    [[TMP3:%.*]] = call ptr @foo(ptr noundef nonnull dereferenceable(8) [[DATA_PRIV]])
31 ; CGSCC-NEXT:    ret void
33   tail call ptr @foo(ptr %Data)
34   ret void
37 define void @zed(ptr byval(%pair) %Data) {
38 ; TUNIT-LABEL: define {{[^@]+}}@zed
39 ; TUNIT-SAME: (ptr noalias nocapture nonnull readonly byval([[PAIR:%.*]]) dereferenceable(8) [[DATA:%.*]]) {
40 ; TUNIT-NEXT:    [[TMP1:%.*]] = load i32, ptr [[DATA]], align 1
41 ; TUNIT-NEXT:    [[DATA_0_1:%.*]] = getelementptr [[PAIR]], ptr [[DATA]], i64 0, i32 1
42 ; TUNIT-NEXT:    [[TMP2:%.*]] = load i32, ptr [[DATA_0_1]], align 1
43 ; TUNIT-NEXT:    call void @bar(i32 [[TMP1]], i32 [[TMP2]])
44 ; TUNIT-NEXT:    ret void
46 ; CGSCC-LABEL: define {{[^@]+}}@zed
47 ; CGSCC-SAME: (ptr noalias nocapture nofree noundef nonnull readonly byval([[PAIR:%.*]]) dereferenceable(8) [[DATA:%.*]]) {
48 ; CGSCC-NEXT:    [[TMP1:%.*]] = load i32, ptr [[DATA]], align 1
49 ; CGSCC-NEXT:    [[DATA_0_1:%.*]] = getelementptr [[PAIR]], ptr [[DATA]], i64 0, i32 1
50 ; CGSCC-NEXT:    [[TMP2:%.*]] = load i32, ptr [[DATA_0_1]], align 1
51 ; CGSCC-NEXT:    call void @bar(i32 [[TMP1]], i32 [[TMP2]])
52 ; CGSCC-NEXT:    ret void
54   call void @bar(ptr byval(%pair) %Data)
55   ret void
58 ; CHECK: attributes #[[ATTR0:[0-9]+]] = { memory(readwrite, argmem: none) }
60 ;; NOTE: These prefixes are unused and the list is autogenerated. Do not add tests below this line:
61 ; CHECK: {{.*}}