// RUN: %clang_cc1 -emit-llvm %s -o - -triple=x86_64-linux-gnu | FileCheck %s --check-prefixes=CHECK,LIN64 // RUN: %clang_cc1 -emit-llvm %s -o - -triple=x86_64-linux-gnu -DCC="__attribute__((vectorcall))" | FileCheck %s --check-prefixes=CHECK,VECCALL // RUN: %clang_cc1 -emit-llvm %s -o - -fms-compatibility -triple=i386-windows-pc -DWIN32 | FileCheck %s --check-prefixes=WIN32 #ifndef CC #define CC #endif void usage() { auto lambda = [](int i, float f, double d) CC { return i + f + d; }; double (*CC fp)(int, float, double) = lambda; #ifdef WIN32 double (*__attribute__((thiscall)) fp2)(int, float, double) = lambda; double (*__attribute__((stdcall)) fp3)(int, float, double) = lambda; double (*__attribute__((fastcall)) fp4)(int, float, double) = lambda; double (*__attribute__((vectorcall)) fp5)(int, float, double) = lambda; #endif // WIN32 fp(0, 1.1, 2.2); #ifdef WIN32 fp2(0, 1.1, 2.2); fp3(0, 1.1, 2.2); fp4(0, 1.1, 2.2); fp5(0, 1.1, 2.2); #endif // WIN32 auto x = +lambda; } // void usage function, calls conversion operator. // LIN64: define{{.*}} void @_Z5usagev() // VECCALL: define{{.*}} void @_Z5usagev() // WIN32: define dso_local void @"?usage@@YAXXZ"() // CHECK: call noundef ptr @"_ZZ5usagevENK3$_0cvPFdifdEEv" // WIN32: call x86_thiscallcc noundef ptr @"??B@?0??usage@@YAXXZ@QBEP6A?A?@@HMN@ZXZ" // WIN32: call x86_thiscallcc noundef ptr @"??B@?0??usage@@YAXXZ@QBEP6E?A?@@HMN@ZXZ" // WIN32: call x86_thiscallcc noundef ptr @"??B@?0??usage@@YAXXZ@QBEP6G?A?@@HMN@ZXZ" // WIN32: call x86_thiscallcc noundef ptr @"??B@?0??usage@@YAXXZ@QBEP6I?A?@@HMN@ZXZ" // WIN32: call x86_thiscallcc noundef ptr @"??B@?0??usage@@YAXXZ@QBEP6Q?A?@@HMN@ZXZ" // Operator+ calls 'default' calling convention. // CHECK: call noundef ptr @"_ZZ5usagevENK3$_0cvPFdifdEEv" // WIN32: call x86_thiscallcc noundef ptr @"??B@?0??usage@@YAXXZ@QBEP6A?A?@@HMN@ZXZ" // // Conversion operator, returns __invoke. // CHECK: define internal noundef ptr @"_ZZ5usagevENK3$_0cvPFdifdEEv" // CHECK: ret ptr @"_ZZ5usagevEN3$_08__invokeEifd" // WIN32: define internal x86_thiscallcc noundef ptr @"??B@?0??usage@@YAXXZ@QBEP6A?A?@@HMN@ZXZ" // WIN32: ret ptr @"?__invoke@@?0??usage@@YAXXZ@CA?A?@@HMN@Z" // WIN32: define internal x86_thiscallcc noundef ptr @"??B@?0??usage@@YAXXZ@QBEP6E?A?@@HMN@ZXZ" // WIN32: ret ptr @"?__invoke@@?0??usage@@YAXXZ@CE?A?@@HMN@Z" // WIN32: define internal x86_thiscallcc noundef ptr @"??B@?0??usage@@YAXXZ@QBEP6G?A?@@HMN@ZXZ" // WIN32: ret ptr @"?__invoke@@?0??usage@@YAXXZ@CG?A?@@HMN@Z" // WIN32: define internal x86_thiscallcc noundef ptr @"??B@?0??usage@@YAXXZ@QBEP6I?A?@@HMN@ZXZ" // WIN32: ret ptr @"?__invoke@@?0??usage@@YAXXZ@CI?A?@@HMN@Z" // WIN32: define internal x86_thiscallcc noundef ptr @"??B@?0??usage@@YAXXZ@QBEP6Q?A?@@HMN@ZXZ" // WIN32: ret ptr @"?__invoke@@?0??usage@@YAXXZ@CQ?A?@@HMN@Z" // // __invoke function, calls operator(). Win32 should call both. // LIN64: define internal noundef double @"_ZZ5usagevEN3$_08__invokeEifd" // LIN64: call noundef double @"_ZZ5usagevENK3$_0clEifd" // VECCALL: define internal x86_vectorcallcc noundef double @"_ZZ5usagevEN3$_08__invokeEifd" // VECCALL: call x86_vectorcallcc noundef double @"_ZZ5usagevENK3$_0clEifd" // WIN32: define internal noundef double @"?__invoke@@?0??usage@@YAXXZ@CA?A?@@HMN@Z" // WIN32: call x86_thiscallcc noundef double @"??R@?0??usage@@YAXXZ@QBE?A?@@HMN@Z" // WIN32: define internal x86_thiscallcc noundef double @"?__invoke@@?0??usage@@YAXXZ@CE?A?@@HMN@Z" // WIN32: call x86_thiscallcc noundef double @"??R@?0??usage@@YAXXZ@QBE?A?@@HMN@Z" // WIN32: define internal x86_stdcallcc noundef double @"?__invoke@@?0??usage@@YAXXZ@CG?A?@@HMN@Z" // WIN32: call x86_thiscallcc noundef double @"??R@?0??usage@@YAXXZ@QBE?A?@@HMN@Z" // WIN32: define internal x86_fastcallcc noundef double @"?__invoke@@?0??usage@@YAXXZ@CI?A?@@HMN@Z" // WIN32: call x86_thiscallcc noundef double @"??R@?0??usage@@YAXXZ@QBE?A?@@HMN@Z" // WIN32: define internal x86_vectorcallcc noundef double @"?__invoke@@?0??usage@@YAXXZ@CQ?A?@@HMN@Z" // WIN32: call x86_thiscallcc noundef double @"??R@?0??usage@@YAXXZ@QBE?A?@@HMN@Z"