sljitConfigInternal.h 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713
  1. /*
  2. * Stack-less Just-In-Time compiler
  3. *
  4. * Copyright 2009-2012 Zoltan Herczeg (hzmester@freemail.hu). All rights reserved.
  5. *
  6. * Redistribution and use in source and binary forms, with or without modification, are
  7. * permitted provided that the following conditions are met:
  8. *
  9. * 1. Redistributions of source code must retain the above copyright notice, this list of
  10. * conditions and the following disclaimer.
  11. *
  12. * 2. Redistributions in binary form must reproduce the above copyright notice, this list
  13. * of conditions and the following disclaimer in the documentation and/or other materials
  14. * provided with the distribution.
  15. *
  16. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) AND CONTRIBUTORS ``AS IS'' AND ANY
  17. * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  18. * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
  19. * SHALL THE COPYRIGHT HOLDER(S) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
  20. * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
  21. * TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
  22. * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  23. * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
  24. * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  25. */
  26. #ifndef _SLJIT_CONFIG_INTERNAL_H_
  27. #define _SLJIT_CONFIG_INTERNAL_H_
  28. /*
  29. SLJIT defines the following architecture dependent types and macros:
  30. Types:
  31. sljit_sb, sljit_ub : signed and unsigned 8 bit byte
  32. sljit_sh, sljit_uh : signed and unsigned 16 bit half-word (short) type
  33. sljit_si, sljit_ui : signed and unsigned 32 bit integer type
  34. sljit_sw, sljit_uw : signed and unsigned machine word, enough to store a pointer
  35. sljit_p : unsgined pointer value (usually the same as sljit_uw, but
  36. some 64 bit ABIs may use 32 bit pointers)
  37. sljit_s : single precision floating point value
  38. sljit_d : double precision floating point value
  39. Macros for feature detection (boolean):
  40. SLJIT_32BIT_ARCHITECTURE : 32 bit architecture
  41. SLJIT_64BIT_ARCHITECTURE : 64 bit architecture
  42. SLJIT_LITTLE_ENDIAN : little endian architecture
  43. SLJIT_BIG_ENDIAN : big endian architecture
  44. SLJIT_UNALIGNED : allows unaligned memory accesses for non-fpu operations (only!)
  45. SLJIT_INDIRECT_CALL : see SLJIT_FUNC_OFFSET() for more information
  46. Constants:
  47. SLJIT_NUMBER_OF_REGISTERS : number of available registers
  48. SLJIT_NUMBER_OF_SCRATCH_REGISTERS : number of available scratch registers
  49. SLJIT_NUMBER_OF_SAVED_REGISTERS : number of available saved registers
  50. SLJIT_NUMBER_OF_FLOAT_REGISTERS : number of available floating point registers
  51. SLJIT_NUMBER_OF_SCRATCH_FLOAT_REGISTERS : number of available floating point scratch registers
  52. SLJIT_NUMBER_OF_SAVED_FLOAT_REGISTERS : number of available floating point saved registers
  53. SLJIT_WORD_SHIFT : the shift required to apply when accessing a sljit_sw/sljit_uw array by index
  54. SLJIT_DOUBLE_SHIFT : the shift required to apply when accessing
  55. a double precision floating point array by index
  56. SLJIT_SINGLE_SHIFT : the shift required to apply when accessing
  57. a single precision floating point array by index
  58. SLJIT_LOCALS_OFFSET : local space starting offset (SLJIT_SP + SLJIT_LOCALS_OFFSET)
  59. SLJIT_RETURN_ADDRESS_OFFSET : a return instruction always adds this offset to the return address
  60. Other macros:
  61. SLJIT_CALL : C calling convention define for both calling JIT form C and C callbacks for JIT
  62. SLJIT_W(number) : defining 64 bit constants on 64 bit architectures (compiler independent helper)
  63. */
  64. /*****************/
  65. /* Sanity check. */
  66. /*****************/
  67. #if !((defined SLJIT_CONFIG_X86_32 && SLJIT_CONFIG_X86_32) \
  68. || (defined SLJIT_CONFIG_X86_64 && SLJIT_CONFIG_X86_64) \
  69. || (defined SLJIT_CONFIG_ARM_V5 && SLJIT_CONFIG_ARM_V5) \
  70. || (defined SLJIT_CONFIG_ARM_V7 && SLJIT_CONFIG_ARM_V7) \
  71. || (defined SLJIT_CONFIG_ARM_THUMB2 && SLJIT_CONFIG_ARM_THUMB2) \
  72. || (defined SLJIT_CONFIG_ARM_64 && SLJIT_CONFIG_ARM_64) \
  73. || (defined SLJIT_CONFIG_PPC_32 && SLJIT_CONFIG_PPC_32) \
  74. || (defined SLJIT_CONFIG_PPC_64 && SLJIT_CONFIG_PPC_64) \
  75. || (defined SLJIT_CONFIG_MIPS_32 && SLJIT_CONFIG_MIPS_32) \
  76. || (defined SLJIT_CONFIG_MIPS_64 && SLJIT_CONFIG_MIPS_64) \
  77. || (defined SLJIT_CONFIG_SPARC_32 && SLJIT_CONFIG_SPARC_32) \
  78. || (defined SLJIT_CONFIG_TILEGX && SLJIT_CONFIG_TILEGX) \
  79. || (defined SLJIT_CONFIG_AUTO && SLJIT_CONFIG_AUTO) \
  80. || (defined SLJIT_CONFIG_UNSUPPORTED && SLJIT_CONFIG_UNSUPPORTED))
  81. #error "An architecture must be selected"
  82. #endif
  83. #if (defined SLJIT_CONFIG_X86_32 && SLJIT_CONFIG_X86_32) \
  84. + (defined SLJIT_CONFIG_X86_64 && SLJIT_CONFIG_X86_64) \
  85. + (defined SLJIT_CONFIG_ARM_V5 && SLJIT_CONFIG_ARM_V5) \
  86. + (defined SLJIT_CONFIG_ARM_V7 && SLJIT_CONFIG_ARM_V7) \
  87. + (defined SLJIT_CONFIG_ARM_THUMB2 && SLJIT_CONFIG_ARM_THUMB2) \
  88. + (defined SLJIT_CONFIG_ARM_64 && SLJIT_CONFIG_ARM_64) \
  89. + (defined SLJIT_CONFIG_PPC_32 && SLJIT_CONFIG_PPC_32) \
  90. + (defined SLJIT_CONFIG_PPC_64 && SLJIT_CONFIG_PPC_64) \
  91. + (defined SLJIT_CONFIG_TILEGX && SLJIT_CONFIG_TILEGX) \
  92. + (defined SLJIT_CONFIG_MIPS_32 && SLJIT_CONFIG_MIPS_32) \
  93. + (defined SLJIT_CONFIG_MIPS_64 && SLJIT_CONFIG_MIPS_64) \
  94. + (defined SLJIT_CONFIG_SPARC_32 && SLJIT_CONFIG_SPARC_32) \
  95. + (defined SLJIT_CONFIG_AUTO && SLJIT_CONFIG_AUTO) \
  96. + (defined SLJIT_CONFIG_UNSUPPORTED && SLJIT_CONFIG_UNSUPPORTED) >= 2
  97. #error "Multiple architectures are selected"
  98. #endif
  99. /********************************************************/
  100. /* Automatic CPU detection (requires compiler support). */
  101. /********************************************************/
  102. #if (defined SLJIT_CONFIG_AUTO && SLJIT_CONFIG_AUTO)
  103. #ifndef _WIN32
  104. #if defined(__i386__) || defined(__i386)
  105. #define SLJIT_CONFIG_X86_32 1
  106. #elif defined(__x86_64__)
  107. #define SLJIT_CONFIG_X86_64 1
  108. #elif defined(__arm__) || defined(__ARM__)
  109. #ifdef __thumb2__
  110. #define SLJIT_CONFIG_ARM_THUMB2 1
  111. #elif defined(__ARM_ARCH_7__) || defined(__ARM_ARCH_7A__) || defined(__ARM_ARCH_7R__)
  112. #define SLJIT_CONFIG_ARM_V7 1
  113. #else
  114. #define SLJIT_CONFIG_ARM_V5 1
  115. #endif
  116. #elif defined (__aarch64__)
  117. #define SLJIT_CONFIG_ARM_64 1
  118. #elif defined(__ppc64__) || defined(__powerpc64__) || defined(_ARCH_PPC64) || (defined(_POWER) && defined(__64BIT__))
  119. #define SLJIT_CONFIG_PPC_64 1
  120. #elif defined(__ppc__) || defined(__powerpc__) || defined(_ARCH_PPC) || defined(_ARCH_PWR) || defined(_ARCH_PWR2) || defined(_POWER)
  121. #define SLJIT_CONFIG_PPC_32 1
  122. #elif defined(__mips__) && !defined(_LP64)
  123. #define SLJIT_CONFIG_MIPS_32 1
  124. #elif defined(__mips64)
  125. #define SLJIT_CONFIG_MIPS_64 1
  126. #elif defined(__sparc__) || defined(__sparc)
  127. #define SLJIT_CONFIG_SPARC_32 1
  128. #elif defined(__tilegx__)
  129. #define SLJIT_CONFIG_TILEGX 1
  130. #else
  131. /* Unsupported architecture */
  132. #define SLJIT_CONFIG_UNSUPPORTED 1
  133. #endif
  134. #else /* !_WIN32 */
  135. #if defined(_M_X64) || defined(__x86_64__)
  136. #define SLJIT_CONFIG_X86_64 1
  137. #elif defined(_ARM_)
  138. #define SLJIT_CONFIG_ARM_V5 1
  139. #else
  140. #define SLJIT_CONFIG_X86_32 1
  141. #endif
  142. #endif /* !WIN32 */
  143. #endif /* SLJIT_CONFIG_AUTO */
  144. #if (defined SLJIT_CONFIG_UNSUPPORTED && SLJIT_CONFIG_UNSUPPORTED)
  145. #undef SLJIT_EXECUTABLE_ALLOCATOR
  146. #endif
  147. /******************************/
  148. /* CPU family type detection. */
  149. /******************************/
  150. #if (defined SLJIT_CONFIG_ARM_V5 && SLJIT_CONFIG_ARM_V5) || (defined SLJIT_CONFIG_ARM_V7 && SLJIT_CONFIG_ARM_V7) \
  151. || (defined SLJIT_CONFIG_ARM_THUMB2 && SLJIT_CONFIG_ARM_THUMB2)
  152. #define SLJIT_CONFIG_ARM_32 1
  153. #endif
  154. #if (defined SLJIT_CONFIG_X86_32 && SLJIT_CONFIG_X86_32) || (defined SLJIT_CONFIG_X86_64 && SLJIT_CONFIG_X86_64)
  155. #define SLJIT_CONFIG_X86 1
  156. #elif (defined SLJIT_CONFIG_ARM_32 && SLJIT_CONFIG_ARM_32) || (defined SLJIT_CONFIG_ARM_64 && SLJIT_CONFIG_ARM_64)
  157. #define SLJIT_CONFIG_ARM 1
  158. #elif (defined SLJIT_CONFIG_PPC_32 && SLJIT_CONFIG_PPC_32) || (defined SLJIT_CONFIG_PPC_64 && SLJIT_CONFIG_PPC_64)
  159. #define SLJIT_CONFIG_PPC 1
  160. #elif (defined SLJIT_CONFIG_MIPS_32 && SLJIT_CONFIG_MIPS_32) || (defined SLJIT_CONFIG_MIPS_64 && SLJIT_CONFIG_MIPS_64)
  161. #define SLJIT_CONFIG_MIPS 1
  162. #elif (defined SLJIT_CONFIG_SPARC_32 && SLJIT_CONFIG_SPARC_32) || (defined SLJIT_CONFIG_SPARC_64 && SLJIT_CONFIG_SPARC_64)
  163. #define SLJIT_CONFIG_SPARC 1
  164. #endif
  165. /**********************************/
  166. /* External function definitions. */
  167. /**********************************/
  168. #if !(defined SLJIT_STD_MACROS_DEFINED && SLJIT_STD_MACROS_DEFINED)
  169. /* These libraries are needed for the macros below. */
  170. #include <stdlib.h>
  171. #include <string.h>
  172. #endif /* SLJIT_STD_MACROS_DEFINED */
  173. /* General macros:
  174. Note: SLJIT is designed to be independent from them as possible.
  175. In release mode (SLJIT_DEBUG is not defined) only the following
  176. external functions are needed:
  177. */
  178. #ifndef SLJIT_MALLOC
  179. #define SLJIT_MALLOC(size, allocator_data) malloc(size)
  180. #endif
  181. #ifndef SLJIT_FREE
  182. #define SLJIT_FREE(ptr, allocator_data) free(ptr)
  183. #endif
  184. #ifndef SLJIT_MEMMOVE
  185. #define SLJIT_MEMMOVE(dest, src, len) memmove(dest, src, len)
  186. #endif
  187. #ifndef SLJIT_ZEROMEM
  188. #define SLJIT_ZEROMEM(dest, len) memset(dest, 0, len)
  189. #endif
  190. /***************************/
  191. /* Compiler helper macros. */
  192. /***************************/
  193. #if !defined(SLJIT_LIKELY) && !defined(SLJIT_UNLIKELY)
  194. #if defined(__GNUC__) && (__GNUC__ >= 3)
  195. #define SLJIT_LIKELY(x) __builtin_expect((x), 1)
  196. #define SLJIT_UNLIKELY(x) __builtin_expect((x), 0)
  197. #else
  198. #define SLJIT_LIKELY(x) (x)
  199. #define SLJIT_UNLIKELY(x) (x)
  200. #endif
  201. #endif /* !defined(SLJIT_LIKELY) && !defined(SLJIT_UNLIKELY) */
  202. #ifndef SLJIT_INLINE
  203. /* Inline functions. Some old compilers do not support them. */
  204. #if defined(__SUNPRO_C) && __SUNPRO_C <= 0x510
  205. #define SLJIT_INLINE
  206. #else
  207. #define SLJIT_INLINE __inline
  208. #endif
  209. #endif /* !SLJIT_INLINE */
  210. #ifndef SLJIT_NOINLINE
  211. /* Not inline functions. */
  212. #if defined(__GNUC__)
  213. #define SLJIT_NOINLINE __attribute__ ((noinline))
  214. #else
  215. #define SLJIT_NOINLINE
  216. #endif
  217. #endif /* !SLJIT_INLINE */
  218. #ifndef SLJIT_CONST
  219. /* Const variables. */
  220. #define SLJIT_CONST const
  221. #endif
  222. #ifndef SLJIT_UNUSED_ARG
  223. /* Unused arguments. */
  224. #define SLJIT_UNUSED_ARG(arg) (void)arg
  225. #endif
  226. /*********************************/
  227. /* Type of public API functions. */
  228. /*********************************/
  229. #if (defined SLJIT_CONFIG_STATIC && SLJIT_CONFIG_STATIC)
  230. /* Static ABI functions. For all-in-one programs. */
  231. #if defined(__GNUC__)
  232. /* Disable unused warnings in gcc. */
  233. #define SLJIT_API_FUNC_ATTRIBUTE static __attribute__((unused))
  234. #else
  235. #define SLJIT_API_FUNC_ATTRIBUTE static
  236. #endif
  237. #else
  238. #define SLJIT_API_FUNC_ATTRIBUTE
  239. #endif /* (defined SLJIT_CONFIG_STATIC && SLJIT_CONFIG_STATIC) */
  240. /****************************/
  241. /* Instruction cache flush. */
  242. /****************************/
  243. #ifndef SLJIT_CACHE_FLUSH
  244. #if (defined SLJIT_CONFIG_X86 && SLJIT_CONFIG_X86)
  245. /* Not required to implement on archs with unified caches. */
  246. #define SLJIT_CACHE_FLUSH(from, to)
  247. #elif defined __APPLE__
  248. /* Supported by all macs since Mac OS 10.5.
  249. However, it does not work on non-jailbroken iOS devices,
  250. although the compilation is successful. */
  251. #define SLJIT_CACHE_FLUSH(from, to) \
  252. sys_icache_invalidate((char*)(from), (char*)(to) - (char*)(from))
  253. #elif defined __ANDROID__
  254. /* Android lacks __clear_cache; instead, cacheflush should be used. */
  255. #define SLJIT_CACHE_FLUSH(from, to) \
  256. cacheflush((long)(from), (long)(to), 0)
  257. #elif (defined SLJIT_CONFIG_PPC && SLJIT_CONFIG_PPC)
  258. /* The __clear_cache() implementation of GCC is a dummy function on PowerPC. */
  259. #define SLJIT_CACHE_FLUSH(from, to) \
  260. ppc_cache_flush((from), (to))
  261. #elif (defined SLJIT_CONFIG_SPARC_32 && SLJIT_CONFIG_SPARC_32)
  262. /* The __clear_cache() implementation of GCC is a dummy function on Sparc. */
  263. #define SLJIT_CACHE_FLUSH(from, to) \
  264. sparc_cache_flush((from), (to))
  265. #else
  266. /* Calls __ARM_NR_cacheflush on ARM-Linux. */
  267. #define SLJIT_CACHE_FLUSH(from, to) \
  268. __clear_cache((char*)(from), (char*)(to))
  269. #endif
  270. #endif /* !SLJIT_CACHE_FLUSH */
  271. /******************************************************/
  272. /* Byte/half/int/word/single/double type definitions. */
  273. /******************************************************/
  274. /* 8 bit byte type. */
  275. typedef unsigned char sljit_ub;
  276. typedef signed char sljit_sb;
  277. /* 16 bit half-word type. */
  278. typedef unsigned short int sljit_uh;
  279. typedef signed short int sljit_sh;
  280. /* 32 bit integer type. */
  281. typedef unsigned int sljit_ui;
  282. typedef signed int sljit_si;
  283. /* Machine word type. Enough for storing a pointer.
  284. 32 bit for 32 bit machines.
  285. 64 bit for 64 bit machines. */
  286. #if (defined SLJIT_CONFIG_UNSUPPORTED && SLJIT_CONFIG_UNSUPPORTED)
  287. /* Just to have something. */
  288. #define SLJIT_WORD_SHIFT 0
  289. typedef unsigned long int sljit_uw;
  290. typedef long int sljit_sw;
  291. #elif !(defined SLJIT_CONFIG_X86_64 && SLJIT_CONFIG_X86_64) \
  292. && !(defined SLJIT_CONFIG_ARM_64 && SLJIT_CONFIG_ARM_64) \
  293. && !(defined SLJIT_CONFIG_PPC_64 && SLJIT_CONFIG_PPC_64) \
  294. && !(defined SLJIT_CONFIG_MIPS_64 && SLJIT_CONFIG_MIPS_64) \
  295. && !(defined SLJIT_CONFIG_TILEGX && SLJIT_CONFIG_TILEGX)
  296. #define SLJIT_32BIT_ARCHITECTURE 1
  297. #define SLJIT_WORD_SHIFT 2
  298. typedef unsigned int sljit_uw;
  299. typedef int sljit_sw;
  300. #else
  301. #define SLJIT_64BIT_ARCHITECTURE 1
  302. #define SLJIT_WORD_SHIFT 3
  303. #ifdef _WIN32
  304. typedef unsigned __int64 sljit_uw;
  305. typedef __int64 sljit_sw;
  306. #else
  307. typedef unsigned long int sljit_uw;
  308. typedef long int sljit_sw;
  309. #endif
  310. #endif
  311. typedef sljit_uw sljit_p;
  312. /* Floating point types. */
  313. typedef float sljit_s;
  314. typedef double sljit_d;
  315. /* Shift for pointer sized data. */
  316. #define SLJIT_POINTER_SHIFT SLJIT_WORD_SHIFT
  317. /* Shift for double precision sized data. */
  318. #define SLJIT_DOUBLE_SHIFT 3
  319. #define SLJIT_SINGLE_SHIFT 2
  320. #ifndef SLJIT_W
  321. /* Defining long constants. */
  322. #if (defined SLJIT_64BIT_ARCHITECTURE && SLJIT_64BIT_ARCHITECTURE)
  323. #define SLJIT_W(w) (w##ll)
  324. #else
  325. #define SLJIT_W(w) (w)
  326. #endif
  327. #endif /* !SLJIT_W */
  328. /*************************/
  329. /* Endianness detection. */
  330. /*************************/
  331. #if !defined(SLJIT_BIG_ENDIAN) && !defined(SLJIT_LITTLE_ENDIAN)
  332. /* These macros are mostly useful for the applications. */
  333. #if (defined SLJIT_CONFIG_PPC_32 && SLJIT_CONFIG_PPC_32) \
  334. || (defined SLJIT_CONFIG_PPC_64 && SLJIT_CONFIG_PPC_64)
  335. #ifdef __LITTLE_ENDIAN__
  336. #define SLJIT_LITTLE_ENDIAN 1
  337. #else
  338. #define SLJIT_BIG_ENDIAN 1
  339. #endif
  340. #elif (defined SLJIT_CONFIG_MIPS_32 && SLJIT_CONFIG_MIPS_32) \
  341. || (defined SLJIT_CONFIG_MIPS_64 && SLJIT_CONFIG_MIPS_64)
  342. #ifdef __MIPSEL__
  343. #define SLJIT_LITTLE_ENDIAN 1
  344. #else
  345. #define SLJIT_BIG_ENDIAN 1
  346. #endif
  347. #elif (defined SLJIT_CONFIG_SPARC_32 && SLJIT_CONFIG_SPARC_32)
  348. #define SLJIT_BIG_ENDIAN 1
  349. #else
  350. #define SLJIT_LITTLE_ENDIAN 1
  351. #endif
  352. #endif /* !defined(SLJIT_BIG_ENDIAN) && !defined(SLJIT_LITTLE_ENDIAN) */
  353. /* Sanity check. */
  354. #if (defined SLJIT_BIG_ENDIAN && SLJIT_BIG_ENDIAN) && (defined SLJIT_LITTLE_ENDIAN && SLJIT_LITTLE_ENDIAN)
  355. #error "Exactly one endianness must be selected"
  356. #endif
  357. #if !(defined SLJIT_BIG_ENDIAN && SLJIT_BIG_ENDIAN) && !(defined SLJIT_LITTLE_ENDIAN && SLJIT_LITTLE_ENDIAN)
  358. #error "Exactly one endianness must be selected"
  359. #endif
  360. #ifndef SLJIT_UNALIGNED
  361. #if (defined SLJIT_CONFIG_X86_32 && SLJIT_CONFIG_X86_32) \
  362. || (defined SLJIT_CONFIG_X86_64 && SLJIT_CONFIG_X86_64) \
  363. || (defined SLJIT_CONFIG_ARM_V7 && SLJIT_CONFIG_ARM_V7) \
  364. || (defined SLJIT_CONFIG_ARM_THUMB2 && SLJIT_CONFIG_ARM_THUMB2) \
  365. || (defined SLJIT_CONFIG_ARM_64 && SLJIT_CONFIG_ARM_64) \
  366. || (defined SLJIT_CONFIG_PPC_32 && SLJIT_CONFIG_PPC_32) \
  367. || (defined SLJIT_CONFIG_PPC_64 && SLJIT_CONFIG_PPC_64)
  368. #define SLJIT_UNALIGNED 1
  369. #endif
  370. #endif /* !SLJIT_UNALIGNED */
  371. #if (defined SLJIT_CONFIG_X86_32 && SLJIT_CONFIG_X86_32)
  372. /* Auto detect SSE2 support using CPUID.
  373. On 64 bit x86 cpus, sse2 must be present. */
  374. #define SLJIT_DETECT_SSE2 1
  375. #endif
  376. /*****************************************************************************************/
  377. /* Calling convention of functions generated by SLJIT or called from the generated code. */
  378. /*****************************************************************************************/
  379. #ifndef SLJIT_CALL
  380. #if (defined SLJIT_USE_CDECL_CALLING_CONVENTION && SLJIT_USE_CDECL_CALLING_CONVENTION)
  381. /* Force cdecl. */
  382. #define SLJIT_CALL
  383. #elif (defined SLJIT_CONFIG_X86_32 && SLJIT_CONFIG_X86_32)
  384. #if defined(__GNUC__) && !defined(__APPLE__)
  385. #define SLJIT_CALL __attribute__ ((fastcall))
  386. #define SLJIT_X86_32_FASTCALL 1
  387. #elif defined(_MSC_VER)
  388. #define SLJIT_CALL __fastcall
  389. #define SLJIT_X86_32_FASTCALL 1
  390. #elif defined(__BORLANDC__)
  391. #define SLJIT_CALL __msfastcall
  392. #define SLJIT_X86_32_FASTCALL 1
  393. #else /* Unknown compiler. */
  394. /* The cdecl attribute is the default. */
  395. #define SLJIT_CALL
  396. #endif
  397. #else /* Non x86-32 architectures. */
  398. #define SLJIT_CALL
  399. #endif /* SLJIT_CONFIG_X86_32 */
  400. #endif /* !SLJIT_CALL */
  401. #ifndef SLJIT_INDIRECT_CALL
  402. #if ((defined SLJIT_CONFIG_PPC_64 && SLJIT_CONFIG_PPC_64) && (defined SLJIT_BIG_ENDIAN && SLJIT_BIG_ENDIAN)) \
  403. || ((defined SLJIT_CONFIG_PPC_32 && SLJIT_CONFIG_PPC_32) && defined _AIX)
  404. /* It seems certain ppc compilers use an indirect addressing for functions
  405. which makes things complicated. */
  406. #define SLJIT_INDIRECT_CALL 1
  407. #endif
  408. #endif /* SLJIT_INDIRECT_CALL */
  409. /* The offset which needs to be substracted from the return address to
  410. determine the next executed instruction after return. */
  411. #ifndef SLJIT_RETURN_ADDRESS_OFFSET
  412. #if (defined SLJIT_CONFIG_SPARC_32 && SLJIT_CONFIG_SPARC_32)
  413. #define SLJIT_RETURN_ADDRESS_OFFSET 8
  414. #else
  415. #define SLJIT_RETURN_ADDRESS_OFFSET 0
  416. #endif
  417. #endif /* SLJIT_RETURN_ADDRESS_OFFSET */
  418. /***************************************************/
  419. /* Functions of the built-in executable allocator. */
  420. /***************************************************/
  421. #if (defined SLJIT_EXECUTABLE_ALLOCATOR && SLJIT_EXECUTABLE_ALLOCATOR)
  422. SLJIT_API_FUNC_ATTRIBUTE void* sljit_malloc_exec(sljit_uw size);
  423. SLJIT_API_FUNC_ATTRIBUTE void sljit_free_exec(void* ptr);
  424. SLJIT_API_FUNC_ATTRIBUTE void sljit_free_unused_memory_exec(void);
  425. #define SLJIT_MALLOC_EXEC(size) sljit_malloc_exec(size)
  426. #define SLJIT_FREE_EXEC(ptr) sljit_free_exec(ptr)
  427. #endif
  428. /**********************************************/
  429. /* Registers and locals offset determination. */
  430. /**********************************************/
  431. #if (defined SLJIT_CONFIG_X86_32 && SLJIT_CONFIG_X86_32)
  432. #define SLJIT_NUMBER_OF_REGISTERS 10
  433. #define SLJIT_NUMBER_OF_SAVED_REGISTERS 7
  434. #if (defined SLJIT_X86_32_FASTCALL && SLJIT_X86_32_FASTCALL)
  435. #define SLJIT_LOCALS_OFFSET_BASE ((2 + 4) * sizeof(sljit_sw))
  436. #else
  437. /* Maximum 3 arguments are passed on the stack, +1 for double alignment. */
  438. #define SLJIT_LOCALS_OFFSET_BASE ((3 + 1 + 4) * sizeof(sljit_sw))
  439. #endif /* SLJIT_X86_32_FASTCALL */
  440. #elif (defined SLJIT_CONFIG_X86_64 && SLJIT_CONFIG_X86_64)
  441. #ifndef _WIN64
  442. #define SLJIT_NUMBER_OF_REGISTERS 12
  443. #define SLJIT_NUMBER_OF_SAVED_REGISTERS 6
  444. #define SLJIT_LOCALS_OFFSET_BASE (sizeof(sljit_sw))
  445. #else
  446. #define SLJIT_NUMBER_OF_REGISTERS 12
  447. #define SLJIT_NUMBER_OF_SAVED_REGISTERS 8
  448. #define SLJIT_LOCALS_OFFSET_BASE ((4 + 2) * sizeof(sljit_sw))
  449. #endif /* _WIN64 */
  450. #elif (defined SLJIT_CONFIG_ARM_V5 && SLJIT_CONFIG_ARM_V5) || (defined SLJIT_CONFIG_ARM_V7 && SLJIT_CONFIG_ARM_V7)
  451. #define SLJIT_NUMBER_OF_REGISTERS 11
  452. #define SLJIT_NUMBER_OF_SAVED_REGISTERS 8
  453. #define SLJIT_LOCALS_OFFSET_BASE 0
  454. #elif (defined SLJIT_CONFIG_ARM_THUMB2 && SLJIT_CONFIG_ARM_THUMB2)
  455. #define SLJIT_NUMBER_OF_REGISTERS 11
  456. #define SLJIT_NUMBER_OF_SAVED_REGISTERS 7
  457. #define SLJIT_LOCALS_OFFSET_BASE 0
  458. #elif (defined SLJIT_CONFIG_ARM_64 && SLJIT_CONFIG_ARM_64)
  459. #define SLJIT_NUMBER_OF_REGISTERS 25
  460. #define SLJIT_NUMBER_OF_SAVED_REGISTERS 10
  461. #define SLJIT_LOCALS_OFFSET_BASE (2 * sizeof(sljit_sw))
  462. #elif (defined SLJIT_CONFIG_PPC && SLJIT_CONFIG_PPC)
  463. #define SLJIT_NUMBER_OF_REGISTERS 22
  464. #define SLJIT_NUMBER_OF_SAVED_REGISTERS 17
  465. #if (defined SLJIT_CONFIG_PPC_64 && SLJIT_CONFIG_PPC_64) || (defined _AIX)
  466. #define SLJIT_LOCALS_OFFSET_BASE ((6 + 8) * sizeof(sljit_sw))
  467. #elif (defined SLJIT_CONFIG_PPC_32 && SLJIT_CONFIG_PPC_32)
  468. /* Add +1 for double alignment. */
  469. #define SLJIT_LOCALS_OFFSET_BASE ((3 + 1) * sizeof(sljit_sw))
  470. #else
  471. #define SLJIT_LOCALS_OFFSET_BASE (3 * sizeof(sljit_sw))
  472. #endif /* SLJIT_CONFIG_PPC_64 || _AIX */
  473. #elif (defined SLJIT_CONFIG_MIPS && SLJIT_CONFIG_MIPS)
  474. #define SLJIT_NUMBER_OF_REGISTERS 17
  475. #define SLJIT_NUMBER_OF_SAVED_REGISTERS 8
  476. #if (defined SLJIT_CONFIG_MIPS_32 && SLJIT_CONFIG_MIPS_32)
  477. #define SLJIT_LOCALS_OFFSET_BASE (4 * sizeof(sljit_sw))
  478. #else
  479. #define SLJIT_LOCALS_OFFSET_BASE 0
  480. #endif
  481. #elif (defined SLJIT_CONFIG_SPARC && SLJIT_CONFIG_SPARC)
  482. #define SLJIT_NUMBER_OF_REGISTERS 18
  483. #define SLJIT_NUMBER_OF_SAVED_REGISTERS 14
  484. #if (defined SLJIT_CONFIG_SPARC_32 && SLJIT_CONFIG_SPARC_32)
  485. /* Add +1 for double alignment. */
  486. #define SLJIT_LOCALS_OFFSET_BASE ((23 + 1) * sizeof(sljit_sw))
  487. #endif
  488. #elif (defined SLJIT_CONFIG_TILEGX && SLJIT_CONFIG_TILEGX)
  489. #define SLJIT_NUMBER_OF_REGISTERS 10
  490. #define SLJIT_NUMBER_OF_SAVED_REGISTERS 5
  491. #define SLJIT_LOCALS_OFFSET_BASE 0
  492. #elif (defined SLJIT_CONFIG_UNSUPPORTED && SLJIT_CONFIG_UNSUPPORTED)
  493. #define SLJIT_NUMBER_OF_REGISTERS 0
  494. #define SLJIT_NUMBER_OF_SAVED_REGISTERS 0
  495. #define SLJIT_LOCALS_OFFSET_BASE 0
  496. #endif
  497. #define SLJIT_LOCALS_OFFSET (SLJIT_LOCALS_OFFSET_BASE)
  498. #define SLJIT_NUMBER_OF_SCRATCH_REGISTERS \
  499. (SLJIT_NUMBER_OF_REGISTERS - SLJIT_NUMBER_OF_SAVED_REGISTERS)
  500. #define SLJIT_NUMBER_OF_FLOAT_REGISTERS 6
  501. #if (defined SLJIT_CONFIG_X86_64 && SLJIT_CONFIG_X86_64) && (defined _WIN64)
  502. #define SLJIT_NUMBER_OF_SAVED_FLOAT_REGISTERS 1
  503. #else
  504. #define SLJIT_NUMBER_OF_SAVED_FLOAT_REGISTERS 0
  505. #endif
  506. #define SLJIT_NUMBER_OF_SCRATCH_FLOAT_REGISTERS \
  507. (SLJIT_NUMBER_OF_FLOAT_REGISTERS - SLJIT_NUMBER_OF_SAVED_FLOAT_REGISTERS)
  508. /*************************************/
  509. /* Debug and verbose related macros. */
  510. /*************************************/
  511. #if (defined SLJIT_VERBOSE && SLJIT_VERBOSE)
  512. #include <stdio.h>
  513. #endif
  514. #if (defined SLJIT_DEBUG && SLJIT_DEBUG)
  515. #if !defined(SLJIT_ASSERT) || !defined(SLJIT_ASSERT_STOP)
  516. /* SLJIT_HALT_PROCESS must halt the process. */
  517. #ifndef SLJIT_HALT_PROCESS
  518. #include <stdlib.h>
  519. #define SLJIT_HALT_PROCESS() \
  520. abort();
  521. #endif /* !SLJIT_HALT_PROCESS */
  522. #include <stdio.h>
  523. #endif /* !SLJIT_ASSERT || !SLJIT_ASSERT_STOP */
  524. /* Feel free to redefine these two macros. */
  525. #ifndef SLJIT_ASSERT
  526. #define SLJIT_ASSERT(x) \
  527. do { \
  528. if (SLJIT_UNLIKELY(!(x))) { \
  529. printf("Assertion failed at " __FILE__ ":%d\n", __LINE__); \
  530. SLJIT_HALT_PROCESS(); \
  531. } \
  532. } while (0)
  533. #endif /* !SLJIT_ASSERT */
  534. #ifndef SLJIT_ASSERT_STOP
  535. #define SLJIT_ASSERT_STOP() \
  536. do { \
  537. printf("Should never been reached " __FILE__ ":%d\n", __LINE__); \
  538. SLJIT_HALT_PROCESS(); \
  539. } while (0)
  540. #endif /* !SLJIT_ASSERT_STOP */
  541. #else /* (defined SLJIT_DEBUG && SLJIT_DEBUG) */
  542. /* Forcing empty, but valid statements. */
  543. #undef SLJIT_ASSERT
  544. #undef SLJIT_ASSERT_STOP
  545. #define SLJIT_ASSERT(x) \
  546. do { } while (0)
  547. #define SLJIT_ASSERT_STOP() \
  548. do { } while (0)
  549. #endif /* (defined SLJIT_DEBUG && SLJIT_DEBUG) */
  550. #ifndef SLJIT_COMPILE_ASSERT
  551. /* Should be improved eventually. */
  552. #define SLJIT_COMPILE_ASSERT(x, description) \
  553. SLJIT_ASSERT(x)
  554. #endif /* !SLJIT_COMPILE_ASSERT */
  555. #endif