Adding command channel for the hpc debugger to the hpc part of the RTS
[ghc-hetmet.git] / compiler / main / DynFlags.hs
1 {-# OPTIONS -fno-warn-missing-fields #-}
2 -----------------------------------------------------------------------------
3 --
4 -- Dynamic flags
5 --
6 -- Most flags are dynamic flags, which means they can change from
7 -- compilation to compilation using OPTIONS_GHC pragmas, and in a
8 -- multi-session GHC each session can be using different dynamic
9 -- flags.  Dynamic flags can also be set at the prompt in GHCi.
10 --
11 -- (c) The University of Glasgow 2005
12 --
13 -----------------------------------------------------------------------------
14
15 module DynFlags (
16         -- Dynamic flags
17         DynFlag(..),
18         DynFlags(..),
19         HscTarget(..),
20         GhcMode(..), isOneShot,
21         GhcLink(..), isNoLink,
22         PackageFlag(..),
23         Option(..),
24
25         -- Configuration of the core-to-core and stg-to-stg phases
26         CoreToDo(..),
27         StgToDo(..),
28         SimplifierSwitch(..), 
29         SimplifierMode(..), FloatOutSwitches(..),
30         getCoreToDo, getStgToDo,
31         
32         -- Manipulating DynFlags
33         defaultDynFlags,                -- DynFlags
34         initDynFlags,                   -- DynFlags -> IO DynFlags
35
36         dopt,                           -- DynFlag -> DynFlags -> Bool
37         dopt_set, dopt_unset,           -- DynFlags -> DynFlag -> DynFlags
38         getOpts,                        -- (DynFlags -> [a]) -> IO [a]
39         getVerbFlag,
40         updOptLevel,
41         setTmpDir,
42         setPackageName,
43         
44         -- parsing DynFlags
45         parseDynamicFlags,
46         allFlags,
47
48         -- misc stuff
49         machdepCCOpts, picCCOpts
50   ) where
51
52 #include "HsVersions.h"
53
54 import Module           ( Module, mkModuleName, mkModule )
55 import PackageConfig
56 import PrelNames        ( mAIN )
57 #ifdef i386_TARGET_ARCH
58 import StaticFlags      ( opt_Static )
59 #endif
60 import StaticFlags      ( opt_PIC, WayName(..), v_Ways, v_Build_tag,
61                           v_RTS_Build_tag )
62 import {-# SOURCE #-} Packages (PackageState)
63 import DriverPhases     ( Phase(..), phaseInputExt )
64 import Config
65 import CmdLineParser
66 import Constants        ( mAX_CONTEXT_REDUCTION_DEPTH )
67 import Panic            ( panic, GhcException(..) )
68 import UniqFM           ( UniqFM )
69 import Util             ( notNull, splitLongestPrefix, normalisePath )
70 import Maybes           ( fromJust, orElse )
71 import SrcLoc           ( SrcSpan )
72 import Outputable
73 import {-# SOURCE #-} ErrUtils ( Severity(..), Message, mkLocMessage )
74
75 import Data.IORef       ( readIORef )
76 import Control.Exception ( throwDyn )
77 import Control.Monad    ( when )
78 #ifdef mingw32_TARGET_OS
79 import Data.List        ( isPrefixOf )
80 #else
81 import Util             ( split )
82 #endif
83
84 import Data.Char        ( isDigit, isUpper )
85 import System.IO        ( hPutStrLn, stderr )
86
87 #ifdef GHCI
88 import Breakpoints      ( BkptHandler )
89 import Module           ( ModuleName )
90 #endif
91 -- -----------------------------------------------------------------------------
92 -- DynFlags
93
94 data DynFlag
95
96    -- debugging flags
97    = Opt_D_dump_cmm
98    | Opt_D_dump_asm
99    | Opt_D_dump_cpranal
100    | Opt_D_dump_deriv
101    | Opt_D_dump_ds
102    | Opt_D_dump_flatC
103    | Opt_D_dump_foreign
104    | Opt_D_dump_inlinings
105    | Opt_D_dump_occur_anal
106    | Opt_D_dump_parsed
107    | Opt_D_dump_rn
108    | Opt_D_dump_simpl
109    | Opt_D_dump_simpl_iterations
110    | Opt_D_dump_spec
111    | Opt_D_dump_prep
112    | Opt_D_dump_stg
113    | Opt_D_dump_stranal
114    | Opt_D_dump_tc
115    | Opt_D_dump_types
116    | Opt_D_dump_rules
117    | Opt_D_dump_cse
118    | Opt_D_dump_worker_wrapper
119    | Opt_D_dump_rn_trace
120    | Opt_D_dump_rn_stats
121    | Opt_D_dump_opt_cmm
122    | Opt_D_dump_simpl_stats
123    | Opt_D_dump_tc_trace
124    | Opt_D_dump_if_trace
125    | Opt_D_dump_splices
126    | Opt_D_dump_BCOs
127    | Opt_D_dump_vect
128    | Opt_D_dump_hpc
129    | Opt_D_source_stats
130    | Opt_D_verbose_core2core
131    | Opt_D_verbose_stg2stg
132    | Opt_D_dump_hi
133    | Opt_D_dump_hi_diffs
134    | Opt_D_dump_minimal_imports
135    | Opt_D_faststring_stats
136    | Opt_DoCoreLinting
137    | Opt_DoStgLinting
138    | Opt_DoCmmLinting
139
140    | Opt_WarnIsError            -- -Werror; makes warnings fatal
141    | Opt_WarnDuplicateExports
142    | Opt_WarnHiShadows
143    | Opt_WarnIncompletePatterns
144    | Opt_WarnIncompletePatternsRecUpd
145    | Opt_WarnMissingFields
146    | Opt_WarnMissingMethods
147    | Opt_WarnMissingSigs
148    | Opt_WarnNameShadowing
149    | Opt_WarnOverlappingPatterns
150    | Opt_WarnSimplePatterns
151    | Opt_WarnTypeDefaults
152    | Opt_WarnUnusedBinds
153    | Opt_WarnUnusedImports
154    | Opt_WarnUnusedMatches
155    | Opt_WarnDeprecations
156    | Opt_WarnDodgyImports
157    | Opt_WarnOrphans
158
159    -- language opts
160    | Opt_AllowOverlappingInstances
161    | Opt_AllowUndecidableInstances
162    | Opt_AllowIncoherentInstances
163    | Opt_MonomorphismRestriction
164    | Opt_MonoPatBinds
165    | Opt_ExtendedDefaultRules           -- Use GHC's extended rules for defaulting
166    | Opt_GlasgowExts
167    | Opt_FFI
168    | Opt_PArr                           -- Syntactic support for parallel arrays
169    | Opt_Arrows                         -- Arrow-notation syntax
170    | Opt_TH
171    | Opt_ImplicitParams
172    | Opt_Generics
173    | Opt_ImplicitPrelude 
174    | Opt_ScopedTypeVariables
175    | Opt_BangPatterns
176    | Opt_IndexedTypes
177
178    -- optimisation opts
179    | Opt_Strictness
180    | Opt_FullLaziness
181    | Opt_CSE
182    | Opt_IgnoreInterfacePragmas
183    | Opt_OmitInterfacePragmas
184    | Opt_DoLambdaEtaExpansion
185    | Opt_IgnoreAsserts
186    | Opt_IgnoreBreakpoints
187    | Opt_DoEtaReduction
188    | Opt_CaseMerge
189    | Opt_UnboxStrictFields
190    | Opt_DictsCheap
191
192    -- misc opts
193    | Opt_Cpp
194    | Opt_Pp
195    | Opt_ForceRecomp
196    | Opt_DryRun
197    | Opt_DoAsmMangling
198    | Opt_ExcessPrecision
199    | Opt_ReadUserPackageConf
200    | Opt_NoHsMain
201    | Opt_SplitObjs
202    | Opt_StgStats
203    | Opt_HideAllPackages
204 #if defined(GHCI) && defined(DEBUGGER)
205    | Opt_Debugging
206 #endif
207    | Opt_PrintBindResult
208    | Opt_Haddock
209    | Opt_Hpc_No_Auto
210
211    -- keeping stuff
212    | Opt_KeepHiDiffs
213    | Opt_KeepHcFiles
214    | Opt_KeepSFiles
215    | Opt_KeepRawSFiles
216    | Opt_KeepTmpFiles
217
218    deriving (Eq)
219  
220 data DynFlags = DynFlags {
221   ghcMode               :: GhcMode,
222   ghcLink               :: GhcLink,
223   coreToDo              :: Maybe [CoreToDo], -- reserved for -Ofile
224   stgToDo               :: Maybe [StgToDo],  -- similarly
225   hscTarget             :: HscTarget,
226   hscOutName            :: String,      -- name of the output file
227   extCoreName           :: String,      -- name of the .core output file
228   verbosity             :: Int,         -- verbosity level
229   optLevel              :: Int,         -- optimisation level
230   maxSimplIterations    :: Int,         -- max simplifier iterations
231   ruleCheck             :: Maybe String,
232   stolen_x86_regs       :: Int,         
233   cmdlineHcIncludes     :: [String],    -- -#includes
234   importPaths           :: [FilePath],
235   mainModIs             :: Module,
236   mainFunIs             :: Maybe String,
237   ctxtStkDepth          :: Int,         -- Typechecker context stack depth
238
239   thisPackage           :: PackageId,
240
241   -- ways
242   wayNames              :: [WayName],   -- way flags from the cmd line
243   buildTag              :: String,      -- the global "way" (eg. "p" for prof)
244   rtsBuildTag           :: String,      -- the RTS "way"
245   
246   -- paths etc.
247   objectDir             :: Maybe String,
248   hiDir                 :: Maybe String,
249   stubDir               :: Maybe String,
250
251   objectSuf             :: String,
252   hcSuf                 :: String,
253   hiSuf                 :: String,
254
255   outputFile            :: Maybe String,
256   outputHi              :: Maybe String,
257
258   includePaths          :: [String],
259   libraryPaths          :: [String],
260   frameworkPaths        :: [String],    -- used on darwin only
261   cmdlineFrameworks     :: [String],    -- ditto
262   tmpDir                :: String,      -- no trailing '/'
263   
264   ghcUsagePath          :: FilePath,    -- Filled in by SysTools
265   ghciUsagePath         :: FilePath,    -- ditto
266
267   hpcDir                :: String,      -- ^ path to store the .mix files
268
269   -- options for particular phases
270   opt_L                 :: [String],
271   opt_P                 :: [String],
272   opt_F                 :: [String],
273   opt_c                 :: [String],
274   opt_m                 :: [String],
275   opt_a                 :: [String],
276   opt_l                 :: [String],
277   opt_dll               :: [String],
278   opt_dep               :: [String],
279
280   -- commands for particular phases
281   pgm_L                 :: String,
282   pgm_P                 :: (String,[Option]),
283   pgm_F                 :: String,
284   pgm_c                 :: (String,[Option]),
285   pgm_m                 :: (String,[Option]),
286   pgm_s                 :: (String,[Option]),
287   pgm_a                 :: (String,[Option]),
288   pgm_l                 :: (String,[Option]),
289   pgm_dll               :: (String,[Option]),
290   pgm_T                 :: String,
291   pgm_sysman            :: String,
292
293   --  Package flags
294   extraPkgConfs         :: [FilePath],
295   topDir                :: FilePath,    -- filled in by SysTools
296   systemPackageConfig   :: FilePath,    -- ditto
297         -- The -package-conf flags given on the command line, in the order
298         -- they appeared.
299
300   packageFlags          :: [PackageFlag],
301         -- The -package and -hide-package flags from the command-line
302
303   -- Package state
304   -- NB. do not modify this field, it is calculated by 
305   -- Packages.initPackages and Packages.updatePackages.
306   pkgDatabase           :: Maybe (UniqFM InstalledPackageInfo),
307   pkgState              :: PackageState,
308
309   -- hsc dynamic flags
310   flags                 :: [DynFlag],
311   
312   -- message output
313   log_action            :: Severity -> SrcSpan -> PprStyle -> Message -> IO ()
314
315 #ifdef GHCI
316   -- breakpoint handling
317  ,bkptHandler           :: Maybe (BkptHandler Module)
318 #endif
319  }
320
321 data HscTarget
322   = HscC
323   | HscAsm
324   | HscJava
325   | HscInterpreted
326   | HscNothing
327   deriving (Eq, Show)
328
329 data GhcMode
330   = BatchCompile        -- | @ghc --make Main@
331   | Interactive         -- | @ghc --interactive@
332   | OneShot             -- | @ghc -c Foo.hs@
333   | JustTypecheck       -- | Development environemnts, refactorer, etc.
334   | MkDepend
335   deriving Eq
336
337 isOneShot :: GhcMode -> Bool
338 isOneShot OneShot = True
339 isOneShot _other  = False
340
341 data GhcLink    -- What to do in the link step, if there is one
342   =             -- Only relevant for modes
343                 --      DoMake and StopBefore StopLn
344     NoLink              -- Don't link at all
345   | StaticLink          -- Ordinary linker [the default]
346   | MkDLL               -- Make a DLL
347
348 isNoLink :: GhcLink -> Bool
349 isNoLink NoLink = True
350 isNoLink other  = False
351
352 data PackageFlag
353   = ExposePackage  String
354   | HidePackage    String
355   | IgnorePackage  String
356   deriving Eq
357
358 defaultHscTarget
359   | cGhcWithNativeCodeGen == "YES"      =  HscAsm
360   | otherwise                           =  HscC
361
362 initDynFlags dflags = do
363  -- someday these will be dynamic flags
364  ways <- readIORef v_Ways
365  build_tag <- readIORef v_Build_tag
366  rts_build_tag <- readIORef v_RTS_Build_tag
367  return dflags{
368         wayNames        = ways,
369         buildTag        = build_tag,
370         rtsBuildTag     = rts_build_tag
371         }
372
373 defaultDynFlags =
374      DynFlags {
375         ghcMode                 = OneShot,
376         ghcLink                 = StaticLink,
377         coreToDo                = Nothing,
378         stgToDo                 = Nothing, 
379         hscTarget               = defaultHscTarget, 
380         hscOutName              = "", 
381         extCoreName             = "",
382         verbosity               = 0, 
383         optLevel                = 0,
384         maxSimplIterations      = 4,
385         ruleCheck               = Nothing,
386         stolen_x86_regs         = 4,
387         cmdlineHcIncludes       = [],
388         importPaths             = ["."],
389         mainModIs               = mAIN,
390         mainFunIs               = Nothing,
391         ctxtStkDepth            = mAX_CONTEXT_REDUCTION_DEPTH,
392
393         thisPackage             = mainPackageId,
394
395         objectDir               = Nothing,
396         hiDir                   = Nothing,
397         stubDir                 = Nothing,
398
399         objectSuf               = phaseInputExt StopLn,
400         hcSuf                   = phaseInputExt HCc,
401         hiSuf                   = "hi",
402
403         outputFile              = Nothing,
404         outputHi                = Nothing,
405         includePaths            = [],
406         libraryPaths            = [],
407         frameworkPaths          = [],
408         cmdlineFrameworks       = [],
409         tmpDir                  = cDEFAULT_TMPDIR,
410         
411         hpcDir                  = ".hpc",
412
413         opt_L                   = [],
414         opt_P                   = [],
415         opt_F                   = [],
416         opt_c                   = [],
417         opt_a                   = [],
418         opt_m                   = [],
419         opt_l                   = [],
420         opt_dll                 = [],
421         opt_dep                 = [],
422         
423         extraPkgConfs           = [],
424         packageFlags            = [],
425         pkgDatabase             = Nothing,
426         pkgState                = panic "no package state yet: call GHC.setSessionDynFlags",
427 #ifdef GHCI
428         bkptHandler             = Nothing,
429 #endif
430         flags = [ 
431             Opt_ReadUserPackageConf,
432     
433             Opt_MonoPatBinds,   -- Experimentally, I'm making this non-standard
434                                 -- behaviour the default, to see if anyone notices
435                                 -- SLPJ July 06
436
437             Opt_ImplicitPrelude,
438             Opt_MonomorphismRestriction,
439             Opt_Strictness,
440                         -- strictness is on by default, but this only
441                         -- applies to -O.
442             Opt_CSE,            -- similarly for CSE.
443             Opt_FullLaziness,   -- ...and for full laziness
444     
445             Opt_DoLambdaEtaExpansion,
446                         -- This one is important for a tiresome reason:
447                         -- we want to make sure that the bindings for data 
448                         -- constructors are eta-expanded.  This is probably
449                         -- a good thing anyway, but it seems fragile.
450     
451             Opt_DoAsmMangling,
452     
453             -- and the default no-optimisation options:
454             Opt_IgnoreInterfacePragmas,
455             Opt_OmitInterfacePragmas,
456     
457             -- on by default:
458             Opt_PrintBindResult
459                ] ++ standardWarnings,
460                
461         log_action = \severity srcSpan style msg -> 
462                         case severity of
463                           SevInfo  -> hPutStrLn stderr (show (msg style))
464                           SevFatal -> hPutStrLn stderr (show (msg style))
465                           _        -> hPutStrLn stderr ('\n':show ((mkLocMessage srcSpan msg) style))
466       }
467
468 {- 
469     Verbosity levels:
470         
471     0   |   print errors & warnings only
472     1   |   minimal verbosity: print "compiling M ... done." for each module.
473     2   |   equivalent to -dshow-passes
474     3   |   equivalent to existing "ghc -v"
475     4   |   "ghc -v -ddump-most"
476     5   |   "ghc -v -ddump-all"
477 -}
478
479 dopt :: DynFlag -> DynFlags -> Bool
480 dopt f dflags  = f `elem` (flags dflags)
481
482 dopt_set :: DynFlags -> DynFlag -> DynFlags
483 dopt_set dfs f = dfs{ flags = f : flags dfs }
484
485 dopt_unset :: DynFlags -> DynFlag -> DynFlags
486 dopt_unset dfs f = dfs{ flags = filter (/= f) (flags dfs) }
487
488 getOpts :: DynFlags -> (DynFlags -> [a]) -> [a]
489 getOpts dflags opts = reverse (opts dflags)
490         -- We add to the options from the front, so we need to reverse the list
491
492 getVerbFlag :: DynFlags -> String
493 getVerbFlag dflags 
494   | verbosity dflags >= 3  = "-v" 
495   | otherwise =  ""
496
497 setObjectDir  f d = d{ objectDir  = f}
498 setHiDir      f d = d{ hiDir      = f}
499 setStubDir    f d = d{ stubDir    = f}
500
501 setObjectSuf  f d = d{ objectSuf  = f}
502 setHiSuf      f d = d{ hiSuf      = f}
503 setHcSuf      f d = d{ hcSuf      = f}
504
505 setOutputFile f d = d{ outputFile = f}
506 setOutputHi   f d = d{ outputHi   = f}
507
508 -- XXX HACK: Prelude> words "'does not' work" ===> ["'does","not'","work"]
509 -- Config.hs should really use Option.
510 setPgmP   f d = let (pgm:args) = words f in d{ pgm_P   = (pgm, map Option args)}
511
512 setPgmL   f d = d{ pgm_L   = f}
513 setPgmF   f d = d{ pgm_F   = f}
514 setPgmc   f d = d{ pgm_c   = (f,[])}
515 setPgmm   f d = d{ pgm_m   = (f,[])}
516 setPgms   f d = d{ pgm_s   = (f,[])}
517 setPgma   f d = d{ pgm_a   = (f,[])}
518 setPgml   f d = d{ pgm_l   = (f,[])}
519 setPgmdll f d = d{ pgm_dll = (f,[])}
520
521 addOptL   f d = d{ opt_L   = f : opt_L d}
522 addOptP   f d = d{ opt_P   = f : opt_P d}
523 addOptF   f d = d{ opt_F   = f : opt_F d}
524 addOptc   f d = d{ opt_c   = f : opt_c d}
525 addOptm   f d = d{ opt_m   = f : opt_m d}
526 addOpta   f d = d{ opt_a   = f : opt_a d}
527 addOptl   f d = d{ opt_l   = f : opt_l d}
528 addOptdll f d = d{ opt_dll = f : opt_dll d}
529 addOptdep f d = d{ opt_dep = f : opt_dep d}
530
531 addCmdlineFramework f d = d{ cmdlineFrameworks = f : cmdlineFrameworks d}
532
533 -- -----------------------------------------------------------------------------
534 -- Command-line options
535
536 -- When invoking external tools as part of the compilation pipeline, we
537 -- pass these a sequence of options on the command-line. Rather than
538 -- just using a list of Strings, we use a type that allows us to distinguish
539 -- between filepaths and 'other stuff'. [The reason being, of course, that
540 -- this type gives us a handle on transforming filenames, and filenames only,
541 -- to whatever format they're expected to be on a particular platform.]
542
543 data Option
544  = FileOption -- an entry that _contains_ filename(s) / filepaths.
545               String  -- a non-filepath prefix that shouldn't be 
546                       -- transformed (e.g., "/out=")
547               String  -- the filepath/filename portion
548  | Option     String
549  
550 -----------------------------------------------------------------------------
551 -- Setting the optimisation level
552
553 updOptLevel :: Int -> DynFlags -> DynFlags
554 -- Set dynflags appropriate to the optimisation level
555 updOptLevel n dfs
556   = dfs2{ optLevel = n }
557   where
558    dfs1 = foldr (flip dopt_unset) dfs  remove_dopts
559    dfs2 = foldr (flip dopt_set)   dfs1 extra_dopts
560
561    extra_dopts
562         | n == 0    = opt_0_dopts
563         | otherwise = opt_1_dopts
564
565    remove_dopts
566         | n == 0    = opt_1_dopts
567         | otherwise = opt_0_dopts
568         
569 opt_0_dopts =  [ 
570         Opt_IgnoreInterfacePragmas,
571         Opt_OmitInterfacePragmas
572     ]
573
574 opt_1_dopts = [
575         Opt_IgnoreAsserts,
576         Opt_DoEtaReduction,
577         Opt_CaseMerge
578      ]
579
580 -- -----------------------------------------------------------------------------
581 -- Standard sets of warning options
582
583 standardWarnings
584     = [ Opt_WarnDeprecations,
585         Opt_WarnOverlappingPatterns,
586         Opt_WarnMissingFields,
587         Opt_WarnMissingMethods,
588         Opt_WarnDuplicateExports
589       ]
590
591 minusWOpts
592     = standardWarnings ++ 
593       [ Opt_WarnUnusedBinds,
594         Opt_WarnUnusedMatches,
595         Opt_WarnUnusedImports,
596         Opt_WarnIncompletePatterns,
597         Opt_WarnDodgyImports
598       ]
599
600 minusWallOpts
601     = minusWOpts ++
602       [ Opt_WarnTypeDefaults,
603         Opt_WarnNameShadowing,
604         Opt_WarnMissingSigs,
605         Opt_WarnHiShadows,
606         Opt_WarnOrphans
607       ]
608
609 -- -----------------------------------------------------------------------------
610 -- CoreToDo:  abstraction of core-to-core passes to run.
611
612 data CoreToDo           -- These are diff core-to-core passes,
613                         -- which may be invoked in any order,
614                         -- as many times as you like.
615
616   = CoreDoSimplify      -- The core-to-core simplifier.
617         SimplifierMode
618         [SimplifierSwitch]
619                         -- Each run of the simplifier can take a different
620                         -- set of simplifier-specific flags.
621   | CoreDoFloatInwards
622   | CoreDoFloatOutwards FloatOutSwitches
623   | CoreLiberateCase
624   | CoreDoPrintCore
625   | CoreDoStaticArgs
626   | CoreDoStrictness
627   | CoreDoWorkerWrapper
628   | CoreDoSpecialising
629   | CoreDoSpecConstr
630   | CoreDoOldStrictness
631   | CoreDoGlomBinds
632   | CoreCSE
633   | CoreDoRuleCheck Int{-CompilerPhase-} String -- Check for non-application of rules 
634                                                 -- matching this string
635
636   | CoreDoNothing        -- useful when building up lists of these things
637
638 data SimplifierMode             -- See comments in SimplMonad
639   = SimplGently
640   | SimplPhase Int
641
642 data SimplifierSwitch
643   = MaxSimplifierIterations Int
644   | NoCaseOfCase
645
646 data FloatOutSwitches
647   = FloatOutSw  Bool    -- True <=> float lambdas to top level
648                 Bool    -- True <=> float constants to top level,
649                         --          even if they do not escape a lambda
650
651
652 -- The core-to-core pass ordering is derived from the DynFlags:
653
654 getCoreToDo :: DynFlags -> [CoreToDo]
655 getCoreToDo dflags
656   | Just todo <- coreToDo dflags = todo -- set explicitly by user
657   | otherwise = core_todo
658   where
659     opt_level     = optLevel dflags
660     max_iter      = maxSimplIterations dflags
661     strictness    = dopt Opt_Strictness dflags
662     full_laziness = dopt Opt_FullLaziness dflags
663     cse           = dopt Opt_CSE dflags
664     rule_check    = ruleCheck dflags
665
666     core_todo = 
667      if opt_level == 0 then
668       [
669         CoreDoSimplify (SimplPhase 0) [
670             MaxSimplifierIterations max_iter
671         ]
672       ]
673      else {- opt_level >= 1 -} [ 
674
675         -- initial simplify: mk specialiser happy: minimum effort please
676         CoreDoSimplify SimplGently [
677                         --      Simplify "gently"
678                         -- Don't inline anything till full laziness has bitten
679                         -- In particular, inlining wrappers inhibits floating
680                         -- e.g. ...(case f x of ...)...
681                         --  ==> ...(case (case x of I# x# -> fw x#) of ...)...
682                         --  ==> ...(case x of I# x# -> case fw x# of ...)...
683                         -- and now the redex (f x) isn't floatable any more
684                         -- Similarly, don't apply any rules until after full 
685                         -- laziness.  Notably, list fusion can prevent floating.
686
687             NoCaseOfCase,       -- Don't do case-of-case transformations.
688                                 -- This makes full laziness work better
689             MaxSimplifierIterations max_iter
690         ],
691
692         -- Specialisation is best done before full laziness
693         -- so that overloaded functions have all their dictionary lambdas manifest
694         CoreDoSpecialising,
695
696         if full_laziness then CoreDoFloatOutwards (FloatOutSw False False)
697                          else CoreDoNothing,
698
699         CoreDoFloatInwards,
700
701         CoreDoSimplify (SimplPhase 2) [
702                 -- Want to run with inline phase 2 after the specialiser to give
703                 -- maximum chance for fusion to work before we inline build/augment
704                 -- in phase 1.  This made a difference in 'ansi' where an 
705                 -- overloaded function wasn't inlined till too late.
706            MaxSimplifierIterations max_iter
707         ],
708         case rule_check of { Just pat -> CoreDoRuleCheck 2 pat; Nothing -> CoreDoNothing },
709
710         CoreDoSimplify (SimplPhase 1) [
711                 -- Need inline-phase2 here so that build/augment get 
712                 -- inlined.  I found that spectral/hartel/genfft lost some useful
713                 -- strictness in the function sumcode' if augment is not inlined
714                 -- before strictness analysis runs
715            MaxSimplifierIterations max_iter
716         ],
717         case rule_check of { Just pat -> CoreDoRuleCheck 1 pat; Nothing -> CoreDoNothing },
718
719         CoreDoSimplify (SimplPhase 0) [
720                 -- Phase 0: allow all Ids to be inlined now
721                 -- This gets foldr inlined before strictness analysis
722
723            MaxSimplifierIterations 3
724                 -- At least 3 iterations because otherwise we land up with
725                 -- huge dead expressions because of an infelicity in the 
726                 -- simpifier.   
727                 --      let k = BIG in foldr k z xs
728                 -- ==>  let k = BIG in letrec go = \xs -> ...(k x).... in go xs
729                 -- ==>  let k = BIG in letrec go = \xs -> ...(BIG x).... in go xs
730                 -- Don't stop now!
731
732         ],
733         case rule_check of { Just pat -> CoreDoRuleCheck 0 pat; Nothing -> CoreDoNothing },
734
735 #ifdef OLD_STRICTNESS
736         CoreDoOldStrictness
737 #endif
738         if strictness then CoreDoStrictness else CoreDoNothing,
739         CoreDoWorkerWrapper,
740         CoreDoGlomBinds,
741
742         CoreDoSimplify (SimplPhase 0) [
743            MaxSimplifierIterations max_iter
744         ],
745
746         if full_laziness then
747           CoreDoFloatOutwards (FloatOutSw False   -- Not lambdas
748                                           True)   -- Float constants
749         else CoreDoNothing,
750                 -- nofib/spectral/hartel/wang doubles in speed if you
751                 -- do full laziness late in the day.  It only happens
752                 -- after fusion and other stuff, so the early pass doesn't
753                 -- catch it.  For the record, the redex is 
754                 --        f_el22 (f_el21 r_midblock)
755
756
757         -- We want CSE to follow the final full-laziness pass, because it may
758         -- succeed in commoning up things floated out by full laziness.
759         -- CSE used to rely on the no-shadowing invariant, but it doesn't any more
760
761         if cse then CoreCSE else CoreDoNothing,
762
763         CoreDoFloatInwards,
764
765 -- Case-liberation for -O2.  This should be after
766 -- strictness analysis and the simplification which follows it.
767
768         case rule_check of { Just pat -> CoreDoRuleCheck 0 pat; Nothing -> CoreDoNothing }
769      ]
770
771         ++ 
772
773      (if opt_level >= 2 then
774            [  CoreLiberateCase,
775               CoreDoSimplify (SimplPhase 0) [
776                   MaxSimplifierIterations max_iter
777               ],        -- Run the simplifier after LiberateCase to vastly 
778                         -- reduce the possiblility of shadowing
779                         -- Reason: see Note [Shadowing] in SpecConstr.lhs
780              CoreDoSpecConstr
781            ]
782       else
783            [])
784
785         ++
786
787         -- Final clean-up simplification:
788      [  CoreDoSimplify (SimplPhase 0) [
789           MaxSimplifierIterations max_iter
790         ]
791      ]
792
793 -- -----------------------------------------------------------------------------
794 -- StgToDo:  abstraction of stg-to-stg passes to run.
795
796 data StgToDo
797   = StgDoMassageForProfiling  -- should be (next to) last
798   -- There's also setStgVarInfo, but its absolute "lastness"
799   -- is so critical that it is hardwired in (no flag).
800   | D_stg_stats
801
802 getStgToDo :: DynFlags -> [StgToDo]
803 getStgToDo dflags
804   | Just todo <- stgToDo dflags = todo -- set explicitly by user
805   | otherwise = todo2
806   where
807         stg_stats = dopt Opt_StgStats dflags
808
809         todo1 = if stg_stats then [D_stg_stats] else []
810
811         todo2 | WayProf `elem` wayNames dflags
812               = StgDoMassageForProfiling : todo1
813               | otherwise
814               = todo1
815
816 -- -----------------------------------------------------------------------------
817 -- DynFlags parser
818
819 allFlags :: [String]
820 allFlags = map ('-':) $
821            [ name | (name, optkind) <- dynamic_flags, ok optkind ] ++
822            map ("fno-"++) flags ++
823            map ("f"++) flags
824     where ok (PrefixPred _ _) = False
825           ok _ = True
826           flags = map fst fFlags
827
828 dynamic_flags :: [(String, OptKind DynP)]
829 dynamic_flags = [
830      ( "n"              , NoArg  (setDynFlag Opt_DryRun) )
831   ,  ( "cpp"            , NoArg  (setDynFlag Opt_Cpp))
832   ,  ( "F"              , NoArg  (setDynFlag Opt_Pp))
833   ,  ( "#include"       , HasArg (addCmdlineHCInclude) )
834   ,  ( "v"              , OptIntSuffix setVerbosity )
835         ------- Specific phases  --------------------------------------------
836   ,  ( "pgmL"           , HasArg (upd . setPgmL) )  
837   ,  ( "pgmP"           , HasArg (upd . setPgmP) )  
838   ,  ( "pgmF"           , HasArg (upd . setPgmF) )  
839   ,  ( "pgmc"           , HasArg (upd . setPgmc) )  
840   ,  ( "pgmm"           , HasArg (upd . setPgmm) )  
841   ,  ( "pgms"           , HasArg (upd . setPgms) )  
842   ,  ( "pgma"           , HasArg (upd . setPgma) )  
843   ,  ( "pgml"           , HasArg (upd . setPgml) )  
844   ,  ( "pgmdll"         , HasArg (upd . setPgmdll) )
845
846   ,  ( "optL"           , HasArg (upd . addOptL) )  
847   ,  ( "optP"           , HasArg (upd . addOptP) )  
848   ,  ( "optF"           , HasArg (upd . addOptF) )  
849   ,  ( "optc"           , HasArg (upd . addOptc) )  
850   ,  ( "optm"           , HasArg (upd . addOptm) )  
851   ,  ( "opta"           , HasArg (upd . addOpta) )  
852   ,  ( "optl"           , HasArg (upd . addOptl) )  
853   ,  ( "optdll"         , HasArg (upd . addOptdll) )  
854   ,  ( "optdep"         , HasArg (upd . addOptdep) )
855
856   ,  ( "split-objs"     , NoArg (if can_split
857                                     then setDynFlag Opt_SplitObjs
858                                     else return ()) )
859
860         -------- Linking ----------------------------------------------------
861   ,  ( "c"              , NoArg (upd $ \d -> d{ ghcLink=NoLink } ))
862   ,  ( "no-link"        , NoArg (upd $ \d -> d{ ghcLink=NoLink } )) -- Dep.
863   ,  ( "-mk-dll"        , NoArg (upd $ \d -> d{ ghcLink=MkDLL } ))
864
865         ------- Libraries ---------------------------------------------------
866   ,  ( "L"              , Prefix addLibraryPath )
867   ,  ( "l"              , AnySuffix (\s -> do upd (addOptl s)
868                                               upd (addOptdll s)))
869
870         ------- Frameworks --------------------------------------------------
871         -- -framework-path should really be -F ...
872   ,  ( "framework-path" , HasArg addFrameworkPath )
873   ,  ( "framework"      , HasArg (upd . addCmdlineFramework) )
874
875         ------- Output Redirection ------------------------------------------
876   ,  ( "odir"           , HasArg (upd . setObjectDir  . Just))
877   ,  ( "o"              , SepArg (upd . setOutputFile . Just))
878   ,  ( "ohi"            , HasArg (upd . setOutputHi   . Just ))
879   ,  ( "osuf"           , HasArg (upd . setObjectSuf))
880   ,  ( "hcsuf"          , HasArg (upd . setHcSuf))
881   ,  ( "hisuf"          , HasArg (upd . setHiSuf))
882   ,  ( "hidir"          , HasArg (upd . setHiDir . Just))
883   ,  ( "tmpdir"         , HasArg (upd . setTmpDir))
884   ,  ( "stubdir"        , HasArg (upd . setStubDir . Just))
885
886         ------- Keeping temporary files -------------------------------------
887   ,  ( "keep-hc-file"   , AnySuffix (\_ -> setDynFlag Opt_KeepHcFiles))
888   ,  ( "keep-s-file"    , AnySuffix (\_ -> setDynFlag Opt_KeepSFiles))
889   ,  ( "keep-raw-s-file", AnySuffix (\_ -> setDynFlag Opt_KeepRawSFiles))
890   ,  ( "keep-tmp-files" , AnySuffix (\_ -> setDynFlag Opt_KeepTmpFiles))
891
892         ------- Miscellaneous ----------------------------------------------
893   ,  ( "no-hs-main"     , NoArg (setDynFlag Opt_NoHsMain))
894   ,  ( "main-is"        , SepArg setMainIs )
895   ,  ( "haddock"        , NoArg (setDynFlag Opt_Haddock) )
896   ,  ( "hpcdir"         , SepArg setOptHpcDir )
897
898         ------- recompilation checker (DEPRECATED, use -fforce-recomp) -----
899   ,  ( "recomp"         , NoArg (unSetDynFlag Opt_ForceRecomp) )
900   ,  ( "no-recomp"      , NoArg (setDynFlag   Opt_ForceRecomp) )
901
902         ------- Packages ----------------------------------------------------
903   ,  ( "package-conf"   , HasArg extraPkgConf_ )
904   ,  ( "no-user-package-conf", NoArg (unSetDynFlag Opt_ReadUserPackageConf) )
905   ,  ( "package-name"   , HasArg (upd . setPackageName) )
906   ,  ( "package"        , HasArg exposePackage )
907   ,  ( "hide-package"   , HasArg hidePackage )
908   ,  ( "hide-all-packages", NoArg (setDynFlag Opt_HideAllPackages) )
909   ,  ( "ignore-package" , HasArg ignorePackage )
910   ,  ( "syslib"         , HasArg exposePackage )  -- for compatibility
911
912         ------ HsCpp opts ---------------------------------------------------
913   ,  ( "D",             AnySuffix (upd . addOptP) )
914   ,  ( "U",             AnySuffix (upd . addOptP) )
915
916         ------- Include/Import Paths ----------------------------------------
917   ,  ( "I"              , Prefix    addIncludePath)
918   ,  ( "i"              , OptPrefix addImportPath )
919
920         ------ Debugging ----------------------------------------------------
921   ,  ( "dstg-stats",    NoArg (setDynFlag Opt_StgStats))
922
923   ,  ( "ddump-cmm",              setDumpFlag Opt_D_dump_cmm)
924   ,  ( "ddump-asm",              setDumpFlag Opt_D_dump_asm)
925   ,  ( "ddump-cpranal",          setDumpFlag Opt_D_dump_cpranal)
926   ,  ( "ddump-deriv",            setDumpFlag Opt_D_dump_deriv)
927   ,  ( "ddump-ds",               setDumpFlag Opt_D_dump_ds)
928   ,  ( "ddump-flatC",            setDumpFlag Opt_D_dump_flatC)
929   ,  ( "ddump-foreign",          setDumpFlag Opt_D_dump_foreign)
930   ,  ( "ddump-inlinings",        setDumpFlag Opt_D_dump_inlinings)
931   ,  ( "ddump-occur-anal",       setDumpFlag Opt_D_dump_occur_anal)
932   ,  ( "ddump-parsed",           setDumpFlag Opt_D_dump_parsed)
933   ,  ( "ddump-rn",               setDumpFlag Opt_D_dump_rn)
934   ,  ( "ddump-simpl",            setDumpFlag Opt_D_dump_simpl)
935   ,  ( "ddump-simpl-iterations", setDumpFlag Opt_D_dump_simpl_iterations)
936   ,  ( "ddump-spec",             setDumpFlag Opt_D_dump_spec)
937   ,  ( "ddump-prep",             setDumpFlag Opt_D_dump_prep)
938   ,  ( "ddump-stg",              setDumpFlag Opt_D_dump_stg)
939   ,  ( "ddump-stranal",          setDumpFlag Opt_D_dump_stranal)
940   ,  ( "ddump-tc",               setDumpFlag Opt_D_dump_tc)
941   ,  ( "ddump-types",            setDumpFlag Opt_D_dump_types)
942   ,  ( "ddump-rules",            setDumpFlag Opt_D_dump_rules)
943   ,  ( "ddump-cse",              setDumpFlag Opt_D_dump_cse)
944   ,  ( "ddump-worker-wrapper",   setDumpFlag Opt_D_dump_worker_wrapper)
945   ,  ( "ddump-rn-trace",         NoArg (setDynFlag Opt_D_dump_rn_trace))
946   ,  ( "ddump-if-trace",         NoArg (setDynFlag Opt_D_dump_if_trace))
947   ,  ( "ddump-tc-trace",         setDumpFlag Opt_D_dump_tc_trace)
948   ,  ( "ddump-splices",          setDumpFlag Opt_D_dump_splices)
949   ,  ( "ddump-rn-stats",         NoArg (setDynFlag Opt_D_dump_rn_stats))
950   ,  ( "ddump-opt-cmm",          setDumpFlag Opt_D_dump_opt_cmm)
951   ,  ( "ddump-simpl-stats",      setDumpFlag Opt_D_dump_simpl_stats)
952   ,  ( "ddump-bcos",             setDumpFlag Opt_D_dump_BCOs)
953   ,  ( "dsource-stats",          setDumpFlag Opt_D_source_stats)
954   ,  ( "dverbose-core2core",     setDumpFlag Opt_D_verbose_core2core)
955   ,  ( "dverbose-stg2stg",       setDumpFlag Opt_D_verbose_stg2stg)
956   ,  ( "ddump-hi-diffs",         NoArg (setDynFlag Opt_D_dump_hi_diffs))
957   ,  ( "ddump-hi",               setDumpFlag Opt_D_dump_hi)
958   ,  ( "ddump-minimal-imports",  NoArg (setDynFlag Opt_D_dump_minimal_imports))
959   ,  ( "ddump-vect",             setDumpFlag Opt_D_dump_vect)
960   ,  ( "ddump-hpc",              setDumpFlag Opt_D_dump_hpc)
961   
962   ,  ( "dcore-lint",             NoArg (setDynFlag Opt_DoCoreLinting))
963   ,  ( "dstg-lint",              NoArg (setDynFlag Opt_DoStgLinting))
964   ,  ( "dcmm-lint",              NoArg (setDynFlag Opt_DoCmmLinting))
965   ,  ( "dshow-passes",           NoArg (do setDynFlag Opt_ForceRecomp
966                                            setVerbosity (Just 2)) )
967   ,  ( "dfaststring-stats",      NoArg (setDynFlag Opt_D_faststring_stats))
968
969         ------ Machine dependant (-m<blah>) stuff ---------------------------
970
971   ,  ( "monly-2-regs",  NoArg (upd (\s -> s{stolen_x86_regs = 2}) ))
972   ,  ( "monly-3-regs",  NoArg (upd (\s -> s{stolen_x86_regs = 3}) ))
973   ,  ( "monly-4-regs",  NoArg (upd (\s -> s{stolen_x86_regs = 4}) ))
974
975         ------ Warning opts -------------------------------------------------
976   ,  ( "W"              , NoArg (mapM_ setDynFlag   minusWOpts)    )
977   ,  ( "Werror"         , NoArg (setDynFlag         Opt_WarnIsError) )
978   ,  ( "Wall"           , NoArg (mapM_ setDynFlag   minusWallOpts) )
979   ,  ( "Wnot"           , NoArg (mapM_ unSetDynFlag minusWallOpts) ) /* DEPREC */
980   ,  ( "w"              , NoArg (mapM_ unSetDynFlag minusWallOpts) )
981
982         ------ Optimisation flags ------------------------------------------
983   ,  ( "O"                 , NoArg (upd (setOptLevel 1)))
984   ,  ( "Onot"              , NoArg (upd (setOptLevel 0)))
985   ,  ( "O"                 , PrefixPred (all isDigit) 
986                                 (\f -> upd (setOptLevel (read f))))
987
988   ,  ( "fmax-simplifier-iterations", 
989                 PrefixPred (all isDigit) 
990                   (\n -> upd (\dfs -> 
991                         dfs{ maxSimplIterations = read n })) )
992
993   ,  ( "frule-check", 
994                 SepArg (\s -> upd (\dfs -> dfs{ ruleCheck = Just s })))
995
996         ------ Compiler flags -----------------------------------------------
997
998   ,  ( "fno-code",      NoArg (setTarget HscNothing))
999   ,  ( "fasm",          AnySuffix (\_ -> setTarget HscAsm) )
1000   ,  ( "fvia-c",        NoArg (setTarget HscC) )
1001   ,  ( "fvia-C",        NoArg (setTarget HscC) )
1002
1003   ,  ( "fglasgow-exts",    NoArg (mapM_ setDynFlag   glasgowExtsFlags) )
1004   ,  ( "fno-glasgow-exts", NoArg (mapM_ unSetDynFlag glasgowExtsFlags) )
1005
1006   ,  ( "fcontext-stack" , OptIntSuffix $ \mb_n -> upd $ \dfs -> 
1007                           dfs{ ctxtStkDepth = mb_n `orElse` 3 })
1008
1009         -- the rest of the -f* and -fno-* flags
1010   ,  ( "fno-",          PrefixPred (\f -> isFFlag f) (\f -> unSetDynFlag (getFFlag f)) )
1011   ,  ( "f",             PrefixPred (\f -> isFFlag f) (\f -> setDynFlag (getFFlag f)) )
1012  ]
1013
1014 -- these -f<blah> flags can all be reversed with -fno-<blah>
1015
1016 fFlags = [
1017   ( "warn-duplicate-exports",           Opt_WarnDuplicateExports ),
1018   ( "warn-hi-shadowing",                Opt_WarnHiShadows ),
1019   ( "warn-incomplete-patterns",         Opt_WarnIncompletePatterns ),
1020   ( "warn-incomplete-record-updates",   Opt_WarnIncompletePatternsRecUpd ),
1021   ( "warn-missing-fields",              Opt_WarnMissingFields ),
1022   ( "warn-missing-methods",             Opt_WarnMissingMethods ),
1023   ( "warn-missing-signatures",          Opt_WarnMissingSigs ),
1024   ( "warn-name-shadowing",              Opt_WarnNameShadowing ),
1025   ( "warn-overlapping-patterns",        Opt_WarnOverlappingPatterns ),
1026   ( "warn-simple-patterns",             Opt_WarnSimplePatterns ),
1027   ( "warn-type-defaults",               Opt_WarnTypeDefaults ),
1028   ( "warn-unused-binds",                Opt_WarnUnusedBinds ),
1029   ( "warn-unused-imports",              Opt_WarnUnusedImports ),
1030   ( "warn-unused-matches",              Opt_WarnUnusedMatches ),
1031   ( "warn-deprecations",                Opt_WarnDeprecations ),
1032   ( "warn-orphans",                     Opt_WarnOrphans ),
1033   ( "fi",                               Opt_FFI ),  -- support `-ffi'...
1034   ( "ffi",                              Opt_FFI ),  -- ...and also `-fffi'
1035   ( "arrows",                           Opt_Arrows ), -- arrow syntax
1036   ( "parr",                             Opt_PArr ),
1037   ( "th",                               Opt_TH ),
1038   ( "implicit-prelude",                 Opt_ImplicitPrelude ),
1039   ( "scoped-type-variables",            Opt_ScopedTypeVariables ),
1040   ( "bang-patterns",                    Opt_BangPatterns ),
1041   ( "indexed-types",                    Opt_IndexedTypes ),
1042   ( "monomorphism-restriction",         Opt_MonomorphismRestriction ),
1043   ( "mono-pat-binds",                   Opt_MonoPatBinds ),
1044   ( "extended-default-rules",           Opt_ExtendedDefaultRules ),
1045   ( "implicit-params",                  Opt_ImplicitParams ),
1046   ( "allow-overlapping-instances",      Opt_AllowOverlappingInstances ),
1047   ( "allow-undecidable-instances",      Opt_AllowUndecidableInstances ),
1048   ( "allow-incoherent-instances",       Opt_AllowIncoherentInstances ),
1049   ( "generics",                         Opt_Generics ),
1050   ( "strictness",                       Opt_Strictness ),
1051   ( "full-laziness",                    Opt_FullLaziness ),
1052   ( "cse",                              Opt_CSE ),
1053   ( "ignore-interface-pragmas",         Opt_IgnoreInterfacePragmas ),
1054   ( "omit-interface-pragmas",           Opt_OmitInterfacePragmas ),
1055   ( "do-lambda-eta-expansion",          Opt_DoLambdaEtaExpansion ),
1056   ( "ignore-asserts",                   Opt_IgnoreAsserts ),
1057   ( "ignore-breakpoints",               Opt_IgnoreBreakpoints),
1058   ( "do-eta-reduction",                 Opt_DoEtaReduction ),
1059   ( "case-merge",                       Opt_CaseMerge ),
1060   ( "unbox-strict-fields",              Opt_UnboxStrictFields ),
1061   ( "dicts-cheap",                      Opt_DictsCheap ),
1062   ( "excess-precision",                 Opt_ExcessPrecision ),
1063   ( "asm-mangling",                     Opt_DoAsmMangling ),
1064   ( "print-bind-result",                Opt_PrintBindResult ),
1065 #if defined(GHCI) && defined(DEBUGGER)
1066   ( "debugging",                        Opt_Debugging),
1067 #endif
1068   ( "force-recomp",                     Opt_ForceRecomp ),
1069   ( "hpc-no-auto",                      Opt_Hpc_No_Auto )
1070   ]
1071
1072
1073 glasgowExtsFlags = [ 
1074   Opt_GlasgowExts, 
1075   Opt_FFI, 
1076   Opt_ImplicitParams, 
1077   Opt_ScopedTypeVariables,
1078   Opt_IndexedTypes ]
1079
1080 isFFlag f = f `elem` (map fst fFlags)
1081 getFFlag f = fromJust (lookup f fFlags)
1082
1083 -- -----------------------------------------------------------------------------
1084 -- Parsing the dynamic flags.
1085
1086 parseDynamicFlags :: DynFlags -> [String] -> IO (DynFlags,[String])
1087 parseDynamicFlags dflags args = do
1088   let ((leftover,errs),dflags') 
1089           = runCmdLine (processArgs dynamic_flags args) dflags
1090   when (not (null errs)) $ do
1091     throwDyn (UsageError (unlines errs))
1092   return (dflags', leftover)
1093
1094
1095 type DynP = CmdLineP DynFlags
1096
1097 upd :: (DynFlags -> DynFlags) -> DynP ()
1098 upd f = do 
1099    dfs <- getCmdLineState
1100    putCmdLineState $! (f dfs)
1101
1102 setDynFlag, unSetDynFlag :: DynFlag -> DynP ()
1103 setDynFlag f   = upd (\dfs -> dopt_set dfs f)
1104 unSetDynFlag f = upd (\dfs -> dopt_unset dfs f)
1105
1106 setDumpFlag :: DynFlag -> OptKind DynP
1107 setDumpFlag dump_flag 
1108   = NoArg (setDynFlag Opt_ForceRecomp >> setDynFlag dump_flag)
1109         -- Whenver we -ddump, switch off the recompilation checker,
1110         -- else you don't see the dump!
1111
1112 setVerbosity :: Maybe Int -> DynP ()
1113 setVerbosity mb_n = upd (\dfs -> dfs{ verbosity = mb_n `orElse` 3 })
1114
1115 addCmdlineHCInclude a = upd (\s -> s{cmdlineHcIncludes =  a : cmdlineHcIncludes s})
1116
1117 extraPkgConf_  p = upd (\s -> s{ extraPkgConfs = p : extraPkgConfs s })
1118
1119 exposePackage p = 
1120   upd (\s -> s{ packageFlags = ExposePackage p : packageFlags s })
1121 hidePackage p = 
1122   upd (\s -> s{ packageFlags = HidePackage p : packageFlags s })
1123 ignorePackage p = 
1124   upd (\s -> s{ packageFlags = IgnorePackage p : packageFlags s })
1125
1126 setPackageName p
1127   | Nothing <- unpackPackageId pid
1128   = throwDyn (CmdLineError ("cannot parse \'" ++ p ++ "\' as a package identifier"))
1129   | otherwise
1130   = \s -> s{ thisPackage = pid }
1131   where
1132         pid = stringToPackageId p
1133
1134 -- we can only switch between HscC, and HscAsmm with dynamic flags 
1135 -- (-fvia-C, -fasm, -filx respectively).
1136 setTarget l = upd (\dfs -> case hscTarget dfs of
1137                                         HscC   -> dfs{ hscTarget = l }
1138                                         HscAsm -> dfs{ hscTarget = l }
1139                                         _      -> dfs)
1140
1141 setOptLevel :: Int -> DynFlags -> DynFlags
1142 setOptLevel n dflags
1143    | hscTarget dflags == HscInterpreted && n > 0
1144         = dflags
1145             -- not in IO any more, oh well:
1146             -- putStr "warning: -O conflicts with --interactive; -O ignored.\n"
1147    | otherwise
1148         = updOptLevel n dflags
1149
1150
1151 setMainIs :: String -> DynP ()
1152 setMainIs arg
1153   | not (null main_fn)          -- The arg looked like "Foo.baz"
1154   = upd $ \d -> d{ mainFunIs = Just main_fn,
1155                    mainModIs = mkModule mainPackageId (mkModuleName main_mod) }
1156
1157   | isUpper (head main_mod)     -- The arg looked like "Foo"
1158   = upd $ \d -> d{ mainModIs = mkModule mainPackageId (mkModuleName main_mod) }
1159   
1160   | otherwise                   -- The arg looked like "baz"
1161   = upd $ \d -> d{ mainFunIs = Just main_mod }
1162   where
1163     (main_mod, main_fn) = splitLongestPrefix arg (== '.')
1164
1165 -----------------------------------------------------------------------------
1166 -- Paths & Libraries
1167
1168 -- -i on its own deletes the import paths
1169 addImportPath "" = upd (\s -> s{importPaths = []})
1170 addImportPath p  = upd (\s -> s{importPaths = importPaths s ++ splitPathList p})
1171
1172
1173 addLibraryPath p = 
1174   upd (\s -> s{libraryPaths = libraryPaths s ++ splitPathList p})
1175
1176 addIncludePath p = 
1177   upd (\s -> s{includePaths = includePaths s ++ splitPathList p})
1178
1179 addFrameworkPath p = 
1180   upd (\s -> s{frameworkPaths = frameworkPaths s ++ splitPathList p})
1181
1182 split_marker = ':'   -- not configurable (ToDo)
1183
1184 splitPathList :: String -> [String]
1185 splitPathList s = filter notNull (splitUp s)
1186                 -- empty paths are ignored: there might be a trailing
1187                 -- ':' in the initial list, for example.  Empty paths can
1188                 -- cause confusion when they are translated into -I options
1189                 -- for passing to gcc.
1190   where
1191 #ifndef mingw32_TARGET_OS
1192     splitUp xs = split split_marker xs
1193 #else 
1194      -- Windows: 'hybrid' support for DOS-style paths in directory lists.
1195      -- 
1196      -- That is, if "foo:bar:baz" is used, this interpreted as
1197      -- consisting of three entries, 'foo', 'bar', 'baz'.
1198      -- However, with "c:/foo:c:\\foo;x:/bar", this is interpreted
1199      -- as 3 elts, "c:/foo", "c:\\foo", "x:/bar"
1200      --
1201      -- Notice that no attempt is made to fully replace the 'standard'
1202      -- split marker ':' with the Windows / DOS one, ';'. The reason being
1203      -- that this will cause too much breakage for users & ':' will
1204      -- work fine even with DOS paths, if you're not insisting on being silly.
1205      -- So, use either.
1206     splitUp []             = []
1207     splitUp (x:':':div:xs) | div `elem` dir_markers
1208                            = ((x:':':div:p): splitUp rs)
1209                            where
1210                               (p,rs) = findNextPath xs
1211           -- we used to check for existence of the path here, but that
1212           -- required the IO monad to be threaded through the command-line
1213           -- parser which is quite inconvenient.  The 
1214     splitUp xs = cons p (splitUp rs)
1215                where
1216                  (p,rs) = findNextPath xs
1217     
1218                  cons "" xs = xs
1219                  cons x  xs = x:xs
1220
1221     -- will be called either when we've consumed nought or the
1222     -- "<Drive>:/" part of a DOS path, so splitting is just a Q of
1223     -- finding the next split marker.
1224     findNextPath xs = 
1225         case break (`elem` split_markers) xs of
1226            (p, d:ds) -> (p, ds)
1227            (p, xs)   -> (p, xs)
1228
1229     split_markers :: [Char]
1230     split_markers = [':', ';']
1231
1232     dir_markers :: [Char]
1233     dir_markers = ['/', '\\']
1234 #endif
1235
1236 -- -----------------------------------------------------------------------------
1237 -- tmpDir, where we store temporary files.
1238
1239 setTmpDir :: FilePath -> DynFlags -> DynFlags
1240 setTmpDir dir dflags = dflags{ tmpDir = canonicalise dir }
1241   where
1242 #if !defined(mingw32_HOST_OS)
1243      canonicalise p = normalisePath p
1244 #else
1245         -- Canonicalisation of temp path under win32 is a bit more
1246         -- involved: (a) strip trailing slash, 
1247         --           (b) normalise slashes
1248         --           (c) just in case, if there is a prefix /cygdrive/x/, change to x:
1249         -- 
1250      canonicalise path = normalisePath (xltCygdrive (removeTrailingSlash path))
1251
1252         -- if we're operating under cygwin, and TMP/TEMP is of
1253         -- the form "/cygdrive/drive/path", translate this to
1254         -- "drive:/path" (as GHC isn't a cygwin app and doesn't
1255         -- understand /cygdrive paths.)
1256      xltCygdrive path
1257       | "/cygdrive/" `isPrefixOf` path = 
1258           case drop (length "/cygdrive/") path of
1259             drive:xs@('/':_) -> drive:':':xs
1260             _ -> path
1261       | otherwise = path
1262
1263         -- strip the trailing backslash (awful, but we only do this once).
1264      removeTrailingSlash path = 
1265        case last path of
1266          '/'  -> init path
1267          '\\' -> init path
1268          _    -> path
1269 #endif
1270
1271 -----------------------------------------------------------------------------
1272 -- Hpc stuff
1273
1274 setOptHpcDir :: String -> DynP ()
1275 setOptHpcDir arg  = upd $ \ d -> d{hpcDir = arg}
1276
1277 -----------------------------------------------------------------------------
1278 -- Via-C compilation stuff
1279
1280 machdepCCOpts :: DynFlags -> ([String], -- flags for all C compilations
1281                               [String]) -- for registerised HC compilations
1282 machdepCCOpts dflags
1283 #if alpha_TARGET_ARCH
1284         =       ( ["-w", "-mieee"
1285 #ifdef HAVE_THREADED_RTS_SUPPORT
1286                     , "-D_REENTRANT"
1287 #endif
1288                    ], [] )
1289         -- For now, to suppress the gcc warning "call-clobbered
1290         -- register used for global register variable", we simply
1291         -- disable all warnings altogether using the -w flag. Oh well.
1292
1293 #elif hppa_TARGET_ARCH
1294         -- ___HPUX_SOURCE, not _HPUX_SOURCE, is #defined if -ansi!
1295         -- (very nice, but too bad the HP /usr/include files don't agree.)
1296         = ( ["-D_HPUX_SOURCE"], [] )
1297
1298 #elif m68k_TARGET_ARCH
1299       -- -fno-defer-pop : for the .hc files, we want all the pushing/
1300       --    popping of args to routines to be explicit; if we let things
1301       --    be deferred 'til after an STGJUMP, imminent death is certain!
1302       --
1303       -- -fomit-frame-pointer : *don't*
1304       --     It's better to have a6 completely tied up being a frame pointer
1305       --     rather than let GCC pick random things to do with it.
1306       --     (If we want to steal a6, then we would try to do things
1307       --     as on iX86, where we *do* steal the frame pointer [%ebp].)
1308         = ( [], ["-fno-defer-pop", "-fno-omit-frame-pointer"] )
1309
1310 #elif i386_TARGET_ARCH
1311       -- -fno-defer-pop : basically the same game as for m68k
1312       --
1313       -- -fomit-frame-pointer : *must* in .hc files; because we're stealing
1314       --   the fp (%ebp) for our register maps.
1315         =  let n_regs = stolen_x86_regs dflags
1316                sta = opt_Static
1317            in
1318                     ( [ if sta then "-DDONT_WANT_WIN32_DLL_SUPPORT" else ""
1319 --                    , if suffixMatch "mingw32" cTARGETPLATFORM then "-mno-cygwin" else "" 
1320                       ],
1321                       [ "-fno-defer-pop",
1322 #ifdef HAVE_GCC_MNO_OMIT_LFPTR
1323                         -- Some gccs are configured with
1324                         -- -momit-leaf-frame-pointer on by default, and it
1325                         -- apparently takes precedence over 
1326                         -- -fomit-frame-pointer, so we disable it first here.
1327                         "-mno-omit-leaf-frame-pointer",
1328 #endif
1329 #ifdef HAVE_GCC_HAS_NO_UNIT_AT_A_TIME
1330                         "-fno-unit-at-a-time",
1331                         -- unit-at-a-time doesn't do us any good, and screws
1332                         -- up -split-objs by moving the split markers around.
1333                         -- It's only turned on with -O2, but put it here just
1334                         -- in case someone uses -optc-O2.
1335 #endif
1336                         "-fomit-frame-pointer",
1337                         -- we want -fno-builtin, because when gcc inlines
1338                         -- built-in functions like memcpy() it tends to
1339                         -- run out of registers, requiring -monly-n-regs
1340                         "-fno-builtin",
1341                         "-DSTOLEN_X86_REGS="++show n_regs ]
1342                     )
1343
1344 #elif ia64_TARGET_ARCH
1345         = ( [], ["-fomit-frame-pointer", "-G0"] )
1346
1347 #elif x86_64_TARGET_ARCH
1348         = ( [], ["-fomit-frame-pointer",
1349                  "-fno-asynchronous-unwind-tables",
1350                         -- the unwind tables are unnecessary for HC code,
1351                         -- and get in the way of -split-objs.  Another option
1352                         -- would be to throw them away in the mangler, but this
1353                         -- is easier.
1354 #ifdef HAVE_GCC_HAS_NO_UNIT_AT_A_TIME
1355                  "-fno-unit-at-a-time",
1356                         -- unit-at-a-time doesn't do us any good, and screws
1357                         -- up -split-objs by moving the split markers around.
1358                         -- It's only turned on with -O2, but put it here just
1359                         -- in case someone uses -optc-O2.
1360 #endif
1361                  "-fno-builtin"
1362                         -- calling builtins like strlen() using the FFI can
1363                         -- cause gcc to run out of regs, so use the external
1364                         -- version.
1365                 ] )
1366
1367 #elif sparc_TARGET_ARCH
1368         = ( [], ["-w"] )
1369         -- For now, to suppress the gcc warning "call-clobbered
1370         -- register used for global register variable", we simply
1371         -- disable all warnings altogether using the -w flag. Oh well.
1372
1373 #elif powerpc_apple_darwin_TARGET
1374       -- -no-cpp-precomp:
1375       --     Disable Apple's precompiling preprocessor. It's a great thing
1376       --     for "normal" programs, but it doesn't support register variable
1377       --     declarations.
1378         = ( [], ["-no-cpp-precomp"] )
1379 #else
1380         = ( [], [] )
1381 #endif
1382
1383 picCCOpts :: DynFlags -> [String]
1384 picCCOpts dflags
1385 #if darwin_TARGET_OS
1386       -- Apple prefers to do things the other way round.
1387       -- PIC is on by default.
1388       -- -mdynamic-no-pic:
1389       --     Turn off PIC code generation.
1390       -- -fno-common:
1391       --     Don't generate "common" symbols - these are unwanted
1392       --     in dynamic libraries.
1393
1394     | opt_PIC
1395         = ["-fno-common"]
1396     | otherwise
1397         = ["-mdynamic-no-pic"]
1398 #elif mingw32_TARGET_OS
1399       -- no -fPIC for Windows
1400         = []
1401 #else
1402     | opt_PIC
1403         = ["-fPIC"]
1404     | otherwise
1405         = []
1406 #endif
1407
1408 -- -----------------------------------------------------------------------------
1409 -- Splitting
1410
1411 can_split :: Bool
1412 can_split =  
1413 #if    defined(i386_TARGET_ARCH)     \
1414     || defined(x86_64_TARGET_ARCH)   \
1415     || defined(alpha_TARGET_ARCH)    \
1416     || defined(hppa_TARGET_ARCH)     \
1417     || defined(m68k_TARGET_ARCH)     \
1418     || defined(mips_TARGET_ARCH)     \
1419     || defined(powerpc_TARGET_ARCH)  \
1420     || defined(rs6000_TARGET_ARCH)   \
1421     || defined(sparc_TARGET_ARCH) 
1422    True
1423 #else
1424    False
1425 #endif
1426