[project @ 2000-06-22 16:19:16 by panne]
[ghc-hetmet.git] / ghc / docs / users_guide / using.sgml
1 <Chapter id="using-GHC">
2 <Title>Using GHC
3 </Title>
4
5 <Para>
6 <IndexTerm><Primary>GHC, using</Primary></IndexTerm>
7 <IndexTerm><Primary>using GHC</Primary></IndexTerm>
8 GHC is a command-line compiler: in order to compile a Haskell program,
9 GHC must be invoked on the source file(s) by typing a command to the
10 shell.  The steps involved in compiling a program can be automated
11 using the <Command>make</Command> tool (this is especially useful if the program
12 consists of multiple source files which depend on each other).  This
13 section describes how to use GHC from the command-line.
14 </Para>
15
16 <Sect1 id="command-line-structure">
17 <Title>Overall command-line structure
18 </Title>
19
20 <Para>
21 <IndexTerm><Primary>structure, command-line</Primary></IndexTerm>
22 <IndexTerm><Primary>command-line structure</Primary></IndexTerm>
23 </Para>
24
25 <Para>
26 An invocation of GHC takes the following form:
27 </Para>
28
29 <Para>
30
31 <Screen>
32 ghc [argument...]
33 </Screen>
34
35 </Para>
36
37 <Para>
38 Command-line arguments are either options or file names.
39 </Para>
40
41 <Para>
42 Command-line options begin with <Literal>-</Literal>.  They may <Emphasis>not</Emphasis> be
43 grouped: <Option>-vO</Option> is different from <Option>-v -O</Option>.  Options need not
44 precede filenames: e.g., <Command>ghc *.o -o foo</Command>.  All options are
45 processed and then applied to all files; you cannot, for example, invoke
46 <Command>ghc -c -O1 Foo.hs -O2 Bar.hs</Command> to apply different optimisation
47 levels to the files <Filename>Foo.hs</Filename> and <Filename>Bar.hs</Filename>.  For conflicting
48 options, e.g., <Option>-c -S</Option>, we reserve the right to do anything we
49 want.  (Usually, the last one applies.)
50 </Para>
51
52 </Sect1>
53
54 <Sect1 id="file-suffixes">
55 <Title>Meaningful file suffixes
56 </Title>
57
58 <Para>
59 <IndexTerm><Primary>suffixes, file</Primary></IndexTerm>
60 <IndexTerm><Primary>file suffixes for GHC</Primary></IndexTerm>
61 </Para>
62
63 <Para>
64 File names with &ldquo;meaningful&rdquo; suffixes (e.g., <Filename>.lhs</Filename> or <Filename>.o</Filename>)
65 cause the &ldquo;right thing&rdquo; to happen to those files.
66 </Para>
67
68 <Para>
69 <VariableList>
70
71 <VarListEntry>
72 <Term><Filename>.lhs</Filename>:</Term>
73 <ListItem>
74 <Para>
75 <IndexTerm><Primary>lhs suffix</Primary></IndexTerm>
76 A &ldquo;literate Haskell&rdquo; module.
77 </Para>
78 </ListItem>
79 </VarListEntry>
80 <VarListEntry>
81 <Term><Filename>.hs</Filename>:</Term>
82 <ListItem>
83 <Para>
84 A not-so-literate Haskell module.
85 </Para>
86 </ListItem>
87 </VarListEntry>
88 <VarListEntry>
89 <Term><Filename>.hi</Filename>:</Term>
90 <ListItem>
91 <Para>
92 A Haskell interface file, probably compiler-generated.
93 </Para>
94 </ListItem>
95 </VarListEntry>
96 <VarListEntry>
97 <Term><Filename>.hc</Filename>:</Term>
98 <ListItem>
99 <Para>
100 Intermediate C file produced by the Haskell compiler.
101 </Para>
102 </ListItem>
103 </VarListEntry>
104 <VarListEntry>
105 <Term><Filename>.c</Filename>:</Term>
106 <ListItem>
107 <Para>
108 A C&nbsp;file not produced by the Haskell compiler.
109 </Para>
110 </ListItem>
111 </VarListEntry>
112 <VarListEntry>
113 <Term><Filename>.s</Filename>:</Term>
114 <ListItem>
115 <Para>
116 An assembly-language source file, usually
117 produced by the compiler.
118 </Para>
119 </ListItem>
120 </VarListEntry>
121 <VarListEntry>
122 <Term><Filename>.o</Filename>:</Term>
123 <ListItem>
124 <Para>
125 An object file, produced by an assembler.
126 </Para>
127 </ListItem>
128 </VarListEntry>
129 </VariableList>
130 </Para>
131
132 <Para>
133 Files with other suffixes (or without suffixes) are passed straight
134 to the linker.
135 </Para>
136
137 </Sect1>
138
139 <Sect1 id="options-help">
140 <Title>Help and verbosity options
141 </Title>
142
143 <Para>
144 <IndexTerm><Primary>help options (GHC)</Primary></IndexTerm>
145 <IndexTerm><Primary>verbose option (GHC)</Primary></IndexTerm>
146 </Para>
147
148 <Para>
149 A good option to start with is the <Option>-help</Option> (or <Option>-?</Option>) option.
150 <IndexTerm><Primary>-help option</Primary></IndexTerm>
151 <IndexTerm><Primary>-? option</Primary></IndexTerm>
152 GHC spews a long message to standard output and then exits.
153 </Para>
154
155 <Para>
156 The <Option>-v</Option><IndexTerm><Primary>-v option</Primary></IndexTerm> option makes GHC <Emphasis>verbose</Emphasis>: it
157 reports its version number and shows (on stderr) exactly how it invokes each
158 phase of the compilation system.  Moreover, it passes
159 the <Option>-v</Option> flag to most phases; each reports
160 its version number (and possibly some other information).
161 </Para>
162
163 <Para>
164 Please, oh please, use the <Option>-v</Option> option when reporting bugs!
165 Knowing that you ran the right bits in the right order is always the
166 first thing we want to verify.
167 </Para>
168
169 <Para>
170 If you're just interested in the compiler version number, the
171 <Option>--version</Option><IndexTerm><Primary>--version option</Primary></IndexTerm> option prints out a
172 one-line string containing the requested info.
173 </Para>
174
175 </Sect1>
176
177 <Sect1 id="options-order">
178 <Title>Running the right phases in the right order
179 </Title>
180
181 <Para>
182 <IndexTerm><Primary>order of passes in GHC</Primary></IndexTerm>
183 <IndexTerm><Primary>pass ordering in GHC</Primary></IndexTerm>
184 The basic task of the <Command>ghc</Command> driver is to run each input file
185 through the right phases (compiling, linking, etc.).
186 </Para>
187
188 <Para>
189 The first phase to run is determined by the input-file suffix, and the
190 last phase is determined by a flag.  If no relevant flag is present,
191 then go all the way through linking.  This table summarises:
192 </Para>
193
194 <Para>
195 <InformalTable>
196 <TGroup Cols="4">
197 <ColSpec Align="Left">
198 <ColSpec Align="Left">
199 <ColSpec Align="Left">
200 <ColSpec Align="Left">
201 <TBody>
202
203 <Row>
204 <Entry>Phase of the compilation system</Entry>
205 <Entry>Suffix saying &ldquo;start here&rdquo;</Entry>
206 <Entry>Flag saying &ldquo;stop after&rdquo;</Entry>
207 <Entry>(suffix of) output file</Entry>
208 </Row>
209
210 <Row>
211 <Entry>
212 literate pre-processor </Entry>
213 <Entry> .lhs </Entry>
214 <Entry> - </Entry>
215 <Entry> - </Entry>
216 </Row>
217 <Row>
218 <Entry>
219 C pre-processor (opt.) </Entry>
220 <Entry> - </Entry>
221 <Entry> - </Entry>
222 <Entry> - </Entry>
223 </Row>
224 <Row>
225 <Entry>
226 Haskell compiler </Entry>
227 <Entry> .hs </Entry>
228 <Entry> -C, -S </Entry>
229 <Entry> .hc, .s </Entry>
230 </Row>
231 <Row>
232 <Entry>
233 C compiler (opt.) </Entry>
234 <Entry> .hc or .c </Entry>
235 <Entry> -S </Entry>
236 <Entry> .s </Entry>
237 </Row>
238 <Row>
239 <Entry>
240 assembler </Entry>
241 <Entry> .s </Entry>
242 <Entry> -c </Entry>
243 <Entry> .o </Entry>
244 </Row>
245 <Row>
246 <Entry>
247 linker </Entry>
248 <Entry> other </Entry>
249 <Entry> - </Entry>
250 <Entry> a.out </Entry>
251 </Row>
252 </TBody>
253 </TGroup>
254 </InformalTable>
255
256 <IndexTerm><Primary>-C option</Primary></IndexTerm>
257 <IndexTerm><Primary>-S option</Primary></IndexTerm>
258 <IndexTerm><Primary>-c option</Primary></IndexTerm>
259 </Para>
260
261 <Para>
262 Thus, a common invocation would be: <Command>ghc -c Foo.hs</Command>
263 </Para>
264
265 <Para>
266 Note: What the Haskell compiler proper produces depends on whether a
267 native-code generator is used (producing assembly language) or not
268 (producing C).
269 </Para>
270
271 <Para>
272 The option <Option>-cpp</Option><IndexTerm><Primary>-cpp option</Primary></IndexTerm> must be given for the C
273 pre-processor phase to be run, that is, the pre-processor will be run
274 over your Haskell source file before continuing.
275 </Para>
276
277 <Para>
278 The option <Option>-E</Option><IndexTerm><Primary>-E option</Primary></IndexTerm> runs just the pre-processing
279 passes of the compiler, outputting the result on stdout before
280 stopping. If used in conjunction with -cpp, the output is the
281 code blocks of the original (literal) source after having put it
282 through the grinder that is the C pre-processor. Sans <Option>-cpp</Option>, the
283 output is the de-litted version of the original source.
284 </Para>
285
286 <Para>
287 The option <Option>-optcpp-E</Option><IndexTerm><Primary>-optcpp-E option</Primary></IndexTerm> runs just the
288 pre-processing stage of the C-compiling phase, sending the result to
289 stdout.  (For debugging or obfuscation contests, usually.)
290 </Para>
291
292 </Sect1>
293
294 <Sect1 id="options-output">
295 <Title>Re-directing the compilation output(s)
296 </Title>
297
298 <Para>
299 <IndexTerm><Primary>output-directing options</Primary></IndexTerm>
300 </Para>
301
302 <Para>
303 GHC's compiled output normally goes into a <Filename>.hc</Filename>, <Filename>.o</Filename>, etc., file,
304 depending on the last-run compilation phase.  The option <Option>-o
305 foo</Option><IndexTerm><Primary>-o option</Primary></IndexTerm> re-directs the output of that last-run
306 phase to file <Filename>foo</Filename>.
307 </Para>
308
309 <Para>
310 Note: this &ldquo;feature&rdquo; can be counterintuitive:
311 <Command>ghc -C -o foo.o foo.hs</Command> will put the intermediate C code in the
312 file <Filename>foo.o</Filename>, name notwithstanding!
313 </Para>
314
315 <Para>
316 EXOTICA: But the <Option>-o</Option> option isn't of much use if you have
317 <Emphasis>several</Emphasis> input files&hellip; Non-interface output files are
318 normally put in the same directory as their corresponding input file
319 came from.  You may specify that they be put in another directory
320 using the <Option>-odir &lt;dir&gt;</Option><IndexTerm><Primary>-odir &lt;dir&gt; option</Primary></IndexTerm> (the
321 &ldquo;Oh, dear&rdquo; option).  For example:
322 </Para>
323
324 <Para>
325
326 <Screen>
327 % ghc -c parse/Foo.hs parse/Bar.hs gurgle/Bumble.hs -odir `arch`
328 </Screen>
329
330 </Para>
331
332 <Para>
333 The output files, <Filename>Foo.o</Filename>, <Filename>Bar.o</Filename>, and <Filename>Bumble.o</Filename> would be
334 put into a subdirectory named after the architecture of the executing
335 machine (<Filename>sun4</Filename>, <Filename>mips</Filename>, etc).  The directory must already
336 exist; it won't be created.
337 </Para>
338
339 <Para>
340 Note that the <Option>-odir</Option> option does <Emphasis>not</Emphasis> affect where the
341 interface files are put.  In the above example, they would still be
342 put in <Filename>parse/Foo.hi</Filename>, <Filename>parse/Bar.hi</Filename>, and <Filename>gurgle/Bumble.hi</Filename>.
343 </Para>
344
345 <Para>
346 MORE EXOTICA: The <Option>-osuf &lt;suffix&gt;</Option><IndexTerm><Primary>-osuf &lt;suffix&gt;
347 option</Primary></IndexTerm> will change the <Filename>.o</Filename> file suffix for object files to
348 whatever you specify.  (We use this in compiling the prelude.).
349 Similarly, the <Option>-hisuf &lt;suffix&gt;</Option><IndexTerm><Primary>-hisuf &lt;suffix&gt;
350 option</Primary></IndexTerm> will change the <Filename>.hi</Filename> file suffix for non-system
351 interface files (see <XRef LinkEnd="hi-options">).
352 </Para>
353
354 <Para>
355 The <Option>-hisuf</Option>/<Option>-osuf</Option> game is useful if you want to compile a program
356 with both GHC and HBC (say) in the same directory.  Let HBC use the
357 standard <Filename>.hi</Filename>/<Filename>.o</Filename> suffixes; add <Option>-hisuf g&lowbar;hi -osuf g&lowbar;o</Option> to your
358 <Command>make</Command> rule for GHC compiling&hellip;
359 </Para>
360
361 <Para>
362 FURTHER EXOTICA: If you are doing a normal <Filename>.hs</Filename>-to-<Filename>.o</Filename> compilation
363 but would like to hang onto the intermediate <Filename>.hc</Filename> C file, just
364 throw in a <Option>-keep-hc-file-too</Option> option<IndexTerm><Primary>-keep-hc-file-too option</Primary></IndexTerm>.
365 If you would like to look at the assembler output, toss in a
366 <Option>-keep-s-file-too</Option>,<IndexTerm><Primary>-keep-s-file-too option</Primary></IndexTerm> too.
367 </Para>
368
369 <Sect2 id="saving-ghc-stderr">
370 <Title>Saving GHC's standard error output
371 </Title>
372
373 <Para>
374 <IndexTerm><Primary>standard error, saving</Primary></IndexTerm>
375 </Para>
376
377 <Para>
378 Sometimes, you may cause GHC to be rather chatty on standard error;
379 with <Option>-v</Option>, for example.  You can instruct GHC to <Emphasis>append</Emphasis> this
380 output to a particular log file with a <Option>-odump &lt;blah&gt;</Option><IndexTerm><Primary>-odump
381 &lt;blah&gt; option</Primary></IndexTerm> option.
382 </Para>
383
384 </Sect2>
385
386 <Sect2 id="temp-files">
387 <Title>Redirecting temporary files
388 </Title>
389
390 <Para>
391 <IndexTerm><Primary>temporary files, redirecting</Primary></IndexTerm>
392 </Para>
393
394 <Para>
395 If you have trouble because of running out of space in <Filename>/tmp</Filename> (or
396 wherever your installation thinks temporary files should go), you may
397 use the <Option>-tmpdir &lt;dir&gt;</Option><IndexTerm><Primary>-tmpdir &lt;dir&gt; option</Primary></IndexTerm> option
398 to specify an alternate directory.  For example, <Option>-tmpdir .</Option> says to
399 put temporary files in the current working directory.
400 </Para>
401
402 <Para>
403 Alternatively, use your <Constant>TMPDIR</Constant> environment variable.<IndexTerm><Primary>TMPDIR
404 environment variable</Primary></IndexTerm> Set it to the name of the directory where
405 temporary files should be put.  GCC and other programs will honour the
406 <Constant>TMPDIR</Constant> variable as well.
407 </Para>
408
409 <Para>
410 Even better idea: Set the <Constant>TMPDIR</Constant> variable when building GHC, and
411 never worry about <Constant>TMPDIR</Constant> again. (see the build documentation).
412 </Para>
413
414 </Sect2>
415
416 </Sect1>
417
418 <Sect1 id="options-sanity">
419 <Title>Warnings and sanity-checking
420 </Title>
421
422 <Para>
423 <IndexTerm><Primary>sanity-checking options</Primary></IndexTerm>
424 <IndexTerm><Primary>warnings</Primary></IndexTerm>
425 GHC has a number of options that select which types of non-fatal error
426 messages, otherwise known as warnings, can be generated during
427 compilation.  By default, you get a standard set of warnings which are
428 generally likely to indicate bugs in your program.  These are:
429 <Option>-fwarn-overlpapping-patterns</Option>, <Option>-fwarn-duplicate-exports</Option>, and
430 <Option>-fwarn-missing-methods</Option>.  The following flags are simple ways to
431 select standard &ldquo;packages&rdquo; of warnings:
432 </Para>
433
434 <Para>
435 <VariableList>
436
437 <VarListEntry>
438 <Term><Option>-Wnot</Option>:</Term>
439 <ListItem>
440 <Para>
441 <IndexTerm><Primary>-Wnot option</Primary></IndexTerm>
442 Turns off all warnings, including the standard ones.
443 </Para>
444 </ListItem>
445 </VarListEntry>
446
447 <VarListEntry>
448 <Term><Option>-w</Option>:</Term>
449 <ListItem>
450 <Para>
451 <IndexTerm><Primary>-w option</Primary></IndexTerm>
452 Synonym for <Option>-Wnot</Option>.
453 </Para>
454 </ListItem>
455 </VarListEntry>
456
457 <VarListEntry>
458 <Term><Option>-W</Option>:</Term>
459 <ListItem>
460 <Para>
461 <IndexTerm><Primary>-W option</Primary></IndexTerm>
462 Provides the standard warnings plus <Option>-fwarn-incomplete-patterns</Option>,
463 <Option>-fwarn-unused-imports</Option> and <Option>-fwarn-unused-binds</Option>.
464 </Para>
465 </ListItem>
466 </VarListEntry>
467
468 <VarListEntry>
469 <Term><Option>-Wall</Option>:</Term>
470 <ListItem>
471 <Para>
472 <IndexTerm><Primary>-Wall option</Primary></IndexTerm>
473 Turns on all warning options.
474 </Para>
475 </ListItem>
476 </VarListEntry>
477
478 </VariableList>
479 </Para>
480
481 <Para>
482 The full set of warning options is described below.  To turn off any
483 warning, simply give the corresponding <Option>-fno-warn-...</Option> option on
484 the command line.
485 </Para>
486
487 <Para>
488 <VariableList>
489
490 <VarListEntry>
491 <Term><Option>-fwarn-name-shadowing</Option>:</Term>
492 <ListItem>
493 <Para>
494 <IndexTerm><Primary>-fwarn-name-shadowing option</Primary></IndexTerm>
495 <IndexTerm><Primary>shadowing, warning</Primary></IndexTerm>This option causes a warning to be emitted whenever an inner-scope
496 value has the same name as an outer-scope value, i.e. the inner value
497 shadows the outer one.  This can catch typographical errors that turn
498 into hard-to-find bugs, e.g., in the inadvertent cyclic definition
499 <Literal>let x = ... x ... in</Literal>.
500 </Para>
501
502 <Para>
503 Consequently, this option does <Emphasis>not</Emphasis> allow cyclic recursive
504 definitions.
505 </Para>
506 </ListItem>
507 </VarListEntry>
508
509 <VarListEntry>
510 <Term><Option>-fwarn-overlapping-patterns</Option>:</Term>
511 <ListItem>
512 <Para>
513 <IndexTerm><Primary>-fwarn-overlapping-patterns option</Primary></IndexTerm>
514 <IndexTerm><Primary>overlapping patterns, warning</Primary></IndexTerm>
515 <IndexTerm><Primary>patterns, overlapping</Primary></IndexTerm>
516 By default, the compiler will warn you if a set of patterns are
517 overlapping, i.e.,
518 </Para>
519
520 <Para>
521 <ProgramListing>
522 f :: String -&#62; Int
523 f []     = 0
524 f (_:xs) = 1
525 f "2"    = 2
526 </ProgramListing>
527 </Para>
528
529 <Para>
530 where the last pattern match in <Function>f</Function> won't ever be reached, as the
531 second pattern overlaps it. More often than not, redundant patterns
532 is a programmer mistake/error, so this option is enabled by default.
533 </Para>
534 </ListItem>
535 </VarListEntry>
536
537 <VarListEntry>
538 <Term><Option>-fwarn-incomplete-patterns</Option>:</Term>
539 <ListItem>
540 <Para>
541 <IndexTerm><Primary>-fwarn-incomplete-patterns option</Primary></IndexTerm>
542 <IndexTerm><Primary>incomplete patterns, warning</Primary></IndexTerm>
543 <IndexTerm><Primary>patterns, incomplete</Primary></IndexTerm>
544 Similarly for incomplete patterns, the function <Function>g</Function> below will fail
545 when applied to non-empty lists, so the compiler will emit a warning
546 about this when <Option>-fwarn-incomplete-patterns</Option> is enabled.
547 </Para>
548
549 <Para>
550 <ProgramListing>
551 g [] = 2
552 </ProgramListing>
553 </Para>
554
555 <Para>
556 This option isn't enabled be default because it can be a bit noisy,
557 and it doesn't always indicate a bug in the program.  However, it's
558 generally considered good practice to cover all the cases in your
559 functions.
560 </Para>
561 </ListItem>
562 </VarListEntry>
563
564 <VarListEntry>
565 <Term><Option>-fwarn-missing-methods</Option>:</Term>
566 <ListItem>
567 <Para>
568 <IndexTerm><Primary>-fwarn-missing-methods option</Primary></IndexTerm>
569 <IndexTerm><Primary>missing methods, warning</Primary></IndexTerm>
570 <IndexTerm><Primary>methods, missing</Primary></IndexTerm>
571 This option is on by default, and warns you whenever an instance
572 declaration is missing one or more methods, and the corresponding
573 class declaration has no default declaration for them.
574 </Para>
575 </ListItem>
576 </VarListEntry>
577
578 <VarListEntry>
579 <Term><Option>-fwarn-missing-fields</Option>:</Term>
580 <ListItem>
581 <Para>
582 <IndexTerm><Primary>-fwarn-missing-fields option</Primary></IndexTerm>
583 <IndexTerm><Primary>missing fields, warning</Primary></IndexTerm>
584 <IndexTerm><Primary>fields, missing</Primary></IndexTerm>
585 This option is on by default, and warns you whenever the construction
586 of a labelled field constructor isn't complete, missing initializers
587 for one or more fields. While not an error (the missing fields are
588 initialised with bottoms), it is often an indication of a programmer
589 error.
590 </Para>
591 </ListItem>
592 </VarListEntry>
593
594 <VarListEntry>
595 <Term><Option>-fwarn-unused-imports</Option>:</Term>
596 <ListItem>
597 <Para>
598 <IndexTerm><Primary>-fwarn-unused-imports option</Primary></IndexTerm>
599 <IndexTerm><Primary>unused imports, warning</Primary></IndexTerm>
600 <IndexTerm><Primary>imports, unused</Primary></IndexTerm>
601 Report any objects that are explicitly imported but never used.
602 </Para>
603 </ListItem>
604 </VarListEntry>
605
606 <VarListEntry>
607 <Term><Option>-fwarn-unused-binds</Option>:</Term>
608 <ListItem>
609 <Para>
610 <IndexTerm><Primary>-fwarn-unused-binds option</Primary></IndexTerm>
611 <IndexTerm><Primary>unused binds, warning</Primary></IndexTerm>
612 <IndexTerm><Primary>binds, unused</Primary></IndexTerm>
613 Report any function definitions (and local bindings) which are unused.
614 For top-level functions, the warning is only given if the binding is
615 not exported.
616 </Para>
617 </ListItem>
618 </VarListEntry>
619 <VarListEntry>
620 <Term><Option>-fwarn-unused-matches</Option>:</Term>
621 <ListItem>
622 <Para>
623 <IndexTerm><Primary>-fwarn-unused-matches option</Primary></IndexTerm>
624 <IndexTerm><Primary>unused matches, warning</Primary></IndexTerm>
625 <IndexTerm><Primary>matches, unused</Primary></IndexTerm>
626 Report all unused variables which arise from pattern matches,
627 including patterns consisting of a single variable.  For instance <Literal>f x
628 y = []</Literal> would report <VarName>x</VarName> and <VarName>y</VarName> as unused.  To eliminate the warning,
629 all unused variables can be replaced with wildcards.
630 </Para>
631 </ListItem>
632 </VarListEntry>
633
634 <VarListEntry>
635 <Term><Option>-fwarn-duplicate-exports</Option>:</Term>
636 <ListItem>
637 <Para>
638 <IndexTerm><Primary>-fwarn-duplicate-exports option</Primary></IndexTerm>
639 <IndexTerm><Primary>duplicate exports, warning</Primary></IndexTerm>
640 <IndexTerm><Primary>export lists, duplicates</Primary></IndexTerm>
641 Have the compiler warn about duplicate entries in export lists. This
642 is useful information if you maintain large export lists, and want to
643 avoid the continued export of a definition after you've deleted (one)
644 mention of it in the export list.
645 </Para>
646
647 <Para>
648 This option is on by default.
649 </Para>
650 </ListItem>
651 </VarListEntry>
652
653 <VarListEntry>
654 <Term><Option>-fwarn-type-defaults</Option>:</Term>
655 <ListItem>
656 <Para>
657 <IndexTerm><Primary>-fwarn-type-defaults option</Primary></IndexTerm>
658 <IndexTerm><Primary>defaulting mechanism, warning</Primary></IndexTerm>
659 Have the compiler warn/inform you where in your source the Haskell
660 defaulting mechanism for numeric types kicks in. This is useful
661 information when converting code from a context that assumed one
662 default into one with another, e.g., the `default default' for Haskell
663 1.4 caused the otherwise unconstrained value <Constant>1</Constant> to be given
664 the type <Literal>Int</Literal>, whereas Haskell 98 defaults it to
665 <Literal>Integer</Literal>.  This may lead to differences in performance and
666 behaviour, hence the usefulness of being non-silent about this.
667 </Para>
668
669 <Para>
670 This warning is off by default.
671 </Para>
672 </ListItem>
673 </VarListEntry>
674
675 <VarListEntry>
676 <Term><Option>-fwarn-missing-signatures</Option>:</Term>
677 <ListItem>
678 <Para>
679 <IndexTerm><Primary>-fwarn-missing-signatures option</Primary></IndexTerm>
680 <IndexTerm><Primary>type signatures, missing</Primary></IndexTerm>
681 If you would like GHC to check that every top-level function/value has
682 a type signature, use the <Option>-fwarn-missing-signatures</Option> option.  This
683 option is off by default.
684 </Para>
685 </ListItem>
686 </VarListEntry>
687 </VariableList>
688 </Para>
689
690 <Para>
691 If you're feeling really paranoid, the <Option>-dcore-lint</Option>
692 option<IndexTerm><Primary>-dcore-lint option</Primary></IndexTerm> is a good choice.  It turns on
693 heavyweight intra-pass sanity-checking within GHC.  (It checks GHC's
694 sanity, not yours.)
695 </Para>
696
697 </Sect1>
698
699 <Sect1 id="separate-compilation">
700 <Title>Separate compilation
701 </Title>
702
703 <Para>
704 <IndexTerm><Primary>separate compilation</Primary></IndexTerm>
705 <IndexTerm><Primary>recompilation checker</Primary></IndexTerm>
706 <IndexTerm><Primary>make and recompilation</Primary></IndexTerm>
707 This section describes how GHC supports separate compilation.
708 </Para>
709
710 <Sect2 id="hi-files">
711 <Title>Interface files
712 </Title>
713
714 <Para>
715 <IndexTerm><Primary>interface files</Primary></IndexTerm>
716 <IndexTerm><Primary>.hi files</Primary></IndexTerm>
717 </Para>
718
719 <Para>
720 When GHC compiles a source file <Filename>F</Filename> which contains a module <Literal>A</Literal>, say,
721 it generates an object <Filename>F.o</Filename>, <Emphasis>and</Emphasis> a companion <Emphasis>interface
722 file</Emphasis> <Filename>A.hi</Filename>.  The interface file is not intended for human
723 consumption, as you'll see if you take a look at one.  It's merely
724 there to help the compiler compile other modules in the same program.
725 </Para>
726
727 <Para>
728 NOTE: Having the name of the interface file follow the module name and
729 not the file name, means that working with tools such as <Command>make</Command>
730 become harder. <Command>make</Command> implicitly assumes that any output files
731 produced by processing a translation unit will have file names that
732 can be derived from the file name of the translation unit.  For
733 instance, pattern rules becomes unusable.  For this reason, we
734 recommend you stick to using the same file name as the module name.
735 </Para>
736
737 <Para>
738 The interface file for <Literal>A</Literal> contains information needed by the compiler
739 when it compiles any module <Literal>B</Literal> that imports <Literal>A</Literal>, whether directly or
740 indirectly.  When compiling <Literal>B</Literal>, GHC will read <Filename>A.hi</Filename> to find the
741 details that it needs to know about things defined in <Literal>A</Literal>.
742 </Para>
743
744 <Para>
745 Furthermore, when compiling module <Literal>C</Literal> which imports <Literal>B</Literal>, GHC may
746 decide that it needs to know something about <Literal>A</Literal>&mdash;for example, <Literal>B</Literal>
747 might export a function that involves a type defined in <Literal>A</Literal>.  In this
748 case, GHC will go and read <Command>A.hi</Command> even though <Literal>C</Literal> does not explicitly
749 import <Literal>A</Literal> at all.
750 </Para>
751
752 <Para>
753 The interface file may contain all sorts of things that aren't
754 explicitly exported from <Literal>A</Literal> by the programmer.  For example, even
755 though a data type is exported abstractly, <Filename>A.hi</Filename> will contain the
756 full data type definition.  For small function definitions, <Filename>A.hi</Filename>
757 will contain the complete definition of the function.  For bigger
758 functions, <Filename>A.hi</Filename> will contain strictness information about the
759 function.  And so on.  GHC puts much more information into <Filename>.hi</Filename> files
760 when optimisation is turned on with the <Option>-O</Option> flag.  Without <Option>-O</Option> it
761 puts in just the minimum; with <Option>-O</Option> it lobs in a whole pile of stuff.
762 <IndexTerm><Primary>optimsation, effect on .hi files</Primary></IndexTerm>
763 </Para>
764
765 <Para>
766 <Filename>A.hi</Filename> should really be thought of as a compiler-readable version of
767 <Filename>A.o</Filename>.  If you use a <Filename>.hi</Filename> file that wasn't generated by the same
768 compilation run that generates the <Filename>.o</Filename> file the compiler may assume
769 all sorts of incorrect things about <Literal>A</Literal>, resulting in core dumps and
770 other unpleasant happenings.
771 </Para>
772
773 </Sect2>
774
775 <Sect2 id="options-finding-imports">
776 <Title>Finding interface files
777 </Title>
778
779 <Para>
780 <IndexTerm><Primary>interface files, finding them</Primary></IndexTerm>
781 <IndexTerm><Primary>finding interface files</Primary></IndexTerm>
782 </Para>
783
784 <Para>
785 In your program, you import a module <Literal>Foo</Literal> by saying
786 <Literal>import Foo</Literal>.  GHC goes looking for an interface file, <Filename>Foo.hi</Filename>.
787 It has a builtin list of directories (notably including <Filename>.</Filename>) where
788 it looks.
789 </Para>
790
791 <Para>
792 <VariableList>
793
794 <VarListEntry>
795 <Term><Option>-i&lt;dirs&gt;</Option></Term>
796 <ListItem>
797 <Para>
798 <IndexTerm><Primary>-i&lt;dirs&gt; option</Primary></IndexTerm>This flag
799 prepends a colon-separated list of <Filename>dirs</Filename> to the &ldquo;import
800 directories&rdquo; list.
801 See also <XRef LinkEnd="recomp"> for the significance of using
802 relative and absolute pathnames in the <Option>-i</Option> list.
803 </Para>
804 </ListItem>
805 </VarListEntry>
806
807 <VarListEntry>
808 <Term><Option>-i</Option></Term>
809 <ListItem>
810 <Para>
811 resets the &ldquo;import directories&rdquo; list back to nothing.
812 </Para>
813 </ListItem>
814 </VarListEntry>
815
816 <VarListEntry>
817 <Term><Option>-fno-implicit-prelude</Option></Term>
818 <ListItem>
819 <Para>
820 <IndexTerm><Primary>-fno-implicit-prelude option</Primary></IndexTerm>
821 GHC normally imports <Filename>Prelude.hi</Filename> files for you.  If you'd rather it
822 didn't, then give it a <Option>-fno-implicit-prelude</Option> option.  You are
823 unlikely to get very far without a Prelude, but, hey, it's a free
824 country.
825 </Para>
826 </ListItem>
827 </VarListEntry>
828
829 <VarListEntry>
830 <Term><Option>-package &lt;lib&gt;</Option></Term>
831 <ListItem>
832 <Para>
833 <IndexTerm><Primary>-package &lt;lib&gt; option</Primary></IndexTerm>
834 If you are using a system-supplied non-Prelude library (e.g., the
835 POSIX library), just use a <Option>-package posix</Option> option (for
836 example).  The right interface files should then be available.  The
837 accompanying HsLibs document lists the libraries available by this
838 mechanism.
839 </Para>
840 </ListItem>
841 </VarListEntry>
842
843 <VarListEntry>
844 <Term><Option>-I&lt;dir&gt;</Option></Term>
845 <ListItem>
846 <Para>
847 <IndexTerm><Primary>-I&lt;dir&gt; option</Primary></IndexTerm>
848 Once a Haskell module has been compiled to C (<Filename>.hc</Filename> file), you may
849 wish to specify where GHC tells the C compiler to look for <Filename>.h</Filename> files.
850 (Or, if you are using the <Option>-cpp</Option> option<IndexTerm><Primary>-cpp option</Primary></IndexTerm>, where
851 it tells the C pre-processor to look&hellip;)  For this purpose, use a <Option>-I</Option>
852 option in the usual C-ish way.
853 </Para>
854 </ListItem>
855 </VarListEntry>
856
857 </VariableList>
858 </Para>
859
860 </Sect2>
861
862 <Sect2 id="hi-options">
863 <Title>Other options related to interface files
864 </Title>
865
866 <Para>
867 <IndexTerm><Primary>interface files, options</Primary></IndexTerm>
868 The interface output may be directed to another file
869 <Filename>bar2/Wurble.iface</Filename> with the option <Option>-ohi bar2/Wurble.iface</Option><IndexTerm><Primary>-ohi
870 &lt;file&gt; option</Primary></IndexTerm> (not recommended).
871 </Para>
872
873 <Para>
874 To avoid generating an interface file at all, use a <Option>-nohi</Option>
875 option.<IndexTerm><Primary>-nohi option</Primary></IndexTerm>
876 </Para>
877
878 <Para>
879 The compiler does not overwrite an existing <Filename>.hi</Filename> interface file if
880 the new one is byte-for-byte the same as the old one; this is friendly
881 to <Command>make</Command>.  When an interface does change, it is often enlightening to
882 be informed.  The <Option>-hi-diffs</Option><IndexTerm><Primary>-hi-diffs option</Primary></IndexTerm> option will
883 make GHC run <Command>diff</Command> on the old and new <Filename>.hi</Filename> files. You can also
884 record the difference in the interface file itself, the
885 <Option>-keep-hi-diffs</Option><IndexTerm><Primary>-keep-hi-diffs</Primary></IndexTerm> option takes care of that.
886 </Para>
887
888 <Para>
889 The <Filename>.hi</Filename> files from GHC contain &ldquo;usage&rdquo; information which changes
890 often and uninterestingly.  If you really want to see these changes
891 reported, you need to use the
892 <Option>-hi-diffs-with-usages</Option><IndexTerm><Primary>-hi-diffs-with-usages option</Primary></IndexTerm>
893 option.
894 </Para>
895
896 <Para>
897 Interface files are normally jammed full of compiler-produced
898 <Emphasis>pragmas</Emphasis>, which record arities, strictness info, etc.  If you
899 think these pragmas are messing you up (or you are doing some kind of
900 weird experiment), you can tell GHC to ignore them with the
901 <Option>-fignore-interface-pragmas</Option><IndexTerm><Primary>-fignore-interface-pragmas
902 option</Primary></IndexTerm> option.
903 </Para>
904
905 <Para>
906 When compiling without optimisations on, the compiler is extra-careful
907 about not slurping in data constructors and instance declarations that
908 it will not need. If you believe it is getting it wrong and not
909 importing stuff which you think it should, this optimisation can be
910 turned off with <Option>-fno-prune-tydecls</Option> and <Option>-fno-prune-instdecls</Option>.
911 <IndexTerm><Primary>-fno-prune-tydecls option</Primary></IndexTerm><IndexTerm><Primary>-fno-prune-instdecls
912 option</Primary></IndexTerm>
913 </Para>
914
915 <Para>
916 See also <XRef LinkEnd="options-linker">, which describes how the linker finds standard
917 Haskell libraries.
918 </Para>
919
920 </Sect2>
921
922 <Sect2 id="recomp">
923 <Title>The recompilation checker
924 </Title>
925
926 <IndexTerm><Primary>recompilation checker</Primary></IndexTerm>
927
928 <Para>
929 <variablelist>
930 <VarListEntry>
931 <Term><Option>-recomp</Option></Term>
932 <IndexTerm><Primary><option>-recomp</option> option</Primary></IndexTerm>
933 <ListItem>
934 <Para>
935 (On by default) Turn on recompilation checking.  This will stop
936 compilation early, leaving an existing <filename>.o</filename> file in
937 place, if it can be determined that the module does not need to be
938 recompiled.
939 </Para>
940 </ListItem>
941 </VarListEntry>
942 <VarListEntry>
943 <Term><Option>-no-recomp</Option></Term>
944 <IndexTerm><Primary><option>-recomp</option> option</Primary></IndexTerm>
945 <ListItem>
946 <Para>
947 Turn off recompilation checking.
948 </Para>
949 </ListItem>
950 </VarListEntry>
951 </VariableList>
952 </Para>
953
954 <Para>
955 In the olden days, GHC compared the newly-generated
956 <Filename>.hi</Filename> file with the previous version; if they were
957 identical, it left the old one alone and didn't change its
958 modification date.  In consequence, importers of a module with an
959 unchanged output <Filename>.hi</Filename> file were not recompiled.
960 </Para>
961
962 <Para>
963 This doesn't work any more.  In our earlier example, module
964 <Literal>C</Literal> does not import module <Literal>A</Literal>
965 directly, yet changes to <Filename>A.hi</Filename> should force a
966 recompilation of <Literal>C</Literal>.  And some changes to
967 <Literal>A</Literal> (changing the definition of a function that
968 appears in an inlining of a function exported by <Literal>B</Literal>,
969 say) may conceivably not change <Filename>B.hi</Filename> one jot.  So
970 now&hellip;
971 </Para>
972
973 <Para>
974 GHC keeps a version number on each interface file, and on each type
975 signature within the interface file.  It also keeps in every interface
976 file a list of the version numbers of everything it used when it last
977 compiled the file.  If the source file's modification date is earlier
978 than the <Filename>.o</Filename> file's date (i.e. the source hasn't
979 changed since the file was last compiled), and the
980 <option>-recomp</option> is given on the command line, GHC will be
981 clever.  It compares the version numbers on the things it needs this
982 time with the version numbers on the things it needed last time
983 (gleaned from the interface file of the module being compiled); if
984 they are all the same it stops compiling rather early in the process
985 saying &ldquo;Compilation IS NOT required&rdquo;.  What a beautiful
986 sight!
987 </Para>
988
989 <Para>
990 Patrick Sansom had a workshop paper about how all this is done (though
991 the details have changed quite a bit). <ULink URL="mailto:sansom@dcs.gla.ac.uk">Ask him</ULink> if you want a copy.
992 </Para>
993
994 <Sect3 id="packages">
995 <Title>Packages</Title>
996
997 <Para>
998 <IndexTerm><Primary>packages</Primary></IndexTerm>
999 To simplify organisation and compilation, GHC keeps libraries in <Emphasis>packages</Emphasis>. Packages are also compiled into single libraries on Unix, and DLLs on Windows. The term ``package'' can be used pretty much synonymously with ``library'', except that an application also forms a package, the Main package.
1000 </Para>
1001
1002 <ItemizedList>
1003 <ListItem>
1004 <Para>
1005 A package is a group of modules. It may span many directories, or many packages may exist in a single directory. Packages may not be mutually recursive.
1006 </Para>
1007 </ListItem>
1008
1009 <ListItem>
1010 <Para>
1011 A package has a name (e.g. <Filename>std</Filename>)
1012 </Para>
1013 </ListItem>
1014
1015 <ListItem>
1016 <Para>
1017 Each package is built into a single library (Unix; e.g. <Filename>libHSfoo.a</Filename>), or a single DLL (Windows; e.g. <Filename>HSfoo.dll</Filename>)
1018 </Para>
1019 </ListItem>
1020
1021 <ListItem>
1022 <Para>
1023 The <Option>-package-name foo</Option> flag tells GHC that the module being compiled is destined for package <Filename>foo</Filename>. If this is omitted, the default package, <Filename>Main</Filename>, is assumed.
1024 </Para>
1025 </ListItem>
1026
1027 <ListItem>
1028 <Para>
1029 The <Option>-package foo</Option> flag tells GHC to make available modules 
1030 from package <Filename>foo</Filename>.  It replaces <Option>-syslib foo</Option>, which is now deprecated.
1031 </Para>
1032 </ListItem>
1033
1034 <ListItem>
1035 <Para>
1036 GHC does not maintain detailed cross-package dependency information.
1037 It does remember which modules in other packages the current module
1038 depends on, but not which things within those imported things.
1039 </Para>
1040 </ListItem>
1041 </ItemizedList>
1042
1043 <Para>
1044 All of this tidies up the Prelude enormously.  The Prelude and
1045 Standard Libraries are built into a single package called <Filename>std</Filename>.  (This
1046 is a change; the library is now called <Filename>libHSstd.a</Filename> instead of <Filename>libHS.a</Filename>).
1047 </Para>
1048
1049 <Para>
1050 It is worth noting that on Windows, because each package is built as a DLL, and a reference to a DLL costs an extra indirection, intra-package references are cheaper than inter-package references. Of course, this applies to the <Filename>Main</Filename> package as well. This is not normally the case on most Unices.
1051 </Para>
1052
1053 </Sect3>
1054
1055 </Sect2>
1056
1057
1058 <Sect2 id="using-make">
1059 <Title>Using <Command>make</Command>
1060 </Title>
1061
1062 <Para>
1063 <IndexTerm><Primary><literal>make</literal></Primary></IndexTerm>
1064 </Para>
1065
1066 <Para>
1067 It is reasonably straightforward to set up a <Filename>Makefile</Filename> to use with GHC, assuming you name your source files the same as your modules.
1068 Thus:
1069 </Para>
1070
1071 <Para>
1072
1073 <ProgramListing>
1074 HC      = ghc
1075 HC_OPTS = -cpp $(EXTRA_HC_OPTS)
1076
1077 SRCS = Main.lhs Foo.lhs Bar.lhs
1078 OBJS = Main.o   Foo.o   Bar.o
1079
1080 .SUFFIXES : .o .hs .hi .lhs .hc .s
1081
1082 cool_pgm : $(OBJS)
1083         rm $@
1084         $(HC) -o $@ $(HC_OPTS) $(OBJS)
1085
1086 # Standard suffix rules
1087 .o.hi:
1088         @:
1089
1090 .lhs.o:
1091         $(HC) -c $&#60; $(HC_OPTS)
1092
1093 .hs.o:
1094         $(HC) -c $&#60; $(HC_OPTS)
1095
1096 # Inter-module dependencies
1097 Foo.o Foo.hc Foo.s    : Baz.hi          # Foo imports Baz
1098 Main.o Main.hc Main.s : Foo.hi Baz.hi   # Main imports Foo and Baz
1099 </ProgramListing>
1100
1101 </Para>
1102
1103 <Para>
1104 (Sophisticated <Command>make</Command> variants may achieve some of the above more
1105 elegantly.  Notably, <Command>gmake</Command>'s pattern rules let you write the more
1106 comprehensible:
1107 </Para>
1108
1109 <Para>
1110
1111 <ProgramListing>
1112 %.o : %.lhs
1113         $(HC) -c $&#60; $(HC_OPTS)
1114 </ProgramListing>
1115
1116 </Para>
1117
1118 <Para>
1119 What we've shown should work with any <Command>make</Command>.)
1120 </Para>
1121
1122 <Para>
1123 Note the cheesy <Literal>.o.hi</Literal> rule: It records the dependency of the
1124 interface (<Filename>.hi</Filename>) file on the source.  The rule says a <Filename>.hi</Filename> file can
1125 be made from a <Filename>.o</Filename> file by doing&hellip;nothing.  Which is true.
1126 </Para>
1127
1128 <Para>
1129 Note the inter-module dependencies at the end of the Makefile, which
1130 take the form
1131 </Para>
1132
1133 <Para>
1134
1135 <ProgramListing>
1136 Foo.o Foo.hc Foo.s    : Baz.hi          # Foo imports Baz
1137 </ProgramListing>
1138
1139 </Para>
1140
1141 <Para>
1142 They tell <Command>make</Command> that if any of <Literal>Foo.o</Literal>, <Literal>Foo.hc</Literal> or <Literal>Foo.s</Literal> have an
1143 earlier modification date than <Literal>Baz.hi</Literal>, then the out-of-date file
1144 must be brought up to date.  To bring it up to date, <Literal>make</Literal> looks for
1145 a rule to do so; one of the preceding suffix rules does the job
1146 nicely.
1147 </Para>
1148
1149     </sect2>
1150
1151     <sect2 id="sec-makefile-dependencies">
1152       <title>Dependency generation</title>
1153       <indexterm><primary>dependencies in Makefiles</primary></indexterm>
1154       <indexterm><primary>Makefile dependencies</primary></indexterm>
1155
1156       <para>Putting inter-dependencies of the form <Literal>Foo.o :
1157       Bar.hi</Literal> into your <Filename>Makefile</Filename> by hand
1158       is rather error-prone.  Don't worry, GHC has support for
1159       automatically generating the required dependencies.  Add the
1160       following to your <Filename>Makefile</Filename>:</para>
1161
1162 <ProgramListing>
1163 depend :
1164         ghc -M $(HC_OPTS) $(SRCS)
1165 </ProgramListing>
1166
1167       <para>Now, before you start compiling, and any time you change
1168       the <Literal>imports</Literal> in your program, do <Command>make
1169       depend</Command> before you do <Command>make
1170       cool&lowbar;pgm</Command>.  <Command>ghc -M</Command> will append
1171       the needed dependencies to your
1172       <Filename>Makefile</Filename>.</Para>
1173
1174       <para>In general, if module <Literal>A</Literal> contains the
1175       line
1176
1177 <programlisting>
1178 import B ...blah...
1179 </programlisting>
1180
1181        then <command>ghc -M</command> will generate a dependency
1182        line of the form:
1183
1184 <programlisting>
1185 A.o : B.hi
1186 </programlisting>
1187
1188        If module <literal>A</literal> contains the line 
1189
1190 <programlisting>
1191 import {-# SOURCE #-} B ...blah...
1192 </programlisting>
1193
1194        then <command>ghc -M</command> will generate a dependency
1195        line of the form:
1196
1197 <programlisting>
1198 A.o : B.hi-boot
1199 </programlisting>
1200
1201        (See <xref linkend="hi-files"> for details of interface files.)
1202        If <literal>A</literal> imports multiple modules, then there
1203        will be multiple lines with <filename>A.o</filename> as the
1204        target.</para>
1205
1206       <para>By default, <Command>ghc -M</Command> generates all the
1207       dependencies, and then concatenates them onto the end of
1208       <Filename>makefile</Filename> (or <Filename>Makefile</Filename>
1209       if <Filename>makefile</Filename> doesn't exist) bracketed by the
1210       lines "<Literal>&num; DO NOT DELETE: Beginning of Haskell
1211       dependencies</Literal>" and "<Literal>&num; DO NOT DELETE: End
1212       of Haskell dependencies</Literal>".  If these lines already
1213       exist in the <Filename>makefile</Filename>, then the old
1214       dependencies are deleted first.</para>
1215
1216       <para>Internally, GHC uses a script to generate the
1217       dependencies, called <command>mkdependHS</command>.  This script
1218       has some options of its own, which you might find useful.
1219       Options can be passed directly to <command>mkdependHS</command>
1220       with GHC's <literal>-optdep</literal> option.  For example, to
1221       generate the dependencies into a file called
1222       <literal>.depend</literal> instead of
1223       <literal>Makefile</literal>:</para>
1224
1225 <screen>
1226 ghc -M -optdep-f optdep.depend ...
1227 </screen>
1228       
1229       <para>The full list of options accepted by
1230       <command>mkdependHS</command> is:</para>
1231
1232       <variablelist>
1233
1234         <varlistentry>
1235           <term><option>-w</option></term>
1236           <listitem>
1237             <para>Turn off warnings about interface file shadowing.</para>
1238           </listitem>
1239         </varlistentry>
1240
1241         <varlistentry>
1242           <term><option>-f blah</option></term>
1243           <listitem>
1244             <para>Use <Filename>blah</Filename> as the makefile,
1245             rather than <Filename>makefile</Filename> or
1246             <Filename>Makefile</Filename>.  If
1247             <Filename>blah</Filename> doesn't exist,
1248             <Command>mkdependHS</Command> creates it.  We often use
1249             <Option>-f .depend</Option> to put the dependencies in
1250             <Filename>.depend</Filename> and then
1251             <Command>include</Command> the file
1252             <Filename>.depend</Filename> into
1253             <Filename>Makefile</Filename>.</para>
1254           </listitem>
1255         </varlistentry>
1256
1257         <varlistentry>
1258           <term><option>-o &lt;osuf&gt;</option></term>
1259           <listitem>
1260             <para>Use <Filename>.&lt;osuf&gt;</Filename> as the
1261             "target file" suffix ( default: <Literal>o</Literal>).
1262             Multiple <Option>-o</Option> flags are permitted (GHC2.05
1263             onwards).  Thus "<Option>-o hc -o o</Option>" will
1264             generate dependencies for <Filename>.hc</Filename> and
1265             <Filename>.o</Filename> files.</para>
1266           </listitem>
1267         </varlistentry>
1268
1269         <varlistentry>
1270           <term><option>-s &lt;suf&gt;</option></term>
1271           <listitem>
1272             <para>Make extra dependencies that declare that files with
1273             suffix
1274             <Filename>.&lt;suf&gt;&lowbar;&lt;osuf&gt;</Filename>
1275             depend on interface files with suffix
1276             <Filename>.&lt;suf&gt;&lowbar;hi</Filename>, or (for
1277             <Literal>&lcub;-&num; SOURCE &num;-&rcub;</Literal>
1278             imports) on <Filename>.hi-boot</Filename>.  Multiple
1279             <Option>-s</Option> flags are permitted.  For example,
1280             <Option>-o hc -s a -s b</Option> will make dependencies
1281             for <Filename>.hc</Filename> on <Filename>.hi</Filename>,
1282             <Filename>.a&lowbar;hc</Filename> on
1283             <Filename>.a&lowbar;hi</Filename>, and
1284             <Filename>.b&lowbar;hc</Filename> on
1285             <Filename>.b&lowbar;hi</Filename>.  (Useful in conjunction
1286             with NoFib "ways".)</para>
1287           </listitem>
1288         </varlistentry>
1289
1290         <varlistentry>
1291           <term><option>--exclude-module=&lt;file&gt;</option></term>
1292           <listitem>
1293             <para>Regard <Filename>&lt;file&gt;</Filename> as
1294             "stable"; i.e., exclude it from having dependencies on
1295             it.</para>
1296           </listitem>
1297         </varlistentry>
1298
1299         <varlistentry>
1300           <term><option>-x</option></term>
1301           <listitem>
1302             <para>same as <option>--exclude-module</option></para>
1303           </listitem>
1304         </varlistentry>
1305
1306         <varlistentry>
1307           <term><option>--exclude-directory=&lt;dirs&gt;</option></term>
1308           <listitem>
1309             <para>Regard the colon-separated list of directories
1310             <Filename>&lt;dirs&gt;</Filename> as containing stable,
1311             don't generate any dependencies on modules therein.</para>
1312           </listitem>
1313         </varlistentry>
1314
1315         <varlistentry>
1316           <term><option>-xdirs</option></term>
1317           <listitem>
1318             <para>same as <Option>--exclude-directory</Option>.</para>
1319           </listitem>
1320         </varlistentry>
1321
1322         <varlistentry>
1323           <term><option>--include-module=&lt;file&gt;</option></term>
1324           <listitem>
1325             <para>Regard <Filename>&lt;file&gt;</Filename> as not
1326             "stable"; i.e., generate dependencies on it (if any). This
1327             option is normally used in conjunction with the
1328             <Option>--exclude-directory</Option> option.</para>
1329           </listitem>
1330         </varlistentry>
1331
1332         <varlistentry>
1333           <term><option>--include-prelude</option></term>
1334           <listitem>
1335             <para>Regard prelude libraries as unstable, i.e., generate
1336             dependencies on the prelude modules used (including
1337             <Literal>Prelude</Literal>).  This option is normally only
1338             used by the various system libraries. If a
1339             <Option>-package</Option> option is used, dependencies will
1340             also be generated on the library's interfaces.</para>
1341           </listitem>
1342         </varlistentry>
1343       </variablelist>
1344
1345 </Sect2>
1346
1347 <Sect2 id="mutual-recursion">
1348 <Title>How to compile mutually recursive modules
1349 </Title>
1350
1351 <Para>
1352 <IndexTerm><Primary>module system, recursion</Primary></IndexTerm>
1353 <IndexTerm><Primary>recursion, between modules</Primary></IndexTerm>
1354 </Para>
1355
1356 <Para>
1357 Currently, the compiler does not have proper support for dealing with
1358 mutually recursive modules:
1359 </Para>
1360
1361 <Para>
1362
1363 <ProgramListing>
1364 module A where
1365
1366 import B
1367
1368 newtype TA = MkTA Int
1369
1370 f :: TB -&#62; TA
1371 f (MkTB x) = MkTA x
1372 --------
1373 module B where
1374
1375 import A
1376
1377 data TB = MkTB !Int
1378
1379 g :: TA -&#62; TB
1380 g (MkTA x) = MkTB x
1381 </ProgramListing>
1382
1383 </Para>
1384
1385 <Para>
1386 When compiling either module A and B, the compiler will try (in vain)
1387 to look for the interface file of the other. So, to get mutually
1388 recursive modules off the ground, you need to hand write an interface
1389 file for A or B, so as to break the loop.  These hand-written
1390 interface files are called <Literal>hi-boot</Literal> files, and are placed in a file
1391 called <Filename>&lt;module&gt;.hi-boot</Filename>.  To import from an <Literal>hi-boot</Literal> file instead
1392 of the standard <Filename>.hi</Filename> file, use the following syntax in the importing module:
1393 <IndexTerm><Primary>hi-boot files</Primary></IndexTerm>
1394 <IndexTerm><Primary>importing, hi-boot files</Primary></IndexTerm>
1395 </Para>
1396
1397 <Para>
1398
1399 <ProgramListing>
1400 import {-# SOURCE #-} A
1401 </ProgramListing>
1402
1403 </Para>
1404
1405 <Para>
1406 The hand-written interface need only contain the bare minimum of
1407 information needed to get the bootstrapping process started.  For
1408 example, it doesn't need to contain declarations for <Emphasis>everything</Emphasis>
1409 that module <Literal>A</Literal> exports, only the things required by the module that
1410 imports <Literal>A</Literal> recursively.
1411 </Para>
1412
1413 <Para>
1414 For the example at hand, the boot interface file for A would look like
1415 the following:
1416 </Para>
1417
1418 <Para>
1419
1420 <ProgramListing>
1421 __interface A 1 404 where
1422 __export A TA{MkTA} ;
1423 1 newtype TA = MkTA PrelBase.Int ;
1424 </ProgramListing>
1425
1426 </Para>
1427
1428 <Para>
1429 The syntax is essentially the same as a normal <Filename>.hi</Filename> file
1430 (unfortunately), but you can usually tailor an existing <Filename>.hi</Filename> file to
1431 make a <Filename>.hi-boot</Filename> file.
1432 </Para>
1433
1434 <Para>
1435 Notice that we only put the declaration for the newtype <Literal>TA</Literal> in the
1436 <Literal>hi-boot</Literal> file, not the signature for <Function>f</Function>, since <Function>f</Function> isn't used by
1437 <Literal>B</Literal>.
1438 </Para>
1439
1440 <Para>
1441 The number &ldquo;1&rdquo; after &ldquo;&lowbar;&lowbar;interface A&rdquo; gives the version number of module A;
1442 it is incremented whenever anything in A's interface file changes.  The &ldquo;404&rdquo; is
1443 the version number of the interface file <Emphasis>syntax</Emphasis>; we change it when
1444 we change the syntax of interface files so that you get a better error message when
1445 you try to read an old-format file with a new-format compiler.
1446 </Para>
1447
1448 <Para>
1449 The number &ldquo;1&rdquo; at the beginning of a declaration is the <Emphasis>version
1450 number</Emphasis> of that declaration: for the purposes of <Filename>.hi-boot</Filename> files
1451 these can all be set to 1.  All names must be fully qualified with the
1452 <Emphasis>original</Emphasis> module that an object comes from: for example, the
1453 reference to <Literal>Int</Literal> in the interface for <Literal>A</Literal> comes from <Literal>PrelBase</Literal>,
1454 which is a module internal to GHC's prelude.  It's a pain, but that's
1455 the way it is.
1456 </Para>
1457
1458 <Para>
1459 If you want an hi-boot file to export a data type, but you don't want to give its constructors
1460 (because the constructors aren't used by the SOURCE-importing module), you can write simply:
1461 </Para>
1462
1463 <Para>
1464
1465 <ProgramListing>
1466 __interface A 1 404 where
1467 __export A TA;
1468 1 data TA
1469 </ProgramListing>
1470
1471 </Para>
1472
1473 <Para>
1474 (You must write all the type parameters, but leave out the '=' and everything that follows it.)
1475 </Para>
1476
1477 <Para>
1478 <Emphasis>Note:</Emphasis> This is all a temporary solution, a version of the
1479 compiler that handles mutually recursive modules properly without the manual
1480 construction of interface files, is (allegedly) in the works.
1481 </Para>
1482
1483 </Sect2>
1484
1485 </Sect1>
1486
1487 <Sect1 id="options-optimise">
1488 <Title>Optimisation (code improvement)
1489 </Title>
1490
1491 <Para>
1492 <IndexTerm><Primary>optimisation (GHC)</Primary></IndexTerm>
1493 <IndexTerm><Primary>improvement, code (GHC)</Primary></IndexTerm>
1494 </Para>
1495
1496 <Para>
1497 The <Option>-O*</Option> options specify convenient &ldquo;packages&rdquo; of optimisation
1498 flags; the <Option>-f*</Option> options described later on specify
1499 <Emphasis>individual</Emphasis> optimisations to be turned on/off; the <Option>-m*</Option>
1500 options specify <Emphasis>machine-specific</Emphasis> optimisations to be turned
1501 on/off.
1502 </Para>
1503
1504 <Sect2 id="optimise-pkgs">
1505 <Title><Option>-O*</Option>: convenient &ldquo;packages&rdquo; of optimisation flags.
1506 </Title>
1507
1508 <Para>
1509 <IndexTerm><Primary>-O options</Primary></IndexTerm>
1510 </Para>
1511
1512 <Para>
1513 There are <Emphasis>many</Emphasis> options that affect the quality of code
1514 produced by GHC.  Most people only have a general goal, something like
1515 &ldquo;Compile quickly&rdquo; or &ldquo;Make my program run like greased lightning.&rdquo;
1516 The following &ldquo;packages&rdquo; of optimisations (or lack thereof) should
1517 suffice.
1518 </Para>
1519
1520 <Para>
1521 Once you choose a <Option>-O*</Option> &ldquo;package,&rdquo; stick with it&mdash;don't chop and
1522 change.  Modules' interfaces <Emphasis>will</Emphasis> change with a shift to a new
1523 <Option>-O*</Option> option, and you may have to recompile a large chunk of all
1524 importing modules before your program can again be run
1525 safely (see <XRef LinkEnd="recomp">).
1526 </Para>
1527
1528 <Para>
1529 <VariableList>
1530
1531 <VarListEntry>
1532 <Term>No <Option>-O*</Option>-type option specified:</Term>
1533 <IndexTerm><Primary>-O* not specified</Primary></IndexTerm>
1534 <ListItem>
1535 <Para>
1536 This is taken to mean: &ldquo;Please compile quickly; I'm not over-bothered
1537 about compiled-code quality.&rdquo;  So, for example: <Command>ghc -c Foo.hs</Command>
1538 </Para>
1539 </ListItem>
1540 </VarListEntry>
1541 <VarListEntry>
1542 <Term><Option>-O</Option> or <Option>-O1</Option>:</Term>
1543 <IndexTerm><Primary>-O option</Primary></IndexTerm>
1544 <IndexTerm><Primary>-O1 option</Primary></IndexTerm>
1545 <IndexTerm><Primary>optimise</Primary><secondary>normally</secondary></IndexTerm>
1546 <ListItem>
1547 <Para>
1548 Means: &ldquo;Generate good-quality code without taking too long about
1549 it.&rdquo; Thus, for example: <Command>ghc -c -O Main.lhs</Command>
1550 </Para>
1551 </ListItem>
1552 </VarListEntry>
1553 <VarListEntry>
1554 <Term><Option>-O2</Option>:</Term>
1555 <IndexTerm><Primary>-O2 option</Primary></IndexTerm>
1556 <IndexTerm><Primary>optimise</Primary><secondary>aggressively</secondary></IndexTerm>
1557 <ListItem>
1558 <Para>
1559 Means: &ldquo;Apply every non-dangerous optimisation, even if it means
1560 significantly longer compile times.&rdquo;
1561 </Para>
1562
1563 <Para>
1564 The avoided &ldquo;dangerous&rdquo; optimisations are those that can make
1565 runtime or space <Emphasis>worse</Emphasis> if you're unlucky.  They are
1566 normally turned on or off individually.
1567 </Para>
1568
1569 <Para>
1570 At the moment, <Option>-O2</Option> is <Emphasis>unlikely</Emphasis> to produce
1571 better code than <Option>-O</Option>.
1572 </Para>
1573 </ListItem>
1574 </VarListEntry>
1575 <VarListEntry>
1576 <Term><Option>-O2-for-C</Option>:</Term>
1577 <IndexTerm><Primary>-O2-for-C option</Primary></IndexTerm>
1578 <IndexTerm><Primary>gcc, invoking with -O2</Primary></IndexTerm>
1579 <ListItem>
1580 <Para>
1581 Says to run GCC with <Option>-O2</Option>, which may be worth a few percent in
1582 execution speed.  Don't forget <Option>-fvia-C</Option>, lest you use the native-code
1583 generator and bypass GCC altogether!
1584 </Para>
1585 </ListItem>
1586 </VarListEntry>
1587 <VarListEntry>
1588 <Term><Option>-Onot</Option>:</Term>
1589 <IndexTerm><Primary>-Onot option</Primary></IndexTerm>
1590 <IndexTerm><Primary>optimising, reset</Primary></IndexTerm>
1591 <ListItem>
1592 <Para>
1593 This option will make GHC &ldquo;forget&rdquo; any
1594 <Option>-O</Option>ish options it has seen so far.  Sometimes useful;
1595 for example: <Command>make all
1596 EXTRA&lowbar;HC&lowbar;OPTS=-Onot</Command>.
1597 </Para>
1598 </ListItem>
1599 </VarListEntry>
1600 <VarListEntry>
1601 <Term><Option>-Ofile &lt;file&gt;</Option>:</Term>
1602 <IndexTerm><Primary>-Ofile &lt;file&gt; option</Primary></IndexTerm>
1603 <IndexTerm><Primary>optimising, customised</Primary></IndexTerm>
1604 <ListItem>
1605 <Para>
1606 For those who need <Emphasis>absolute</Emphasis> control over
1607 <Emphasis>exactly</Emphasis> what options are used (e.g., compiler
1608 writers, sometimes :-), a list of options can be put in a file and
1609 then slurped in with <Option>-Ofile</Option>.
1610 </Para>
1611
1612 <Para>
1613 In that file, comments are of the
1614 <Literal>&num;</Literal>-to-end-of-line variety; blank lines and most
1615 whitespace is ignored.
1616 </Para>
1617
1618 <Para>
1619 Please ask if you are baffled and would like an example of <Option>-Ofile</Option>!
1620 </Para>
1621 </ListItem>
1622 </VarListEntry>
1623 </VariableList>
1624 </Para>
1625
1626 <Para>
1627 At Glasgow, we don't use a <Option>-O*</Option> flag for day-to-day work.  We use
1628 <Option>-O</Option> to get respectable speed; e.g., when we want to measure
1629 something.  When we want to go for broke, we tend to use <Option>-O -fvia-C
1630 -O2-for-C</Option> (and we go for lots of coffee breaks).
1631 </Para>
1632
1633 <Para>
1634 The easiest way to see what <Option>-O</Option> (etc.) &ldquo;really mean&rdquo; is to run with
1635 <Option>-v</Option>, then stand back in amazement.  Alternatively, just look at the
1636 <Literal>HsC&lowbar;minus&lt;blah&gt;</Literal> lists in the GHC driver script.
1637 </Para>
1638
1639 </Sect2>
1640
1641 <Sect2>
1642 <Title><Option>-f*</Option>: platform-independent flags</Title>
1643
1644 <Para>
1645 <IndexTerm><Primary>-f* options (GHC)</Primary></IndexTerm>
1646 <IndexTerm><Primary>-fno-* options (GHC)</Primary></IndexTerm>
1647 </Para>
1648
1649 <Para>
1650 Flags can be turned <Emphasis>off</Emphasis> individually.  (NB: I hope you have a
1651 good reason for doing this&hellip;) To turn off the <Option>-ffoo</Option> flag, just use
1652 the <Option>-fno-foo</Option> flag.<IndexTerm><Primary>-fno-&lt;opt&gt; anti-option</Primary></IndexTerm> So, for
1653 example, you can say <Option>-O2 -fno-strictness</Option>, which will then drop out
1654 any running of the strictness analyser.
1655 </Para>
1656
1657 <Para>
1658 The options you are most likely to want to turn off are:
1659
1660 <ItemizedList>
1661 <ListItem>
1662
1663 <Para>
1664 <Option>-fno-strictness</Option><IndexTerm><Primary>-fno-strictness option</Primary></IndexTerm> (strictness
1665 analyser, because it is sometimes slow),
1666 </Para>
1667 </ListItem>
1668 <ListItem>
1669
1670 <Para>
1671 <Option>-fno-specialise</Option><IndexTerm><Primary>-fno-specialise option</Primary></IndexTerm> (automatic
1672 specialisation of overloaded functions, because it can make your code
1673 bigger) (US spelling also accepted), and
1674 </Para>
1675 </ListItem>
1676 <ListItem>
1677
1678 <Para>
1679 <Option>-fno-cpr-analyse</Option><IndexTerm><Primary>-fno-cpr-analyse option</Primary></IndexTerm> switches off the CPR (constructed product
1680 result) analyser.
1681 </Para>
1682 </ListItem>
1683
1684 </ItemizedList>
1685
1686 </Para>
1687
1688 <Para>
1689 Should you wish to turn individual flags <Emphasis>on</Emphasis>, you are advised
1690 to use the <Option>-Ofile</Option> option, described above.  Because the order in
1691 which optimisation passes are run is sometimes crucial, it's quite
1692 hard to do with command-line options.
1693 </Para>
1694
1695 <Para>
1696 Here are some &ldquo;dangerous&rdquo; optimisations you <Emphasis>might</Emphasis> want to try:
1697 <VariableList>
1698
1699 <VarListEntry>
1700 <Term><Option>-fvia-C</Option>:</Term>
1701 <ListItem>
1702 <Para>
1703 <IndexTerm><Primary>-fvia-C option</Primary></IndexTerm>
1704 <IndexTerm><Primary>native code generator, turning off</Primary></IndexTerm>
1705 </Para>
1706
1707 <Para>
1708 Compile via C, and don't use the native-code generator.  (There are many
1709 cases when GHC does this on its own.) You might pick up a little bit of
1710 speed by compiling via C (e.g. for floating-point intensive code on Intel).
1711 If you use <Function>&lowbar;casm&lowbar;</Function>s (which are utterly
1712 deprecated), you probably <Emphasis>have</Emphasis> to use
1713 <Option>-fvia-C</Option>.
1714 </Para>
1715
1716 <Para>
1717 The lower-case incantation, <Option>-fvia-c</Option>, is synonymous.
1718 </Para>
1719
1720 <Para>
1721 Compiling via C will probably be slower (in compilation time) than
1722 using GHC's native code generator.
1723 </Para>
1724 </ListItem>
1725 </VarListEntry>
1726 <VarListEntry>
1727 <Term><Option>-funfolding-interface-threshold&lt;n&gt;</Option>:</Term>
1728 <ListItem>
1729 <Para>
1730 <IndexTerm><Primary>-funfolding-interface-threshold option</Primary></IndexTerm>
1731 <IndexTerm><Primary>inlining, controlling</Primary></IndexTerm>
1732 <IndexTerm><Primary>unfolding, controlling</Primary></IndexTerm>
1733 (Default: 30) By raising or lowering this number, you can raise or
1734 lower the amount of pragmatic junk that gets spewed into interface
1735 files.  (An unfolding has a &ldquo;size&rdquo; that reflects the cost in terms
1736 of &ldquo;code bloat&rdquo; of expanding that unfolding in another module.  A
1737 bigger function would be assigned a bigger cost.)
1738 </Para>
1739 </ListItem>
1740 </VarListEntry>
1741 <VarListEntry>
1742 <Term><Option>-funfolding-creation-threshold&lt;n&gt;</Option>:</Term>
1743 <ListItem>
1744 <Para>
1745 <IndexTerm><Primary>-funfolding-creation-threshold option</Primary></IndexTerm>
1746 <IndexTerm><Primary>inlining, controlling</Primary></IndexTerm>
1747 <IndexTerm><Primary>unfolding, controlling</Primary></IndexTerm>
1748 (Default: 30) This option is similar to
1749 <Option>-funfolding-interface-threshold</Option>, except that it governs unfoldings
1750 within a single module.  Increasing this figure is more likely to
1751 result in longer compile times than faster code.  The next option is
1752 more useful:
1753 </Para>
1754 </ListItem>
1755 </VarListEntry>
1756 <VarListEntry>
1757 <Term><Option>-funfolding-use-threshold&lt;n&gt;</Option>:</Term>
1758 <ListItem>
1759 <Para>
1760 <IndexTerm><Primary>-funfolding-use-threshold option</Primary></IndexTerm>
1761 <IndexTerm><Primary>inlining, controlling</Primary></IndexTerm>
1762 <IndexTerm><Primary>unfolding, controlling</Primary></IndexTerm>
1763 (Default: 8) This is the magic cut-off figure for unfolding: below
1764 this size, a function definition will be unfolded at the call-site,
1765 any bigger and it won't.  The size computed for a function depends on
1766 two things: the actual size of the expression minus any discounts that
1767 apply (see <Option>-funfolding-con-discount</Option>).
1768 </Para>
1769 </ListItem>
1770 </VarListEntry>
1771 <VarListEntry>
1772 <Term><Option>-funfolding-con-discount&lt;n&gt;</Option>:</Term>
1773 <ListItem>
1774 <Para>
1775 <IndexTerm><Primary>-funfolding-con-discount option</Primary></IndexTerm>
1776 <IndexTerm><Primary>inlining, controlling</Primary></IndexTerm>
1777 <IndexTerm><Primary>unfolding, controlling</Primary></IndexTerm>
1778 (Default: 2) If the compiler decides that it can eliminate some
1779 computation by performing an unfolding, then this is a discount factor
1780 that it applies to the funciton size before deciding whether to unfold
1781 it or not.
1782 </Para>
1783
1784 <Para>
1785 OK, folks, these magic numbers `30', `8', and '2' are mildly
1786 arbitrary; they are of the &ldquo;seem to be OK&rdquo; variety.  The `8' is the
1787 more critical one; it's what determines how eager GHC is about
1788 expanding unfoldings.
1789 </Para>
1790 </ListItem>
1791 </VarListEntry>
1792 <VarListEntry>
1793 <Term><Option>-funbox-strict-fields</Option>:</Term>
1794 <ListItem>
1795 <Para>
1796 <IndexTerm><Primary>-funbox-strict-fields option</Primary></IndexTerm>
1797 <IndexTerm><Primary>strict constructor fields</Primary></IndexTerm>
1798 <IndexTerm><Primary>constructor fields, strict</Primary></IndexTerm>
1799 </Para>
1800
1801 <Para>
1802 This option causes all constructor fields which are marked strict
1803 (i.e. &ldquo;!&rdquo;) to be unboxed or unpacked if possible.  For example:
1804 </Para>
1805
1806 <Para>
1807
1808 <ProgramListing>
1809 data T = T !Float !Float
1810 </ProgramListing>
1811
1812 </Para>
1813
1814 <Para>
1815 will create a constructor <Literal>T</Literal> containing two unboxed floats if the
1816 <Option>-funbox-strict-fields</Option> flag is given.  This may not always be an
1817 optimisation: if the <Function>T</Function> constructor is scrutinised and the floats
1818 passed to a non-strict function for example, they will have to be
1819 reboxed (this is done automatically by the compiler).
1820 </Para>
1821
1822 <Para>
1823 This option should only be used in conjunction with <Option>-O</Option>, in order to
1824 expose unfoldings to the compiler so the reboxing can be removed as
1825 often as possible.  For example:
1826 </Para>
1827
1828 <Para>
1829
1830 <ProgramListing>
1831 f :: T -&#62; Float
1832 f (T f1 f2) = f1 + f2
1833 </ProgramListing>
1834
1835 </Para>
1836
1837 <Para>
1838 The compiler will avoid reboxing <Function>f1</Function> and <Function>f2</Function> by inlining <Function>+</Function> on
1839 floats, but only when <Option>-O</Option> is on.
1840 </Para>
1841
1842 <Para>
1843 Any single-constructor data is eligible for unpacking; for example
1844 </Para>
1845
1846 <Para>
1847
1848 <ProgramListing>
1849 data T = T !(Int,Int)
1850 </ProgramListing>
1851
1852 </Para>
1853
1854 <Para>
1855 will store the two <Literal>Int</Literal>s directly in the <Function>T</Function> constructor, by flattening
1856 the pair.  Multi-level unpacking is also supported:
1857 </Para>
1858
1859 <Para>
1860
1861 <ProgramListing>
1862 data T = T !S
1863 data S = S !Int !Int
1864 </ProgramListing>
1865
1866 </Para>
1867
1868 <Para>
1869 will store two unboxed <Literal>Int&num;</Literal>s directly in the <Function>T</Function> constructor.
1870 </Para>
1871 </ListItem>
1872 </VarListEntry>
1873 <VarListEntry>
1874 <Term><Option>-fsemi-tagging</Option>:</Term>
1875 <ListItem>
1876 <Para>
1877 This option (which <Emphasis>does not work</Emphasis> with the native-code generator)
1878 tells the compiler to add extra code to test for already-evaluated
1879 values.  You win if you have lots of such values during a run of your
1880 program, you lose otherwise.  (And you pay in extra code space.)
1881 </Para>
1882
1883 <Para>
1884 We have not played with <Option>-fsemi-tagging</Option> enough to recommend it.
1885 (For all we know, it doesn't even work anymore&hellip; Sigh.)
1886 </Para>
1887 </ListItem>
1888 </VarListEntry>
1889 </VariableList>
1890 </Para>
1891
1892 </Sect2>
1893
1894 <Sect2>
1895 <Title><Option>-m*</Option>: platform-specific flags</Title>
1896
1897 <Para>
1898 <IndexTerm><Primary>-m* options (GHC)</Primary></IndexTerm>
1899 <IndexTerm><Primary>platform-specific options</Primary></IndexTerm>
1900 <IndexTerm><Primary>machine-specific options</Primary></IndexTerm>
1901 </Para>
1902
1903 <Para>
1904 Some flags only make sense for particular target platforms.
1905 </Para>
1906
1907 <Para>
1908 <VariableList>
1909
1910 <VarListEntry>
1911 <Term><Option>-mv8</Option>:</Term>
1912 <ListItem>
1913 <Para>
1914 (SPARC machines)<IndexTerm><Primary>-mv8 option (SPARC only)</Primary></IndexTerm>
1915 Means to pass the like-named option to GCC; it says to use the
1916 Version 8 SPARC instructions, notably integer multiply and divide.
1917 The similiar <Option>-m*</Option> GCC options for SPARC also work, actually.
1918 </Para>
1919 </ListItem>
1920 </VarListEntry>
1921 <VarListEntry>
1922 <Term><Option>-mlong-calls</Option>:</Term>
1923 <ListItem>
1924 <Para>
1925 (HPPA machines)<IndexTerm><Primary>-mlong-calls option (HPPA only)</Primary></IndexTerm>
1926 Means to pass the like-named option to GCC.  Required for Very Big
1927 modules, maybe.  (Probably means you're in trouble&hellip;)
1928 </Para>
1929 </ListItem>
1930 </VarListEntry>
1931 <VarListEntry>
1932 <Term><Option>-monly-[32]-regs</Option>:</Term>
1933 <ListItem>
1934 <Para>
1935 (iX86 machines)<IndexTerm><Primary>-monly-N-regs option (iX86 only)</Primary></IndexTerm>
1936 GHC tries to &ldquo;steal&rdquo; four registers from GCC, for performance
1937 reasons; it almost always works.  However, when GCC is compiling some
1938 modules with four stolen registers, it will crash, probably saying:
1939
1940 <Screen>
1941 Foo.hc:533: fixed or forbidden register was spilled.
1942 This may be due to a compiler bug or to impossible asm
1943 statements or clauses.
1944 </Screen>
1945
1946 Just give some registers back with <Option>-monly-N-regs</Option>.  Try `3' first,
1947 then `2'.  If `2' doesn't work, please report the bug to us.
1948 </Para>
1949 </ListItem>
1950 </VarListEntry>
1951 </VariableList>
1952 </Para>
1953
1954 </Sect2>
1955
1956 <Sect2 id="optimise-C-compiler">
1957 <Title>Code improvement by the C compiler.
1958 </Title>
1959
1960 <Para>
1961 <IndexTerm><Primary>optimisation by GCC</Primary></IndexTerm>
1962 <IndexTerm><Primary>GCC optimisation</Primary></IndexTerm>
1963 </Para>
1964
1965 <Para>
1966 The C&nbsp;compiler (GCC) is run with <Option>-O</Option> turned on.  (It has
1967 to be, actually).
1968 </Para>
1969
1970 <Para>
1971 If you want to run GCC with <Option>-O2</Option>&mdash;which may be worth a few
1972 percent in execution speed&mdash;you can give a
1973 <Option>-O2-for-C</Option><IndexTerm><Primary>-O2-for-C option</Primary></IndexTerm> option.
1974 </Para>
1975
1976 </Sect2>
1977
1978 </Sect1>
1979
1980 <Sect1 id="options-phases">
1981 <Title>Options related to a particular phase
1982 </Title>
1983
1984 <Sect2 id="c-pre-processor">
1985 <Title>The C pre-processor
1986 </Title>
1987
1988 <Para>
1989 <IndexTerm><Primary>pre-processing: cpp</Primary></IndexTerm>
1990 <IndexTerm><Primary>C pre-processor options</Primary></IndexTerm>
1991 <IndexTerm><Primary>cpp, pre-processing with</Primary></IndexTerm>
1992 </Para>
1993
1994 <Para>
1995 The C pre-processor <Command>cpp</Command> is run over your Haskell code only if the
1996 <Option>-cpp</Option> option <IndexTerm><Primary>-cpp option</Primary></IndexTerm> is given.  Unless you are
1997 building a large system with significant doses of conditional
1998 compilation, you really shouldn't need it.
1999 <VariableList>
2000
2001 <VarListEntry>
2002 <Term><Option>-D&lt;foo&gt;</Option>:</Term>
2003 <ListItem>
2004 <Para>
2005 <IndexTerm><Primary>-D&lt;name&gt; option</Primary></IndexTerm>
2006 Define macro <Constant>&lt;foo&gt;</Constant> in the usual way.  NB: does <Emphasis>not</Emphasis> affect
2007 <Option>-D</Option> macros passed to the C&nbsp;compiler when compiling via C!  For those,
2008 use the <Option>-optc-Dfoo</Option> hack&hellip; (see <XRef LinkEnd="forcing-options-through">).
2009 </Para>
2010 </ListItem>
2011 </VarListEntry>
2012 <VarListEntry>
2013 <Term><Option>-U&lt;foo&gt;</Option>:</Term>
2014 <ListItem>
2015 <Para>
2016 <IndexTerm><Primary>-U&lt;name&gt; option</Primary></IndexTerm>
2017 Undefine macro <Command>&lt;foo&gt;</Command> in the usual way.
2018 </Para>
2019 </ListItem>
2020 </VarListEntry>
2021 <VarListEntry>
2022 <Term><Option>-I&lt;dir&gt;</Option>:</Term>
2023 <ListItem>
2024 <Para>
2025 <IndexTerm><Primary>-I&lt;dir&gt; option</Primary></IndexTerm>
2026 Specify a directory in which to look for <Literal>&num;include</Literal> files, in
2027 the usual C way.
2028 </Para>
2029 </ListItem>
2030 </VarListEntry>
2031 </VariableList>
2032 </Para>
2033
2034 <Para>
2035 The GHC driver pre-defines several macros when processing Haskell
2036 source code (<Filename>.hs</Filename> or <Filename>.lhs</Filename> files):
2037 </Para>
2038
2039 <Para>
2040 <VariableList>
2041
2042 <VarListEntry>
2043 <Term><Constant>&lowbar;&lowbar;HASKELL98&lowbar;&lowbar;</Constant>:</Term>
2044 <ListItem>
2045 <Para>
2046 <IndexTerm><Primary>&lowbar;&lowbar;HASKELL98&lowbar;&lowbar;</Primary></IndexTerm>
2047 If defined, this means that GHC supports the language defined by the
2048 Haskell 98 report.
2049 </Para>
2050 </ListItem>
2051 </VarListEntry>
2052 <VarListEntry>
2053 <Term><Constant>&lowbar;&lowbar;HASKELL&lowbar;&lowbar;=98</Constant>:</Term>
2054 <ListItem>
2055 <Para>
2056 <IndexTerm><Primary>&lowbar;&lowbar;HASKELL&lowbar;&lowbar;</Primary></IndexTerm>
2057 In GHC 4.04 and later, the <Constant>&lowbar;&lowbar;HASKELL&lowbar;&lowbar;</Constant> macro is defined as having
2058 the value <Constant>98</Constant>.
2059 </Para>
2060 </ListItem>
2061 </VarListEntry>
2062 <VarListEntry>
2063 <Term><Constant>&lowbar;&lowbar;HASKELL1&lowbar;&lowbar;</Constant>:</Term>
2064 <ListItem>
2065 <Para>
2066 <IndexTerm><Primary>&lowbar;&lowbar;HASKELL1&lowbar;&lowbar; macro</Primary></IndexTerm>
2067 If defined to <Emphasis>n</Emphasis>, that means GHC supports the Haskell language
2068 defined in the Haskell report version <Emphasis>1.n</Emphasis>.  Currently 5.  This
2069 macro is deprecated, and will probably disappear in future versions.
2070 </Para>
2071 </ListItem>
2072 </VarListEntry>
2073 <VarListEntry>
2074 <Term><Constant>&lowbar;&lowbar;GLASGOW&lowbar;HASKELL&lowbar;&lowbar;</Constant>:</Term>
2075 <ListItem>
2076 <Para>
2077 <IndexTerm><Primary>&lowbar;&lowbar;GLASGOW&lowbar;HASKELL&lowbar;&lowbar; macro</Primary></IndexTerm>
2078 For version <Emphasis>n</Emphasis> of the GHC system, this will be <Literal>&num;define</Literal>d to
2079 <Emphasis>100n</Emphasis>.  So, for version 4.00, it is 400.
2080 </Para>
2081
2082 <Para>
2083 With any luck, <Constant>&lowbar;&lowbar;GLASGOW&lowbar;HASKELL&lowbar;&lowbar;</Constant> will be undefined in all other
2084 implementations that support C-style pre-processing.
2085 </Para>
2086
2087 <Para>
2088 (For reference: the comparable symbols for other systems are:
2089 <Constant>&lowbar;&lowbar;HUGS&lowbar;&lowbar;</Constant> for Hugs and <Constant>&lowbar;&lowbar;HBC&lowbar;&lowbar;</Constant> for Chalmers.)
2090 </Para>
2091
2092 <Para>
2093 NB. This macro is set when pre-processing both Haskell source and C
2094 source, including the C source generated from a Haskell module
2095 (i.e. <Filename>.hs</Filename>, <Filename>.lhs</Filename>, <Filename>.c</Filename> and <Filename>.hc</Filename> files).
2096 </Para>
2097 </ListItem>
2098 </VarListEntry>
2099 <VarListEntry>
2100 <Term><Constant>&lowbar;&lowbar;CONCURRENT&lowbar;HASKELL&lowbar;&lowbar;</Constant>:</Term>
2101 <ListItem>
2102 <Para>
2103 <IndexTerm><Primary>&lowbar;&lowbar;CONCURRENT&lowbar;HASKELL&lowbar;&lowbar; macro</Primary></IndexTerm>
2104 This symbol is defined when pre-processing Haskell (input) and
2105 pre-processing C (GHC output).  Since GHC from verion 4.00 now
2106 supports concurrent haskell by default, this symbol is always defined.
2107 </Para>
2108 </ListItem>
2109 </VarListEntry>
2110 <VarListEntry>
2111 <Term><Constant>&lowbar;&lowbar;PARALLEL&lowbar;HASKELL&lowbar;&lowbar;</Constant>:</Term>
2112 <ListItem>
2113 <Para>
2114 <IndexTerm><Primary>&lowbar;&lowbar;PARALLEL&lowbar;HASKELL&lowbar;&lowbar; macro</Primary></IndexTerm>
2115 Only defined when <Option>-parallel</Option> is in use!  This symbol is defined when
2116 pre-processing Haskell (input) and pre-processing C (GHC output).
2117 </Para>
2118 </ListItem>
2119 </VarListEntry>
2120 </VariableList>
2121 </Para>
2122
2123 <Para>
2124 Options other than the above can be forced through to the C
2125 pre-processor with the <Option>-opt</Option> flags (see
2126 <XRef LinkEnd="forcing-options-through">).
2127 </Para>
2128
2129 <Para>
2130 A small word of warning: <Option>-cpp</Option> is not friendly to &ldquo;string
2131 gaps&rdquo;.<IndexTerm><Primary>-cpp vs string gaps</Primary></IndexTerm><IndexTerm><Primary>string gaps vs
2132 -cpp</Primary></IndexTerm>.  In other words, strings such as the following:
2133 </Para>
2134
2135 <Para>
2136
2137 <ProgramListing>
2138 strmod = "\
2139 \ p \
2140 \ "
2141 </ProgramListing>
2142
2143 </Para>
2144
2145 <Para>
2146 don't work with <Option>-cpp</Option>; <Filename>/usr/bin/cpp</Filename> elides the
2147 backslash-newline pairs.
2148 </Para>
2149
2150 <Para>
2151 However, it appears that if you add a space at the end of the line,
2152 then <Command>cpp</Command> (at least GNU <Command>cpp</Command> and possibly other <Command>cpp</Command>s)
2153 leaves the backslash-space pairs alone and the string gap works as
2154 expected.
2155 </Para>
2156
2157 </Sect2>
2158
2159 <Sect2 id="options-C-compiler">
2160 <Title>Options affecting the C compiler (if applicable)
2161 </Title>
2162
2163 <Para>
2164 <IndexTerm><Primary>include-file options</Primary></IndexTerm>
2165 <IndexTerm><Primary>C compiler options</Primary></IndexTerm>
2166 <IndexTerm><Primary>GCC options</Primary></IndexTerm>
2167 </Para>
2168
2169 <Para>
2170 At the moment, quite a few common C-compiler options are passed on
2171 quietly to the C compilation of Haskell-compiler-generated C files.
2172 THIS MAY CHANGE.  Meanwhile, options so sent are:
2173 </Para>
2174
2175 <Para>
2176
2177 <InformalTable>
2178 <TGroup Cols="2">
2179 <ColSpec Align="Left" Colsep="0">
2180 <ColSpec Align="Left" Colsep="0">
2181 <TBody>
2182 <Row>
2183 <Entry><Option>-ansi</Option> </Entry>
2184 <Entry> do ANSI C (not K&amp;R) </Entry>
2185 </Row>
2186 <Row>
2187 <Entry>
2188 <Option>-pedantic</Option> </Entry>
2189 <Entry> be so</Entry>
2190 </Row>
2191 <Row>
2192 <Entry>
2193 <Option>-dgcc-lint</Option> </Entry>
2194 <Entry> (hack) short for &ldquo;make GCC very paranoid&rdquo;</Entry>
2195 </Row>
2196
2197 </TBody>
2198
2199 </TGroup>
2200 </InformalTable>
2201
2202 <IndexTerm><Primary>-ansi option (for GCC)</Primary></IndexTerm>
2203 <IndexTerm><Primary>-pedantic option (for GCC)</Primary></IndexTerm>
2204 <IndexTerm><Primary>-dgcc-lint option (GCC paranoia)</Primary></IndexTerm>
2205 </Para>
2206
2207 <Para>
2208 If you are compiling with lots of foreign calls, you may need to
2209 tell the C&nbsp;compiler about some <Literal>&num;include</Literal> files.  There is no real
2210 pretty way to do this, but you can use this hack from the
2211 command-line:
2212 </Para>
2213
2214 <Para>
2215
2216 <Screen>
2217 % ghc -c '-#include &#60;X/Xlib.h&#62;' Xstuff.lhs
2218 </Screen>
2219
2220 </Para>
2221
2222 </Sect2>
2223
2224 <Sect2 id="options-linker">
2225 <Title>Linking and consistency-checking
2226 </Title>
2227
2228 <Para>
2229 <IndexTerm><Primary>linker options</Primary></IndexTerm>
2230 <IndexTerm><Primary>ld options</Primary></IndexTerm>
2231 </Para>
2232
2233 <Para>
2234 GHC has to link your code with various libraries, possibly including:
2235 user-supplied, GHC-supplied, and system-supplied (<Option>-lm</Option> math
2236 library, for example).
2237 </Para>
2238
2239 <Para>
2240 <VariableList>
2241
2242 <VarListEntry>
2243 <Term><Option>-l&lt;FOO&gt;</Option>:</Term>
2244 <ListItem>
2245 <Para>
2246 <IndexTerm><Primary>-l&lt;lib&gt; option</Primary></IndexTerm>
2247 Link in a library named <Filename>lib&lt;FOO&gt;.a</Filename> which resides somewhere on the
2248 library directories path.
2249 </Para>
2250
2251 <Para>
2252 Because of the sad state of most UNIX linkers, the order of such
2253 options does matter.  Thus: <Command>ghc -lbar *.o</Command> is almost certainly
2254 wrong, because it will search <Filename>libbar.a</Filename> <Emphasis>before</Emphasis> it has
2255 collected unresolved symbols from the <Filename>*.o</Filename> files.
2256 <Command>ghc *.o -lbar</Command> is probably better.
2257 </Para>
2258
2259 <Para>
2260 The linker will of course be informed about some GHC-supplied
2261 libraries automatically; these are:
2262 </Para>
2263
2264 <Para>
2265
2266 <InformalTable>
2267 <TGroup Cols="2">
2268 <ColSpec Align="Left" Colsep="0">
2269 <ColSpec Align="Left" Colsep="0">
2270 <TBody>
2271 <Row>
2272 <Entry><Emphasis>-l equivalent</Emphasis> </Entry>
2273 <Entry> <Emphasis>description</Emphasis> </Entry>
2274 </Row>
2275
2276 <Row>
2277 <Entry>
2278 <Option>-lHSrts,-lHSclib</Option> </Entry>
2279 <Entry> basic runtime libraries </Entry>
2280 </Row>
2281 <Row>
2282 <Entry>
2283 <Option>-lHS</Option> </Entry>
2284 <Entry> standard Prelude library </Entry>
2285 </Row>
2286 <Row>
2287 <Entry>
2288 <Option>-lHS&lowbar;cbits</Option> </Entry>
2289 <Entry> C support code for standard Prelude library </Entry>
2290 </Row>
2291 <Row>
2292 <Entry>
2293 <Option>-lgmp</Option> </Entry>
2294 <Entry> GNU multi-precision library (for Integers)</Entry>
2295 </Row>
2296
2297 </TBody>
2298
2299 </TGroup>
2300 </InformalTable>
2301
2302 </Para>
2303
2304 <Para>
2305 <IndexTerm><Primary>-lHS library</Primary></IndexTerm>
2306 <IndexTerm><Primary>-lHS&lowbar;cbits library</Primary></IndexTerm>
2307 <IndexTerm><Primary>-lHSrts library</Primary></IndexTerm>
2308 <IndexTerm><Primary>-lgmp library</Primary></IndexTerm>
2309 </Para>
2310 </ListItem>
2311 </VarListEntry>
2312 <VarListEntry>
2313 <Term><Option>-package &lt;name&gt;</Option>:</Term>
2314 <ListItem>
2315 <Para>
2316 <IndexTerm><Primary>-package &lt;name&gt; option</Primary></IndexTerm>
2317 </Para>
2318
2319 <Para>
2320 If you are using a Haskell &ldquo;system library&rdquo; (e.g., the POSIX
2321 library), just use the <Option>-package posix</Option> option, and the correct code
2322 should be linked in.
2323 </Para>
2324 </ListItem>
2325 </VarListEntry>
2326 <VarListEntry>
2327 <Term><Option>-L&lt;dir&gt;</Option>:</Term>
2328 <ListItem>
2329 <Para>
2330 <IndexTerm><Primary>-L&lt;dir&gt; option</Primary></IndexTerm>
2331 Where to find user-supplied libraries&hellip;  Prepend the directory
2332 <Filename>&lt;dir&gt;</Filename> to the library directories path.
2333 </Para>
2334 </ListItem>
2335 </VarListEntry>
2336 <VarListEntry>
2337 <Term><Option>-static</Option>:</Term>
2338 <ListItem>
2339 <Para>
2340 <IndexTerm><Primary>-static option</Primary></IndexTerm>
2341 Tell the linker to avoid shared libraries.
2342 </Para>
2343 </ListItem>
2344 </VarListEntry>
2345 <VarListEntry>
2346 <Term><Option>-no-link-chk</Option> and <Option>-link-chk</Option>:</Term>
2347 <ListItem>
2348 <Para>
2349 <IndexTerm><Primary>-no-link-chk option</Primary></IndexTerm>
2350 <IndexTerm><Primary>-link-chk option</Primary></IndexTerm>
2351 <IndexTerm><Primary>consistency checking of executables</Primary></IndexTerm>
2352 By default, immediately after linking an executable, GHC verifies that
2353 the pieces that went into it were compiled with compatible flags; a
2354 &ldquo;consistency check&rdquo;.
2355 (This is to avoid mysterious failures caused by non-meshing of
2356 incompatibly-compiled programs; e.g., if one <Filename>.o</Filename> file was compiled
2357 for a parallel machine and the others weren't.)  You may turn off this
2358 check with <Option>-no-link-chk</Option>.  You can turn it (back) on with
2359 <Option>-link-chk</Option> (the default).
2360 </Para>
2361 </ListItem>
2362 </VarListEntry>
2363 <VarListEntry>
2364 <Term><Option>-no-hs-main</Option>:</Term>
2365 <ListItem>
2366 <Para>
2367 <IndexTerm><Primary>-no-hs-main option</Primary></IndexTerm>
2368 <IndexTerm><Primary>linking Haskell libraries with foreign code</Primary></IndexTerm>
2369 </Para>
2370
2371 <Para>
2372 In the event you want to include ghc-compiled code as part of another
2373 (non-Haskell) program, the RTS will not be supplying its definition of
2374 <Function>main()</Function> at link-time, you will have to. To signal that to the
2375 driver script when linking, use <Option>-no-hs-main</Option>.
2376 </Para>
2377
2378 <Para>
2379 Notice that since the command-line passed to the linker is rather
2380 involved, you probably want to use the ghc driver script to do the
2381 final link of your `mixed-language' application. This is not a
2382 requirement though, just try linking once with <Option>-v</Option> on to see what
2383 options the driver passes through to the linker.
2384 </Para>
2385 </ListItem>
2386 </VarListEntry>
2387 </VariableList>
2388 </Para>
2389
2390 </Sect2>
2391
2392 </Sect1>
2393
2394 <Sect1 id="sec-using-concurrent">
2395 <Title>Using Concurrent Haskell</Title>
2396
2397 <Para>
2398 <IndexTerm><Primary>Concurrent Haskell&mdash;use</Primary></IndexTerm>
2399 </Para>
2400
2401 <Para>
2402 GHC (as of version 4.00) supports Concurrent Haskell by default,
2403 without requiring a special option or libraries compiled in a certain
2404 way.  To get access to the support libraries for Concurrent Haskell
2405 (i.e. <Literal>Concurrent</Literal> and friends), use the
2406 <Option>-package concurrent</Option> option.
2407 </Para>
2408
2409 <Para>
2410 Three RTS options are provided for modifying the behaviour of the
2411 threaded runtime system.  See the descriptions of
2412 <Option>-C[&lt;us&gt;]</Option>, <Option>-q</Option>, and
2413 <Option>-t&lt;num&gt;</Option> in <XRef LinkEnd="parallel-rts-opts">.
2414 </Para>
2415
2416 <Para>
2417 Concurrent Haskell is described in more detail in <XRef
2418 LinkEnd="sec-Concurrent">.
2419 </Para>
2420
2421 </Sect1>
2422
2423 <Sect1 id="sec-using-parallel">
2424 <Title>Using Parallel Haskell</Title>
2425
2426 <Para>
2427 <IndexTerm><Primary>Parallel Haskell&mdash;use</Primary></IndexTerm>
2428 </Para>
2429
2430 <Para>
2431 &lsqb;You won't be able to execute parallel Haskell programs unless PVM3
2432 (Parallel Virtual Machine, version 3) is installed at your site.]
2433 </Para>
2434
2435 <Para>
2436 To compile a Haskell program for parallel execution under PVM, use the
2437 <Option>-parallel</Option> option,<IndexTerm><Primary>-parallel
2438 option</Primary></IndexTerm> both when compiling <Emphasis>and
2439 linking</Emphasis>.  You will probably want to <Literal>import
2440 Parallel</Literal> into your Haskell modules.
2441 </Para>
2442
2443 <Para>
2444 To run your parallel program, once PVM is going, just invoke it
2445 &ldquo;as normal&rdquo;.  The main extra RTS option is
2446 <Option>-N&lt;n&gt;</Option>, to say how many PVM
2447 &ldquo;processors&rdquo; your program to run on.  (For more details of
2448 all relevant RTS options, please see <XRef
2449 LinkEnd="parallel-rts-opts">.)
2450 </Para>
2451
2452 <Para>
2453 In truth, running Parallel Haskell programs and getting information
2454 out of them (e.g., parallelism profiles) is a battle with the vagaries of
2455 PVM, detailed in the following sections.
2456 </Para>
2457
2458 <Sect2>
2459 <Title>Dummy's guide to using PVM</Title>
2460
2461 <Para>
2462 <IndexTerm><Primary>PVM, how to use</Primary></IndexTerm>
2463 <IndexTerm><Primary>Parallel Haskell&mdash;PVM use</Primary></IndexTerm>
2464 Before you can run a parallel program under PVM, you must set the
2465 required environment variables (PVM's idea, not ours); something like,
2466 probably in your <Filename>.cshrc</Filename> or equivalent:
2467
2468 <ProgramListing>
2469 setenv PVM_ROOT /wherever/you/put/it
2470 setenv PVM_ARCH `$PVM_ROOT/lib/pvmgetarch`
2471 setenv PVM_DPATH $PVM_ROOT/lib/pvmd
2472 </ProgramListing>
2473
2474 </Para>
2475
2476 <Para>
2477 Creating and/or controlling your &ldquo;parallel machine&rdquo; is a purely-PVM
2478 business; nothing specific to Parallel Haskell.
2479 </Para>
2480
2481 <Para>
2482 You use the <Command>pvm</Command><IndexTerm><Primary>pvm command</Primary></IndexTerm> command to start PVM on your
2483 machine.  You can then do various things to control/monitor your
2484 &ldquo;parallel machine;&rdquo; the most useful being:
2485 </Para>
2486
2487 <Para>
2488 <InformalTable>
2489 <TGroup Cols=2>
2490 <ColSpec Align="Left">
2491 <TBody>
2492
2493 <Row>
2494 <Entry><KeyCombo><KeyCap>Control</KeyCap><KeyCap>D</KeyCap></KeyCombo></Entry>
2495 <Entry>exit <Command>pvm</Command>, leaving it running</Entry>
2496 </Row>
2497
2498 <Row>
2499 <Entry><Command>halt</Command></Entry>
2500 <Entry>kill off this &ldquo;parallel machine&rdquo; &amp; exit</Entry>
2501 </Row>
2502
2503 <Row>
2504 <Entry><Command>add &lt;host&gt;</Command></Entry>
2505 <Entry>add <Command>&lt;host&gt;</Command> as a processor</Entry>
2506 </Row>
2507
2508 <Row>
2509 <Entry><Command>delete &lt;host&gt;</Command></Entry>
2510 <Entry>delete <Command>&lt;host&gt;</Command></Entry>
2511 </Row>
2512
2513 <Row>
2514 <Entry><Command>reset</Command></Entry>
2515 <Entry>kill what's going, but leave PVM up</Entry>
2516 </Row>
2517
2518 <Row>
2519 <Entry><Command>conf</Command></Entry>
2520 <Entry>list the current configuration</Entry>
2521 </Row>
2522
2523 <Row>
2524 <Entry><Command>ps</Command></Entry>
2525 <Entry>report processes' status</Entry>
2526 </Row>
2527
2528 <Row>
2529 <Entry><Command>pstat &lt;pid&gt;</Command></Entry>
2530 <Entry>status of a particular process</Entry>
2531 </Row>
2532
2533 </TBody>
2534 </TGroup>
2535 </InformalTable>
2536 </Para>
2537
2538 <Para>
2539 The PVM documentation can tell you much, much more about <Command>pvm</Command>!
2540 </Para>
2541
2542 </Sect2>
2543
2544 <Sect2>
2545 <Title>Parallelism profiles</Title>
2546
2547 <Para>
2548 <IndexTerm><Primary>parallelism profiles</Primary></IndexTerm>
2549 <IndexTerm><Primary>profiles, parallelism</Primary></IndexTerm>
2550 <IndexTerm><Primary>visualisation tools</Primary></IndexTerm>
2551 </Para>
2552
2553 <Para>
2554 With Parallel Haskell programs, we usually don't care about the
2555 results&mdash;only with &ldquo;how parallel&rdquo; it was!  We want pretty pictures.
2556 </Para>
2557
2558 <Para>
2559 Parallelism profiles (&agrave; la <Command>hbcpp</Command>) can be generated with the
2560 <Option>-q</Option><IndexTerm><Primary>-q RTS option (concurrent, parallel)</Primary></IndexTerm> RTS option.  The
2561 per-processor profiling info is dumped into files named
2562 <Filename>&lt;full-path&gt;&lt;program&gt;.gr</Filename>.  These are then munged into a PostScript picture,
2563 which you can then display.  For example, to run your program
2564 <Filename>a.out</Filename> on 8 processors, then view the parallelism profile, do:
2565 </Para>
2566
2567 <Para>
2568
2569 <Screen>
2570 % ./a.out +RTS -N8 -q
2571 % grs2gr *.???.gr &#62; temp.gr     # combine the 8 .gr files into one
2572 % gr2ps -O temp.gr              # cvt to .ps; output in temp.ps
2573 % ghostview -seascape temp.ps   # look at it!
2574 </Screen>
2575
2576 </Para>
2577
2578 <Para>
2579 The scripts for processing the parallelism profiles are distributed
2580 in <Filename>ghc/utils/parallel/</Filename>.
2581 </Para>
2582
2583 </Sect2>
2584
2585 <Sect2>
2586 <Title>Other useful info about running parallel programs</Title>
2587
2588 <Para>
2589 The &ldquo;garbage-collection statistics&rdquo; RTS options can be useful for
2590 seeing what parallel programs are doing.  If you do either
2591 <Option>+RTS -Sstderr</Option><IndexTerm><Primary>-Sstderr RTS option</Primary></IndexTerm> or <Option>+RTS -sstderr</Option>, then
2592 you'll get mutator, garbage-collection, etc., times on standard
2593 error. The standard error of all PE's other than the `main thread'
2594 appears in <Filename>/tmp/pvml.nnn</Filename>, courtesy of PVM.
2595 </Para>
2596
2597 <Para>
2598 Whether doing <Option>+RTS -Sstderr</Option> or not, a handy way to watch
2599 what's happening overall is: <Command>tail -f /tmp/pvml.nnn</Command>.
2600 </Para>
2601
2602 </Sect2>
2603
2604 <Sect2 id="parallel-rts-opts">
2605 <Title>RTS options for Concurrent/Parallel Haskell
2606 </Title>
2607
2608 <Para>
2609 <IndexTerm><Primary>RTS options, concurrent</Primary></IndexTerm>
2610 <IndexTerm><Primary>RTS options, parallel</Primary></IndexTerm>
2611 <IndexTerm><Primary>Concurrent Haskell&mdash;RTS options</Primary></IndexTerm>
2612 <IndexTerm><Primary>Parallel Haskell&mdash;RTS options</Primary></IndexTerm>
2613 </Para>
2614
2615 <Para>
2616 Besides the usual runtime system (RTS) options
2617 (<XRef LinkEnd="runtime-control">), there are a few options particularly
2618 for concurrent/parallel execution.
2619 </Para>
2620
2621 <Para>
2622 <VariableList>
2623
2624 <VarListEntry>
2625 <Term><Option>-N&lt;N&gt;</Option>:</Term>
2626 <ListItem>
2627 <Para>
2628 <IndexTerm><Primary>-N&lt;N&gt; RTS option (parallel)</Primary></IndexTerm>
2629 (PARALLEL ONLY) Use <Literal>&lt;N&gt;</Literal> PVM processors to run this program;
2630 the default is 2.
2631 </Para>
2632 </ListItem>
2633 </VarListEntry>
2634 <VarListEntry>
2635 <Term><Option>-C[&lt;us&gt;]</Option>:</Term>
2636 <ListItem>
2637 <Para>
2638 <IndexTerm><Primary>-C&lt;us&gt; RTS option</Primary></IndexTerm>
2639 Sets the context switch interval to <Literal>&lt;us&gt;</Literal> microseconds.  A context
2640 switch will occur at the next heap allocation after the timer expires.
2641 With <Option>-C0</Option> or <Option>-C</Option>, context switches will occur as often as
2642 possible (at every heap allocation).  By default, context switches
2643 occur every 10 milliseconds.  Note that many interval timers are only
2644 capable of 10 millisecond granularity, so the default setting may be
2645 the finest granularity possible, short of a context switch at every
2646 heap allocation.
2647 </Para>
2648
2649 <Para>
2650 &lsqb;NOTE: this option currently has no effect (version 4.00).  Context
2651 switches happen when the current heap block is full, i.e. every 4k of
2652 allocation].
2653 </Para>
2654 </ListItem>
2655 </VarListEntry>
2656 <VarListEntry>
2657 <Term><Option>-q[v]</Option>:</Term>
2658 <ListItem>
2659 <Para>
2660 <IndexTerm><Primary>-q RTS option</Primary></IndexTerm>
2661 (PARALLEL ONLY) Produce a quasi-parallel profile of thread activity,
2662 in the file <FIlename>&lt;program&gt;.qp</FIlename>.  In the style of <Command>hbcpp</Command>, this profile
2663 records the movement of threads between the green (runnable) and red
2664 (blocked) queues.  If you specify the verbose suboption (<Option>-qv</Option>), the
2665 green queue is split into green (for the currently running thread
2666 only) and amber (for other runnable threads).  We do not recommend
2667 that you use the verbose suboption if you are planning to use the
2668 <Command>hbcpp</Command> profiling tools or if you are context switching at every heap
2669 check (with <Option>-C</Option>).
2670 </Para>
2671 </ListItem>
2672 </VarListEntry>
2673 <VarListEntry>
2674 <Term><Option>-t&lt;num&gt;</Option>:</Term>
2675 <ListItem>
2676 <Para>
2677 <IndexTerm><Primary>-t&lt;num&gt; RTS option</Primary></IndexTerm>
2678 (PARALLEL ONLY) Limit the number of concurrent threads per processor
2679 to <Literal>&lt;num&gt;</Literal>.  The default is 32.  Each thread requires slightly over 1K
2680 <Emphasis>words</Emphasis> in the heap for thread state and stack objects.  (For
2681 32-bit machines, this translates to 4K bytes, and for 64-bit machines,
2682 8K bytes.)
2683 </Para>
2684 </ListItem>
2685 </VarListEntry>
2686 <VarListEntry>
2687 <Term><Option>-d</Option>:</Term>
2688 <ListItem>
2689 <Para>
2690 <IndexTerm><Primary>-d RTS option (parallel)</Primary></IndexTerm>
2691 (PARALLEL ONLY) Turn on debugging.  It pops up one xterm (or GDB, or
2692 something&hellip;) per PVM processor.  We use the standard <Command>debugger</Command>
2693 script that comes with PVM3, but we sometimes meddle with the
2694 <Command>debugger2</Command> script.  We include ours in the GHC distribution,
2695 in <Filename>ghc/utils/pvm/</Filename>.
2696 </Para>
2697 </ListItem>
2698 </VarListEntry>
2699 <VarListEntry>
2700 <Term><Option>-e&lt;num&gt;</Option>:</Term>
2701 <ListItem>
2702 <Para>
2703 <IndexTerm><Primary>-e&lt;num&gt; RTS option (parallel)</Primary></IndexTerm>
2704 (PARALLEL ONLY) Limit the number of pending sparks per processor to
2705 <Literal>&lt;num&gt;</Literal>. The default is 100. A larger number may be appropriate if
2706 your program generates large amounts of parallelism initially.
2707 </Para>
2708 </ListItem>
2709 </VarListEntry>
2710 <VarListEntry>
2711 <Term><Option>-Q&lt;num&gt;</Option>:</Term>
2712 <ListItem>
2713 <Para>
2714 <IndexTerm><Primary>-Q&lt;num&gt; RTS option (parallel)</Primary></IndexTerm>
2715 (PARALLEL ONLY) Set the size of packets transmitted between processors
2716 to <Literal>&lt;num&gt;</Literal>. The default is 1024 words. A larger number may be
2717 appropriate if your machine has a high communication cost relative to
2718 computation speed.
2719 </Para>
2720 </ListItem>
2721 </VarListEntry>
2722 </VariableList>
2723 </Para>
2724
2725 </Sect2>
2726
2727 </Sect1>
2728
2729 &runtime
2730 &debug
2731
2732 </Chapter>
2733
2734 <!-- Emacs stuff:
2735      ;;; Local Variables: ***
2736      ;;; mode: sgml ***
2737      ;;; sgml-parent-document: ("users_guide.sgml" "book" "chapter") ***
2738      ;;; End: ***
2739  -->