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