Home | History | Annotate | Download | only in CodeGenCXX
      1 // RUN: %clang_cc1 -fno-rtti -emit-llvm -triple=i386-pc-win32 %s -o - | FileCheck %s --check-prefix=CHECK32
      2 // RUN: %clang_cc1 -fno-rtti -emit-llvm -triple=x86_64-pc-win32 %s -o - | FileCheck %s --check-prefix=CHECK64
      3 
      4 struct S {
      5   int x, y, z;
      6 };
      7 
      8 // U is not trivially copyable, and requires inalloca to pass by value.
      9 struct U {
     10   int u;
     11   U();
     12   ~U();
     13   U(const U &);
     14 };
     15 
     16 struct C {
     17   virtual void foo();
     18   virtual int bar(int, double);
     19   virtual S baz(int);
     20   virtual S qux(U);
     21   virtual void thud(...);
     22 };
     23 
     24 namespace {
     25 struct D {
     26   virtual void foo();
     27 };
     28 }
     29 
     30 void f() {
     31   void (C::*ptr)();
     32   ptr = &C::foo;
     33   ptr = &C::foo; // Don't crash trying to define the thunk twice :)
     34 
     35   int (C::*ptr2)(int, double);
     36   ptr2 = &C::bar;
     37 
     38   S (C::*ptr3)(int);
     39   ptr3 = &C::baz;
     40 
     41   void (D::*ptr4)();
     42   ptr4 = &D::foo;
     43 
     44   S (C::*ptr5)(U);
     45   ptr5 = &C::qux;
     46 
     47   void (C::*ptr6)(...);
     48   ptr6 = &C::thud;
     49 
     50 
     51 // CHECK32-LABEL: define void @"\01?f@@YAXXZ"()
     52 // CHECK32: store i8* bitcast (void (%struct.C*, ...)* @"\01??_9C@@$BA@AE" to i8*), i8** %ptr
     53 // CHECK32: store i8* bitcast (void (%struct.C*, ...)* @"\01??_9C@@$B3AE" to i8*), i8** %ptr2
     54 // CHECK32: store i8* bitcast (void (%struct.C*, ...)* @"\01??_9C@@$B7AE" to i8*), i8** %ptr3
     55 // CHECK32: store i8* bitcast (void (%"struct.(anonymous namespace)::D"*, ...)* @"\01??_9D@?A@@$BA@AE" to i8*), i8** %ptr4
     56 // CHECK32: }
     57 //
     58 // CHECK64-LABEL: define void @"\01?f@@YAXXZ"()
     59 // CHECK64: store i8* bitcast (void (%struct.C*, ...)* @"\01??_9C@@$BA@AA" to i8*), i8** %ptr
     60 // CHECK64: store i8* bitcast (void (%struct.C*, ...)* @"\01??_9C@@$B7AA" to i8*), i8** %ptr2
     61 // CHECK64: store i8* bitcast (void (%struct.C*, ...)* @"\01??_9C@@$BBA@AA" to i8*), i8** %ptr3
     62 // CHECK64: store i8* bitcast (void (%"struct.(anonymous namespace)::D"*, ...)* @"\01??_9D@?A@@$BA@AA" to i8*), i8** %ptr
     63 // CHECK64: }
     64 }
     65 
     66 
     67 // Thunk for calling the 1st virtual function in C with no parameters.
     68 // CHECK32-LABEL: define linkonce_odr x86_thiscallcc void @"\01??_9C@@$BA@AE"(%struct.C* %this, ...)
     69 // CHECK32: #[[ATTR:[0-9]+]]
     70 // CHECK32-NOT:             unnamed_addr
     71 // CHECK32:                 comdat
     72 // CHECK32: [[VPTR:%.*]] = getelementptr inbounds void (%struct.C*, ...)*, void (%struct.C*, ...)** %{{.*}}, i64 0
     73 // CHECK32: [[CALLEE:%.*]] = load void (%struct.C*, ...)*, void (%struct.C*, ...)** [[VPTR]]
     74 // CHECK32: musttail call x86_thiscallcc void (%struct.C*, ...) [[CALLEE]](%struct.C* %{{.*}}, ...)
     75 // CHECK32-NEXT: ret void
     76 // CHECK32: }
     77 //
     78 // CHECK64-LABEL: define linkonce_odr void @"\01??_9C@@$BA@AA"(%struct.C* %this, ...)
     79 // CHECK64: #[[ATTR:[0-9]+]]
     80 // CHECK64-NOT:             unnamed_addr
     81 // CHECK64:                 comdat
     82 // CHECK64: [[VPTR:%.*]] = getelementptr inbounds void (%struct.C*, ...)*, void (%struct.C*, ...)** %{{.*}}, i64 0
     83 // CHECK64: [[CALLEE:%.*]] = load void (%struct.C*, ...)*, void (%struct.C*, ...)** [[VPTR]]
     84 // CHECK64: musttail call void (%struct.C*, ...) [[CALLEE]](%struct.C* %{{.*}}, ...)
     85 // CHECK64-NEXT: ret void
     86 // CHECK64: }
     87 
     88 // Thunk for calling the 2nd virtual function in C, taking int and double as parameters, returning int.
     89 // CHECK32-LABEL: define linkonce_odr x86_thiscallcc void @"\01??_9C@@$B3AE"(%struct.C* %this, ...)
     90 // CHECK32: #[[ATTR]] comdat
     91 // CHECK32: [[VPTR:%.*]] = getelementptr inbounds void (%struct.C*, ...)*, void (%struct.C*, ...)** %{{.*}}, i64 1
     92 // CHECK32: [[CALLEE:%.*]] = load void (%struct.C*, ...)*, void (%struct.C*, ...)** [[VPTR]]
     93 // CHECK32: musttail call x86_thiscallcc void (%struct.C*, ...) [[CALLEE]](%struct.C* %{{.*}}, ...)
     94 // CHECK32-NEXT: ret void
     95 // CHECK32: }
     96 //
     97 // CHECK64-LABEL: define linkonce_odr void @"\01??_9C@@$B7AA"(%struct.C* %this, ...)
     98 // CHECK64: #[[ATTR]] comdat
     99 // CHECK64: [[VPTR:%.*]] = getelementptr inbounds void (%struct.C*, ...)*, void (%struct.C*, ...)** %{{.*}}, i64 1
    100 // CHECK64: [[CALLEE:%.*]] = load void (%struct.C*, ...)*, void (%struct.C*, ...)** [[VPTR]]
    101 // CHECK64: musttail call void (%struct.C*, ...) [[CALLEE]](%struct.C* %{{.*}}, ...)
    102 // CHECK64-NEXT: ret void
    103 // CHECK64: }
    104 
    105 // Thunk for calling the 3rd virtual function in C, taking an int parameter, returning a struct.
    106 // CHECK32-LABEL: define linkonce_odr x86_thiscallcc void @"\01??_9C@@$B7AE"(%struct.C* %this, ...)
    107 // CHECK32: #[[ATTR]] comdat
    108 // CHECK32: [[VPTR:%.*]] = getelementptr inbounds void (%struct.C*, ...)*, void (%struct.C*, ...)** %{{.*}}, i64 2
    109 // CHECK32: [[CALLEE:%.*]] = load void (%struct.C*, ...)*, void (%struct.C*, ...)** [[VPTR]]
    110 // CHECK32: musttail call x86_thiscallcc void (%struct.C*, ...) [[CALLEE]](%struct.C* %{{.*}}, ...)
    111 // CHECK32-NEXT: ret void
    112 // CHECK32: }
    113 //
    114 // CHECK64-LABEL: define linkonce_odr void @"\01??_9C@@$BBA@AA"(%struct.C* %this, ...)
    115 // CHECK64: #[[ATTR]] comdat
    116 // CHECK64: [[VPTR:%.*]] = getelementptr inbounds void (%struct.C*, ...)*, void (%struct.C*, ...)** %{{.*}}, i64 2
    117 // CHECK64: [[CALLEE:%.*]] = load void (%struct.C*, ...)*, void (%struct.C*, ...)** [[VPTR]]
    118 // CHECK64: musttail call void (%struct.C*, ...) [[CALLEE]](%struct.C* %{{.*}}, ...)
    119 // CHECK64-NEXT: ret void
    120 // CHECK64: }
    121 
    122 // Thunk for calling the virtual function in internal class D.
    123 // CHECK32-LABEL: define internal x86_thiscallcc void @"\01??_9D@?A@@$BA@AE"(%"struct.(anonymous namespace)::D"* %this, ...)
    124 // CHECK32: #[[ATTR]]
    125 // CHECK32: [[VPTR:%.*]] = getelementptr inbounds void (%"struct.(anonymous namespace)::D"*, ...)*, void (%"struct.(anonymous namespace)::D"*, ...)** %{{.*}}, i64 0
    126 // CHECK32: [[CALLEE:%.*]] = load void (%"struct.(anonymous namespace)::D"*, ...)*, void (%"struct.(anonymous namespace)::D"*, ...)** [[VPTR]]
    127 // CHECK32: musttail call x86_thiscallcc void (%"struct.(anonymous namespace)::D"*, ...) [[CALLEE]](%"struct.(anonymous namespace)::D"* %{{.*}}, ...)
    128 // CHECK32-NEXT: ret void
    129 // CHECK32: }
    130 //
    131 // CHECK64-LABEL: define internal void @"\01??_9D@?A@@$BA@AA"(%"struct.(anonymous namespace)::D"* %this, ...)
    132 // CHECK64: #[[ATTR]]
    133 // CHECK64: [[VPTR:%.*]] = getelementptr inbounds void (%"struct.(anonymous namespace)::D"*, ...)*, void (%"struct.(anonymous namespace)::D"*, ...)** %{{.*}}, i64 0
    134 // CHECK64: [[CALLEE:%.*]] = load void (%"struct.(anonymous namespace)::D"*, ...)*, void (%"struct.(anonymous namespace)::D"*, ...)** [[VPTR]]
    135 // CHECK64: musttail call void (%"struct.(anonymous namespace)::D"*, ...) [[CALLEE]](%"struct.(anonymous namespace)::D"* %{{.*}}, ...)
    136 // CHECK64-NEXT: ret void
    137 // CHECK64: }
    138 
    139 // Thunk for calling the fourth virtual function in C, taking a struct parameter
    140 // and returning a struct.
    141 // CHECK32-LABEL: define linkonce_odr x86_thiscallcc void @"\01??_9C@@$BM@AE"(%struct.C* %this, ...) {{.*}} comdat
    142 // CHECK32: [[VPTR:%.*]] = getelementptr inbounds void (%struct.C*, ...)*, void (%struct.C*, ...)** %{{.*}}, i64 3
    143 // CHECK32: [[CALLEE:%.*]] = load void (%struct.C*, ...)*, void (%struct.C*, ...)** [[VPTR]]
    144 // CHECK32: musttail call x86_thiscallcc void (%struct.C*, ...) [[CALLEE]](%struct.C* %{{.*}}, ...)
    145 // CHECK32-NEXT: ret void
    146 // CHECK32: }
    147 //
    148 // CHECK64-LABEL: define linkonce_odr void @"\01??_9C@@$BBI@AA"(%struct.C* %this, ...) {{.*}} comdat
    149 // CHECK64: [[VPTR:%.*]] = getelementptr inbounds void (%struct.C*, ...)*, void (%struct.C*, ...)** %{{.*}}, i64 3
    150 // CHECK64: [[CALLEE:%.*]] = load void (%struct.C*, ...)*, void (%struct.C*, ...)** [[VPTR]]
    151 // CHECK64: musttail call void (%struct.C*, ...) [[CALLEE]](%struct.C* %{{.*}}, ...)
    152 // CHECK64: ret void
    153 // CHECK64: }
    154 
    155 // Thunk for calling the fifth virtual function in C which uses the __cdecl calling convention.
    156 // CHECK32-LABEL: define linkonce_odr void @"\01??_9C@@$BBA@AA"(%struct.C* %this, ...) {{.*}} comdat align 2 {
    157 // CHECK32: [[VPTR:%.*]] = getelementptr inbounds void (%struct.C*, ...)*, void (%struct.C*, ...)** %{{.*}}, i64 4
    158 // CHECK32: [[CALLEE:%.*]] = load void (%struct.C*, ...)*, void (%struct.C*, ...)** [[VPTR]]
    159 // CHECK32: musttail call void (%struct.C*, ...) [[CALLEE]](%struct.C* %{{.*}}, ...)
    160 // CHECK32: ret void
    161 // CHECK32: }
    162 //
    163 // CHECK64-LABEL: define linkonce_odr void @"\01??_9C@@$BCA@AA"(%struct.C* %this, ...) {{.*}} comdat align 2 {
    164 // CHECK64: [[VPTR:%.*]] = getelementptr inbounds void (%struct.C*, ...)*, void (%struct.C*, ...)** %{{.*}}, i64 4
    165 // CHECK64: [[CALLEE:%.*]] = load void (%struct.C*, ...)*, void (%struct.C*, ...)** [[VPTR]]
    166 // CHECK64: musttail call void (%struct.C*, ...) [[CALLEE]](%struct.C* %{{.*}}, ...)
    167 // CHECK64: ret void
    168 // CHECK64: }
    169 
    170 // CHECK32: #[[ATTR]] = {{{.*}}"thunk"{{.*}}}
    171