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