15ed0c0080d53a53f439aa6900cf127e4c56b48c
[ghc-hetmet.git] / ghc / docs / users_guide / runtime_control.sgml
1 <sect1 id="runtime-control">
2   <title>Running a compiled program</title>
3
4   <indexterm><primary>runtime control of Haskell programs</primary></indexterm>
5   <indexterm><primary>running, compiled program</primary></indexterm>
6   <indexterm><primary>RTS options</primary></indexterm>
7
8   <para>To make an executable program, the GHC system compiles your
9   code and then links it with a non-trivial runtime system (RTS),
10   which handles storage management, profiling, etc.</para>
11
12   <para>You have some control over the behaviour of the RTS, by giving
13   special command-line arguments to your program.</para>
14
15   <para>When your Haskell program starts up, its RTS extracts
16   command-line arguments bracketed between
17   <option>+RTS</option><indexterm><primary><option>+RTS</option></primary></indexterm>
18   and
19   <option>-RTS</option><indexterm><primary><option>-RTS</option></primary></indexterm>
20   as its own.  For example:</para>
21
22 <screen>
23 % ./a.out -f +RTS -p -S -RTS -h foo bar
24 </screen>
25
26   <para>The RTS will snaffle <option>-p</option> <option>-S</option>
27   for itself, and the remaining arguments <literal>-f -h foo bar</literal>
28   will be handed to your program if/when it calls
29   <function>System.getArgs</function>.</para>
30
31   <para>No <option>-RTS</option> option is required if the
32   runtime-system options extend to the end of the command line, as in
33   this example:</para>
34
35 <screen>
36 % hls -ltr /usr/etc +RTS -A5m
37 </screen>
38
39   <para>If you absolutely positively want all the rest of the options
40   in a command line to go to the program (and not the RTS), use a
41   <option>&ndash;&ndash;RTS</option><indexterm><primary><option>--RTS</option></primary></indexterm>.</para>
42
43   <para>As always, for RTS options that take
44   <replaceable>size</replaceable>s: If the last character of
45   <replaceable>size</replaceable> is a K or k, multiply by 1000; if an
46   M or m, by 1,000,000; if a G or G, by 1,000,000,000.  (And any
47   wraparound in the counters is <emphasis>your</emphasis>
48   fault!)</para>
49
50   <para>Giving a <literal>+RTS -f</literal>
51   <indexterm><primary><option>-f</option></primary><secondary>RTS option</secondary></indexterm> option
52   will print out the RTS options actually available in your program
53   (which vary, depending on how you compiled).</para>
54
55   <para>NOTE: since GHC is itself compiled by GHC, you can change RTS
56   options in the compiler using the normal
57   <literal>+RTS ... -RTS</literal>
58   combination.  eg. to increase the maximum heap
59   size for a compilation to 128M, you would add
60   <literal>+RTS -M128m -RTS</literal>
61   to the command line.</para>
62
63   <sect2 id="rts-optinos-environment">
64     <title>Setting global RTS options</title>
65
66     <indexterm><primary>RTS options</primary><secondary>from the environment</secondary></indexterm>
67     <indexterm><primary>environment variable</primary><secondary>for
68     setting RTS options</secondary></indexterm>
69
70     <para>RTS options are also taken from the environment variable
71     <envar>GHCRTS</envar><indexterm><primary><envar>GHCRTS</envar></primary>
72       </indexterm>.  For example, to set the maximum heap size
73     to 128M for all GHC-compiled programs (using an
74     <literal>sh</literal>-like shell):</para>
75
76 <screen>
77    GHCRTS='-M128m'
78    export GHCRTS
79 </screen>
80
81     <para>RTS options taken from the <envar>GHCRTS</envar> environment
82     variable can be overriden by options given on the command
83     line.</para>
84
85   </sect2>
86
87   <sect2 id="rts-options-gc">
88     <title>RTS options to control the garbage collector</title>
89
90     <indexterm><primary>garbage collector</primary><secondary>options</secondary></indexterm>
91     <indexterm><primary>RTS options</primary><secondary>garbage collection</secondary></indexterm>
92
93     <para>There are several options to give you precise control over
94     garbage collection.  Hopefully, you won't need any of these in
95     normal operation, but there are several things that can be tweaked
96     for maximum performance.</para>
97
98     <variablelist>
99
100       <varlistentry>
101         <term><option>-A</option><replaceable>size</replaceable></Term>
102         <indexterm><primary><option>-A</option></primary><secondary>RTS option</secondary></indexterm>
103         <indexterm><primary>allocation area, size</primary></indexterm>
104         <listitem>
105           <para>&lsqb;Default: 256k&rsqb; Set the allocation area size
106           used by the garbage collector.  The allocation area
107           (actually generation 0 step 0) is fixed and is never resized
108           (unless you use <option>-H</option>, below).</para>
109
110           <para>Increasing the allocation area size may or may not
111           give better performance (a bigger allocation area means
112           worse cache behaviour but fewer garbage collections and less
113           promotion).</para>
114
115           <para>With only 1 generation (<option>-G1</option>) the
116           <option>-A</option> option specifies the minimum allocation
117           area, since the actual size of the allocation area will be
118           resized according to the amount of data in the heap (see
119           <option>-F</option>, below).</para>
120         </listitem>
121       </varlistentry>
122
123       <varlistentry>
124         <term><option>-c</option></term>
125         <indexterm><primary><option>-c</option></primary><secondary>RTS option</secondary>
126         </indexterm>
127         <indexterm><primary>garbage collection</primary><secondary>compacting</secondary>
128         </indexterm>
129         <indexterm><primary>compacting garbage collection</primary></indexterm>
130
131         <listitem>
132           <para>Use a compacting algorithm for collecting the oldest
133           generation.  By default, the oldest generation is collected
134           using a copying algorithm; this option causes it to be
135           compacted in-place instead.  The compaction algorithm is
136           slower than the copying algorithm, but the savings in memory
137           use can be considerable.</para>
138
139           <para>For a given heap size (using the <option>-H</option>
140           option), compaction can in fact reduce the GC cost by
141           allowing fewer GCs to be performed.  This is more likely
142           when the ratio of live data to heap size is high, say
143           &gt;30&percnt;.</para>
144
145           <para>NOTE: compaction doesn't currently work when a single
146           generation is requested using the <option>-G1</option>
147           option.</para>
148         </listitem>
149       </varlistentry>
150
151       <varlistentry>
152         <term><option>-c</option><replaceable>n</replaceable></term>
153
154         <listitem>
155           <para>&lsqb;Default: 30&rsqb; Automatically enable
156           compacting collection when the live data exceeds
157           <replaceable>n</replaceable>&percnt; of the maximum heap size
158           (see the <option>-M</option> option).  Note that the maximum
159           heap size is unlimited by default, so this option has no
160           effect unless the maximum heap size is set with
161           <option>-M</option><replaceable>size</replaceable>. </para>
162         </listitem>
163       </varlistentry>
164
165       <varlistentry>
166         <term><option>-F</option><replaceable>factor</replaceable></Term>
167         <listitem>
168           <indexterm><primary><option>-F</option></primary><secondary>RTS option</secondary></indexterm>
169           <indexterm><primary>heap size, factor</primary></indexterm>
170
171           <para>&lsqb;Default: 2&rsqb; This option controls the amount
172           of memory reserved for the older generations (and in the
173           case of a two space collector the size of the allocation
174           area) as a factor of the amount of live data.  For example,
175           if there was 2M of live data in the oldest generation when
176           we last collected it, then by default we'll wait until it
177           grows to 4M before collecting it again.</para>
178
179           <para>The default seems to work well here.  If you have
180           plenty of memory, it is usually better to use
181           <option>-H</option><replaceable>size</replaceable> than to
182           increase
183           <option>-F</option><replaceable>factor</replaceable>.</para>
184
185           <para>The <option>-F</option> setting will be automatically
186           reduced by the garbage collector when the maximum heap size
187           (the <option>-M</option><replaceable>size</replaceable>
188           setting) is approaching.</para>
189         </listitem>
190       </varlistentry>
191
192       <varlistentry>
193         <term><option>-G</option><replaceable>generations</replaceable></Term>
194         <indexterm><primary><option>-G</option></primary><secondary>RTS option</secondary></indexterm>
195         <indexterm><primary>generations, number
196         of</primary></indexterm>
197         <listitem>
198           <para>&lsqb;Default: 2&rsqb; Set the number of generations
199           used by the garbage collector.  The default of 2 seems to be
200           good, but the garbage collector can support any number of
201           generations.  Anything larger than about 4 is probably not a
202           good idea unless your program runs for a
203           <emphasis>long</emphasis> time, because the oldest
204           generation will hardly ever get collected.</para>
205
206           <para>Specifying 1 generation with <option>+RTS -G1</option>
207           gives you a simple 2-space collector, as you would expect.
208           In a 2-space collector, the <option>-A</option> option (see
209           above) specifies the <Emphasis>minimum</Emphasis> allocation
210           area size, since the allocation area will grow with the
211           amount of live data in the heap.  In a multi-generational
212           collector the allocation area is a fixed size (unless you
213           use the <option>-H</option> option, see below).</para>
214         </listitem>
215       </varlistentry>
216
217       <VarListEntry>
218         <term><option>-H</option><replaceable>size</replaceable></term>
219         <indexterm><primary><option>-H</option></primary><secondary>RTS option</secondary></indexterm>
220         <indexterm><primary>heap size, suggested</primary></indexterm>
221         <listitem>
222           <para>&lsqb;Default: 0&rsqb; This option provides a
223           &ldquo;suggested heap size&rdquo; for the garbage collector.  The
224           garbage collector will use about this much memory until the
225           program residency grows and the heap size needs to be
226           expanded to retain reasonable performance.</para>
227
228           <para>By default, the heap will start small, and grow and
229           shrink as necessary.  This can be bad for performance, so if
230           you have plenty of memory it's worthwhile supplying a big
231           <option>-H</option><replaceable>size</replaceable>.  For
232           improving GC performance, using
233           <option>-H</option><replaceable>size</replaceable> is
234           usually a better bet than
235           <option>-A</option><replaceable>size</replaceable>.</para>
236         </listitem>
237       </varlistentry>
238
239       <varlistentry>
240         <term><option>-k</option><replaceable>size</replaceable></term>
241         <indexterm><primary><option>-k</option></primary><secondary>RTS option</secondary></indexterm>
242         <indexterm><primary>stack, minimum size</primary></indexterm>
243         <listitem>
244           <para>&lsqb;Default: 1k&rsqb; Set the initial stack size for
245           new threads.  Thread stacks (including the main thread's
246           stack) live on the heap, and grow as required.  The default
247           value is good for concurrent applications with lots of small
248           threads; if your program doesn't fit this model then
249           increasing this option may help performance.</para>
250
251           <para>The main thread is normally started with a slightly
252           larger heap to cut down on unnecessary stack growth while
253           the program is starting up.</para>
254         </listitem>
255       </varlistentry>
256
257       <varlistentry>
258         <term><option>-K</option><replaceable>size</replaceable></term>
259         <indexterm><primary><option>-K</option></primary><secondary>RTS option</secondary></indexterm>
260         <indexterm><primary>stack, maximum size</primary></indexterm>
261         <listitem>
262           <para>&lsqb;Default: 8M&rsqb; Set the maximum stack size for
263           an individual thread to <replaceable>size</replaceable>
264           bytes.  This option is there purely to stop the program
265           eating up all the available memory in the machine if it gets
266           into an infinite loop.</para>
267         </listitem>
268       </varlistentry>
269
270       <varlistentry>
271         <term><option>-m</option><replaceable>n</replaceable></term>
272         <indexterm><primary><option>-m</option></primary><secondary>RTS option</secondary></indexterm>
273         <indexterm><primary>heap, minimum free</primary></indexterm>
274         <listitem>
275           <para>Minimum &percnt; <replaceable>n</replaceable> of heap
276           which must be available for allocation.  The default is
277           3&percnt;.</para>
278         </listitem>
279       </varlistentry>
280
281       <varlistentry>
282         <term><option>-M</option><replaceable>size</replaceable></term>
283         <indexterm><primary><option>-M</option></primary><secondary>RTS option</secondary></indexterm>
284         <indexterm><primary>heap size, maximum</primary></indexterm>
285         <listitem>
286           <para>&lsqb;Default: unlimited&rsqb; Set the maximum heap size to
287           <replaceable>size</replaceable> bytes.  The heap normally
288           grows and shrinks according to the memory requirements of
289           the program.  The only reason for having this option is to
290           stop the heap growing without bound and filling up all the
291           available swap space, which at the least will result in the
292           program being summarily killed by the operating
293           system.</para>
294
295           <para>The maximum heap size also affects other garbage
296           collection parameters: when the amount of live data in the
297           heap exceeds a certain fraction of the maximum heap size,
298           compacting collection will be automatically enabled for the
299           oldest generation, and the <option>-F</option> parameter
300           will be reduced in order to avoid exceeding the maximum heap
301           size.</para>
302         </listitem>
303       </varlistentry>
304
305       <varlistentry>
306         <term><option>-s</option><replaceable>file</replaceable></term>
307         <term><option>-S</option><replaceable>file</replaceable></Term>
308         <indexterm><primary><option>-S</option></primary><secondary>RTS option</secondary></indexterm>
309         <indexterm><primary><option>-s</option></primary><secondary>RTS option</secondary></indexterm>
310         <listitem>
311           <para>Write modest (<option>-s</option>) or verbose
312           (<option>-S</option>) garbage-collector statistics into file
313           <replaceable>file</replaceable>. The default
314           <replaceable>file</replaceable> is
315           <Filename><replaceable>program</replaceable>.stat</Filename>. The
316           <replaceable>file</replaceable> <constant>stderr</constant>
317           is treated specially, with the output really being sent to
318           <constant>stderr</constant>.</para>
319
320           <para>This option is useful for watching how the storage
321           manager adjusts the heap size based on the current amount of
322           live data.</para>
323         </listitem>
324       </varlistentry>
325
326       <varlistentry>
327         <term><option>-t</option></term>
328         <indexterm><primary><option>-t</option></primary><secondary>RTS option</secondary></indexterm>
329         <listitem>
330           <para>Write a one-line GC stats summary after running the
331           program.  This output is in the same format as that produced
332           by the <option>-Rghc-timing</option> option.</para>
333         </listitem>
334       </varlistentry>
335     </variablelist>
336
337   </sect2>
338
339 <!-- ---------------------------------------------------------------------- -->
340   <sect2>
341     <title>RTS options for profiling and Concurrent/Parallel Haskell</title>
342
343     <para>The RTS options related to profiling are described in <XRef
344     LinkEnd="prof-rts-options">; and those for concurrent/parallel
345     stuff, in <XRef LinkEnd="parallel-rts-opts">.</para>
346   </sect2>
347
348 <!-- ---------------------------------------------------------------------- -->
349   <sect2 id="rts-options-debugging">
350     <title>RTS options for hackers, debuggers, and over-interested
351     souls</title>
352
353     <indexterm><primary>RTS options, hacking/debugging</primary></indexterm>
354
355     <para>These RTS options might be used (a)&nbsp;to avoid a GHC bug,
356     (b)&nbsp;to see &ldquo;what's really happening&rdquo;, or
357     (c)&nbsp;because you feel like it.  Not recommended for everyday
358     use!</para>
359
360     <variablelist>
361
362       <varlistentry>
363         <term><option>-B</option></term>
364         <indexterm><primary><option>-B</option></primary><secondary>RTS option</secondary></indexterm>
365         <listitem>
366           <para>Sound the bell at the start of each (major) garbage
367           collection.</para>
368
369           <para>Oddly enough, people really do use this option!  Our
370           pal in Durham (England), Paul Callaghan, writes: &ldquo;Some
371           people here use it for a variety of
372           purposes&mdash;honestly!&mdash;e.g., confirmation that the
373           code/machine is doing something, infinite loop detection,
374           gauging cost of recently added code. Certain people can even
375           tell what stage &lsqb;the program&rsqb; is in by the beep
376           pattern. But the major use is for annoying others in the
377           same office&hellip;&rdquo;</para>
378         </listitem>
379       </varlistentry>
380
381       <varlistentry>
382         <term><option>-D</option><replaceable>num</replaceable></term>
383         <indexterm><primary>-D</primary><secondary>RTS option</secondary></indexterm>
384         <listitem>
385           <para>An RTS debugging flag; varying quantities of output
386           depending on which bits are set in
387           <replaceable>num</replaceable>.  Only works if the RTS was
388           compiled with the <option>DEBUG</option> option.</para>
389         </listitem>
390       </varlistentry>
391
392       <varlistentry>
393         <term><option>-r</option><replaceable>file</replaceable></term>
394         <indexterm><primary><option>-r</option></primary><secondary>RTS option</secondary></indexterm>
395         <indexterm><primary>ticky ticky profiling</primary></indexterm>
396         <indexterm><primary>profiling</primary><secondary>ticky ticky</secondary></indexterm>
397         <listitem>
398           <para>Produce &ldquo;ticky-ticky&rdquo; statistics at the
399           end of the program run.  The <replaceable>file</replaceable>
400           business works just like on the <option>-S</option> RTS
401           option (above).</para>
402
403           <para>&ldquo;Ticky-ticky&rdquo; statistics are counts of
404           various program actions (updates, enters, etc.)  The program
405           must have been compiled using
406           <option>-ticky</option><indexterm><primary><option>-ticky</option></primary></indexterm>
407           (a.k.a. &ldquo;ticky-ticky profiling&rdquo;), and, for it to
408           be really useful, linked with suitable system libraries.
409           Not a trivial undertaking: consult the installation guide on
410           how to set things up for easy &ldquo;ticky-ticky&rdquo;
411           profiling.  For more information, see <XRef
412           LinkEnd="ticky-ticky">.</para>
413         </listitem>
414       </varlistentry>
415
416       <varlistentry>
417         <term><option>-xc</option></term>
418         <indexterm><primary><option>-xc</option></primary><secondary>RTS
419         option</secondary></indexterm>
420         <listitem>
421           <para>(Only available when the program is compiled for
422           profiling.)  When an exception is raised in the program,
423           this option causes the current cost-centre-stack to be
424           dumped to <literal>stderr</literal>.</para>
425
426           <para>This can be particularly useful for debugging: if your
427           program is complaining about a <literal>head []</literal>
428           error and you haven't got a clue which bit of code is
429           causing it, compiling with <literal>-prof
430           -auto-all</literal> and running with <literal>+RTS -xc
431           -RTS</literal> will tell you exactly the call stack at the
432           point the error was raised.</para>
433
434           <para>The output contains one line for each exception raised
435           in the program (the program might raise and catch several
436           exceptions during its execution), where each line is of the
437           form:</para>
438
439 <screen>
440 &lt; cc<subscript>1</subscript>, ..., cc<subscript>n</subscript> &gt;
441 </screen>
442           <para>each <literal>cc</literal><subscript>i</subscript> is
443           a cost centre in the program (see <xref
444           linkend="cost-centres">), and the sequence represents the
445           &ldquo;call stack&rdquo; at the point the exception was
446           raised.  The leftmost item is the innermost function in the
447           call stack, and the rightmost item is the outermost
448           function.</para>
449
450         </listitem>
451       </varlistentry>
452
453       <varlistentry>
454         <term><option>-Z</option></term>
455         <indexterm><primary><option>-Z</option></primary><secondary>RTS
456         option</secondary></indexterm>
457         <listitem>
458           <para>Turn <emphasis>off</emphasis> &ldquo;update-frame
459           squeezing&rdquo; at garbage-collection time.  (There's no
460           particularly good reason to turn it off, except to ensure
461           the accuracy of certain data collected regarding thunk entry
462           counts.)</para>
463         </listitem>
464       </varlistentry>
465     </variablelist>
466
467   </sect2>
468
469   <sect2 id="rts-hooks">
470     <title>&ldquo;Hooks&rdquo; to change RTS behaviour</title>
471
472     <indexterm><primary>hooks</primary><secondary>RTS</secondary></indexterm>
473     <indexterm><primary>RTS hooks</primary></indexterm>
474     <indexterm><primary>RTS behaviour, changing</primary></indexterm>
475
476     <para>GHC lets you exercise rudimentary control over the RTS
477     settings for any given program, by compiling in a
478     &ldquo;hook&rdquo; that is called by the run-time system.  The RTS
479     contains stub definitions for all these hooks, but by writing your
480     own version and linking it on the GHC command line, you can
481     override the defaults.</para>
482
483     <para>Owing to the vagaries of DLL linking, these hooks don't work
484     under Windows when the program is built dynamically.</para>
485
486     <para>The hook <literal>ghc_rts_opts</literal><indexterm><primary><literal>ghc_rts_opts</literal></primary>
487       </indexterm>lets you set RTS
488     options permanently for a given program.  A common use for this is
489     to give your program a default heap and/or stack size that is
490     greater than the default.  For example, to set <literal>-H128m
491     -K1m</literal>, place the following definition in a C source
492     file:</para>
493
494 <programlisting>
495 char *ghc_rts_opts = "-H128m -K1m";
496 </programlisting>
497
498     <para>Compile the C file, and include the object file on the
499     command line when you link your Haskell program.</para>
500
501     <para>These flags are interpreted first, before any RTS flags from
502     the <literal>GHCRTS</literal> environment variable and any flags
503     on the command line.</para>
504
505     <para>You can also change the messages printed when the runtime
506     system &ldquo;blows up,&rdquo; e.g., on stack overflow.  The hooks
507     for these are as follows:</para>
508
509     <variablelist>
510
511       <varlistentry>
512         <term><function>void OutOfHeapHook (unsigned long, unsigned long)</function></term>
513         <indexterm><primary><function>OutOfHeapHook</function></primary></indexterm>
514         <ListItem>
515           <para>The heap-overflow message.</para>
516         </listitem>
517       </varlistentry>
518
519       <varlistentry>
520         <term><function>void StackOverflowHook (long int)</function></term>
521         <indexterm><primary><function>StackOverflowHook</function></primary></indexterm>
522         <listitem>
523           <para>The stack-overflow message.</para>
524         </listitem>
525       </varlistentry>
526
527       <varlistentry>
528         <term><function>void MallocFailHook (long int)</function></term>
529         <indexterm><primary><function>MallocFailHook</function></primary></indexterm>
530         <listitem>
531           <para>The message printed if <Function>malloc</Function>
532           fails.</para>
533         </listitem>
534       </varlistentry>
535     </variablelist>
536
537     <para>For examples of the use of these hooks, see GHC's own
538     versions in the file
539     <filename>ghc/compiler/parser/hschooks.c</filename> in a GHC
540     source tree.</para>
541   </sect2>
542 </sect1>
543
544 <!-- Emacs stuff:
545      ;;; Local Variables: ***
546      ;;; mode: sgml ***
547      ;;; sgml-parent-document: ("users_guide.sgml" "book" "chapter" "sect1") ***
548      ;;; End: ***
549  -->