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