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