[project @ 2001-06-29 12:58:20 by rrt]
[ghc-hetmet.git] / ghc / compiler / main / Main.hs
1 {-# OPTIONS -fno-warn-incomplete-patterns #-}
2 -----------------------------------------------------------------------------
3 -- $Id: Main.hs,v 1.77 2001/06/29 12:58:20 rrt Exp $
4 --
5 -- GHC Driver program
6 --
7 -- (c) Simon Marlow 2000
8 --
9 -----------------------------------------------------------------------------
10
11 -- with path so that ghc -M can find config.h
12 #include "../includes/config.h"
13
14 module Main (main) where
15
16 #include "HsVersions.h"
17
18
19 #ifdef GHCI
20 import InteractiveUI(ghciWelcomeMsg, interactiveUI)
21 #endif
22
23
24 import Finder           ( initFinder )
25 import CompManager      ( cmInit, cmLoadModule )
26 import HscTypes         ( GhciMode(..) )
27 import Config           ( cBooterVersion, cGhcUnregisterised, cProjectVersion )
28 import SysTools         ( packageConfigPath, initSysTools, cleanTempFiles )
29 import Packages         ( showPackages, mungePackagePaths )
30 import ParsePkgConf     ( loadPackageConfig )
31
32 import DriverPipeline   ( GhcMode(..), doLink, doMkDLL, genPipeline,
33                           getGhcMode, pipeLoop, v_GhcMode
34                         )
35 import DriverState      ( buildCoreToDo, buildStgToDo, defaultHscLang,
36                           findBuildTag, getPackageInfo, unregFlags, 
37                           v_Cmdline_libraries, v_Keep_tmp_files, v_Ld_inputs,
38                           v_OptLevel, v_Output_file, v_Output_hi, 
39                           v_Package_details, v_Ways, getPackageExtraGhcOpts
40                         )
41 import DriverFlags      ( dynFlag, buildStaticHscOpts, dynamic_flags,
42                           processArgs, static_flags)
43
44 import DriverMkDepend   ( beginMkDependHS, endMkDependHS )
45 import DriverPhases     ( Phase(Hsc, HCc), haskellish_src_file, objish_file )
46
47 import DriverUtil       ( add, handle, handleDyn, later, splitFilename,
48                           unknownFlagErr )
49 import CmdLineOpts      ( dynFlag, defaultDynFlags, restoreDynFlags,
50                           saveDynFlags, setDynFlags, 
51                           DynFlags(..), HscLang(..), v_Static_hsc_opts
52                         )
53
54 import Outputable
55 import Util
56 import Panic            ( GhcException(..), panic )
57
58 -- Standard Haskell libraries
59 import IO
60 import Directory        ( doesFileExist )
61 import IOExts           ( readIORef, writeIORef )
62 import Exception        ( throwDyn, Exception(..) )
63 import System           ( getArgs, exitWith, ExitCode(..) )
64 import Monad
65 import List
66 import Maybe
67
68 #ifndef mingw32_TARGET_OS
69 import Concurrent       ( myThreadId )
70 #if __GLASGOW_HASKELL__ < 500
71 import Exception        ( raiseInThread )
72 #define throwTo  raiseInThread
73 #else
74 import Exception        ( throwTo )
75 #endif
76
77 import Posix            ( Handler(Catch), installHandler, sigINT, sigQUIT )
78 import Dynamic          ( toDyn )
79 #endif
80
81
82 -----------------------------------------------------------------------------
83 -- Changes:
84
85 -- * -fglasgow-exts NO LONGER IMPLIES -package lang!!!  (-fglasgow-exts is a
86 --   dynamic flag whereas -package is a static flag.)
87
88 -----------------------------------------------------------------------------
89 -- ToDo:
90
91 -- new mkdependHS doesn't support all the options that the old one did (-X et al.)
92 -- time commands when run with -v
93 -- split marker
94 -- java generation
95 -- user ways
96 -- Win32 support: proper signal handling
97 -- make sure OPTIONS in .hs file propogate to .hc file if -C or -keep-hc-file-too
98 -- reading the package configuration file is too slow
99 -- -K<size>
100
101 -----------------------------------------------------------------------------
102 -- Differences vs. old driver:
103
104 -- No more "Enter your Haskell program, end with ^D (on a line of its own):"
105 -- consistency checking removed (may do this properly later)
106 -- removed -noC
107 -- no -Ofile
108
109 -----------------------------------------------------------------------------
110 -- Main loop
111
112 main =
113   -- top-level exception handler: any unrecognised exception is a compiler bug.
114   handle (\exn -> case exn of
115                        IOException _ -> do hPutStr stderr (show exn)
116                                            exitWith (ExitFailure 1)
117                        _             -> do hPutStr stderr (show (Panic (show exn)))
118                                            exitWith (ExitFailure 1)
119          ) $ do
120
121   -- all error messages are propagated as exceptions
122   handleDyn (\dyn -> case dyn of
123                           PhaseFailed _phase code -> exitWith code
124                           Interrupted -> exitWith (ExitFailure 1)
125                           _ -> do hPutStrLn stderr (show (dyn :: GhcException))
126                                   exitWith (ExitFailure 1)
127             ) $ do
128
129    -- make sure we clean up after ourselves
130    later (do  forget_it <- readIORef v_Keep_tmp_files
131               unless forget_it $ do
132               verb <- dynFlag verbosity
133               cleanTempFiles verb
134      ) $ do
135         -- exceptions will be blocked while we clean the temporary files,
136         -- so there shouldn't be any difficulty if we receive further
137         -- signals.
138
139         -- install signal handlers
140 #ifndef mingw32_TARGET_OS
141    main_thread <- myThreadId
142    let sig_handler = Catch (throwTo main_thread 
143                                 (DynException (toDyn Interrupted)))
144    installHandler sigQUIT sig_handler Nothing 
145    installHandler sigINT  sig_handler Nothing
146 #endif
147
148    argv <- getArgs
149    let (minusB_args, argv') = partition (prefixMatch "-B") argv
150    top_dir <- initSysTools minusB_args
151
152         -- Read the package configuration
153    conf_file         <- packageConfigPath
154    proto_pkg_details <- loadPackageConfig conf_file
155    let pkg_details    = mungePackagePaths top_dir proto_pkg_details
156    writeIORef v_Package_details pkg_details
157
158         -- find the phase to stop after (i.e. -E, -C, -c, -S flags)
159    (flags2, mode, stop_flag) <- getGhcMode argv'
160    writeIORef v_GhcMode mode
161
162         -- Show the GHCi banner?
163 #  ifdef GHCI
164    when (mode == DoInteractive) $
165       hPutStrLn stdout ghciWelcomeMsg
166 #  endif
167
168         -- process all the other arguments, and get the source files
169    non_static <- processArgs static_flags flags2 []
170
171         -- -O and --interactive are not a good combination
172         -- ditto with any kind of way selection
173    orig_opt_level <- readIORef v_OptLevel
174    when (orig_opt_level > 0 && mode == DoInteractive) $
175       do putStr "warning: -O conflicts with --interactive; -O turned off.\n"
176          writeIORef v_OptLevel 0
177    orig_ways <- readIORef v_Ways
178    when (not (null orig_ways) && mode == DoInteractive) $
179       do throwDyn (UsageError 
180                    "--interactive can't be used with -prof, -ticky, -unreg or -smp.")
181
182         -- Find the build tag, and re-process the build-specific options.
183         -- Also add in flags for unregisterised compilation, if 
184         -- GhcUnregisterised=YES.
185    way_opts <- findBuildTag
186    let unreg_opts | cGhcUnregisterised == "YES" = unregFlags
187                   | otherwise = []
188    pkg_extra_opts <- getPackageExtraGhcOpts
189    extra_non_static <- processArgs static_flags 
190                            (unreg_opts ++ way_opts ++ pkg_extra_opts) []
191
192         -- give the static flags to hsc
193    static_opts <- buildStaticHscOpts
194    writeIORef v_Static_hsc_opts static_opts
195
196    -- build the default DynFlags (these may be adjusted on a per
197    -- module basis by OPTIONS pragmas and settings in the interpreter).
198
199    core_todo <- buildCoreToDo
200    stg_todo  <- buildStgToDo
201
202    -- set the "global" HscLang.  The HscLang can be further adjusted on a module
203    -- by module basis, using only the -fvia-C and -fasm flags.  If the global
204    -- HscLang is not HscC or HscAsm, -fvia-C and -fasm have no effect.
205    opt_level  <- readIORef v_OptLevel
206
207
208    let lang = case mode of 
209                  StopBefore HCc -> HscC
210                  DoInteractive  -> HscInterpreted
211                  _other        | opt_level >= 1  -> HscC  -- -O implies -fvia-C 
212                                | otherwise       -> defaultHscLang
213
214    setDynFlags (defaultDynFlags{ coreToDo = core_todo,
215                                  stgToDo  = stg_todo,
216                                  hscLang  = lang,
217                                  -- leave out hscOutName for now
218                                  hscOutName = panic "Main.main:hscOutName not set",
219
220                                  verbosity = case mode of
221                                                 DoInteractive -> 1
222                                                 DoMake        -> 1
223                                                 _other        -> 0,
224                                 })
225
226         -- the rest of the arguments are "dynamic"
227    srcs <- processArgs dynamic_flags (extra_non_static ++ non_static) []
228
229         -- save the "initial DynFlags" away
230    saveDynFlags
231
232         -- complain about any unknown flags
233    mapM unknownFlagErr [ f | f@('-':_) <- srcs ]
234
235         -- Display details of the configuration in verbose mode
236    verb <- dynFlag verbosity
237
238    when (verb >= 2) 
239         (do hPutStr stderr "Glasgow Haskell Compiler, Version "
240             hPutStr stderr cProjectVersion
241             hPutStr stderr ", for Haskell 98, compiled by GHC version "
242             hPutStrLn stderr cBooterVersion)
243
244    when (verb >= 2) 
245         (hPutStrLn stderr ("Using package config file: " ++ conf_file))
246
247    when (verb >= 3) 
248         (hPutStrLn stderr ("Hsc static flags: " ++ unwords static_opts))
249
250    showPackages pkg_details
251
252         -- initialise the finder
253    pkg_avails <- getPackageInfo
254    initFinder pkg_avails
255
256         -- mkdependHS is special
257    when (mode == DoMkDependHS) beginMkDependHS
258
259         -- -ohi sanity checking
260    ohi    <- readIORef v_Output_hi
261    if (isJust ohi && 
262         (mode == DoMake || mode == DoInteractive || length srcs > 1))
263         then throwDyn (UsageError "-ohi can only be used when compiling a single source file")
264         else do
265
266         -- make/interactive require invoking the compilation manager
267    if (mode == DoMake)        then beginMake srcs        else do
268    if (mode == DoInteractive) then beginInteractive srcs else do
269
270         -- -o sanity checking
271    o_file <- readIORef v_Output_file
272    if (length srcs > 1 && isJust o_file && mode /= DoLink && mode /= DoMkDLL)
273         then throwDyn (UsageError "can't apply -o to multiple source files")
274         else do
275
276    if null srcs then throwDyn (UsageError "no input files") else do
277
278    let compileFile src = do
279           restoreDynFlags
280
281           exists <- doesFileExist src
282           when (not exists) $ 
283                 throwDyn (CmdLineError ("file `" ++ src ++ "' does not exist"))
284
285           -- We compile in two stages, because the file may have an
286           -- OPTIONS pragma that affects the compilation pipeline (eg. -fvia-C)
287           let (basename, suffix) = splitFilename src
288
289           -- just preprocess (Haskell source only)
290           pp <- if not (haskellish_src_file src) || mode == StopBefore Hsc
291                         then return src else do
292                 phases <- genPipeline (StopBefore Hsc) stop_flag
293                             False{-not persistent-} defaultHscLang src
294                 pipeLoop phases src False{-no linking-} False{-no -o flag-}
295                         basename suffix
296
297           -- rest of compilation
298           hsc_lang <- dynFlag hscLang
299           phases <- genPipeline mode stop_flag True hsc_lang pp
300           r <- pipeLoop phases pp (mode==DoLink || mode==DoMkDLL) True{-use -o flag-}
301                         basename suffix
302           return r
303
304    o_files <- mapM compileFile srcs
305
306    when (mode == DoMkDependHS) endMkDependHS
307    when (mode == DoLink) (doLink o_files)
308    when (mode == DoMkDLL) (doMkDLL o_files)
309
310
311
312 beginMake :: [String] -> IO ()
313 beginMake fileish_args
314   = do let (objs, mods) = partition objish_file fileish_args
315        mapM (add v_Ld_inputs) objs
316
317        case mods of
318          []    -> throwDyn (UsageError "no input files")
319          mod   -> do state <- cmInit Batch
320                      cmLoadModule state mods
321                      return ()
322
323
324 beginInteractive :: [String] -> IO ()
325 #ifndef GHCI
326 beginInteractive = throwDyn (CmdLineError "not built for interactive use")
327 #else
328 beginInteractive fileish_args
329   = do minus_ls <- readIORef v_Cmdline_libraries
330
331        let (objs, mods) = partition objish_file fileish_args
332            libs = map Left objs ++ map Right minus_ls
333
334        state <- cmInit Interactive
335        interactiveUI state mods libs
336 #endif