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