1 /* -----------------------------------------------------------------------------
3 * (c) The GHC Team, 1998-2004
5 * Top-level include file for the RTS itself
7 * ---------------------------------------------------------------------------*/
21 // Turn off inlining when debugging - it obfuscates things
24 # define STATIC_INLINE static
30 /* Assume that a flexible array member at the end of a struct
31 * can be defined thus: T arr[]; */
32 #define FLEXIBLE_ARRAY
34 /* Assume that it must be defined thus: T arr[0]; */
35 #define FLEXIBLE_ARRAY 0
38 /* Fix for mingw stat problem (done here so it's early enough) */
39 #ifdef mingw32_HOST_OS
43 /* Needed to get the macro version of errno on some OSs, and also to
44 get prototypes for the _r versions of C library functions. */
48 * We often want to know the size of something in units of an
49 * StgWord... (rounded up, of course!)
51 #define sizeofW(t) ((sizeof(t)+sizeof(W_)-1)/sizeof(W_))
54 * It's nice to be able to grep for casts
56 #define stgCast(ty,e) ((ty)(e))
58 /* -----------------------------------------------------------------------------
59 Assertions and Debuggery
60 -------------------------------------------------------------------------- */
63 #define ASSERT(predicate) /* nothing */
66 extern void _assertFail (const char *, unsigned int);
68 #define ASSERT(predicate) \
72 _assertFail(__FILE__, __LINE__)
76 * Use this on the RHS of macros which expand to nothing
77 * to make sure that the macro can be used in a context which
78 * demands a non-empty statement.
81 #define doNothing() do { } while (0)
85 #define USED_IF_NOT_DEBUG STG_UNUSED
87 #define USED_IF_DEBUG STG_UNUSED
88 #define USED_IF_NOT_DEBUG
92 #define USED_IF_THREADS
93 #define USED_IF_NOT_THREADS STG_UNUSED
95 #define USED_IF_THREADS STG_UNUSED
96 #define USED_IF_NOT_THREADS
100 * Getting printf formats right for platform-dependent typedefs
103 #define FMT_Word64 "lu"
104 #define FMT_Int64 "ld"
106 #define FMT_Word64 "llu"
107 #define FMT_Int64 "lld"
110 /* -----------------------------------------------------------------------------
111 Include everything STG-ish
112 -------------------------------------------------------------------------- */
114 /* System headers: stdlib.h is eeded so that we can use NULL. It must
115 * come after MachRegs.h, because stdlib.h might define some inline
116 * functions which may only be defined after register variables have
121 /* Global constaints */
122 #include "Constants.h"
124 /* Profiling information */
126 #include "StgLdvProf.h"
128 /* Storage format definitions */
130 #include "Closures.h"
131 #include "Liveness.h"
132 #include "ClosureTypes.h"
133 #include "InfoTables.h"
136 /* Info tables, closures & code fragments defined in the RTS */
137 #include "StgMiscClosures.h"
139 /* Simulated-parallel information */
142 /* Parallel information */
143 #include "Parallel.h"
144 #include "OSThreads.h"
148 #if defined(HAVE_FRAMEWORK_GMP)
154 /* Macros for STG/C code */
156 #include "ClosureMacros.h"
158 /* Ticky-ticky counters */
159 #include "TickyCounters.h"
161 /* Runtime-system hooks */
163 #include "RtsMessages.h"
165 /* for StablePtr/getStablePtr/deRefStablePtr */
169 #include "ieee-flpt.h"
173 /* Misc stuff without a home */
174 DLL_IMPORT_RTS extern char **prog_argv; /* so we can get at these from Haskell */
175 DLL_IMPORT_RTS extern int prog_argc;
176 DLL_IMPORT_RTS extern char *prog_name;
178 extern void stackOverflow(void);
180 extern void __decodeDouble (MP_INT *man, I_ *_exp, StgDouble dbl);
181 extern void __decodeFloat (MP_INT *man, I_ *_exp, StgFloat flt);
183 #if defined(WANT_DOTNET_SUPPORT)
184 #include "DNInvoke.h"
187 /* Initialising the whole adjustor thunk machinery. */
188 extern void initAdjustor(void);
190 extern void stg_exit(int n) GNU_ATTRIBUTE(__noreturn__);
192 /* -----------------------------------------------------------------------------
194 -------------------------------------------------------------------------- */
196 /* 255 is allegedly used by dynamic linkers to report linking failure */
197 #define EXIT_INTERNAL_ERROR 254
198 #define EXIT_DEADLOCK 253
199 #define EXIT_INTERRUPTED 252
200 #define EXIT_HEAPOVERFLOW 251
201 #define EXIT_KILLED 250
203 /* -----------------------------------------------------------------------------
204 Miscellaneous garbage
205 -------------------------------------------------------------------------- */
207 /* declarations for runtime flags/values */
208 #define MAX_RTS_ARGS 32
210 /* -----------------------------------------------------------------------------
211 Assertions and Debuggery
212 -------------------------------------------------------------------------- */
214 #define IF_RTSFLAGS(c,s) if (RtsFlags.c) { s; }
216 /* -----------------------------------------------------------------------------
217 Assertions and Debuggery
218 -------------------------------------------------------------------------- */
221 #define IF_DEBUG(c,s) if (RtsFlags.DebugFlags.c) { s; }
223 #define IF_DEBUG(c,s) doNothing()
227 #define DEBUG_ONLY(s) s
229 #define DEBUG_ONLY(s) doNothing()
232 #if defined(GRAN) && defined(DEBUG)
233 #define IF_GRAN_DEBUG(c,s) if (RtsFlags.GranFlags.Debug.c) { s; }
235 #define IF_GRAN_DEBUG(c,s) doNothing()
238 #if defined(PAR) && defined(DEBUG)
239 #define IF_PAR_DEBUG(c,s) if (RtsFlags.ParFlags.Debug.c) { s; }
241 #define IF_PAR_DEBUG(c,s) doNothing()
244 /* -----------------------------------------------------------------------------
245 Useful macros and inline functions
246 -------------------------------------------------------------------------- */
248 #if defined(__GNUC__)
249 #define SUPPORTS_TYPEOF
252 #if defined(SUPPORTS_TYPEOF)
253 #define stg_min(a,b) ({typeof(a) _a = (a), _b = (b); _a <= _b ? _a : _b; })
254 #define stg_max(a,b) ({typeof(a) _a = (a), _b = (b); _a <= _b ? _b : _a; })
256 #define stg_min(a,b) ((a) <= (b) ? (a) : (b))
257 #define stg_max(a,b) ((a) <= (b) ? (b) : (a))
260 /* -------------------------------------------------------------------------- */
267 /* krc: I put this here because I don't think
268 it needs to be visible externally.
269 It used to be in StgTicky.h, but I got rid
272 /* -----------------------------------------------------------------------------
273 The StgEntCounter type - needed regardless of TICKY_TICKY
274 -------------------------------------------------------------------------- */
276 typedef struct _StgEntCounter {
277 /* Using StgWord for everything, becuase both the C and asm code
278 generators make trouble if you try to pack things tighter */
279 StgWord registeredp; /* 0 == no, 1 == yes */
280 StgInt arity; /* arity (static info) */
281 StgInt stk_args; /* # of args off stack */
282 /* (rest of args are in registers) */
283 char *str; /* name of the thing */
284 char *arg_kinds; /* info about the args types */
285 StgInt entry_count; /* Trips to fast entry code */
286 StgInt allocs; /* number of allocations by this fun */
287 struct _StgEntCounter *link;/* link to chain them all together */