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