blob: 57ac79500aa86430eecc4e3fd7721426b35c7f5f [file] [log] [blame]
Stephen Hines651f13c2014-04-23 16:59:28 -07001// RUN: %clang_cc1 -emit-llvm %s -o - -triple=i686-pc-win32 -mconstructor-aliases -fno-rtti | FileCheck %s
2
3struct A {
4 A() : a(42) {}
5 A(const A &o) : a(o.a) {}
6 ~A() {}
7 int a;
Stephen Hines651f13c2014-04-23 16:59:28 -07008};
9
Stephen Hines176edba2014-12-01 14:53:08 -080010struct B {
11 A foo(A o);
12 A __cdecl bar(A o);
13 A __stdcall baz(A o);
14 A __fastcall qux(A o);
15};
16
17A B::foo(A x) {
18 return x;
Stephen Hines651f13c2014-04-23 16:59:28 -070019}
20
Stephen Hines176edba2014-12-01 14:53:08 -080021// CHECK-LABEL: define x86_thiscallcc %struct.A* @"\01?foo@B@@QAE?AUA@@U2@@Z"
22// CHECK: (%struct.B* %this, <{ %struct.A*, %struct.A }>* inalloca)
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -070023// CHECK: getelementptr inbounds <{ %struct.A*, %struct.A }>, <{ %struct.A*, %struct.A }>* %{{.*}}, i32 0, i32 0
24// CHECK: load %struct.A*, %struct.A**
Stephen Hines651f13c2014-04-23 16:59:28 -070025// CHECK: ret %struct.A*
26
Stephen Hines176edba2014-12-01 14:53:08 -080027A B::bar(A x) {
28 return x;
Stephen Hines651f13c2014-04-23 16:59:28 -070029}
30
Stephen Hines176edba2014-12-01 14:53:08 -080031// CHECK-LABEL: define %struct.A* @"\01?bar@B@@QAA?AUA@@U2@@Z"
32// CHECK: (<{ %struct.B*, %struct.A*, %struct.A }>* inalloca)
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -070033// CHECK: getelementptr inbounds <{ %struct.B*, %struct.A*, %struct.A }>, <{ %struct.B*, %struct.A*, %struct.A }>* %{{.*}}, i32 0, i32 1
34// CHECK: load %struct.A*, %struct.A**
Stephen Hines176edba2014-12-01 14:53:08 -080035// CHECK: ret %struct.A*
36
37A B::baz(A x) {
38 return x;
39}
40
41// CHECK-LABEL: define x86_stdcallcc %struct.A* @"\01?baz@B@@QAG?AUA@@U2@@Z"
42// CHECK: (<{ %struct.B*, %struct.A*, %struct.A }>* inalloca)
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -070043// CHECK: getelementptr inbounds <{ %struct.B*, %struct.A*, %struct.A }>, <{ %struct.B*, %struct.A*, %struct.A }>* %{{.*}}, i32 0, i32 1
44// CHECK: load %struct.A*, %struct.A**
Stephen Hines176edba2014-12-01 14:53:08 -080045// CHECK: ret %struct.A*
46
47A B::qux(A x) {
48 return x;
49}
50
51// CHECK-LABEL: define x86_fastcallcc void @"\01?qux@B@@QAI?AUA@@U2@@Z"
52// CHECK: (%struct.B* inreg %this, %struct.A* inreg noalias sret %agg.result, <{ %struct.A }>* inalloca)
53// CHECK: ret void
54
55int main() {
56 B b;
57 A a = b.foo(A());
58 a = b.bar(a);
59 a = b.baz(a);
60 a = b.qux(a);
61}
62
63// CHECK: call x86_thiscallcc %struct.A* @"\01?foo@B@@QAE?AUA@@U2@@Z"
64// CHECK: (%struct.B* %{{[^,]*}}, <{ %struct.A*, %struct.A }>* inalloca %{{[^,]*}})
65// CHECK: call %struct.A* @"\01?bar@B@@QAA?AUA@@U2@@Z"
66// CHECK: (<{ %struct.B*, %struct.A*, %struct.A }>* inalloca %{{[^,]*}})
67// CHECK: call x86_stdcallcc %struct.A* @"\01?baz@B@@QAG?AUA@@U2@@Z"
68// CHECK: (<{ %struct.B*, %struct.A*, %struct.A }>* inalloca %{{[^,]*}})
69// CHECK: call x86_fastcallcc void @"\01?qux@B@@QAI?AUA@@U2@@Z"
70// CHECK: (%struct.B* inreg %{{[^,]*}}, %struct.A* inreg sret %{{.*}}, <{ %struct.A }>* inalloca %{{[^,]*}})