1 /* -----------------------------------------------------------------------------
3 * (c) The GHC Team, 1998-2009
5 * RTS external APIs. This file declares everything that the GHC RTS
8 * To understand the structure of the RTS headers, see the wiki:
9 * http://hackage.haskell.org/trac/ghc/wiki/Commentary/SourceTree/Includes
11 * ---------------------------------------------------------------------------*/
28 // Turn off inlining when debugging - it obfuscates things
31 # define STATIC_INLINE static
34 #include "rts/Types.h"
37 /* Assume that a flexible array member at the end of a struct
38 * can be defined thus: T arr[]; */
39 #define FLEXIBLE_ARRAY
41 /* Assume that it must be defined thus: T arr[0]; */
42 #define FLEXIBLE_ARRAY 0
46 #define ATTRIBUTE_ALIGNED(n) __attribute__((aligned(n)))
48 #define ATTRIBUTE_ALIGNED(n) /*nothing*/
51 // Symbols that are extern, but private to the RTS, are declared
52 // with visibility "hidden" to hide them outside the RTS shared
54 #if defined(HAS_VISIBILITY_HIDDEN)
55 #define RTS_PRIVATE GNUC3_ATTRIBUTE(visibility("hidden"))
57 #define RTS_PRIVATE /* disabled: RTS_PRIVATE */
61 #define RTS_UNLIKELY(p) __builtin_expect((p),0)
63 #define RTS_UNLIKELY(p) p
66 /* Fix for mingw stat problem (done here so it's early enough) */
67 #ifdef mingw32_HOST_OS
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. */
78 * We often want to know the size of something in units of an
79 * StgWord... (rounded up, of course!)
81 #define ROUNDUP_BYTES_TO_WDS(n) (((n) + sizeof(W_) - 1) / sizeof(W_))
83 #define sizeofW(t) ROUNDUP_BYTES_TO_WDS(sizeof(t))
85 /* -----------------------------------------------------------------------------
86 Assertions and Debuggery
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 -------------------------------------------------------------------------- */
92 void _assertFail(const char *filename, unsigned int linenum)
93 GNUC3_ATTRIBUTE(__noreturn__);
95 #define CHECK(predicate) \
99 _assertFail(__FILE__, __LINE__)
101 #define CHECKM(predicate, msg, ...) \
105 barf(msg, ##__VA_ARGS__)
108 #define ASSERT(predicate) /* nothing */
109 #define ASSERTM(predicate,msg,...) /* nothing */
111 #define ASSERT(predicate) CHECK(predicate)
112 #define ASSERTM(predicate,msg,...) CHECKM(predicate,msg,##__VA_ARGS__)
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.
121 #define doNothing() do { } while (0)
124 #define USED_IF_DEBUG
125 #define USED_IF_NOT_DEBUG STG_UNUSED
127 #define USED_IF_DEBUG STG_UNUSED
128 #define USED_IF_NOT_DEBUG
132 #define USED_IF_THREADS
133 #define USED_IF_NOT_THREADS STG_UNUSED
135 #define USED_IF_THREADS STG_UNUSED
136 #define USED_IF_NOT_THREADS
140 * Getting printf formats right for platform-dependent typedefs
143 #define FMT_Word64 "lu"
144 #define FMT_Int64 "ld"
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"
152 #define FMT_Word64 "llu"
153 #define FMT_Int64 "lld"
157 /* -----------------------------------------------------------------------------
158 Include everything STG-ish
159 -------------------------------------------------------------------------- */
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
168 #include "rts/Config.h"
170 /* Global constaints */
171 #include "rts/Constants.h"
173 /* Profiling information */
174 #include "rts/prof/CCS.h"
175 #include "rts/prof/LDV.h"
177 /* Parallel information */
178 #include "rts/OSThreads.h"
179 #include "rts/SpinLock.h"
181 #include "rts/Messages.h"
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"
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"
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"
214 #include "rts/Utils.h"
215 #include "rts/PrimFloat.h"
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;
222 void stackOverflow(void);
224 void stg_exit(int n) GNU_ATTRIBUTE(__noreturn__);
226 #ifndef mingw32_HOST_OS
227 int stg_sig_install (int, int, void *);
230 /* -----------------------------------------------------------------------------
232 -------------------------------------------------------------------------- */
234 /* 255 is allegedly used by dynamic linkers to report linking failure */
235 #define EXIT_INTERNAL_ERROR 254
236 #define EXIT_DEADLOCK 253
237 #define EXIT_INTERRUPTED 252
238 #define EXIT_HEAPOVERFLOW 251
239 #define EXIT_KILLED 250
241 /* -----------------------------------------------------------------------------
242 Miscellaneous garbage
243 -------------------------------------------------------------------------- */
245 /* declarations for runtime flags/values */
246 #define MAX_RTS_ARGS 32
249 #define TICK_VAR(arity) \
250 extern StgInt SLOW_CALLS_##arity; \
251 extern StgInt RIGHT_ARITY_##arity; \
252 extern StgInt TAGGED_PTR_##arity;
254 extern StgInt TOTAL_CALLS;
260 /* -----------------------------------------------------------------------------
261 Assertions and Debuggery
262 -------------------------------------------------------------------------- */
264 #define IF_RTSFLAGS(c,s) if (RtsFlags.c) { s; }
268 #define IF_DEBUG(c,s) if (RtsFlags[0].DebugFlags.c) { s; }
270 #define IF_DEBUG(c,s) if (RtsFlags.DebugFlags.c) { s; }
273 #define IF_DEBUG(c,s) doNothing()
277 #define DEBUG_ONLY(s) s
279 #define DEBUG_ONLY(s) doNothing()
282 /* -----------------------------------------------------------------------------
283 Useful macros and inline functions
284 -------------------------------------------------------------------------- */
286 #if defined(__GNUC__)
287 #define SUPPORTS_TYPEOF
290 #if defined(SUPPORTS_TYPEOF)
291 #define stg_min(a,b) ({typeof(a) _a = (a), _b = (b); _a <= _b ? _a : _b; })
292 #define stg_max(a,b) ({typeof(a) _a = (a), _b = (b); _a <= _b ? _b : _a; })
294 #define stg_min(a,b) ((a) <= (b) ? (a) : (b))
295 #define stg_max(a,b) ((a) <= (b) ? (b) : (a))
298 /* -------------------------------------------------------------------------- */