lots of portability changes (#1405)
[ghc-hetmet.git] / 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 /* Useful in the headers that we share with the RTS */
14 #define COMPILING_GHC 1
15
16 /* Pull in all the platform defines for this build (foo_TARGET_ARCH etc.) */
17 #include "ghc_boot_platform.h"
18
19 /* Pull in the autoconf defines (HAVE_FOO), but don't include
20  * ghcconfig.h, because that will include ghcplatform.h which has the
21  * wrong platform settings for the compiler (it has the platform
22  * settings for the target plat instead). */
23 #include "../includes/ghcautoconf.h"
24
25 #if !defined(__GLASGOW_HASKELL__) || __GLASGOW_HASKELL__ >= 602
26 #define SYSTEM_IO_ERROR System.IO.Error
27 #else
28 #define SYSTEM_IO_ERROR System.IO
29 #endif
30
31 /* Global variables may not work in other Haskell implementations,
32  * but we need them currently! so the conditional on GLASGOW won't do. */
33 #if defined(__GLASGOW_HASKELL__) || !defined(__GLASGOW_HASKELL__)
34 #define GLOBAL_VAR(name,value,ty)  \
35 name = Util.global (value) :: IORef (ty); \
36 {-# NOINLINE name #-}
37 #endif
38
39 #define COMMA ,
40
41 #ifdef DEBUG
42 #define debugIsOn True
43 #define ASSERT(e) if (not (e)) then (assertPanic __FILE__ __LINE__) else
44 #define ASSERT2(e,msg) if (not (e)) then (assertPprPanic __FILE__ __LINE__ (msg)) else
45 #define WARN( e, msg ) (warnPprTrace (e) __FILE__ __LINE__ (msg))
46 #define ASSERTM(mbool) do { bool <- mbool; ASSERT(bool) return () }
47 #define ASSERTM2(mbool,msg) do { bool <- mbool; ASSERT2(bool,msg) return () }
48 #else
49 #define debugIsOn False
50 -- We have to actually use all the variables we are given or we may get
51 -- unused variable warnings when DEBUG is off.
52 #define ASSERT(e)      if False && (not (e)) then panic "ASSERT" else
53 #define ASSERT2(e,msg) if False && (not (e)) then pprPanic "ASSERT2" (msg) else
54 #define ASSERTM(e)       do { let { _mbool = (e) } }
55 -- Here we deliberately don't use when as Control.Monad might not be imported
56 #define ASSERTM2(e,msg)  do { let { _mbool = (e) }; if False then panic "ASSERTM2" else return () }
57 #define WARN(e,msg)    if False && (e) then pprPanic "WARN" (msg) else
58 #endif
59
60 -- This conditional lets us switch off the "import FastString"
61 -- when compiling FastString itself, or when compiling modules that
62 -- don't use it (and would otherwise get warnings, which we treat
63 -- as errors). Can we do this more nicely?
64 #if !defined(COMPILING_FAST_STRING) && !defined(FAST_STRING_NOT_NEEDED)
65 -- 
66 import qualified FastString as FS 
67 #endif
68
69 #if defined(__GLASGOW_HASKELL__)
70 #define SLIT(x)  (FS.mkLitString# (x#))
71 #define FSLIT(x) (FS.mkFastString# (x#))
72 #else
73 #define SLIT(x)  (FS.mkLitString (x))
74 #define FSLIT(x) (FS.mkFastString (x))
75 #endif
76
77 -- Useful for declaring arguments to be strict
78 #define STRICT1(f) f a | a `seq` False = undefined
79 #define STRICT2(f) f a b | a `seq` b `seq` False = undefined
80 #define STRICT3(f) f a b c | a `seq` b `seq` c `seq` False = undefined
81 #define STRICT4(f) f a b c d | a `seq` b `seq` c `seq` d `seq` False = undefined
82 #define STRICT5(f) f a b c d e | a `seq` b `seq` c `seq` d `seq` e `seq` False = undefined
83 #define STRICT6(f) f a b c d e f | a `seq` b `seq` c `seq` d `seq` e `seq` f `seq` False = undefined
84
85 #endif /* HsVersions.h */
86