ad65dfe2f4492ba56fd49d01cba0385b2ade4c2e
[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 Util             ( consIORef )
75 import CmdLineParser
76 import Config           ( cProjectVersionInt, cProjectPatchLevel,
77                           cGhcUnregisterised )
78 import FastString       ( FastString, mkFastString )
79 import Util
80 import Maybes           ( firstJust )
81 import Panic            ( GhcException(..), ghcError )
82 import Constants        ( mAX_CONTEXT_REDUCTION_DEPTH )
83
84 import EXCEPTION        ( throwDyn )
85 import DATA_IOREF
86 import UNSAFE_IO        ( unsafePerformIO )
87 import Monad            ( when )
88 import Char             ( isDigit )
89 import List             ( sort, intersperse )
90
91 -----------------------------------------------------------------------------
92 -- Static flags
93
94 parseStaticFlags :: [String] -> IO [String]
95 parseStaticFlags args = do
96   (leftover, errs) <- processArgs static_flags args
97   when (not (null errs)) $ throwDyn (UsageError (unlines errs))
98
99     -- deal with the way flags: the way (eg. prof) gives rise to
100     -- futher flags, some of which might be static.
101   way_flags <- findBuildTag
102
103     -- if we're unregisterised, add some more flags
104   let unreg_flags | cGhcUnregisterised == "YES" = unregFlags
105                   | otherwise = []
106
107   (more_leftover, errs) <- processArgs static_flags (unreg_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 WaySMP) )
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_MaxContextReductionDepth    = lookup_def_int "-fcontext-stack" mAX_CONTEXT_REDUCTION_DEPTH
258 opt_Parallel                    = lookUp  FSLIT("-fparallel")
259 opt_SMP                         = lookUp  FSLIT("-fsmp")
260 opt_Flatten                     = lookUp  FSLIT("-fflatten")
261
262 -- optimisation opts
263 opt_NoStateHack                 = lookUp  FSLIT("-fno-state-hack")
264 opt_NoMethodSharing             = lookUp  FSLIT("-fno-method-sharing")
265 opt_CprOff                      = lookUp  FSLIT("-fcpr-off")
266 opt_RulesOff                    = lookUp  FSLIT("-frules-off")
267         -- Switch off CPR analysis in the new demand analyser
268 opt_LiberateCaseThreshold       = lookup_def_int "-fliberate-case-threshold" (10::Int)
269 opt_MaxWorkerArgs               = lookup_def_int "-fmax-worker-args" (10::Int)
270
271 opt_EmitCExternDecls            = lookUp  FSLIT("-femit-extern-decls")
272 opt_GranMacros                  = lookUp  FSLIT("-fgransim")
273 opt_HiVersion                   = read (cProjectVersionInt ++ cProjectPatchLevel) :: Int
274 opt_HistorySize                 = lookup_def_int "-fhistory-size" 20
275 opt_OmitBlackHoling             = lookUp  FSLIT("-dno-black-holing")
276 opt_RuntimeTypes                = lookUp  FSLIT("-fruntime-types")
277
278 -- Simplifier switches
279 opt_SimplNoPreInlining          = lookUp  FSLIT("-fno-pre-inlining")
280         -- NoPreInlining is there just to see how bad things
281         -- get if you don't do it!
282 opt_SimplExcessPrecision        = lookUp  FSLIT("-fexcess-precision")
283
284 -- Unfolding control
285 opt_UF_CreationThreshold        = lookup_def_int "-funfolding-creation-threshold"  (45::Int)
286 opt_UF_UseThreshold             = lookup_def_int "-funfolding-use-threshold"       (8::Int)     -- Discounts can be big
287 opt_UF_FunAppDiscount           = lookup_def_int "-funfolding-fun-discount"        (6::Int)     -- It's great to inline a fn
288 opt_UF_KeenessFactor            = lookup_def_float "-funfolding-keeness-factor"    (1.5::Float)
289 opt_UF_UpdateInPlace            = lookUp  FSLIT("-funfolding-update-in-place")
290
291 opt_UF_DearOp   = ( 4 :: Int)
292                         
293 opt_Static                      = lookUp  FSLIT("-static")
294 opt_Unregisterised              = lookUp  FSLIT("-funregisterised")
295 opt_EmitExternalCore            = lookUp  FSLIT("-fext-core")
296
297 -- Include full span info in error messages, instead of just the start position.
298 opt_ErrorSpans                  = lookUp FSLIT("-ferror-spans")
299
300 opt_PIC                         = lookUp FSLIT("-fPIC")
301
302 -- object files and libraries to be linked in are collected here.
303 -- ToDo: perhaps this could be done without a global, it wasn't obvious
304 -- how to do it though --SDM.
305 GLOBAL_VAR(v_Ld_inputs, [],      [String])
306
307 isStaticFlag f =
308   f `elem` [
309         "fauto-sccs-on-all-toplevs",
310         "fauto-sccs-on-exported-toplevs",
311         "fauto-sccs-on-individual-cafs",
312         "fscc-profiling",
313         "fticky-ticky",
314         "fall-strict",
315         "fdicts-strict",
316         "firrefutable-tuples",
317         "fparallel",
318         "fsmp",
319         "fflatten",
320         "fsemi-tagging",
321         "flet-no-escape",
322         "femit-extern-decls",
323         "fglobalise-toplev-names",
324         "fgransim",
325         "fno-hi-version-check",
326         "dno-black-holing",
327         "fno-method-sharing",
328         "fno-state-hack",
329         "fruntime-types",
330         "fno-pre-inlining",
331         "fexcess-precision",
332         "funfolding-update-in-place",
333         "static",
334         "funregisterised",
335         "fext-core",
336         "frule-check",
337         "frules-off",
338         "fcpr-off",
339         "ferror-spans",
340         "fPIC"
341         ]
342   || any (flip prefixMatch f) [
343         "fcontext-stack",
344         "fliberate-case-threshold",
345         "fmax-worker-args",
346         "fhistory-size",
347         "funfolding-creation-threshold",
348         "funfolding-use-threshold",
349         "funfolding-fun-discount",
350         "funfolding-keeness-factor"
351      ]
352
353
354
355 -- Misc functions for command-line options
356
357 startsWith :: String -> String -> Maybe String
358 -- startsWith pfx (pfx++rest) = Just rest
359
360 startsWith []     str = Just str
361 startsWith (c:cs) (s:ss)
362   = if c /= s then Nothing else startsWith cs ss
363 startsWith  _     []  = Nothing
364
365
366 -----------------------------------------------------------------------------
367 -- convert sizes like "3.5M" into integers
368
369 decodeSize :: String -> Integer
370 decodeSize str
371   | c == ""              = truncate n
372   | c == "K" || c == "k" = truncate (n * 1000)
373   | c == "M" || c == "m" = truncate (n * 1000 * 1000)
374   | c == "G" || c == "g" = truncate (n * 1000 * 1000 * 1000)
375   | otherwise            = throwDyn (CmdLineError ("can't decode size: " ++ str))
376   where (m, c) = span pred str
377         n      = read m  :: Double
378         pred c = isDigit c || c == '.'
379
380
381 -----------------------------------------------------------------------------
382 -- RTS Hooks
383
384 #if __GLASGOW_HASKELL__ >= 504
385 foreign import ccall unsafe "setHeapSize"       setHeapSize       :: Int -> IO ()
386 foreign import ccall unsafe "enableTimingStats" enableTimingStats :: IO ()
387 #else
388 foreign import "setHeapSize"       unsafe setHeapSize       :: Int -> IO ()
389 foreign import "enableTimingStats" unsafe enableTimingStats :: IO ()
390 #endif
391
392 -----------------------------------------------------------------------------
393 -- Ways
394
395 -- The central concept of a "way" is that all objects in a given
396 -- program must be compiled in the same "way".  Certain options change
397 -- parameters of the virtual machine, eg. profiling adds an extra word
398 -- to the object header, so profiling objects cannot be linked with
399 -- non-profiling objects.
400
401 -- After parsing the command-line options, we determine which "way" we
402 -- are building - this might be a combination way, eg. profiling+ticky-ticky.
403
404 -- We then find the "build-tag" associated with this way, and this
405 -- becomes the suffix used to find .hi files and libraries used in
406 -- this compilation.
407
408 GLOBAL_VAR(v_Build_tag, "", String)
409
410 -- The RTS has its own build tag, because there are some ways that
411 -- affect the RTS only.
412 GLOBAL_VAR(v_RTS_Build_tag, "", String)
413
414 data WayName
415   = WayThreaded
416   | WayDebug
417   | WayProf
418   | WayUnreg
419   | WayTicky
420   | WayPar
421   | WayGran
422   | WaySMP
423   | WayNDP
424   | WayUser_a
425   | WayUser_b
426   | WayUser_c
427   | WayUser_d
428   | WayUser_e
429   | WayUser_f
430   | WayUser_g
431   | WayUser_h
432   | WayUser_i
433   | WayUser_j
434   | WayUser_k
435   | WayUser_l
436   | WayUser_m
437   | WayUser_n
438   | WayUser_o
439   | WayUser_A
440   | WayUser_B
441   deriving (Eq,Ord)
442
443 GLOBAL_VAR(v_Ways, [] ,[WayName])
444
445 allowed_combination way = and [ x `allowedWith` y 
446                               | x <- way, y <- way, x < y ]
447   where
448         -- Note ordering in these tests: the left argument is
449         -- <= the right argument, according to the Ord instance
450         -- on Way above.
451
452         -- debug is allowed with everything
453         _ `allowedWith` WayDebug                = True
454         WayDebug `allowedWith` _                = True
455
456         WayThreaded `allowedWith` WayProf       = True
457         WayProf `allowedWith` WayUnreg          = True
458         WayProf `allowedWith` WaySMP            = True
459         WayProf `allowedWith` WayNDP            = True
460         _ `allowedWith` _                       = False
461
462
463 findBuildTag :: IO [String]  -- new options
464 findBuildTag = do
465   way_names <- readIORef v_Ways
466   let ws = sort way_names
467   if not (allowed_combination ws)
468       then throwDyn (CmdLineError $
469                     "combination not supported: "  ++
470                     foldr1 (\a b -> a ++ '/':b) 
471                     (map (wayName . lkupWay) ws))
472       else let ways    = map lkupWay ws
473                tag     = mkBuildTag (filter (not.wayRTSOnly) ways)
474                rts_tag = mkBuildTag ways
475                flags   = map wayOpts ways
476            in do
477            writeIORef v_Build_tag tag
478            writeIORef v_RTS_Build_tag rts_tag
479            return (concat flags)
480
481 mkBuildTag :: [Way] -> String
482 mkBuildTag ways = concat (intersperse "_" (map wayTag ways))
483
484 lkupWay w = 
485    case lookup w way_details of
486         Nothing -> error "findBuildTag"
487         Just details -> details
488
489 data Way = Way {
490   wayTag     :: String,
491   wayRTSOnly :: Bool,
492   wayName    :: String,
493   wayOpts    :: [String]
494   }
495
496 way_details :: [ (WayName, Way) ]
497 way_details =
498   [ (WayThreaded, Way "thr" True "Threaded" [
499 #if defined(freebsd_TARGET_OS)
500           "-optc-pthread"
501         , "-optl-pthread"
502 #endif
503         ] ),
504
505     (WayDebug, Way "debug" True "Debug" [] ),
506
507     (WayProf, Way  "p" False "Profiling"
508         [ "-fscc-profiling"
509         , "-DPROFILING"
510         , "-optc-DPROFILING" ]),
511
512     (WayTicky, Way  "t" False "Ticky-ticky Profiling"  
513         [ "-fticky-ticky"
514         , "-DTICKY_TICKY"
515         , "-optc-DTICKY_TICKY" ]),
516
517     (WayUnreg, Way  "u" False "Unregisterised" 
518         unregFlags ),
519
520     -- optl's below to tell linker where to find the PVM library -- HWL
521     (WayPar, Way  "mp" False "Parallel" 
522         [ "-fparallel"
523         , "-D__PARALLEL_HASKELL__"
524         , "-optc-DPAR"
525         , "-package concurrent"
526         , "-optc-w"
527         , "-optl-L${PVM_ROOT}/lib/${PVM_ARCH}"
528         , "-optl-lpvm3"
529         , "-optl-lgpvm3" ]),
530
531     -- at the moment we only change the RTS and could share compiler and libs!
532     (WayPar, Way  "mt" False "Parallel ticky profiling" 
533         [ "-fparallel"
534         , "-D__PARALLEL_HASKELL__"
535         , "-optc-DPAR"
536         , "-optc-DPAR_TICKY"
537         , "-package concurrent"
538         , "-optc-w"
539         , "-optl-L${PVM_ROOT}/lib/${PVM_ARCH}"
540         , "-optl-lpvm3"
541         , "-optl-lgpvm3" ]),
542
543     (WayPar, Way  "md" False "Distributed" 
544         [ "-fparallel"
545         , "-D__PARALLEL_HASKELL__"
546         , "-D__DISTRIBUTED_HASKELL__"
547         , "-optc-DPAR"
548         , "-optc-DDIST"
549         , "-package concurrent"
550         , "-optc-w"
551         , "-optl-L${PVM_ROOT}/lib/${PVM_ARCH}"
552         , "-optl-lpvm3"
553         , "-optl-lgpvm3" ]),
554
555     (WayGran, Way  "mg" False "GranSim"
556         [ "-fgransim"
557         , "-D__GRANSIM__"
558         , "-optc-DGRAN"
559         , "-package concurrent" ]),
560
561     (WaySMP, Way  "s" False "SMP"
562         [ "-fsmp"
563 #if !defined(mingw32_TARGET_OS)
564         , "-optc-pthread"
565 #endif
566 #if !defined(mingw32_TARGET_OS) && !defined(freebsd_TARGET_OS)
567         , "-optl-pthread"
568 #endif
569         , "-optc-DSMP" ]),
570
571     (WayNDP, Way  "ndp" False "Nested data parallelism"
572         [ "-fparr"
573         , "-fflatten"]),
574
575     (WayUser_a,  Way  "a"  False "User way 'a'"  ["$WAY_a_REAL_OPTS"]), 
576     (WayUser_b,  Way  "b"  False "User way 'b'"  ["$WAY_b_REAL_OPTS"]), 
577     (WayUser_c,  Way  "c"  False "User way 'c'"  ["$WAY_c_REAL_OPTS"]), 
578     (WayUser_d,  Way  "d"  False "User way 'd'"  ["$WAY_d_REAL_OPTS"]), 
579     (WayUser_e,  Way  "e"  False "User way 'e'"  ["$WAY_e_REAL_OPTS"]), 
580     (WayUser_f,  Way  "f"  False "User way 'f'"  ["$WAY_f_REAL_OPTS"]), 
581     (WayUser_g,  Way  "g"  False "User way 'g'"  ["$WAY_g_REAL_OPTS"]), 
582     (WayUser_h,  Way  "h"  False "User way 'h'"  ["$WAY_h_REAL_OPTS"]), 
583     (WayUser_i,  Way  "i"  False "User way 'i'"  ["$WAY_i_REAL_OPTS"]), 
584     (WayUser_j,  Way  "j"  False "User way 'j'"  ["$WAY_j_REAL_OPTS"]), 
585     (WayUser_k,  Way  "k"  False "User way 'k'"  ["$WAY_k_REAL_OPTS"]), 
586     (WayUser_l,  Way  "l"  False "User way 'l'"  ["$WAY_l_REAL_OPTS"]), 
587     (WayUser_m,  Way  "m"  False "User way 'm'"  ["$WAY_m_REAL_OPTS"]), 
588     (WayUser_n,  Way  "n"  False "User way 'n'"  ["$WAY_n_REAL_OPTS"]), 
589     (WayUser_o,  Way  "o"  False "User way 'o'"  ["$WAY_o_REAL_OPTS"]), 
590     (WayUser_A,  Way  "A"  False "User way 'A'"  ["$WAY_A_REAL_OPTS"]), 
591     (WayUser_B,  Way  "B"  False "User way 'B'"  ["$WAY_B_REAL_OPTS"]) 
592   ]
593
594 unregFlags = 
595    [ "-optc-DNO_REGS"
596    , "-optc-DUSE_MINIINTERPRETER"
597    , "-fno-asm-mangling"
598    , "-funregisterised"
599    , "-fvia-C" ]