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