Add -fextended-default-rules and -fmono-pat-binds
[ghc-hetmet.git] / compiler / main / DriverPipeline.hs
1 -----------------------------------------------------------------------------
2 --
3 -- GHC Driver
4 --
5 -- (c) The University of Glasgow 2005
6 --
7 -----------------------------------------------------------------------------
8
9 module DriverPipeline (
10         -- Run a series of compilation steps in a pipeline, for a
11         -- collection of source files.
12    oneShot, compileFile,
13
14         -- Interfaces for the batch-mode driver
15    staticLink,
16
17         -- Interfaces for the compilation manager (interpreted/batch-mode)
18    preprocess, 
19    compile, CompResult(..), 
20    link, 
21
22         -- DLL building
23    doMkDLL,
24
25   ) where
26
27 #include "HsVersions.h"
28
29 import Packages
30 import HeaderInfo
31 import DriverPhases
32 import SysTools         ( newTempName, addFilesToClean, getSysMan, copy )
33 import qualified SysTools       
34 import HscMain
35 import Finder
36 import HscTypes
37 import Outputable
38 import Module
39 import UniqFM           ( eltsUFM )
40 import ErrUtils
41 import DynFlags
42 import StaticFlags      ( v_Ld_inputs, opt_Static, WayName(..) )
43 import Config
44 import Panic
45 import Util
46 import StringBuffer     ( hGetStringBuffer )
47 import BasicTypes       ( SuccessFlag(..) )
48 import Maybes           ( expectJust )
49 import ParserCoreUtils  ( getCoreModuleName )
50 import SrcLoc           ( unLoc )
51 import SrcLoc           ( Located(..) )
52
53 import EXCEPTION
54 import DATA_IOREF       ( readIORef, writeIORef, IORef )
55 import GLAEXTS          ( Int(..) )
56
57 import Directory
58 import System
59 import IO
60 import Monad
61 import Data.List        ( isSuffixOf )
62 import Maybe
63
64
65 -- ---------------------------------------------------------------------------
66 -- Pre-process
67
68 -- Just preprocess a file, put the result in a temp. file (used by the
69 -- compilation manager during the summary phase).
70 --
71 -- We return the augmented DynFlags, because they contain the result
72 -- of slurping in the OPTIONS pragmas
73
74 preprocess :: DynFlags -> (FilePath, Maybe Phase) -> IO (DynFlags, FilePath)
75 preprocess dflags (filename, mb_phase) =
76   ASSERT2(isJust mb_phase || isHaskellSrcFilename filename, text filename) 
77   runPipeline anyHsc dflags (filename, mb_phase) Temporary Nothing{-no ModLocation-}
78
79 -- ---------------------------------------------------------------------------
80 -- Compile
81
82 -- Compile a single module, under the control of the compilation manager.
83 --
84 -- This is the interface between the compilation manager and the
85 -- compiler proper (hsc), where we deal with tedious details like
86 -- reading the OPTIONS pragma from the source file, and passing the
87 -- output of hsc through the C compiler.
88
89 -- NB.  No old interface can also mean that the source has changed.
90
91 compile :: HscEnv
92         -> ModSummary
93         -> Maybe Linkable       -- Just linkable <=> source unchanged
94         -> Maybe ModIface       -- Old interface, if available
95         -> Int -> Int
96         -> IO CompResult
97
98 data CompResult
99    = CompOK   ModDetails        -- New details
100               ModIface          -- New iface
101               (Maybe Linkable)  -- a Maybe, for the same reasons as hm_linkable
102
103    | CompErrs 
104
105
106 compile hsc_env mod_summary maybe_old_linkable old_iface mod_index nmods = do 
107
108    let dflags0     = ms_hspp_opts mod_summary
109        this_mod    = ms_mod mod_summary
110        src_flavour = ms_hsc_src mod_summary
111
112        have_object 
113                | Just l <- maybe_old_linkable, isObjectLinkable l = True
114                | otherwise = False
115
116    -- FIXME: We need to know whether or not we're recompiling the file. Move this to HscMain?
117    --showPass dflags0 ("Compiling " ++ showModMsg have_object mod_summary)
118
119    let location   = ms_location mod_summary
120    let input_fn   = expectJust "compile:hs" (ml_hs_file location) 
121    let input_fnpp = ms_hspp_file mod_summary
122
123    debugTraceMsg dflags0 2 (text "compile: input file" <+> text input_fnpp)
124
125    let (basename, _) = splitFilename input_fn
126
127   -- We add the directory in which the .hs files resides) to the import path.
128   -- This is needed when we try to compile the .hc file later, if it
129   -- imports a _stub.h file that we created here.
130    let current_dir = directoryOf basename
131        old_paths   = includePaths dflags0
132        dflags      = dflags0 { includePaths = current_dir : old_paths }
133
134    -- Figure out what lang we're generating
135    let hsc_lang = hscMaybeAdjustTarget dflags StopLn src_flavour (hscTarget dflags)
136    -- ... and what the next phase should be
137    let next_phase = hscNextPhase dflags src_flavour hsc_lang
138    -- ... and what file to generate the output into
139    output_fn <- getOutputFilename dflags next_phase 
140                         Temporary basename next_phase (Just location)
141
142    let dflags' = dflags { hscTarget = hsc_lang,
143                                 hscOutName = output_fn,
144                                 extCoreName = basename ++ ".hcr" }
145
146    -- -no-recomp should also work with --make
147    let do_recomp = dopt Opt_RecompChecking dflags
148        source_unchanged = isJust maybe_old_linkable && do_recomp
149        hsc_env' = hsc_env { hsc_dflags = dflags' }
150        object_filename = ml_obj_file location
151
152    let getStubLinkable False = return []
153        getStubLinkable True
154            = do stub_o <- compileStub dflags' this_mod location
155                 return [ DotO stub_o ]
156
157        handleBatch (HscNoRecomp, iface, details)
158            = ASSERT (isJust maybe_old_linkable)
159              return (CompOK details iface maybe_old_linkable)
160        handleBatch (HscRecomp hasStub, iface, details)
161            | isHsBoot src_flavour
162                = return (CompOK details iface Nothing)
163            | otherwise
164                = do stub_unlinked <- getStubLinkable hasStub
165                     (hs_unlinked, unlinked_time) <-
166                         case hsc_lang of
167                           HscNothing
168                             -> return ([], ms_hs_date mod_summary)
169                           -- We're in --make mode: finish the compilation pipeline.
170                           _other
171                             -> do runPipeline StopLn dflags (output_fn,Nothing) Persistent
172                                               (Just location)
173                                   -- The object filename comes from the ModLocation
174                                   o_time <- getModificationTime object_filename
175                                   return ([DotO object_filename], o_time)
176                     let linkable = LM unlinked_time this_mod
177                                    (hs_unlinked ++ stub_unlinked)
178                     return (CompOK details iface (Just linkable))
179
180        handleInterpreted (InteractiveNoRecomp, iface, details)
181            = ASSERT (isJust maybe_old_linkable)
182              return (CompOK details iface maybe_old_linkable)
183        handleInterpreted (InteractiveRecomp hasStub comp_bc, iface, details)
184            = do stub_unlinked <- getStubLinkable hasStub
185                 let hs_unlinked = [BCOs comp_bc]
186                     unlinked_time = ms_hs_date mod_summary
187                   -- Why do we use the timestamp of the source file here,
188                   -- rather than the current time?  This works better in
189                   -- the case where the local clock is out of sync
190                   -- with the filesystem's clock.  It's just as accurate:
191                   -- if the source is modified, then the linkable will
192                   -- be out of date.
193                 let linkable = LM unlinked_time this_mod
194                                (hs_unlinked ++ stub_unlinked)
195                 return (CompOK details iface (Just linkable))
196
197    let runCompiler compiler handle
198            = do mbResult <- compiler hsc_env' mod_summary
199                                      source_unchanged old_iface
200                                      (Just (mod_index, nmods))
201                 case mbResult of
202                   Nothing     -> return CompErrs
203                   Just result -> handle result
204    -- run the compiler
205    case hsc_lang of
206      HscInterpreted | not (isHsBoot src_flavour) -- We can't compile boot files to
207                                                  -- bytecode so don't even try.
208          -> runCompiler hscCompileInteractive handleInterpreted
209      HscNothing
210          -> runCompiler hscCompileNothing handleBatch
211      _other
212          -> runCompiler hscCompileBatch handleBatch
213
214 -----------------------------------------------------------------------------
215 -- stub .h and .c files (for foreign export support)
216
217 -- The _stub.c file is derived from the haskell source file, possibly taking
218 -- into account the -stubdir option.
219 --
220 -- Consequently, we derive the _stub.o filename from the haskell object
221 -- filename.  
222 --
223 -- This isn't necessarily the same as the object filename we
224 -- would get if we just compiled the _stub.c file using the pipeline.
225 -- For example:
226 --
227 --    ghc src/A.hs -odir obj
228 -- 
229 -- results in obj/A.o, and src/A_stub.c.  If we compile src/A_stub.c with
230 -- -odir obj, we would get obj/src/A_stub.o, which is wrong; we want
231 -- obj/A_stub.o.
232
233 compileStub :: DynFlags -> Module -> ModLocation -> IO FilePath
234 compileStub dflags mod location = do
235         let (o_base, o_ext) = splitFilename (ml_obj_file location)
236             stub_o = o_base ++ "_stub" `joinFileExt` o_ext
237
238         -- compile the _stub.c file w/ gcc
239         let (stub_c,_) = mkStubPaths dflags (moduleName mod) location
240         runPipeline StopLn dflags (stub_c,Nothing) 
241                 (SpecificFile stub_o) Nothing{-no ModLocation-}
242
243         return stub_o
244
245
246 -- ---------------------------------------------------------------------------
247 -- Link
248
249 link :: GhcMode                 -- interactive or batch
250      -> DynFlags                -- dynamic flags
251      -> Bool                    -- attempt linking in batch mode?
252      -> HomePackageTable        -- what to link
253      -> IO SuccessFlag
254
255 -- For the moment, in the batch linker, we don't bother to tell doLink
256 -- which packages to link -- it just tries all that are available.
257 -- batch_attempt_linking should only be *looked at* in batch mode.  It
258 -- should only be True if the upsweep was successful and someone
259 -- exports main, i.e., we have good reason to believe that linking
260 -- will succeed.
261
262 #ifdef GHCI
263 link Interactive dflags batch_attempt_linking hpt
264     = do -- Not Linking...(demand linker will do the job)
265          return Succeeded
266 #endif
267
268 link JustTypecheck dflags batch_attempt_linking hpt
269    = return Succeeded
270
271 link BatchCompile dflags batch_attempt_linking hpt
272    | batch_attempt_linking
273    = do 
274         let 
275             home_mod_infos = eltsUFM hpt
276
277             -- the packages we depend on
278             pkg_deps  = concatMap (dep_pkgs . mi_deps . hm_iface) home_mod_infos
279
280             -- the linkables to link
281             linkables = map (expectJust "link".hm_linkable) home_mod_infos
282
283         debugTraceMsg dflags 3 (text "link: linkables are ..." $$ vcat (map ppr linkables))
284
285         -- check for the -no-link flag
286         if isNoLink (ghcLink dflags)
287           then do debugTraceMsg dflags 3 (text "link(batch): linking omitted (-c flag given).")
288                   return Succeeded
289           else do
290
291         let getOfiles (LM _ _ us) = map nameOfObject (filter isObject us)
292             obj_files = concatMap getOfiles linkables
293
294             exe_file = exeFileName dflags
295
296         -- if the modification time on the executable is later than the
297         -- modification times on all of the objects, then omit linking
298         -- (unless the -no-recomp flag was given).
299         e_exe_time <- IO.try $ getModificationTime exe_file
300         let linking_needed 
301                 | Left _  <- e_exe_time = True
302                 | Right t <- e_exe_time = 
303                         any (t <) (map linkableTime linkables)
304
305         if dopt Opt_RecompChecking dflags && not linking_needed
306            then do debugTraceMsg dflags 2 (text exe_file <+> ptext SLIT("is up to date, linking not required."))
307                    return Succeeded
308            else do
309
310         debugTraceMsg dflags 1 (ptext SLIT("Linking") <+> text exe_file
311                                  <+> text "...")
312
313         -- Don't showPass in Batch mode; doLink will do that for us.
314         let link = case ghcLink dflags of
315                 MkDLL       -> doMkDLL
316                 StaticLink  -> staticLink
317         link dflags obj_files pkg_deps
318
319         debugTraceMsg dflags 3 (text "link: done")
320
321         -- staticLink only returns if it succeeds
322         return Succeeded
323
324    | otherwise
325    = do debugTraceMsg dflags 3 (text "link(batch): upsweep (partially) failed OR" $$
326                                 text "   Main.main not exported; not linking.")
327         return Succeeded
328       
329
330 -- -----------------------------------------------------------------------------
331 -- Compile files in one-shot mode.
332
333 oneShot :: DynFlags -> Phase -> [(String, Maybe Phase)] -> IO ()
334 oneShot dflags stop_phase srcs = do
335   o_files <- mapM (compileFile dflags stop_phase) srcs
336   doLink dflags stop_phase o_files
337
338 compileFile :: DynFlags -> Phase -> (FilePath, Maybe Phase) -> IO FilePath
339 compileFile dflags stop_phase (src, mb_phase) = do
340    exists <- doesFileExist src
341    when (not exists) $ 
342         throwDyn (CmdLineError ("does not exist: " ++ src))
343    
344    let
345         split     = dopt Opt_SplitObjs dflags
346         mb_o_file = outputFile dflags
347         ghc_link  = ghcLink dflags      -- Set by -c or -no-link
348
349         -- When linking, the -o argument refers to the linker's output. 
350         -- otherwise, we use it as the name for the pipeline's output.
351         output
352          | StopLn <- stop_phase, not (isNoLink ghc_link) = Persistent
353                 -- -o foo applies to linker
354          | Just o_file <- mb_o_file = SpecificFile o_file
355                 -- -o foo applies to the file we are compiling now
356          | otherwise = Persistent
357
358         stop_phase' = case stop_phase of 
359                         As | split -> SplitAs
360                         other      -> stop_phase
361
362    (_, out_file) <- runPipeline stop_phase' dflags
363                           (src, mb_phase) output Nothing{-no ModLocation-}
364    return out_file
365
366
367 doLink :: DynFlags -> Phase -> [FilePath] -> IO ()
368 doLink dflags stop_phase o_files
369   | not (isStopLn stop_phase)
370   = return ()           -- We stopped before the linking phase
371
372   | otherwise
373   = case ghcLink dflags of
374         NoLink     -> return ()
375         StaticLink -> staticLink dflags o_files link_pkgs
376         MkDLL      -> doMkDLL dflags o_files link_pkgs
377   where
378    -- Always link in the haskell98 package for static linking.  Other
379    -- packages have to be specified via the -package flag.
380     link_pkgs = [haskell98PackageId]
381
382
383 -- ---------------------------------------------------------------------------
384 -- Run a compilation pipeline, consisting of multiple phases.
385
386 -- This is the interface to the compilation pipeline, which runs
387 -- a series of compilation steps on a single source file, specifying
388 -- at which stage to stop.
389
390 -- The DynFlags can be modified by phases in the pipeline (eg. by
391 -- GHC_OPTIONS pragmas), and the changes affect later phases in the
392 -- pipeline.
393
394 data PipelineOutput 
395   = Temporary
396         -- output should be to a temporary file: we're going to
397         -- run more compilation steps on this output later
398   | Persistent
399         -- we want a persistent file, i.e. a file in the current directory
400         -- derived from the input filename, but with the appropriate extension.
401         -- eg. in "ghc -c Foo.hs" the output goes into ./Foo.o.
402   | SpecificFile FilePath
403         -- the output must go into the specified file.
404
405 runPipeline
406   :: Phase                      -- When to stop
407   -> DynFlags                   -- Dynamic flags
408   -> (FilePath,Maybe Phase)     -- Input filename (and maybe -x suffix)
409   -> PipelineOutput             -- Output filename
410   -> Maybe ModLocation          -- A ModLocation, if this is a Haskell module
411   -> IO (DynFlags, FilePath)    -- (final flags, output filename)
412
413 runPipeline stop_phase dflags (input_fn, mb_phase) output maybe_loc
414   = do
415   let (basename, suffix) = splitFilename input_fn
416
417         -- If we were given a -x flag, then use that phase to start from
418       start_phase
419         | Just x_phase <- mb_phase = x_phase
420         | otherwise                = startPhase suffix
421
422   -- We want to catch cases of "you can't get there from here" before
423   -- we start the pipeline, because otherwise it will just run off the
424   -- end.
425   --
426   -- There is a partial ordering on phases, where A < B iff A occurs
427   -- before B in a normal compilation pipeline.
428
429   when (not (start_phase `happensBefore` stop_phase)) $
430         throwDyn (UsageError 
431                     ("cannot compile this file to desired target: "
432                        ++ input_fn))
433
434   -- this is a function which will be used to calculate output file names
435   -- as we go along (we partially apply it to some of its inputs here)
436   let get_output_fn = getOutputFilename dflags stop_phase output basename
437
438   -- Execute the pipeline...
439   (dflags', output_fn, maybe_loc) <- 
440         pipeLoop dflags start_phase stop_phase input_fn 
441                  basename suffix get_output_fn maybe_loc
442
443   -- Sometimes, a compilation phase doesn't actually generate any output
444   -- (eg. the CPP phase when -fcpp is not turned on).  If we end on this
445   -- stage, but we wanted to keep the output, then we have to explicitly
446   -- copy the file.
447   case output of
448     Temporary -> 
449         return (dflags', output_fn)
450     _other ->
451         do final_fn <- get_output_fn stop_phase maybe_loc
452            when (final_fn /= output_fn) $
453                   copy dflags ("Copying `" ++ output_fn ++ "' to `" ++ final_fn
454                         ++ "'") output_fn final_fn
455            return (dflags', final_fn)
456                 
457
458
459 pipeLoop :: DynFlags -> Phase -> Phase 
460          -> FilePath  -> String -> Suffix
461          -> (Phase -> Maybe ModLocation -> IO FilePath)
462          -> Maybe ModLocation
463          -> IO (DynFlags, FilePath, Maybe ModLocation)
464
465 pipeLoop dflags phase stop_phase 
466          input_fn orig_basename orig_suff 
467          orig_get_output_fn maybe_loc
468
469   | phase `eqPhase` stop_phase            -- All done
470   = return (dflags, input_fn, maybe_loc)
471
472   | not (phase `happensBefore` stop_phase)
473         -- Something has gone wrong.  We'll try to cover all the cases when
474         -- this could happen, so if we reach here it is a panic.
475         -- eg. it might happen if the -C flag is used on a source file that
476         -- has {-# OPTIONS -fasm #-}.
477   = panic ("pipeLoop: at phase " ++ show phase ++ 
478            " but I wanted to stop at phase " ++ show stop_phase)
479
480   | otherwise 
481   = do  { (next_phase, dflags', maybe_loc, output_fn)
482                 <- runPhase phase stop_phase dflags orig_basename 
483                             orig_suff input_fn orig_get_output_fn maybe_loc
484         ; pipeLoop dflags' next_phase stop_phase output_fn
485                    orig_basename orig_suff orig_get_output_fn maybe_loc }
486
487 getOutputFilename
488   :: DynFlags -> Phase -> PipelineOutput -> String
489   -> Phase{-next phase-} -> Maybe ModLocation -> IO FilePath
490 getOutputFilename dflags stop_phase output basename
491  = func
492  where
493         hcsuf      = hcSuf dflags
494         odir       = objectDir dflags
495         osuf       = objectSuf dflags
496         keep_hc    = dopt Opt_KeepHcFiles dflags
497         keep_raw_s = dopt Opt_KeepRawSFiles dflags
498         keep_s     = dopt Opt_KeepSFiles dflags
499
500         myPhaseInputExt HCc    = hcsuf
501         myPhaseInputExt StopLn = osuf
502         myPhaseInputExt other  = phaseInputExt other
503
504         func next_phase maybe_location
505            | is_last_phase, Persistent <- output     = persistent_fn
506            | is_last_phase, SpecificFile f <- output = return f
507            | keep_this_output                        = persistent_fn
508            | otherwise                               = newTempName dflags suffix
509            where
510                 is_last_phase = next_phase `eqPhase` stop_phase
511
512                 -- sometimes, we keep output from intermediate stages
513                 keep_this_output = 
514                      case next_phase of
515                              StopLn              -> True
516                              Mangle | keep_raw_s -> True
517                              As     | keep_s     -> True
518                              HCc    | keep_hc    -> True
519                              _other              -> False
520
521                 suffix = myPhaseInputExt next_phase
522
523                 -- persistent object files get put in odir
524                 persistent_fn 
525                    | StopLn <- next_phase = return odir_persistent
526                    | otherwise            = return persistent
527
528                 persistent = basename `joinFileExt` suffix
529
530                 odir_persistent
531                    | Just loc <- maybe_location = ml_obj_file loc
532                    | Just d <- odir = d `joinFileName` persistent
533                    | otherwise      = persistent
534
535
536 -- -----------------------------------------------------------------------------
537 -- Each phase in the pipeline returns the next phase to execute, and the
538 -- name of the file in which the output was placed.
539 --
540 -- We must do things dynamically this way, because we often don't know
541 -- what the rest of the phases will be until part-way through the
542 -- compilation: for example, an {-# OPTIONS -fasm #-} at the beginning
543 -- of a source file can change the latter stages of the pipeline from
544 -- taking the via-C route to using the native code generator.
545
546 runPhase :: Phase       -- Do this phase first
547          -> Phase       -- Stop just before this phase
548          -> DynFlags
549          -> String      -- basename of original input source
550          -> String      -- its extension
551          -> FilePath    -- name of file which contains the input to this phase.
552          -> (Phase -> Maybe ModLocation -> IO FilePath)
553                         -- how to calculate the output filename
554          -> Maybe ModLocation           -- the ModLocation, if we have one
555          -> IO (Phase,                  -- next phase
556                 DynFlags,               -- new dynamic flags
557                 Maybe ModLocation,      -- the ModLocation, if we have one
558                 FilePath)               -- output filename
559
560         -- Invariant: the output filename always contains the output
561         -- Interesting case: Hsc when there is no recompilation to do
562         --                   Then the output filename is still a .o file 
563
564 -------------------------------------------------------------------------------
565 -- Unlit phase 
566
567 runPhase (Unlit sf) _stop dflags _basename _suff input_fn get_output_fn maybe_loc
568   = do let unlit_flags = getOpts dflags opt_L
569        -- The -h option passes the file name for unlit to put in a #line directive
570        output_fn <- get_output_fn (Cpp sf) maybe_loc
571
572        SysTools.runUnlit dflags 
573                 (map SysTools.Option unlit_flags ++
574                           [ SysTools.Option     "-h"
575                           , SysTools.Option     input_fn
576                           , SysTools.FileOption "" input_fn
577                           , SysTools.FileOption "" output_fn
578                           ])
579
580        return (Cpp sf, dflags, maybe_loc, output_fn)
581
582 -------------------------------------------------------------------------------
583 -- Cpp phase : (a) gets OPTIONS out of file
584 --             (b) runs cpp if necessary
585
586 runPhase (Cpp sf) _stop dflags0 basename suff input_fn get_output_fn maybe_loc
587   = do src_opts <- getOptionsFromFile input_fn
588        (dflags,unhandled_flags) <- parseDynamicFlags dflags0 (map unLoc src_opts)
589        checkProcessArgsResult unhandled_flags (basename `joinFileExt` suff)
590
591        if not (dopt Opt_Cpp dflags) then
592            -- no need to preprocess CPP, just pass input file along
593            -- to the next phase of the pipeline.
594           return (HsPp sf, dflags, maybe_loc, input_fn)
595         else do
596             output_fn <- get_output_fn (HsPp sf) maybe_loc
597             doCpp dflags True{-raw-} False{-no CC opts-} input_fn output_fn
598             return (HsPp sf, dflags, maybe_loc, output_fn)
599
600 -------------------------------------------------------------------------------
601 -- HsPp phase 
602
603 runPhase (HsPp sf) _stop dflags basename suff input_fn get_output_fn maybe_loc
604   = do if not (dopt Opt_Pp dflags) then
605            -- no need to preprocess, just pass input file along
606            -- to the next phase of the pipeline.
607           return (Hsc sf, dflags, maybe_loc, input_fn)
608         else do
609             let hspp_opts = getOpts dflags opt_F
610             let orig_fn = basename `joinFileExt` suff
611             output_fn <- get_output_fn (Hsc sf) maybe_loc
612             SysTools.runPp dflags
613                            ( [ SysTools.Option     orig_fn
614                              , SysTools.Option     input_fn
615                              , SysTools.FileOption "" output_fn
616                              ] ++
617                              map SysTools.Option hspp_opts
618                            )
619             return (Hsc sf, dflags, maybe_loc, output_fn)
620
621 -----------------------------------------------------------------------------
622 -- Hsc phase
623
624 -- Compilation of a single module, in "legacy" mode (_not_ under
625 -- the direction of the compilation manager).
626 runPhase (Hsc src_flavour) stop dflags0 basename suff input_fn get_output_fn _maybe_loc 
627  = do   -- normal Hsc mode, not mkdependHS
628
629   -- we add the current directory (i.e. the directory in which
630   -- the .hs files resides) to the import path, since this is
631   -- what gcc does, and it's probably what you want.
632         let current_dir = directoryOf basename
633         
634             paths = includePaths dflags0
635             dflags = dflags0 { includePaths = current_dir : paths }
636         
637   -- gather the imports and module name
638         (hspp_buf,mod_name) <- 
639             case src_flavour of
640                 ExtCoreFile -> do {  -- no explicit imports in ExtCore input.
641                                   ; m <- getCoreModuleName input_fn
642                                   ; return (Nothing, mkModuleName m) }
643
644                 other -> do { buf <- hGetStringBuffer input_fn
645                             ; (_,_,L _ mod_name) <- getImports dflags buf input_fn
646                             ; return (Just buf, mod_name) }
647
648   -- Build a ModLocation to pass to hscMain.
649   -- The source filename is rather irrelevant by now, but it's used
650   -- by hscMain for messages.  hscMain also needs 
651   -- the .hi and .o filenames, and this is as good a way
652   -- as any to generate them, and better than most. (e.g. takes 
653   -- into accout the -osuf flags)
654         location1 <- mkHomeModLocation2 dflags mod_name basename suff
655
656   -- Boot-ify it if necessary
657         let location2 | isHsBoot src_flavour = addBootSuffixLocn location1
658                       | otherwise            = location1 
659                                         
660
661   -- Take -ohi into account if present
662   -- This can't be done in mkHomeModuleLocation because
663   -- it only applies to the module being compiles
664         let ohi = outputHi dflags
665             location3 | Just fn <- ohi = location2{ ml_hi_file = fn }
666                       | otherwise      = location2
667
668   -- Take -o into account if present
669   -- Very like -ohi, but we must *only* do this if we aren't linking
670   -- (If we're linking then the -o applies to the linked thing, not to
671   -- the object file for one module.)
672   -- Note the nasty duplication with the same computation in compileFile above
673         let expl_o_file = outputFile dflags
674             location4 | Just ofile <- expl_o_file
675                       , isNoLink (ghcLink dflags)
676                       = location3 { ml_obj_file = ofile }
677                       | otherwise = location3
678
679             o_file = ml_obj_file location4      -- The real object file
680
681
682   -- Figure out if the source has changed, for recompilation avoidance.
683   --
684   -- Setting source_unchanged to True means that M.o seems
685   -- to be up to date wrt M.hs; so no need to recompile unless imports have
686   -- changed (which the compiler itself figures out).
687   -- Setting source_unchanged to False tells the compiler that M.o is out of
688   -- date wrt M.hs (or M.o doesn't exist) so we must recompile regardless.
689         src_timestamp <- getModificationTime (basename `joinFileExt` suff)
690
691         let do_recomp = dopt Opt_RecompChecking dflags
692         source_unchanged <- 
693           if not do_recomp || not (isStopLn stop)
694                 -- Set source_unchanged to False unconditionally if
695                 --      (a) recompilation checker is off, or
696                 --      (b) we aren't going all the way to .o file (e.g. ghc -S)
697              then return False  
698                 -- Otherwise look at file modification dates
699              else do o_file_exists <- doesFileExist o_file
700                      if not o_file_exists
701                         then return False       -- Need to recompile
702                         else do t2 <- getModificationTime o_file
703                                 if t2 > src_timestamp
704                                   then return True
705                                   else return False
706
707   -- get the DynFlags
708         let hsc_lang = hscMaybeAdjustTarget dflags stop src_flavour (hscTarget dflags)
709         let next_phase = hscNextPhase dflags src_flavour hsc_lang
710         output_fn  <- get_output_fn next_phase (Just location4)
711
712         let dflags' = dflags { hscTarget = hsc_lang,
713                                hscOutName = output_fn,
714                                extCoreName = basename ++ ".hcr" }
715
716         hsc_env <- newHscEnv dflags'
717
718   -- Tell the finder cache about this module
719         mod <- addHomeModuleToFinder hsc_env mod_name location4
720
721   -- Make the ModSummary to hand to hscMain
722         let
723             unused_field = panic "runPhase:ModSummary field"
724                 -- Some fields are not looked at by hscMain
725             mod_summary = ModSummary {  ms_mod       = mod, 
726                                         ms_hsc_src   = src_flavour,
727                                         ms_hspp_file = input_fn,
728                                         ms_hspp_opts = dflags,
729                                         ms_hspp_buf  = hspp_buf,
730                                         ms_location  = location4,
731                                         ms_hs_date   = src_timestamp,
732                                         ms_obj_date  = Nothing,
733                                         ms_imps      = unused_field,
734                                         ms_srcimps   = unused_field }
735
736   -- run the compiler!
737         mbResult <- hscCompileOneShot hsc_env
738                           mod_summary source_unchanged 
739                           Nothing       -- No iface
740                           Nothing       -- No "module i of n" progress info
741
742         case mbResult of
743           Nothing -> throwDyn (PhaseFailed "hsc" (ExitFailure 1))
744           Just HscNoRecomp
745               -> do SysTools.touch dflags' "Touching object file" o_file
746                     -- The .o file must have a later modification date
747                     -- than the source file (else we wouldn't be in HscNoRecomp)
748                     -- but we touch it anyway, to keep 'make' happy (we think).
749                     return (StopLn, dflags', Just location4, o_file)
750           Just (HscRecomp hasStub)
751               -> do when hasStub $
752                          do stub_o <- compileStub dflags' mod location4
753                             consIORef v_Ld_inputs stub_o
754                     -- In the case of hs-boot files, generate a dummy .o-boot 
755                     -- stamp file for the benefit of Make
756                     when (isHsBoot src_flavour) $
757                       SysTools.touch dflags' "Touching object file" o_file
758                     return (next_phase, dflags', Just location4, output_fn)
759
760 -----------------------------------------------------------------------------
761 -- Cmm phase
762
763 runPhase CmmCpp stop dflags basename suff input_fn get_output_fn maybe_loc
764   = do
765        output_fn <- get_output_fn Cmm maybe_loc
766        doCpp dflags False{-not raw-} True{-include CC opts-} input_fn output_fn 
767        return (Cmm, dflags, maybe_loc, output_fn)
768
769 runPhase Cmm stop dflags basename suff input_fn get_output_fn maybe_loc
770   = do
771         let hsc_lang = hscMaybeAdjustTarget dflags stop HsSrcFile (hscTarget dflags)
772         let next_phase = hscNextPhase dflags HsSrcFile hsc_lang
773         output_fn <- get_output_fn next_phase maybe_loc
774
775         let dflags' = dflags { hscTarget = hsc_lang,
776                                hscOutName = output_fn,
777                                extCoreName = basename ++ ".hcr" }
778
779         ok <- hscCmmFile dflags' input_fn
780
781         when (not ok) $ throwDyn (PhaseFailed "cmm" (ExitFailure 1))
782
783         return (next_phase, dflags, maybe_loc, output_fn)
784
785 -----------------------------------------------------------------------------
786 -- Cc phase
787
788 -- we don't support preprocessing .c files (with -E) now.  Doing so introduces
789 -- way too many hacks, and I can't say I've ever used it anyway.
790
791 runPhase cc_phase stop dflags basename suff input_fn get_output_fn maybe_loc
792    | cc_phase `eqPhase` Cc || cc_phase `eqPhase` HCc
793    = do let cc_opts = getOpts dflags opt_c
794             hcc = cc_phase `eqPhase` HCc
795
796         let cmdline_include_paths = includePaths dflags
797
798         -- HC files have the dependent packages stamped into them
799         pkgs <- if hcc then getHCFilePackages input_fn else return []
800
801         -- add package include paths even if we're just compiling .c
802         -- files; this is the Value Add(TM) that using ghc instead of
803         -- gcc gives you :)
804         pkg_include_dirs <- getPackageIncludePath dflags pkgs
805         let include_paths = foldr (\ x xs -> "-I" : x : xs) []
806                               (cmdline_include_paths ++ pkg_include_dirs)
807
808         let (md_c_flags, md_regd_c_flags) = machdepCCOpts dflags
809         let pic_c_flags = picCCOpts dflags
810
811         let verb = getVerbFlag dflags
812
813         pkg_extra_cc_opts <- getPackageExtraCcOpts dflags pkgs
814
815         let split_objs = dopt Opt_SplitObjs dflags
816             split_opt | hcc && split_objs = [ "-DUSE_SPLIT_MARKERS" ]
817                       | otherwise         = [ ]
818
819         let excessPrecision = dopt Opt_ExcessPrecision dflags
820
821         let cc_opt | optLevel dflags >= 2 = "-O2"
822                    | otherwise            = "-O"
823
824         -- Decide next phase
825         
826         let mangle = dopt Opt_DoAsmMangling dflags
827             next_phase
828                 | hcc && mangle     = Mangle
829                 | otherwise         = As
830         output_fn <- get_output_fn next_phase maybe_loc
831
832         let
833           more_hcc_opts =
834 #if i386_TARGET_ARCH
835                 -- on x86 the floating point regs have greater precision
836                 -- than a double, which leads to unpredictable results.
837                 -- By default, we turn this off with -ffloat-store unless
838                 -- the user specified -fexcess-precision.
839                 (if excessPrecision then [] else [ "-ffloat-store" ]) ++
840 #endif
841                 -- gcc's -fstrict-aliasing allows two accesses to memory
842                 -- to be considered non-aliasing if they have different types.
843                 -- This interacts badly with the C code we generate, which is
844                 -- very weakly typed, being derived from C--.
845                 ["-fno-strict-aliasing"]
846
847
848
849         SysTools.runCc dflags (
850                 -- force the C compiler to interpret this file as C when
851                 -- compiling .hc files, by adding the -x c option.
852                 -- Also useful for plain .c files, just in case GHC saw a 
853                 -- -x c option.
854                         [ SysTools.Option "-x", SysTools.Option "c"] ++
855                         [ SysTools.FileOption "" input_fn
856                         , SysTools.Option "-o"
857                         , SysTools.FileOption "" output_fn
858                         ]
859                        ++ map SysTools.Option (
860                           md_c_flags
861                        ++ pic_c_flags
862                        ++ (if hcc && mangle
863                              then md_regd_c_flags
864                              else [])
865                        ++ (if hcc 
866                              then more_hcc_opts
867                              else [])
868                        ++ [ verb, "-S", "-Wimplicit", cc_opt ]
869                        ++ [ "-D__GLASGOW_HASKELL__="++cProjectVersionInt ]
870                        ++ cc_opts
871                        ++ split_opt
872                        ++ include_paths
873                        ++ pkg_extra_cc_opts
874                        ))
875
876         return (next_phase, dflags, maybe_loc, output_fn)
877
878         -- ToDo: postprocess the output from gcc
879
880 -----------------------------------------------------------------------------
881 -- Mangle phase
882
883 runPhase Mangle stop dflags _basename _suff input_fn get_output_fn maybe_loc
884    = do let mangler_opts = getOpts dflags opt_m
885
886 #if i386_TARGET_ARCH
887         machdep_opts <- return [ show (stolen_x86_regs dflags) ]
888 #else
889         machdep_opts <- return []
890 #endif
891
892         let split = dopt Opt_SplitObjs dflags
893             next_phase
894                 | split = SplitMangle
895                 | otherwise = As
896         output_fn <- get_output_fn next_phase maybe_loc
897
898         SysTools.runMangle dflags (map SysTools.Option mangler_opts
899                           ++ [ SysTools.FileOption "" input_fn
900                              , SysTools.FileOption "" output_fn
901                              ]
902                           ++ map SysTools.Option machdep_opts)
903
904         return (next_phase, dflags, maybe_loc, output_fn)
905
906 -----------------------------------------------------------------------------
907 -- Splitting phase
908
909 runPhase SplitMangle stop dflags _basename _suff input_fn get_output_fn maybe_loc
910   = do  -- tmp_pfx is the prefix used for the split .s files
911         -- We also use it as the file to contain the no. of split .s files (sigh)
912         split_s_prefix <- SysTools.newTempName dflags "split"
913         let n_files_fn = split_s_prefix
914
915         SysTools.runSplit dflags
916                           [ SysTools.FileOption "" input_fn
917                           , SysTools.FileOption "" split_s_prefix
918                           , SysTools.FileOption "" n_files_fn
919                           ]
920
921         -- Save the number of split files for future references
922         s <- readFile n_files_fn
923         let n_files = read s :: Int
924         writeIORef v_Split_info (split_s_prefix, n_files)
925
926         -- Remember to delete all these files
927         addFilesToClean [ split_s_prefix ++ "__" ++ show n ++ ".s"
928                         | n <- [1..n_files]]
929
930         return (SplitAs, dflags, maybe_loc, "**splitmangle**")
931           -- we don't use the filename
932
933 -----------------------------------------------------------------------------
934 -- As phase
935
936 runPhase As stop dflags _basename _suff input_fn get_output_fn maybe_loc
937   = do  let as_opts =  getOpts dflags opt_a
938         let cmdline_include_paths = includePaths dflags
939
940         output_fn <- get_output_fn StopLn maybe_loc
941
942         -- we create directories for the object file, because it
943         -- might be a hierarchical module.
944         createDirectoryHierarchy (directoryOf output_fn)
945
946         SysTools.runAs dflags   
947                        (map SysTools.Option as_opts
948                        ++ [ SysTools.Option ("-I" ++ p) | p <- cmdline_include_paths ]
949                        ++ [ SysTools.Option "-c"
950                           , SysTools.FileOption "" input_fn
951                           , SysTools.Option "-o"
952                           , SysTools.FileOption "" output_fn
953                           ])
954
955         return (StopLn, dflags, maybe_loc, output_fn)
956
957
958 runPhase SplitAs stop dflags basename _suff _input_fn get_output_fn maybe_loc
959   = do  
960         output_fn <- get_output_fn StopLn maybe_loc
961
962         let (base_o, _) = splitFilename output_fn
963             split_odir  = base_o ++ "_split"
964             osuf = objectSuf dflags
965
966         createDirectoryHierarchy split_odir
967
968         -- remove M_split/ *.o, because we're going to archive M_split/ *.o
969         -- later and we don't want to pick up any old objects.
970         fs <- getDirectoryContents split_odir 
971         mapM_ removeFile $ map (split_odir `joinFileName`)
972                          $ filter (osuf `isSuffixOf`) fs
973
974         let as_opts = getOpts dflags opt_a
975
976         (split_s_prefix, n) <- readIORef v_Split_info
977
978         let split_s   n = split_s_prefix ++ "__" ++ show n `joinFileExt` "s"
979             split_obj n = split_odir `joinFileName`
980                                 filenameOf base_o ++ "__" ++ show n
981                                         `joinFileExt` osuf
982
983         let assemble_file n
984               = SysTools.runAs dflags
985                          (map SysTools.Option as_opts ++
986                          [ SysTools.Option "-c"
987                          , SysTools.Option "-o"
988                          , SysTools.FileOption "" (split_obj n)
989                          , SysTools.FileOption "" (split_s n)
990                          ])
991         
992         mapM_ assemble_file [1..n]
993
994         -- and join the split objects into a single object file:
995         let ld_r args = SysTools.runLink dflags ([ 
996                                 SysTools.Option "-nostdlib",
997                                 SysTools.Option "-nodefaultlibs",
998                                 SysTools.Option "-Wl,-r", 
999                                 SysTools.Option ld_x_flag, 
1000                                 SysTools.Option "-o", 
1001                                 SysTools.FileOption "" output_fn ] ++ args)
1002             ld_x_flag | null cLD_X = ""
1003                       | otherwise  = "-Wl,-x"     
1004
1005         if cLdIsGNULd == "YES"
1006             then do 
1007                   let script = split_odir `joinFileName` "ld.script"
1008                   writeFile script $
1009                       "INPUT(" ++ unwords (map split_obj [1..n]) ++ ")"
1010                   ld_r [SysTools.FileOption "" script]
1011             else do
1012                   ld_r (map (SysTools.FileOption "" . split_obj) [1..n])
1013
1014         return (StopLn, dflags, maybe_loc, output_fn)
1015
1016
1017 -----------------------------------------------------------------------------
1018 -- MoveBinary sort-of-phase
1019 -- After having produced a binary, move it somewhere else and generate a
1020 -- wrapper script calling the binary. Currently, we need this only in 
1021 -- a parallel way (i.e. in GUM), because PVM expects the binary in a
1022 -- central directory.
1023 -- This is called from staticLink below, after linking. I haven't made it
1024 -- a separate phase to minimise interfering with other modules, and
1025 -- we don't need the generality of a phase (MoveBinary is always
1026 -- done after linking and makes only sense in a parallel setup)   -- HWL
1027
1028 runPhase_MoveBinary input_fn
1029   = do  
1030         sysMan   <- getSysMan
1031         pvm_root <- getEnv "PVM_ROOT"
1032         pvm_arch <- getEnv "PVM_ARCH"
1033         let 
1034            pvm_executable_base = "=" ++ input_fn
1035            pvm_executable = pvm_root ++ "/bin/" ++ pvm_arch ++ "/" ++ pvm_executable_base
1036         -- nuke old binary; maybe use configur'ed names for cp and rm?
1037         system ("rm -f " ++ pvm_executable)
1038         -- move the newly created binary into PVM land
1039         system ("cp -p " ++ input_fn ++ " " ++ pvm_executable)
1040         -- generate a wrapper script for running a parallel prg under PVM
1041         writeFile input_fn (mk_pvm_wrapper_script pvm_executable pvm_executable_base sysMan)
1042         return True
1043
1044 -- generates a Perl skript starting a parallel prg under PVM
1045 mk_pvm_wrapper_script :: String -> String -> String -> String
1046 mk_pvm_wrapper_script pvm_executable pvm_executable_base sysMan = unlines $
1047  [
1048   "eval 'exec perl -S $0 ${1+\"$@\"}'", 
1049   "  if $running_under_some_shell;",
1050   "# =!=!=!=!=!=!=!=!=!=!=!",
1051   "# This script is automatically generated: DO NOT EDIT!!!",
1052   "# Generated by Glasgow Haskell Compiler",
1053   "# ngoqvam choHbogh vaj' vIHoHnISbej !!!!",
1054   "#",
1055   "$pvm_executable      = '" ++ pvm_executable ++ "';",
1056   "$pvm_executable_base = '" ++ pvm_executable_base ++ "';",
1057   "$SysMan = '" ++ sysMan ++ "';",
1058   "",
1059   {- ToDo: add the magical shortcuts again iff we actually use them -- HWL
1060   "# first, some magical shortcuts to run "commands" on the binary",
1061   "# (which is hidden)",
1062   "if ($#ARGV == 1 && $ARGV[0] eq '+RTS' && $ARGV[1] =~ /^--((size|file|strip|rm|nm).*)/ ) {",
1063   "    local($cmd) = $1;",
1064   "    system("$cmd $pvm_executable");",
1065   "    exit(0); # all done",
1066   "}", -}
1067   "",
1068   "# Now, run the real binary; process the args first",
1069   "$ENV{'PE'} = $pvm_executable_base;", --  ++ pvm_executable_base,
1070   "$debug = '';",
1071   "$nprocessors = 0; # the default: as many PEs as machines in PVM config",
1072   "@nonPVM_args = ();",
1073   "$in_RTS_args = 0;",
1074   "",
1075   "args: while ($a = shift(@ARGV)) {",
1076   "    if ( $a eq '+RTS' ) {",
1077   "     $in_RTS_args = 1;",
1078   "    } elsif ( $a eq '-RTS' ) {",
1079   "     $in_RTS_args = 0;",
1080   "    }",
1081   "    if ( $a eq '-d' && $in_RTS_args ) {",
1082   "     $debug = '-';",
1083   "    } elsif ( $a =~ /^-qN(\\d+)/ && $in_RTS_args ) {",
1084   "     $nprocessors = $1;",
1085   "    } elsif ( $a =~ /^-qp(\\d+)/ && $in_RTS_args ) {",
1086   "     $nprocessors = $1;",
1087   "    } else {",
1088   "     push(@nonPVM_args, $a);",
1089   "    }",
1090   "}",
1091   "",
1092   "local($return_val) = 0;",
1093   "# Start the parallel execution by calling SysMan",
1094   "system(\"$SysMan $debug $pvm_executable $nprocessors @nonPVM_args\");",
1095   "$return_val = $?;",
1096   "# ToDo: fix race condition moving files and flushing them!!",
1097   "system(\"cp $ENV{'HOME'}/$pvm_executable_base.???.gr .\") if -f \"$ENV{'HOME'}/$pvm_executable_base.002.gr\";",
1098   "exit($return_val);"
1099  ]
1100
1101 -----------------------------------------------------------------------------
1102 -- Complain about non-dynamic flags in OPTIONS pragmas
1103
1104 checkProcessArgsResult flags filename
1105   = do when (notNull flags) (throwDyn (ProgramError (
1106           showSDoc (hang (text filename <> char ':')
1107                       4 (text "unknown flags in  {-# OPTIONS #-} pragma:" <+>
1108                           hsep (map text flags)))
1109         )))
1110
1111 -----------------------------------------------------------------------------
1112 -- Look for the /* GHC_PACKAGES ... */ comment at the top of a .hc file
1113
1114 getHCFilePackages :: FilePath -> IO [PackageId]
1115 getHCFilePackages filename =
1116   EXCEPTION.bracket (openFile filename ReadMode) hClose $ \h -> do
1117     l <- hGetLine h
1118     case l of
1119       '/':'*':' ':'G':'H':'C':'_':'P':'A':'C':'K':'A':'G':'E':'S':rest ->
1120           return (map stringToPackageId (words rest))
1121       _other ->
1122           return []
1123
1124 -----------------------------------------------------------------------------
1125 -- Static linking, of .o files
1126
1127 -- The list of packages passed to link is the list of packages on
1128 -- which this program depends, as discovered by the compilation
1129 -- manager.  It is combined with the list of packages that the user
1130 -- specifies on the command line with -package flags.  
1131 --
1132 -- In one-shot linking mode, we can't discover the package
1133 -- dependencies (because we haven't actually done any compilation or
1134 -- read any interface files), so the user must explicitly specify all
1135 -- the packages.
1136
1137 staticLink :: DynFlags -> [FilePath] -> [PackageId] -> IO ()
1138 staticLink dflags o_files dep_packages = do
1139     let verb = getVerbFlag dflags
1140         output_fn = exeFileName dflags
1141
1142     -- get the full list of packages to link with, by combining the
1143     -- explicit packages with the auto packages and all of their
1144     -- dependencies, and eliminating duplicates.
1145
1146     pkg_lib_paths <- getPackageLibraryPath dflags dep_packages
1147     let pkg_lib_path_opts = map ("-L"++) pkg_lib_paths
1148
1149     let lib_paths = libraryPaths dflags
1150     let lib_path_opts = map ("-L"++) lib_paths
1151
1152     pkg_link_opts <- getPackageLinkOpts dflags dep_packages
1153
1154 #ifdef darwin_TARGET_OS
1155     pkg_framework_paths <- getPackageFrameworkPath dflags dep_packages
1156     let pkg_framework_path_opts = map ("-F"++) pkg_framework_paths
1157
1158     let framework_paths = frameworkPaths dflags
1159         framework_path_opts = map ("-F"++) framework_paths
1160
1161     pkg_frameworks <- getPackageFrameworks dflags dep_packages
1162     let pkg_framework_opts = concat [ ["-framework", fw] | fw <- pkg_frameworks ]
1163     
1164     let frameworks = cmdlineFrameworks dflags
1165         framework_opts = concat [ ["-framework", fw] | fw <- reverse frameworks ]
1166          -- reverse because they're added in reverse order from the cmd line
1167 #endif
1168
1169         -- probably _stub.o files
1170     extra_ld_inputs <- readIORef v_Ld_inputs
1171
1172         -- opts from -optl-<blah> (including -l<blah> options)
1173     let extra_ld_opts = getOpts dflags opt_l
1174
1175     let ways = wayNames dflags
1176
1177     -- Here are some libs that need to be linked at the *end* of
1178     -- the command line, because they contain symbols that are referred to
1179     -- by the RTS.  We can't therefore use the ordinary way opts for these.
1180     let
1181         debug_opts | WayDebug `elem` ways = [ 
1182 #if defined(HAVE_LIBBFD)
1183                         "-lbfd", "-liberty"
1184 #endif
1185                          ]
1186                    | otherwise            = []
1187
1188     let
1189         thread_opts | WayThreaded `elem` ways = [ 
1190 #if !defined(mingw32_TARGET_OS) && !defined(freebsd_TARGET_OS)
1191                         "-lpthread"
1192 #endif
1193 #if defined(osf3_TARGET_OS)
1194                         , "-lexc"
1195 #endif
1196                         ]
1197                     | otherwise               = []
1198
1199     let (md_c_flags, _) = machdepCCOpts dflags
1200     SysTools.runLink dflags ( 
1201                        [ SysTools.Option verb
1202                        , SysTools.Option "-o"
1203                        , SysTools.FileOption "" output_fn
1204                        ]
1205                       ++ map SysTools.Option (
1206                          md_c_flags
1207                       ++ o_files
1208                       ++ extra_ld_inputs
1209                       ++ lib_path_opts
1210                       ++ extra_ld_opts
1211 #ifdef darwin_TARGET_OS
1212                       ++ framework_path_opts
1213                       ++ framework_opts
1214 #endif
1215                       ++ pkg_lib_path_opts
1216                       ++ pkg_link_opts
1217 #ifdef darwin_TARGET_OS
1218                       ++ pkg_framework_path_opts
1219                       ++ pkg_framework_opts
1220 #endif
1221                       ++ debug_opts
1222                       ++ thread_opts
1223                     ))
1224
1225     -- parallel only: move binary to another dir -- HWL
1226     when (WayPar `elem` ways)
1227          (do success <- runPhase_MoveBinary output_fn
1228              if success then return ()
1229                         else throwDyn (InstallationError ("cannot move binary to PVM dir")))
1230
1231
1232 exeFileName :: DynFlags -> FilePath
1233 exeFileName dflags
1234   | Just s <- outputFile dflags = 
1235 #if defined(mingw32_HOST_OS)
1236       if null (suffixOf s)
1237         then s `joinFileExt` "exe"
1238         else s
1239 #else
1240       s
1241 #endif
1242   | otherwise = 
1243 #if defined(mingw32_HOST_OS)
1244         "main.exe"
1245 #else
1246         "a.out"
1247 #endif
1248
1249 -----------------------------------------------------------------------------
1250 -- Making a DLL (only for Win32)
1251
1252 doMkDLL :: DynFlags -> [String] -> [PackageId] -> IO ()
1253 doMkDLL dflags o_files dep_packages = do
1254     let verb = getVerbFlag dflags
1255     let static = opt_Static
1256     let no_hs_main = dopt Opt_NoHsMain dflags
1257     let o_file = outputFile dflags
1258     let output_fn = case o_file of { Just s -> s; Nothing -> "HSdll.dll"; }
1259
1260     pkg_lib_paths <- getPackageLibraryPath dflags dep_packages
1261     let pkg_lib_path_opts = map ("-L"++) pkg_lib_paths
1262
1263     let lib_paths = libraryPaths dflags
1264     let lib_path_opts = map ("-L"++) lib_paths
1265
1266     pkg_link_opts <- getPackageLinkOpts dflags dep_packages
1267
1268         -- probably _stub.o files
1269     extra_ld_inputs <- readIORef v_Ld_inputs
1270
1271         -- opts from -optdll-<blah>
1272     let extra_ld_opts = getOpts dflags opt_dll 
1273
1274     let pstate = pkgState dflags
1275         rts_pkg  = getPackageDetails pstate rtsPackageId
1276         base_pkg = getPackageDetails pstate basePackageId
1277
1278     let extra_os = if static || no_hs_main
1279                    then []
1280                    else [ head (libraryDirs rts_pkg) ++ "/Main.dll_o",
1281                           head (libraryDirs base_pkg) ++ "/PrelMain.dll_o" ]
1282
1283     let (md_c_flags, _) = machdepCCOpts dflags
1284     SysTools.runMkDLL dflags
1285          ([ SysTools.Option verb
1286           , SysTools.Option "-o"
1287           , SysTools.FileOption "" output_fn
1288           ]
1289          ++ map SysTools.Option (
1290             md_c_flags
1291          ++ o_files
1292          ++ extra_os
1293          ++ [ "--target=i386-mingw32" ]
1294          ++ extra_ld_inputs
1295          ++ lib_path_opts
1296          ++ extra_ld_opts
1297          ++ pkg_lib_path_opts
1298          ++ pkg_link_opts
1299          ++ (if "--def" `elem` (concatMap words extra_ld_opts)
1300                then [ "" ]
1301                else [ "--export-all" ])
1302         ))
1303
1304 -- -----------------------------------------------------------------------------
1305 -- Running CPP
1306
1307 doCpp :: DynFlags -> Bool -> Bool -> FilePath -> FilePath -> IO ()
1308 doCpp dflags raw include_cc_opts input_fn output_fn = do
1309     let hscpp_opts = getOpts dflags opt_P
1310     let cmdline_include_paths = includePaths dflags
1311
1312     pkg_include_dirs <- getPackageIncludePath dflags []
1313     let include_paths = foldr (\ x xs -> "-I" : x : xs) []
1314                           (cmdline_include_paths ++ pkg_include_dirs)
1315
1316     let verb = getVerbFlag dflags
1317
1318     let cc_opts
1319           | not include_cc_opts = []
1320           | otherwise           = (optc ++ md_c_flags)
1321                 where 
1322                       optc = getOpts dflags opt_c
1323                       (md_c_flags, _) = machdepCCOpts dflags
1324
1325     let cpp_prog args | raw       = SysTools.runCpp dflags args
1326                       | otherwise = SysTools.runCc dflags (SysTools.Option "-E" : args)
1327
1328     let target_defs = 
1329           [ "-D" ++ HOST_OS     ++ "_BUILD_OS=1",
1330             "-D" ++ HOST_ARCH   ++ "_BUILD_ARCH=1",
1331             "-D" ++ TARGET_OS   ++ "_HOST_OS=1",
1332             "-D" ++ TARGET_ARCH ++ "_HOST_ARCH=1" ]
1333         -- remember, in code we *compile*, the HOST is the same our TARGET,
1334         -- and BUILD is the same as our HOST.
1335
1336     cpp_prog       ([SysTools.Option verb]
1337                     ++ map SysTools.Option include_paths
1338                     ++ map SysTools.Option hsSourceCppOpts
1339                     ++ map SysTools.Option hscpp_opts
1340                     ++ map SysTools.Option cc_opts
1341                     ++ map SysTools.Option target_defs
1342                     ++ [ SysTools.Option     "-x"
1343                        , SysTools.Option     "c"
1344                        , SysTools.Option     input_fn
1345         -- We hackily use Option instead of FileOption here, so that the file
1346         -- name is not back-slashed on Windows.  cpp is capable of
1347         -- dealing with / in filenames, so it works fine.  Furthermore
1348         -- if we put in backslashes, cpp outputs #line directives
1349         -- with *double* backslashes.   And that in turn means that
1350         -- our error messages get double backslashes in them.
1351         -- In due course we should arrange that the lexer deals
1352         -- with these \\ escapes properly.
1353                        , SysTools.Option     "-o"
1354                        , SysTools.FileOption "" output_fn
1355                        ])
1356
1357 cHaskell1Version = "5" -- i.e., Haskell 98
1358
1359 -- Default CPP defines in Haskell source
1360 hsSourceCppOpts =
1361         [ "-D__HASKELL1__="++cHaskell1Version
1362         , "-D__GLASGOW_HASKELL__="++cProjectVersionInt                          
1363         , "-D__HASKELL98__"
1364         , "-D__CONCURRENT_HASKELL__"
1365         ]
1366
1367
1368 -- -----------------------------------------------------------------------------
1369 -- Misc.
1370
1371 hscNextPhase :: DynFlags -> HscSource -> HscTarget -> Phase
1372 hscNextPhase dflags HsBootFile hsc_lang  =  StopLn
1373 hscNextPhase dflags other hsc_lang = 
1374   case hsc_lang of
1375         HscC -> HCc
1376         HscAsm | dopt Opt_SplitObjs dflags -> SplitMangle
1377                | otherwise -> As
1378         HscNothing     -> StopLn
1379         HscInterpreted -> StopLn
1380         _other         -> StopLn
1381
1382
1383 hscMaybeAdjustTarget :: DynFlags -> Phase -> HscSource -> HscTarget -> HscTarget
1384 hscMaybeAdjustTarget dflags stop HsBootFile current_hsc_lang 
1385   = HscNothing          -- No output (other than Foo.hi-boot) for hs-boot files
1386 hscMaybeAdjustTarget dflags stop other current_hsc_lang 
1387   = hsc_lang 
1388   where
1389         keep_hc = dopt Opt_KeepHcFiles dflags
1390         hsc_lang
1391                 -- don't change the lang if we're interpreting
1392                  | current_hsc_lang == HscInterpreted = current_hsc_lang
1393
1394                 -- force -fvia-C if we are being asked for a .hc file
1395                  | HCc <- stop = HscC
1396                  | keep_hc     = HscC
1397                 -- otherwise, stick to the plan
1398                  | otherwise = current_hsc_lang
1399
1400 GLOBAL_VAR(v_Split_info, ("",0), (String,Int))
1401         -- The split prefix and number of files