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