[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / llvm / test / Transforms / Attributor / ArgumentPromotion / X86 / thiscall.ll
blob46fdcdd5172539995a3f98873454134ebf215ff9
1 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py UTC_ARGS: --function-signature --check-attributes --check-globals
2 ; In PR41658, argpromotion put an inalloca in a position that per the
3 ; calling convention is passed in a register. This test verifies that
4 ; we don't do that anymore. It also verifies that the combination of
5 ; globalopt and argpromotion is able to optimize the call safely.
7 ; RUN: opt -aa-pipeline=basic-aa -passes=attributor -attributor-manifest-internal  -attributor-annotate-decl-cs  -S < %s | FileCheck %s --check-prefixes=CHECK,TUNIT
8 ; RUN: opt -aa-pipeline=basic-aa -passes=attributor-cgscc -attributor-manifest-internal  -attributor-annotate-decl-cs -S < %s | FileCheck %s --check-prefixes=CHECK,CGSCC
10 target datalayout = "e-m:x-p:32:32-i64:64-f80:32-n8:16:32-a:0:32-S32"
11 target triple = "i386-pc-windows-msvc19.11.0"
13 %struct.a = type { i8 }
15 define internal x86_thiscallcc void @internalfun(ptr %this, ptr inalloca(<{ %struct.a }>)) {
16 ; CHECK-LABEL: define {{[^@]+}}@internalfun
17 ; CHECK-SAME: (ptr noalias nocapture nofree readnone [[THIS:%.*]], ptr noundef nonnull inalloca(<{ [[STRUCT_A:%.*]] }>) align 4 dereferenceable(1) [[TMP0:%.*]]) {
18 ; CHECK-NEXT:  entry:
19 ; CHECK-NEXT:    [[ARGMEM:%.*]] = alloca inalloca <{ [[STRUCT_A]] }>, align 4
20 ; CHECK-NEXT:    [[CALL:%.*]] = call x86_thiscallcc ptr @copy_ctor(ptr noundef nonnull align 4 dereferenceable(1) [[ARGMEM]], ptr noundef nonnull align 4 dereferenceable(1) [[TMP0]])
21 ; CHECK-NEXT:    call void @ext(ptr noundef nonnull inalloca(<{ [[STRUCT_A]] }>) align 4 dereferenceable(1) [[ARGMEM]])
22 ; CHECK-NEXT:    ret void
24 entry:
25   %argmem = alloca inalloca <{ %struct.a }>, align 4
26   %call = call x86_thiscallcc ptr @copy_ctor(ptr %argmem, ptr dereferenceable(1) %0)
27   call void @ext(ptr inalloca(<{ %struct.a }>) %argmem)
28   ret void
31 ; This is here to ensure @internalfun is live.
32 define void @exportedfun(ptr %a) {
33 ; TUNIT-LABEL: define {{[^@]+}}@exportedfun
34 ; TUNIT-SAME: (ptr nocapture nofree readnone [[A:%.*]]) {
35 ; TUNIT-NEXT:    [[INALLOCA_SAVE:%.*]] = tail call ptr @llvm.stacksave.p0() #[[ATTR1:[0-9]+]]
36 ; TUNIT-NEXT:    [[ARGMEM:%.*]] = alloca inalloca <{ [[STRUCT_A:%.*]] }>, align 4
37 ; TUNIT-NEXT:    call x86_thiscallcc void @internalfun(ptr noalias nocapture nofree readnone undef, ptr noundef nonnull inalloca(<{ [[STRUCT_A]] }>) align 4 dereferenceable(1) [[ARGMEM]])
38 ; TUNIT-NEXT:    call void @llvm.stackrestore.p0(ptr nofree [[INALLOCA_SAVE]])
39 ; TUNIT-NEXT:    ret void
41 ; CGSCC-LABEL: define {{[^@]+}}@exportedfun
42 ; CGSCC-SAME: (ptr nocapture nofree readnone [[A:%.*]]) {
43 ; CGSCC-NEXT:    [[INALLOCA_SAVE:%.*]] = tail call ptr @llvm.stacksave.p0() #[[ATTR1:[0-9]+]]
44 ; CGSCC-NEXT:    [[ARGMEM:%.*]] = alloca inalloca <{ [[STRUCT_A:%.*]] }>, align 4
45 ; CGSCC-NEXT:    call x86_thiscallcc void @internalfun(ptr noalias nocapture nofree readnone [[A]], ptr noundef nonnull inalloca(<{ [[STRUCT_A]] }>) align 4 dereferenceable(1) [[ARGMEM]])
46 ; CGSCC-NEXT:    call void @llvm.stackrestore.p0(ptr nofree [[INALLOCA_SAVE]])
47 ; CGSCC-NEXT:    ret void
49   %inalloca.save = tail call ptr @llvm.stacksave()
50   %argmem = alloca inalloca <{ %struct.a }>, align 4
51   call x86_thiscallcc void @internalfun(ptr %a, ptr inalloca(<{ %struct.a }>) %argmem)
52   call void @llvm.stackrestore(ptr %inalloca.save)
53   ret void
56 declare x86_thiscallcc ptr @copy_ctor(ptr returned, ptr dereferenceable(1))
57 declare void @ext(ptr inalloca(<{ %struct.a }>))
58 declare ptr @llvm.stacksave()
59 declare void @llvm.stackrestore(ptr)
61 ; CHECK: attributes #[[ATTR0:[0-9]+]] = { nocallback nofree nosync nounwind willreturn }
62 ; CHECK: attributes #[[ATTR1:[0-9]+]] = { nofree willreturn }