Add handling for | to the transitional alternative layout rule
[ghc-hetmet.git] / includes / Rts.h
1 /* -----------------------------------------------------------------------------
2  *
3  * (c) The GHC Team, 1998-2009
4  *
5  * RTS external APIs.  This file declares everything that the GHC RTS
6  * exposes externally.
7  *
8  * To understand the structure of the RTS headers, see the wiki:
9  *   http://hackage.haskell.org/trac/ghc/wiki/Commentary/SourceTree/Includes
10  *
11  * ---------------------------------------------------------------------------*/
12
13 #ifndef RTS_H
14 #define RTS_H
15
16 #ifdef __cplusplus
17 extern "C" {
18 #endif
19
20 #ifndef IN_STG_CODE
21 #define IN_STG_CODE 0
22 #endif
23 #include "Stg.h"
24
25 #include "HsFFI.h"
26 #include "RtsAPI.h"
27
28 // Turn off inlining when debugging - it obfuscates things
29 #ifdef DEBUG
30 # undef  STATIC_INLINE
31 # define STATIC_INLINE static
32 #endif
33
34 #include "rts/Types.h"
35
36 #if __GNUC__ >= 3
37 /* Assume that a flexible array member at the end of a struct
38  * can be defined thus: T arr[]; */
39 #define FLEXIBLE_ARRAY
40 #else
41 /* Assume that it must be defined thus: T arr[0]; */
42 #define FLEXIBLE_ARRAY 0
43 #endif
44
45 #if __GNUC__ >= 3
46 #define ATTRIBUTE_ALIGNED(n) __attribute__((aligned(n)))
47 #else
48 #define ATTRIBUTE_ALIGNED(n) /*nothing*/
49 #endif
50
51 // Symbols that are extern, but private to the RTS, are declared
52 // with visibility "hidden" to hide them outside the RTS shared
53 // library.
54 #if !defined(mingw32_HOST_OS)
55 #define RTS_PRIVATE  GNUC3_ATTRIBUTE(visibility("hidden"))
56 #else
57 #define RTS_PRIVATE  /* disabled: RTS_PRIVATE */
58 #endif
59
60 #if __GNUC__ > 4
61 #define BEGIN_RTS_PRIVATE #pragma GCC visibility push(hidden)
62 #define END_RTS_PRIVATE   #pragma GCC visibility pop
63 #else
64 #define BEGIN_RTS_PRIVATE /* disabled: BEGIN_RTS_PRIVATE */
65 #define END_RTS_PRIVATE   /* disabled: END_RTS_PRIVATE */
66 #endif
67
68 #if __GNUC__ > 4
69 #define RTS_UNLIKELY(p) __builtin_expect((p),0)
70 #else
71 #define RTS_UNLIKELY(p) p
72 #endif
73
74 /* Fix for mingw stat problem (done here so it's early enough) */
75 #ifdef mingw32_HOST_OS
76 #define __MSVCRT__ 1
77 #endif
78
79 /* Needed to get the macro version of errno on some OSs, and also to
80    get prototypes for the _r versions of C library functions. */
81 #ifndef _REENTRANT
82 #define _REENTRANT 1
83 #endif
84
85 /*
86  * We often want to know the size of something in units of an
87  * StgWord... (rounded up, of course!)
88  */
89 #define ROUNDUP_BYTES_TO_WDS(n) (((n) + sizeof(W_) - 1) / sizeof(W_))
90
91 #define sizeofW(t) ROUNDUP_BYTES_TO_WDS(sizeof(t))
92
93 /* -----------------------------------------------------------------------------
94    Assertions and Debuggery
95
96    CHECK(p)   evaluates p and terminates with an error if p is false
97    ASSERT(p)  like CHECK(p) if DEBUG is on, otherwise a no-op
98    -------------------------------------------------------------------------- */
99
100 void _assertFail(const char *filename, unsigned int linenum)
101    GNUC3_ATTRIBUTE(__noreturn__);
102
103 #define CHECK(predicate)                        \
104         if (predicate)                          \
105             /*null*/;                           \
106         else                                    \
107             _assertFail(__FILE__, __LINE__)
108
109 #ifndef DEBUG
110 #define ASSERT(predicate) /* nothing */
111 #else
112 #define ASSERT(predicate) CHECK(predicate)
113 #endif /* DEBUG */
114
115 /* 
116  * Use this on the RHS of macros which expand to nothing
117  * to make sure that the macro can be used in a context which
118  * demands a non-empty statement.
119  */
120
121 #define doNothing() do { } while (0)
122
123 #ifdef DEBUG
124 #define USED_IF_DEBUG
125 #define USED_IF_NOT_DEBUG STG_UNUSED
126 #else
127 #define USED_IF_DEBUG STG_UNUSED
128 #define USED_IF_NOT_DEBUG
129 #endif
130
131 #ifdef THREADED_RTS
132 #define USED_IF_THREADS
133 #define USED_IF_NOT_THREADS STG_UNUSED
134 #else
135 #define USED_IF_THREADS STG_UNUSED
136 #define USED_IF_NOT_THREADS
137 #endif
138
139 /*
140  * Getting printf formats right for platform-dependent typedefs
141  */
142 #if SIZEOF_LONG == 8
143 #define FMT_Word64 "lu"
144 #define FMT_Int64  "ld"
145 #else
146 #define FMT_Word64 "llu"
147 #define FMT_Int64  "lld"
148 #endif
149
150 /* -----------------------------------------------------------------------------
151    Include everything STG-ish
152    -------------------------------------------------------------------------- */
153
154 /* System headers: stdlib.h is eeded so that we can use NULL.  It must
155  * come after MachRegs.h, because stdlib.h might define some inline
156  * functions which may only be defined after register variables have
157  * been declared.
158  */
159 #include <stdlib.h>
160
161 #include "rts/Config.h"
162
163 /* Global constaints */
164 #include "rts/Constants.h"
165
166 /* Profiling information */
167 #include "rts/prof/CCS.h"
168 #include "rts/prof/LDV.h"
169
170 /* Parallel information */
171 #include "rts/OSThreads.h"
172 #include "rts/SpinLock.h"
173
174 #include "rts/Messages.h"
175
176 /* Storage format definitions */
177 #include "rts/storage/FunTypes.h"
178 #include "rts/storage/InfoTables.h"
179 #include "rts/storage/Closures.h"
180 #include "rts/storage/Liveness.h"
181 #include "rts/storage/ClosureTypes.h"
182 #include "rts/storage/TSO.h"
183 #include "stg/MiscClosures.h" /* InfoTables, closures etc. defined in the RTS */
184 #include "rts/storage/SMPClosureOps.h"
185 #include "rts/storage/Block.h"
186 #include "rts/storage/ClosureMacros.h"
187 #include "rts/storage/MBlock.h"
188 #include "rts/storage/GC.h"
189
190 /* Other RTS external APIs */
191 #include "rts/Parallel.h"
192 #include "rts/Hooks.h"
193 #include "rts/Signals.h"
194 #include "rts/BlockSignals.h"
195 #include "rts/Hpc.h"
196 #include "rts/Flags.h"
197 #include "rts/Adjustor.h"
198 #include "rts/FileLock.h"
199 #include "rts/Globals.h"
200 #include "rts/IOManager.h"
201 #include "rts/Linker.h"
202 #include "rts/Threads.h"
203 #include "rts/Ticky.h"
204 #include "rts/Timer.h"
205 #include "rts/Stable.h"
206 #include "rts/TTY.h"
207 #include "rts/Utils.h"
208 #include "rts/PrimFloat.h"
209
210 /* Misc stuff without a home */
211 DLL_IMPORT_RTS extern char **prog_argv; /* so we can get at these from Haskell */
212 DLL_IMPORT_RTS extern int    prog_argc;
213 DLL_IMPORT_RTS extern char  *prog_name;
214
215 void stackOverflow(void);
216
217 void stg_exit(int n) GNU_ATTRIBUTE(__noreturn__);
218
219 #ifndef mingw32_HOST_OS
220 int stg_sig_install (int, int, void *);
221 #endif
222
223 /* -----------------------------------------------------------------------------
224    RTS Exit codes
225    -------------------------------------------------------------------------- */
226
227 /* 255 is allegedly used by dynamic linkers to report linking failure */
228 #define EXIT_INTERNAL_ERROR 254
229 #define EXIT_DEADLOCK       253
230 #define EXIT_INTERRUPTED    252
231 #define EXIT_HEAPOVERFLOW   251
232 #define EXIT_KILLED         250
233
234 /* -----------------------------------------------------------------------------
235    Miscellaneous garbage
236    -------------------------------------------------------------------------- */
237
238 /* declarations for runtime flags/values */
239 #define MAX_RTS_ARGS 32
240
241 #ifdef DEBUG
242 #define TICK_VAR(arity) \
243   extern StgInt SLOW_CALLS_##arity; \
244   extern StgInt RIGHT_ARITY_##arity; \
245   extern StgInt TAGGED_PTR_##arity;
246
247 extern StgInt TOTAL_CALLS;
248
249 TICK_VAR(1)
250 TICK_VAR(2)
251 #endif
252
253 /* -----------------------------------------------------------------------------
254    Assertions and Debuggery
255    -------------------------------------------------------------------------- */
256
257 #define IF_RTSFLAGS(c,s)  if (RtsFlags.c) { s; }
258
259 #ifdef DEBUG
260 #if IN_STG_CODE
261 #define IF_DEBUG(c,s)  if (RtsFlags[0].DebugFlags.c) { s; }
262 #else
263 #define IF_DEBUG(c,s)  if (RtsFlags.DebugFlags.c) { s; }
264 #endif
265 #else
266 #define IF_DEBUG(c,s)  doNothing()
267 #endif
268
269 #ifdef DEBUG
270 #define DEBUG_ONLY(s) s
271 #else
272 #define DEBUG_ONLY(s) doNothing()
273 #endif
274
275 /* -----------------------------------------------------------------------------
276    Useful macros and inline functions
277    -------------------------------------------------------------------------- */
278
279 #if defined(__GNUC__)
280 #define SUPPORTS_TYPEOF
281 #endif
282
283 #if defined(SUPPORTS_TYPEOF)
284 #define stg_min(a,b) ({typeof(a) _a = (a), _b = (b); _a <= _b ? _a : _b; })
285 #define stg_max(a,b) ({typeof(a) _a = (a), _b = (b); _a <= _b ? _b : _a; })
286 #else
287 #define stg_min(a,b) ((a) <= (b) ? (a) : (b))
288 #define stg_max(a,b) ((a) <= (b) ? (b) : (a))
289 #endif
290
291 /* -------------------------------------------------------------------------- */
292
293 #ifdef __cplusplus
294 }
295 #endif
296
297 #endif /* RTS_H */