d42ee470235911f7f0b569a077900a4f4b8a125b
[ghc-hetmet.git] / ghc / docs / users_guide / using.sgml
1 <chapter id="using-ghc">
2   <title>Using GHC</title>
3
4   <indexterm><primary>GHC, using</primary></indexterm>
5   <indexterm><primary>using GHC</primary></indexterm>
6
7     <para>GHC can work in one of three &ldquo;modes&rdquo;:</para>
8
9     <variablelist>
10       <varlistentry>
11         <term><cmdsynopsis><command>ghc</command>
12             <arg choice=plain>--interactive</arg>
13           </cmdsynopsis></term>
14         <indexterm><primary>interactive mode</primary>
15         </indexterm>
16         <indexterm><primary>ghci</primary>
17         </indexterm>
18         <listitem>
19           <para>Interactive mode, which is also available as
20           <command>ghci</command>.  Interactive mode is described in
21           more detail in <xref linkend="ghci">.</para>
22         </listitem>
23       </varlistentry>
24
25       <varlistentry>
26         <term><cmdsynopsis><command>ghc</command>
27             <arg choice=plain>--make</arg>
28           </cmdsynopsis></term>
29         <indexterm><primary>make mode</primary>
30         </indexterm>
31         <indexterm><primary><option>--make</option></primary>
32         </indexterm>
33         <listitem>
34           <para>In this mode, GHC will build a multi-module Haskell
35           program automatically, figuring out dependencies for itself.
36           If you have a straightforward Haskell program, this is
37           likely to be much easier, and faster, than using
38           <command>make</command>.</para>
39         </listitem>
40       </varlistentry>
41
42       <varlistentry>
43         <term><cmdsynopsis>
44             <command>ghc</command>
45             <group>
46               <arg>-E</arg>
47               <arg>-C</arg>
48               <arg>-S</arg>
49               <arg>-c</arg>
50             </group>
51           </cmdsynopsis></term>
52         <indexterm><primary><option>--make</option></primary>
53         </indexterm>
54         <listitem>
55           <para>This is the traditional batch-compiler mode, in which
56           GHC can compile source files one at a time, or link objects
57           together into an executable.</para>
58         </listitem>
59       </varlistentry>
60     </variablelist>
61
62   <sect1>
63     <title>Options overview</title>
64     
65     <para>GHC's behaviour is controlled by
66     <firstterm>options</firstterm>, which for historical reasons are
67     also sometimes referred to as command-line flags or arguments.
68     Options can be specified in three ways:</para>
69
70     <sect2>
71       <title>Command-line arguments</title>
72       
73       <indexterm><primary>structure, command-line</primary></indexterm>
74       <indexterm><primary>command-line</primary><secondary>arguments</secondary></indexterm>
75       <indexterm><primary>arguments</primary><secondary>command-line</secondary></indexterm>
76       
77       <para>An invocation of GHC takes the following form:</para>
78
79 <Screen>
80 ghc [argument...]
81 </Screen>
82
83       <para>Command-line arguments are either options or file names.</para>
84
85       <para>Command-line options begin with <literal>-</literal>.
86       They may <emphasis>not</emphasis> be grouped:
87       <option>-vO</option> is different from <option>-v -O</option>.
88       Options need not precede filenames: e.g., <literal>ghc *.o -o
89       foo</literal>.  All options are processed and then applied to
90       all files; you cannot, for example, invoke <literal>ghc -c -O1
91       Foo.hs -O2 Bar.hs</literal> to apply different optimisation
92       levels to the files <filename>Foo.hs</filename> and
93       <filename>Bar.hs</filename>.</para>
94     </sect2>
95
96     <Sect2 id="source-file-options">
97       <title>Command line options in source files</title>
98     
99       <indexterm><primary>source-file options</primary></indexterm>
100
101       <para>Sometimes it is useful to make the connection between a
102       source file and the command-line options it requires quite
103       tight. For instance, if a Haskell source file uses GHC
104       extensions, it will always need to be compiled with the
105       <option>-fglasgow-exts</option> option.  Rather than maintaining
106       the list of per-file options in a <filename>Makefile</filename>,
107       it is possible to do this directly in the source file using the
108       <literal>OPTIONS</literal> pragma <indexterm><primary>OPTIONS
109       pragma</primary></indexterm>:</para>
110
111 <ProgramListing>
112 {-# OPTIONS -fglasgow-exts #-}
113 module X where
114 ...
115 </ProgramListing>
116       
117       <para><literal>OPTIONS</literal> pragmas are only looked for at
118       the top of your source files, upto the first
119       (non-literate,non-empty) line not containing
120       <literal>OPTIONS</literal>. Multiple <literal>OPTIONS</literal>
121       pragmas are recognised. Note that your command shell does not
122       get to the source file options, they are just included literally
123       in the array of command-line arguments the compiler driver
124       maintains internally, so you'll be desperately disappointed if
125       you try to glob etc. inside <literal>OPTIONS</literal>.</para>
126
127       <para>NOTE: the contents of OPTIONS are prepended to the
128       command-line options, so you <emphasis>do</emphasis> have the
129       ability to override OPTIONS settings via the command
130       line.</para>
131
132       <para>It is not recommended to move all the contents of your
133       Makefiles into your source files, but in some circumstances, the
134       <literal>OPTIONS</literal> pragma is the Right Thing. (If you
135       use <option>-keep-hc-file-too</option> and have OPTION flags in
136       your module, the OPTIONS will get put into the generated .hc
137       file).</para>
138     </sect2>
139
140     <sect2>
141       <title>Setting options in GHCi</title>
142
143       <para>Options may also be modified from within GHCi, using the
144       <literal>:set</literal> command.  See <xref linkend="ghci-set">
145       for more details.</para>
146     </sect2>
147   </sect1>
148     
149   <sect1 id="static-dynamic-flags">
150     <title>Static vs. Dynamic options</title>
151     <indexterm><primary>static</primary><secondary>options</secondary>
152     </indexterm>
153     <indexterm><primary>dynamic</primary><secondary>options</secondary>
154     </indexterm>
155
156     <para>Each of GHC's command line options is classified as either
157     <firstterm>static</firstterm> or <firstterm>dynamic</firstterm>.
158     A static flag may only be specified on the command line, whereas a
159     dynamic flag may also be given in an <literal>OPTIONS</literal>
160     pragma in a source file or set from the GHCi command-line with
161     <literal>:set</literal>.</para>
162
163     <para>As a rule of thumb, all the language options are dynamic, as
164     are the warning options and the debugging options.  The rest are
165     static, with the notable exceptions of <option>-v</option>,
166     <option>-cpp</option>, <option>-fasm</option>,
167     <option>-fvia-C</option>, and <option>-#include</option>.
168
169     The flag reference tables (<xref linkend="flag-reference">) lists
170     the status of each flag.</para>
171   </sect1>
172
173   <sect1 id="file-suffixes">
174     <title>Meaningful file suffixes</title>
175
176     <indexterm><primary>suffixes, file</primary></indexterm>
177     <indexterm><primary>file suffixes for GHC</primary></indexterm>
178
179     <para>File names with &ldquo;meaningful&rdquo; suffixes (e.g.,
180     <filename>.lhs</filename> or <filename>.o</filename>) cause the
181     &ldquo;right thing&rdquo; to happen to those files.</para>
182
183     <variablelist>
184
185       <varlistentry>
186         <term><filename>.lhs</filename></term>
187         <indexterm><primary><literal>lhs</literal> suffix</primary></indexterm>
188         <listitem>
189           <para>A &ldquo;literate Haskell&rdquo; module.</para>
190         </listitem>
191       </varlistentry>
192
193       <varlistentry>
194         <term><filename>.hs</filename></term>
195         <listitem>
196           <para>A not-so-literate Haskell module.</para>
197         </listitem>
198       </varlistentry>
199
200       <varlistentry>
201         <term><filename>.hi</filename></term>
202         <listitem>
203           <para>A Haskell interface file, probably
204           compiler-generated.</para>
205         </listitem>
206       </varlistentry>
207
208       <varlistentry>
209         <term><filename>.hc</filename></term>
210         <listitem>
211           <para>Intermediate C file produced by the Haskell
212           compiler.</para>
213         </listitem>
214       </varlistentry>
215
216       <varlistentry>
217         <term><filename>.c</filename></term>
218         <listitem>
219           <para>A C&nbsp;file not produced by the Haskell
220           compiler.</para>
221         </listitem>
222       </varlistentry>
223       
224       <varlistentry>
225         <term><filename>.s</filename></term>
226         <listitem>
227           <para>An assembly-language source file, usually produced by
228           the compiler.</para>
229         </listitem>
230       </varlistentry>
231
232       <varlistentry>
233         <term><filename>.o</filename></term>
234         <listitem>
235           <para>An object file, produced by an assembler.</para>
236         </listitem>
237       </varlistentry>
238     </variablelist>
239
240     <para>Files with other suffixes (or without suffixes) are passed
241     straight to the linker.</para>
242
243   </sect1>
244
245   <sect1 id="options-help">
246     <title>Help and verbosity options</title>
247
248     <IndexTerm><Primary>help options</Primary></IndexTerm>
249     <IndexTerm><Primary>verbosity options</Primary></IndexTerm>
250
251     <variablelist>
252       <varlistentry>
253         <term><literal>-help</literal></term>
254         <term><literal>-?</literal></term>
255         <indexterm><primary><literal>-?</literal></primary></indexterm>
256         <indexterm><primary><literal>-help</literal></primary></indexterm>
257         <listitem>
258           <para>Cause GHC to spew a long usage message to standard
259           output and then exit.</para>
260         </listitem>
261       </varlistentry>
262
263       <varlistentry>
264         <term><literal>-v</literal></term>
265         <indexterm><primary><literal>-v</literal></primary></indexterm>
266         <listitem>
267           <para>The <option>-v</option> option makes GHC
268           <emphasis>verbose</emphasis>: it reports its version number
269           and shows (on stderr) exactly how it invokes each phase of
270           the compilation system.  Moreover, it passes the
271           <option>-v</option> flag to most phases; each reports its
272           version number (and possibly some other information).</para>
273
274           <para>Please, oh please, use the <option>-v</option> option
275           when reporting bugs!  Knowing that you ran the right bits in
276           the right order is always the first thing we want to
277           verify.</para>
278         </listitem>
279       </varlistentry>
280         
281       <varlistentry>
282         <term><literal>-v</literal><replaceable>n</replaceable></term>
283         <indexterm><primary><option>-v</option></primary></indexterm>
284         <listitem>
285           <para>To provide more control over the compiler's verbosity,
286           the <option>-v</option> flag takes an optional numeric
287           argument.  Specifying <option>-v</option> on its own is
288           equivalent to <option>-v3</option>, and the other levels
289           have the following meanings:</para>
290           
291           <variablelist>
292             <varlistentry>
293               <term><literal>-v0</literal></term>
294               <listitem>
295                 <para>Disable all non-essential messages (this is the
296                 default).</para>
297               </listitem>
298             </varlistentry>
299
300             <varlistentry>
301               <term><literal>-v1</literal></term>
302               <listitem>
303                 <para>Minimal verbosity: print one line per
304                 compilation (this is the default when
305                 <option>--make</option> or
306                 <option>--interactive</option> is on).</para>
307               </listitem>
308             </varlistentry>
309
310             <varlistentry>
311               <term><literal>-v2</literal></term>
312               <listitem>
313                 <para>Print the name of each compilation phase as it
314                 is executed. (equivalent to
315                 <option>-dshow-passes</option>).</para>
316               </listitem>
317             </varlistentry>
318
319             <varlistentry>
320               <term><literal>-v3</literal></term>
321               <listitem>
322                 <para>The same as <option>-v2</option>, except that in
323                 addition the full command line (if appropriate) for
324                 each compilation phase is also printed.</para>
325               </listitem>
326             </varlistentry>
327
328             <varlistentry>
329               <term><literal>-v4</literal></term>
330               <listitem>
331                 <para>The same as <option>-v3</option> except that the
332                 intermediate program representation after each
333                 compilation phase is also printed (excluding
334                 preprocessed and C/assembly files).</para>
335               </listitem>
336             </varlistentry>
337           </variablelist>
338         </listitem>
339       </varlistentry>
340       
341       <varlistentry>
342         <term><literal>--version</literal></term>
343         <indexterm><primary><literal>--version</literal></primary></indexterm>
344         <listitem>
345           <para>Print a one-line string including GHC's version number.</para>
346         </listitem>
347       </varlistentry>
348
349       <varlistentry>
350         <term><literal>--numeric-version</literal></term>
351         <indexterm><primary><literal>--numeric-version</literal></primary></indexterm>
352         <listitem>
353           <para>Print GHC's numeric version number only.</para>
354         </listitem>
355       </varlistentry>
356     </variablelist>
357   </sect1>
358
359   <sect1 id="make-mode">
360     <title>Using <command>ghc</command> <option>--make</option></title>
361
362     <indexterm><primary><option>--make</option></primary>
363     </indexterm>
364     <indexterm><primary>separate compilation</primary>
365     </indexterm>
366     
367     <para>When given the <option>--make</option> option, GHC will
368     build a multi-module Haskell program by following dependencies
369     from a single root module (usually <literal>Main</literal>).  For
370     example, if your <literal>Main</literal> module is in a file
371     called <filename>Main.hs</filename>, you could compile and link
372     the program like this:</para>
373
374 <screen>
375 ghc --make Main.hs
376 </screen>
377
378     <para>The command line must contain one source file or module
379     name; GHC will figure out all the modules in the program by
380     following the imports from this initial module.  It will then
381     attempt to compile each module which is out of date, and finally
382     if the top module is <literal>Main</literal>, the program
383     will also be linked into an executable.</para>
384
385     <para>The main advantages to using <literal>ghc --make</literal>
386     over traditional <literal>Makefile</literal>s are:</para>
387
388     <itemizedlist>
389       <listitem>
390         <para>GHC doesn't have to be restarted for each compilation,
391         which means it can cache information between compilations.
392         Compiling a muli-module program with <literal>ghc
393         --make</literal> can be up to twice as fast as running
394         <literal>ghc</literal> individually on each source
395         file.</para>
396       </listitem>
397       <listitem>
398         <para>You don't have to write a
399         <literal>Makefile</literal>.</para>
400       </listitem>
401       <indexterm><primary><literal>Makefile</literal>s</primary><secondary>avoiding</secondary>
402       </indexterm>
403       <listitem>
404         <para>GHC re-calculates the dependencies each time it is
405         invoked, so the dependencies never get out of sync with the
406         source.</para>
407       </listitem>
408     </itemizedlist>
409
410     <para>Any of the command-line options described in the rest of
411     this chapter can be used with <option>--make</option>, but note
412     that any options you give on the command line will apply to all
413     the source files compiled, so if you want any options to apply to
414     a single source file only, you'll need to use an
415     <literal>OPTIONS</literal> pragma (see <xref
416     linkend="source-file-options">).</para>
417
418     <para>If the program needs to be linked with additional objects
419     (say, some auxilliary C code), these can be specified on the
420     command line as usual.</para>
421   </sect1>
422   
423   <Sect1 id="options-order">
424     <title>GHC without <option>--make</option></title>
425
426     <para>Without <option>--make</option>, GHC will compile one or
427     more source files given on the command line.</para>
428
429     <para>The first phase to run is determined by each input-file
430     suffix, and the last phase is determined by a flag.  If no
431     relevant flag is present, then go all the way through linking.
432     This table summarises:</para>
433
434     <informaltable>
435       <tgroup cols="4">
436         <colspec align="left">
437         <colspec align="left">
438         <colspec align="left">
439         <colspec align="left">
440
441         <thead>
442           <row>
443             <entry>Phase of the compilation system</entry>
444             <entry>Suffix saying &ldquo;start here&rdquo;</entry>
445             <entry>Flag saying &ldquo;stop after&rdquo;</entry>
446             <entry>(suffix of) output file</entry>
447           </row>
448         </thead>
449         <tbody>
450           <row>
451             <entry>literate pre-processor</entry>
452             <entry><literal>.lhs</literal></entry>
453             <entry>-</entry>
454             <entry><literal>.hs</literal></entry>
455           </row>
456
457           <row>
458             <entry>C pre-processor (opt.)
459            </entry> 
460             <entry><literal>.hs</literal> (with
461             <option>-cpp</option>)</entry>
462             <entry><option>-E</option></entry>
463             <entry><literal>.hspp</literal></entry>
464           </row>
465           
466           <row>
467             <entry>Haskell compiler</entry>
468             <entry><literal>.hs</literal></entry>
469             <entry><option>-C</option>, <option>-S</option></entry>
470             <entry><literal>.hc</literal>, <literal>.s</literal></entry>
471           </row>
472
473           <row>
474             <entry>C compiler (opt.)</entry>
475             <entry><literal>.hc</literal> or <literal>.c</literal></entry>
476             <entry><option>-S</option></entry>
477             <entry><literal>.s</literal></entry>
478           </row>
479
480           <row>
481             <entry>assembler</entry>
482             <entry><literal>.s</literal></entry>
483             <entry><option>-c</option></entry>
484             <entry><literal>.o</literal></entry>
485           </row>
486           
487           <row>
488             <entry>linker</entry>
489             <entry><replaceable>other</replaceable></entry>
490             <entry>-</entry>
491             <entry><filename>a.out</filename></entry>
492           </row>
493         </tbody>
494       </tgroup>
495     </informaltable>
496
497     <indexterm><primary><option>-C</option></primary></indexterm>
498     <indexterm><primary><option>-E</option></primary></indexterm>
499     <indexterm><primary><option>-S</option></primary></indexterm>
500     <indexterm><primary><option>-c</option></primary></indexterm>
501
502     <para>Thus, a common invocation would be: <literal>ghc -c
503     Foo.hs</literal></para>
504
505     <para>Note: What the Haskell compiler proper produces depends on
506     whether a native-code generator<indexterm><primary>native-code
507     generator</primary></indexterm> is used (producing assembly
508     language) or not (producing C).  See <xref
509     linkend="options-codegen"> for more details.</para>
510
511     <para>Note: C pre-processing is optional, the
512     <option>-ccp</option><indexterm><primary><option>-cpp</option></primary>
513       </indexterm>flag turns it on.  See <xref
514     linkend="c-pre-processor"> for more details.</para>
515
516     <para>Note: The option <option>-E</option><IndexTerm><Primary>-E
517     option</Primary></IndexTerm> runs just the pre-processing passes
518     of the compiler, dumping the result in a file.  Note that this
519     differs from the previous behaviour of dumping the file to
520     standard output.</para>
521   </sect1>
522
523   <sect1 id="options-output">
524     <title>Re-directing the compilation output(s)</title>
525
526     <indexterm><primary>output-directing options</primary></indexterm>
527     <indexterm><primary>redirecting compilation output</primary></indexterm>
528
529
530     <variablelist>
531       <varlistentry>
532         <term><literal>-o</literal></term>
533         <indexterm><primary><literal>-o</literal></primary></indexterm>
534         <listitem>
535           <para>GHC's compiled output normally goes into a
536           <filename>.hc</filename>, <filename>.o</filename>, etc.,
537           file, depending on the last-run compilation phase.  The
538           option <option>-o foo</option><IndexTerm><Primary>-o
539           option</Primary></IndexTerm> re-directs the output of that
540           last-run phase to file <filename>foo</filename>.</para>
541
542           <para>Note: this &ldquo;feature&rdquo; can be
543           counterintuitive: <command>ghc -C -o foo.o foo.hs</command>
544           will put the intermediate C code in the file
545           <filename>foo.o</filename>, name notwithstanding!</para>
546         </listitem>
547       </varlistentry>
548
549       <varlistentry>
550         <term><literal>-odir</literal></term>
551         <indexterm><primary><literal>-odir</literal></primary></indexterm>
552         <listitem>
553           <para>The <option>-o</option> option isn't of much use if
554           you have <emphasis>several</emphasis> input files&hellip;
555           Non-interface output files are normally put in the same
556           directory as their corresponding input file came from.  You
557           may specify that they be put in another directory using the
558           <option>-odir &lt;dir&gt;</option><IndexTerm><Primary>-odir
559           &lt;dir&gt; option</Primary></IndexTerm> (the &ldquo;Oh,
560           dear&rdquo; option).  For example:</para>
561
562 <Screen>
563 % ghc -c parse/Foo.hs parse/Bar.hs gurgle/Bumble.hs -odir `arch`
564 </Screen>
565
566           <para>The output files, <filename>Foo.o</filename>,
567           <filename>Bar.o</filename>, and
568           <filename>Bumble.o</filename> would be put into a
569           subdirectory named after the architecture of the executing
570           machine (<filename>sun4</filename>,
571           <filename>mips</filename>, etc).  The directory must already
572           exist; it won't be created.</para>
573
574           <para>Note that the <option>-odir</option> option does
575           <emphasis>not</emphasis> affect where the interface files
576           are put.  In the above example, they would still be put in
577           <filename>parse/Foo.hi</filename>,
578           <filename>parse/Bar.hi</filename>, and
579           <filename>gurgle/Bumble.hi</filename>.</para>
580         </listitem>
581       </varlistentry>
582
583       <varlistentry>
584         <term><option>-osuf</option> <replaceable>suffix</replaceable></term>
585         <term><option>-hisuf</option> <replaceable>suffix</replaceable></term>
586         <term><option>-hcsuf</option> <replaceable>suffix</replaceable></term>
587         <indexterm><primary><option>-osuf</option></primary></indexterm>
588         <indexterm><primary><option>-hisuf</option></primary></indexterm>
589         <indexterm><primary><option>-hcsuf</option></primary></indexterm>
590         <listitem>
591           <para>EXOTICA: The <option>-osuf</option>
592           <replaceable>suffix</replaceable> will change the
593           <literal>.o</literal> file suffix for object files to
594           whatever you specify.  We use this when compiling libraries,
595           so that objects for the profiling versions of the libraries
596           don't clobber the normal ones.</para>
597
598           <para>Similarly, the <option>-hisuf</option>
599           <replaceable>suffix</replaceable> will change the
600           <literal>.hi</literal> file suffix for non-system interface
601           files (see <XRef LinkEnd="hi-options">).</para>
602
603           <para>Finally, the option <option>-hcsuf</option>
604           <replaceable>suffix</replaceable> will change the
605           <literal>.hc</literal> file suffix for compiler-generated
606           intermediate C files.</para>
607
608           <para>The <option>-hisuf</option>/<option>-osuf</option>
609           game is useful if you want to compile a program with both
610           GHC and HBC (say) in the same directory.  Let HBC use the
611           standard <filename>.hi</filename>/<filename>.o</filename>
612           suffixes; add <option>-hisuf g&lowbar;hi -osuf
613           g&lowbar;o</option> to your <command>make</command> rule for
614           GHC compiling&hellip;</para>
615         </listitem>
616       </varlistentry>
617     </variablelist>
618         
619     <sect2 id="keeping-intermediates">
620       <title>Keeping Intermediate Files</title>
621       <indexterm><primary>intermediate files, saving</primary>
622       </indexterm>
623       <indexterm><primary><literal>.hc</literal> files, saving</primary>
624       </indexterm>
625       <indexterm><primary><literal>.s</literal> files, saving</primary>
626       </indexterm>
627
628
629       <para>The following options are useful for keeping certain
630       intermediate files around, when normally GHC would throw these
631       away after compilation:</para>
632
633       <variablelist>
634         <varlistentry>
635           <term><literal>-keep-hc-files</literal></term>
636           <indexterm>
637             <primary><literal>-keep-hc-files</literal></primary>
638           </indexterm>
639           <listitem>
640             <para>Keep intermediate <literal>.hc</literal> files when
641             doing <literal>.hs</literal>-to-<literal>.o</literal>
642             compilations via C (NOTE: <literal>.hc</literal> files
643             aren't generated when using the native code generator, you
644             may need to use <literal>-fvia-C</literal> to force them
645             to be produced).</para>
646           </listitem>
647         </varlistentry>
648
649         <varlistentry>
650           <term><literal>-keep-s-files</literal></term>
651           <indexterm>
652             <primary><literal>-keep-s-files</literal></primary>
653           </indexterm>
654           <listitem>
655             <para>Keep intermediate <literal>.s</literal> files.</para>
656           </listitem>
657         </varlistentry>
658
659         <varlistentry>
660           <term><literal>-keep-raw-s-files</literal></term>
661           <indexterm>
662             <primary><literal>-keep-raw-s-files</literal></primary>
663           </indexterm>
664           <listitem>
665             <para>Keep intermediate <literal>.raw-s</literal> files.
666             These are the direct output from the C compiler, before
667             GHC does &ldquo;assembly mangling&rdquo; to produce the
668             <literal>.s</literal> file.  Again, these are not produced
669             when using the native code generator.</para>
670           </listitem>
671         </varlistentry>
672
673         <varlistentry>
674           <term><literal>-keep-tmp-files</literal></term>
675           <indexterm>
676             <primary><literal>-keep-tmp-files</literal></primary>
677           </indexterm>
678           <indexterm>
679             <primary>temporary files</primary>
680             <secondary>keeping</secondary>
681           </indexterm>
682           <listitem>
683             <para>Instructs the GHC driver not to delete any of its
684             temporary files, which it normally keeps in
685             <literal>/tmp</literal> (or possibly elsewhere; see <xref
686             linkend="temp-files">).  Running GHC with
687             <literal>-v</literal> will show you what temporary files
688             were generated along the way.</para>
689           </listitem>
690         </varlistentry>
691       </variablelist>
692     </sect2>
693
694     <sect2 id="temp-files">
695       <title>Redirecting temporary files</title>
696
697       <indexterm>
698         <primary>temporary files</primary>
699         <secondary>redirecting</secondary>
700       </indexterm>
701
702       <variablelist>
703         <varlistentry>
704           <term><literal>-tmpdir</literal></term>
705           <indexterm><primary><literal>-tmpdir</literal></primary></indexterm>
706           <listitem>
707             <para>If you have trouble because of running out of space
708             in <filename>/tmp</filename> (or wherever your
709             installation thinks temporary files should go), you may
710             use the <option>-tmpdir
711             &lt;dir&gt;</option><IndexTerm><Primary>-tmpdir
712             &lt;dir&gt; option</Primary></IndexTerm> option to specify
713             an alternate directory.  For example, <option>-tmpdir
714             .</option> says to put temporary files in the current
715             working directory.</para>
716
717             <para>Alternatively, use your <Constant>TMPDIR</Constant>
718             environment variable.<IndexTerm><Primary>TMPDIR
719             environment variable</Primary></IndexTerm> Set it to the
720             name of the directory where temporary files should be put.
721             GCC and other programs will honour the
722             <Constant>TMPDIR</Constant> variable as well.</para>
723
724             <para>Even better idea: Set the
725             <Constant>DEFAULT_TMPDIR</Constant> make variable when
726             building GHC, and never worry about
727             <Constant>TMPDIR</Constant> again. (see the build
728             documentation).</para>
729           </listitem>
730         </varlistentry>
731       </variablelist>
732     </sect2>
733
734   </sect1>
735
736   <sect1 id="options-sanity">
737     <title>Warnings and sanity-checking</title>
738
739     <indexterm><primary>sanity-checking options</primary></indexterm>
740     <indexterm><primary>warnings</primary></indexterm>
741
742
743     <para>GHC has a number of options that select which types of
744     non-fatal error messages, otherwise known as warnings, can be
745     generated during compilation.  By default, you get a standard set
746     of warnings which are generally likely to indicate bugs in your
747     program.  These are:
748     <option>-fwarn-overlpapping-patterns</option>,
749     <option>-fwarn-deprecations</option>,
750     <option>-fwarn-duplicate-exports</option>,
751     <option>-fwarn-missing-fields</option>, and
752     <option>-fwarn-missing-methods</option>.  The following flags are
753     simple ways to select standard &ldquo;packages&rdquo; of warnings:
754     </para>
755
756     <VariableList>
757
758       <varlistentry>
759         <term><option>-W</option>:</term>
760         <listitem>
761           <IndexTerm><Primary>-W option</Primary></IndexTerm>
762           <para>Provides the standard warnings plus
763           <option>-fwarn-incomplete-patterns</option>,
764           <option>-fwarn-unused-matches</option>,
765           <option>-fwarn-unused-imports</option>,
766           <option>-fwarn-misc</option>, and
767           <option>-fwarn-unused-binds</option>.</para>
768         </listitem>
769       </varlistentry>
770
771       <varlistentry>
772         <term><option>-w</option>:</term>
773         <listitem>
774           <IndexTerm><Primary><option>-w</option></Primary></IndexTerm>
775           <para>Turns off all warnings, including the standard ones.</para>
776         </listitem>
777       </varlistentry>
778
779       <varlistentry>
780         <term><option>-Wall</option>:</term>
781         <listitem>
782           <indexterm><primary><option>-Wall</option></primary></indexterm>
783           <para>Turns on all warning options.</para>
784         </listitem>
785       </varlistentry>
786
787     </variablelist>
788
789     <para>The full set of warning options is described below.  To turn
790     off any warning, simply give the corresponding
791     <option>-fno-warn-...</option> option on the command line.</para>
792
793     <variablelist>
794
795       <varlistentry>
796         <term><option>-fwarn-deprecations</option>:</term>
797         <listitem>
798           <indexterm><primary><option>-fwarn-deprecations</option></primary>
799           </indexterm>
800           <indexterm><primary>deprecations</primary></indexterm>
801           <para>Causes a warning to be emitted when a deprecated
802           function or type is used.  Entities can be marked as
803           deprecated using a pragma, see <xref
804           linkend="deprecated-pragma">.</para>
805         </listitem>
806       </varlistentry>
807
808       <varlistentry>
809         <term><option>-fwarn-duplicate-exports</option>:</term>
810         <listitem>
811           <indexterm><primary><option>-fwarn-duplicate-exports</option></primary></indexterm>
812           <indexterm><primary>duplicate exports, warning</primary></indexterm>
813           <indexterm><primary>export lists, duplicates</primary></indexterm>
814
815           <para>Have the compiler warn about duplicate entries in
816           export lists. This is useful information if you maintain
817           large export lists, and want to avoid the continued export
818           of a definition after you've deleted (one) mention of it in
819           the export list.</para>
820
821           <para>This option is on by default.</para>
822         </listitem>
823       </varlistentry>
824
825       <varlistentry>
826         <term><option>-fwarn-hi-shadowing</option>:</term>
827         <listitem>
828           <indexterm><primary><option>-fwarn-hi-shadowing</option></primary></indexterm>
829           <indexterm><primary>shadowing</primary>
830             <secondary>interface files</secondary></indexterm>
831
832           <para>Causes the compiler to emit a warning when a module or
833           interface file in the current directory is shadowing one
834           with the same module name in a library or other
835           directory.</para>
836         </listitem>
837       </varlistentry>
838
839       <varlistentry>
840         <term><option>-fwarn-incomplete-patterns</option>:</term>
841         <listitem>
842           <indexterm><primary><option>-fwarn-incomplete-patterns</option></primary></indexterm>
843           <indexterm><primary>incomplete patterns, warning</primary></indexterm>
844           <indexterm><primary>patterns, incomplete</primary></indexterm>
845
846           <para>Similarly for incomplete patterns, the function
847           <function>g</function> below will fail when applied to
848           non-empty lists, so the compiler will emit a warning about
849           this when <option>-fwarn-incomplete-patterns</option> is
850           enabled.</para>
851
852 <programlisting>
853 g [] = 2
854 </programlisting>
855
856           <para>This option isn't enabled be default because it can be
857           a bit noisy, and it doesn't always indicate a bug in the
858           program.  However, it's generally considered good practice
859           to cover all the cases in your functions.</para>
860         </listitem>
861       </varlistentry>
862
863       <varlistentry>
864         <term><option>-fwarn-misc</option>:</term>
865         <indexterm><primary><option>-fwarn-misc</option></primary></indexterm>
866         <listitem>
867           <para>Turns on warnings for various harmless but untidy
868           things.  This currently includes: importing a type with
869           <literal>(..)</literal> when the export is abstract, and
870           listing duplicate class assertions in a qualified type.</para>
871         </listitem>
872       </varlistentry>
873
874       <varlistentry>
875         <term><option>-fwarn-missing-fields</option>:</term>
876         <listitem>
877           <indexterm><primary><option>-fwarn-missing-fields</option></primary></indexterm>
878           <indexterm><primary>missing fields, warning</primary></indexterm>
879           <indexterm><primary>fields, missing</primary></indexterm>
880
881           <para>This option is on by default, and warns you whenever
882           the construction of a labelled field constructor isn't
883           complete, missing initializers for one or more fields. While
884           not an error (the missing fields are initialised with
885           bottoms), it is often an indication of a programmer error.</para>
886         </listitem>
887       </varlistentry>
888
889       <varlistentry>
890         <term><option>-fwarn-missing-methods</option>:</term>
891         <listitem>
892           <indexterm><primary><option>-fwarn-missing-methods</option></primary></indexterm>
893           <indexterm><primary>missing methods, warning</primary></indexterm>
894           <indexterm><primary>methods, missing</primary></indexterm>
895
896           <para>This option is on by default, and warns you whenever
897           an instance declaration is missing one or more methods, and
898           the corresponding class declaration has no default
899           declaration for them.</para>
900         </listitem>
901       </varlistentry>
902
903       <varlistentry>
904         <term><option>-fwarn-missing-signatures</option>:</term>
905         <listitem>
906           <indexterm><primary><option>-fwarn-missing-signatures</option></primary></indexterm>
907           <indexterm><primary>type signatures, missing</primary></indexterm>
908
909           <para>If you would like GHC to check that every top-level
910           function/value has a type signature, use the
911           <option>-fwarn-missing-signatures</option> option.  This
912           option is off by default.</para>
913         </listitem>
914       </varlistentry>
915
916       <varlistentry>
917         <term><option>-fwarn-name-shadowing</option>:</term>
918         <listitem>
919           <indexterm><primary><option>-fwarn-name-shadowing</option></primary></indexterm>
920           <indexterm><primary>shadowing, warning</primary></indexterm>
921           
922           <para>This option causes a warning to be emitted whenever an
923           inner-scope value has the same name as an outer-scope value,
924           i.e. the inner value shadows the outer one.  This can catch
925           typographical errors that turn into hard-to-find bugs, e.g.,
926           in the inadvertent cyclic definition <literal>let x = ... x
927           ... in</literal>.</para>
928
929           <para>Consequently, this option does
930           <emphasis>will</emphasis> complain about cyclic recursive
931           definitions.</para>
932         </listitem>
933       </varlistentry>
934
935       <varlistentry>
936         <term><option>-fwarn-overlapping-patterns</option>:</term>
937         <indexterm><primary><option>-fwarn-overlapping-patterns</option></primary></indexterm>
938         <indexterm><primary>overlapping patterns, warning</primary></indexterm>
939         <indexterm><primary>patterns, overlapping</primary></indexterm>
940         <listitem>
941           <para>By default, the compiler will warn you if a set of
942           patterns are overlapping, i.e.,</para>
943
944 <programlisting>
945 f :: String -&#62; Int
946 f []     = 0
947 f (_:xs) = 1
948 f "2"    = 2
949 </programlisting>
950
951           <para>where the last pattern match in <Function>f</Function>
952           won't ever be reached, as the second pattern overlaps
953           it. More often than not, redundant patterns is a programmer
954           mistake/error, so this option is enabled by default.</para>
955         </listitem>
956       </varlistentry>
957
958       <varlistentry>
959         <term><option>-fwarn-simple-patterns</option>:</term>
960         <listitem>
961           <indexterm><primary><option>-fwarn-simple-patterns</option></primary>
962           </indexterm>
963           <para>Causes the compiler to warn about lambda-bound
964           patterns that can fail, eg. <literal>\(x:xs)->...</literal>.
965           Normally, these aren't treated as incomplete patterns by
966           <option>-fwarn-incomplete-patterns</option>.</para>
967         </listitem>
968       </varlistentry>
969
970       <varlistentry>
971         <term><option>-fwarn-type-defaults</option>:</term>
972         <listitem>
973           <indexterm><primary><option>-fwarn-type-defaults</option></primary></indexterm>
974           <indexterm><primary>defaulting mechanism, warning</primary></indexterm>
975           <para>Have the compiler warn/inform you where in your source
976           the Haskell defaulting mechanism for numeric types kicks
977           in. This is useful information when converting code from a
978           context that assumed one default into one with another,
979           e.g., the `default default' for Haskell 1.4 caused the
980           otherwise unconstrained value <Constant>1</Constant> to be
981           given the type <literal>Int</literal>, whereas Haskell 98
982           defaults it to <literal>Integer</literal>.  This may lead to
983           differences in performance and behaviour, hence the
984           usefulness of being non-silent about this.</para>
985
986           <para>This warning is off by default.</para>
987         </listitem>
988       </varlistentry>
989
990       <varlistentry>
991         <term><option>-fwarn-unused-binds</option>:</term>
992         <listitem>
993           <indexterm><primary><option>-fwarn-unused-binds</option></primary></indexterm>
994           <indexterm><primary>unused binds, warning</primary></indexterm>
995           <indexterm><primary>binds, unused</primary></indexterm>
996           <para>Report any function definitions (and local bindings)
997           which are unused.  For top-level functions, the warning is
998           only given if the binding is not exported.</para>
999         </listitem>
1000       </varlistentry>
1001
1002       <varlistentry>
1003         <term><option>-fwarn-unused-imports</option>:</term>
1004         <listitem>
1005           <indexterm><primary><option>-fwarn-unused-imports</option></primary></indexterm>
1006           <indexterm><primary>unused imports, warning</primary></indexterm>
1007           <indexterm><primary>imports, unused</primary></indexterm>
1008
1009           <para>Report any objects that are explicitly imported but
1010           never used.</para>
1011         </listitem>
1012       </varlistentry>
1013
1014       <varlistentry>
1015         <term><option>-fwarn-unused-matches</option>:</term>
1016         <listitem>
1017           <indexterm><primary><option>-fwarn-unused-matches</option></primary></indexterm>
1018           <indexterm><primary>unused matches, warning</primary></indexterm>
1019           <indexterm><primary>matches, unused</primary></indexterm>
1020
1021           <para>Report all unused variables which arise from pattern
1022           matches, including patterns consisting of a single variable.
1023           For instance <literal>f x y = []</literal> would report
1024           <VarName>x</VarName> and <VarName>y</VarName> as unused.  To
1025           eliminate the warning, all unused variables can be replaced
1026           with wildcards.</para>
1027         </listitem>
1028       </varlistentry>
1029
1030     </VariableList>
1031
1032     <para>If you're feeling really paranoid, the
1033     <option>-dcore-lint</option>
1034     option<indexterm><primary><option>-dcore-lint</option></primary></indexterm>
1035     is a good choice.  It turns on heavyweight intra-pass
1036     sanity-checking within GHC.  (It checks GHC's sanity, not
1037     yours.)</para>
1038
1039   </sect1>
1040
1041   &separate;
1042   &packages;
1043
1044   <sect1 id="options-optimise">
1045     <title>Optimisation (code improvement)</title>
1046
1047     <indexterm><primary>optimisation</primary></indexterm>
1048     <indexterm><primary>improvement, code</primary></indexterm>
1049
1050     <para>The <option>-O*</option> options specify convenient
1051     &ldquo;packages&rdquo; of optimisation flags; the
1052     <option>-f*</option> options described later on specify
1053     <emphasis>individual</emphasis> optimisations to be turned on/off;
1054     the <option>-m*</option> options specify
1055     <emphasis>machine-specific</emphasis> optimisations to be turned
1056     on/off.</para>
1057
1058     <sect2 id="optimise-pkgs">
1059       <title><option>-O*</option>: convenient &ldquo;packages&rdquo; of optimisation flags.</title>
1060
1061       <para>There are <emphasis>many</emphasis> options that affect
1062       the quality of code produced by GHC.  Most people only have a
1063       general goal, something like &ldquo;Compile quickly&rdquo; or
1064       &ldquo;Make my program run like greased lightning.&rdquo; The
1065       following &ldquo;packages&rdquo; of optimisations (or lack
1066       thereof) should suffice.</para>
1067
1068       <para>Once you choose a <option>-O*</option>
1069       &ldquo;package,&rdquo; stick with it&mdash;don't chop and
1070       change.  Modules' interfaces <emphasis>will</emphasis> change
1071       with a shift to a new <option>-O*</option> option, and you may
1072       have to recompile a large chunk of all importing modules before
1073       your program can again be run safely (see <XRef
1074       LinkEnd="recomp">).</para>
1075
1076       <variablelist>
1077
1078         <varlistentry>
1079           <term>No <option>-O*</option>-type option specified:</term>
1080           <indexterm><primary>-O* not specified</primary></indexterm>
1081           <listitem>
1082             <para>This is taken to mean: &ldquo;Please compile
1083             quickly; I'm not over-bothered about compiled-code
1084             quality.&rdquo; So, for example: <command>ghc -c
1085             Foo.hs</command></para>
1086           </listitem>
1087         </varlistentry>
1088
1089         <varlistentry>
1090           <term><option>-O0</option>:</term>
1091           <indexterm><primary><option>-O0</option></primary></indexterm>
1092           <listitem>
1093             <para>Means &ldquo;turn off all optimisation&rdquo;,
1094             reverting to the same settings as if no
1095             <option>-O</option> options had been specified.  Saying
1096             <option>-O0</option> can be useful if
1097             eg. <command>make</command> has inserted a
1098             <option>-O</option> on the command line already.</para>
1099           </listitem>
1100         </varlistentry>
1101
1102         <varlistentry>
1103           <term><option>-O</option> or <option>-O1</option>:</term>
1104           <indexterm><primary>-O option</primary></indexterm>
1105           <indexterm><primary>-O1 option</primary></indexterm>
1106           <indexterm><primary>optimise</primary><secondary>normally</secondary></indexterm>
1107           <listitem>
1108             <para>Means: &ldquo;Generate good-quality code without
1109             taking too long about it.&rdquo; Thus, for example:
1110             <command>ghc -c -O Main.lhs</command></para>
1111           </listitem>
1112         </varlistentry>
1113
1114         <varlistentry>
1115           <term><option>-O2</option>:</term>
1116           <indexterm><primary>-O2 option</primary></indexterm>
1117           <indexterm><primary>optimise</primary><secondary>aggressively</secondary></indexterm>
1118           <listitem>
1119             <para>Means: &ldquo;Apply every non-dangerous
1120             optimisation, even if it means significantly longer
1121             compile times.&rdquo;</para>
1122
1123             <para>The avoided &ldquo;dangerous&rdquo; optimisations
1124             are those that can make runtime or space
1125             <emphasis>worse</emphasis> if you're unlucky.  They are
1126             normally turned on or off individually.</para>
1127
1128             <para>At the moment, <option>-O2</option> is
1129             <emphasis>unlikely</emphasis> to produce better code than
1130             <option>-O</option>.</para>
1131           </listitem>
1132         </varlistentry>
1133
1134         <varlistentry>
1135           <term><option>-O2-for-C</option>:</term>
1136           <indexterm><primary>-O2-for-C option</primary></indexterm>
1137           <indexterm><primary>gcc, invoking with -O2</primary></indexterm>
1138           <listitem>
1139             <para>Says to run GCC with <option>-O2</option>, which may
1140             be worth a few percent in execution speed.  Don't forget
1141             <option>-fvia-C</option>, lest you use the native-code
1142             generator and bypass GCC altogether!</para>
1143           </listitem>
1144         </varlistentry>
1145
1146         <varlistentry>
1147           <term><option>-Ofile &lt;file&gt;</option>:</term>
1148           <indexterm><primary>-Ofile &lt;file&gt; option</primary></indexterm>
1149           <indexterm><primary>optimising, customised</primary></indexterm>
1150           <listitem>
1151             <para>(NOTE: not supported yet in GHC 5.x.  Please ask if
1152             you're interested in this.)</para>
1153             
1154             <para>For those who need <emphasis>absolute</emphasis>
1155             control over <emphasis>exactly</emphasis> what options are
1156             used (e.g., compiler writers, sometimes :-), a list of
1157             options can be put in a file and then slurped in with
1158             <option>-Ofile</option>.</para>
1159
1160             <para>In that file, comments are of the
1161             <literal>&num;</literal>-to-end-of-line variety; blank
1162             lines and most whitespace is ignored.</para>
1163
1164             <para>Please ask if you are baffled and would like an
1165             example of <option>-Ofile</option>!</para>
1166           </listitem>
1167         </varlistentry>
1168       </variablelist>
1169
1170       <para>We don't use a <option>-O*</option> flag for day-to-day
1171       work.  We use <option>-O</option> to get respectable speed;
1172       e.g., when we want to measure something.  When we want to go for
1173       broke, we tend to use <option>-O -fvia-C -O2-for-C</option> (and
1174       we go for lots of coffee breaks).</para>
1175
1176       <para>The easiest way to see what <option>-O</option> (etc.)
1177       &ldquo;really mean&rdquo; is to run with <option>-v</option>,
1178       then stand back in amazement.</para>
1179     </sect2>
1180
1181     <sect2 id="options-f">
1182       <title><option>-f*</option>: platform-independent flags</title>
1183
1184       <indexterm><primary>-f* options (GHC)</primary></indexterm>
1185       <indexterm><primary>-fno-* options (GHC)</primary></indexterm>
1186
1187       <para>These flags turn on and off individual optimisations.
1188       They are normally set via the <option>-O</option> options
1189       described above, and as such, you shouldn't need to set any of
1190       them explicitly (indeed, doing so could lead to unexpected
1191       results).  However, there are one or two that may be of
1192       interest:</para>
1193
1194       <variablelist>
1195         <varlistentry>
1196           <term><option>-fexcess-precision</option>:</term>
1197           <listitem>
1198             <indexterm><primary><option>-fexcess-precision</option></primary></indexterm>
1199             <para>When this option is given, intermediate floating
1200             point values can have a <emphasis>greater</emphasis>
1201             precision/range than the final type.  Generally this is a
1202             good thing, but some programs may rely on the exact
1203             precision/range of
1204             <literal>Float</literal>/<literal>Double</literal> values
1205             and should not use this option for their compilation.</para>
1206           </listitem>
1207         </varlistentry>
1208
1209         <varlistentry>
1210           <term><option>-fignore-asserts</option>:</term>
1211           <listitem>
1212             <indexterm><primary><option>-fignore-asserts</option></primary></indexterm>
1213             <para>Causes GHC to ignore uses of the function
1214             <literal>Exception.assert</literal> in source code (in
1215             other words, rewriting <literal>Exception.assert p
1216             e</literal> to <literal>e</literal> (see <xref
1217             linkend="sec-assertions">).  This flag is turned on by
1218             <option>-O</option>.
1219             </para>
1220           </listitem>
1221         </varlistentry>
1222
1223         <varlistentry>
1224           <term><option>-fno-strictness</option></term>
1225           <indexterm><primary><option>-fno-strictness</option></primary>
1226           </indexterm>
1227           <listitem>
1228             <para>Turns off the strictness analyser; sometimes it eats
1229             too many cycles.</para>
1230           </listitem>
1231         </varlistentry>
1232
1233         <varlistentry>
1234           <term><option>-fno-cpr-analyse</option></term>
1235           <indexterm><primary><option>-fno-cpr-analyse</option></primary>
1236           </indexterm>
1237           <listitem>
1238             <para>Turns off the CPR (constructed product result)
1239             analysis; it is somewhat experimental.</para>
1240           </listitem>
1241         </varlistentry>
1242
1243         <varlistentry>
1244           <term><option>-funbox-strict-fields</option>:</term>
1245           <listitem>
1246             <indexterm><primary><option>-funbox-strict-fields</option></primary></indexterm>
1247             <indexterm><primary>strict constructor fields</primary></indexterm>
1248             <indexterm><primary>constructor fields, strict</primary></indexterm>
1249
1250             <para>This option causes all constructor fields which are
1251             marked strict (i.e. &ldquo;!&rdquo;) to be unboxed or
1252             unpacked if possible.  For example:</para>
1253
1254 <ProgramListing>
1255 data T = T !Float !Float
1256 </ProgramListing>
1257
1258             <para>will create a constructor <literal>T</literal>
1259             containing two unboxed floats if the
1260             <option>-funbox-strict-fields</option> flag is given.
1261             This may not always be an optimisation: if the
1262             <Function>T</Function> constructor is scrutinised and the
1263             floats passed to a non-strict function for example, they
1264             will have to be reboxed (this is done automatically by the
1265             compiler).</para>
1266
1267             <para>This option should only be used in conjunction with
1268             <option>-O</option>, in order to expose unfoldings to the
1269             compiler so the reboxing can be removed as often as
1270             possible.  For example:</para>
1271
1272 <ProgramListing>
1273 f :: T -&#62; Float
1274 f (T f1 f2) = f1 + f2
1275 </ProgramListing>
1276
1277             <para>The compiler will avoid reboxing
1278             <Function>f1</Function> and <Function>f2</Function> by
1279             inlining <Function>+</Function> on floats, but only when
1280             <option>-O</option> is on.</para>
1281
1282             <para>Any single-constructor data is eligible for
1283             unpacking; for example</para>
1284
1285 <ProgramListing>
1286 data T = T !(Int,Int)
1287 </ProgramListing>
1288
1289             <para>will store the two <literal>Int</literal>s directly
1290             in the <Function>T</Function> constructor, by flattening
1291             the pair.  Multi-level unpacking is also supported:</para>
1292
1293 <ProgramListing>
1294 data T = T !S
1295 data S = S !Int !Int
1296 </ProgramListing>
1297
1298             <para>will store two unboxed <literal>Int&num;</literal>s
1299             directly in the <Function>T</Function> constructor.</para>
1300           </listitem>
1301         </varlistentry>
1302
1303         <varlistentry>
1304           <term><option>-funfolding-update-in-place&lt;n&gt;</option></term>
1305           <indexterm><primary><option>-funfolding-update-in-place</option></primary></indexterm>
1306           <listitem>
1307             <para>Switches on an experimental "optimisation".
1308             Switching it on makes the compiler a little keener to
1309             inline a function that returns a constructor, if the
1310             context is that of a thunk.
1311 <ProgramListing>
1312    x = plusInt a b
1313 </ProgramListing>
1314             If we inlined plusInt we might get an opportunity to use
1315             update-in-place for the thunk 'x'.</para>
1316           </listitem>
1317         </varlistentry>
1318
1319         <varlistentry>
1320           <term><option>-funfolding-creation-threshold&lt;n&gt;</option>:</term>
1321           <listitem>
1322             <indexterm><primary><option>-funfolding-creation-threshold</option></primary></indexterm>
1323             <indexterm><primary>inlining, controlling</primary></indexterm>
1324             <indexterm><primary>unfolding, controlling</primary></indexterm>
1325             
1326             <para>(Default: 45) Governs the maximum size that GHC will 
1327             allow a function unfolding to be.   (An unfolding has a
1328             &ldquo;size&rdquo; that reflects the cost in terms of
1329             &ldquo;code bloat&rdquo; of expanding that unfolding at
1330             at a call site. A bigger function would be assigned a
1331             bigger cost.) </para>
1332
1333             <para> Consequences: (a) nothing larger than this will be
1334             inlined (unless it has an INLINE pragma); (b) nothing
1335             larger than this will be spewed into an interface
1336             file. </para>
1337
1338
1339             <para> Increasing this figure is more likely to result in longer
1340             compile times than faster code.  The next option is more
1341             useful:</para>
1342           </listitem>
1343         </varlistentry>
1344
1345         <varlistentry>
1346           <term><option>-funfolding-use-threshold&lt;n&gt;</option>:</term>
1347           <listitem>
1348             <indexterm><primary><option>-funfolding-use-threshold</option></primary></indexterm>
1349             <indexterm><primary>inlining, controlling</primary></indexterm>
1350             <indexterm><primary>unfolding, controlling</primary></indexterm>
1351
1352             <para>(Default: 8) This is the magic cut-off figure for
1353             unfolding: below this size, a function definition will be
1354             unfolded at the call-site, any bigger and it won't.  The
1355             size computed for a function depends on two things: the
1356             actual size of the expression minus any discounts that
1357             apply (see <option>-funfolding-con-discount</option>).</para>
1358           </listitem>
1359         </varlistentry>
1360       </variablelist>
1361
1362     </sect2>
1363
1364   </sect1>
1365
1366 &phases;  
1367
1368 <Sect1 id="sec-using-concurrent">
1369 <title>Using Concurrent Haskell</title>
1370
1371 <para>
1372 <indexterm><primary>Concurrent Haskell&mdash;use</primary></indexterm>
1373 </para>
1374
1375 <para>
1376 GHC (as of version 4.00) supports Concurrent Haskell by default,
1377 without requiring a special option or libraries compiled in a certain
1378 way.  To get access to the support libraries for Concurrent Haskell
1379 (i.e. <literal>Concurrent</literal> and friends), use the
1380 <option>-package concurrent</option> option.
1381 </para>
1382
1383 <para>
1384 Three RTS options are provided for modifying the behaviour of the
1385 threaded runtime system.  See the descriptions of
1386 <option>-C[&lt;us&gt;]</option>, <option>-q</option>, and
1387 <option>-t&lt;num&gt;</option> in <XRef LinkEnd="parallel-rts-opts">.
1388 </para>
1389
1390 <para>
1391 Concurrent Haskell is described in more detail in <XRef
1392 LinkEnd="sec-Concurrent">.
1393 </para>
1394
1395 </Sect1>
1396
1397 <Sect1 id="sec-using-parallel">
1398 <title>Using Parallel Haskell</title>
1399
1400 <para>
1401 <indexterm><primary>Parallel Haskell&mdash;use</primary></indexterm>
1402 </para>
1403
1404 <para>
1405 &lsqb;You won't be able to execute parallel Haskell programs unless PVM3
1406 (Parallel Virtual Machine, version 3) is installed at your site.&rsqb;
1407 </Para>
1408
1409 <para>
1410 To compile a Haskell program for parallel execution under PVM, use the
1411 <Option>-parallel</Option> option,<IndexTerm><Primary>-parallel
1412 option</Primary></IndexTerm> both when compiling <Emphasis>and
1413 linking</Emphasis>.  You will probably want to <Literal>import
1414 Parallel</Literal> into your Haskell modules.
1415 </Para>
1416
1417 <para>
1418 To run your parallel program, once PVM is going, just invoke it
1419 &ldquo;as normal&rdquo;.  The main extra RTS option is
1420 <Option>-qp&lt;n&gt;</Option>, to say how many PVM
1421 &ldquo;processors&rdquo; your program to run on.  (For more details of
1422 all relevant RTS options, please see <XRef
1423 LinkEnd="parallel-rts-opts">.)
1424 </para>
1425
1426 <para>
1427 In truth, running Parallel Haskell programs and getting information
1428 out of them (e.g., parallelism profiles) is a battle with the vagaries of
1429 PVM, detailed in the following sections.
1430 </para>
1431
1432 <Sect2 id="pvm-dummies">
1433 <Title>Dummy's guide to using PVM</Title>
1434
1435 <para>
1436 <indexterm><primary>PVM, how to use</primary></indexterm>
1437 <indexterm><primary>Parallel Haskell&mdash;PVM use</primary></indexterm>
1438 Before you can run a parallel program under PVM, you must set the
1439 required environment variables (PVM's idea, not ours); something like,
1440 probably in your <filename>.cshrc</filename> or equivalent:
1441
1442 <ProgramListing>
1443 setenv PVM_ROOT /wherever/you/put/it
1444 setenv PVM_ARCH `$PVM_ROOT/lib/pvmgetarch`
1445 setenv PVM_DPATH $PVM_ROOT/lib/pvmd
1446 </ProgramListing>
1447
1448 </para>
1449
1450 <para>
1451 Creating and/or controlling your &ldquo;parallel machine&rdquo; is a purely-PVM
1452 business; nothing specific to Parallel Haskell. The following paragraphs
1453 describe how to configure your parallel machine interactively.
1454 </Para>
1455
1456 <Para>
1457 If you use parallel Haskell regularly on the same machine configuration it
1458 is a good idea to maintain a file with all machine names and to make the
1459 environment variable PVM_HOST_FILE point to this file. Then you can avoid
1460 the interactive operations described below by just saying
1461 </Para>
1462
1463 <ProgramListing>
1464 pvm $PVM_HOST_FILE
1465 </ProgramListing>
1466
1467 <Para>
1468 You use the <Command>pvm</Command><IndexTerm><Primary>pvm command</Primary></IndexTerm> command to start PVM on your
1469 machine.  You can then do various things to control/monitor your
1470 &ldquo;parallel machine;&rdquo; the most useful being:
1471 </para>
1472
1473 <para>
1474 <InformalTable>
1475 <TGroup Cols=2>
1476 <ColSpec Align="Left">
1477 <TBody>
1478
1479 <row>
1480 <entry><KeyCombo><KeyCap>Control</KeyCap><KeyCap>D</KeyCap></KeyCombo></entry>
1481 <entry>exit <command>pvm</command>, leaving it running</entry>
1482 </row>
1483
1484 <row>
1485 <entry><command>halt</command></entry>
1486 <entry>kill off this &ldquo;parallel machine&rdquo; &amp; exit</entry>
1487 </row>
1488
1489 <row>
1490 <entry><command>add &lt;host&gt;</command></entry>
1491 <entry>add <command>&lt;host&gt;</command> as a processor</entry>
1492 </row>
1493
1494 <row>
1495 <entry><command>delete &lt;host&gt;</command></entry>
1496 <entry>delete <command>&lt;host&gt;</command></entry>
1497 </row>
1498
1499 <row>
1500 <entry><command>reset</command></entry>
1501 <entry>kill what's going, but leave PVM up</entry>
1502 </row>
1503
1504 <row>
1505 <entry><command>conf</command></entry>
1506 <entry>list the current configuration</entry>
1507 </row>
1508
1509 <row>
1510 <entry><command>ps</command></entry>
1511 <entry>report processes' status</entry>
1512 </row>
1513
1514 <row>
1515 <entry><command>pstat &lt;pid&gt;</command></entry>
1516 <entry>status of a particular process</entry>
1517 </row>
1518
1519 </TBody>
1520 </TGroup>
1521 </InformalTable>
1522 </para>
1523
1524 <para>
1525 The PVM documentation can tell you much, much more about <command>pvm</command>!
1526 </para>
1527
1528 </sect2>
1529
1530 <Sect2 id="par-profiles">
1531 <Title>Parallelism profiles</Title>
1532
1533 <para>
1534 <indexterm><primary>parallelism profiles</primary></indexterm>
1535 <indexterm><primary>profiles, parallelism</primary></indexterm>
1536 <indexterm><primary>visualisation tools</primary></indexterm>
1537 </para>
1538
1539 <para>
1540 With Parallel Haskell programs, we usually don't care about the
1541 results&mdash;only with &ldquo;how parallel&rdquo; it was!  We want pretty pictures.
1542 </para>
1543
1544 <Para>
1545 Parallelism profiles (&agrave; la <Command>hbcpp</Command>) can be generated with the
1546 <Option>-qP</Option><IndexTerm><Primary>-qP RTS option (concurrent, parallel)</Primary></IndexTerm> RTS option.  The
1547 per-processor profiling info is dumped into files named
1548 <Filename>&lt;full-path&gt;&lt;program&gt;.gr</Filename>.  These are then munged into a PostScript picture,
1549 which you can then display.  For example, to run your program
1550 <Filename>a.out</Filename> on 8 processors, then view the parallelism profile, do:
1551 </Para>
1552
1553 <Para>
1554
1555 <Screen>
1556 <prompt>&dollar;</prompt> ./a.out +RTS -qP -qp8
1557 <prompt>&dollar;</prompt> grs2gr *.???.gr &#62; temp.gr # combine the 8 .gr files into one
1558 <prompt>&dollar;</prompt> gr2ps -O temp.gr              # cvt to .ps; output in temp.ps
1559 <prompt>&dollar;</prompt> ghostview -seascape temp.ps   # look at it!
1560 </Screen>
1561
1562 </Para>
1563
1564 <para>
1565 The scripts for processing the parallelism profiles are distributed
1566 in <filename>ghc/utils/parallel/</filename>.
1567 </para>
1568
1569 </sect2>
1570
1571 <Sect2>
1572 <Title>Other useful info about running parallel programs</Title>
1573
1574 <Para>
1575 The &ldquo;garbage-collection statistics&rdquo; RTS options can be useful for
1576 seeing what parallel programs are doing.  If you do either
1577 <Option>+RTS -Sstderr</Option><IndexTerm><Primary>-Sstderr RTS option</Primary></IndexTerm> or <Option>+RTS -sstderr</Option>, then
1578 you'll get mutator, garbage-collection, etc., times on standard
1579 error. The standard error of all PE's other than the `main thread'
1580 appears in <filename>/tmp/pvml.nnn</filename>, courtesy of PVM.
1581 </para>
1582
1583 <para>
1584 Whether doing <option>+RTS -Sstderr</option> or not, a handy way to watch
1585 what's happening overall is: <command>tail -f /tmp/pvml.nnn</command>.
1586 </para>
1587
1588 </sect2>
1589
1590 <Sect2 id="parallel-rts-opts">
1591 <title>RTS options for Concurrent/Parallel Haskell
1592 </title>
1593
1594 <para>
1595 <indexterm><primary>RTS options, concurrent</primary></indexterm>
1596 <indexterm><primary>RTS options, parallel</primary></indexterm>
1597 <indexterm><primary>Concurrent Haskell&mdash;RTS options</primary></indexterm>
1598 <indexterm><primary>Parallel Haskell&mdash;RTS options</primary></indexterm>
1599 </para>
1600
1601 <para>
1602 Besides the usual runtime system (RTS) options
1603 (<XRef LinkEnd="runtime-control">), there are a few options particularly
1604 for concurrent/parallel execution.
1605 </para>
1606
1607 <para>
1608 <VariableList>
1609
1610 <VarListEntry>
1611 <Term><Option>-qp&lt;N&gt;</Option>:</Term>
1612 <ListItem>
1613 <Para>
1614 <IndexTerm><Primary>-qp&lt;N&gt; RTS option</Primary></IndexTerm>
1615 (PARALLEL ONLY) Use <Literal>&lt;N&gt;</Literal> PVM processors to run this program;
1616 the default is 2.
1617 </para>
1618 </listitem>
1619 </varlistentry>
1620 <varlistentry>
1621 <term><option>-C[&lt;us&gt;]</option>:</term>
1622 <listitem>
1623 <para>
1624 <indexterm><primary>-C&lt;us&gt; RTS option</primary></indexterm> Sets
1625 the context switch interval to <literal>&lt;s&gt;</literal> seconds.
1626 A context switch will occur at the next heap block allocation after
1627 the timer expires (a heap block allocation occurs every 4k of
1628 allocation).  With <option>-C0</option> or <option>-C</option>,
1629 context switches will occur as often as possible (at every heap block
1630 allocation).  By default, context switches occur every 20ms
1631 milliseconds.  Note that GHC's internal timer ticks every 20ms, and
1632 the context switch timer is always a multiple of this timer, so 20ms
1633 is the maximum granularity available for timed context switches.
1634 </para>
1635 </listitem>
1636 </varlistentry>
1637 <varlistentry>
1638 <term><option>-q[v]</option>:</term>
1639 <listitem>
1640 <para>
1641 <indexterm><primary>-q RTS option</primary></indexterm>
1642 (PARALLEL ONLY) Produce a quasi-parallel profile of thread activity,
1643 in the file <FIlename>&lt;program&gt;.qp</FIlename>.  In the style of <command>hbcpp</command>, this profile
1644 records the movement of threads between the green (runnable) and red
1645 (blocked) queues.  If you specify the verbose suboption (<option>-qv</option>), the
1646 green queue is split into green (for the currently running thread
1647 only) and amber (for other runnable threads).  We do not recommend
1648 that you use the verbose suboption if you are planning to use the
1649 <Command>hbcpp</Command> profiling tools or if you are context switching at every heap
1650 check (with <Option>-C</Option>).
1651 -->
1652 </Para>
1653 </ListItem>
1654 </VarListEntry>
1655 <VarListEntry>
1656 <Term><Option>-qt&lt;num&gt;</Option>:</Term>
1657 <ListItem>
1658 <Para>
1659 <IndexTerm><Primary>-qt&lt;num&gt; RTS option</Primary></IndexTerm>
1660 (PARALLEL ONLY) Limit the thread pool size, i.e. the number of concurrent
1661 threads per processor to <Literal>&lt;num&gt;</Literal>.  The default is
1662 32.  Each thread requires slightly over 1K <Emphasis>words</Emphasis> in
1663 the heap for thread state and stack objects.  (For 32-bit machines, this
1664 translates to 4K bytes, and for 64-bit machines, 8K bytes.)
1665 </Para>
1666 </ListItem>
1667 </VarListEntry>
1668 <!-- no more -HWL
1669 <VarListEntry>
1670 <Term><Option>-d</Option>:</Term>
1671 <ListItem>
1672 <Para>
1673 <IndexTerm><Primary>-d RTS option (parallel)</Primary></IndexTerm>
1674 (PARALLEL ONLY) Turn on debugging.  It pops up one xterm (or GDB, or
1675 something&hellip;) per PVM processor.  We use the standard <Command>debugger</Command>
1676 script that comes with PVM3, but we sometimes meddle with the
1677 <Command>debugger2</Command> script.  We include ours in the GHC distribution,
1678 in <Filename>ghc/utils/pvm/</Filename>.
1679 </Para>
1680 </ListItem>
1681 </VarListEntry>
1682 -->
1683 <VarListEntry>
1684 <Term><Option>-qe&lt;num&gt;</Option>:</Term>
1685 <ListItem>
1686 <Para>
1687 <IndexTerm><Primary>-qe&lt;num&gt; RTS option
1688 (parallel)</Primary></IndexTerm> (PARALLEL ONLY) Limit the spark pool size
1689 i.e. the number of pending sparks per processor to
1690 <Literal>&lt;num&gt;</Literal>. The default is 100. A larger number may be
1691 appropriate if your program generates large amounts of parallelism
1692 initially.
1693 </Para>
1694 </ListItem>
1695 </VarListEntry>
1696 <VarListEntry>
1697 <Term><Option>-qQ&lt;num&gt;</Option>:</Term>
1698 <ListItem>
1699 <Para>
1700 <IndexTerm><Primary>-qQ&lt;num&gt; RTS option (parallel)</Primary></IndexTerm>
1701 (PARALLEL ONLY) Set the size of packets transmitted between processors
1702 to <Literal>&lt;num&gt;</Literal>. The default is 1024 words. A larger number may be
1703 appropriate if your machine has a high communication cost relative to
1704 computation speed.
1705 </Para>
1706 </ListItem>
1707 </VarListEntry>
1708 <VarListEntry>
1709 <Term><Option>-qh&lt;num&gt;</Option>:</Term>
1710 <ListItem>
1711 <Para>
1712 <IndexTerm><Primary>-qh&lt;num&gt; RTS option (parallel)</Primary></IndexTerm>
1713 (PARALLEL ONLY) Select a packing scheme. Set the number of non-root thunks to pack in one packet to
1714 &lt;num&gt;-1 (0 means infinity). By default GUM uses full-subgraph
1715 packing, i.e. the entire subgraph with the requested closure as root is
1716 transmitted (provided it fits into one packet). Choosing a smaller value
1717 reduces the amount of pre-fetching of work done in GUM. This can be
1718 advantageous for improving data locality but it can also worsen the balance
1719 of the load in the system. 
1720 </Para>
1721 </ListItem>
1722 </VarListEntry>
1723 <VarListEntry>
1724 <Term><Option>-qg&lt;num&gt;</Option>:</Term>
1725 <ListItem>
1726 <Para>
1727 <IndexTerm><Primary>-qg&lt;num&gt; RTS option
1728 (parallel)</Primary></IndexTerm> (PARALLEL ONLY) Select a globalisation
1729 scheme. This option affects the
1730 generation of global addresses when transferring data. Global addresses are
1731 globally unique identifiers required to maintain sharing in the distributed
1732 graph structure. Currently this is a binary option. With &lt;num&gt;=0 full globalisation is used
1733 (default). This means a global address is generated for every closure that
1734 is transmitted. With &lt;num&gt;=1 a thunk-only globalisation scheme is
1735 used, which generated global address only for thunks. The latter case may
1736 lose sharing of data but has a reduced overhead in packing graph structures
1737 and maintaining internal tables of global addresses.
1738 </Para>
1739 </ListItem>
1740 </VarListEntry>
1741 </VariableList>
1742 </para>
1743
1744 </sect2>
1745
1746 </Sect1>
1747
1748   <sect1 id="options-platform">
1749     <title>Platform-specific Flags</title>
1750
1751     <indexterm><primary>-m* options</primary></indexterm>
1752     <indexterm><primary>platform-specific options</primary></indexterm>
1753     <indexterm><primary>machine-specific options</primary></indexterm>
1754
1755     <para>Some flags only make sense for particular target
1756     platforms.</para>
1757
1758     <variablelist>
1759
1760       <varlistentry>
1761         <term><option>-mv8</option>:</term>
1762         <listitem>
1763           <para>(SPARC machines)<indexterm><primary>-mv8 option (SPARC
1764           only)</primary></indexterm> Means to pass the like-named
1765           option to GCC; it says to use the Version 8 SPARC
1766           instructions, notably integer multiply and divide.  The
1767           similiar <option>-m*</option> GCC options for SPARC also
1768           work, actually.</para>
1769         </listitem>
1770       </varlistentry>
1771
1772       <varlistentry>
1773         <term><option>-monly-[32]-regs</option>:</term>
1774         <listitem>
1775           <para>(iX86 machines)<indexterm><primary>-monly-N-regs
1776           option (iX86 only)</primary></indexterm> GHC tries to
1777           &ldquo;steal&rdquo; four registers from GCC, for performance
1778           reasons; it almost always works.  However, when GCC is
1779           compiling some modules with four stolen registers, it will
1780           crash, probably saying:
1781
1782 <Screen>
1783 Foo.hc:533: fixed or forbidden register was spilled.
1784 This may be due to a compiler bug or to impossible asm
1785 statements or clauses.
1786 </Screen>
1787
1788           Just give some registers back with
1789           <option>-monly-N-regs</option>.  Try `3' first, then `2'.
1790           If `2' doesn't work, please report the bug to us.</para>
1791         </listitem>
1792       </varlistentry>
1793     </variablelist>
1794
1795   </sect1>
1796
1797 &runtime;
1798 &debug;
1799 &flags;
1800
1801 </Chapter>
1802
1803 <!-- Emacs stuff:
1804      ;;; Local Variables: ***
1805      ;;; mode: sgml ***
1806      ;;; sgml-parent-document: ("users_guide.sgml" "book" "chapter") ***
1807      ;;; End: ***
1808  -->