[project @ 2002-03-04 17:01:26 by simonmar]
[ghc-hetmet.git] / ghc / compiler / HsVersions.h
1 #ifndef HSVERSIONS_H
2 #define HSVERSIONS_H
3
4 #if 0
5
6 IMPORTANT!  If you put extra tabs/spaces in these macro definitions,
7 you will screw up the layout where they are used in case expressions!
8
9 (This is cpp-dependent, of course)
10
11 #endif
12
13 #ifdef __GLASGOW_HASKELL__
14 #define GLOBAL_VAR(name,value,ty)  \
15 name = Util.global (value) :: IORef (ty); \
16 {-# NOINLINE name #-}
17 #endif
18
19 #define COMMA ,
20
21 #ifdef DEBUG
22 #define ASSERT(e) if (not (e)) then (assertPanic __FILE__ __LINE__) else
23 #define ASSERT2(e,msg) if (not (e)) then (assertPprPanic __FILE__ __LINE__ (msg)) else
24 #define WARN( e, msg ) (warnPprTrace (e) __FILE__ __LINE__ (msg))
25 #else
26 #define ASSERT(e)
27 #define ASSERT2(e,msg)
28 #define WARN(e,msg)
29 #endif
30
31 -- temporary usage assertion control KSW 2000-10
32 #ifdef DO_USAGES
33 #define UASSERT(e) ASSERT(e)
34 #define UASSERT2(e,msg) ASSERT2(e,msg)
35 #else
36 #define UASSERT(e)
37 #define UASSERT2(e,msg)
38 #endif
39
40 #if __GLASGOW_HASKELL__ >= 23
41
42 -- This #ifndef lets us switch off the "import FastString"
43 -- when compiling FastString itself
44 #ifndef COMPILING_FAST_STRING
45 -- 
46 import qualified FastString 
47 #endif
48
49 # define USE_FAST_STRINGS 1
50 # define FAST_STRING    FastString.FastString
51 # define SLIT(x)        (FastString.mkFastCharString# (x#))
52 # define FSLIT(x)       (FastString.mkFastString# (x#))
53 # define _NULL_         FastString.nullFastString
54 # define _NIL_          (FastString.mkFastString "")
55 # define _CONS_         FastString.consFS
56 # define _HEAD_         FastString.headFS
57 # define _HEAD_INT_     FastString.headIntFS
58 # define _TAIL_         FastString.tailFS
59 # define _LENGTH_       FastString.lengthFS
60 # define _PK_           FastString.mkFastString
61 # define _UNPK_         FastString.unpackFS
62 # define _UNPK_INT_     FastString.unpackIntFS
63 # define _APPEND_       `FastString.appendFS`
64 #else
65 # error I think that FastString is now always used. If not, fix this.
66 # define FAST_STRING String
67 # define SLIT(x)      (x)
68 # define _CMP_STRING_ cmpString
69 # define _NULL_       null
70 # define _NIL_        ""
71 # define _CONS_       (:)
72 # define _HEAD_       head
73 # define _TAIL_       tail
74 # define _LENGTH_     length
75 # define _PK_         (\x->x)
76 # define _UNPK_       (\x->x)
77 # define _SUBSTR_     substr{-from Utils-}
78 # define _APPEND_     ++
79 #endif
80
81 #endif