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