1 /* -----------------------------------------------------------------------------
3 * (c) The GHC Team, 1998-2009
5 * Datatypes that holds the command-line flag settings.
7 * Do not #include this file directly: #include "Rts.h" instead.
9 * To understand the structure of the RTS headers, see the wiki:
10 * http://hackage.haskell.org/trac/ghc/wiki/Commentary/SourceTree/Includes
12 * ---------------------------------------------------------------------------*/
19 /* For defaults, see the @initRtsFlagsDefaults@ routine. */
25 #define COLLECT_GC_STATS 1
26 #define ONELINE_GC_STATS 2
27 #define SUMMARY_GC_STATS 3
28 #define VERBOSE_GC_STATS 4
30 nat maxStkSize; /* in *words* */
31 nat initialStkSize; /* in *words* */
33 nat maxHeapSize; /* in *blocks* */
34 nat minAllocAreaSize; /* in *blocks* */
35 nat minOldGenSize; /* in *blocks* */
36 nat heapSizeSuggestion; /* in *blocks* */
37 rtsBool heapSizeSuggestionAuto;
43 rtsBool squeezeUpdFrames;
45 rtsBool compact; /* True <=> "compact all the time" */
46 double compactThreshold;
48 rtsBool sweep; /* use "mostly mark-sweep" instead of copying
49 * for the oldest generation */
53 int idleGCDelayTime; /* in milliseconds */
55 StgWord heapBase; /* address to ask the OS for memory */
59 /* flags to control debugging output & extra checking in various subsystems */
60 rtsBool scheduler; /* 's' */
61 rtsBool interpreter; /* 'i' */
62 rtsBool weak; /* 'w' */
63 rtsBool gccafs; /* 'G' */
65 rtsBool block_alloc; /* 'b' */
66 rtsBool sanity; /* 'S' warning: might be expensive! */
67 rtsBool stable; /* 't' */
68 rtsBool prof; /* 'p' */
69 rtsBool linker; /* 'l' the object linker */
70 rtsBool apply; /* 'a' */
71 rtsBool stm; /* 'm' */
72 rtsBool squeeze; /* 'z' stack squeezing & lazy blackholing */
73 rtsBool hpc; /* 'c' coverage */
74 rtsBool sparks; /* 'r' */
77 struct COST_CENTRE_FLAGS {
78 unsigned int doCostCentres;
79 # define COST_CENTRES_SUMMARY 1
80 # define COST_CENTRES_VERBOSE 2 /* incl. serial time profile */
81 # define COST_CENTRES_ALL 3
82 # define COST_CENTRES_XML 4
84 int profilerTicks; /* derived */
85 int msecsPerTick; /* derived */
88 struct PROFILING_FLAGS {
89 unsigned int doHeapProfile;
90 # define NO_HEAP_PROFILING 0 /* N.B. Used as indexes into arrays */
91 # define HEAP_BY_CCS 1
92 # define HEAP_BY_MOD 2
93 # define HEAP_BY_DESCR 4
94 # define HEAP_BY_TYPE 5
95 # define HEAP_BY_RETAINER 6
96 # define HEAP_BY_LDV 7
98 # define HEAP_BY_CLOSURE_TYPE 8
100 nat profileInterval; /* delta between samples (in ms) */
101 nat profileIntervalTicks; /* delta between samples (in 'ticks') */
105 rtsBool showCCSOnException;
107 nat maxRetainerSetSize;
116 char* retainerSelector;
122 #define TRACE_EVENTLOG 1
123 #define TRACE_STDERR 2
127 rtsBool timestamp; /* show timestamp in stderr output */
129 rtsBool scheduler; /* trace scheduler events */
132 struct CONCURRENT_FLAGS {
133 int ctxtSwitchTime; /* in milliseconds */
134 int ctxtSwitchTicks; /* derived */
138 int tickInterval; /* in milliseconds */
139 rtsBool install_signal_handlers;
140 rtsBool machineReadable;
141 StgWord linkerMemBase; /* address to ask the OS for memory
142 * for the linker, NULL ==> off */
147 nat nNodes; /* number of threads to run simultaneously */
148 rtsBool migrate; /* migrate threads between capabilities */
149 rtsBool wakeupMigrate; /* migrate a thread on wakeup */
150 unsigned int maxLocalSparks;
151 rtsBool parGcEnabled; /* enable parallel GC */
152 unsigned int parGcGen; /* do parallel GC in this generation
154 rtsBool parGcLoadBalancingEnabled;
155 /* enable load-balancing in the
157 unsigned int parGcLoadBalancingGen;
158 /* do load-balancing in this
159 * generation and higher only */
160 rtsBool setAffinity; /* force thread affinity with CPUs */
162 #endif /* THREADED_RTS */
165 rtsBool showTickyStats;
170 #define MAX_PAPI_USER_EVENTS 8
173 nat eventType; /* The type of events to count */
175 char * userEvents[MAX_PAPI_USER_EVENTS];
178 #define PAPI_FLAG_CACHE_L1 1
179 #define PAPI_FLAG_CACHE_L2 2
180 #define PAPI_FLAG_BRANCH 3
181 #define PAPI_FLAG_STALLS 4
182 #define PAPI_FLAG_CB_EVENTS 5
183 #define PAPI_USER_EVENTS 6
187 /* Put them together: */
189 typedef struct _RTS_FLAGS {
190 /* The first portion of RTS_FLAGS is invariant. */
191 struct GC_FLAGS GcFlags;
192 struct CONCURRENT_FLAGS ConcFlags;
193 struct MISC_FLAGS MiscFlags;
194 struct DEBUG_FLAGS DebugFlags;
195 struct COST_CENTRE_FLAGS CcFlags;
196 struct PROFILING_FLAGS ProfFlags;
197 struct TRACE_FLAGS TraceFlags;
198 struct TICKY_FLAGS TickyFlags;
200 #if defined(THREADED_RTS)
201 struct PAR_FLAGS ParFlags;
204 struct PAPI_FLAGS PapiFlags;
208 #ifdef COMPILING_RTS_MAIN
209 extern DLLIMPORT RTS_FLAGS RtsFlags;
211 /* Hack because the C code generator can't generate '&label'. */
212 extern RTS_FLAGS RtsFlags[];
214 extern RTS_FLAGS RtsFlags;
217 /* Routines that operate-on/to-do-with RTS flags: */
219 void initRtsFlagsDefaults(void);
220 void setupRtsFlags(int *argc, char *argv[], int *rts_argc, char *rts_argv[]);
221 void setProgName(char *argv[]);
225 * The printf formats are here, so we are less likely to make
226 * overly-long filenames (with disastrous results). No more than 128
230 #define STATS_FILENAME_MAXLEN 128
232 #define GR_FILENAME_FMT "%0.124s.gr"
233 #define GR_FILENAME_FMT_GUM "%0.120s.%03d.%s"
234 #define HP_FILENAME_FMT "%0.124s.hp"
235 #define LIFE_FILENAME_FMT "%0.122s.life"
236 #define PROF_FILENAME_FMT "%0.122s.prof"
237 #define PROF_FILENAME_FMT_GUM "%0.118s.%03d.prof"
238 #define QP_FILENAME_FMT "%0.124s.qp"
239 #define STAT_FILENAME_FMT "%0.122s.stat"
240 #define TICKY_FILENAME_FMT "%0.121s.ticky"
241 #define TIME_FILENAME_FMT "%0.122s.time"
242 #define TIME_FILENAME_FMT_GUM "%0.118s.%03d.time"
244 /* an "int" so as to match normal "argc" */
245 /* Now defined in Stg.h (lib/std/cbits need these too.)
246 extern int prog_argc;
247 extern char **prog_argv;
249 extern int rts_argc; /* ditto */
250 extern char *rts_argv[];
252 #endif /* RTS_FLAGS_H */