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