fix haddock submodule pointer
[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(HAS_VISIBILITY_HIDDEN)
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 RTS_UNLIKELY(p) __builtin_expect((p),0)
62 #else
63 #define RTS_UNLIKELY(p) p
64 #endif
65
66 /* Fix for mingw stat problem (done here so it's early enough) */
67 #ifdef mingw32_HOST_OS
68 #define __MSVCRT__ 1
69 #endif
70
71 /* Needed to get the macro version of errno on some OSs, and also to
72    get prototypes for the _r versions of C library functions. */
73 #ifndef _REENTRANT
74 #define _REENTRANT 1
75 #endif
76
77 /*
78  * We often want to know the size of something in units of an
79  * StgWord... (rounded up, of course!)
80  */
81 #define ROUNDUP_BYTES_TO_WDS(n) (((n) + sizeof(W_) - 1) / sizeof(W_))
82
83 #define sizeofW(t) ROUNDUP_BYTES_TO_WDS(sizeof(t))
84
85 /* -----------------------------------------------------------------------------
86    Assertions and Debuggery
87
88    CHECK(p)   evaluates p and terminates with an error if p is false
89    ASSERT(p)  like CHECK(p) if DEBUG is on, otherwise a no-op
90    -------------------------------------------------------------------------- */
91
92 void _assertFail(const char *filename, unsigned int linenum)
93    GNUC3_ATTRIBUTE(__noreturn__);
94
95 #define CHECK(predicate)                        \
96         if (predicate)                          \
97             /*null*/;                           \
98         else                                    \
99             _assertFail(__FILE__, __LINE__)
100
101 #define CHECKM(predicate, msg, ...)             \
102         if (predicate)                          \
103             /*null*/;                           \
104         else                                    \
105             barf(msg, ##__VA_ARGS__)
106
107 #ifndef DEBUG
108 #define ASSERT(predicate) /* nothing */
109 #define ASSERTM(predicate,msg,...) /* nothing */
110 #else
111 #define ASSERT(predicate) CHECK(predicate)
112 #define ASSERTM(predicate,msg,...) CHECKM(predicate,msg,##__VA_ARGS__)
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 #if defined(mingw32_HOST_OS)
147 /* mingw doesn't understand %llu/%lld - it treats them as 32-bit
148    rather than 64-bit */
149 #define FMT_Word64 "I64u"
150 #define FMT_Int64  "I64d"
151 #else
152 #define FMT_Word64 "llu"
153 #define FMT_Int64  "lld"
154 #endif
155 #endif
156
157 /* -----------------------------------------------------------------------------
158    Include everything STG-ish
159    -------------------------------------------------------------------------- */
160
161 /* System headers: stdlib.h is eeded so that we can use NULL.  It must
162  * come after MachRegs.h, because stdlib.h might define some inline
163  * functions which may only be defined after register variables have
164  * been declared.
165  */
166 #include <stdlib.h>
167
168 #include "rts/Config.h"
169
170 /* Global constaints */
171 #include "rts/Constants.h"
172
173 /* Profiling information */
174 #include "rts/prof/CCS.h"
175 #include "rts/prof/LDV.h"
176
177 /* Parallel information */
178 #include "rts/OSThreads.h"
179 #include "rts/SpinLock.h"
180
181 #include "rts/Messages.h"
182
183 /* Storage format definitions */
184 #include "rts/storage/FunTypes.h"
185 #include "rts/storage/InfoTables.h"
186 #include "rts/storage/Closures.h"
187 #include "rts/storage/Liveness.h"
188 #include "rts/storage/ClosureTypes.h"
189 #include "rts/storage/TSO.h"
190 #include "stg/MiscClosures.h" /* InfoTables, closures etc. defined in the RTS */
191 #include "rts/storage/SMPClosureOps.h"
192 #include "rts/storage/Block.h"
193 #include "rts/storage/ClosureMacros.h"
194 #include "rts/storage/MBlock.h"
195 #include "rts/storage/GC.h"
196
197 /* Other RTS external APIs */
198 #include "rts/Parallel.h"
199 #include "rts/Hooks.h"
200 #include "rts/Signals.h"
201 #include "rts/BlockSignals.h"
202 #include "rts/Hpc.h"
203 #include "rts/Flags.h"
204 #include "rts/Adjustor.h"
205 #include "rts/FileLock.h"
206 #include "rts/Globals.h"
207 #include "rts/IOManager.h"
208 #include "rts/Linker.h"
209 #include "rts/Threads.h"
210 #include "rts/Ticky.h"
211 #include "rts/Timer.h"
212 #include "rts/Stable.h"
213 #include "rts/TTY.h"
214 #include "rts/Utils.h"
215 #include "rts/PrimFloat.h"
216
217 /* Misc stuff without a home */
218 DLL_IMPORT_RTS extern char **prog_argv; /* so we can get at these from Haskell */
219 DLL_IMPORT_RTS extern int    prog_argc;
220 DLL_IMPORT_RTS extern char  *prog_name;
221
222 #ifdef mingw32_HOST_OS
223 // We need these two from Haskell too
224 void getWin32ProgArgv(int *argc, wchar_t **argv[]);
225 void setWin32ProgArgv(int argc, wchar_t *argv[]);
226 #endif
227
228 void stackOverflow(void);
229
230 void stg_exit(int n) GNU_ATTRIBUTE(__noreturn__);
231
232 #ifndef mingw32_HOST_OS
233 int stg_sig_install (int, int, void *);
234 #endif
235
236 /* -----------------------------------------------------------------------------
237    RTS Exit codes
238    -------------------------------------------------------------------------- */
239
240 /* 255 is allegedly used by dynamic linkers to report linking failure */
241 #define EXIT_INTERNAL_ERROR 254
242 #define EXIT_DEADLOCK       253
243 #define EXIT_INTERRUPTED    252
244 #define EXIT_HEAPOVERFLOW   251
245 #define EXIT_KILLED         250
246
247 /* -----------------------------------------------------------------------------
248    Miscellaneous garbage
249    -------------------------------------------------------------------------- */
250
251 #ifdef DEBUG
252 #define TICK_VAR(arity) \
253   extern StgInt SLOW_CALLS_##arity; \
254   extern StgInt RIGHT_ARITY_##arity; \
255   extern StgInt TAGGED_PTR_##arity;
256
257 extern StgInt TOTAL_CALLS;
258
259 TICK_VAR(1)
260 TICK_VAR(2)
261 #endif
262
263 /* -----------------------------------------------------------------------------
264    Assertions and Debuggery
265    -------------------------------------------------------------------------- */
266
267 #define IF_RTSFLAGS(c,s)  if (RtsFlags.c) { s; }
268
269 #ifdef DEBUG
270 #if IN_STG_CODE
271 #define IF_DEBUG(c,s)  if (RtsFlags[0].DebugFlags.c) { s; }
272 #else
273 #define IF_DEBUG(c,s)  if (RtsFlags.DebugFlags.c) { s; }
274 #endif
275 #else
276 #define IF_DEBUG(c,s)  doNothing()
277 #endif
278
279 #ifdef DEBUG
280 #define DEBUG_ONLY(s) s
281 #else
282 #define DEBUG_ONLY(s) doNothing()
283 #endif
284
285 /* -----------------------------------------------------------------------------
286    Useful macros and inline functions
287    -------------------------------------------------------------------------- */
288
289 #if defined(__GNUC__)
290 #define SUPPORTS_TYPEOF
291 #endif
292
293 #if defined(SUPPORTS_TYPEOF)
294 #define stg_min(a,b) ({typeof(a) _a = (a), _b = (b); _a <= _b ? _a : _b; })
295 #define stg_max(a,b) ({typeof(a) _a = (a), _b = (b); _a <= _b ? _b : _a; })
296 #else
297 #define stg_min(a,b) ((a) <= (b) ? (a) : (b))
298 #define stg_max(a,b) ((a) <= (b) ? (b) : (a))
299 #endif
300
301 /* -------------------------------------------------------------------------- */
302
303 #ifdef __cplusplus
304 }
305 #endif
306
307 #endif /* RTS_H */