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