Make -f[no-]method-sharing a dynamic flag
[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",         NoArg (setDynFlag Opt_D_dump_hi_diffs))
1164   ,  ( "dcore-lint",             NoArg (setDynFlag Opt_DoCoreLinting))
1165   ,  ( "dstg-lint",              NoArg (setDynFlag Opt_DoStgLinting))
1166   ,  ( "dcmm-lint",              NoArg (setDynFlag Opt_DoCmmLinting))
1167   ,  ( "dasm-lint",              NoArg (setDynFlag Opt_DoAsmLinting))
1168   ,  ( "dshow-passes",           NoArg (do setDynFlag Opt_ForceRecomp
1169                                            setVerbosity (Just 2)) )
1170   ,  ( "dfaststring-stats",      NoArg (setDynFlag Opt_D_faststring_stats))
1171
1172         ------ Machine dependant (-m<blah>) stuff ---------------------------
1173
1174   ,  ( "monly-2-regs",  NoArg (upd (\s -> s{stolen_x86_regs = 2}) ))
1175   ,  ( "monly-3-regs",  NoArg (upd (\s -> s{stolen_x86_regs = 3}) ))
1176   ,  ( "monly-4-regs",  NoArg (upd (\s -> s{stolen_x86_regs = 4}) ))
1177
1178      ------ Warning opts -------------------------------------------------
1179   ,  ( "W"     , NoArg (mapM_ setDynFlag   minusWOpts)    )
1180   ,  ( "Werror", NoArg (setDynFlag         Opt_WarnIsError) )
1181   ,  ( "Wwarn" , NoArg (unSetDynFlag       Opt_WarnIsError) )
1182   ,  ( "Wall"  , NoArg (mapM_ setDynFlag   minusWallOpts) )
1183   ,  ( "Wnot"  , NoArg (mapM_ unSetDynFlag minusWallOpts) ) -- DEPRECATED
1184   ,  ( "w"     , NoArg (mapM_ unSetDynFlag minuswRemovesOpts) )
1185
1186         ------ Optimisation flags ------------------------------------------
1187   ,  ( "O"      , NoArg (upd (setOptLevel 1)))
1188   ,  ( "Onot"   , NoArg (upd (setOptLevel 0))) -- deprecated
1189   ,  ( "O"      , OptIntSuffix (\mb_n -> upd (setOptLevel (mb_n `orElse` 1))))
1190                 -- If the number is missing, use 1
1191
1192   ,  ( "fsimplifier-phases",         IntSuffix (\n ->
1193                 upd (\dfs -> dfs{ simplPhases = n })) )
1194   ,  ( "fmax-simplifier-iterations", IntSuffix (\n -> 
1195                 upd (\dfs -> dfs{ maxSimplIterations = n })) )
1196
1197   ,  ( "fspec-constr-threshold",      IntSuffix (\n ->
1198                 upd (\dfs -> dfs{ specConstrThreshold = Just n })))
1199   ,  ( "fno-spec-constr-threshold",   NoArg (
1200                 upd (\dfs -> dfs{ specConstrThreshold = Nothing })))
1201   ,  ( "fspec-constr-count",          IntSuffix (\n ->
1202                 upd (\dfs -> dfs{ specConstrCount = Just n })))
1203   ,  ( "fno-spec-constr-count",   NoArg (
1204                 upd (\dfs -> dfs{ specConstrCount = Nothing })))
1205   ,  ( "fliberate-case-threshold",    IntSuffix (\n ->
1206                 upd (\dfs -> dfs{ liberateCaseThreshold = Just n })))
1207   ,  ( "fno-liberate-case-threshold", NoArg (
1208                 upd (\dfs -> dfs{ liberateCaseThreshold = Nothing })))
1209
1210   ,  ( "frule-check",     SepArg (\s -> upd (\dfs -> dfs{ ruleCheck = Just s })))
1211   ,  ( "fcontext-stack" , IntSuffix $ \n -> upd $ \dfs -> dfs{ ctxtStkDepth = n })
1212
1213         ------ Compiler flags -----------------------------------------------
1214
1215   ,  ( "fasm",             NoArg (setObjTarget HscAsm) )
1216   ,  ( "fvia-c",           NoArg (setObjTarget HscC) )
1217   ,  ( "fvia-C",           NoArg (setObjTarget HscC) )
1218
1219   ,  ( "fno-code",         NoArg (setTarget HscNothing))
1220   ,  ( "fbyte-code",       NoArg (setTarget HscInterpreted) )
1221   ,  ( "fobject-code",     NoArg (setTarget defaultHscTarget) )
1222
1223   ,  ( "fglasgow-exts",    NoArg (mapM_ setDynFlag   glasgowExtsFlags) )
1224   ,  ( "fno-glasgow-exts", NoArg (mapM_ unSetDynFlag glasgowExtsFlags) )
1225
1226      -- the rest of the -f* and -fno-* flags
1227   ,  ( "f",                PrefixPred (isFlag   fFlags)
1228                            (\f -> setDynFlag   (getFlag   fFlags f)) )
1229   ,  ( "f",                PrefixPred (isPrefFlag "no-" fFlags)
1230                            (\f -> unSetDynFlag (getPrefFlag "no-" fFlags f)) )
1231
1232      -- the -X* and -XNo* flags
1233   ,  ( "X",                PrefixPred (isFlag   xFlags)
1234                            (\f -> setDynFlag   (getFlag   xFlags f)) )
1235   ,  ( "X",                PrefixPred (isPrefFlag "No" xFlags)
1236                            (\f -> unSetDynFlag (getPrefFlag "No" xFlags f)) )
1237  ]
1238
1239 -- these -f<blah> flags can all be reversed with -fno-<blah>
1240
1241 fFlags :: [(String, DynFlag)]
1242 fFlags = [
1243   ( "warn-dodgy-imports",               Opt_WarnDodgyImports ),
1244   ( "warn-duplicate-exports",           Opt_WarnDuplicateExports ),
1245   ( "warn-hi-shadowing",                Opt_WarnHiShadows ),
1246   ( "warn-implicit-prelude",            Opt_WarnImplicitPrelude ),
1247   ( "warn-incomplete-patterns",         Opt_WarnIncompletePatterns ),
1248   ( "warn-incomplete-record-updates",   Opt_WarnIncompletePatternsRecUpd ),
1249   ( "warn-missing-fields",              Opt_WarnMissingFields ),
1250   ( "warn-missing-methods",             Opt_WarnMissingMethods ),
1251   ( "warn-missing-signatures",          Opt_WarnMissingSigs ),
1252   ( "warn-name-shadowing",              Opt_WarnNameShadowing ),
1253   ( "warn-overlapping-patterns",        Opt_WarnOverlappingPatterns ),
1254   ( "warn-simple-patterns",             Opt_WarnSimplePatterns ),
1255   ( "warn-type-defaults",               Opt_WarnTypeDefaults ),
1256   ( "warn-monomorphism-restriction",    Opt_WarnMonomorphism ),
1257   ( "warn-unused-binds",                Opt_WarnUnusedBinds ),
1258   ( "warn-unused-imports",              Opt_WarnUnusedImports ),
1259   ( "warn-unused-matches",              Opt_WarnUnusedMatches ),
1260   ( "warn-deprecations",                Opt_WarnDeprecations ),
1261   ( "warn-orphans",                     Opt_WarnOrphans ),
1262   ( "warn-tabs",                        Opt_WarnTabs ),
1263   ( "print-explicit-foralls",           Opt_PrintExplicitForalls ),
1264   ( "strictness",                       Opt_Strictness ),
1265   ( "static-argument-transformation",   Opt_StaticArgumentTransformation ),
1266   ( "full-laziness",                    Opt_FullLaziness ),
1267   ( "liberate-case",                    Opt_LiberateCase ),
1268   ( "spec-constr",                      Opt_SpecConstr ),
1269   ( "cse",                              Opt_CSE ),
1270   ( "ignore-interface-pragmas",         Opt_IgnoreInterfacePragmas ),
1271   ( "omit-interface-pragmas",           Opt_OmitInterfacePragmas ),
1272   ( "do-lambda-eta-expansion",          Opt_DoLambdaEtaExpansion ),
1273   ( "ignore-asserts",                   Opt_IgnoreAsserts ),
1274   ( "do-eta-reduction",                 Opt_DoEtaReduction ),
1275   ( "case-merge",                       Opt_CaseMerge ),
1276   ( "unbox-strict-fields",              Opt_UnboxStrictFields ),
1277   ( "method-sharing",                   Opt_MethodSharing ),
1278   ( "dicts-cheap",                      Opt_DictsCheap ),
1279   ( "excess-precision",                 Opt_ExcessPrecision ),
1280   ( "asm-mangling",                     Opt_DoAsmMangling ),
1281   ( "print-bind-result",                Opt_PrintBindResult ),
1282   ( "force-recomp",                     Opt_ForceRecomp ),
1283   ( "hpc-no-auto",                      Opt_Hpc_No_Auto ),
1284   ( "rewrite-rules",                    Opt_RewriteRules ),
1285   ( "break-on-exception",               Opt_BreakOnException ),
1286   ( "break-on-error",                   Opt_BreakOnError ),
1287   ( "print-evld-with-show",             Opt_PrintEvldWithShow ),
1288   ( "print-bind-contents",              Opt_PrintBindContents ),
1289   ( "run-cps",                          Opt_RunCPSZ ),
1290   ( "convert-to-zipper-and-back",       Opt_ConvertToZipCfgAndBack),
1291   ( "vectorise",                        Opt_Vectorise ),
1292   ( "regs-graph",                       Opt_RegsGraph),
1293   ( "regs-iterative",                   Opt_RegsIterative),
1294   -- Deprecated in favour of -XTemplateHaskell:
1295   ( "th",                               Opt_TemplateHaskell ),
1296   -- Deprecated in favour of -XForeignFunctionInterface:
1297   ( "fi",                               Opt_ForeignFunctionInterface ),
1298   -- Deprecated in favour of -XForeignFunctionInterface:
1299   ( "ffi",                              Opt_ForeignFunctionInterface ),
1300   -- Deprecated in favour of -XArrows:
1301   ( "arrows",                           Opt_Arrows ),
1302   -- Deprecated in favour of -XGenerics:
1303   ( "generics",                         Opt_Generics ),
1304   -- Deprecated in favour of -XImplicitPrelude:
1305   ( "implicit-prelude",                 Opt_ImplicitPrelude ),
1306   -- Deprecated in favour of -XBangPatterns:
1307   ( "bang-patterns",                    Opt_BangPatterns ),
1308   -- Deprecated in favour of -XMonomorphismRestriction:
1309   ( "monomorphism-restriction",         Opt_MonomorphismRestriction ),
1310   -- Deprecated in favour of -XMonoPatBinds:
1311   ( "mono-pat-binds",                   Opt_MonoPatBinds ),
1312   -- Deprecated in favour of -XExtendedDefaultRules:
1313   ( "extended-default-rules",           Opt_ExtendedDefaultRules ),
1314   -- Deprecated in favour of -XImplicitParams:
1315   ( "implicit-params",                  Opt_ImplicitParams ),
1316   -- Deprecated in favour of -XScopedTypeVariables:
1317   ( "scoped-type-variables",            Opt_ScopedTypeVariables ),
1318   -- Deprecated in favour of -XPArr:
1319   ( "parr",                             Opt_PArr ),
1320   -- Deprecated in favour of -XOverlappingInstances:
1321   ( "allow-overlapping-instances",      Opt_OverlappingInstances ),
1322   -- Deprecated in favour of -XUndecidableInstances:
1323   ( "allow-undecidable-instances",      Opt_UndecidableInstances ),
1324   -- Deprecated in favour of -XIncoherentInstances:
1325   ( "allow-incoherent-instances",       Opt_IncoherentInstances ),
1326   ( "gen-manifest",                     Opt_GenManifest ),
1327   ( "embed-manifest",                   Opt_EmbedManifest )
1328   ]
1329
1330 supportedLanguages :: [String]
1331 supportedLanguages = map fst xFlags
1332
1333 -- These -X<blah> flags can all be reversed with -XNo<blah>
1334 xFlags :: [(String, DynFlag)]
1335 xFlags = [
1336   ( "CPP",                              Opt_Cpp ),
1337   ( "PatternGuards",                    Opt_PatternGuards ),
1338   ( "UnicodeSyntax",                    Opt_UnicodeSyntax ),
1339   ( "MagicHash",                        Opt_MagicHash ),
1340   ( "PolymorphicComponents",            Opt_PolymorphicComponents ),
1341   ( "ExistentialQuantification",        Opt_ExistentialQuantification ),
1342   ( "KindSignatures",                   Opt_KindSignatures ),
1343   ( "PatternSignatures",                Opt_PatternSignatures ),
1344   ( "EmptyDataDecls",                   Opt_EmptyDataDecls ),
1345   ( "ParallelListComp",                 Opt_ParallelListComp ),
1346   ( "TransformListComp",                Opt_TransformListComp ),
1347   ( "ForeignFunctionInterface",         Opt_ForeignFunctionInterface ),
1348   ( "UnliftedFFITypes",                 Opt_UnliftedFFITypes ),
1349   ( "LiberalTypeSynonyms",              Opt_LiberalTypeSynonyms ),
1350   ( "Rank2Types",                       Opt_Rank2Types ),
1351   ( "RankNTypes",                       Opt_RankNTypes ),
1352   ( "ImpredicativeTypes",               Opt_ImpredicativeTypes ),
1353   ( "TypeOperators",                    Opt_TypeOperators ),
1354   ( "RecursiveDo",                      Opt_RecursiveDo ),
1355   ( "Arrows",                           Opt_Arrows ),
1356   ( "PArr",                             Opt_PArr ),
1357   ( "TemplateHaskell",                  Opt_TemplateHaskell ),
1358   ( "QuasiQuotes",                      Opt_QuasiQuotes ),
1359   ( "Generics",                         Opt_Generics ),
1360   -- On by default:
1361   ( "ImplicitPrelude",                  Opt_ImplicitPrelude ),
1362   ( "RecordWildCards",                  Opt_RecordWildCards ),
1363   ( "RecordPuns",                       Opt_RecordPuns ),
1364   ( "DisambiguateRecordFields",         Opt_DisambiguateRecordFields ),
1365   ( "OverloadedStrings",                Opt_OverloadedStrings ),
1366   ( "GADTs",                            Opt_GADTs ),
1367   ( "ViewPatterns",                     Opt_ViewPatterns),
1368   ( "TypeFamilies",                     Opt_TypeFamilies ),
1369   ( "BangPatterns",                     Opt_BangPatterns ),
1370   -- On by default:
1371   ( "MonomorphismRestriction",          Opt_MonomorphismRestriction ),
1372   -- On by default (which is not strictly H98):
1373   ( "MonoPatBinds",                     Opt_MonoPatBinds ),
1374   ( "RelaxedPolyRec",                   Opt_RelaxedPolyRec),
1375   ( "ExtendedDefaultRules",             Opt_ExtendedDefaultRules ),
1376   ( "ImplicitParams",                   Opt_ImplicitParams ),
1377   ( "ScopedTypeVariables",              Opt_ScopedTypeVariables ),
1378   ( "UnboxedTuples",                    Opt_UnboxedTuples ),
1379   ( "StandaloneDeriving",               Opt_StandaloneDeriving ),
1380   ( "DeriveDataTypeable",               Opt_DeriveDataTypeable ),
1381   ( "TypeSynonymInstances",             Opt_TypeSynonymInstances ),
1382   ( "FlexibleContexts",                 Opt_FlexibleContexts ),
1383   ( "FlexibleInstances",                Opt_FlexibleInstances ),
1384   ( "ConstrainedClassMethods",          Opt_ConstrainedClassMethods ),
1385   ( "MultiParamTypeClasses",            Opt_MultiParamTypeClasses ),
1386   ( "FunctionalDependencies",           Opt_FunctionalDependencies ),
1387   ( "GeneralizedNewtypeDeriving",       Opt_GeneralizedNewtypeDeriving ),
1388   ( "OverlappingInstances",             Opt_OverlappingInstances ),
1389   ( "UndecidableInstances",             Opt_UndecidableInstances ),
1390   ( "IncoherentInstances",              Opt_IncoherentInstances )
1391   ]
1392
1393 impliedFlags :: [(DynFlag, [DynFlag])]
1394 impliedFlags = [
1395    ( Opt_GADTs,               [Opt_RelaxedPolyRec] )    -- We want type-sig variables to 
1396                                                         --      be completely rigid for GADTs
1397  , ( Opt_ScopedTypeVariables, [Opt_RelaxedPolyRec] )    -- Ditto for scoped type variables; see
1398                                                         --      Note [Scoped tyvars] in TcBinds
1399   ]
1400
1401 glasgowExtsFlags :: [DynFlag]
1402 glasgowExtsFlags = [
1403              Opt_PrintExplicitForalls
1404            , Opt_ForeignFunctionInterface
1405            , Opt_UnliftedFFITypes
1406            , Opt_GADTs
1407            , Opt_ImplicitParams 
1408            , Opt_ScopedTypeVariables
1409            , Opt_UnboxedTuples
1410            , Opt_TypeSynonymInstances
1411            , Opt_StandaloneDeriving
1412            , Opt_DeriveDataTypeable
1413            , Opt_FlexibleContexts
1414            , Opt_FlexibleInstances
1415            , Opt_ConstrainedClassMethods
1416            , Opt_MultiParamTypeClasses
1417            , Opt_FunctionalDependencies
1418            , Opt_MagicHash
1419            , Opt_PolymorphicComponents
1420            , Opt_ExistentialQuantification
1421            , Opt_UnicodeSyntax
1422            , Opt_PatternGuards
1423            , Opt_LiberalTypeSynonyms
1424            , Opt_RankNTypes
1425            , Opt_ImpredicativeTypes
1426            , Opt_TypeOperators
1427            , Opt_RecursiveDo
1428            , Opt_ParallelListComp
1429            , Opt_EmptyDataDecls
1430            , Opt_KindSignatures
1431            , Opt_PatternSignatures
1432            , Opt_GeneralizedNewtypeDeriving
1433            , Opt_TypeFamilies ]
1434
1435 ------------------
1436 isFlag :: [(String,a)] -> String -> Bool
1437 isFlag flags f = any (\(ff,_) -> ff == f) flags
1438
1439 isPrefFlag :: String -> [(String,a)] -> String -> Bool
1440 isPrefFlag pref flags no_f
1441   | Just f <- maybePrefixMatch pref no_f = isFlag flags f
1442   | otherwise                            = False
1443
1444 ------------------
1445 getFlag :: [(String,a)] -> String -> a
1446 getFlag flags f = case [ opt | (ff, opt) <- flags, ff == f] of
1447                       (o:_)  -> o
1448                       []     -> panic ("get_flag " ++ f)
1449
1450 getPrefFlag :: String -> [(String,a)] -> String -> a
1451 getPrefFlag pref flags f = getFlag flags (fromJust (maybePrefixMatch pref f))
1452 -- We should only be passed flags which match the prefix
1453
1454 -- -----------------------------------------------------------------------------
1455 -- Parsing the dynamic flags.
1456
1457 parseDynamicFlags :: DynFlags -> [String] -> IO (DynFlags,[String])
1458 parseDynamicFlags dflags args = do
1459   let ((leftover,errs),dflags') 
1460           = runCmdLine (processArgs dynamic_flags args) dflags
1461   when (not (null errs)) $ do
1462     throwDyn (UsageError (unlines errs))
1463   return (dflags', leftover)
1464
1465
1466 type DynP = CmdLineP DynFlags
1467
1468 upd :: (DynFlags -> DynFlags) -> DynP ()
1469 upd f = do 
1470    dfs <- getCmdLineState
1471    putCmdLineState $! (f dfs)
1472
1473 --------------------------
1474 setDynFlag, unSetDynFlag :: DynFlag -> DynP ()
1475 setDynFlag f = upd (\dfs -> foldl dopt_set (dopt_set dfs f) deps)
1476   where
1477     deps = [ d | (f', ds) <- impliedFlags, f' == f, d <- ds ]
1478         -- When you set f, set the ones it implies
1479         -- When you un-set f, however, we don't un-set the things it implies
1480         --      (except for -fno-glasgow-exts, which is treated specially)
1481
1482 unSetDynFlag f = upd (\dfs -> dopt_unset dfs f)
1483
1484 --------------------------
1485 setDumpFlag :: DynFlag -> OptKind DynP
1486 setDumpFlag dump_flag 
1487   = NoArg (setDynFlag Opt_ForceRecomp >> setDynFlag dump_flag)
1488         -- Whenver we -ddump, switch off the recompilation checker,
1489         -- else you don't see the dump!
1490
1491 setVerboseCore2Core :: DynP ()
1492 setVerboseCore2Core = do setDynFlag Opt_ForceRecomp
1493                          setDynFlag Opt_D_verbose_core2core
1494                          upd (\s -> s { shouldDumpSimplPhase = const True })
1495
1496 setDumpSimplPhases :: String -> DynP ()
1497 setDumpSimplPhases s = do setDynFlag Opt_ForceRecomp
1498                           upd (\s -> s { shouldDumpSimplPhase = spec })
1499   where
1500     spec :: SimplifierMode -> Bool
1501     spec = join (||)
1502          . map (join (&&) . map match . split ':')
1503          . split ','
1504          $ case s of
1505              '=' : s' -> s'
1506              _        -> s
1507
1508     join :: (Bool -> Bool -> Bool)
1509          -> [SimplifierMode -> Bool]
1510          -> SimplifierMode -> Bool
1511     join _  [] = const True
1512     join op ss = foldr1 (\f g x -> f x `op` g x) ss
1513
1514     match :: String -> SimplifierMode -> Bool
1515     match "" = const True
1516     match s  = case reads s of
1517                 [(n,"")] -> phase_num  n
1518                 _        -> phase_name s
1519
1520     phase_num :: Int -> SimplifierMode -> Bool
1521     phase_num n (SimplPhase k _) = n == k
1522     phase_num _ _                = False
1523
1524     phase_name :: String -> SimplifierMode -> Bool
1525     phase_name s SimplGently       = s == "gentle"
1526     phase_name s (SimplPhase _ ss) = s `elem` ss
1527
1528 setVerbosity :: Maybe Int -> DynP ()
1529 setVerbosity mb_n = upd (\dfs -> dfs{ verbosity = mb_n `orElse` 3 })
1530
1531 addCmdlineHCInclude :: String -> DynP ()
1532 addCmdlineHCInclude a = upd (\s -> s{cmdlineHcIncludes =  a : cmdlineHcIncludes s})
1533
1534 extraPkgConf_ :: FilePath -> DynP ()
1535 extraPkgConf_  p = upd (\s -> s{ extraPkgConfs = p : extraPkgConfs s })
1536
1537 exposePackage, hidePackage, ignorePackage :: String -> DynP ()
1538 exposePackage p = 
1539   upd (\s -> s{ packageFlags = ExposePackage p : packageFlags s })
1540 hidePackage p = 
1541   upd (\s -> s{ packageFlags = HidePackage p : packageFlags s })
1542 ignorePackage p = 
1543   upd (\s -> s{ packageFlags = IgnorePackage p : packageFlags s })
1544
1545 setPackageName :: String -> DynFlags -> DynFlags
1546 setPackageName p
1547   | Nothing <- unpackPackageId pid
1548   = throwDyn (CmdLineError ("cannot parse \'" ++ p ++ "\' as a package identifier"))
1549   | otherwise
1550   = \s -> s{ thisPackage = pid }
1551   where
1552         pid = stringToPackageId p
1553
1554 -- If we're linking a binary, then only targets that produce object
1555 -- code are allowed (requests for other target types are ignored).
1556 setTarget :: HscTarget -> DynP ()
1557 setTarget l = upd set
1558   where 
1559    set dfs 
1560      | ghcLink dfs /= LinkBinary || isObjectTarget l  = dfs{ hscTarget = l }
1561      | otherwise = dfs
1562
1563 -- Changes the target only if we're compiling object code.  This is
1564 -- used by -fasm and -fvia-C, which switch from one to the other, but
1565 -- not from bytecode to object-code.  The idea is that -fasm/-fvia-C
1566 -- can be safely used in an OPTIONS_GHC pragma.
1567 setObjTarget :: HscTarget -> DynP ()
1568 setObjTarget l = upd set
1569   where 
1570    set dfs 
1571      | isObjectTarget (hscTarget dfs) = dfs { hscTarget = l }
1572      | otherwise = dfs
1573
1574 setOptLevel :: Int -> DynFlags -> DynFlags
1575 setOptLevel n dflags
1576    | hscTarget dflags == HscInterpreted && n > 0
1577         = dflags
1578             -- not in IO any more, oh well:
1579             -- putStr "warning: -O conflicts with --interactive; -O ignored.\n"
1580    | otherwise
1581         = updOptLevel n dflags
1582
1583
1584 setMainIs :: String -> DynP ()
1585 setMainIs arg
1586   | not (null main_fn) && isLower (head main_fn)
1587      -- The arg looked like "Foo.Bar.baz"
1588   = upd $ \d -> d{ mainFunIs = Just main_fn,
1589                    mainModIs = mkModule mainPackageId (mkModuleName main_mod) }
1590
1591   | isUpper (head arg)  -- The arg looked like "Foo" or "Foo.Bar"
1592   = upd $ \d -> d{ mainModIs = mkModule mainPackageId (mkModuleName arg) }
1593   
1594   | otherwise                   -- The arg looked like "baz"
1595   = upd $ \d -> d{ mainFunIs = Just arg }
1596   where
1597     (main_mod, main_fn) = splitLongestPrefix arg (== '.')
1598
1599 -----------------------------------------------------------------------------
1600 -- Paths & Libraries
1601
1602 addImportPath, addLibraryPath, addIncludePath, addFrameworkPath :: FilePath -> DynP ()
1603
1604 -- -i on its own deletes the import paths
1605 addImportPath "" = upd (\s -> s{importPaths = []})
1606 addImportPath p  = upd (\s -> s{importPaths = importPaths s ++ splitPathList p})
1607
1608
1609 addLibraryPath p = 
1610   upd (\s -> s{libraryPaths = libraryPaths s ++ splitPathList p})
1611
1612 addIncludePath p = 
1613   upd (\s -> s{includePaths = includePaths s ++ splitPathList p})
1614
1615 addFrameworkPath p = 
1616   upd (\s -> s{frameworkPaths = frameworkPaths s ++ splitPathList p})
1617
1618 #ifndef mingw32_TARGET_OS
1619 split_marker :: Char
1620 split_marker = ':'   -- not configurable (ToDo)
1621 #endif
1622
1623 splitPathList :: String -> [String]
1624 splitPathList s = filter notNull (splitUp s)
1625                 -- empty paths are ignored: there might be a trailing
1626                 -- ':' in the initial list, for example.  Empty paths can
1627                 -- cause confusion when they are translated into -I options
1628                 -- for passing to gcc.
1629   where
1630 #ifndef mingw32_TARGET_OS
1631     splitUp xs = split split_marker xs
1632 #else 
1633      -- Windows: 'hybrid' support for DOS-style paths in directory lists.
1634      -- 
1635      -- That is, if "foo:bar:baz" is used, this interpreted as
1636      -- consisting of three entries, 'foo', 'bar', 'baz'.
1637      -- However, with "c:/foo:c:\\foo;x:/bar", this is interpreted
1638      -- as 3 elts, "c:/foo", "c:\\foo", "x:/bar"
1639      --
1640      -- Notice that no attempt is made to fully replace the 'standard'
1641      -- split marker ':' with the Windows / DOS one, ';'. The reason being
1642      -- that this will cause too much breakage for users & ':' will
1643      -- work fine even with DOS paths, if you're not insisting on being silly.
1644      -- So, use either.
1645     splitUp []             = []
1646     splitUp (x:':':div:xs) | div `elem` dir_markers
1647                            = ((x:':':div:p): splitUp rs)
1648                            where
1649                               (p,rs) = findNextPath xs
1650           -- we used to check for existence of the path here, but that
1651           -- required the IO monad to be threaded through the command-line
1652           -- parser which is quite inconvenient.  The 
1653     splitUp xs = cons p (splitUp rs)
1654                where
1655                  (p,rs) = findNextPath xs
1656     
1657                  cons "" xs = xs
1658                  cons x  xs = x:xs
1659
1660     -- will be called either when we've consumed nought or the
1661     -- "<Drive>:/" part of a DOS path, so splitting is just a Q of
1662     -- finding the next split marker.
1663     findNextPath xs = 
1664         case break (`elem` split_markers) xs of
1665            (p, _:ds) -> (p, ds)
1666            (p, xs)   -> (p, xs)
1667
1668     split_markers :: [Char]
1669     split_markers = [':', ';']
1670
1671     dir_markers :: [Char]
1672     dir_markers = ['/', '\\']
1673 #endif
1674
1675 -- -----------------------------------------------------------------------------
1676 -- tmpDir, where we store temporary files.
1677
1678 setTmpDir :: FilePath -> DynFlags -> DynFlags
1679 setTmpDir dir dflags = dflags{ tmpDir = normalise dir }
1680   -- we used to fix /cygdrive/c/.. on Windows, but this doesn't
1681   -- seem necessary now --SDM 7/2/2008
1682
1683 -----------------------------------------------------------------------------
1684 -- Hpc stuff
1685
1686 setOptHpcDir :: String -> DynP ()
1687 setOptHpcDir arg  = upd $ \ d -> d{hpcDir = arg}
1688
1689 -----------------------------------------------------------------------------
1690 -- Via-C compilation stuff
1691
1692 -- There are some options that we need to pass to gcc when compiling
1693 -- Haskell code via C, but are only supported by recent versions of
1694 -- gcc.  The configure script decides which of these options we need,
1695 -- and puts them in the file "extra-gcc-opts" in $topdir, which is
1696 -- read before each via-C compilation.  The advantage of having these
1697 -- in a separate file is that the file can be created at install-time
1698 -- depending on the available gcc version, and even re-generated  later
1699 -- if gcc is upgraded.
1700 --
1701 -- The options below are not dependent on the version of gcc, only the
1702 -- platform.
1703
1704 machdepCCOpts :: DynFlags -> ([String], -- flags for all C compilations
1705                               [String]) -- for registerised HC compilations
1706 machdepCCOpts _dflags
1707 #if alpha_TARGET_ARCH
1708         =       ( ["-w", "-mieee"
1709 #ifdef HAVE_THREADED_RTS_SUPPORT
1710                     , "-D_REENTRANT"
1711 #endif
1712                    ], [] )
1713         -- For now, to suppress the gcc warning "call-clobbered
1714         -- register used for global register variable", we simply
1715         -- disable all warnings altogether using the -w flag. Oh well.
1716
1717 #elif hppa_TARGET_ARCH
1718         -- ___HPUX_SOURCE, not _HPUX_SOURCE, is #defined if -ansi!
1719         -- (very nice, but too bad the HP /usr/include files don't agree.)
1720         = ( ["-D_HPUX_SOURCE"], [] )
1721
1722 #elif m68k_TARGET_ARCH
1723       -- -fno-defer-pop : for the .hc files, we want all the pushing/
1724       --    popping of args to routines to be explicit; if we let things
1725       --    be deferred 'til after an STGJUMP, imminent death is certain!
1726       --
1727       -- -fomit-frame-pointer : *don't*
1728       --     It's better to have a6 completely tied up being a frame pointer
1729       --     rather than let GCC pick random things to do with it.
1730       --     (If we want to steal a6, then we would try to do things
1731       --     as on iX86, where we *do* steal the frame pointer [%ebp].)
1732         = ( [], ["-fno-defer-pop", "-fno-omit-frame-pointer"] )
1733
1734 #elif i386_TARGET_ARCH
1735       -- -fno-defer-pop : basically the same game as for m68k
1736       --
1737       -- -fomit-frame-pointer : *must* in .hc files; because we're stealing
1738       --   the fp (%ebp) for our register maps.
1739         =  let n_regs = stolen_x86_regs _dflags
1740                sta = opt_Static
1741            in
1742                     ( [ if sta then "-DDONT_WANT_WIN32_DLL_SUPPORT" else ""
1743 --                    , if "mingw32" `isSuffixOf` cTARGETPLATFORM then "-mno-cygwin" else "" 
1744                       ],
1745                       [ "-fno-defer-pop",
1746                         "-fomit-frame-pointer",
1747                         -- we want -fno-builtin, because when gcc inlines
1748                         -- built-in functions like memcpy() it tends to
1749                         -- run out of registers, requiring -monly-n-regs
1750                         "-fno-builtin",
1751                         "-DSTOLEN_X86_REGS="++show n_regs ]
1752                     )
1753
1754 #elif ia64_TARGET_ARCH
1755         = ( [], ["-fomit-frame-pointer", "-G0"] )
1756
1757 #elif x86_64_TARGET_ARCH
1758         = ( [], ["-fomit-frame-pointer",
1759                  "-fno-asynchronous-unwind-tables",
1760                         -- the unwind tables are unnecessary for HC code,
1761                         -- and get in the way of -split-objs.  Another option
1762                         -- would be to throw them away in the mangler, but this
1763                         -- is easier.
1764                  "-fno-builtin"
1765                         -- calling builtins like strlen() using the FFI can
1766                         -- cause gcc to run out of regs, so use the external
1767                         -- version.
1768                 ] )
1769
1770 #elif sparc_TARGET_ARCH
1771         = ( [], ["-w"] )
1772         -- For now, to suppress the gcc warning "call-clobbered
1773         -- register used for global register variable", we simply
1774         -- disable all warnings altogether using the -w flag. Oh well.
1775
1776 #elif powerpc_apple_darwin_TARGET
1777       -- -no-cpp-precomp:
1778       --     Disable Apple's precompiling preprocessor. It's a great thing
1779       --     for "normal" programs, but it doesn't support register variable
1780       --     declarations.
1781         = ( [], ["-no-cpp-precomp"] )
1782 #else
1783         = ( [], [] )
1784 #endif
1785
1786 picCCOpts :: DynFlags -> [String]
1787 picCCOpts _dflags
1788 #if darwin_TARGET_OS
1789       -- Apple prefers to do things the other way round.
1790       -- PIC is on by default.
1791       -- -mdynamic-no-pic:
1792       --     Turn off PIC code generation.
1793       -- -fno-common:
1794       --     Don't generate "common" symbols - these are unwanted
1795       --     in dynamic libraries.
1796
1797     | opt_PIC
1798         = ["-fno-common", "-D__PIC__"]
1799     | otherwise
1800         = ["-mdynamic-no-pic"]
1801 #elif mingw32_TARGET_OS
1802       -- no -fPIC for Windows
1803     | opt_PIC
1804         = ["-D__PIC__"]
1805     | otherwise
1806         = []
1807 #else
1808     | opt_PIC
1809         = ["-fPIC", "-D__PIC__"]
1810     | otherwise
1811         = []
1812 #endif
1813
1814 -- -----------------------------------------------------------------------------
1815 -- Splitting
1816
1817 can_split :: Bool
1818 can_split = cSplitObjs == "YES"
1819
1820 -- -----------------------------------------------------------------------------
1821 -- Compiler Info
1822
1823 compilerInfo :: [(String, String)]
1824 compilerInfo = [("Project name",                cProjectName),
1825                 ("Project version",             cProjectVersion),
1826                 ("Booter version",              cBooterVersion),
1827                 ("Stage",                       cStage),
1828                 ("Interface file version",      cHscIfaceFileVersion),
1829                 ("Have interpreter",            cGhcWithInterpreter),
1830                 ("Object splitting",            cSplitObjs),
1831                 ("Have native code generator",  cGhcWithNativeCodeGen),
1832                 ("Support SMP",                 cGhcWithSMP),
1833                 ("Unregisterised",              cGhcUnregisterised),
1834                 ("Tables next to code",         cGhcEnableTablesNextToCode),
1835                 ("Win32 DLLs",                  cEnableWin32DLLs),
1836                 ("RTS ways",                    cGhcRTSWays),
1837                 ("Leading underscore",          cLeadingUnderscore)]
1838