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