9a95cdc3a62f039b4e723c5fe8c427f14ce15819
[ghc-hetmet.git] / ghc / compiler / main / DriverPipeline.hs
1 -----------------------------------------------------------------------------
2 -- $Id: DriverPipeline.hs,v 1.97 2001/08/15 00:36:54 sof Exp $
3 --
4 -- GHC Driver
5 --
6 -- (c) Simon Marlow 2000
7 --
8 -----------------------------------------------------------------------------
9
10 #include "../includes/config.h"
11
12 module DriverPipeline (
13
14         -- interfaces for the batch-mode driver
15    GhcMode(..), getGhcMode, v_GhcMode,
16    genPipeline, runPipeline, pipeLoop,
17
18         -- interfaces for the compilation manager (interpreted/batch-mode)
19    preprocess, compile, CompResult(..),
20
21         -- batch-mode linking interface
22    doLink,
23         -- DLL building
24    doMkDLL
25   ) where
26
27 #include "HsVersions.h"
28
29 import Packages
30 import CmTypes
31 import GetImports
32 import DriverState
33 import DriverUtil
34 import DriverMkDepend
35 import DriverPhases
36 import DriverFlags
37 import SysTools         ( newTempName, addFilesToClean, getSysMan, unDosifyPath )
38 import qualified SysTools       
39 import HscMain
40 import Finder
41 import HscTypes
42 import Outputable
43 import Module
44 import ErrUtils
45 import CmdLineOpts
46 import Config
47 import Panic
48 import Util
49
50 import Time             ( getClockTime )
51 import Directory
52 import System
53 import IOExts
54 import Exception
55
56 import IO
57 import Monad
58 import Maybe
59
60 import PackedString
61 import MatchPS
62
63 -----------------------------------------------------------------------------
64 -- GHC modes of operation
65
66 modeFlag :: String -> Maybe GhcMode
67 modeFlag "-M"            = Just $ DoMkDependHS
68 modeFlag "--mk-dll"      = Just $ DoMkDLL
69 modeFlag "-E"            = Just $ StopBefore Hsc
70 modeFlag "-C"            = Just $ StopBefore HCc
71 modeFlag "-S"            = Just $ StopBefore As
72 modeFlag "-c"            = Just $ StopBefore Ln
73 modeFlag "--make"        = Just $ DoMake
74 modeFlag "--interactive" = Just $ DoInteractive
75 modeFlag _               = Nothing
76
77 getGhcMode :: [String]
78          -> IO ( [String]   -- rest of command line
79                , GhcMode
80                , String     -- "GhcMode" flag
81                )
82 getGhcMode flags 
83   = case my_partition modeFlag flags of
84         ([]   , rest) -> return (rest, DoLink,  "") -- default is to do linking
85         ([(flag,one)], rest) -> return (rest, one, flag)
86         (_    , _   ) -> 
87           throwDyn (UsageError 
88                 "only one of the flags -M, -E, -C, -S, -c, --make, --interactive, -mk-dll is allowed")
89
90 -----------------------------------------------------------------------------
91 -- genPipeline
92 --
93 -- Herein is all the magic about which phases to run in which order, whether
94 -- the intermediate files should be in TMPDIR or in the current directory,
95 -- what the suffix of the intermediate files should be, etc.
96
97 -- The following compilation pipeline algorithm is fairly hacky.  A
98 -- better way to do this would be to express the whole compilation as a
99 -- data flow DAG, where the nodes are the intermediate files and the
100 -- edges are the compilation phases.  This framework would also work
101 -- nicely if a haskell dependency generator was included in the
102 -- driver.
103
104 -- It would also deal much more cleanly with compilation phases that
105 -- generate multiple intermediates, (eg. hsc generates .hc, .hi, and
106 -- possibly stub files), where some of the output files need to be
107 -- processed further (eg. the stub files need to be compiled by the C
108 -- compiler).
109
110 -- A cool thing to do would then be to execute the data flow graph
111 -- concurrently, automatically taking advantage of extra processors on
112 -- the host machine.  For example, when compiling two Haskell files
113 -- where one depends on the other, the data flow graph would determine
114 -- that the C compiler from the first compilation can be overlapped
115 -- with the hsc compilation for the second file.
116
117 data IntermediateFileType
118   = Temporary
119   | Persistent
120   deriving (Eq, Show)
121
122 genPipeline
123    :: GhcMode            -- when to stop
124    -> String             -- "stop after" flag (for error messages)
125    -> Bool               -- True => output is persistent
126    -> HscLang            -- preferred output language for hsc
127    -> (FilePath, String) -- original filename & its suffix 
128    -> IO [              -- list of phases to run for this file
129              (Phase,
130               IntermediateFileType,  -- keep the output from this phase?
131               String)                -- output file suffix
132          ]      
133
134 genPipeline todo stop_flag persistent_output lang (filename,suffix)
135  = do
136    split      <- readIORef v_Split_object_files
137    mangle     <- readIORef v_Do_asm_mangling
138    keep_hc    <- readIORef v_Keep_hc_files
139    keep_raw_s <- readIORef v_Keep_raw_s_files
140    keep_s     <- readIORef v_Keep_s_files
141    osuf       <- readIORef v_Object_suf
142    hcsuf      <- readIORef v_HC_suf
143
144    let
145    ----------- -----  ----   ---   --   --  -  -  -
146     start = startPhase suffix
147
148       -- special case for mkdependHS: .hspp files go through MkDependHS
149     start_phase | todo == DoMkDependHS && start == Hsc  = MkDependHS
150                 | otherwise = start
151
152     haskellish = haskellish_suffix suffix
153     cish = cish_suffix suffix
154
155        -- for a .hc file we need to force lang to HscC
156     real_lang | start_phase == HCc || start_phase == Mangle = HscC
157               | otherwise                                   = lang
158
159    let
160    ----------- -----  ----   ---   --   --  -  -  -
161     pipeline
162       | todo == DoMkDependHS = [ Unlit, Cpp, MkDependHS ]
163
164       | haskellish = 
165        case real_lang of
166         HscC    | split && mangle -> [ Unlit, Cpp, Hsc, HCc, Mangle, 
167                                         SplitMangle, SplitAs ]
168                 | mangle          -> [ Unlit, Cpp, Hsc, HCc, Mangle, As ]
169                 | split           -> not_valid
170                 | otherwise       -> [ Unlit, Cpp, Hsc, HCc, As ]
171
172         HscAsm  | split           -> [ Unlit, Cpp, Hsc, SplitMangle, SplitAs ]
173                 | otherwise       -> [ Unlit, Cpp, Hsc, As ]
174
175         HscJava | split           -> not_valid
176                 | otherwise       -> error "not implemented: compiling via Java"
177         HscILX  | split           -> not_valid
178                 | otherwise       -> [ Unlit, Cpp, Hsc ]
179
180       | cish      = [ Cc, As ]
181
182       | otherwise = [ ]  -- just pass this file through to the linker
183
184         -- ToDo: this is somewhat cryptic
185     not_valid = throwDyn (UsageError ("invalid option combination"))
186
187     stop_phase = case todo of 
188                         StopBefore As | split -> SplitAs
189                         StopBefore phase      -> phase
190                         DoMkDependHS          -> Ln
191                         DoLink                -> Ln
192    ----------- -----  ----   ---   --   --  -  -  -
193
194         -- this shouldn't happen.
195    if start_phase /= Ln && start_phase `notElem` pipeline
196         then throwDyn (CmdLineError ("can't find starting phase for "
197                                      ++ filename))
198         else do
199
200         -- if we can't find the phase we're supposed to stop before,
201         -- something has gone wrong.  This test carefully avoids the
202         -- case where we aren't supposed to do any compilation, because the file
203         -- is already in linkable form (for example).
204    if start_phase `elem` pipeline && 
205         (stop_phase /= Ln && stop_phase `notElem` pipeline)
206       then throwDyn (UsageError 
207                 ("flag " ++ stop_flag
208                  ++ " is incompatible with source file `" ++ filename ++ "'"))
209       else do
210
211    let
212         -- .o and .hc suffixes can be overriden by command-line options:
213       myPhaseInputExt Ln  | Just s <- osuf  = s
214       myPhaseInputExt HCc | Just s <- hcsuf = s
215       myPhaseInputExt other                 = phaseInputExt other
216
217       annotatePipeline
218          :: [Phase]             -- raw pipeline
219          -> Phase               -- phase to stop before
220          -> [(Phase, IntermediateFileType, String{-file extension-})]
221       annotatePipeline []     _    = []
222       annotatePipeline (Ln:_) _    = []
223       annotatePipeline (phase:next_phase:ps) stop = 
224           (phase, keep_this_output, myPhaseInputExt next_phase)
225              : annotatePipeline (next_phase:ps) stop
226           where
227                 keep_this_output
228                      | next_phase == stop 
229                      = if persistent_output then Persistent else Temporary
230                      | otherwise
231                      = case next_phase of
232                              Ln -> Persistent
233                              Mangle | keep_raw_s -> Persistent
234                              As     | keep_s     -> Persistent
235                              HCc    | keep_hc    -> Persistent
236                              _other              -> Temporary
237
238         -- add information about output files to the pipeline
239         -- the suffix on an output file is determined by the next phase
240         -- in the pipeline, so we add linking to the end of the pipeline
241         -- to force the output from the final phase to be a .o file.
242
243       annotated_pipeline = annotatePipeline (pipeline ++ [Ln]) stop_phase
244
245       phase_ne p (p1,_,_) = (p1 /= p)
246    ----------- -----  ----   ---   --   --  -  -  -
247
248    return (
249      takeWhile (phase_ne stop_phase ) $
250      dropWhile (phase_ne start_phase) $
251      annotated_pipeline
252     )
253
254
255 runPipeline
256   :: [ (Phase, IntermediateFileType, String) ] -- phases to run
257   -> (String,String)            -- input file
258   -> Bool                       -- doing linking afterward?
259   -> Bool                       -- take into account -o when generating output?
260   -> IO (String, String)        -- return final filename
261
262 runPipeline pipeline (input_fn,suffix) do_linking use_ofile
263   = pipeLoop pipeline (input_fn,suffix) do_linking use_ofile basename suffix
264   where (basename, _) = splitFilename input_fn
265
266 pipeLoop [] input_fn _ _ _ _ = return input_fn
267 pipeLoop ((phase, keep, o_suffix):phases) 
268         (input_fn,real_suff) do_linking use_ofile orig_basename orig_suffix
269   = do
270
271      output_fn <- outputFileName (null phases) keep o_suffix
272
273      mbCarryOn <- run_phase phase orig_basename orig_suffix input_fn output_fn 
274         -- sometimes we bail out early, eg. when the compiler's recompilation
275         -- checker has determined that recompilation isn't necessary.
276      case mbCarryOn of
277        Nothing -> do
278               let (_,keep,final_suffix) = last phases
279               ofile <- outputFileName True keep final_suffix
280               return (ofile, final_suffix)
281           -- carry on ...
282        Just fn -> 
283               {-
284                Notice that in order to keep the invariant that we can
285                determine a compilation pipeline's 'start phase' just
286                by looking at the input filename, the input filename
287                to the next stage/phase is associated here with the suffix
288                of the output file, *even* if it does not have that
289                suffix in reality.
290                
291                Why is this important? Because we may run a compilation
292                pipeline in stages (cf. Main.main.compileFile's two stages),
293                so when generating the next stage we need to be precise
294                about what kind of file (=> suffix) is given as input.
295
296                [Not having to generate a pipeline in stages seems like
297                 the right way to go, but I've punted on this for now --sof]
298                
299               -}
300               pipeLoop phases (fn, o_suffix) do_linking use_ofile
301                         orig_basename orig_suffix
302   where
303      outputFileName last_phase keep suffix
304         = do o_file <- readIORef v_Output_file
305              if last_phase && not do_linking && use_ofile && isJust o_file
306                then case o_file of 
307                        Just s  -> return s
308                        Nothing -> error "outputFileName"
309                else if keep == Persistent
310                            then odir_ify (orig_basename ++ '.':suffix)
311                            else newTempName suffix
312
313 run_phase :: Phase
314           -> String                -- basename of original input source
315           -> String                -- its extension
316           -> FilePath              -- name of file which contains the input to this phase.
317           -> FilePath              -- where to stick the result.
318           -> IO (Maybe FilePath)
319                   -- Nothing => stop the compilation pipeline
320                   -- Just fn => the result of this phase can be found in 'fn'
321                   --            (this can either be 'input_fn' or 'output_fn').
322 -------------------------------------------------------------------------------
323 -- Unlit phase 
324
325 run_phase Unlit _basename _suff input_fn output_fn
326   = do unlit_flags <- getOpts opt_L
327        -- The -h option passes the file name for unlit to put in a #line directive;
328        -- we undosify it so that it doesn't contain backslashes in Windows, which
329        -- would disappear in error messages
330        SysTools.runUnlit (map SysTools.Option unlit_flags ++
331                           [ SysTools.Option     "-h"
332                           , SysTools.Option     input_fn
333                           , SysTools.FileOption input_fn
334                           , SysTools.FileOption output_fn
335                           ])
336        return (Just output_fn)
337
338 -------------------------------------------------------------------------------
339 -- Cpp phase 
340
341 run_phase Cpp basename suff input_fn output_fn
342   = do src_opts <- getOptionsFromSource input_fn
343        unhandled_flags <- processArgs dynamic_flags src_opts []
344        checkProcessArgsResult unhandled_flags basename suff
345
346        do_cpp <- dynFlag cppFlag
347        if not do_cpp then
348            -- no need to preprocess CPP, just pass input file along
349            -- to the next phase of the pipeline.
350           return (Just input_fn)
351         else do
352             hscpp_opts      <- getOpts opt_P
353             hs_src_cpp_opts <- readIORef v_Hs_source_cpp_opts
354
355             cmdline_include_paths <- readIORef v_Include_paths
356             pkg_include_dirs <- getPackageIncludePath
357             let include_paths = foldr (\ x xs -> "-I" : x : xs) []
358                                   (cmdline_include_paths ++ pkg_include_dirs)
359
360             verb <- getVerbFlag
361             (md_c_flags, _) <- machdepCCOpts
362
363             SysTools.runCpp ([SysTools.Option verb]
364                             ++ map SysTools.Option include_paths
365                             ++ map SysTools.Option hs_src_cpp_opts
366                             ++ map SysTools.Option hscpp_opts
367                             ++ map SysTools.Option md_c_flags
368                             ++ [ SysTools.Option     "-x"
369                                , SysTools.Option     "c"
370                                , SysTools.FileOption input_fn
371                                , SysTools.Option     "-o"
372                                , SysTools.FileOption output_fn
373                                ])
374             return (Just output_fn)
375
376 -----------------------------------------------------------------------------
377 -- MkDependHS phase
378
379 run_phase MkDependHS basename suff input_fn output_fn = do 
380    src <- readFile input_fn
381    let (import_sources, import_normals, _) = getImports src
382
383    let orig_fn = basename ++ '.':suff
384    deps_sources <- mapM (findDependency True  orig_fn) import_sources
385    deps_normals <- mapM (findDependency False orig_fn) import_normals
386    let deps = deps_sources ++ deps_normals
387
388    osuf_opt <- readIORef v_Object_suf
389    let osuf = case osuf_opt of
390                         Nothing -> phaseInputExt Ln
391                         Just s  -> s
392
393    extra_suffixes <- readIORef v_Dep_suffixes
394    let suffixes = osuf : map (++ ('_':osuf)) extra_suffixes
395        ofiles = map (\suf -> basename ++ '.':suf) suffixes
396            
397    objs <- mapM odir_ify ofiles
398    
399         -- Handle for file that accumulates dependencies 
400    hdl <- readIORef v_Dep_tmp_hdl
401
402         -- std dependency of the object(s) on the source file
403    hPutStrLn hdl (unwords objs ++ " : " ++ basename ++ '.':suff)
404
405    let genDep (dep, False {- not an hi file -}) = 
406           hPutStrLn hdl (unwords objs ++ " : " ++ dep)
407        genDep (dep, True  {- is an hi file -}) = do
408           hisuf <- readIORef v_Hi_suf
409           let dep_base = remove_suffix '.' dep
410               deps = (dep_base ++ hisuf)
411                      : map (\suf -> dep_base ++ suf ++ '_':hisuf) extra_suffixes
412                   -- length objs should be == length deps
413           sequence_ (zipWith (\o d -> hPutStrLn hdl (o ++ " : " ++ d)) objs deps)
414
415    mapM genDep [ d | Just d <- deps ]
416
417    return (Just output_fn)
418
419 -- add the lines to dep_makefile:
420            -- always:
421                    -- this.o : this.hs
422
423            -- if the dependency is on something other than a .hi file:
424                    -- this.o this.p_o ... : dep
425            -- otherwise
426                    -- if the import is {-# SOURCE #-}
427                            -- this.o this.p_o ... : dep.hi-boot[-$vers]
428                            
429                    -- else
430                            -- this.o ...   : dep.hi
431                            -- this.p_o ... : dep.p_hi
432                            -- ...
433    
434            -- (where .o is $osuf, and the other suffixes come from
435            -- the cmdline -s options).
436    
437 -----------------------------------------------------------------------------
438 -- Hsc phase
439
440 -- Compilation of a single module, in "legacy" mode (_not_ under
441 -- the direction of the compilation manager).
442 run_phase Hsc basename suff input_fn output_fn
443   = do
444         
445   -- we add the current directory (i.e. the directory in which
446   -- the .hs files resides) to the import path, since this is
447   -- what gcc does, and it's probably what you want.
448         let current_dir = getdir basename
449         
450         paths <- readIORef v_Include_paths
451         writeIORef v_Include_paths (current_dir : paths)
452         
453   -- figure out which header files to #include in a generated .hc file
454         c_includes <- getPackageCIncludes
455         cmdline_includes <- dynFlag cmdlineHcIncludes -- -#include options
456
457         let cc_injects = unlines (map mk_include 
458                                  (c_includes ++ reverse cmdline_includes))
459             mk_include h_file = 
460                 case h_file of 
461                    '"':_{-"-} -> "#include "++h_file
462                    '<':_      -> "#include "++h_file
463                    _          -> "#include \""++h_file++"\""
464
465         writeIORef v_HCHeader cc_injects
466
467   -- gather the imports and module name
468         (srcimps,imps,mod_name) <- getImportsFromFile input_fn
469
470   -- build a ModuleLocation to pass to hscMain.
471         (mod, location')
472            <- mkHomeModuleLocn mod_name basename (Just (basename ++ '.':suff))
473
474   -- take -ohi into account if present
475         ohi <- readIORef v_Output_hi
476         let location | Just fn <- ohi = location'{ ml_hi_file = fn }
477                      | otherwise      = location'
478
479   -- figure out if the source has changed, for recompilation avoidance.
480   -- only do this if we're eventually going to generate a .o file.
481   -- (ToDo: do when generating .hc files too?)
482   --
483   -- Setting source_unchanged to True means that M.o seems
484   -- to be up to date wrt M.hs; so no need to recompile unless imports have
485   -- changed (which the compiler itself figures out).
486   -- Setting source_unchanged to False tells the compiler that M.o is out of
487   -- date wrt M.hs (or M.o doesn't exist) so we must recompile regardless.
488         do_recomp   <- readIORef v_Recomp
489         todo        <- readIORef v_GhcMode
490         expl_o_file <- readIORef v_Output_file
491         let o_file = 
492                 case expl_o_file of
493                   Nothing -> unJust "source_unchanged" (ml_obj_file location)
494                   Just x  -> x
495         source_unchanged <- 
496           if not (do_recomp && ( todo == DoLink || todo == StopBefore Ln ))
497              then return False
498              else do t1 <- getModificationTime (basename ++ '.':suff)
499                      o_file_exists <- doesFileExist o_file
500                      if not o_file_exists
501                         then return False       -- Need to recompile
502                         else do t2 <- getModificationTime o_file
503                                 if t2 > t1
504                                   then return True
505                                   else return False
506
507   -- get the DynFlags
508         dyn_flags <- getDynFlags
509
510         let dyn_flags' = dyn_flags { hscOutName = output_fn,
511                                      hscStubCOutName = basename ++ "_stub.c",
512                                      hscStubHOutName = basename ++ "_stub.h",
513                                      extCoreName = basename ++ ".core" }
514
515   -- run the compiler!
516         pcs <- initPersistentCompilerState
517         result <- hscMain OneShot
518                           dyn_flags' mod
519                           location{ ml_hspp_file=Just input_fn }
520                           source_unchanged
521                           False
522                           Nothing        -- no iface
523                           emptyModuleEnv -- HomeSymbolTable
524                           emptyModuleEnv -- HomeIfaceTable
525                           pcs
526
527         case result of {
528
529             HscFail pcs -> throwDyn (PhaseFailed "hsc" (ExitFailure 1));
530
531             HscNoRecomp pcs details iface -> do { SysTools.touch "Touching object file" o_file
532                                                 ; return Nothing } ;
533
534             HscRecomp pcs details iface stub_h_exists stub_c_exists
535                       _maybe_interpreted_code -> do
536
537             -- deal with stubs
538         maybe_stub_o <- compileStub dyn_flags' stub_c_exists
539         case maybe_stub_o of
540                 Nothing -> return ()
541                 Just stub_o -> add v_Ld_inputs stub_o
542
543         return (Just output_fn)
544     }
545
546 -----------------------------------------------------------------------------
547 -- Cc phase
548
549 -- we don't support preprocessing .c files (with -E) now.  Doing so introduces
550 -- way too many hacks, and I can't say I've ever used it anyway.
551
552 run_phase cc_phase basename suff input_fn output_fn
553    | cc_phase == Cc || cc_phase == HCc
554    = do cc_opts              <- getOpts opt_c
555         cmdline_include_paths <- readIORef v_Include_paths
556
557         let hcc = cc_phase == HCc
558
559                 -- add package include paths even if we're just compiling
560                 -- .c files; this is the Value Add(TM) that using
561                 -- ghc instead of gcc gives you :)
562         pkg_include_dirs <- getPackageIncludePath
563         let include_paths = foldr (\ x xs -> "-I" : x : xs) []
564                               (cmdline_include_paths ++ pkg_include_dirs)
565
566         mangle <- readIORef v_Do_asm_mangling
567         (md_c_flags, md_regd_c_flags) <- machdepCCOpts
568
569         verb <- getVerbFlag
570
571         o2 <- readIORef v_minus_o2_for_C
572         let opt_flag | o2        = "-O2"
573                      | otherwise = "-O"
574
575         pkg_extra_cc_opts <- getPackageExtraCcOpts
576
577         split_objs <- readIORef v_Split_object_files
578         let split_opt | hcc && split_objs = [ "-DUSE_SPLIT_MARKERS" ]
579                       | otherwise         = [ ]
580
581         excessPrecision <- readIORef v_Excess_precision
582         SysTools.runCc ([ SysTools.Option "-x", SysTools.Option "c"
583                         , SysTools.FileOption input_fn
584                         , SysTools.Option "-o"
585                         , SysTools.FileOption output_fn
586                         ]
587                        ++ map SysTools.Option (
588                           md_c_flags
589                        ++ (if cc_phase == HCc && mangle
590                              then md_regd_c_flags
591                              else [])
592                        ++ [ verb, "-S", "-Wimplicit", opt_flag ]
593                        ++ [ "-D__GLASGOW_HASKELL__="++cProjectVersionInt ]
594                        ++ cc_opts
595                        ++ split_opt
596                        ++ (if excessPrecision then [] else [ "-ffloat-store" ])
597                        ++ include_paths
598                        ++ pkg_extra_cc_opts
599                        ))
600         return (Just output_fn)
601
602         -- ToDo: postprocess the output from gcc
603
604 -----------------------------------------------------------------------------
605 -- Mangle phase
606
607 run_phase Mangle _basename _suff input_fn output_fn
608   = do mangler_opts <- getOpts opt_m
609        machdep_opts <- if (prefixMatch "i386" cTARGETPLATFORM)
610                        then do n_regs <- dynFlag stolen_x86_regs
611                                return [ show n_regs ]
612                        else return []
613
614        SysTools.runMangle (map SysTools.Option mangler_opts
615                           ++ [ SysTools.FileOption input_fn
616                              , SysTools.FileOption output_fn
617                              ]
618                           ++ map SysTools.Option machdep_opts)
619        return (Just output_fn)
620
621 -----------------------------------------------------------------------------
622 -- Splitting phase
623
624 run_phase SplitMangle _basename _suff input_fn output_fn
625   = do  -- tmp_pfx is the prefix used for the split .s files
626         -- We also use it as the file to contain the no. of split .s files (sigh)
627         split_s_prefix <- SysTools.newTempName "split"
628         let n_files_fn = split_s_prefix
629
630         SysTools.runSplit [ SysTools.FileOption input_fn
631                           , SysTools.FileOption split_s_prefix
632                           , SysTools.FileOption n_files_fn
633                           ]
634
635         -- Save the number of split files for future references
636         s <- readFile n_files_fn
637         let n_files = read s :: Int
638         writeIORef v_Split_info (split_s_prefix, n_files)
639
640         -- Remember to delete all these files
641         addFilesToClean [ split_s_prefix ++ "__" ++ show n ++ ".s"
642                         | n <- [1..n_files]]
643
644         return (Just output_fn)
645
646 -----------------------------------------------------------------------------
647 -- As phase
648
649 run_phase As _basename _suff input_fn output_fn
650   = do  as_opts               <- getOpts opt_a
651         cmdline_include_paths <- readIORef v_Include_paths
652
653         SysTools.runAs (map SysTools.Option as_opts
654                        ++ [ SysTools.Option ("-I" ++ p) | p <- cmdline_include_paths ]
655                        ++ [ SysTools.Option "-c"
656                           , SysTools.FileOption input_fn
657                           , SysTools.Option "-o"
658                           , SysTools.FileOption output_fn
659                           ])
660         return (Just output_fn)
661
662 run_phase SplitAs basename _suff _input_fn output_fn
663   = do  as_opts <- getOpts opt_a
664
665         (split_s_prefix, n) <- readIORef v_Split_info
666
667         odir <- readIORef v_Output_dir
668         let real_odir = case odir of
669                                 Nothing -> basename
670                                 Just d  -> d
671
672         let assemble_file n
673               = do  let input_s  = split_s_prefix ++ "__" ++ show n ++ ".s"
674                     let output_o = newdir real_odir 
675                                         (basename ++ "__" ++ show n ++ ".o")
676                     real_o <- osuf_ify output_o
677                     SysTools.runAs (map SysTools.Option as_opts ++
678                                     [ SysTools.Option "-c"
679                                     , SysTools.Option "-o"
680                                     , SysTools.FileOption real_o
681                                     , SysTools.FileOption input_s
682                                     ])
683         
684         mapM_ assemble_file [1..n]
685         return (Just output_fn)
686
687 -----------------------------------------------------------------------------
688 -- MoveBinary sort-of-phase
689 -- After having produced a binary, move it somewhere else and generate a
690 -- wrapper script calling the binary. Currently, we need this only in 
691 -- a parallel way (i.e. in GUM), because PVM expects the binary in a
692 -- central directory.
693 -- This is called from doLink below, after linking. I haven't made it
694 -- a separate phase to minimise interfering with other modules, and
695 -- we don't need the generality of a phase (MoveBinary is always
696 -- done after linking and makes only sense in a parallel setup)   -- HWL
697
698 run_phase_MoveBinary input_fn
699   = do  
700         sysMan   <- getSysMan
701         pvm_root <- getEnv "PVM_ROOT"
702         pvm_arch <- getEnv "PVM_ARCH"
703         let 
704            pvm_executable_base = "=" ++ input_fn
705            pvm_executable = pvm_root ++ "/bin/" ++ pvm_arch ++ "/" ++ pvm_executable_base
706         -- nuke old binary; maybe use configur'ed names for cp and rm?
707         system ("rm -f " ++ pvm_executable)
708         -- move the newly created binary into PVM land
709         system ("cp -p " ++ input_fn ++ " " ++ pvm_executable)
710         -- generate a wrapper script for running a parallel prg under PVM
711         writeFile input_fn (mk_pvm_wrapper_script pvm_executable pvm_executable_base sysMan)
712         return True
713
714 -- generates a Perl skript starting a parallel prg under PVM
715 mk_pvm_wrapper_script :: String -> String -> String -> String
716 mk_pvm_wrapper_script pvm_executable pvm_executable_base sysMan = unlines $
717  [
718   "eval 'exec perl -S $0 ${1+\"$@\"}'", 
719   "  if $running_under_some_shell;",
720   "# =!=!=!=!=!=!=!=!=!=!=!",
721   "# This script is automatically generated: DO NOT EDIT!!!",
722   "# Generated by Glasgow Haskell Compiler",
723   "# ngoqvam choHbogh vaj' vIHoHnISbej !!!!",
724   "#",
725   "$pvm_executable      = '" ++ pvm_executable ++ "';",
726   "$pvm_executable_base = '" ++ pvm_executable_base ++ "';",
727   "$SysMan = '" ++ sysMan ++ "';",
728   "",
729   {- ToDo: add the magical shortcuts again iff we actually use them -- HWL
730   "# first, some magical shortcuts to run "commands" on the binary",
731   "# (which is hidden)",
732   "if ($#ARGV == 1 && $ARGV[0] eq '+RTS' && $ARGV[1] =~ /^--((size|file|strip|rm|nm).*)/ ) {",
733   "    local($cmd) = $1;",
734   "    system("$cmd $pvm_executable");",
735   "    exit(0); # all done",
736   "}", -}
737   "",
738   "# Now, run the real binary; process the args first",
739   "$ENV{'PE'} = $pvm_executable_base;", --  ++ pvm_executable_base,
740   "$debug = '';",
741   "$nprocessors = 0; # the default: as many PEs as machines in PVM config",
742   "@nonPVM_args = ();",
743   "$in_RTS_args = 0;",
744   "",
745   "args: while ($a = shift(@ARGV)) {",
746   "    if ( $a eq '+RTS' ) {",
747   "     $in_RTS_args = 1;",
748   "    } elsif ( $a eq '-RTS' ) {",
749   "     $in_RTS_args = 0;",
750   "    }",
751   "    if ( $a eq '-d' && $in_RTS_args ) {",
752   "     $debug = '-';",
753   "    } elsif ( $a =~ /^-qN(\\d+)/ && $in_RTS_args ) {",
754   "     $nprocessors = $1;",
755   "    } elsif ( $a =~ /^-qp(\\d+)/ && $in_RTS_args ) {",
756   "     $nprocessors = $1;",
757   "    } else {",
758   "     push(@nonPVM_args, $a);",
759   "    }",
760   "}",
761   "",
762   "local($return_val) = 0;",
763   "# Start the parallel execution by calling SysMan",
764   "system(\"$SysMan $debug $pvm_executable $nprocessors @nonPVM_args\");",
765   "$return_val = $?;",
766   "# ToDo: fix race condition moving files and flushing them!!",
767   "system(\"cp $ENV{'HOME'}/$pvm_executable_base.???.gr .\") if -f \"$ENV{'HOME'}/$pvm_executable_base.002.gr\";",
768   "exit($return_val);"
769  ]
770
771 -----------------------------------------------------------------------------
772 -- Complain about non-dynamic flags in OPTIONS pragmas
773
774 checkProcessArgsResult flags basename suff
775   = do when (not (null flags)) (throwDyn (ProgramError (
776            basename ++ "." ++ suff 
777            ++ ": static flags are not allowed in {-# OPTIONS #-} pragmas:\n\t" 
778            ++ unwords flags)) (ExitFailure 1))
779
780 -----------------------------------------------------------------------------
781 -- Linking
782
783 doLink :: [String] -> IO ()
784 doLink o_files = do
785     verb       <- getVerbFlag
786     static     <- readIORef v_Static
787     no_hs_main <- readIORef v_NoHsMain
788
789     o_file <- readIORef v_Output_file
790     let output_fn = case o_file of { Just s -> s; Nothing -> "a.out"; }
791
792     pkg_lib_paths <- getPackageLibraryPath
793     let pkg_lib_path_opts = map ("-L"++) pkg_lib_paths
794
795     lib_paths <- readIORef v_Library_paths
796     let lib_path_opts = map ("-L"++) lib_paths
797
798     pkg_libs <- getPackageLibraries
799     let imp          = if static then "" else "_imp"
800         pkg_lib_opts = map (\lib -> "-l" ++ lib ++ imp) pkg_libs
801
802     libs <- readIORef v_Cmdline_libraries
803     let lib_opts = map ("-l"++) (reverse libs)
804          -- reverse because they're added in reverse order from the cmd line
805
806     pkg_extra_ld_opts <- getPackageExtraLdOpts
807
808         -- probably _stub.o files
809     extra_ld_inputs <- readIORef v_Ld_inputs
810
811         -- opts from -optl-<blah>
812     extra_ld_opts <- getStaticOpts v_Opt_l
813
814     rts_pkg <- getPackageDetails ["rts"]
815     std_pkg <- getPackageDetails ["std"]
816     let extra_os = if static || no_hs_main
817                    then []
818                    else [ head (library_dirs (head rts_pkg)) ++ "/Main.dll_o",
819                           head (library_dirs (head std_pkg)) ++ "/PrelMain.dll_o" ]
820
821     (md_c_flags, _) <- machdepCCOpts
822     SysTools.runLink ( [ SysTools.Option verb
823                        , SysTools.Option "-o"
824                        , SysTools.FileOption output_fn
825                        ]
826                       ++ map SysTools.Option (
827                          md_c_flags
828                       ++ o_files
829                       ++ extra_os
830                       ++ extra_ld_inputs
831                       ++ lib_path_opts
832                       ++ lib_opts
833                       ++ pkg_lib_path_opts
834                       ++ pkg_lib_opts
835                       ++ pkg_extra_ld_opts
836                       ++ extra_ld_opts
837                       ++ if static && not no_hs_main then
838 #ifdef LEADING_UNDERSCORE
839                             [ "-u", "_PrelMain_mainIO_closure" ,
840                               "-u", "___init_PrelMain"] 
841 #else
842                             [ "-u", prefixUnderscore "PrelMain_mainIO_closure" ,
843                               "-u", prefixUnderscore "__init_PrelMain"] 
844 #endif
845                          else []))
846
847     -- parallel only: move binary to another dir -- HWL
848     ways_ <- readIORef v_Ways
849     when (WayPar `elem` ways_)
850          (do success <- run_phase_MoveBinary output_fn
851              if success then return ()
852                         else throwDyn (InstallationError ("cannot move binary to PVM dir")))
853
854 -----------------------------------------------------------------------------
855 -- Making a DLL (only for Win32)
856
857 doMkDLL :: [String] -> IO ()
858 doMkDLL o_files = do
859     verb       <- getVerbFlag
860     static     <- readIORef v_Static
861     no_hs_main <- readIORef v_NoHsMain
862
863     o_file <- readIORef v_Output_file
864     let output_fn = case o_file of { Just s -> s; Nothing -> "HSdll.dll"; }
865
866     pkg_lib_paths <- getPackageLibraryPath
867     let pkg_lib_path_opts = map ("-L"++) pkg_lib_paths
868
869     lib_paths <- readIORef v_Library_paths
870     let lib_path_opts = map ("-L"++) lib_paths
871
872     pkg_libs <- getPackageLibraries
873     let imp = if static then "" else "_imp"
874         pkg_lib_opts = map (\lib -> "-l" ++ lib ++ imp) pkg_libs
875
876     libs <- readIORef v_Cmdline_libraries
877     let lib_opts = map ("-l"++) (reverse libs)
878          -- reverse because they're added in reverse order from the cmd line
879
880     pkg_extra_ld_opts <- getPackageExtraLdOpts
881
882         -- probably _stub.o files
883     extra_ld_inputs <- readIORef v_Ld_inputs
884
885         -- opts from -optdll-<blah>
886     extra_ld_opts <- getStaticOpts v_Opt_dll
887
888     rts_pkg <- getPackageDetails ["rts"]
889     std_pkg <- getPackageDetails ["std"]
890
891     let extra_os = if static || no_hs_main
892                    then []
893                    else [ head (library_dirs (head rts_pkg)) ++ "/Main.dll_o",
894                           head (library_dirs (head std_pkg)) ++ "/PrelMain.dll_o" ]
895
896     (md_c_flags, _) <- machdepCCOpts
897     SysTools.runMkDLL
898          ([ SysTools.Option verb
899           , SysTools.Option "-o"
900           , SysTools.FileOption output_fn
901           ]
902          ++ map SysTools.Option (
903             md_c_flags
904          ++ o_files
905          ++ extra_os
906          ++ [ "--target=i386-mingw32" ]
907          ++ extra_ld_inputs
908          ++ lib_path_opts
909          ++ lib_opts
910          ++ pkg_lib_path_opts
911          ++ pkg_lib_opts
912          ++ pkg_extra_ld_opts
913          ++ (case findPS (packString (concat extra_ld_opts)) (packString "--def") of
914                Nothing -> [ "--export-all" ]
915                Just _  -> [ "" ])
916          ++ extra_ld_opts
917         ))
918
919 -----------------------------------------------------------------------------
920 -- Just preprocess a file, put the result in a temp. file (used by the
921 -- compilation manager during the summary phase).
922
923 preprocess :: FilePath -> IO FilePath
924 preprocess filename =
925   ASSERT(haskellish_src_file filename) 
926   do restoreDynFlags    -- Restore to state of last save
927      pipeline <- genPipeline (StopBefore Hsc) ("preprocess") False 
928                              defaultHscLang (filename, getFileSuffix filename)
929      (fn,_)   <- runPipeline pipeline (filename,getFileSuffix filename)
930                              False{-no linking-} False{-no -o flag-}
931      return fn
932
933 -----------------------------------------------------------------------------
934 -- Compile a single module, under the control of the compilation manager.
935 --
936 -- This is the interface between the compilation manager and the
937 -- compiler proper (hsc), where we deal with tedious details like
938 -- reading the OPTIONS pragma from the source file, and passing the
939 -- output of hsc through the C compiler.
940
941 -- The driver sits between 'compile' and 'hscMain', translating calls
942 -- to the former into calls to the latter, and results from the latter
943 -- into results from the former.  It does things like preprocessing
944 -- the .hs file if necessary, and compiling up the .stub_c files to
945 -- generate Linkables.
946
947 -- NB.  No old interface can also mean that the source has changed.
948
949 compile :: GhciMode                -- distinguish batch from interactive
950         -> ModSummary              -- summary, including source
951         -> Bool                    -- True <=> source unchanged
952         -> Bool                    -- True <=> have object
953         -> Maybe ModIface          -- old interface, if available
954         -> HomeSymbolTable         -- for home module ModDetails
955         -> HomeIfaceTable          -- for home module Ifaces
956         -> PersistentCompilerState -- persistent compiler state
957         -> IO CompResult
958
959 data CompResult
960    = CompOK   PersistentCompilerState   -- updated PCS
961               ModDetails  -- new details (HST additions)
962               ModIface    -- new iface   (HIT additions)
963               (Maybe Linkable)
964                        -- new code; Nothing => compilation was not reqd
965                        -- (old code is still valid)
966
967    | CompErrs PersistentCompilerState   -- updated PCS
968
969
970 compile ghci_mode summary source_unchanged have_object 
971         old_iface hst hit pcs = do 
972    dyn_flags <- restoreDynFlags         -- Restore to the state of the last save
973
974
975    showPass dyn_flags 
976         (showSDoc (text "Compiling" <+> ppr (name_of_summary summary)))
977
978    let verb       = verbosity dyn_flags
979    let location   = ms_location summary
980    let input_fn   = unJust "compile:hs" (ml_hs_file location) 
981    let input_fnpp = unJust "compile:hspp" (ml_hspp_file location)
982
983    when (verb >= 2) (hPutStrLn stderr ("compile: input file " ++ input_fnpp))
984
985    opts <- getOptionsFromSource input_fnpp
986    processArgs dynamic_flags opts []
987    dyn_flags <- getDynFlags
988
989    let hsc_lang      = hscLang dyn_flags
990        (basename, _) = splitFilename input_fn
991        
992    keep_hc <- readIORef v_Keep_hc_files
993    keep_s  <- readIORef v_Keep_s_files
994
995    output_fn <- 
996         case hsc_lang of
997            HscAsm  | keep_s    -> return (basename ++ '.':phaseInputExt As)
998                    | otherwise -> newTempName (phaseInputExt As)
999            HscC    | keep_hc   -> return (basename ++ '.':phaseInputExt HCc)
1000                    | otherwise -> newTempName (phaseInputExt HCc)
1001            HscJava             -> newTempName "java" -- ToDo
1002            HscILX              -> return (basename ++ ".ilx")   
1003                                     -- newTempName "ilx"        -- ToDo
1004            HscInterpreted      -> return (error "no output file")
1005
1006    let dyn_flags' = dyn_flags { hscOutName = output_fn,
1007                                 hscStubCOutName = basename ++ "_stub.c",
1008                                 hscStubHOutName = basename ++ "_stub.h",
1009                                 extCoreName = basename ++ ".core" }
1010
1011    -- figure out which header files to #include in a generated .hc file
1012    c_includes <- getPackageCIncludes
1013    cmdline_includes <- dynFlag cmdlineHcIncludes -- -#include options
1014
1015    let cc_injects = unlines (map mk_include 
1016                                  (c_includes ++ reverse cmdline_includes))
1017        mk_include h_file = 
1018         case h_file of 
1019            '"':_{-"-} -> "#include "++h_file
1020            '<':_      -> "#include "++h_file
1021            _          -> "#include \""++h_file++"\""
1022
1023    writeIORef v_HCHeader cc_injects
1024
1025    -- run the compiler
1026    hsc_result <- hscMain ghci_mode dyn_flags'
1027                          (ms_mod summary) location
1028                          source_unchanged have_object old_iface hst hit pcs
1029
1030    case hsc_result of
1031       HscFail pcs -> return (CompErrs pcs)
1032
1033       HscNoRecomp pcs details iface -> return (CompOK pcs details iface Nothing)
1034
1035       HscRecomp pcs details iface
1036         stub_h_exists stub_c_exists maybe_interpreted_code -> do
1037            
1038            let 
1039            maybe_stub_o <- compileStub dyn_flags' stub_c_exists
1040            let stub_unlinked = case maybe_stub_o of
1041                                   Nothing -> []
1042                                   Just stub_o -> [ DotO stub_o ]
1043
1044            (hs_unlinked, unlinked_time) <-
1045              case hsc_lang of
1046
1047                 -- in interpreted mode, just return the compiled code
1048                 -- as our "unlinked" object.
1049                 HscInterpreted -> 
1050                     case maybe_interpreted_code of
1051 #ifdef GHCI
1052                        Just (bcos,itbl_env) -> do tm <- getClockTime 
1053                                                   return ([BCOs bcos itbl_env], tm)
1054 #endif
1055                        Nothing -> panic "compile: no interpreted code"
1056
1057                 -- we're in batch mode: finish the compilation pipeline.
1058                 _other -> do pipe <- genPipeline (StopBefore Ln) "" True 
1059                                         hsc_lang (output_fn, getFileSuffix output_fn)
1060                              -- runPipeline takes input_fn so it can split off 
1061                              -- the base name and use it as the base of 
1062                              -- the output object file.
1063                              let (basename, suffix) = splitFilename input_fn
1064                              (o_file,_) <- 
1065                                  pipeLoop pipe (output_fn, getFileSuffix output_fn)
1066                                                False False 
1067                                                basename suffix
1068                              o_time <- getModificationTime o_file
1069                              return ([DotO o_file], o_time)
1070
1071            let linkable = LM unlinked_time (moduleName (ms_mod summary)) 
1072                              (hs_unlinked ++ stub_unlinked)
1073
1074            return (CompOK pcs details iface (Just linkable))
1075
1076
1077 -----------------------------------------------------------------------------
1078 -- stub .h and .c files (for foreign export support)
1079
1080 compileStub dflags stub_c_exists
1081   | not stub_c_exists = return Nothing
1082   | stub_c_exists = do
1083         -- compile the _stub.c file w/ gcc
1084         let stub_c = hscStubCOutName dflags
1085         pipeline   <- genPipeline (StopBefore Ln) "" True defaultHscLang (stub_c,"c")
1086         (stub_o,_) <- runPipeline pipeline (stub_c,"c") False{-no linking-} 
1087                                   False{-no -o option-}
1088         return (Just stub_o)