]> git.mxchange.org Git - simgear.git/blob - simgear/nasal/naref.h
Merge branch 'topic/nasal' into next
[simgear.git] / simgear / nasal / naref.h
1 #ifndef _NAREF_H
2 #define _NAREF_H
3
4 /* Rather than play elaborate and complicated games with
5  * platform-dependent endianness headers, just detect the platforms we
6  * support.  This list is simpler and smaller, yet still quite
7  * complete. */
8 #if (defined(__x86_64) && defined(__linux__)) || defined(__sparcv9) || \
9     defined(__powerpc64__)
10 /* Win64 and Irix should work with this too, but have not been
11  * tested */
12 # define NASAL_NAN64
13 #elif defined(_M_IX86) || defined(i386) || defined(__x86_64) || \
14       defined(__ia64__) || defined(_M_IA64) || defined(__ARMEL__) 
15 # define NASAL_LE
16 #elif defined(__sparc) || defined(__ppc__) || defined(__PPC) || \
17       defined(__mips) || defined(__ARMEB__)
18 # define NASAL_BE
19 #else
20 # error Unrecognized CPU architecture
21 #endif
22
23 typedef union {
24     struct naObj* obj;
25     struct naStr* str;
26     struct naVec* vec;
27     struct naHash* hash;
28     struct naCode* code;
29     struct naFunc* func;
30     struct naCCode* ccode;
31     struct naGhost* ghost;
32 } naPtr;
33
34 /* On supported 64 bit platforms (those where all memory returned from
35  * naAlloc() is guaranteed to lie between 0 and 2^48-1) we union the
36  * double with the pointer, and use fancy tricks (see data.h) to make
37  * sure all pointers are stored as NaNs.  32 bit layouts (and 64 bit
38  * platforms where we haven't tested the trick above) need
39  * endianness-dependent ordering to make sure that the reftag lies in
40  * the top bits of the double */
41
42 #if defined(NASAL_LE)
43 typedef struct { naPtr ptr; int reftag; } naRefPart;
44 #elif defined(NASAL_BE)
45 typedef struct { int reftag; naPtr ptr; } naRefPart;
46 #endif
47
48 #if defined(NASAL_NAN64)
49 typedef union { double num; void* ptr; } naRef;
50 #else
51 typedef union { double num; naRefPart ref; } naRef;
52 #endif
53
54 #endif // _NAREF_H