don't make -ddump-if-trace imply -no-recomp
[ghc-hetmet.git] / compiler / main / DynFlags.hs
1
2 {-# OPTIONS -fno-warn-missing-fields #-}
3 -- The above warning supression flag is a temporary kludge.
4 -- While working on this module you are encouraged to remove it and fix
5 -- any warnings in the module. See
6 --     http://hackage.haskell.org/trac/ghc/wiki/Commentary/CodingStyle#Warnings
7 -- for details
8
9 -----------------------------------------------------------------------------
10 --
11 -- Dynamic flags
12 --
13 -- Most flags are dynamic flags, which means they can change from
14 -- compilation to compilation using OPTIONS_GHC pragmas, and in a
15 -- multi-session GHC each session can be using different dynamic
16 -- flags.  Dynamic flags can also be set at the prompt in GHCi.
17 --
18 -- (c) The University of Glasgow 2005
19 --
20 -----------------------------------------------------------------------------
21
22 module DynFlags (
23         -- Dynamic flags
24         DynFlag(..),
25         DynFlags(..),
26         HscTarget(..), isObjectTarget, defaultObjectTarget,
27         GhcMode(..), isOneShot,
28         GhcLink(..), isNoLink,
29         PackageFlag(..),
30         Option(..),
31         DynLibLoader(..),
32         fFlags, xFlags,
33
34         -- Configuration of the core-to-core and stg-to-stg phases
35         CoreToDo(..),
36         StgToDo(..),
37         SimplifierSwitch(..), 
38         SimplifierMode(..), FloatOutSwitches(..),
39         getCoreToDo, getStgToDo,
40         
41         -- Manipulating DynFlags
42         defaultDynFlags,                -- DynFlags
43         initDynFlags,                   -- DynFlags -> IO DynFlags
44
45         dopt,                           -- DynFlag -> DynFlags -> Bool
46         dopt_set, dopt_unset,           -- DynFlags -> DynFlag -> DynFlags
47         getOpts,                        -- (DynFlags -> [a]) -> IO [a]
48         getVerbFlag,
49         updOptLevel,
50         setTmpDir,
51         setPackageName,
52         
53         -- parsing DynFlags
54         parseDynamicFlags,
55         allFlags,
56
57         -- misc stuff
58         machdepCCOpts, picCCOpts,
59     supportedLanguages,
60     compilerInfo,
61   ) where
62
63 #include "HsVersions.h"
64
65 import Module
66 import PackageConfig
67 import PrelNames        ( mAIN )
68 #ifdef i386_TARGET_ARCH
69 import StaticFlags      ( opt_Static )
70 #endif
71 import StaticFlags      ( opt_PIC, WayName(..), v_Ways, v_Build_tag,
72                           v_RTS_Build_tag )
73 import {-# SOURCE #-} Packages (PackageState)
74 import DriverPhases     ( Phase(..), phaseInputExt )
75 import Config
76 import CmdLineParser
77 import Constants        ( mAX_CONTEXT_REDUCTION_DEPTH )
78 import Panic            ( panic, GhcException(..) )
79 import UniqFM           ( UniqFM )
80 import Util
81 import Maybes           ( orElse, fromJust )
82 import SrcLoc           ( SrcSpan )
83 import Outputable
84 import {-# SOURCE #-} ErrUtils ( Severity(..), Message, mkLocMessage )
85
86 import Data.IORef       ( readIORef )
87 import Control.Exception ( throwDyn )
88 import Control.Monad    ( when )
89
90 import Data.Char
91 import System.FilePath
92 import System.IO        ( hPutStrLn, stderr )
93
94 -- -----------------------------------------------------------------------------
95 -- DynFlags
96
97 data DynFlag
98
99    -- debugging flags
100    = Opt_D_dump_cmm
101    | Opt_D_dump_cmmz
102    | Opt_D_dump_cmmz_pretty
103    | Opt_D_dump_cps_cmm
104    | Opt_D_dump_cvt_cmm
105    | Opt_D_dump_asm
106    | Opt_D_dump_asm_native
107    | Opt_D_dump_asm_liveness
108    | Opt_D_dump_asm_coalesce
109    | Opt_D_dump_asm_regalloc
110    | Opt_D_dump_asm_regalloc_stages
111    | Opt_D_dump_asm_conflicts
112    | Opt_D_dump_asm_stats
113    | Opt_D_dump_cpranal
114    | Opt_D_dump_deriv
115    | Opt_D_dump_ds
116    | Opt_D_dump_flatC
117    | Opt_D_dump_foreign
118    | Opt_D_dump_inlinings
119    | Opt_D_dump_rule_firings
120    | Opt_D_dump_occur_anal
121    | Opt_D_dump_parsed
122    | Opt_D_dump_rn
123    | Opt_D_dump_simpl
124    | Opt_D_dump_simpl_iterations
125    | Opt_D_dump_simpl_phases
126    | Opt_D_dump_spec
127    | Opt_D_dump_prep
128    | Opt_D_dump_stg
129    | Opt_D_dump_stranal
130    | Opt_D_dump_tc
131    | Opt_D_dump_types
132    | Opt_D_dump_rules
133    | Opt_D_dump_cse
134    | Opt_D_dump_worker_wrapper
135    | Opt_D_dump_rn_trace
136    | Opt_D_dump_rn_stats
137    | Opt_D_dump_opt_cmm
138    | Opt_D_dump_simpl_stats
139    | Opt_D_dump_tc_trace
140    | Opt_D_dump_if_trace
141    | Opt_D_dump_splices
142    | Opt_D_dump_BCOs
143    | Opt_D_dump_vect
144    | Opt_D_dump_hpc
145    | Opt_D_source_stats
146    | Opt_D_verbose_core2core
147    | Opt_D_verbose_stg2stg
148    | Opt_D_dump_hi
149    | Opt_D_dump_hi_diffs
150    | Opt_D_dump_minimal_imports
151    | Opt_D_dump_mod_cycles
152    | Opt_D_dump_view_pattern_commoning
153    | Opt_D_faststring_stats
154    | Opt_DumpToFile                     -- ^ Append dump output to files instead of stdout.
155    | Opt_DoCoreLinting
156    | Opt_DoStgLinting
157    | Opt_DoCmmLinting
158    | Opt_DoAsmLinting
159
160    | Opt_WarnIsError                    -- -Werror; makes warnings fatal
161    | Opt_WarnDuplicateExports
162    | Opt_WarnHiShadows
163    | Opt_WarnImplicitPrelude
164    | Opt_WarnIncompletePatterns
165    | Opt_WarnIncompletePatternsRecUpd
166    | Opt_WarnMissingFields
167    | Opt_WarnMissingMethods
168    | Opt_WarnMissingSigs
169    | Opt_WarnNameShadowing
170    | Opt_WarnOverlappingPatterns
171    | Opt_WarnSimplePatterns
172    | Opt_WarnTypeDefaults
173    | Opt_WarnMonomorphism
174    | Opt_WarnUnusedBinds
175    | Opt_WarnUnusedImports
176    | Opt_WarnUnusedMatches
177    | Opt_WarnDeprecations
178    | Opt_WarnDodgyImports
179    | Opt_WarnOrphans
180    | Opt_WarnTabs
181
182    -- language opts
183    | Opt_OverlappingInstances
184    | Opt_UndecidableInstances
185    | Opt_IncoherentInstances
186    | Opt_MonomorphismRestriction
187    | Opt_MonoPatBinds
188    | Opt_ExtendedDefaultRules           -- Use GHC's extended rules for defaulting
189    | Opt_ForeignFunctionInterface
190    | Opt_UnliftedFFITypes
191    | Opt_PArr                           -- Syntactic support for parallel arrays
192    | Opt_Arrows                         -- Arrow-notation syntax
193    | Opt_TemplateHaskell
194    | Opt_QuasiQuotes
195    | Opt_ImplicitParams
196    | Opt_Generics
197    | Opt_ImplicitPrelude 
198    | Opt_ScopedTypeVariables
199    | Opt_UnboxedTuples
200    | Opt_BangPatterns
201    | Opt_TypeFamilies
202    | Opt_OverloadedStrings
203    | Opt_DisambiguateRecordFields
204    | Opt_RecordWildCards
205    | Opt_RecordPuns
206    | Opt_ViewPatterns
207    | Opt_GADTs
208    | Opt_RelaxedPolyRec
209    | Opt_StandaloneDeriving
210    | Opt_DeriveDataTypeable
211    | Opt_TypeSynonymInstances
212    | Opt_FlexibleContexts
213    | Opt_FlexibleInstances
214    | Opt_ConstrainedClassMethods
215    | Opt_MultiParamTypeClasses
216    | Opt_FunctionalDependencies
217    | Opt_UnicodeSyntax
218    | Opt_PolymorphicComponents
219    | Opt_ExistentialQuantification
220    | Opt_MagicHash
221    | Opt_EmptyDataDecls
222    | Opt_KindSignatures
223    | Opt_PatternSignatures
224    | Opt_ParallelListComp
225    | Opt_TransformListComp
226    | Opt_GeneralizedNewtypeDeriving
227    | Opt_RecursiveDo
228    | Opt_PatternGuards
229    | Opt_LiberalTypeSynonyms
230    | Opt_Rank2Types
231    | Opt_RankNTypes
232    | Opt_ImpredicativeTypes
233    | Opt_TypeOperators
234
235    | Opt_PrintExplicitForalls
236
237    -- optimisation opts
238    | Opt_Strictness
239    | Opt_FullLaziness
240    | Opt_StaticArgumentTransformation
241    | Opt_CSE
242    | Opt_LiberateCase
243    | Opt_SpecConstr
244    | Opt_IgnoreInterfacePragmas
245    | Opt_OmitInterfacePragmas
246    | Opt_DoLambdaEtaExpansion
247    | Opt_IgnoreAsserts
248    | Opt_DoEtaReduction
249    | Opt_CaseMerge
250    | Opt_UnboxStrictFields
251    | Opt_MethodSharing
252    | Opt_DictsCheap
253    | Opt_RewriteRules
254    | Opt_Vectorise
255    | Opt_RegsGraph                      -- do graph coloring register allocation
256    | Opt_RegsIterative                  -- do iterative coalescing graph coloring register allocation
257
258    -- misc opts
259    | Opt_Cpp
260    | Opt_Pp
261    | Opt_ForceRecomp
262    | Opt_DryRun
263    | Opt_DoAsmMangling
264    | Opt_ExcessPrecision
265    | Opt_ReadUserPackageConf
266    | Opt_NoHsMain
267    | Opt_SplitObjs
268    | Opt_StgStats
269    | Opt_HideAllPackages
270    | Opt_PrintBindResult
271    | Opt_Haddock
272    | Opt_HaddockOptions
273    | Opt_Hpc_No_Auto
274    | Opt_BreakOnException
275    | Opt_BreakOnError
276    | Opt_PrintEvldWithShow
277    | Opt_PrintBindContents
278    | Opt_GenManifest
279    | Opt_EmbedManifest
280    | Opt_RunCPSZ
281    | Opt_ConvertToZipCfgAndBack
282
283    -- keeping stuff
284    | Opt_KeepHiDiffs
285    | Opt_KeepHcFiles
286    | Opt_KeepSFiles
287    | Opt_KeepRawSFiles
288    | Opt_KeepTmpFiles
289
290    deriving (Eq, Show)
291  
292 data DynFlags = DynFlags {
293   ghcMode               :: GhcMode,
294   ghcLink               :: GhcLink,
295   coreToDo              :: Maybe [CoreToDo], -- reserved for -Ofile
296   stgToDo               :: Maybe [StgToDo],  -- similarly
297   hscTarget             :: HscTarget,
298   hscOutName            :: String,      -- name of the output file
299   extCoreName           :: String,      -- name of the .core output file
300   verbosity             :: Int,         -- verbosity level
301   optLevel              :: Int,         -- optimisation level
302   simplPhases           :: Int,         -- number of simplifier phases
303   maxSimplIterations    :: Int,         -- max simplifier iterations
304   shouldDumpSimplPhase  :: SimplifierMode -> Bool,
305   ruleCheck             :: Maybe String,
306
307   specConstrThreshold   :: Maybe Int,   -- Threshold for SpecConstr
308   specConstrCount       :: Maybe Int,   -- Max number of specialisations for any one function
309   liberateCaseThreshold :: Maybe Int,   -- Threshold for LiberateCase 
310
311   stolen_x86_regs       :: Int,         
312   cmdlineHcIncludes     :: [String],    -- -#includes
313   importPaths           :: [FilePath],
314   mainModIs             :: Module,
315   mainFunIs             :: Maybe String,
316   ctxtStkDepth          :: Int,         -- Typechecker context stack depth
317
318   thisPackage           :: PackageId,
319
320   -- ways
321   wayNames              :: [WayName],   -- way flags from the cmd line
322   buildTag              :: String,      -- the global "way" (eg. "p" for prof)
323   rtsBuildTag           :: String,      -- the RTS "way"
324   
325   -- paths etc.
326   objectDir             :: Maybe String,
327   hiDir                 :: Maybe String,
328   stubDir               :: Maybe String,
329
330   objectSuf             :: String,
331   hcSuf                 :: String,
332   hiSuf                 :: String,
333
334   outputFile            :: Maybe String,
335   outputHi              :: Maybe String,
336   dynLibLoader          :: DynLibLoader,
337
338   -- | This is set by DriverPipeline.runPipeline based on where
339   --    its output is going.
340   dumpPrefix            :: Maybe FilePath,
341
342   -- | Override the dumpPrefix set by runPipeline.
343   --    Set by -ddump-file-prefix
344   dumpPrefixForce       :: Maybe FilePath,
345
346   includePaths          :: [String],
347   libraryPaths          :: [String],
348   frameworkPaths        :: [String],    -- used on darwin only
349   cmdlineFrameworks     :: [String],    -- ditto
350   tmpDir                :: String,      -- no trailing '/'
351   
352   ghcUsagePath          :: FilePath,    -- Filled in by SysTools
353   ghciUsagePath         :: FilePath,    -- ditto
354
355   hpcDir                :: String,      -- ^ path to store the .mix files
356
357   -- options for particular phases
358   opt_L                 :: [String],
359   opt_P                 :: [String],
360   opt_F                 :: [String],
361   opt_c                 :: [String],
362   opt_m                 :: [String],
363   opt_a                 :: [String],
364   opt_l                 :: [String],
365   opt_dep               :: [String],
366   opt_windres           :: [String],
367
368   -- commands for particular phases
369   pgm_L                 :: String,
370   pgm_P                 :: (String,[Option]),
371   pgm_F                 :: String,
372   pgm_c                 :: (String,[Option]),
373   pgm_m                 :: (String,[Option]),
374   pgm_s                 :: (String,[Option]),
375   pgm_a                 :: (String,[Option]),
376   pgm_l                 :: (String,[Option]),
377   pgm_dll               :: (String,[Option]),
378   pgm_T                 :: String,
379   pgm_sysman            :: String,
380   pgm_windres           :: String,
381
382   --  Package flags
383   extraPkgConfs         :: [FilePath],
384   topDir                :: FilePath,    -- filled in by SysTools
385   systemPackageConfig   :: FilePath,    -- ditto
386         -- The -package-conf flags given on the command line, in the order
387         -- they appeared.
388
389   packageFlags          :: [PackageFlag],
390         -- The -package and -hide-package flags from the command-line
391
392   -- Package state
393   -- NB. do not modify this field, it is calculated by 
394   -- Packages.initPackages and Packages.updatePackages.
395   pkgDatabase           :: Maybe (UniqFM PackageConfig),
396   pkgState              :: PackageState,
397
398   -- hsc dynamic flags
399   flags                 :: [DynFlag],
400   
401   -- message output
402   log_action            :: Severity -> SrcSpan -> PprStyle -> Message -> IO (),
403
404   haddockOptions :: Maybe String
405  }
406
407 data HscTarget
408   = HscC
409   | HscAsm
410   | HscJava
411   | HscInterpreted
412   | HscNothing
413   deriving (Eq, Show)
414
415 -- | will this target result in an object file on the disk?
416 isObjectTarget :: HscTarget -> Bool
417 isObjectTarget HscC     = True
418 isObjectTarget HscAsm   = True
419 isObjectTarget _        = False
420
421 -- | The 'GhcMode' tells us whether we're doing multi-module
422 -- compilation (controlled via the "GHC" API) or one-shot
423 -- (single-module) compilation.  This makes a difference primarily to
424 -- the "Finder": in one-shot mode we look for interface files for
425 -- imported modules, but in multi-module mode we look for source files
426 -- in order to check whether they need to be recompiled.
427 data GhcMode
428   = CompManager         -- ^ --make, GHCi, etc.
429   | OneShot             -- ^ ghc -c Foo.hs
430   | MkDepend            -- ^ ghc -M, see Finder for why we need this
431   deriving Eq
432
433 isOneShot :: GhcMode -> Bool
434 isOneShot OneShot = True
435 isOneShot _other  = False
436
437 -- | What kind of linking to do.
438 data GhcLink    -- What to do in the link step, if there is one
439   = NoLink              -- Don't link at all
440   | LinkBinary          -- Link object code into a binary
441   | LinkInMemory        -- Use the in-memory dynamic linker
442   | LinkDynLib          -- Link objects into a dynamic lib (DLL on Windows, DSO on ELF platforms)
443   deriving (Eq, Show)
444
445 isNoLink :: GhcLink -> Bool
446 isNoLink NoLink = True
447 isNoLink _      = False
448
449 data PackageFlag
450   = ExposePackage  String
451   | HidePackage    String
452   | IgnorePackage  String
453   deriving Eq
454
455 defaultHscTarget :: HscTarget
456 defaultHscTarget = defaultObjectTarget
457
458 -- | the 'HscTarget' value corresponding to the default way to create
459 -- object files on the current platform.
460 defaultObjectTarget :: HscTarget
461 defaultObjectTarget
462   | cGhcWithNativeCodeGen == "YES"      =  HscAsm
463   | otherwise                           =  HscC
464
465 data DynLibLoader
466   = Deployable
467   | Wrapped (Maybe String)
468   | SystemDependent
469   deriving Eq
470
471 initDynFlags :: DynFlags -> IO DynFlags
472 initDynFlags dflags = do
473  -- someday these will be dynamic flags
474  ways <- readIORef v_Ways
475  build_tag <- readIORef v_Build_tag
476  rts_build_tag <- readIORef v_RTS_Build_tag
477  return dflags{
478         wayNames        = ways,
479         buildTag        = build_tag,
480         rtsBuildTag     = rts_build_tag
481         }
482
483 defaultDynFlags :: DynFlags
484 defaultDynFlags =
485      DynFlags {
486         ghcMode                 = CompManager,
487         ghcLink                 = LinkBinary,
488         coreToDo                = Nothing,
489         stgToDo                 = Nothing, 
490         hscTarget               = defaultHscTarget, 
491         hscOutName              = "", 
492         extCoreName             = "",
493         verbosity               = 0, 
494         optLevel                = 0,
495         simplPhases             = 2,
496         maxSimplIterations      = 4,
497         shouldDumpSimplPhase    = const False,
498         ruleCheck               = Nothing,
499         specConstrThreshold     = Just 200,
500         specConstrCount         = Just 3,
501         liberateCaseThreshold   = Just 200,
502         stolen_x86_regs         = 4,
503         cmdlineHcIncludes       = [],
504         importPaths             = ["."],
505         mainModIs               = mAIN,
506         mainFunIs               = Nothing,
507         ctxtStkDepth            = mAX_CONTEXT_REDUCTION_DEPTH,
508
509         thisPackage             = mainPackageId,
510
511         objectDir               = Nothing,
512         hiDir                   = Nothing,
513         stubDir                 = Nothing,
514
515         objectSuf               = phaseInputExt StopLn,
516         hcSuf                   = phaseInputExt HCc,
517         hiSuf                   = "hi",
518
519         outputFile              = Nothing,
520         outputHi                = Nothing,
521         dynLibLoader            = Deployable,
522         dumpPrefix              = Nothing,
523         dumpPrefixForce         = Nothing,
524         includePaths            = [],
525         libraryPaths            = [],
526         frameworkPaths          = [],
527         cmdlineFrameworks       = [],
528         tmpDir                  = cDEFAULT_TMPDIR,
529         
530         hpcDir                  = ".hpc",
531
532         opt_L                   = [],
533         opt_P                   = (if opt_PIC
534                                    then ["-D__PIC__"]
535                                    else []),
536         opt_F                   = [],
537         opt_c                   = [],
538         opt_a                   = [],
539         opt_m                   = [],
540         opt_l                   = [],
541         opt_dep                 = [],
542         opt_windres             = [],
543         
544         extraPkgConfs           = [],
545         packageFlags            = [],
546         pkgDatabase             = Nothing,
547         pkgState                = panic "no package state yet: call GHC.setSessionDynFlags",
548   haddockOptions = Nothing,
549         flags = [
550             Opt_ReadUserPackageConf,
551
552             Opt_MonoPatBinds,   -- Experimentally, I'm making this non-standard
553                                 -- behaviour the default, to see if anyone notices
554                                 -- SLPJ July 06
555
556             Opt_ImplicitPrelude,
557             Opt_MonomorphismRestriction,
558
559             Opt_MethodSharing,
560
561             Opt_DoAsmMangling,
562
563             Opt_GenManifest,
564             Opt_EmbedManifest,
565             Opt_PrintBindContents
566             ]
567             ++ [f | (ns,f) <- optLevelFlags, 0 `elem` ns]
568                     -- The default -O0 options
569             ++ standardWarnings,
570
571         log_action = \severity srcSpan style msg -> 
572                         case severity of
573                           SevInfo  -> hPutStrLn stderr (show (msg style))
574                           SevFatal -> hPutStrLn stderr (show (msg style))
575                           _        -> hPutStrLn stderr ('\n':show ((mkLocMessage srcSpan msg) style))
576       }
577
578 {- 
579     Verbosity levels:
580         
581     0   |   print errors & warnings only
582     1   |   minimal verbosity: print "compiling M ... done." for each module.
583     2   |   equivalent to -dshow-passes
584     3   |   equivalent to existing "ghc -v"
585     4   |   "ghc -v -ddump-most"
586     5   |   "ghc -v -ddump-all"
587 -}
588
589 dopt :: DynFlag -> DynFlags -> Bool
590 dopt f dflags  = f `elem` (flags dflags)
591
592 dopt_set :: DynFlags -> DynFlag -> DynFlags
593 dopt_set dfs f = dfs{ flags = f : flags dfs }
594
595 dopt_unset :: DynFlags -> DynFlag -> DynFlags
596 dopt_unset dfs f = dfs{ flags = filter (/= f) (flags dfs) }
597
598 getOpts :: DynFlags -> (DynFlags -> [a]) -> [a]
599 getOpts dflags opts = reverse (opts dflags)
600         -- We add to the options from the front, so we need to reverse the list
601
602 getVerbFlag :: DynFlags -> String
603 getVerbFlag dflags 
604   | verbosity dflags >= 3  = "-v" 
605   | otherwise =  ""
606
607 setObjectDir, setHiDir, setStubDir, setObjectSuf, setHiSuf, setHcSuf, parseDynLibLoaderMode,
608          setPgmP, setPgmL, setPgmF, setPgmc, setPgmm, setPgms, setPgma, setPgml, setPgmdll, setPgmwindres,
609          addOptL, addOptP, addOptF, addOptc, addOptm, addOpta, addOptl, addOptdep, addOptwindres,
610          addCmdlineFramework, addHaddockOpts
611    :: String -> DynFlags -> DynFlags
612 setOutputFile, setOutputHi, setDumpPrefixForce
613    :: Maybe String -> DynFlags -> DynFlags
614
615 setObjectDir  f d = d{ objectDir  = Just f}
616 setHiDir      f d = d{ hiDir      = Just f}
617 setStubDir    f d = d{ stubDir    = Just f, includePaths = f : includePaths d }
618   -- -stubdir D adds an implicit -I D, so that gcc can find the _stub.h file
619   -- #included from the .hc file when compiling with -fvia-C.
620
621 setObjectSuf  f d = d{ objectSuf  = f}
622 setHiSuf      f d = d{ hiSuf      = f}
623 setHcSuf      f d = d{ hcSuf      = f}
624
625 setOutputFile f d = d{ outputFile = f}
626 setOutputHi   f d = d{ outputHi   = f}
627
628 parseDynLibLoaderMode f d =
629  case splitAt 8 f of
630    ("deploy", "")       -> d{ dynLibLoader = Deployable }
631    ("sysdep", "")       -> d{ dynLibLoader = SystemDependent }
632    ("wrapped", "")      -> d{ dynLibLoader = Wrapped Nothing }
633    ("wrapped:", "hard") -> d{ dynLibLoader = Wrapped Nothing }
634    ("wrapped:", flex)   -> d{ dynLibLoader = Wrapped (Just flex) }
635    (_,_)                -> error "Unknown dynlib loader"
636
637 setDumpPrefixForce f d = d { dumpPrefixForce = f}
638
639 -- XXX HACK: Prelude> words "'does not' work" ===> ["'does","not'","work"]
640 -- Config.hs should really use Option.
641 setPgmP   f d = let (pgm:args) = words f in d{ pgm_P   = (pgm, map Option args)}
642
643 setPgmL   f d = d{ pgm_L   = f}
644 setPgmF   f d = d{ pgm_F   = f}
645 setPgmc   f d = d{ pgm_c   = (f,[])}
646 setPgmm   f d = d{ pgm_m   = (f,[])}
647 setPgms   f d = d{ pgm_s   = (f,[])}
648 setPgma   f d = d{ pgm_a   = (f,[])}
649 setPgml   f d = d{ pgm_l   = (f,[])}
650 setPgmdll f d = d{ pgm_dll = (f,[])}
651 setPgmwindres f d = d{ pgm_windres = f}
652
653 addOptL   f d = d{ opt_L   = f : opt_L d}
654 addOptP   f d = d{ opt_P   = f : opt_P d}
655 addOptF   f d = d{ opt_F   = f : opt_F d}
656 addOptc   f d = d{ opt_c   = f : opt_c d}
657 addOptm   f d = d{ opt_m   = f : opt_m d}
658 addOpta   f d = d{ opt_a   = f : opt_a d}
659 addOptl   f d = d{ opt_l   = f : opt_l d}
660 addOptdep f d = d{ opt_dep = f : opt_dep d}
661 addOptwindres f d = d{ opt_windres = f : opt_windres d}
662
663 addCmdlineFramework f d = d{ cmdlineFrameworks = f : cmdlineFrameworks d}
664
665 addHaddockOpts f d = d{ haddockOptions = Just f}
666
667 -- -----------------------------------------------------------------------------
668 -- Command-line options
669
670 -- When invoking external tools as part of the compilation pipeline, we
671 -- pass these a sequence of options on the command-line. Rather than
672 -- just using a list of Strings, we use a type that allows us to distinguish
673 -- between filepaths and 'other stuff'. [The reason being, of course, that
674 -- this type gives us a handle on transforming filenames, and filenames only,
675 -- to whatever format they're expected to be on a particular platform.]
676
677 data Option
678  = FileOption -- an entry that _contains_ filename(s) / filepaths.
679               String  -- a non-filepath prefix that shouldn't be 
680                       -- transformed (e.g., "/out=")
681               String  -- the filepath/filename portion
682  | Option     String
683  
684 -----------------------------------------------------------------------------
685 -- Setting the optimisation level
686
687 updOptLevel :: Int -> DynFlags -> DynFlags
688 -- Set dynflags appropriate to the optimisation level
689 updOptLevel n dfs
690   = dfs2{ optLevel = final_n }
691   where
692    final_n = max 0 (min 2 n)    -- Clamp to 0 <= n <= 2
693    dfs1 = foldr (flip dopt_unset) dfs  remove_dopts
694    dfs2 = foldr (flip dopt_set)   dfs1 extra_dopts
695
696    extra_dopts  = [ f | (ns,f) <- optLevelFlags, final_n `elem` ns ]
697    remove_dopts = [ f | (ns,f) <- optLevelFlags, final_n `notElem` ns ]
698         
699 optLevelFlags :: [([Int], DynFlag)]
700 optLevelFlags
701   = [ ([0],     Opt_IgnoreInterfacePragmas)
702     , ([0],     Opt_OmitInterfacePragmas)
703
704     , ([1,2],   Opt_IgnoreAsserts)
705     , ([1,2],   Opt_RewriteRules)       -- Off for -O0; see Note [Scoping for Builtin rules]
706                                         --              in PrelRules
707     , ([1,2],   Opt_DoEtaReduction)
708     , ([1,2],   Opt_CaseMerge)
709     , ([1,2],   Opt_Strictness)
710     , ([1,2],   Opt_CSE)
711     , ([1,2],   Opt_FullLaziness)
712
713     , ([2],     Opt_LiberateCase)
714     , ([2],     Opt_SpecConstr)
715     , ([2],     Opt_StaticArgumentTransformation)
716
717     , ([0,1,2], Opt_DoLambdaEtaExpansion)
718                 -- This one is important for a tiresome reason:
719                 -- we want to make sure that the bindings for data 
720                 -- constructors are eta-expanded.  This is probably
721                 -- a good thing anyway, but it seems fragile.
722     ]
723
724 -- -----------------------------------------------------------------------------
725 -- Standard sets of warning options
726
727 standardWarnings :: [DynFlag]
728 standardWarnings
729     = [ Opt_WarnDeprecations,
730         Opt_WarnOverlappingPatterns,
731         Opt_WarnMissingFields,
732         Opt_WarnMissingMethods,
733         Opt_WarnDuplicateExports
734       ]
735
736 minusWOpts :: [DynFlag]
737 minusWOpts
738     = standardWarnings ++ 
739       [ Opt_WarnUnusedBinds,
740         Opt_WarnUnusedMatches,
741         Opt_WarnUnusedImports,
742         Opt_WarnIncompletePatterns,
743         Opt_WarnDodgyImports
744       ]
745
746 minusWallOpts :: [DynFlag]
747 minusWallOpts
748     = minusWOpts ++
749       [ Opt_WarnTypeDefaults,
750         Opt_WarnNameShadowing,
751         Opt_WarnMissingSigs,
752         Opt_WarnHiShadows,
753         Opt_WarnOrphans
754       ]
755
756 -- minuswRemovesOpts should be every warning option
757 minuswRemovesOpts :: [DynFlag]
758 minuswRemovesOpts
759     = minusWallOpts ++
760       [Opt_WarnImplicitPrelude,
761        Opt_WarnIncompletePatternsRecUpd,
762        Opt_WarnSimplePatterns,
763        Opt_WarnMonomorphism,
764        Opt_WarnTabs
765       ]
766
767 -- -----------------------------------------------------------------------------
768 -- CoreToDo:  abstraction of core-to-core passes to run.
769
770 data CoreToDo           -- These are diff core-to-core passes,
771                         -- which may be invoked in any order,
772                         -- as many times as you like.
773
774   = CoreDoSimplify      -- The core-to-core simplifier.
775         SimplifierMode
776         [SimplifierSwitch]
777                         -- Each run of the simplifier can take a different
778                         -- set of simplifier-specific flags.
779   | CoreDoFloatInwards
780   | CoreDoFloatOutwards FloatOutSwitches
781   | CoreLiberateCase
782   | CoreDoPrintCore
783   | CoreDoStaticArgs
784   | CoreDoStrictness
785   | CoreDoWorkerWrapper
786   | CoreDoSpecialising
787   | CoreDoSpecConstr
788   | CoreDoOldStrictness
789   | CoreDoGlomBinds
790   | CoreCSE
791   | CoreDoRuleCheck Int{-CompilerPhase-} String -- Check for non-application of rules 
792                                                 -- matching this string
793   | CoreDoVectorisation
794   | CoreDoNothing                -- Useful when building up 
795   | CoreDoPasses [CoreToDo]      -- lists of these things
796
797 data SimplifierMode             -- See comments in SimplMonad
798   = SimplGently
799   | SimplPhase Int [String]
800
801 data SimplifierSwitch
802   = MaxSimplifierIterations Int
803   | NoCaseOfCase
804
805 data FloatOutSwitches
806   = FloatOutSw  Bool    -- True <=> float lambdas to top level
807                 Bool    -- True <=> float constants to top level,
808                         --          even if they do not escape a lambda
809
810
811 -- The core-to-core pass ordering is derived from the DynFlags:
812 runWhen :: Bool -> CoreToDo -> CoreToDo
813 runWhen True  do_this = do_this
814 runWhen False _       = CoreDoNothing
815
816 runMaybe :: Maybe a -> (a -> CoreToDo) -> CoreToDo
817 runMaybe (Just x) f = f x
818 runMaybe Nothing  _ = CoreDoNothing
819
820 getCoreToDo :: DynFlags -> [CoreToDo]
821 getCoreToDo dflags
822   | Just todo <- coreToDo dflags = todo -- set explicitly by user
823   | otherwise = core_todo
824   where
825     opt_level     = optLevel dflags
826     phases        = simplPhases dflags
827     max_iter      = maxSimplIterations dflags
828     strictness    = dopt Opt_Strictness dflags
829     full_laziness = dopt Opt_FullLaziness dflags
830     cse           = dopt Opt_CSE dflags
831     spec_constr   = dopt Opt_SpecConstr dflags
832     liberate_case = dopt Opt_LiberateCase dflags
833     rule_check    = ruleCheck dflags
834     vectorisation = dopt Opt_Vectorise dflags
835     static_args   = dopt Opt_StaticArgumentTransformation dflags
836
837     maybe_rule_check phase = runMaybe rule_check (CoreDoRuleCheck phase)
838
839     simpl_phase phase names iter
840       = CoreDoPasses
841           [ CoreDoSimplify (SimplPhase phase names) [
842               MaxSimplifierIterations iter
843             ],
844             maybe_rule_check phase
845           ]
846
847                 -- By default, we have 2 phases before phase 0.
848
849                 -- Want to run with inline phase 2 after the specialiser to give
850                 -- maximum chance for fusion to work before we inline build/augment
851                 -- in phase 1.  This made a difference in 'ansi' where an 
852                 -- overloaded function wasn't inlined till too late.
853
854                 -- Need phase 1 so that build/augment get 
855                 -- inlined.  I found that spectral/hartel/genfft lost some useful
856                 -- strictness in the function sumcode' if augment is not inlined
857                 -- before strictness analysis runs
858     simpl_phases = CoreDoPasses [ simpl_phase phase ["main"] max_iter
859                                   | phase <- [phases, phases-1 .. 1] ]
860
861
862         -- initial simplify: mk specialiser happy: minimum effort please
863     simpl_gently = CoreDoSimplify SimplGently [
864                         --      Simplify "gently"
865                         -- Don't inline anything till full laziness has bitten
866                         -- In particular, inlining wrappers inhibits floating
867                         -- e.g. ...(case f x of ...)...
868                         --  ==> ...(case (case x of I# x# -> fw x#) of ...)...
869                         --  ==> ...(case x of I# x# -> case fw x# of ...)...
870                         -- and now the redex (f x) isn't floatable any more
871                         -- Similarly, don't apply any rules until after full 
872                         -- laziness.  Notably, list fusion can prevent floating.
873
874             NoCaseOfCase,       -- Don't do case-of-case transformations.
875                                 -- This makes full laziness work better
876             MaxSimplifierIterations max_iter
877         ]
878
879     core_todo =
880      if opt_level == 0 then
881        [runWhen vectorisation (CoreDoPasses [ simpl_gently, CoreDoVectorisation ]),
882         simpl_phase 0 ["final"] max_iter]
883      else {- opt_level >= 1 -} [ 
884
885     -- We want to do the static argument transform before full laziness as it
886     -- may expose extra opportunities to float things outwards. However, to fix
887     -- up the output of the transformation we need at do at least one simplify
888     -- after this before anything else
889             runWhen static_args CoreDoStaticArgs,
890
891         -- initial simplify: mk specialiser happy: minimum effort please
892         simpl_gently,
893
894         -- We run vectorisation here for now, but we might also try to run
895         -- it later
896         runWhen vectorisation (CoreDoPasses [ CoreDoVectorisation, simpl_gently ]),
897
898         -- Specialisation is best done before full laziness
899         -- so that overloaded functions have all their dictionary lambdas manifest
900         CoreDoSpecialising,
901
902         runWhen full_laziness (CoreDoFloatOutwards (FloatOutSw False False)),
903
904         CoreDoFloatInwards,
905
906         simpl_phases,
907
908                 -- Phase 0: allow all Ids to be inlined now
909                 -- This gets foldr inlined before strictness analysis
910
911                 -- At least 3 iterations because otherwise we land up with
912                 -- huge dead expressions because of an infelicity in the 
913                 -- simpifier.   
914                 --      let k = BIG in foldr k z xs
915                 -- ==>  let k = BIG in letrec go = \xs -> ...(k x).... in go xs
916                 -- ==>  let k = BIG in letrec go = \xs -> ...(BIG x).... in go xs
917                 -- Don't stop now!
918         simpl_phase 0 ["main"] (max max_iter 3),
919
920
921 #ifdef OLD_STRICTNESS
922         CoreDoOldStrictness,
923 #endif
924         runWhen strictness (CoreDoPasses [
925                 CoreDoStrictness,
926                 CoreDoWorkerWrapper,
927                 CoreDoGlomBinds,
928                 simpl_phase 0 ["post-worker-wrapper"] max_iter
929                 ]),
930
931         runWhen full_laziness 
932           (CoreDoFloatOutwards (FloatOutSw False    -- Not lambdas
933                                            True)),  -- Float constants
934                 -- nofib/spectral/hartel/wang doubles in speed if you
935                 -- do full laziness late in the day.  It only happens
936                 -- after fusion and other stuff, so the early pass doesn't
937                 -- catch it.  For the record, the redex is 
938                 --        f_el22 (f_el21 r_midblock)
939
940
941         runWhen cse CoreCSE,
942                 -- We want CSE to follow the final full-laziness pass, because it may
943                 -- succeed in commoning up things floated out by full laziness.
944                 -- CSE used to rely on the no-shadowing invariant, but it doesn't any more
945
946         CoreDoFloatInwards,
947
948         maybe_rule_check 0,
949
950                 -- Case-liberation for -O2.  This should be after
951                 -- strictness analysis and the simplification which follows it.
952         runWhen liberate_case (CoreDoPasses [
953             CoreLiberateCase,
954             simpl_phase 0 ["post-liberate-case"] max_iter
955             ]),         -- Run the simplifier after LiberateCase to vastly 
956                         -- reduce the possiblility of shadowing
957                         -- Reason: see Note [Shadowing] in SpecConstr.lhs
958
959         runWhen spec_constr CoreDoSpecConstr,
960
961         maybe_rule_check 0,
962
963         -- Final clean-up simplification:
964         simpl_phase 0 ["final"] max_iter
965      ]
966
967 -- -----------------------------------------------------------------------------
968 -- StgToDo:  abstraction of stg-to-stg passes to run.
969
970 data StgToDo
971   = StgDoMassageForProfiling  -- should be (next to) last
972   -- There's also setStgVarInfo, but its absolute "lastness"
973   -- is so critical that it is hardwired in (no flag).
974   | D_stg_stats
975
976 getStgToDo :: DynFlags -> [StgToDo]
977 getStgToDo dflags
978   | Just todo <- stgToDo dflags = todo -- set explicitly by user
979   | otherwise = todo2
980   where
981         stg_stats = dopt Opt_StgStats dflags
982
983         todo1 = if stg_stats then [D_stg_stats] else []
984
985         todo2 | WayProf `elem` wayNames dflags
986               = StgDoMassageForProfiling : todo1
987               | otherwise
988               = todo1
989
990 -- -----------------------------------------------------------------------------
991 -- DynFlags parser
992
993 allFlags :: [String]
994 allFlags = map ('-':) $
995            [ name | (name, optkind) <- dynamic_flags, ok optkind ] ++
996            map ("fno-"++) flags ++
997            map ("f"++) flags ++
998            map ("X"++) xs ++
999            map ("XNo"++) xs
1000     where ok (PrefixPred _ _) = False
1001           ok _ = True
1002           flags = map fst fFlags
1003           xs = map fst xFlags
1004
1005 dynamic_flags :: [(String, OptKind DynP)]
1006 dynamic_flags = [
1007      ( "n"              , NoArg  (setDynFlag Opt_DryRun) )
1008   ,  ( "cpp"            , NoArg  (setDynFlag Opt_Cpp))
1009   ,  ( "F"              , NoArg  (setDynFlag Opt_Pp))
1010   ,  ( "#include"       , HasArg (addCmdlineHCInclude) )
1011   ,  ( "v"              , OptIntSuffix setVerbosity )
1012
1013         ------- Specific phases  --------------------------------------------
1014   ,  ( "pgmL"           , HasArg (upd . setPgmL) )  
1015   ,  ( "pgmP"           , HasArg (upd . setPgmP) )  
1016   ,  ( "pgmF"           , HasArg (upd . setPgmF) )  
1017   ,  ( "pgmc"           , HasArg (upd . setPgmc) )  
1018   ,  ( "pgmm"           , HasArg (upd . setPgmm) )  
1019   ,  ( "pgms"           , HasArg (upd . setPgms) )  
1020   ,  ( "pgma"           , HasArg (upd . setPgma) )  
1021   ,  ( "pgml"           , HasArg (upd . setPgml) )  
1022   ,  ( "pgmdll"         , HasArg (upd . setPgmdll) )
1023   ,  ( "pgmwindres"     , HasArg (upd . setPgmwindres) )
1024
1025   ,  ( "optL"           , HasArg (upd . addOptL) )  
1026   ,  ( "optP"           , HasArg (upd . addOptP) )  
1027   ,  ( "optF"           , HasArg (upd . addOptF) )  
1028   ,  ( "optc"           , HasArg (upd . addOptc) )  
1029   ,  ( "optm"           , HasArg (upd . addOptm) )  
1030   ,  ( "opta"           , HasArg (upd . addOpta) )  
1031   ,  ( "optl"           , HasArg (upd . addOptl) )  
1032   ,  ( "optdep"         , HasArg (upd . addOptdep) )
1033   ,  ( "optwindres"     , HasArg (upd . addOptwindres) )
1034
1035   ,  ( "split-objs"     , NoArg (if can_split
1036                                     then setDynFlag Opt_SplitObjs
1037                                     else return ()) )
1038
1039         -------- Linking ----------------------------------------------------
1040   ,  ( "c"              , NoArg (upd $ \d -> d{ ghcLink=NoLink } ))
1041   ,  ( "no-link"        , NoArg (upd $ \d -> d{ ghcLink=NoLink } )) -- Dep.
1042   ,  ( "shared"         , NoArg (upd $ \d -> d{ ghcLink=LinkDynLib } ))
1043   ,  ( "dynload"        , HasArg (upd . parseDynLibLoaderMode))
1044
1045         ------- Libraries ---------------------------------------------------
1046   ,  ( "L"              , Prefix addLibraryPath )
1047   ,  ( "l"              , AnySuffix (\s -> do upd (addOptl s)))
1048
1049         ------- Frameworks --------------------------------------------------
1050         -- -framework-path should really be -F ...
1051   ,  ( "framework-path" , HasArg addFrameworkPath )
1052   ,  ( "framework"      , HasArg (upd . addCmdlineFramework) )
1053
1054         ------- Output Redirection ------------------------------------------
1055   ,  ( "odir"           , HasArg (upd . setObjectDir))
1056   ,  ( "o"              , SepArg (upd . setOutputFile . Just))
1057   ,  ( "ohi"            , HasArg (upd . setOutputHi   . Just ))
1058   ,  ( "osuf"           , HasArg (upd . setObjectSuf))
1059   ,  ( "hcsuf"          , HasArg (upd . setHcSuf))
1060   ,  ( "hisuf"          , HasArg (upd . setHiSuf))
1061   ,  ( "hidir"          , HasArg (upd . setHiDir))
1062   ,  ( "tmpdir"         , HasArg (upd . setTmpDir))
1063   ,  ( "stubdir"        , HasArg (upd . setStubDir))
1064   ,  ( "ddump-file-prefix", HasArg (upd . setDumpPrefixForce . Just))
1065
1066         ------- Keeping temporary files -------------------------------------
1067      -- These can be singular (think ghc -c) or plural (think ghc --make)
1068   ,  ( "keep-hc-file"    , NoArg (setDynFlag Opt_KeepHcFiles))
1069   ,  ( "keep-hc-files"   , NoArg (setDynFlag Opt_KeepHcFiles))
1070   ,  ( "keep-s-file"     , NoArg (setDynFlag Opt_KeepSFiles))
1071   ,  ( "keep-s-files"    , NoArg (setDynFlag Opt_KeepSFiles))
1072   ,  ( "keep-raw-s-file" , NoArg (setDynFlag Opt_KeepRawSFiles))
1073   ,  ( "keep-raw-s-files", NoArg (setDynFlag Opt_KeepRawSFiles))
1074      -- This only makes sense as plural
1075   ,  ( "keep-tmp-files"  , NoArg (setDynFlag Opt_KeepTmpFiles))
1076
1077         ------- Miscellaneous ----------------------------------------------
1078   ,  ( "no-hs-main"     , NoArg (setDynFlag Opt_NoHsMain))
1079   ,  ( "main-is"        , SepArg setMainIs )
1080   ,  ( "haddock"        , NoArg (setDynFlag Opt_Haddock) )
1081   ,  ( "haddock-opts"   , HasArg (upd . addHaddockOpts))
1082   ,  ( "hpcdir"         , SepArg setOptHpcDir )
1083
1084         ------- recompilation checker (DEPRECATED, use -fforce-recomp) -----
1085   ,  ( "recomp"         , NoArg (unSetDynFlag Opt_ForceRecomp) )
1086   ,  ( "no-recomp"      , NoArg (setDynFlag   Opt_ForceRecomp) )
1087
1088         ------- Packages ----------------------------------------------------
1089   ,  ( "package-conf"   , HasArg extraPkgConf_ )
1090   ,  ( "no-user-package-conf", NoArg (unSetDynFlag Opt_ReadUserPackageConf) )
1091   ,  ( "package-name"   , HasArg (upd . setPackageName) )
1092   ,  ( "package"        , HasArg exposePackage )
1093   ,  ( "hide-package"   , HasArg hidePackage )
1094   ,  ( "hide-all-packages", NoArg (setDynFlag Opt_HideAllPackages) )
1095   ,  ( "ignore-package" , HasArg ignorePackage )
1096   ,  ( "syslib"         , HasArg exposePackage )  -- for compatibility
1097
1098         ------ HsCpp opts ---------------------------------------------------
1099   ,  ( "D",             AnySuffix (upd . addOptP) )
1100   ,  ( "U",             AnySuffix (upd . addOptP) )
1101
1102         ------- Include/Import Paths ----------------------------------------
1103   ,  ( "I"              , Prefix    addIncludePath)
1104   ,  ( "i"              , OptPrefix addImportPath )
1105
1106         ------ Debugging ----------------------------------------------------
1107   ,  ( "dstg-stats",    NoArg (setDynFlag Opt_StgStats))
1108
1109   ,  ( "ddump-cmm",              setDumpFlag Opt_D_dump_cmm)
1110   ,  ( "ddump-cmmz",             setDumpFlag Opt_D_dump_cmmz)
1111   ,  ( "ddump-cmmz-pretty",      setDumpFlag Opt_D_dump_cmmz_pretty)
1112   ,  ( "ddump-cps-cmm",          setDumpFlag Opt_D_dump_cps_cmm)
1113   ,  ( "ddump-cvt-cmm",          setDumpFlag Opt_D_dump_cvt_cmm)
1114   ,  ( "ddump-asm",              setDumpFlag Opt_D_dump_asm)
1115   ,  ( "ddump-asm-native",       setDumpFlag Opt_D_dump_asm_native)
1116   ,  ( "ddump-asm-liveness",     setDumpFlag Opt_D_dump_asm_liveness)
1117   ,  ( "ddump-asm-coalesce",     setDumpFlag Opt_D_dump_asm_coalesce)
1118   ,  ( "ddump-asm-regalloc",     setDumpFlag Opt_D_dump_asm_regalloc)
1119   ,  ( "ddump-asm-conflicts",    setDumpFlag Opt_D_dump_asm_conflicts)
1120   ,  ( "ddump-asm-regalloc-stages",
1121                                  setDumpFlag Opt_D_dump_asm_regalloc_stages)
1122   ,  ( "ddump-asm-stats",        setDumpFlag Opt_D_dump_asm_stats)
1123   ,  ( "ddump-cpranal",          setDumpFlag Opt_D_dump_cpranal)
1124   ,  ( "ddump-deriv",            setDumpFlag Opt_D_dump_deriv)
1125   ,  ( "ddump-ds",               setDumpFlag Opt_D_dump_ds)
1126   ,  ( "ddump-flatC",            setDumpFlag Opt_D_dump_flatC)
1127   ,  ( "ddump-foreign",          setDumpFlag Opt_D_dump_foreign)
1128   ,  ( "ddump-inlinings",        setDumpFlag Opt_D_dump_inlinings)
1129   ,  ( "ddump-rule-firings",     setDumpFlag Opt_D_dump_rule_firings)
1130   ,  ( "ddump-occur-anal",       setDumpFlag Opt_D_dump_occur_anal)
1131   ,  ( "ddump-parsed",           setDumpFlag Opt_D_dump_parsed)
1132   ,  ( "ddump-rn",               setDumpFlag Opt_D_dump_rn)
1133   ,  ( "ddump-simpl",            setDumpFlag Opt_D_dump_simpl)
1134   ,  ( "ddump-simpl-iterations", setDumpFlag Opt_D_dump_simpl_iterations)
1135   ,  ( "ddump-simpl-phases",     OptPrefix setDumpSimplPhases)
1136   ,  ( "ddump-spec",             setDumpFlag Opt_D_dump_spec)
1137   ,  ( "ddump-prep",             setDumpFlag Opt_D_dump_prep)
1138   ,  ( "ddump-stg",              setDumpFlag Opt_D_dump_stg)
1139   ,  ( "ddump-stranal",          setDumpFlag Opt_D_dump_stranal)
1140   ,  ( "ddump-tc",               setDumpFlag Opt_D_dump_tc)
1141   ,  ( "ddump-types",            setDumpFlag Opt_D_dump_types)
1142   ,  ( "ddump-rules",            setDumpFlag Opt_D_dump_rules)
1143   ,  ( "ddump-cse",              setDumpFlag Opt_D_dump_cse)
1144   ,  ( "ddump-worker-wrapper",   setDumpFlag Opt_D_dump_worker_wrapper)
1145   ,  ( "ddump-rn-trace",         setDumpFlag Opt_D_dump_rn_trace)
1146   ,  ( "ddump-if-trace",         setDumpFlag Opt_D_dump_if_trace)
1147   ,  ( "ddump-tc-trace",         setDumpFlag Opt_D_dump_tc_trace)
1148   ,  ( "ddump-splices",          setDumpFlag Opt_D_dump_splices)
1149   ,  ( "ddump-rn-stats",         setDumpFlag Opt_D_dump_rn_stats)
1150   ,  ( "ddump-opt-cmm",          setDumpFlag Opt_D_dump_opt_cmm)
1151   ,  ( "ddump-simpl-stats",      setDumpFlag Opt_D_dump_simpl_stats)
1152   ,  ( "ddump-bcos",             setDumpFlag Opt_D_dump_BCOs)
1153   ,  ( "dsource-stats",          setDumpFlag Opt_D_source_stats)
1154   ,  ( "dverbose-core2core",     NoArg setVerboseCore2Core)
1155   ,  ( "dverbose-stg2stg",       setDumpFlag Opt_D_verbose_stg2stg)
1156   ,  ( "ddump-hi",               setDumpFlag Opt_D_dump_hi)
1157   ,  ( "ddump-minimal-imports",  setDumpFlag Opt_D_dump_minimal_imports)
1158   ,  ( "ddump-vect",             setDumpFlag Opt_D_dump_vect)
1159   ,  ( "ddump-hpc",              setDumpFlag Opt_D_dump_hpc)
1160   ,  ( "ddump-mod-cycles",       setDumpFlag Opt_D_dump_mod_cycles)
1161   ,  ( "ddump-view-pattern-commoning", setDumpFlag Opt_D_dump_view_pattern_commoning)
1162   ,  ( "ddump-to-file",          setDumpFlag Opt_DumpToFile)
1163   ,  ( "ddump-hi-diffs",         setDumpFlag Opt_D_dump_hi_diffs)
1164
1165   ,  ( "dcore-lint",             NoArg (setDynFlag Opt_DoCoreLinting))
1166   ,  ( "dstg-lint",              NoArg (setDynFlag Opt_DoStgLinting))
1167   ,  ( "dcmm-lint",              NoArg (setDynFlag Opt_DoCmmLinting))
1168   ,  ( "dasm-lint",              NoArg (setDynFlag Opt_DoAsmLinting))
1169   ,  ( "dshow-passes",           NoArg (do setDynFlag Opt_ForceRecomp
1170                                            setVerbosity (Just 2)) )
1171   ,  ( "dfaststring-stats",      NoArg (setDynFlag Opt_D_faststring_stats))
1172
1173         ------ Machine dependant (-m<blah>) stuff ---------------------------
1174
1175   ,  ( "monly-2-regs",  NoArg (upd (\s -> s{stolen_x86_regs = 2}) ))
1176   ,  ( "monly-3-regs",  NoArg (upd (\s -> s{stolen_x86_regs = 3}) ))
1177   ,  ( "monly-4-regs",  NoArg (upd (\s -> s{stolen_x86_regs = 4}) ))
1178
1179      ------ Warning opts -------------------------------------------------
1180   ,  ( "W"     , NoArg (mapM_ setDynFlag   minusWOpts)    )
1181   ,  ( "Werror", NoArg (setDynFlag         Opt_WarnIsError) )
1182   ,  ( "Wwarn" , NoArg (unSetDynFlag       Opt_WarnIsError) )
1183   ,  ( "Wall"  , NoArg (mapM_ setDynFlag   minusWallOpts) )
1184   ,  ( "Wnot"  , NoArg (mapM_ unSetDynFlag minusWallOpts) ) -- DEPRECATED
1185   ,  ( "w"     , NoArg (mapM_ unSetDynFlag minuswRemovesOpts) )
1186
1187         ------ Optimisation flags ------------------------------------------
1188   ,  ( "O"      , NoArg (upd (setOptLevel 1)))
1189   ,  ( "Onot"   , NoArg (upd (setOptLevel 0))) -- deprecated
1190   ,  ( "Odph"   , NoArg (upd setDPHOpt))
1191   ,  ( "O"      , OptIntSuffix (\mb_n -> upd (setOptLevel (mb_n `orElse` 1))))
1192                 -- If the number is missing, use 1
1193
1194   ,  ( "fsimplifier-phases",         IntSuffix (\n ->
1195                 upd (\dfs -> dfs{ simplPhases = n })) )
1196   ,  ( "fmax-simplifier-iterations", IntSuffix (\n -> 
1197                 upd (\dfs -> dfs{ maxSimplIterations = n })) )
1198
1199   ,  ( "fspec-constr-threshold",      IntSuffix (\n ->
1200                 upd (\dfs -> dfs{ specConstrThreshold = Just n })))
1201   ,  ( "fno-spec-constr-threshold",   NoArg (
1202                 upd (\dfs -> dfs{ specConstrThreshold = Nothing })))
1203   ,  ( "fspec-constr-count",          IntSuffix (\n ->
1204                 upd (\dfs -> dfs{ specConstrCount = Just n })))
1205   ,  ( "fno-spec-constr-count",   NoArg (
1206                 upd (\dfs -> dfs{ specConstrCount = Nothing })))
1207   ,  ( "fliberate-case-threshold",    IntSuffix (\n ->
1208                 upd (\dfs -> dfs{ liberateCaseThreshold = Just n })))
1209   ,  ( "fno-liberate-case-threshold", NoArg (
1210                 upd (\dfs -> dfs{ liberateCaseThreshold = Nothing })))
1211
1212   ,  ( "frule-check",     SepArg (\s -> upd (\dfs -> dfs{ ruleCheck = Just s })))
1213   ,  ( "fcontext-stack" , IntSuffix $ \n -> upd $ \dfs -> dfs{ ctxtStkDepth = n })
1214
1215         ------ Compiler flags -----------------------------------------------
1216
1217   ,  ( "fasm",             NoArg (setObjTarget HscAsm) )
1218   ,  ( "fvia-c",           NoArg (setObjTarget HscC) )
1219   ,  ( "fvia-C",           NoArg (setObjTarget HscC) )
1220
1221   ,  ( "fno-code",         NoArg (setTarget HscNothing))
1222   ,  ( "fbyte-code",       NoArg (setTarget HscInterpreted) )
1223   ,  ( "fobject-code",     NoArg (setTarget defaultHscTarget) )
1224
1225   ,  ( "fglasgow-exts",    NoArg (mapM_ setDynFlag   glasgowExtsFlags) )
1226   ,  ( "fno-glasgow-exts", NoArg (mapM_ unSetDynFlag glasgowExtsFlags) )
1227
1228      -- the rest of the -f* and -fno-* flags
1229   ,  ( "f",                PrefixPred (isFlag   fFlags)
1230                            (\f -> setDynFlag   (getFlag   fFlags f)) )
1231   ,  ( "f",                PrefixPred (isPrefFlag "no-" fFlags)
1232                            (\f -> unSetDynFlag (getPrefFlag "no-" fFlags f)) )
1233
1234      -- the -X* and -XNo* flags
1235   ,  ( "X",                PrefixPred (isFlag   xFlags)
1236                            (\f -> setDynFlag   (getFlag   xFlags f)) )
1237   ,  ( "X",                PrefixPred (isPrefFlag "No" xFlags)
1238                            (\f -> unSetDynFlag (getPrefFlag "No" xFlags f)) )
1239  ]
1240
1241 -- these -f<blah> flags can all be reversed with -fno-<blah>
1242
1243 fFlags :: [(String, DynFlag)]
1244 fFlags = [
1245   ( "warn-dodgy-imports",               Opt_WarnDodgyImports ),
1246   ( "warn-duplicate-exports",           Opt_WarnDuplicateExports ),
1247   ( "warn-hi-shadowing",                Opt_WarnHiShadows ),
1248   ( "warn-implicit-prelude",            Opt_WarnImplicitPrelude ),
1249   ( "warn-incomplete-patterns",         Opt_WarnIncompletePatterns ),
1250   ( "warn-incomplete-record-updates",   Opt_WarnIncompletePatternsRecUpd ),
1251   ( "warn-missing-fields",              Opt_WarnMissingFields ),
1252   ( "warn-missing-methods",             Opt_WarnMissingMethods ),
1253   ( "warn-missing-signatures",          Opt_WarnMissingSigs ),
1254   ( "warn-name-shadowing",              Opt_WarnNameShadowing ),
1255   ( "warn-overlapping-patterns",        Opt_WarnOverlappingPatterns ),
1256   ( "warn-simple-patterns",             Opt_WarnSimplePatterns ),
1257   ( "warn-type-defaults",               Opt_WarnTypeDefaults ),
1258   ( "warn-monomorphism-restriction",    Opt_WarnMonomorphism ),
1259   ( "warn-unused-binds",                Opt_WarnUnusedBinds ),
1260   ( "warn-unused-imports",              Opt_WarnUnusedImports ),
1261   ( "warn-unused-matches",              Opt_WarnUnusedMatches ),
1262   ( "warn-deprecations",                Opt_WarnDeprecations ),
1263   ( "warn-orphans",                     Opt_WarnOrphans ),
1264   ( "warn-tabs",                        Opt_WarnTabs ),
1265   ( "print-explicit-foralls",           Opt_PrintExplicitForalls ),
1266   ( "strictness",                       Opt_Strictness ),
1267   ( "static-argument-transformation",   Opt_StaticArgumentTransformation ),
1268   ( "full-laziness",                    Opt_FullLaziness ),
1269   ( "liberate-case",                    Opt_LiberateCase ),
1270   ( "spec-constr",                      Opt_SpecConstr ),
1271   ( "cse",                              Opt_CSE ),
1272   ( "ignore-interface-pragmas",         Opt_IgnoreInterfacePragmas ),
1273   ( "omit-interface-pragmas",           Opt_OmitInterfacePragmas ),
1274   ( "do-lambda-eta-expansion",          Opt_DoLambdaEtaExpansion ),
1275   ( "ignore-asserts",                   Opt_IgnoreAsserts ),
1276   ( "do-eta-reduction",                 Opt_DoEtaReduction ),
1277   ( "case-merge",                       Opt_CaseMerge ),
1278   ( "unbox-strict-fields",              Opt_UnboxStrictFields ),
1279   ( "method-sharing",                   Opt_MethodSharing ),
1280   ( "dicts-cheap",                      Opt_DictsCheap ),
1281   ( "excess-precision",                 Opt_ExcessPrecision ),
1282   ( "asm-mangling",                     Opt_DoAsmMangling ),
1283   ( "print-bind-result",                Opt_PrintBindResult ),
1284   ( "force-recomp",                     Opt_ForceRecomp ),
1285   ( "hpc-no-auto",                      Opt_Hpc_No_Auto ),
1286   ( "rewrite-rules",                    Opt_RewriteRules ),
1287   ( "break-on-exception",               Opt_BreakOnException ),
1288   ( "break-on-error",                   Opt_BreakOnError ),
1289   ( "print-evld-with-show",             Opt_PrintEvldWithShow ),
1290   ( "print-bind-contents",              Opt_PrintBindContents ),
1291   ( "run-cps",                          Opt_RunCPSZ ),
1292   ( "convert-to-zipper-and-back",       Opt_ConvertToZipCfgAndBack),
1293   ( "vectorise",                        Opt_Vectorise ),
1294   ( "regs-graph",                       Opt_RegsGraph),
1295   ( "regs-iterative",                   Opt_RegsIterative),
1296   -- Deprecated in favour of -XTemplateHaskell:
1297   ( "th",                               Opt_TemplateHaskell ),
1298   -- Deprecated in favour of -XForeignFunctionInterface:
1299   ( "fi",                               Opt_ForeignFunctionInterface ),
1300   -- Deprecated in favour of -XForeignFunctionInterface:
1301   ( "ffi",                              Opt_ForeignFunctionInterface ),
1302   -- Deprecated in favour of -XArrows:
1303   ( "arrows",                           Opt_Arrows ),
1304   -- Deprecated in favour of -XGenerics:
1305   ( "generics",                         Opt_Generics ),
1306   -- Deprecated in favour of -XImplicitPrelude:
1307   ( "implicit-prelude",                 Opt_ImplicitPrelude ),
1308   -- Deprecated in favour of -XBangPatterns:
1309   ( "bang-patterns",                    Opt_BangPatterns ),
1310   -- Deprecated in favour of -XMonomorphismRestriction:
1311   ( "monomorphism-restriction",         Opt_MonomorphismRestriction ),
1312   -- Deprecated in favour of -XMonoPatBinds:
1313   ( "mono-pat-binds",                   Opt_MonoPatBinds ),
1314   -- Deprecated in favour of -XExtendedDefaultRules:
1315   ( "extended-default-rules",           Opt_ExtendedDefaultRules ),
1316   -- Deprecated in favour of -XImplicitParams:
1317   ( "implicit-params",                  Opt_ImplicitParams ),
1318   -- Deprecated in favour of -XScopedTypeVariables:
1319   ( "scoped-type-variables",            Opt_ScopedTypeVariables ),
1320   -- Deprecated in favour of -XPArr:
1321   ( "parr",                             Opt_PArr ),
1322   -- Deprecated in favour of -XOverlappingInstances:
1323   ( "allow-overlapping-instances",      Opt_OverlappingInstances ),
1324   -- Deprecated in favour of -XUndecidableInstances:
1325   ( "allow-undecidable-instances",      Opt_UndecidableInstances ),
1326   -- Deprecated in favour of -XIncoherentInstances:
1327   ( "allow-incoherent-instances",       Opt_IncoherentInstances ),
1328   ( "gen-manifest",                     Opt_GenManifest ),
1329   ( "embed-manifest",                   Opt_EmbedManifest )
1330   ]
1331
1332 supportedLanguages :: [String]
1333 supportedLanguages = map fst xFlags
1334
1335 -- These -X<blah> flags can all be reversed with -XNo<blah>
1336 xFlags :: [(String, DynFlag)]
1337 xFlags = [
1338   ( "CPP",                              Opt_Cpp ),
1339   ( "PatternGuards",                    Opt_PatternGuards ),
1340   ( "UnicodeSyntax",                    Opt_UnicodeSyntax ),
1341   ( "MagicHash",                        Opt_MagicHash ),
1342   ( "PolymorphicComponents",            Opt_PolymorphicComponents ),
1343   ( "ExistentialQuantification",        Opt_ExistentialQuantification ),
1344   ( "KindSignatures",                   Opt_KindSignatures ),
1345   ( "PatternSignatures",                Opt_PatternSignatures ),
1346   ( "EmptyDataDecls",                   Opt_EmptyDataDecls ),
1347   ( "ParallelListComp",                 Opt_ParallelListComp ),
1348   ( "TransformListComp",                Opt_TransformListComp ),
1349   ( "ForeignFunctionInterface",         Opt_ForeignFunctionInterface ),
1350   ( "UnliftedFFITypes",                 Opt_UnliftedFFITypes ),
1351   ( "LiberalTypeSynonyms",              Opt_LiberalTypeSynonyms ),
1352   ( "Rank2Types",                       Opt_Rank2Types ),
1353   ( "RankNTypes",                       Opt_RankNTypes ),
1354   ( "ImpredicativeTypes",               Opt_ImpredicativeTypes ),
1355   ( "TypeOperators",                    Opt_TypeOperators ),
1356   ( "RecursiveDo",                      Opt_RecursiveDo ),
1357   ( "Arrows",                           Opt_Arrows ),
1358   ( "PArr",                             Opt_PArr ),
1359   ( "TemplateHaskell",                  Opt_TemplateHaskell ),
1360   ( "QuasiQuotes",                      Opt_QuasiQuotes ),
1361   ( "Generics",                         Opt_Generics ),
1362   -- On by default:
1363   ( "ImplicitPrelude",                  Opt_ImplicitPrelude ),
1364   ( "RecordWildCards",                  Opt_RecordWildCards ),
1365   ( "RecordPuns",                       Opt_RecordPuns ),
1366   ( "DisambiguateRecordFields",         Opt_DisambiguateRecordFields ),
1367   ( "OverloadedStrings",                Opt_OverloadedStrings ),
1368   ( "GADTs",                            Opt_GADTs ),
1369   ( "ViewPatterns",                     Opt_ViewPatterns),
1370   ( "TypeFamilies",                     Opt_TypeFamilies ),
1371   ( "BangPatterns",                     Opt_BangPatterns ),
1372   -- On by default:
1373   ( "MonomorphismRestriction",          Opt_MonomorphismRestriction ),
1374   -- On by default (which is not strictly H98):
1375   ( "MonoPatBinds",                     Opt_MonoPatBinds ),
1376   ( "RelaxedPolyRec",                   Opt_RelaxedPolyRec),
1377   ( "ExtendedDefaultRules",             Opt_ExtendedDefaultRules ),
1378   ( "ImplicitParams",                   Opt_ImplicitParams ),
1379   ( "ScopedTypeVariables",              Opt_ScopedTypeVariables ),
1380   ( "UnboxedTuples",                    Opt_UnboxedTuples ),
1381   ( "StandaloneDeriving",               Opt_StandaloneDeriving ),
1382   ( "DeriveDataTypeable",               Opt_DeriveDataTypeable ),
1383   ( "TypeSynonymInstances",             Opt_TypeSynonymInstances ),
1384   ( "FlexibleContexts",                 Opt_FlexibleContexts ),
1385   ( "FlexibleInstances",                Opt_FlexibleInstances ),
1386   ( "ConstrainedClassMethods",          Opt_ConstrainedClassMethods ),
1387   ( "MultiParamTypeClasses",            Opt_MultiParamTypeClasses ),
1388   ( "FunctionalDependencies",           Opt_FunctionalDependencies ),
1389   ( "GeneralizedNewtypeDeriving",       Opt_GeneralizedNewtypeDeriving ),
1390   ( "OverlappingInstances",             Opt_OverlappingInstances ),
1391   ( "UndecidableInstances",             Opt_UndecidableInstances ),
1392   ( "IncoherentInstances",              Opt_IncoherentInstances )
1393   ]
1394
1395 impliedFlags :: [(DynFlag, [DynFlag])]
1396 impliedFlags = [
1397    ( Opt_GADTs,               [Opt_RelaxedPolyRec] )    -- We want type-sig variables to 
1398                                                         --      be completely rigid for GADTs
1399  , ( Opt_ScopedTypeVariables, [Opt_RelaxedPolyRec] )    -- Ditto for scoped type variables; see
1400                                                         --      Note [Scoped tyvars] in TcBinds
1401   ]
1402
1403 glasgowExtsFlags :: [DynFlag]
1404 glasgowExtsFlags = [
1405              Opt_PrintExplicitForalls
1406            , Opt_ForeignFunctionInterface
1407            , Opt_UnliftedFFITypes
1408            , Opt_GADTs
1409            , Opt_ImplicitParams 
1410            , Opt_ScopedTypeVariables
1411            , Opt_UnboxedTuples
1412            , Opt_TypeSynonymInstances
1413            , Opt_StandaloneDeriving
1414            , Opt_DeriveDataTypeable
1415            , Opt_FlexibleContexts
1416            , Opt_FlexibleInstances
1417            , Opt_ConstrainedClassMethods
1418            , Opt_MultiParamTypeClasses
1419            , Opt_FunctionalDependencies
1420            , Opt_MagicHash
1421            , Opt_PolymorphicComponents
1422            , Opt_ExistentialQuantification
1423            , Opt_UnicodeSyntax
1424            , Opt_PatternGuards
1425            , Opt_LiberalTypeSynonyms
1426            , Opt_RankNTypes
1427            , Opt_ImpredicativeTypes
1428            , Opt_TypeOperators
1429            , Opt_RecursiveDo
1430            , Opt_ParallelListComp
1431            , Opt_EmptyDataDecls
1432            , Opt_KindSignatures
1433            , Opt_PatternSignatures
1434            , Opt_GeneralizedNewtypeDeriving
1435            , Opt_TypeFamilies ]
1436
1437 ------------------
1438 isFlag :: [(String,a)] -> String -> Bool
1439 isFlag flags f = any (\(ff,_) -> ff == f) flags
1440
1441 isPrefFlag :: String -> [(String,a)] -> String -> Bool
1442 isPrefFlag pref flags no_f
1443   | Just f <- maybePrefixMatch pref no_f = isFlag flags f
1444   | otherwise                            = False
1445
1446 ------------------
1447 getFlag :: [(String,a)] -> String -> a
1448 getFlag flags f = case [ opt | (ff, opt) <- flags, ff == f] of
1449                       (o:_)  -> o
1450                       []     -> panic ("get_flag " ++ f)
1451
1452 getPrefFlag :: String -> [(String,a)] -> String -> a
1453 getPrefFlag pref flags f = getFlag flags (fromJust (maybePrefixMatch pref f))
1454 -- We should only be passed flags which match the prefix
1455
1456 -- -----------------------------------------------------------------------------
1457 -- Parsing the dynamic flags.
1458
1459 parseDynamicFlags :: DynFlags -> [String] -> IO (DynFlags,[String])
1460 parseDynamicFlags dflags args = do
1461   let ((leftover,errs),dflags') 
1462           = runCmdLine (processArgs dynamic_flags args) dflags
1463   when (not (null errs)) $ do
1464     throwDyn (UsageError (unlines errs))
1465   return (dflags', leftover)
1466
1467
1468 type DynP = CmdLineP DynFlags
1469
1470 upd :: (DynFlags -> DynFlags) -> DynP ()
1471 upd f = do 
1472    dfs <- getCmdLineState
1473    putCmdLineState $! (f dfs)
1474
1475 --------------------------
1476 setDynFlag, unSetDynFlag :: DynFlag -> DynP ()
1477 setDynFlag f = upd (\dfs -> foldl dopt_set (dopt_set dfs f) deps)
1478   where
1479     deps = [ d | (f', ds) <- impliedFlags, f' == f, d <- ds ]
1480         -- When you set f, set the ones it implies
1481         -- When you un-set f, however, we don't un-set the things it implies
1482         --      (except for -fno-glasgow-exts, which is treated specially)
1483
1484 unSetDynFlag f = upd (\dfs -> dopt_unset dfs f)
1485
1486 --------------------------
1487 setDumpFlag :: DynFlag -> OptKind DynP
1488 setDumpFlag dump_flag 
1489   | force_recomp   = NoArg (setDynFlag Opt_ForceRecomp >> setDynFlag dump_flag)
1490   | otherwise      = NoArg (setDynFlag dump_flag)
1491   where
1492         -- Whenver we -ddump, switch off the recompilation checker,
1493         -- else you don't see the dump!
1494         -- However, certain dumpy-things are really interested in what's going
1495         -- on during recompilation checking, so in those cases we
1496         -- don't want to turn it off.
1497    force_recomp = dump_flag `notElem` [Opt_D_dump_if_trace, 
1498                                        Opt_D_dump_hi_diffs]
1499
1500 setVerboseCore2Core :: DynP ()
1501 setVerboseCore2Core = do setDynFlag Opt_ForceRecomp
1502                          setDynFlag Opt_D_verbose_core2core
1503                          upd (\s -> s { shouldDumpSimplPhase = const True })
1504
1505 setDumpSimplPhases :: String -> DynP ()
1506 setDumpSimplPhases s = do setDynFlag Opt_ForceRecomp
1507                           upd (\s -> s { shouldDumpSimplPhase = spec })
1508   where
1509     spec :: SimplifierMode -> Bool
1510     spec = join (||)
1511          . map (join (&&) . map match . split ':')
1512          . split ','
1513          $ case s of
1514              '=' : s' -> s'
1515              _        -> s
1516
1517     join :: (Bool -> Bool -> Bool)
1518          -> [SimplifierMode -> Bool]
1519          -> SimplifierMode -> Bool
1520     join _  [] = const True
1521     join op ss = foldr1 (\f g x -> f x `op` g x) ss
1522
1523     match :: String -> SimplifierMode -> Bool
1524     match "" = const True
1525     match s  = case reads s of
1526                 [(n,"")] -> phase_num  n
1527                 _        -> phase_name s
1528
1529     phase_num :: Int -> SimplifierMode -> Bool
1530     phase_num n (SimplPhase k _) = n == k
1531     phase_num _ _                = False
1532
1533     phase_name :: String -> SimplifierMode -> Bool
1534     phase_name s SimplGently       = s == "gentle"
1535     phase_name s (SimplPhase _ ss) = s `elem` ss
1536
1537 setVerbosity :: Maybe Int -> DynP ()
1538 setVerbosity mb_n = upd (\dfs -> dfs{ verbosity = mb_n `orElse` 3 })
1539
1540 addCmdlineHCInclude :: String -> DynP ()
1541 addCmdlineHCInclude a = upd (\s -> s{cmdlineHcIncludes =  a : cmdlineHcIncludes s})
1542
1543 extraPkgConf_ :: FilePath -> DynP ()
1544 extraPkgConf_  p = upd (\s -> s{ extraPkgConfs = p : extraPkgConfs s })
1545
1546 exposePackage, hidePackage, ignorePackage :: String -> DynP ()
1547 exposePackage p = 
1548   upd (\s -> s{ packageFlags = ExposePackage p : packageFlags s })
1549 hidePackage p = 
1550   upd (\s -> s{ packageFlags = HidePackage p : packageFlags s })
1551 ignorePackage p = 
1552   upd (\s -> s{ packageFlags = IgnorePackage p : packageFlags s })
1553
1554 setPackageName :: String -> DynFlags -> DynFlags
1555 setPackageName p
1556   | Nothing <- unpackPackageId pid
1557   = throwDyn (CmdLineError ("cannot parse \'" ++ p ++ "\' as a package identifier"))
1558   | otherwise
1559   = \s -> s{ thisPackage = pid }
1560   where
1561         pid = stringToPackageId p
1562
1563 -- If we're linking a binary, then only targets that produce object
1564 -- code are allowed (requests for other target types are ignored).
1565 setTarget :: HscTarget -> DynP ()
1566 setTarget l = upd set
1567   where 
1568    set dfs 
1569      | ghcLink dfs /= LinkBinary || isObjectTarget l  = dfs{ hscTarget = l }
1570      | otherwise = dfs
1571
1572 -- Changes the target only if we're compiling object code.  This is
1573 -- used by -fasm and -fvia-C, which switch from one to the other, but
1574 -- not from bytecode to object-code.  The idea is that -fasm/-fvia-C
1575 -- can be safely used in an OPTIONS_GHC pragma.
1576 setObjTarget :: HscTarget -> DynP ()
1577 setObjTarget l = upd set
1578   where 
1579    set dfs 
1580      | isObjectTarget (hscTarget dfs) = dfs { hscTarget = l }
1581      | otherwise = dfs
1582
1583 setOptLevel :: Int -> DynFlags -> DynFlags
1584 setOptLevel n dflags
1585    | hscTarget dflags == HscInterpreted && n > 0
1586         = dflags
1587             -- not in IO any more, oh well:
1588             -- putStr "warning: -O conflicts with --interactive; -O ignored.\n"
1589    | otherwise
1590         = updOptLevel n dflags
1591
1592
1593 -- -Odph is equivalent to
1594 --
1595 --    -O2                               optimise as much as possible
1596 --    -fno-method-sharing               sharing specialisation defeats fusion
1597 --                                      sometimes
1598 --    -fdicts-cheap                     always inline dictionaries
1599 --    -fmax-simplifier-iterations20     this is necessary sometimes
1600 --    -fno-spec-constr-threshold        run SpecConstr even for big loops
1601 --
1602 setDPHOpt :: DynFlags -> DynFlags
1603 setDPHOpt dflags = setOptLevel 2 (dflags { maxSimplIterations  = 20
1604                                          , specConstrThreshold = Nothing
1605                                          })
1606                    `dopt_set`   Opt_DictsCheap
1607                    `dopt_unset` Opt_MethodSharing
1608
1609
1610
1611 setMainIs :: String -> DynP ()
1612 setMainIs arg
1613   | not (null main_fn) && isLower (head main_fn)
1614      -- The arg looked like "Foo.Bar.baz"
1615   = upd $ \d -> d{ mainFunIs = Just main_fn,
1616                    mainModIs = mkModule mainPackageId (mkModuleName main_mod) }
1617
1618   | isUpper (head arg)  -- The arg looked like "Foo" or "Foo.Bar"
1619   = upd $ \d -> d{ mainModIs = mkModule mainPackageId (mkModuleName arg) }
1620   
1621   | otherwise                   -- The arg looked like "baz"
1622   = upd $ \d -> d{ mainFunIs = Just arg }
1623   where
1624     (main_mod, main_fn) = splitLongestPrefix arg (== '.')
1625
1626 -----------------------------------------------------------------------------
1627 -- Paths & Libraries
1628
1629 addImportPath, addLibraryPath, addIncludePath, addFrameworkPath :: FilePath -> DynP ()
1630
1631 -- -i on its own deletes the import paths
1632 addImportPath "" = upd (\s -> s{importPaths = []})
1633 addImportPath p  = upd (\s -> s{importPaths = importPaths s ++ splitPathList p})
1634
1635
1636 addLibraryPath p = 
1637   upd (\s -> s{libraryPaths = libraryPaths s ++ splitPathList p})
1638
1639 addIncludePath p = 
1640   upd (\s -> s{includePaths = includePaths s ++ splitPathList p})
1641
1642 addFrameworkPath p = 
1643   upd (\s -> s{frameworkPaths = frameworkPaths s ++ splitPathList p})
1644
1645 #ifndef mingw32_TARGET_OS
1646 split_marker :: Char
1647 split_marker = ':'   -- not configurable (ToDo)
1648 #endif
1649
1650 splitPathList :: String -> [String]
1651 splitPathList s = filter notNull (splitUp s)
1652                 -- empty paths are ignored: there might be a trailing
1653                 -- ':' in the initial list, for example.  Empty paths can
1654                 -- cause confusion when they are translated into -I options
1655                 -- for passing to gcc.
1656   where
1657 #ifndef mingw32_TARGET_OS
1658     splitUp xs = split split_marker xs
1659 #else 
1660      -- Windows: 'hybrid' support for DOS-style paths in directory lists.
1661      -- 
1662      -- That is, if "foo:bar:baz" is used, this interpreted as
1663      -- consisting of three entries, 'foo', 'bar', 'baz'.
1664      -- However, with "c:/foo:c:\\foo;x:/bar", this is interpreted
1665      -- as 3 elts, "c:/foo", "c:\\foo", "x:/bar"
1666      --
1667      -- Notice that no attempt is made to fully replace the 'standard'
1668      -- split marker ':' with the Windows / DOS one, ';'. The reason being
1669      -- that this will cause too much breakage for users & ':' will
1670      -- work fine even with DOS paths, if you're not insisting on being silly.
1671      -- So, use either.
1672     splitUp []             = []
1673     splitUp (x:':':div:xs) | div `elem` dir_markers
1674                            = ((x:':':div:p): splitUp rs)
1675                            where
1676                               (p,rs) = findNextPath xs
1677           -- we used to check for existence of the path here, but that
1678           -- required the IO monad to be threaded through the command-line
1679           -- parser which is quite inconvenient.  The 
1680     splitUp xs = cons p (splitUp rs)
1681                where
1682                  (p,rs) = findNextPath xs
1683     
1684                  cons "" xs = xs
1685                  cons x  xs = x:xs
1686
1687     -- will be called either when we've consumed nought or the
1688     -- "<Drive>:/" part of a DOS path, so splitting is just a Q of
1689     -- finding the next split marker.
1690     findNextPath xs = 
1691         case break (`elem` split_markers) xs of
1692            (p, _:ds) -> (p, ds)
1693            (p, xs)   -> (p, xs)
1694
1695     split_markers :: [Char]
1696     split_markers = [':', ';']
1697
1698     dir_markers :: [Char]
1699     dir_markers = ['/', '\\']
1700 #endif
1701
1702 -- -----------------------------------------------------------------------------
1703 -- tmpDir, where we store temporary files.
1704
1705 setTmpDir :: FilePath -> DynFlags -> DynFlags
1706 setTmpDir dir dflags = dflags{ tmpDir = normalise dir }
1707   -- we used to fix /cygdrive/c/.. on Windows, but this doesn't
1708   -- seem necessary now --SDM 7/2/2008
1709
1710 -----------------------------------------------------------------------------
1711 -- Hpc stuff
1712
1713 setOptHpcDir :: String -> DynP ()
1714 setOptHpcDir arg  = upd $ \ d -> d{hpcDir = arg}
1715
1716 -----------------------------------------------------------------------------
1717 -- Via-C compilation stuff
1718
1719 -- There are some options that we need to pass to gcc when compiling
1720 -- Haskell code via C, but are only supported by recent versions of
1721 -- gcc.  The configure script decides which of these options we need,
1722 -- and puts them in the file "extra-gcc-opts" in $topdir, which is
1723 -- read before each via-C compilation.  The advantage of having these
1724 -- in a separate file is that the file can be created at install-time
1725 -- depending on the available gcc version, and even re-generated  later
1726 -- if gcc is upgraded.
1727 --
1728 -- The options below are not dependent on the version of gcc, only the
1729 -- platform.
1730
1731 machdepCCOpts :: DynFlags -> ([String], -- flags for all C compilations
1732                               [String]) -- for registerised HC compilations
1733 machdepCCOpts _dflags
1734 #if alpha_TARGET_ARCH
1735         =       ( ["-w", "-mieee"
1736 #ifdef HAVE_THREADED_RTS_SUPPORT
1737                     , "-D_REENTRANT"
1738 #endif
1739                    ], [] )
1740         -- For now, to suppress the gcc warning "call-clobbered
1741         -- register used for global register variable", we simply
1742         -- disable all warnings altogether using the -w flag. Oh well.
1743
1744 #elif hppa_TARGET_ARCH
1745         -- ___HPUX_SOURCE, not _HPUX_SOURCE, is #defined if -ansi!
1746         -- (very nice, but too bad the HP /usr/include files don't agree.)
1747         = ( ["-D_HPUX_SOURCE"], [] )
1748
1749 #elif m68k_TARGET_ARCH
1750       -- -fno-defer-pop : for the .hc files, we want all the pushing/
1751       --    popping of args to routines to be explicit; if we let things
1752       --    be deferred 'til after an STGJUMP, imminent death is certain!
1753       --
1754       -- -fomit-frame-pointer : *don't*
1755       --     It's better to have a6 completely tied up being a frame pointer
1756       --     rather than let GCC pick random things to do with it.
1757       --     (If we want to steal a6, then we would try to do things
1758       --     as on iX86, where we *do* steal the frame pointer [%ebp].)
1759         = ( [], ["-fno-defer-pop", "-fno-omit-frame-pointer"] )
1760
1761 #elif i386_TARGET_ARCH
1762       -- -fno-defer-pop : basically the same game as for m68k
1763       --
1764       -- -fomit-frame-pointer : *must* in .hc files; because we're stealing
1765       --   the fp (%ebp) for our register maps.
1766         =  let n_regs = stolen_x86_regs _dflags
1767                sta = opt_Static
1768            in
1769                     ( [ if sta then "-DDONT_WANT_WIN32_DLL_SUPPORT" else ""
1770 --                    , if "mingw32" `isSuffixOf` cTARGETPLATFORM then "-mno-cygwin" else "" 
1771                       ],
1772                       [ "-fno-defer-pop",
1773                         "-fomit-frame-pointer",
1774                         -- we want -fno-builtin, because when gcc inlines
1775                         -- built-in functions like memcpy() it tends to
1776                         -- run out of registers, requiring -monly-n-regs
1777                         "-fno-builtin",
1778                         "-DSTOLEN_X86_REGS="++show n_regs ]
1779                     )
1780
1781 #elif ia64_TARGET_ARCH
1782         = ( [], ["-fomit-frame-pointer", "-G0"] )
1783
1784 #elif x86_64_TARGET_ARCH
1785         = ( [], ["-fomit-frame-pointer",
1786                  "-fno-asynchronous-unwind-tables",
1787                         -- the unwind tables are unnecessary for HC code,
1788                         -- and get in the way of -split-objs.  Another option
1789                         -- would be to throw them away in the mangler, but this
1790                         -- is easier.
1791                  "-fno-builtin"
1792                         -- calling builtins like strlen() using the FFI can
1793                         -- cause gcc to run out of regs, so use the external
1794                         -- version.
1795                 ] )
1796
1797 #elif sparc_TARGET_ARCH
1798         = ( [], ["-w"] )
1799         -- For now, to suppress the gcc warning "call-clobbered
1800         -- register used for global register variable", we simply
1801         -- disable all warnings altogether using the -w flag. Oh well.
1802
1803 #elif powerpc_apple_darwin_TARGET
1804       -- -no-cpp-precomp:
1805       --     Disable Apple's precompiling preprocessor. It's a great thing
1806       --     for "normal" programs, but it doesn't support register variable
1807       --     declarations.
1808         = ( [], ["-no-cpp-precomp"] )
1809 #else
1810         = ( [], [] )
1811 #endif
1812
1813 picCCOpts :: DynFlags -> [String]
1814 picCCOpts _dflags
1815 #if darwin_TARGET_OS
1816       -- Apple prefers to do things the other way round.
1817       -- PIC is on by default.
1818       -- -mdynamic-no-pic:
1819       --     Turn off PIC code generation.
1820       -- -fno-common:
1821       --     Don't generate "common" symbols - these are unwanted
1822       --     in dynamic libraries.
1823
1824     | opt_PIC
1825         = ["-fno-common", "-D__PIC__"]
1826     | otherwise
1827         = ["-mdynamic-no-pic"]
1828 #elif mingw32_TARGET_OS
1829       -- no -fPIC for Windows
1830     | opt_PIC
1831         = ["-D__PIC__"]
1832     | otherwise
1833         = []
1834 #else
1835     | opt_PIC
1836         = ["-fPIC", "-D__PIC__"]
1837     | otherwise
1838         = []
1839 #endif
1840
1841 -- -----------------------------------------------------------------------------
1842 -- Splitting
1843
1844 can_split :: Bool
1845 can_split = cSplitObjs == "YES"
1846
1847 -- -----------------------------------------------------------------------------
1848 -- Compiler Info
1849
1850 compilerInfo :: [(String, String)]
1851 compilerInfo = [("Project name",                cProjectName),
1852                 ("Project version",             cProjectVersion),
1853                 ("Booter version",              cBooterVersion),
1854                 ("Stage",                       cStage),
1855                 ("Interface file version",      cHscIfaceFileVersion),
1856                 ("Have interpreter",            cGhcWithInterpreter),
1857                 ("Object splitting",            cSplitObjs),
1858                 ("Have native code generator",  cGhcWithNativeCodeGen),
1859                 ("Support SMP",                 cGhcWithSMP),
1860                 ("Unregisterised",              cGhcUnregisterised),
1861                 ("Tables next to code",         cGhcEnableTablesNextToCode),
1862                 ("Win32 DLLs",                  cEnableWin32DLLs),
1863                 ("RTS ways",                    cGhcRTSWays),
1864                 ("Leading underscore",          cLeadingUnderscore)]
1865