| 225 |
/* ABI (Application Binary Interface) types. */ |
/* ABI (Application Binary Interface) types. */ |
| 226 |
#if (defined SLJIT_CONFIG_X86_32 && SLJIT_CONFIG_X86_32) |
#if (defined SLJIT_CONFIG_X86_32 && SLJIT_CONFIG_X86_32) |
| 227 |
|
|
| 228 |
#ifdef __GNUC__ |
#if defined(__GNUC__) |
| 229 |
|
|
| 230 |
#define SLJIT_CALL __attribute__ ((fastcall)) |
#define SLJIT_CALL __attribute__ ((fastcall)) |
| 231 |
#define SLJIT_X86_32_FASTCALL 1 |
#define SLJIT_X86_32_FASTCALL 1 |
| 232 |
|
|
| 233 |
#elif defined(_WIN32) |
#elif defined(_WIN32) |
| 234 |
|
|
| 235 |
|
#ifdef __BORLANDC__ |
| 236 |
|
#define SLJIT_CALL __msfastcall |
| 237 |
|
#else /* __BORLANDC__ */ |
| 238 |
#define SLJIT_CALL __fastcall |
#define SLJIT_CALL __fastcall |
| 239 |
|
#endif /* __BORLANDC__ */ |
| 240 |
#define SLJIT_X86_32_FASTCALL 1 |
#define SLJIT_X86_32_FASTCALL 1 |
| 241 |
#else |
|
| 242 |
|
#else /* defined(_WIN32) */ |
| 243 |
#define SLJIT_CALL __stdcall |
#define SLJIT_CALL __stdcall |
| 244 |
#endif |
#endif |
| 245 |
|
|