xref: /llvm-project/clang/test/CodeGenCXX/thiscall-struct-return.cpp (revision 158d72d728261c1e54dc77931372b2322c52849f)
1 // For MSVC ABI compatibility, all structures returned by value using the
2 // thiscall calling convention must use the hidden parameter.
3 //
4 // RUN: %clang_cc1 -triple i386-PC-Win32 %s -fms-compatibility -emit-llvm -o - | FileCheck %s
5 
6 // This structure would normally be returned via EAX
7 struct S {
8   int i;
9 };
10 
11 // This structure would normally be returned via EAX/EDX
12 struct M {
13   int i;
14   int j;
15 };
16 
17 class C {
18 public:
C()19   C() {}
20 
Small() const21   struct S __attribute__((thiscall)) Small() const {
22     struct S s = { 0 };
23     return s;
24   }
25 
Medium() const26   struct M __attribute__((thiscall)) Medium() const {
27     struct M m = { 0 };
28     return m;
29   }
30 };
31 
32 // CHECK-LABEL: define{{.*}} void @_Z4testv()
test(void)33 void test( void ) {
34 // CHECK: call void @_ZN1CC1Ev(ptr {{[^,]*}} [[C:%.+]])
35   C c;
36 
37 // CHECK: call x86_thiscallcc void @_ZNK1C5SmallEv(ptr dead_on_unwind writable sret(%struct.S) align 4 %{{.+}}, ptr {{[^,]*}} [[C]])
38   (void)c.Small();
39 // CHECK: call x86_thiscallcc void @_ZNK1C6MediumEv(ptr dead_on_unwind writable sret(%struct.M) align 4 %{{.+}}, ptr {{[^,]*}} [[C]])
40   (void)c.Medium();
41 }
42