Tweak banner printing
[ghc-hetmet.git] / compiler / main / StaticFlags.hs
1 -----------------------------------------------------------------------------
2 --
3 -- Static flags
4 --
5 -- Static flags can only be set once, on the command-line.  Inside GHC,
6 -- each static flag corresponds to a top-level value, usually of type Bool.
7 --
8 -- (c) The University of Glasgow 2005
9 --
10 -----------------------------------------------------------------------------
11
12 module StaticFlags (
13         parseStaticFlags,
14         staticFlags,
15         initStaticOpts,
16
17         -- Ways
18         WayName(..), v_Ways, v_Build_tag, v_RTS_Build_tag, isRTSWay,
19
20         -- Output style options
21         opt_PprUserLength,
22         opt_PprStyle_Debug,
23
24         -- profiling opts
25         opt_AutoSccsOnAllToplevs,
26         opt_AutoSccsOnExportedToplevs,
27         opt_AutoSccsOnIndividualCafs,
28         opt_SccProfilingOn,
29         opt_DoTickyProfiling,
30
31         -- Hpc opts
32         opt_Hpc,
33         opt_Hpc_Tracer,
34
35         -- language opts
36         opt_DictsStrict,
37         opt_IrrefutableTuples,
38         opt_Parallel,
39         opt_RuntimeTypes,
40         opt_Flatten,
41
42         -- optimisation opts
43         opt_NoMethodSharing, 
44         opt_NoStateHack,
45         opt_CprOff,
46         opt_SimplNoPreInlining,
47         opt_SimplExcessPrecision,
48         opt_MaxWorkerArgs,
49
50         -- Unfolding control
51         opt_UF_CreationThreshold,
52         opt_UF_UseThreshold,
53         opt_UF_FunAppDiscount,
54         opt_UF_KeenessFactor,
55         opt_UF_UpdateInPlace,
56         opt_UF_DearOp,
57
58         -- Related to linking
59         opt_PIC,
60         opt_Static,
61
62         -- misc opts
63         opt_IgnoreDotGhci,
64         opt_ErrorSpans,
65         opt_GranMacros,
66         opt_HiVersion,
67         opt_HistorySize,
68         opt_OmitBlackHoling,
69         opt_Unregisterised,
70         opt_EmitExternalCore,
71         v_Ld_inputs,
72         tablesNextToCode
73   ) where
74
75 #include "HsVersions.h"
76
77 import CmdLineParser
78 import Config
79 import FastString       ( FastString, mkFastString )
80 import Util
81 import Maybes           ( firstJust )
82 import Panic
83
84 import Control.Exception ( throwDyn )
85 import Data.IORef
86 import System.IO.Unsafe ( unsafePerformIO )
87 import Control.Monad    ( when )
88 import Data.Char        ( isDigit )
89 import Data.List        ( sort, intersperse, nub )
90
91 -----------------------------------------------------------------------------
92 -- Static flags
93
94 parseStaticFlags :: [String] -> IO [String]
95 parseStaticFlags args = do
96   ready <- readIORef v_opt_C_ready
97   when ready $ throwDyn (ProgramError "Too late for parseStaticFlags: call it before newSession")
98
99   (leftover, errs) <- processArgs static_flags args
100   when (not (null errs)) $ throwDyn (UsageError (unlines errs))
101
102     -- deal with the way flags: the way (eg. prof) gives rise to
103     -- further flags, some of which might be static.
104   way_flags <- findBuildTag
105
106     -- if we're unregisterised, add some more flags
107   let unreg_flags | cGhcUnregisterised == "YES" = unregFlags
108                   | otherwise = []
109
110   (more_leftover, errs) <- processArgs static_flags (unreg_flags ++ way_flags)
111
112     -- see sanity code in staticOpts
113   writeIORef v_opt_C_ready True
114
115     -- TABLES_NEXT_TO_CODE affects the info table layout.
116     -- Be careful to do this *after* all processArgs,
117     -- because evaluating tablesNextToCode involves looking at the global
118     -- static flags.  Those pesky global variables...
119   let cg_flags | tablesNextToCode = ["-optc-DTABLES_NEXT_TO_CODE"]
120                | otherwise        = []
121
122   when (not (null errs)) $ ghcError (UsageError (unlines errs))
123   return (cg_flags++more_leftover++leftover)
124
125 initStaticOpts :: IO ()
126 initStaticOpts = writeIORef v_opt_C_ready True
127
128 static_flags :: [(String, OptKind IO)]
129 -- All the static flags should appear in this list.  It describes how each
130 -- static flag should be processed.  Two main purposes:
131 -- (a) if a command-line flag doesn't appear in the list, GHC can complain
132 -- (b) a command-line flag may remove, or add, other flags; e.g. the "-fno-X" things
133 --
134 -- The common (PassFlag addOpt) action puts the static flag into the bunch of
135 -- things that are searched up by the top-level definitions like
136 --      opt_foo = lookUp FSLIT("-dfoo")
137
138 -- Note that ordering is important in the following list: any flag which
139 -- is a prefix flag (i.e. HasArg, Prefix, OptPrefix, AnySuffix) will override
140 -- flags further down the list with the same prefix.
141
142 static_flags = [
143         ------- GHCi -------------------------------------------------------
144      ( "ignore-dot-ghci", PassFlag addOpt )
145   ,  ( "read-dot-ghci"  , NoArg (removeOpt "-ignore-dot-ghci") )
146
147         ------- ways --------------------------------------------------------
148   ,  ( "prof"           , NoArg (addWay WayProf) )
149   ,  ( "unreg"          , NoArg (addWay WayUnreg) )
150   ,  ( "ticky"          , NoArg (addWay WayTicky) )
151   ,  ( "parallel"       , NoArg (addWay WayPar) )
152   ,  ( "gransim"        , NoArg (addWay WayGran) )
153   ,  ( "smp"            , NoArg (addWay WayThreaded) ) -- backwards compat.
154   ,  ( "debug"          , NoArg (addWay WayDebug) )
155   ,  ( "ndp"            , NoArg (addWay WayNDP) )
156   ,  ( "threaded"       , NoArg (addWay WayThreaded) )
157         -- ToDo: user ways
158
159         ------ Debugging ----------------------------------------------------
160   ,  ( "dppr-debug",       PassFlag addOpt )
161   ,  ( "dppr-user-length", AnySuffix addOpt )
162       -- rest of the debugging flags are dynamic
163
164         --------- Haskell Program Coverage -----------------------------------
165
166   ,  ( "fhpc"           , PassFlag addOpt )
167   ,  ( "fhpc-tracer"    , PassFlag addOpt )
168
169         --------- Profiling --------------------------------------------------
170   ,  ( "auto-all"       , NoArg (addOpt "-fauto-sccs-on-all-toplevs") )
171   ,  ( "auto"           , NoArg (addOpt "-fauto-sccs-on-exported-toplevs") )
172   ,  ( "caf-all"        , NoArg (addOpt "-fauto-sccs-on-individual-cafs") )
173          -- "ignore-sccs"  doesn't work  (ToDo)
174
175   ,  ( "no-auto-all"    , NoArg (removeOpt "-fauto-sccs-on-all-toplevs") )
176   ,  ( "no-auto"        , NoArg (removeOpt "-fauto-sccs-on-exported-toplevs") )
177   ,  ( "no-caf-all"     , NoArg (removeOpt "-fauto-sccs-on-individual-cafs") )
178
179         ------- Miscellaneous -----------------------------------------------
180   ,  ( "no-link-chk"    , NoArg (return ()) ) -- ignored for backwards compat
181
182         ----- Linker --------------------------------------------------------
183   ,  ( "static"         , PassFlag addOpt )
184   ,  ( "dynamic"        , NoArg (removeOpt "-static") )
185   ,  ( "rdynamic"       , NoArg (return ()) ) -- ignored for compat w/ gcc
186
187         ----- RTS opts ------------------------------------------------------
188   ,  ( "H"                 , HasArg (setHeapSize . fromIntegral . decodeSize) )
189   ,  ( "Rghc-timing"       , NoArg  (enableTimingStats) )
190
191         ------ Compiler flags -----------------------------------------------
192         -- All other "-fno-<blah>" options cancel out "-f<blah>" on the hsc cmdline
193   ,  ( "fno-",                  PrefixPred (\s -> isStaticFlag ("f"++s))
194                                     (\s -> removeOpt ("-f"++s)) )
195
196         -- Pass all remaining "-f<blah>" options to hsc
197   ,  ( "f",                     AnySuffixPred (isStaticFlag) addOpt )
198   ]
199
200 addOpt = consIORef v_opt_C
201
202 addWay = consIORef v_Ways
203
204 removeOpt f = do
205   fs <- readIORef v_opt_C
206   writeIORef v_opt_C $! filter (/= f) fs    
207
208 lookUp           :: FastString -> Bool
209 lookup_def_int   :: String -> Int -> Int
210 lookup_def_float :: String -> Float -> Float
211 lookup_str       :: String -> Maybe String
212
213 -- holds the static opts while they're being collected, before
214 -- being unsafely read by unpacked_static_opts below.
215 GLOBAL_VAR(v_opt_C, defaultStaticOpts, [String])
216 GLOBAL_VAR(v_opt_C_ready, False, Bool)
217 staticFlags = unsafePerformIO $ do
218   ready <- readIORef v_opt_C_ready
219   if (not ready)
220         then panic "a static opt was looked at too early!"
221         else readIORef v_opt_C
222
223 -- -static is the default
224 defaultStaticOpts = ["-static"]
225
226 packed_static_opts   = map mkFastString staticFlags
227
228 lookUp     sw = sw `elem` packed_static_opts
229         
230 -- (lookup_str "foo") looks for the flag -foo=X or -fooX, 
231 -- and returns the string X
232 lookup_str sw 
233    = case firstJust (map (startsWith sw) staticFlags) of
234         Just ('=' : str) -> Just str
235         Just str         -> Just str
236         Nothing          -> Nothing     
237
238 lookup_def_int sw def = case (lookup_str sw) of
239                             Nothing -> def              -- Use default
240                             Just xx -> try_read sw xx
241
242 lookup_def_float sw def = case (lookup_str sw) of
243                             Nothing -> def              -- Use default
244                             Just xx -> try_read sw xx
245
246
247 try_read :: Read a => String -> String -> a
248 -- (try_read sw str) tries to read s; if it fails, it
249 -- bleats about flag sw
250 try_read sw str
251   = case reads str of
252         ((x,_):_) -> x  -- Be forgiving: ignore trailing goop, and alternative parses
253         []        -> ghcError (UsageError ("Malformed argument " ++ str ++ " for flag " ++ sw))
254                         -- ToDo: hack alert. We should really parse the arugments
255                         --       and announce errors in a more civilised way.
256
257
258 {-
259  Putting the compiler options into temporary at-files
260  may turn out to be necessary later on if we turn hsc into
261  a pure Win32 application where I think there's a command-line
262  length limit of 255. unpacked_opts understands the @ option.
263
264 unpacked_opts :: [String]
265 unpacked_opts =
266   concat $
267   map (expandAts) $
268   map unpackFS argv  -- NOT ARGV any more: v_Static_hsc_opts
269   where
270    expandAts ('@':fname) = words (unsafePerformIO (readFile fname))
271    expandAts l = [l]
272 -}
273
274
275 opt_IgnoreDotGhci               = lookUp FSLIT("-ignore-dot-ghci")
276
277 -- debugging opts
278 opt_PprStyle_Debug              = lookUp  FSLIT("-dppr-debug")
279 opt_PprUserLength               = lookup_def_int "-dppr-user-length" 5 --ToDo: give this a name
280
281 -- profiling opts
282 opt_AutoSccsOnAllToplevs        = lookUp  FSLIT("-fauto-sccs-on-all-toplevs")
283 opt_AutoSccsOnExportedToplevs   = lookUp  FSLIT("-fauto-sccs-on-exported-toplevs")
284 opt_AutoSccsOnIndividualCafs    = lookUp  FSLIT("-fauto-sccs-on-individual-cafs")
285 opt_SccProfilingOn              = lookUp  FSLIT("-fscc-profiling")
286 opt_DoTickyProfiling            = WayTicky `elem` (unsafePerformIO $ readIORef v_Ways)
287
288 -- Hpc opts
289
290 opt_Hpc                         = lookUp FSLIT("-fhpc")  
291                                   || opt_Hpc_Tracer 
292 opt_Hpc_Tracer                  = lookUp FSLIT("-fhpc-tracer")
293
294 -- language opts
295 opt_DictsStrict                 = lookUp  FSLIT("-fdicts-strict")
296 opt_IrrefutableTuples           = lookUp  FSLIT("-firrefutable-tuples")
297 opt_Parallel                    = lookUp  FSLIT("-fparallel")
298 opt_Flatten                     = lookUp  FSLIT("-fflatten")
299
300 -- optimisation opts
301 opt_NoStateHack                 = lookUp  FSLIT("-fno-state-hack")
302 opt_NoMethodSharing             = lookUp  FSLIT("-fno-method-sharing")
303 opt_CprOff                      = lookUp  FSLIT("-fcpr-off")
304         -- Switch off CPR analysis in the new demand analyser
305 opt_MaxWorkerArgs               = lookup_def_int "-fmax-worker-args" (10::Int)
306
307 opt_GranMacros                  = lookUp  FSLIT("-fgransim")
308 opt_HiVersion                   = read (cProjectVersionInt ++ cProjectPatchLevel) :: Integer
309 opt_HistorySize                 = lookup_def_int "-fhistory-size" 20
310 opt_OmitBlackHoling             = lookUp  FSLIT("-dno-black-holing")
311 opt_RuntimeTypes                = lookUp  FSLIT("-fruntime-types")
312
313 -- Simplifier switches
314 opt_SimplNoPreInlining          = lookUp  FSLIT("-fno-pre-inlining")
315         -- NoPreInlining is there just to see how bad things
316         -- get if you don't do it!
317 opt_SimplExcessPrecision        = lookUp  FSLIT("-fexcess-precision")
318
319 -- Unfolding control
320 opt_UF_CreationThreshold        = lookup_def_int "-funfolding-creation-threshold"  (45::Int)
321 opt_UF_UseThreshold             = lookup_def_int "-funfolding-use-threshold"       (8::Int)     -- Discounts can be big
322 opt_UF_FunAppDiscount           = lookup_def_int "-funfolding-fun-discount"        (6::Int)     -- It's great to inline a fn
323 opt_UF_KeenessFactor            = lookup_def_float "-funfolding-keeness-factor"    (1.5::Float)
324 opt_UF_UpdateInPlace            = lookUp  FSLIT("-funfolding-update-in-place")
325
326 opt_UF_DearOp   = ( 4 :: Int)
327                         
328 #if darwin_TARGET_OS && x86_64_TARGET_ARCH
329 opt_PIC                         = True
330 #else
331 opt_PIC                         = lookUp FSLIT("-fPIC")
332 #endif
333 opt_Static                      = lookUp  FSLIT("-static")
334 opt_Unregisterised              = lookUp  FSLIT("-funregisterised")
335
336 -- Derived, not a real option.  Determines whether we will be compiling
337 -- info tables that reside just before the entry code, or with an
338 -- indirection to the entry code.  See TABLES_NEXT_TO_CODE in 
339 -- includes/InfoTables.h.
340 tablesNextToCode                = not opt_Unregisterised
341                                   && cGhcEnableTablesNextToCode == "YES"
342
343 opt_EmitExternalCore            = lookUp  FSLIT("-fext-core")
344
345 -- Include full span info in error messages, instead of just the start position.
346 opt_ErrorSpans                  = lookUp FSLIT("-ferror-spans")
347
348
349 -- object files and libraries to be linked in are collected here.
350 -- ToDo: perhaps this could be done without a global, it wasn't obvious
351 -- how to do it though --SDM.
352 GLOBAL_VAR(v_Ld_inputs, [],      [String])
353
354 isStaticFlag f =
355   f `elem` [
356         "fauto-sccs-on-all-toplevs",
357         "fauto-sccs-on-exported-toplevs",
358         "fauto-sccs-on-individual-cafs",
359         "fscc-profiling",
360         "fdicts-strict",
361         "firrefutable-tuples",
362         "fparallel",
363         "fflatten",
364         "fgransim",
365         "fno-hi-version-check",
366         "dno-black-holing",
367         "fno-method-sharing",
368         "fno-state-hack",
369         "fruntime-types",
370         "fno-pre-inlining",
371         "fexcess-precision",
372         "funfolding-update-in-place",
373         "static",
374         "funregisterised",
375         "fext-core",
376         "fcpr-off",
377         "ferror-spans",
378         "fPIC"
379         ]
380   || any (flip prefixMatch f) [
381         "fliberate-case-threshold",
382         "fmax-worker-args",
383         "fhistory-size",
384         "funfolding-creation-threshold",
385         "funfolding-use-threshold",
386         "funfolding-fun-discount",
387         "funfolding-keeness-factor"
388      ]
389
390
391
392 -- Misc functions for command-line options
393
394 startsWith :: String -> String -> Maybe String
395 -- startsWith pfx (pfx++rest) = Just rest
396
397 startsWith []     str = Just str
398 startsWith (c:cs) (s:ss)
399   = if c /= s then Nothing else startsWith cs ss
400 startsWith  _     []  = Nothing
401
402
403 -----------------------------------------------------------------------------
404 -- convert sizes like "3.5M" into integers
405
406 decodeSize :: String -> Integer
407 decodeSize str
408   | c == ""              = truncate n
409   | c == "K" || c == "k" = truncate (n * 1000)
410   | c == "M" || c == "m" = truncate (n * 1000 * 1000)
411   | c == "G" || c == "g" = truncate (n * 1000 * 1000 * 1000)
412   | otherwise            = throwDyn (CmdLineError ("can't decode size: " ++ str))
413   where (m, c) = span pred str
414         n      = read m  :: Double
415         pred c = isDigit c || c == '.'
416
417
418 -----------------------------------------------------------------------------
419 -- RTS Hooks
420
421 foreign import ccall unsafe "setHeapSize"       setHeapSize       :: Int -> IO ()
422 foreign import ccall unsafe "enableTimingStats" enableTimingStats :: IO ()
423
424 -----------------------------------------------------------------------------
425 -- Ways
426
427 -- The central concept of a "way" is that all objects in a given
428 -- program must be compiled in the same "way".  Certain options change
429 -- parameters of the virtual machine, eg. profiling adds an extra word
430 -- to the object header, so profiling objects cannot be linked with
431 -- non-profiling objects.
432
433 -- After parsing the command-line options, we determine which "way" we
434 -- are building - this might be a combination way, eg. profiling+ticky-ticky.
435
436 -- We then find the "build-tag" associated with this way, and this
437 -- becomes the suffix used to find .hi files and libraries used in
438 -- this compilation.
439
440 GLOBAL_VAR(v_Build_tag, "", String)
441
442 -- The RTS has its own build tag, because there are some ways that
443 -- affect the RTS only.
444 GLOBAL_VAR(v_RTS_Build_tag, "", String)
445
446 data WayName
447   = WayThreaded
448   | WayDebug
449   | WayProf
450   | WayUnreg
451   | WayTicky
452   | WayPar
453   | WayGran
454   | WayNDP
455   | WayUser_a
456   | WayUser_b
457   | WayUser_c
458   | WayUser_d
459   | WayUser_e
460   | WayUser_f
461   | WayUser_g
462   | WayUser_h
463   | WayUser_i
464   | WayUser_j
465   | WayUser_k
466   | WayUser_l
467   | WayUser_m
468   | WayUser_n
469   | WayUser_o
470   | WayUser_A
471   | WayUser_B
472   deriving (Eq,Ord)
473
474 GLOBAL_VAR(v_Ways, [] ,[WayName])
475
476 allowed_combination way = and [ x `allowedWith` y 
477                               | x <- way, y <- way, x < y ]
478   where
479         -- Note ordering in these tests: the left argument is
480         -- <= the right argument, according to the Ord instance
481         -- on Way above.
482
483         -- debug is allowed with everything
484         _ `allowedWith` WayDebug                = True
485         WayDebug `allowedWith` _                = True
486
487         WayProf `allowedWith` WayUnreg          = True
488         WayProf `allowedWith` WayNDP            = True
489         _ `allowedWith` _                       = False
490
491
492 findBuildTag :: IO [String]  -- new options
493 findBuildTag = do
494   way_names <- readIORef v_Ways
495   let ws = sort (nub way_names)
496
497   if not (allowed_combination ws)
498       then throwDyn (CmdLineError $
499                     "combination not supported: "  ++
500                     foldr1 (\a b -> a ++ '/':b) 
501                     (map (wayName . lkupWay) ws))
502       else let ways    = map lkupWay ws
503                tag     = mkBuildTag (filter (not.wayRTSOnly) ways)
504                rts_tag = mkBuildTag ways
505                flags   = map wayOpts ways
506            in do
507            writeIORef v_Build_tag tag
508            writeIORef v_RTS_Build_tag rts_tag
509            return (concat flags)
510
511
512
513 mkBuildTag :: [Way] -> String
514 mkBuildTag ways = concat (intersperse "_" (map wayTag ways))
515
516 lkupWay w = 
517    case lookup w way_details of
518         Nothing -> error "findBuildTag"
519         Just details -> details
520
521 isRTSWay = wayRTSOnly . lkupWay 
522
523 data Way = Way {
524   wayTag     :: String,
525   wayRTSOnly :: Bool,
526   wayName    :: String,
527   wayOpts    :: [String]
528   }
529
530 way_details :: [ (WayName, Way) ]
531 way_details =
532   [ (WayThreaded, Way "thr" True "Threaded" [
533 #if defined(freebsd_TARGET_OS)
534 --        "-optc-pthread"
535 --      , "-optl-pthread"
536         -- FreeBSD's default threading library is the KSE-based M:N libpthread,
537         -- which GHC has some problems with.  It's currently not clear whether
538         -- the problems are our fault or theirs, but it seems that using the
539         -- alternative 1:1 threading library libthr works around it:
540           "-optl-lthr"
541 #elif defined(solaris2_TARGET_OS)
542           "-optl-lrt"
543 #endif
544         ] ),
545
546     (WayDebug, Way "debug" True "Debug" [] ),
547
548     (WayProf, Way  "p" False "Profiling"
549         [ "-fscc-profiling"
550         , "-DPROFILING"
551         , "-optc-DPROFILING" ]),
552
553     (WayTicky, Way  "t" True "Ticky-ticky Profiling"  
554         [ "-DTICKY_TICKY"
555         , "-optc-DTICKY_TICKY" ]),
556
557     (WayUnreg, Way  "u" False "Unregisterised" 
558         unregFlags ),
559
560     -- optl's below to tell linker where to find the PVM library -- HWL
561     (WayPar, Way  "mp" False "Parallel" 
562         [ "-fparallel"
563         , "-D__PARALLEL_HASKELL__"
564         , "-optc-DPAR"
565         , "-package concurrent"
566         , "-optc-w"
567         , "-optl-L${PVM_ROOT}/lib/${PVM_ARCH}"
568         , "-optl-lpvm3"
569         , "-optl-lgpvm3" ]),
570
571     -- at the moment we only change the RTS and could share compiler and libs!
572     (WayPar, Way  "mt" False "Parallel ticky profiling" 
573         [ "-fparallel"
574         , "-D__PARALLEL_HASKELL__"
575         , "-optc-DPAR"
576         , "-optc-DPAR_TICKY"
577         , "-package concurrent"
578         , "-optc-w"
579         , "-optl-L${PVM_ROOT}/lib/${PVM_ARCH}"
580         , "-optl-lpvm3"
581         , "-optl-lgpvm3" ]),
582
583     (WayPar, Way  "md" False "Distributed" 
584         [ "-fparallel"
585         , "-D__PARALLEL_HASKELL__"
586         , "-D__DISTRIBUTED_HASKELL__"
587         , "-optc-DPAR"
588         , "-optc-DDIST"
589         , "-package concurrent"
590         , "-optc-w"
591         , "-optl-L${PVM_ROOT}/lib/${PVM_ARCH}"
592         , "-optl-lpvm3"
593         , "-optl-lgpvm3" ]),
594
595     (WayGran, Way  "mg" False "GranSim"
596         [ "-fgransim"
597         , "-D__GRANSIM__"
598         , "-optc-DGRAN"
599         , "-package concurrent" ]),
600
601     (WayNDP, Way  "ndp" False "Nested data parallelism"
602         [ "-fparr"
603         , "-fflatten"]),
604
605     (WayUser_a,  Way  "a"  False "User way 'a'"  ["$WAY_a_REAL_OPTS"]), 
606     (WayUser_b,  Way  "b"  False "User way 'b'"  ["$WAY_b_REAL_OPTS"]), 
607     (WayUser_c,  Way  "c"  False "User way 'c'"  ["$WAY_c_REAL_OPTS"]), 
608     (WayUser_d,  Way  "d"  False "User way 'd'"  ["$WAY_d_REAL_OPTS"]), 
609     (WayUser_e,  Way  "e"  False "User way 'e'"  ["$WAY_e_REAL_OPTS"]), 
610     (WayUser_f,  Way  "f"  False "User way 'f'"  ["$WAY_f_REAL_OPTS"]), 
611     (WayUser_g,  Way  "g"  False "User way 'g'"  ["$WAY_g_REAL_OPTS"]), 
612     (WayUser_h,  Way  "h"  False "User way 'h'"  ["$WAY_h_REAL_OPTS"]), 
613     (WayUser_i,  Way  "i"  False "User way 'i'"  ["$WAY_i_REAL_OPTS"]), 
614     (WayUser_j,  Way  "j"  False "User way 'j'"  ["$WAY_j_REAL_OPTS"]), 
615     (WayUser_k,  Way  "k"  False "User way 'k'"  ["$WAY_k_REAL_OPTS"]), 
616     (WayUser_l,  Way  "l"  False "User way 'l'"  ["$WAY_l_REAL_OPTS"]), 
617     (WayUser_m,  Way  "m"  False "User way 'm'"  ["$WAY_m_REAL_OPTS"]), 
618     (WayUser_n,  Way  "n"  False "User way 'n'"  ["$WAY_n_REAL_OPTS"]), 
619     (WayUser_o,  Way  "o"  False "User way 'o'"  ["$WAY_o_REAL_OPTS"]), 
620     (WayUser_A,  Way  "A"  False "User way 'A'"  ["$WAY_A_REAL_OPTS"]), 
621     (WayUser_B,  Way  "B"  False "User way 'B'"  ["$WAY_B_REAL_OPTS"]) 
622   ]
623
624 unregFlags = 
625    [ "-optc-DNO_REGS"
626    , "-optc-DUSE_MINIINTERPRETER"
627    , "-fno-asm-mangling"
628    , "-funregisterised"
629    , "-fvia-C" ]