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