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