[project @ 1999-07-14 08:41:21 by simonmar]
[ghc-hetmet.git] / ghc / docs / users_guide / using.vsgml
1 <sect> Using GHC
2 <label id="using-GHC">
3 <p>
4 <nidx>GHC, using</nidx>
5 <nidx>using GHC</nidx>
6
7 GHC is a command-line compiler: in order to compile a Haskell program,
8 GHC must be invoked on the source file(s) by typing a command to the
9 shell.  The steps involved in compiling a program can be automated
10 using the @make@ tool (this is especially useful if the program
11 consists of multiple source files which depend on each other).  This
12 section describes how to use GHC from the command-line.
13
14 %************************************************************************
15 %*                                                                      *
16 <sect1> Overall command-line structure
17 <label id="command-line-structure">
18 <p>
19 <nidx>structure, command-line</nidx>
20 <nidx>command-line structure</nidx>
21 %*                                                                      *
22 %************************************************************************
23
24 An invocation of GHC takes the following form:
25
26 <tscreen> <verb>
27 ghc [argument...]
28 </verb> </tscreen>
29
30 Command-line arguments are either options or file names.
31
32 Command-line options begin with @-@.  They may <em>not</em> be
33 grouped: @-vO@ is different from @-v -O@.  Options need not
34 precede filenames: e.g., @ghc *.o -o foo@.  All options are
35 processed and then applied to all files; you cannot, for example, invoke
36 @ghc -c -O1 Foo.hs -O2 Bar.hs@ to apply different optimisation
37 levels to the files @Foo.hs@ and @Bar.hs@.  For conflicting
38 options, e.g., @-c -S@, we reserve the right to do anything we
39 want.  (Usually, the last one applies.)
40
41 %************************************************************************
42 %*                                                                      *
43 <sect1>Meaningful file suffixes
44 <label id="file-suffixes">
45 <p>
46 <nidx>suffixes, file</nidx>
47 <nidx>file suffixes for GHC</nidx>
48 %*                                                                      *
49 %************************************************************************
50
51 File names with ``meaningful'' suffixes (e.g., @.lhs@ or @.o@)
52 cause the ``right thing'' to happen to those files.
53
54 <descrip>
55 <tag>@.lhs@:</tag>
56 <nidx>lhs suffix</nidx>
57 A ``literate Haskell'' module.
58
59 <tag>@.hs@:</tag> 
60 A not-so-literate Haskell module.
61
62 <tag>@.hi@:</tag>
63 A Haskell interface file, probably compiler-generated.
64
65 <tag>@.hc@:</tag>
66 Intermediate C file produced by the Haskell compiler.
67
68 <tag>@.c@:</tag>
69 A C~file not produced by the Haskell compiler.
70
71 % <tag>@.i@:</tag>
72 % C code after it has be preprocessed by the C compiler (using the
73 % @-E@ flag).
74
75 <tag>@.s@:</tag>
76 An assembly-language source file, usually
77 produced by the compiler.
78
79 <tag>@.o@:</tag>
80 An object file, produced by an assembler.
81 </descrip>
82
83 Files with other suffixes (or without suffixes) are passed straight
84 to the linker.
85
86 %************************************************************************
87 %*                                                                      *
88 <sect1>Help and verbosity options
89 <label id="options-help">
90 <p>
91 <nidx>help options (GHC)</nidx>
92 <nidx>verbose option (GHC)</nidx>
93 %*                                                                      *
94 %************************************************************************
95
96 A good option to start with is the @-help@ (or @-?@) option.
97 <nidx>-help option</nidx>
98 <nidx>-? option</nidx>
99 GHC spews a long message to standard output and then exits.
100
101 The @-v@<nidx>-v option</nidx> option makes GHC <em>verbose</em>: it
102 reports its version number and shows (on stderr) exactly how it invokes each 
103 phase of the compilation system.  Moreover, it passes
104 the @-v@ flag to most phases; each reports
105 its version number (and possibly some other information).
106
107 Please, oh please, use the @-v@ option when reporting bugs!
108 Knowing that you ran the right bits in the right order is always the
109 first thing we want to verify.
110
111 If you're just interested in the compiler version number, the
112 @--version@<nidx>--version option</nidx> option prints out a
113 one-line string containing the requested info.
114
115 %************************************************************************
116 %*                                                                      *
117 <sect1>Running the right phases in the right order
118 <label id="options-order">
119 <p>
120 <nidx>order of passes in GHC</nidx>
121 <nidx>pass ordering in GHC</nidx>
122 %*                                                                      *
123 %************************************************************************
124
125 The basic task of the @ghc@ driver is to run each input file
126 through the right phases (compiling, linking, etc.).
127
128 The first phase to run is determined by the input-file suffix, and the
129 last phase is determined by a flag.  If no relevant flag is present,
130 then go all the way through linking.  This table summarises:
131
132 <tabular ca="llll">
133 Phase of the           | Suffix saying | Flag saying   | (suffix of) @@
134 compilation system     | ``start here''| ``stop after''| output file @@
135 @@
136 literate pre-processor | .lhs          | -             | - @@
137 C pre-processor (opt.) | -             | -             | - @@
138 Haskell compiler       | .hs           | -C, -S        | .hc, .s @@
139 C compiler (opt.)      | .hc or .c     | -S            | .s  @@
140 assembler              | .s            | -c            | .o  @@
141 linker                 | other         | -             | a.out @@
142 </tabular>
143 <nidx>-C option</nidx>
144 <nidx>-S option</nidx>
145 <nidx>-c option</nidx>
146
147 Thus, a common invocation would be: @ghc -c Foo.hs@
148
149 Note: What the Haskell compiler proper produces depends on whether a
150 native-code generator is used (producing assembly language) or not
151 (producing C).
152
153 The option @-cpp@<nidx>-cpp option</nidx> must be given for the C
154 pre-processor phase to be run, that is, the pre-processor will be run
155 over your Haskell source file before continuing.
156
157 The option @-E@<nidx>-E option</nidx> runs just the pre-processing
158 passes of the compiler, outputting the result on stdout before
159 stopping. If used in conjunction with -cpp, the output is the
160 code blocks of the original (literal) source after having put it
161 through the grinder that is the C pre-processor. Sans @-cpp@, the
162 output is the de-litted version of the original source.
163
164 The option @-optcpp-E@<nidx>-optcpp-E option</nidx> runs just the
165 pre-processing stage of the C-compiling phase, sending the result to
166 stdout.  (For debugging or obfuscation contests, usually.)
167
168 %************************************************************************
169 %*                                                                      *
170 <sect1>Re-directing the compilation output(s)
171 <label id="options-output">
172 <p>
173 <nidx>output-directing options</nidx>
174 %*                                                                      *
175 %************************************************************************
176
177 GHC's compiled output normally goes into a @.hc@, @.o@, etc., file,
178 depending on the last-run compilation phase.  The option @-o
179 foo@<nidx>-o option</nidx> re-directs the output of that last-run
180 phase to file @foo@.
181
182 Note: this ``feature'' can be counterintuitive:
183 @ghc -C -o foo.o foo.hs@ will put the intermediate C code in the
184 file @foo.o@, name notwithstanding!
185
186 EXOTICA: But the @-o@ option isn't of much use if you have
187 <em>several</em> input files... Non-interface output files are
188 normally put in the same directory as their corresponding input file
189 came from.  You may specify that they be put in another directory
190 using the @-odir <dir>@<nidx>-odir &lt;dir&gt; option</nidx> (the
191 ``Oh, dear'' option).  For example:
192
193 <tscreen><verb>
194 % ghc -c parse/Foo.hs parse/Bar.hs gurgle/Bumble.hs -odir `arch`
195 </verb></tscreen>
196
197 The output files, @Foo.o@, @Bar.o@, and @Bumble.o@ would be
198 put into a subdirectory named after the architecture of the executing
199 machine (@sun4@, @mips@, etc).  The directory must already
200 exist; it won't be created.
201
202 Note that the @-odir@ option does <em>not</em> affect where the
203 interface files are put.  In the above example, they would still be
204 put in @parse/Foo.hi@, @parse/Bar.hi@, and @gurgle/Bumble.hi@.
205
206 MORE EXOTICA: The @-osuf <suffix>@<nidx>-osuf &lt;suffix&gt;
207 option</nidx> will change the @.o@ file suffix for object files to
208 whatever you specify.  (We use this in compiling the prelude.).
209 Similarly, the @-hisuf <suffix>@<nidx>-hisuf &lt;suffix&gt;
210 option</nidx> will change the @.hi@ file suffix for non-system
211 interface files (see Section <ref name="Other options related to
212 interface files" id="hi-options">).
213
214 The @-hisuf@/@-osuf@ game is useful if you want to compile a program
215 with both GHC and HBC (say) in the same directory.  Let HBC use the
216 standard @.hi@/@.o@ suffixes; add @-hisuf g_hi -osuf g_o@ to your
217 @make@ rule for GHC compiling...
218
219 FURTHER EXOTICA: If you are doing a normal @.hs@-to-@.o@ compilation
220 but would like to hang onto the intermediate @.hc@ C file, just
221 throw in a @-keep-hc-file-too@ option<nidx>-keep-hc-file-too option</nidx>.
222 If you would like to look at the assembler output, toss in a
223 @-keep-s-file-too@,<nidx>-keep-s-file-too option</nidx> too.
224
225 <sect2> Saving GHC's standard error output
226 <label id="saving-ghc-stderr">
227 <p>
228 <nidx>standard error, saving</nidx>
229
230 Sometimes, you may cause GHC to be rather chatty on standard error;
231 with @-v@, for example.  You can instruct GHC to <em>append</em> this
232 output to a particular log file with a @-odump <blah>@<nidx>-odump
233 &lt;blah&gt; option</nidx> option.
234
235 <sect2> Redirecting temporary files
236 <label id="temp-files">
237 <p>
238 <nidx>temporary files, redirecting</nidx>
239
240 If you have trouble because of running out of space in @/tmp@ (or
241 wherever your installation thinks temporary files should go), you may
242 use the @-tmpdir <dir>@<nidx>-tmpdir &lt;dir&gt; option</nidx> option
243 to specify an alternate directory.  For example, @-tmpdir .@ says to
244 put temporary files in the current working directory.
245
246 Alternatively, use your @TMPDIR@ environment variable.<nidx>TMPDIR
247 environment variable</nidx> Set it to the name of the directory where
248 temporary files should be put.  GCC and other programs will honour the
249 @TMPDIR@ variable as well.
250
251 Even better idea: Set the @TMPDIR@ variable when building GHC, and
252 never worry about @TMPDIR@ again. (see the build documentation).
253
254 %************************************************************************
255 %*                                                                      *
256 <sect1>Warnings and sanity-checking
257 <label id="options-sanity">
258 <p>
259 <nidx>sanity-checking options</nidx>
260 <nidx>warnings</nidx>
261 %*                                                                      *
262 %************************************************************************
263
264 GHC has a number of options that select which types of non-fatal error
265 messages, otherwise known as warnings, can be generated during
266 compilation.  By default, you get a standard set of warnings which are
267 generally likely to indicate bugs in your program.  These are:
268 @-fwarn-overlpapping-patterns@, @-fwarn-duplicate-exports@, and
269 @-fwarn-missing-methods@.  The following flags are simple ways to
270 select standard ``packages'' of warnings:
271
272 <descrip>
273
274 <tag>@-Wnot@:</tag>
275 <nidx>-Wnot option</nidx>
276
277 Turns off all warnings, including the standard ones.
278
279 <tag>@-w@:</tag>
280 <nidx>-w option</nidx>
281
282 Synonym for @-Wnot@.
283
284 <tag>@-W@:</tag>
285 <nidx>-W option</nidx>
286
287 Provides the standard warnings plus @-fwarn-incomplete-patterns@,
288 @-fwarn-unused-imports@ and @-fwarn-unused-binds@.
289
290 <tag>@-Wall@:</tag>
291 <nidx>-Wall option</nidx>
292
293 Turns on all warning options.
294
295 </descrip>
296
297 The full set of warning options is described below.  To turn off any
298 warning, simply give the corresponding @-fno-warn-...@ option on
299 the command line.
300
301 <descrip>
302
303 <tag>@-fwarn-name-shadowing@:</tag> 
304 <nidx>-fwarn-name-shadowing option</nidx>
305 <nidx>shadowing, warning</nidx>
306
307 This option causes a warning to be emitted whenever an inner-scope
308 value has the same name as an outer-scope value, i.e. the inner value
309 shadows the outer one.  This can catch typographical errors that turn
310 into hard-to-find bugs, e.g., in the inadvertent cyclic definition
311 @let x = ... x ... in@.
312
313 Consequently, this option does <em>not</em> allow cyclic recursive
314 definitions.
315
316 <tag>@-fwarn-overlapping-patterns@:</tag>
317 <nidx>-fwarn-overlapping-patterns option</nidx>
318 <nidx>overlapping patterns, warning</nidx>
319 <nidx>patterns, overlapping</nidx>
320
321 By default, the compiler will warn you if a set of patterns are
322 overlapping, i.e.,
323
324 <tscreen><verb>
325 f :: String -> Int
326 f []     = 0
327 f (_:xs) = 1
328 f "2"    = 2
329 </verb></tscreen>
330
331 where the last pattern match in @f@ won't ever be reached, as the
332 second pattern overlaps it. More often than not, redundant patterns
333 is a programmer mistake/error, so this option is enabled by default.
334
335 <tag>@-fwarn-incomplete-patterns@:</tag>
336 <nidx>-fwarn-incomplete-patterns option</nidx>
337 <nidx>incomplete patterns, warning</nidx>
338 <nidx>patterns, incomplete</nidx>
339
340 Similarly for incomplete patterns, the function @g@ below will fail
341 when applied to non-empty lists, so the compiler will emit a warning
342 about this when @-fwarn-incomplete-patterns@ is enabled.
343
344 <tscreen><verb>
345 g [] = 2
346 </verb></tscreen>
347
348 This option isn't enabled be default because it can be a bit noisy,
349 and it doesn't always indicate a bug in the program.  However, it's
350 generally considered good practice to cover all the cases in your
351 functions.
352
353 <tag>@-fwarn-missing-methods@:</tag>
354 <nidx>-fwarn-missing-methods option</nidx>
355 <nidx>missing methods, warning</nidx>
356 <nidx>methods, missing</nidx>
357
358 This option is on by default, and warns you whenever an instance
359 declaration is missing one or more methods, and the corresponding
360 class declaration has no default declaration for them.
361
362 <tag>@-fwarn-unused-imports@:</tag>
363 <nidx>-fwarn-unused-imports option</nidx>
364 <nidx>unused imports, warning</nidx>
365 <nidx>imports, unused</nidx>
366
367 Report any objects that are explicitly imported but never used.
368
369 <tag>@-fwarn-unused-binds@:</tag>
370 <nidx>-fwarn-unused-binds option</nidx>
371 <nidx>unused binds, warning</nidx>
372 <nidx>binds, unused</nidx>
373
374 Report any function definitions (and local bindings) which are unused.
375 For top-level functions, the warning is only given if the binding is
376 not exported.
377
378 <tag>@-fwarn-unused-matches@:</tag>
379 <nidx>-fwarn-unused-matches option</nidx>
380 <nidx>unused matches, warning</nidx>
381 <nidx>matches, unused</nidx>
382
383 Report all unused variables which arise from pattern matches,
384 including patterns consisting of a single variable.  For instance @f x
385 y = []@ would report @x@ and @y@ as unused.  To eliminate the warning,
386 all unused variables can be replaced with wildcards.
387
388 <tag>@-fwarn-duplicate-exports@:</tag>
389 <nidx>-fwarn-duplicate-exports option</nidx>
390 <nidx>duplicate exports, warning</nidx>
391 <nidx>export lists, duplicates</nidx>
392
393 Have the compiler warn about duplicate entries in export lists. This
394 is useful information if you maintain large export lists, and want to
395 avoid the continued export of a definition after you've deleted (one)
396 mention of it in the export list.
397
398 This option is on by default.
399
400 <tag><tt>-fwarn-type-defaults</tt>:</tag>
401 <nidx>-fwarn-type-defaults option</nidx>
402 <nidx>defaulting mechanism, warning</nidx>
403
404 Have the compiler warn/inform you where in your source the Haskell
405 defaulting mechanism for numeric types kicks in. This is useful
406 information when converting code from a context that assumed one
407 default into one with another, e.g., the 'default default' for Haskell
408 1.4 caused the otherwise unconstrained value <tt>1</tt> to be given
409 the type <tt>Int</tt>, whereas Haskell 98 defaults it to
410 <tt>Integer</tt>.  This may lead to differences in performance and
411 behaviour, hence the usefulness of being non-silent about this.
412
413 This warning is off by default.
414
415 <tag>@-fwarn-missing-signatures@:</tag>
416 <nidx>-fwarn-missing-signatures option</nidx>
417 <nidx>type signatures, missing</nidx>
418
419 If you would like GHC to check that every top-level function/value has
420 a type signature, use the @-fwarn-missing-signatures@ option.  This
421 option is off by default.
422
423 </descrip>
424
425 If you're feeling really paranoid, the @-dcore-lint@
426 option<nidx>-dcore-lint option</nidx> is a good choice.  It turns on
427 heavyweight intra-pass sanity-checking within GHC.  (It checks GHC's
428 sanity, not yours.)
429
430 %************************************************************************
431 %*                                                                      *
432 <sect1>Separate compilation
433 <label id="separate-compilation">
434 <p>
435 <nidx>separate compilation</nidx>
436 <nidx>recompilation checker</nidx>
437 <nidx>make and recompilation</nidx>
438 %*                                                                      *
439 %************************************************************************
440
441 This section describes how GHC supports separate compilation.
442
443 <sect2>Interface files
444 <label id="hi-files">
445 <p>
446 <nidx>interface files</nidx>
447 <nidx>.hi files</nidx>
448
449 When GHC compiles a source file @F@ which contains a module @A@, say,
450 it generates an object @F.o@, <em>and</em> a companion <em>interface
451 file</em> @A.hi@.  The interface file is not intended for human
452 consumption, as you'll see if you take a look at one.  It's merely
453 there to help the compiler compile other modules in the same program.
454
455 NOTE: Having the name of the interface file follow the module name and
456 not the file name, means that working with tools such as @make(1)@
457 become harder. @make@ implicitly assumes that any output files
458 produced by processing a translation unit will have file names that
459 can be derived from the file name of the translation unit.  For
460 instance, pattern rules becomes unusable.  For this reason, we
461 recommend you stick to using the same file name as the module name.
462
463 The interface file for @A@ contains information needed by the compiler
464 when it compiles any module @B@ that imports @A@, whether directly or
465 indirectly.  When compiling @B@, GHC will read @A.hi@ to find the
466 details that it needs to know about things defined in @A@.
467
468 Furthermore, when compiling module @C@ which imports @B@, GHC may
469 decide that it needs to know something about @A@ --- for example, @B@
470 might export a function that involves a type defined in @A@.  In this
471 case, GHC will go and read @A.hi@ even though @C@ does not explicitly
472 import @A@ at all.
473
474 The interface file may contain all sorts of things that aren't
475 explicitly exported from @A@ by the programmer.  For example, even
476 though a data type is exported abstractly, @A.hi@ will contain the
477 full data type definition.  For small function definitions, @A.hi@
478 will contain the complete definition of the function.  For bigger
479 functions, @A.hi@ will contain strictness information about the
480 function.  And so on.  GHC puts much more information into @.hi@ files
481 when optimisation is turned on with the @-O@ flag.  Without @-O@ it
482 puts in just the minimum; with @-O@ it lobs in a whole pile of stuff.
483 <nidx>optimsation, effect on .hi files</nidx>
484
485 @A.hi@ should really be thought of as a compiler-readable version of
486 @A.o@.  If you use a @.hi@ file that wasn't generated by the same
487 compilation run that generates the @.o@ file the compiler may assume
488 all sorts of incorrect things about @A@, resulting in core dumps and
489 other unpleasant happenings.
490
491 %************************************************************************
492 %*                                                                      *
493 <sect2>Finding interface files
494 <label id="options-finding-imports">
495 <p>
496 <nidx>interface files, finding them</nidx>
497 <nidx>finding interface files</nidx>
498 %*                                                                      *
499 %************************************************************************
500
501 In your program, you import a module @Foo@ by saying
502 @import Foo@.  GHC goes looking for an interface file, @Foo.hi@.
503 It has a builtin list of directories (notably including @.@) where
504 it looks.
505
506 <descrip>
507
508 <tag>@-i<dirs>@</tag><nidx>-i&lt;dirs&gt; option</nidx> This flag
509 prepends a colon-separated list of @dirs@ to the ``import
510 directories'' list.
511
512 <tag>@-i@</tag> resets the ``import directories'' list back to nothing.
513
514 <tag>@-fno-implicit-prelude@</tag>
515 <nidx>-fno-implicit-prelude option</nidx>
516 GHC normally imports @Prelude.hi@ files for you.  If you'd rather it
517 didn't, then give it a @-fno-implicit-prelude@ option.  You are
518 unlikely to get very far without a Prelude, but, hey, it's a free
519 country.
520
521 <tag>@-syslib <lib>@</tag>
522 <nidx>-syslib &lt;lib&gt; option</nidx>
523
524 If you are using a system-supplied non-Prelude library (e.g., the
525 POSIX library), just use a @-syslib posix@ option (for example).  The
526 right interface files should then be available.  Section <ref
527 name="The GHC Prelude and Libraries" id="ghc-prelude"> lists the
528 libraries available by this mechanism.
529
530 <tag>@-I<dir>@</tag>
531 <nidx>-I&lt;dir&gt; option</nidx>
532
533 Once a Haskell module has been compiled to C (@.hc@ file), you may
534 wish to specify where GHC tells the C compiler to look for @.h@ files.
535 (Or, if you are using the @-cpp@ option<nidx>-cpp option</nidx>, where
536 it tells the C pre-processor to look...)  For this purpose, use a @-I@
537 option in the usual C-ish way.
538
539 </descrip>
540
541 %************************************************************************
542 %*                                                                      *
543 <sect2>Other options related to interface files
544 <label id="hi-options">
545 <p>
546 <nidx>interface files, options</nidx>
547 %*                                                                      *
548 %************************************************************************
549
550 The interface output may be directed to another file
551 @bar2/Wurble.iface@ with the option @-ohi bar2/Wurble.iface@<nidx>-ohi
552 &lt;file&gt; option</nidx> (not recommended).
553
554 To avoid generating an interface file at all, use a @-nohi@
555 option.<nidx>-nohi option</nidx>
556
557 The compiler does not overwrite an existing @.hi@ interface file if
558 the new one is byte-for-byte the same as the old one; this is friendly
559 to @make@.  When an interface does change, it is often enlightening to
560 be informed.  The @-hi-diffs@<nidx>-hi-diffs option</nidx> option will
561 make @ghc@ run @diff@ on the old and new @.hi@ files. You can also
562 record the difference in the interface file itself, the
563 @-keep-hi-diffs@<nidx>-keep-hi-diffs</nidx> option takes care of that.
564
565 The @.hi@ files from GHC contain ``usage'' information which changes
566 often and uninterestingly.  If you really want to see these changes
567 reported, you need to use the
568 @-hi-diffs-with-usages@<nidx>-hi-diffs-with-usages option</nidx>
569 option.
570
571 Interface files are normally jammed full of compiler-produced
572 <em>pragmas</em>, which record arities, strictness info, etc.  If you
573 think these pragmas are messing you up (or you are doing some kind of
574 weird experiment), you can tell GHC to ignore them with the
575 @-fignore-interface-pragmas@<nidx>-fignore-interface-pragmas
576 option</nidx> option.
577
578 When compiling without optimisations on, the compiler is extra-careful
579 about not slurping in data constructors and instance declarations that
580 it will not need. If you believe it is getting it wrong and not
581 importing stuff which you think it should, this optimisation can be
582 turned off with @-fno-prune-tydecls@ and @-fno-prune-instdecls@.
583 <nidx>-fno-prune-tydecls option</nidx><nidx>-fno-prune-instdecls
584 option</nidx>
585
586 See also Section <ref name="Linking and consistency-checking"
587 id="options-linker">, which describes how the linker finds standard
588 Haskell libraries.
589
590 %************************************************************************
591 %*                                                                      *
592 <sect2>The recompilation checker
593 <label id="recomp">
594 <p>
595 <nidx>recompilation checker</nidx>
596 %*                                                                      *
597 %************************************************************************
598
599 In the olden days, GHC compared the newly-generated @.hi@ file with
600 the previous version; if they were identical, it left the old one
601 alone and didn't change its modification date.  In consequence,
602 importers of a module with an unchanged output @.hi@ file were not
603 recompiled.
604
605 This doesn't work any more.  In our earlier example, module @C@ does
606 not import module @A@ directly, yet changes to @A.hi@ should force a
607 recompilation of @C@.  And some changes to @A@ (changing the
608 definition of a function that appears in an inlining of a function
609 exported by @B@, say) may conceivably not change @B.hi@ one jot.  So
610 now...
611
612 GHC keeps a version number on each interface file, and on each type
613 signature within the interface file.  It also keeps in every interface
614 file a list of the version numbers of everything it used when it last
615 compiled the file.  If the source file's modification date is earlier
616 than the @.o@ file's date (i.e. the source hasn't changed since the
617 file was last compiled), and you give GHC the @-recomp@<nidx>-recomp
618 option</nidx> flag, then GHC will be clever.  It compares the version
619 numbers on the things it needs this time with the version numbers on
620 the things it needed last time (gleaned from the interface file of the
621 module being compiled); if they are all the same it stops compiling
622 rather early in the process saying ``Compilation IS NOT required''.
623 What a beautiful sight!
624
625 It's still an experimental feature (that's why @-recomp@ is off by
626 default), so tell us if you think it doesn't work.
627
628 Patrick Sansom has a workshop paper about how all this is done.  Ask
629 him (email: <htmlurl name="sansom@@dcs.gla.ac.uk"
630 url="mailto:sansom@@dcs.gla.ac.uk">) if you want a copy.
631
632 %************************************************************************
633 %*                                                                      *
634 <sect2>Using @make@
635 <label id="using-make">
636 <p>
637 <ncdx>make</ncdx>
638 %*                                                                      *
639 %************************************************************************
640
641 It is reasonably straightforward to set up a @Makefile@ to use with
642 GHC, assuming you name your source files the same as your modules.
643 Thus:
644
645 <tscreen><verb>
646 HC      = ghc
647 HC_OPTS = -cpp $(EXTRA_HC_OPTS)
648
649 SRCS = Main.lhs Foo.lhs Bar.lhs
650 OBJS = Main.o   Foo.o   Bar.o
651
652 .SUFFIXES : .o .hi .lhs .hc .s
653
654 cool_pgm : $(OBJS)
655         rm $@
656         $(HC) -o $@ $(HC_OPTS) $(OBJS)
657
658 # Standard suffix rules
659 .o.hi:
660         @:
661
662 .lhs.o:
663         $(HC) -c $< $(HC_OPTS)
664
665 .hs.o:
666         $(HC) -c $< $(HC_OPTS)
667
668 # Inter-module dependencies
669 Foo.o Foo.hc Foo.s    : Baz.hi          # Foo imports Baz
670 Main.o Main.hc Main.s : Foo.hi Baz.hi   # Main imports Foo and Baz
671 </verb></tscreen>
672
673 (Sophisticated @make@ variants may achieve some of the above more
674 elegantly.  Notably, @gmake@'s pattern rules let you write the more
675 comprehensible:
676
677 <tscreen><verb>
678 %.o : %.lhs
679         $(HC) -c $< $(HC_OPTS)
680 </verb></tscreen>
681
682 What we've shown should work with any @make@.)
683
684 Note the cheesy @.o.hi@ rule: It records the dependency of the
685 interface (@.hi@) file on the source.  The rule says a @.hi@ file can
686 be made from a @.o@ file by doing... nothing.  Which is true.
687
688 Note the inter-module dependencies at the end of the Makefile, which
689 take the form
690
691 <tscreen><verb>
692 Foo.o Foo.hc Foo.s    : Baz.hi          # Foo imports Baz
693 </verb></tscreen>
694
695 They tell @make@ that if any of @Foo.o@, @Foo.hc@ or @Foo.s@ have an
696 earlier modification date than @Baz.hi@, then the out-of-date file
697 must be brought up to date.  To bring it up to date, @make@ looks for
698 a rule to do so; one of the preceding suffix rules does the job
699 nicely.
700
701 Putting inter-dependencies of the form @Foo.o : Bar.hi@ into your
702 @Makefile@ by hand is rather error-prone.  Don't worry---never fear,
703 @mkdependHS@ is here! (and is distributed as part of GHC) Add the
704 following to your @Makefile@:
705
706 <tscreen><verb>
707 depend :
708         mkdependHS -- $(HC_OPTS) -- $(SRCS)
709 </verb></tscreen>
710
711 Now, before you start compiling, and any time you change the @imports@
712 in your program, do @make depend@ before you do @make cool_pgm@.
713 @mkdependHS@ will append the needed dependencies to your @Makefile@.
714 @mkdependHS@ is fully describe in Section <ref name="Makefile
715 dependencies in Haskell: using mkdependHS" id="mkdependHS">.
716
717 A few caveats about this simple scheme:
718
719 <itemize>
720
721 <item> You may need to compile some modules explicitly to create their
722 interfaces in the first place (e.g., @make Bar.o@ to create @Bar.hi@).
723
724 <item> You may have to type @make@ more than once for the dependencies
725 to have full effect.  However, a @make@ run that does nothing
726 <em>does</em> mean ``everything's up-to-date.''
727
728 <item> This scheme will work with mutually-recursive modules but,
729 again, it may take multiple iterations to ``settle.''
730
731 </itemize>
732
733 %************************************************************************
734 %*                                                                      *
735 <sect2>How to compile mutually recursive modules
736 <label id="mutual-recursion">
737 <p>
738 <nidx>module system, recursion</nidx>
739 <nidx>recursion, between modules</nidx>
740 %*                                                                      *
741 %************************************************************************
742
743 Currently, the compiler does not have proper support for dealing with
744 mutually recursive modules:
745
746 <tscreen><verb>
747 module A where
748
749 import B
750
751 newtype A = A Int
752
753 f :: B -> A
754 f (B x) = A x
755 --------
756 module B where
757
758 import A
759
760 data B = B !Int
761
762 g :: A -> B
763 g (A x) = B x
764 </verb></tscreen>
765
766 When compiling either module A and B, the compiler will try (in vain)
767 to look for the interface file of the other. So, to get mutually
768 recursive modules off the ground, you need to hand write an interface
769 file for A or B, so as to break the loop.  These hand-written
770 interface files are called @hi-boot@ files, and are placed in a file
771 called @<module>.hi-boot@.  To import from an @hi-boot@ file instead
772 of the standard @.hi@ file, use the following syntax in the importing module:
773 <nidx>hi-boot files</nidx>
774 <nidx>importing, hi-boot files</nidx>
775
776 <tscreen> <verb>
777 import {-# SOURCE #-} A
778 </verb> </tscreen>
779
780 The hand-written interface need only contain the bare minimum of
781 information needed to get the bootstrapping process started.  For
782 example, it doesn't need to contain declarations for <em/everything/
783 that module @A@ exports, only the things required by the module that
784 imports @A@ recursively.
785
786 For the example at hand, the boot interface file for A would look like
787 the following:
788
789 <tscreen><verb>
790 __interface A 1 where
791 __exports A A f;
792 __import PrelBase Int;
793 1 newtype A = A PrelBase.Int ;
794 1 f :: A -> A ;
795 </verb></tscreen>
796
797 The syntax is essentially the same as a normal @.hi@ file
798 (unfortunately), but you can usually tailor an existing @.hi@ file to
799 make a @.hi-boot@ file.
800
801 Notice that we only put the declaration for the newtype @A@ in the
802 @hi-boot@ file, not the signature for @f@, since @f@ isn't used by
803 @B@.
804
805 The number ``1'' at the beginning of a declaration is the <em>version
806 number</em> of that declaration: for the purposes of @.hi-boot@ files
807 these can all be set to 1.  All names must be fully qualified with the
808 <em/original/ module that an object comes from: for example, the
809 reference to @Int@ in the interface for @A@ comes from @PrelBase@,
810 which is a module internal to GHC's prelude.  It's a pain, but that's
811 the way it is.
812
813 <bf>Note:</bf> This is all a temporary solution, a version of the
814 compiler that handles mutually recursive properly without the manual
815 construction of interface files, is in the works.
816
817 %************************************************************************
818 %*                                                                      *
819 <sect1>Optimisation (code improvement)
820 <label id="options-optimise">
821 <p>
822 <nidx>optimisation (GHC)</nidx>
823 <nidx>improvement, code (GHC)</nidx>
824 %*                                                                      *
825 %************************************************************************
826
827 The @-O*@ options specify convenient ``packages'' of optimisation
828 flags; the @-f*@ options described later on specify
829 <em>individual</em> optimisations to be turned on/off; the @-m*@
830 options specify <em>machine-specific</em> optimisations to be turned
831 on/off.
832
833 %----------------------------------------------------------------------
834 <sect2>@-O*@: convenient ``packages'' of optimisation flags.
835 <label id="optimise-pkgs">
836 <p>
837 <nidx>-O options</nidx>
838
839 There are <em>many</em> options that affect the quality of code
840 produced by GHC.  Most people only have a general goal, something like
841 ``Compile quickly'' or ``Make my program run like greased lightning.''
842 The following ``packages'' of optimisations (or lack thereof) should
843 suffice.
844
845 Once you choose a @-O*@ ``package,'' stick with it---don't chop and
846 change.  Modules' interfaces <em>will</em> change with a shift to a new
847 @-O*@ option, and you may have to recompile a large chunk of all
848 importing modules before your program can again be run
849 safely (see Section <ref name="The recompilation checker" id="recomp">).
850
851 <descrip>
852 <tag>No @-O*@-type option specified:</tag>
853 <nidx>-O* not specified</nidx>
854 This is taken to mean: ``Please compile quickly; I'm not over-bothered
855 about compiled-code quality.''  So, for example: @ghc -c Foo.hs@
856
857 <tag>@-O@ or @-O1@:</tag>
858 <nidx>-O option</nidx>
859 <nidx>-O1 option</nidx>
860 <nidx>optimise normally</nidx>
861 Means: ``Generate good-quality code without taking too long about it.''
862 Thus, for example: @ghc -c -O Main.lhs@
863
864 <tag>@-O2@:</tag>
865 <nidx>-O2 option</nidx>
866 <nidx>optimise aggressively</nidx>
867 Means: ``Apply every non-dangerous optimisation, even if it means
868 significantly longer compile times.''
869
870 The avoided ``dangerous'' optimisations are those that can make
871 runtime or space <em>worse</em> if you're unlucky.  They are
872 normally turned on or off individually.
873
874 At the moment, @-O2@ is <em>unlikely</em> to produce
875 better code than @-O@.
876
877 <tag>@-O2-for-C@:</tag>
878 <nidx>-O2-for-C option</nidx>
879 <nidx>gcc, invoking with -O2</nidx>
880
881 Says to run GCC with @-O2@, which may be worth a few percent in
882 execution speed.  Don't forget @-fvia-C@, lest you use the native-code
883 generator and bypass GCC altogether!
884
885 <tag>@-Onot@:</tag>
886 <nidx>-Onot option</nidx>
887 <nidx>optimising, reset</nidx>
888
889 This option will make GHC ``forget'' any @-O@ish options it has seen so
890 far.  Sometimes useful; for example: @make all EXTRA_HC_OPTS=-Onot@.
891
892 <tag>@-Ofile <file>@:</tag>
893 <nidx>-Ofile &lt;file&gt; option</nidx>
894 <nidx>optimising, customised</nidx>
895
896 For those who need <em>absolute</em> control over <em>exactly</em>
897 what options are used (e.g., compiler writers, sometimes :-), a list
898 of options can be put in a file and then slurped in with @-Ofile@.
899
900 In that file, comments are of the @#@-to-end-of-line variety; blank
901 lines and most whitespace is ignored.
902
903 Please ask if you are baffled and would like an example of @-Ofile@!
904 </descrip>
905
906 At Glasgow, we don't use a @-O*@ flag for day-to-day work.  We use
907 @-O@ to get respectable speed; e.g., when we want to measure
908 something.  When we want to go for broke, we tend to use @-O -fvia-C
909 -O2-for-C@ (and we go for lots of coffee breaks).
910
911 The easiest way to see what @-O@ (etc.) ``really mean'' is to run with
912 @-v@, then stand back in amazement.  Alternatively, just look at the
913 @HsC_minus<blah>@ lists in the @ghc@ driver script.
914
915 %----------------------------------------------------------------------
916 <sect2>@-f*@: platform-independent flags
917 <p>
918 <nidx>-f* options (GHC)</nidx>
919 <nidx>-fno-* options (GHC)</nidx>
920
921 Flags can be turned <em>off</em> individually.  (NB: I hope you have a
922 good reason for doing this....) To turn off the @-ffoo@ flag, just use
923 the @-fno-foo@ flag.<nidx>-fno-&lt;opt&gt; anti-option</nidx> So, for
924 example, you can say @-O2 -fno-strictness@, which will then drop out
925 any running of the strictness analyser.
926
927 The options you are most likely to want to turn off are:
928 @-fno-strictness@<nidx>-fno-strictness option</nidx> (strictness
929 analyser [because it is sometimes slow]),
930 @-fno-specialise@<nidx>-fno-specialise option</nidx> (automatic
931 specialisation of overloaded functions [because it makes your code
932 bigger]) [US spelling also accepted], and
933 @-fno-update-analysis@<nidx>-fno-update-analysis option</nidx> (update
934 analyser, because it sometimes takes a <em>long</em> time).  This one
935 is only enabled with -O2 anyway.
936
937 Should you wish to turn individual flags <em>on</em>, you are advised
938 to use the @-Ofile@ option, described above.  Because the order in
939 which optimisation passes are run is sometimes crucial, it's quite
940 hard to do with command-line options.
941
942 Here are some ``dangerous'' optimisations you <em>might</em> want to try:
943 <descrip>
944 %------------------------------------------------------------------
945 <tag>@-fvia-C@:</tag>
946 <nidx>-fvia-C option</nidx>
947 <nidx>native code generator, turning off</nidx>
948
949 Compile via C, and don't use the native-code generator.  (There are
950 many cases when GHC does this on its own.)  You might pick up a little
951 bit of speed by compiling via C.  If you use @_ccall_gc_@s or
952 @_casm_@s, you probably <em>have to</em> use @-fvia-C@.
953
954 The lower-case incantation, @-fvia-c@, is synonymous.
955
956 Compiling via C will probably be slower (in compilation time) than
957 using GHC's native code generator.
958
959 <tag>@-funfolding-interface-threshold<n>@:</tag>
960 <nidx>-funfolding-interface-threshold option</nidx>
961 <nidx>inlining, controlling</nidx>
962 <nidx>unfolding, controlling</nidx>
963 (Default: 30) By raising or lowering this number, you can raise or
964 lower the amount of pragmatic junk that gets spewed into interface
965 files.  (An unfolding has a ``size'' that reflects the cost in terms
966 of ``code bloat'' of expanding that unfolding in another module.  A
967 bigger function would be assigned a bigger cost.)
968
969 <tag>@-funfolding-creation-threshold<n>@:</tag>
970 <nidx>-funfolding-creation-threshold option</nidx>
971 <nidx>inlining, controlling</nidx>
972 <nidx>unfolding, controlling</nidx>
973 (Default: 30) This option is similar to
974 @-funfolding-interface-threshold@, except that it governs unfoldings
975 within a single module.  Increasing this figure is more likely to
976 result in longer compile times than faster code.  The next option is
977 more useful:
978
979 <tag>@-funfolding-use-threshold<n>@:</tag>
980 <nidx>-funfolding-use-threshold option</nidx>
981 <nidx>inlining, controlling</nidx>
982 <nidx>unfolding, controlling</nidx>
983 (Default: 8) This is the magic cut-off figure for unfolding: below
984 this size, a function definition will be unfolded at the call-site,
985 any bigger and it won't.  The size computed for a function depends on
986 two things: the actual size of the expression minus any discounts that
987 apply (see @-funfolding-con-discount@).
988
989 <tag>@-funfolding-con-discount<n>@:</tag>
990 <nidx>-funfolding-con-discount option</nidx>
991 <nidx>inlining, controlling</nidx>
992 <nidx>unfolding, controlling</nidx>
993 (Default: 2) If the compiler decides that it can eliminate some
994 computation by performing an unfolding, then this is a discount factor
995 that it applies to the funciton size before deciding whether to unfold
996 it or not.
997
998 OK, folks, these magic numbers `30', `8', and '2' are mildly
999 arbitrary; they are of the ``seem to be OK'' variety.  The `8' is the
1000 more critical one; it's what determines how eager GHC is about
1001 expanding unfoldings.
1002
1003 <tag>@-funbox-strict-fields@:</tag>
1004 <nidx>-funbox-strict-fields option</nidx>
1005 <nidx>strict constructor fields</nidx>
1006 <nidx>constructor fields, strict</nidx>
1007
1008 This option causes all constructor fields which are marked strict
1009 (i.e. ``!'') to be unboxed or unpacked if possible.  For example:
1010
1011 <tscreen><verb>
1012 data T = T !Float !Float
1013 </verb></tscreen>
1014
1015 will create a constructor @T@ containing two unboxed floats if the
1016 @-funbox-strict-fields@ flag is given.  This may not always be an
1017 optimisation: if the @T@ constructor is scrutinised and the floats
1018 passed to a non-strict function for example, they will have to be
1019 reboxed (this is done automatically by the compiler).
1020
1021 This option should only be used in conjunction with @-O@, in order to
1022 expose unfoldings to the compiler so the reboxing can be removed as
1023 often as possible.  For example:
1024
1025 <tscreen><verb>
1026 f :: T -> Float
1027 f (T f1 f2) = f1 + f2
1028 </verb></tscreen>
1029
1030 The compiler will avoid reboxing @f1@ and @f2@ by inlining @+@ on
1031 floats, but only when @-O@ is on.
1032
1033 Any single-constructor data is eligible for unpacking; for example
1034
1035 <tscreen><verb>
1036 data T = T !(Int,Int)
1037 </verb></tscreen>
1038
1039 will store the two @Int@s directly in the @T@ constructor, by flattening
1040 the pair.  Multi-level unpacking is also supported:
1041
1042 <tscreen><verb>
1043 data T = T !S
1044 data S = S !Int !Int
1045 </verb></tscreen>
1046
1047 will store two unboxed @Int#@s directly in the @T@ constructor.
1048
1049 <tag>@-fsemi-tagging@:</tag>
1050 This option (which <em>does not work</em> with the native-code generator)
1051 tells the compiler to add extra code to test for already-evaluated
1052 values.  You win if you have lots of such values during a run of your
1053 program, you lose otherwise.  (And you pay in extra code space.)
1054
1055 We have not played with @-fsemi-tagging@ enough to recommend it.
1056 (For all we know, it doesn't even work anymore...  Sigh.)
1057 </descrip>
1058
1059 %----------------------------------------------------------------------
1060 <sect2>@-m*@: platform-specific flags
1061 <p>
1062 <nidx>-m* options (GHC)</nidx>
1063 <nidx>platform-specific options</nidx>
1064 <nidx>machine-specific options</nidx>
1065
1066 Some flags only make sense for particular target platforms.
1067
1068 <descrip>
1069 <tag>@-mv8@:</tag>
1070 (SPARC machines)<nidx>-mv8 option (SPARC only)</nidx>
1071 Means to pass the like-named option to GCC; it says to use the
1072 Version 8 SPARC instructions, notably integer multiply and divide.
1073 The similiar @-m*@ GCC options for SPARC also work, actually.
1074
1075 <tag>@-mlong-calls@:</tag>
1076 (HPPA machines)<nidx>-mlong-calls option (HPPA only)</nidx>
1077 Means to pass the like-named option to GCC.  Required for Very Big
1078 modules, maybe.  (Probably means you're in trouble...)
1079
1080 <tag>@-monly-[32]-regs@:</tag>
1081 (iX86 machines)<nidx>-monly-N-regs option (iX86 only)</nidx>
1082 GHC tries to ``steal'' four registers from GCC, for performance
1083 reasons; it almost always works.  However, when GCC is compiling some
1084 modules with four stolen registers, it will crash, probably saying:
1085 <tscreen><verb>
1086 Foo.hc:533: fixed or forbidden register was spilled.
1087 This may be due to a compiler bug or to impossible asm
1088 statements or clauses.
1089 </verb></tscreen>
1090 Just give some registers back with @-monly-N-regs@.  Try `3' first,
1091 then `2'.  If `2' doesn't work, please report the bug to us.
1092 </descrip>
1093
1094 %----------------------------------------------------------------------
1095 <sect2>Code improvement by the C compiler.
1096 <label id="optimise-C-compiler">
1097 <p>
1098 <nidx>optimisation by GCC</nidx>
1099 <nidx>GCC optimisation</nidx>
1100
1101 The C~compiler (GCC) is run with @-O@ turned on.  (It has
1102 to be, actually).
1103
1104 If you want to run GCC with @-O2@---which may be worth a few
1105 percent in execution speed---you can give a
1106 @-O2-for-C@<nidx>-O2-for-C option</nidx> option.
1107
1108 %************************************************************************
1109 %*                                                                      *
1110 <sect1>Options related to a particular phase
1111 <label id="options-phases">
1112 <p>
1113 %*                                                                      *
1114 %************************************************************************
1115
1116 <sect2> The C pre-processor
1117 <label id="c-pre-processor">
1118 <p>
1119 <nidx>pre-processing: cpp</nidx>
1120 <nidx>C pre-processor options</nidx>
1121 <nidx>cpp, pre-processing with</nidx>
1122
1123 The C pre-processor @cpp@ is run over your Haskell code only if the
1124 @-cpp@ option <nidx>-cpp option</nidx> is given.  Unless you are
1125 building a large system with significant doses of conditional
1126 compilation, you really shouldn't need it.
1127 <descrip>
1128 <tag>@-D<foo>@:</tag>
1129 <nidx>-D&lt;name&gt; option</nidx>
1130 Define macro @<foo>@ in the usual way.  NB: does <em>not</em> affect
1131 @-D@ macros passed to the C~compiler when compiling via C!  For those,
1132 use the @-optc-Dfoo@ hack... (see Section <ref name="Forcing options
1133 to a particular phase." id="forcing-options-through">).
1134
1135 <tag>@-U<foo>@:</tag>
1136 <nidx>-U&lt;name&gt; option</nidx>
1137 Undefine macro @<foo>@ in the usual way.
1138
1139 <tag>@-I<dir>@:</tag>
1140 <nidx>-I&lt;dir&gt; option</nidx>
1141 Specify a directory in which to look for @#include@ files, in
1142 the usual C way.
1143 </descrip>
1144
1145 The @ghc@ driver pre-defines several macros:
1146 <descrip>
1147 <tag>@__HASKELL98__@:</tag>
1148 <nidx>__HASKELL98__</nidx>
1149 If defined, this means that GHC supports the language
1150 defined by the Haskell 98 report.
1151
1152 NB. This macro is <em/only/ set when pre-processing Haskell source
1153 (ie. @.hs@ or @.lhs@ files).
1154
1155 <tag>@__HASKELL1__@:</tag>
1156 <nidx>__HASKELL1__ macro</nidx>
1157 If defined to <em/n/, that means GHC supports the
1158 Haskell language defined in the Haskell report version <em/1.n/.
1159 Currently 5.
1160
1161 NB. As with <tt/__HASKELL98__/, this macro is <em/only/ set when
1162 pre-processing Haskell source (ie. @.hs@ or @.lhs@ files).
1163
1164 <tag>@__GLASGOW_HASKELL__@:</tag>
1165 <nidx>__GLASGOW_HASKELL__ macro</nidx>
1166 For version <em/n/ of the GHC system, this will be @#define@d to
1167 <em/100n/.  So, for version 4.00, it is 400.
1168
1169 With any luck, @__GLASGOW_HASKELL__@ will be undefined in all other
1170 implementations that support C-style pre-processing.
1171
1172 (For reference: the comparable symbols for other systems are:
1173 @__HUGS__@ for Hugs and @__HBC__@ for Chalmers.)
1174
1175 NB. This macro is set when pre-processing both Haskell source and C
1176 source, including the C source generated from a Haskell module
1177 (ie. @.hs@, @.lhs@, @.c@ and @.hc@ files).
1178
1179 <tag>@__CONCURRENT_HASKELL__@:</tag>
1180 <nidx>__CONCURRENT_HASKELL__ macro</nidx>
1181 This symbol is defined when pre-processing Haskell (input) and
1182 pre-processing C (GHC output).  Since GHC from verion 4.00 now
1183 supports concurrent haskell by default, this symbol is always defined.
1184
1185 <tag>@__PARALLEL_HASKELL__@:</tag>
1186 <nidx>__PARALLEL_HASKELL__ macro</nidx>
1187 Only defined when @-parallel@ is in use!  This symbol is defined when
1188 pre-processing Haskell (input) and pre-processing C (GHC output).
1189 </descrip>
1190
1191 Options other than the above can be forced through to the C
1192 pre-processor with the @-opt@ flags (see
1193 Section <ref name="Forcing options to a particular phase." id="forcing-options-through">).
1194
1195 A small word of warning: @-cpp@ is not friendly to ``string
1196 gaps''.<nidx>-cpp vs string gaps</nidx><nidx>string gaps vs
1197 -cpp</nidx>.  In other words, strings such as the following:
1198
1199 <tscreen><verb>
1200         strmod = "\
1201         \ p \
1202         \ "
1203 </verb></tscreen>
1204
1205 don't work with @-cpp@; @/usr/bin/cpp@ elides the
1206 backslash-newline pairs.
1207
1208 However, it appears that if you add a space at the end of the line,
1209 then @cpp@ (at least GNU @cpp@ and possibly other @cpp@s)
1210 leaves the backslash-space pairs alone and the string gap works as
1211 expected.
1212
1213 %************************************************************************
1214 %*                                                                      *
1215 <sect2>Options affecting the C compiler (if applicable)
1216 <label id="options-C-compiler">
1217 <p>
1218 <nidx>include-file options</nidx>
1219 <nidx>C compiler options</nidx>
1220 <nidx>GCC options</nidx>
1221 %*                                                                      *
1222 %************************************************************************
1223
1224 At the moment, quite a few common C-compiler options are passed on
1225 quietly to the C compilation of Haskell-compiler-generated C files.
1226 THIS MAY CHANGE.  Meanwhile, options so sent are:
1227
1228 <tabular ca="ll">
1229 @-ansi@      | do ANSI C (not K&amp;R) @@
1230 @-pedantic@  | be so@@
1231 @-dgcc-lint@ | (hack) short for ``make GCC very paranoid''@@
1232 </tabular>
1233 <nidx>-ansi option (for GCC)</nidx>
1234 <nidx>-pedantic option (for GCC)</nidx>
1235 <nidx>-dgcc-lint option (GCC paranoia)</nidx>
1236
1237 If you are compiling with lots of @ccalls@, etc., you may need to
1238 tell the C~compiler about some @#include@ files.  There is no real
1239 pretty way to do this, but you can use this hack from the
1240 command-line:
1241
1242 <tscreen><verb>
1243 % ghc -c '-#include <X/Xlib.h>' Xstuff.lhs
1244 </verb></tscreen>
1245
1246
1247 %************************************************************************
1248 %*                                                                      *
1249 <sect2>Linking and consistency-checking
1250 <label id="options-linker">
1251 <p>
1252 <nidx>linker options</nidx>
1253 <nidx>ld options</nidx>
1254 %*                                                                      *
1255 %************************************************************************
1256
1257 GHC has to link your code with various libraries, possibly including:
1258 user-supplied, GHC-supplied, and system-supplied (@-lm@ math
1259 library, for example).
1260
1261 <descrip>
1262 <tag>@-l<FOO>@:</tag>
1263 <nidx>-l&lt;lib&gt; option</nidx>
1264 Link in a library named @lib<FOO>.a@ which resides somewhere on the
1265 library directories path.
1266
1267 Because of the sad state of most UNIX linkers, the order of such
1268 options does matter.  Thus: @ghc -lbar *.o@ is almost certainly
1269 wrong, because it will search @libbar.a@ <em>before</em> it has
1270 collected unresolved symbols from the @*.o@ files.
1271 @ghc *.o -lbar@ is probably better.
1272
1273 The linker will of course be informed about some GHC-supplied
1274 libraries automatically; these are:
1275
1276 <tabular ca="ll">
1277 <bf>-l equivalent</bf> | <bf>description</bf> @@
1278 @@
1279 @-lHSrts,-lHSclib@ | basic runtime libraries @@
1280 @-lHS@         | standard Prelude library @@
1281 @-lHS_cbits@  | C support code for standard Prelude library @@
1282 @-lgmp@        | GNU multi-precision library (for Integers)@@
1283 </tabular>
1284
1285 <nidx>-lHS library</nidx>
1286 <nidx>-lHS_cbits library</nidx>
1287 <nidx>-lHSrts library</nidx>
1288 <nidx>-lgmp library</nidx>
1289
1290 <tag>@-syslib <name>@:</tag>
1291 <nidx>-syslib &lt;name&gt; option</nidx>
1292
1293 If you are using a Haskell ``system library'' (e.g., the POSIX
1294 library), just use the @-syslib posix@ option, and the correct code
1295 should be linked in.
1296
1297 <tag>@-L<dir>@:</tag>
1298 <nidx>-L&lt;dir&gt; option</nidx>
1299 Where to find user-supplied libraries...  Prepend the directory
1300 @<dir>@ to the library directories path.
1301
1302 <tag>@-static@:</tag>
1303 <nidx>-static option</nidx>
1304 Tell the linker to avoid shared libraries.
1305
1306 <tag>@-no-link-chk@ and @-link-chk@:</tag>
1307 <nidx>-no-link-chk option</nidx>
1308 <nidx>-link-chk option</nidx>
1309 <nidx>consistency checking of executables</nidx>
1310 By default, immediately after linking an executable, GHC verifies that
1311 the pieces that went into it were compiled with compatible flags; a
1312 ``consistency check''.
1313 (This is to avoid mysterious failures caused by non-meshing of
1314 incompatibly-compiled programs; e.g., if one @.o@ file was compiled
1315 for a parallel machine and the others weren't.)  You may turn off this
1316 check with @-no-link-chk@.  You can turn it (back) on with
1317 @-link-chk@ (the default).
1318
1319 <tag><tt>-no-hs-main</tt>:</tag>
1320 <nidx>-no-hs-main option</nidx>
1321 <nidx>linking Haskell libraries with foreign code</nidx>
1322
1323 In the event you want to include ghc-compiled code as part of another
1324 (non-Haskell) program, the RTS will not be supplying its definition of
1325 <tt/main()/ at link-time, you will have to. To signal that to the
1326 driver script when linking, use <tt/-no-hs-main/.
1327
1328 Notice that since the command-line passed to the linker is rather
1329 involved, you probably want to use the ghc driver script to do the
1330 final link of your `mixed-language' application. This is not a
1331 requirement though, just try linking once with <tt/-v/ on to see what
1332 options the driver passes through to the linker.
1333
1334 </descrip>
1335
1336 %************************************************************************
1337 %*                                                                      *
1338 <sect1>Using Concurrent Haskell
1339 <p>
1340 <nidx>Concurrent Haskell---use</nidx>
1341 %*                                                                      *
1342 %************************************************************************
1343
1344 GHC (as of version 4.00) supports Concurrent Haskell by default,
1345 without requiring a special option or libraries compiled in a certain
1346 way.  To get access to the support libraries for Concurrent Haskell
1347 (ie. @Concurrent@ and friends), use the @-syslib concurrent@ option.
1348
1349 Three RTS options are provided for modifying the behaviour of the
1350 threaded runtime system.  See the descriptions of @-C[<us>]@, @-q@,
1351 and @-t<num>@ in Section <ref name="RTS options for
1352 Concurrent/Parallel Haskell" id="parallel-rts-opts">.
1353
1354 Concurrent Haskell is described in more detail in Section <ref
1355 name="Concurrent and Parallel Haskell" id="concurrent-and-parallel">.
1356
1357 %************************************************************************
1358 %*                                                                      *
1359 <sect1>Using Parallel Haskell
1360 <p>
1361 <nidx>Parallel Haskell---use</nidx>
1362 %*                                                                      *
1363 %************************************************************************
1364
1365 [You won't be able to execute parallel Haskell programs unless PVM3
1366 (Parallel Virtual Machine, version 3) is installed at your site.]
1367
1368 To compile a Haskell program for parallel execution under PVM, use the
1369 @-parallel@ option,<nidx>-parallel option</nidx> both when compiling
1370 <em>and linking</em>.  You will probably want to @import Parallel@
1371 into your Haskell modules.
1372
1373 To run your parallel program, once PVM is going, just invoke it ``as
1374 normal''.  The main extra RTS option is @-N<n>@, to say how many
1375 PVM ``processors'' your program to run on.  (For more details of
1376 all relevant RTS options, please see Section <ref name="RTS options for Concurrent/Parallel Haskell" id="parallel-rts-opts">.)
1377
1378 In truth, running Parallel Haskell programs and getting information
1379 out of them (e.g., parallelism profiles) is a battle with the vagaries of
1380 PVM, detailed in the following sections.
1381
1382 %************************************************************************
1383 %*                                                                      *
1384 <sect2>Dummy's guide to using PVM
1385 <p>
1386 <nidx>PVM, how to use</nidx>
1387 <nidx>Parallel Haskell---PVM use</nidx>
1388 %*                                                                      *
1389 %************************************************************************
1390
1391 Before you can run a parallel program under PVM, you must set the
1392 required environment variables (PVM's idea, not ours); something like,
1393 probably in your @.cshrc@ or equivalent:
1394 <tscreen><verb>
1395 setenv PVM_ROOT /wherever/you/put/it
1396 setenv PVM_ARCH `$PVM_ROOT/lib/pvmgetarch`
1397 setenv PVM_DPATH $PVM_ROOT/lib/pvmd
1398 </verb></tscreen>
1399
1400 Creating and/or controlling your ``parallel machine'' is a purely-PVM
1401 business; nothing specific to Parallel Haskell.
1402
1403 You use the @pvm@<nidx>pvm command</nidx> command to start PVM on your
1404 machine.  You can then do various things to control/monitor your
1405 ``parallel machine;'' the most useful being:
1406
1407 \begin{tabular}{ll}
1408 @Control-D@ & exit @pvm@, leaving it running \\
1409 @halt@ & kill off this ``parallel machine'' \& exit \\
1410 @add <host>@ & add @<host>@ as a processor \\
1411 @delete <host>@ & delete @<host>@ \\
1412 @reset@ & kill what's going, but leave PVM up \\
1413 @conf@       & list the current configuration \\
1414 @ps@         & report processes' status \\
1415 @pstat <pid>@ & status of a particular process \\
1416 \end{tabular}
1417
1418 The PVM documentation can tell you much, much more about @pvm@!
1419
1420 %************************************************************************
1421 %*                                                                      *
1422 <sect2>Parallelism profiles
1423 <p>
1424 <nidx>parallelism profiles</nidx>
1425 <nidx>profiles, parallelism</nidx>
1426 <nidx>visualisation tools</nidx>
1427 %*                                                                      *
1428 %************************************************************************
1429
1430 With Parallel Haskell programs, we usually don't care about the
1431 results---only with ``how parallel'' it was!  We want pretty pictures.
1432
1433 Parallelism profiles (\`a la @hbcpp@) can be generated with the
1434 @-q@<nidx>-q RTS option (concurrent, parallel)</nidx> RTS option.  The
1435 per-processor profiling info is dumped into files named
1436 @<full-path><program>.gr@.  These are then munged into a PostScript picture,
1437 which you can then display.  For example, to run your program
1438 @a.out@ on 8 processors, then view the parallelism profile, do:
1439
1440 <tscreen><verb>
1441 % ./a.out +RTS -N8 -q
1442 % grs2gr *.???.gr > temp.gr     # combine the 8 .gr files into one
1443 % gr2ps -O temp.gr              # cvt to .ps; output in temp.ps
1444 % ghostview -seascape temp.ps   # look at it!
1445 </verb></tscreen>
1446
1447 The scripts for processing the parallelism profiles are distributed
1448 in @ghc/utils/parallel/@.
1449
1450 %************************************************************************
1451 %*                                                                      *
1452 <sect2>Other useful info about running parallel programs
1453 <p>
1454 %*                                                                      *
1455 %************************************************************************
1456
1457 The ``garbage-collection statistics'' RTS options can be useful for
1458 seeing what parallel programs are doing.  If you do either
1459 @+RTS -Sstderr@<nidx>-Sstderr RTS option</nidx> or @+RTS -sstderr@, then
1460 you'll get mutator, garbage-collection, etc., times on standard
1461 error. The standard error of all PE's other than the `main thread'
1462 appears in @/tmp/pvml.nnn@, courtesy of PVM.
1463
1464 Whether doing @+RTS -Sstderr@ or not, a handy way to watch
1465 what's happening overall is: @tail -f /tmp/pvml.nnn@.
1466
1467 %************************************************************************
1468 %*                                                                      *
1469 <sect2>RTS options for Concurrent/Parallel Haskell
1470 <label id="parallel-rts-opts">
1471 <p>
1472 <nidx>RTS options, concurrent</nidx>
1473 <nidx>RTS options, parallel</nidx>
1474 <nidx>Concurrent Haskell---RTS options</nidx>
1475 <nidx>Parallel Haskell---RTS options</nidx>
1476 %*                                                                      *
1477 %************************************************************************
1478
1479 Besides the usual runtime system (RTS) options
1480 (Section <ref name="Running a compiled program" id="runtime-control">), there are a few options particularly
1481 for concurrent/parallel execution.
1482
1483 <descrip>
1484 <tag>@-N<N>@:</tag>
1485 <nidx>-N&lt;N&gt; RTS option (parallel)</nidx>
1486 (PARALLEL ONLY) Use @<N>@ PVM processors to run this program;
1487 the default is 2.
1488
1489 <tag>@-C[<us>]@:</tag>
1490 <nidx>-C&lt;us&gt; RTS option</nidx>
1491 Sets the context switch interval to @<us>@ microseconds.  A context
1492 switch will occur at the next heap allocation after the timer expires.
1493 With @-C0@ or @-C@, context switches will occur as often as
1494 possible (at every heap allocation).  By default, context switches
1495 occur every 10 milliseconds.  Note that many interval timers are only
1496 capable of 10 millisecond granularity, so the default setting may be
1497 the finest granularity possible, short of a context switch at every
1498 heap allocation.
1499
1500 [NOTE: this option currently has no effect (version 4.00).  Context
1501 switches happen when the current heap block is full, i.e. every 4k of
1502 allocation].
1503
1504 <tag>@-q[v]@:</tag>
1505 <nidx>-q RTS option</nidx>
1506 (PARALLEL ONLY) Produce a quasi-parallel profile of thread activity,
1507 in the file @<program>.qp@.  In the style of @hbcpp@, this profile
1508 records the movement of threads between the green (runnable) and red
1509 (blocked) queues.  If you specify the verbose suboption (@-qv@), the
1510 green queue is split into green (for the currently running thread
1511 only) and amber (for other runnable threads).  We do not recommend
1512 that you use the verbose suboption if you are planning to use the
1513 @hbcpp@ profiling tools or if you are context switching at every heap
1514 check (with @-C@).
1515
1516 <tag>@-t<num>@:</tag>
1517 <nidx>-t&lt;num&gt; RTS option</nidx>
1518 (PARALLEL ONLY) Limit the number of concurrent threads per processor
1519 to @<num>@.  The default is 32.  Each thread requires slightly over 1K
1520 <em>words</em> in the heap for thread state and stack objects.  (For
1521 32-bit machines, this translates to 4K bytes, and for 64-bit machines,
1522 8K bytes.)
1523
1524 <tag>@-d@:</tag>
1525 <nidx>-d RTS option (parallel)</nidx>
1526 (PARALLEL ONLY) Turn on debugging.  It pops up one xterm (or GDB, or
1527 something...) per PVM processor.  We use the standard @debugger@
1528 script that comes with PVM3, but we sometimes meddle with the
1529 @debugger2@ script.  We include ours in the GHC distribution,
1530 in @ghc/utils/pvm/@.
1531
1532 <tag>@-e<num>@:</tag>
1533 <nidx>-e&lt;num&gt; RTS option (parallel)</nidx>
1534 (PARALLEL ONLY) Limit the number of pending sparks per processor to
1535 @<num>@. The default is 100. A larger number may be appropriate if
1536 your program generates large amounts of parallelism initially.
1537
1538 <tag>@-Q<num>@:</tag>
1539 <nidx>-Q&lt;num&gt; RTS option (parallel)</nidx>
1540 (PARALLEL ONLY) Set the size of packets transmitted between processors
1541 to @<num>@. The default is 1024 words. A larger number may be
1542 appropriate if your machine has a high communication cost relative to
1543 computation speed.
1544 </descrip>