[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / Transforms / Attributor / ArgumentPromotion / aggregate-promote.ll
blob16dbba7b29af16588908088931f59f7186ff3799
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=1 -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=1 -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 %T = type { i32, i32, i32, i32 }
8 @G = constant %T { i32 0, i32 0, i32 17, i32 25 }
11 ; CHECK: @[[G:[a-zA-Z0-9_$"\\.-]+]] = constant [[T:%.*]] { i32 0, i32 0, i32 17, i32 25 }
13 define internal i32 @test(%T* %p) {
14 ; IS__CGSCC____: Function Attrs: nofree norecurse nosync nounwind readnone willreturn
15 ; IS__CGSCC____-LABEL: define {{[^@]+}}@test
16 ; IS__CGSCC____-SAME: () #[[ATTR0:[0-9]+]] {
17 ; IS__CGSCC____-NEXT:  entry:
18 ; IS__CGSCC____-NEXT:    ret i32 undef
20 entry:
21   %a.gep = getelementptr %T, %T* %p, i64 0, i32 3
22   %b.gep = getelementptr %T, %T* %p, i64 0, i32 2
23   %a = load i32, i32* %a.gep
24   %b = load i32, i32* %b.gep
25   %v = add i32 %a, %b
26   ret i32 %v
29 define i32 @caller() {
30 ; IS__TUNIT____: Function Attrs: nofree nosync nounwind readnone willreturn
31 ; IS__TUNIT____-LABEL: define {{[^@]+}}@caller
32 ; IS__TUNIT____-SAME: () #[[ATTR0:[0-9]+]] {
33 ; IS__TUNIT____-NEXT:  entry:
34 ; IS__TUNIT____-NEXT:    ret i32 42
36 ; IS__CGSCC____: Function Attrs: nofree norecurse nosync nounwind readnone willreturn
37 ; IS__CGSCC____-LABEL: define {{[^@]+}}@caller
38 ; IS__CGSCC____-SAME: () #[[ATTR0]] {
39 ; IS__CGSCC____-NEXT:  entry:
40 ; IS__CGSCC____-NEXT:    ret i32 42
42 entry:
43   %v = call i32 @test(%T* @G)
44   ret i32 %v
47 ; IS__TUNIT____: attributes #[[ATTR0]] = { nofree nosync nounwind readnone willreturn }
49 ; IS__CGSCC____: attributes #[[ATTR0]] = { nofree norecurse nosync nounwind readnone willreturn }