/external/clang/test/Sema/ |
stdcall-fastcall-x64.c | 5 int __attribute__((fastcall)) var2; // expected-warning{{'fastcall' only applies to function types; type here is 'int'}} 8 void __attribute__((stdcall, fastcall)) foo3(void); // expected-warning{{calling convention 'stdcall' ignored for this target}} expected-warning {{calling convention 'fastcall' ignored for this target}} 10 void __attribute__((fastcall)) foo4(void); // expected-warning {{calling convention 'fastcall' ignored for this target}} 13 void rdar8876096foo1(int i, int j) __attribute__((fastcall, cdecl)); // expected-warning{{calling convention 'fastcall' ignored for this target}} 14 void rdar8876096foo2(int i, int j) __attribute__((fastcall, stdcall)); // expected-warning{{calling convention 'stdcall' ignored for this target}} expected-warning {{calling convention 'fastcall' ignored for this target} [all...] |
stdcall-fastcall.c | 5 int __attribute__((fastcall)) var2; // expected-warning{{'fastcall' only applies to function types; type here is 'int'}} 8 void __attribute__((stdcall, fastcall)) foo3(void); // expected-error{{fastcall and stdcall attributes are not compatible}} 10 void __attribute__((fastcall)) foo4(void); // expected-error{{function declared 'fastcall' here was previously declared 'stdcall'}} 13 void rdar8876096foo1(int i, int j) __attribute__((fastcall, cdecl)); // expected-error {{not compatible}} 14 void rdar8876096foo2(int i, int j) __attribute__((fastcall, stdcall)); // expected-error {{not compatible}} 15 void rdar8876096foo3(int i, int j) __attribute__((fastcall, regparm(2))); // expected-error {{not compatible}} 17 void rdar8876096foo5(int i, int j) __attribute__((stdcall, fastcall)); // expected-error {{not compatible} [all...] |
callingconv.c | 4 void __attribute__((fastcall)) foo(float *a) { 10 void __attribute__((fastcall(1))) baz(float *a) { // expected-error {{'fastcall' attribute takes no arguments}} 13 void __attribute__((fastcall)) test0() { 16 void __attribute__((fastcall)) test1(void) { 19 void __attribute__((fastcall)) test2(int a, ...) { // expected-warning {{fastcall calling convention ignored on variadic function}} 30 void (__attribute__((fastcall)) *pfoo)(float*) = foo; 41 typedef void (__attribute__((fastcall)) *Handler) (float *);
|
/external/clang/test/CodeGen/ |
stdcall-fastcall.c | 3 void __attribute__((fastcall)) f1(void); 6 void __attribute__((fastcall)) f4(void) { 23 void (__attribute__((fastcall)) *pf1)(void) = f1; 26 void (__attribute__((fastcall)) *pf4)(void) = f4; 52 void __attribute__((fastcall)) foo1(int y); 62 void __attribute__((fastcall)) foo2(struct S1 y); 69 void __attribute__((fastcall)) foo3(int *y); 77 void __attribute__((fastcall)) foo4(enum Enum y); 89 void __attribute__((fastcall)) foo5(struct S2 y); 96 void __attribute__((fastcall)) foo6(long long y) [all...] |
/external/clang/test/CodeGenCXX/ |
fastcall.cpp | 3 void __attribute__((fastcall)) foo1(int &y); 15 void __attribute__((fastcall)) foo2(S1 a, int b);
|
default_calling_conv.cpp | 2 // RUN: %clang_cc1 -triple i786-unknown-linux-gnu -target-feature +sse4.2 -fdefault-calling-conv=fastcall -emit-llvm -o - %s | FileCheck %s --check-prefix=FASTCALL --check-prefix=ALL 8 // FASTCALL: define x86_fastcallcc void @_Z5test1v 17 void __attribute__((fastcall)) test3() {}
|
/development/ndk/platforms/android-9/arch-x86/include/asm/ |
linkage_32.h | 22 #define FASTCALL(x) x __attribute__((regparm(3))) 24 #define fastcall __attribute__((regparm(3))) macro
|
/prebuilts/ndk/r10/platforms/android-12/arch-x86/usr/include/asm/ |
linkage_32.h | 22 #define FASTCALL(x) x __attribute__((regparm(3))) 24 #define fastcall __attribute__((regparm(3))) macro
|
/prebuilts/ndk/r10/platforms/android-13/arch-x86/usr/include/asm/ |
linkage_32.h | 22 #define FASTCALL(x) x __attribute__((regparm(3))) 24 #define fastcall __attribute__((regparm(3))) macro
|
/prebuilts/ndk/r10/platforms/android-14/arch-x86/usr/include/asm/ |
linkage_32.h | 22 #define FASTCALL(x) x __attribute__((regparm(3))) 24 #define fastcall __attribute__((regparm(3))) macro
|
/prebuilts/ndk/r10/platforms/android-15/arch-x86/usr/include/asm/ |
linkage_32.h | 22 #define FASTCALL(x) x __attribute__((regparm(3))) 24 #define fastcall __attribute__((regparm(3))) macro
|
/prebuilts/ndk/r10/platforms/android-16/arch-x86/usr/include/asm/ |
linkage_32.h | 22 #define FASTCALL(x) x __attribute__((regparm(3))) 24 #define fastcall __attribute__((regparm(3))) macro
|
/prebuilts/ndk/r10/platforms/android-17/arch-x86/usr/include/asm/ |
linkage_32.h | 22 #define FASTCALL(x) x __attribute__((regparm(3))) 24 #define fastcall __attribute__((regparm(3))) macro
|
/prebuilts/ndk/r10/platforms/android-18/arch-x86/usr/include/asm/ |
linkage_32.h | 22 #define FASTCALL(x) x __attribute__((regparm(3))) 24 #define fastcall __attribute__((regparm(3))) macro
|
/prebuilts/ndk/r10/platforms/android-19/arch-x86/usr/include/asm/ |
linkage_32.h | 22 #define FASTCALL(x) x __attribute__((regparm(3))) 24 #define fastcall __attribute__((regparm(3))) macro
|
/prebuilts/ndk/r10/platforms/android-9/arch-x86/usr/include/asm/ |
linkage_32.h | 22 #define FASTCALL(x) x __attribute__((regparm(3))) 24 #define fastcall __attribute__((regparm(3))) macro
|
/prebuilts/ndk/r11/platforms/android-12/arch-x86/usr/include/asm/ |
linkage_32.h | 22 #define FASTCALL(x) x __attribute__((regparm(3))) 24 #define fastcall __attribute__((regparm(3))) macro
|
/prebuilts/ndk/r11/platforms/android-13/arch-x86/usr/include/asm/ |
linkage_32.h | 22 #define FASTCALL(x) x __attribute__((regparm(3))) 24 #define fastcall __attribute__((regparm(3))) macro
|
/prebuilts/ndk/r11/platforms/android-14/arch-x86/usr/include/asm/ |
linkage_32.h | 22 #define FASTCALL(x) x __attribute__((regparm(3))) 24 #define fastcall __attribute__((regparm(3))) macro
|
/prebuilts/ndk/r11/platforms/android-15/arch-x86/usr/include/asm/ |
linkage_32.h | 22 #define FASTCALL(x) x __attribute__((regparm(3))) 24 #define fastcall __attribute__((regparm(3))) macro
|
/prebuilts/ndk/r11/platforms/android-16/arch-x86/usr/include/asm/ |
linkage_32.h | 22 #define FASTCALL(x) x __attribute__((regparm(3))) 24 #define fastcall __attribute__((regparm(3))) macro
|
/prebuilts/ndk/r11/platforms/android-17/arch-x86/usr/include/asm/ |
linkage_32.h | 22 #define FASTCALL(x) x __attribute__((regparm(3))) 24 #define fastcall __attribute__((regparm(3))) macro
|
/prebuilts/ndk/r11/platforms/android-18/arch-x86/usr/include/asm/ |
linkage_32.h | 22 #define FASTCALL(x) x __attribute__((regparm(3))) 24 #define fastcall __attribute__((regparm(3))) macro
|
/prebuilts/ndk/r11/platforms/android-19/arch-x86/usr/include/asm/ |
linkage_32.h | 22 #define FASTCALL(x) x __attribute__((regparm(3))) 24 #define fastcall __attribute__((regparm(3))) macro
|
/prebuilts/ndk/r11/platforms/android-9/arch-x86/usr/include/asm/ |
linkage_32.h | 22 #define FASTCALL(x) x __attribute__((regparm(3))) 24 #define fastcall __attribute__((regparm(3))) macro
|