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