[project @ 2004-02-24 17:33:32 by simonmar]
[ghc-hetmet.git] / ghc / compiler / main / DriverState.hs
1 -----------------------------------------------------------------------------
2 -- $Id: DriverState.hs,v 1.98 2004/02/24 17:33:34 simonmar Exp $
3 --
4 -- Settings for the driver
5 --
6 -- (c) The University of Glasgow 2002
7 --
8 -----------------------------------------------------------------------------
9
10 module DriverState where
11
12 #include "../includes/config.h"
13 #include "HsVersions.h"
14
15 import ParsePkgConf     ( loadPackageConfig )
16 import SysTools         ( getTopDir )
17 import Packages
18 import CmdLineOpts
19 import DriverPhases
20 import DriverUtil
21 import UniqFM           ( eltsUFM )
22 import Util
23 import Config
24 import Panic
25
26 import DATA_IOREF       ( IORef, readIORef, writeIORef )
27 import EXCEPTION
28
29 import List
30 import Char  
31 import Monad
32 import Maybe            ( fromJust, isJust )
33 import Directory        ( doesDirectoryExist )
34
35 -----------------------------------------------------------------------------
36 -- non-configured things
37
38 cHaskell1Version = "5" -- i.e., Haskell 98
39
40 -----------------------------------------------------------------------------
41 -- GHC modes of operation
42
43 data GhcMode
44   = DoMkDependHS                        -- ghc -M
45   | DoMkDLL                             -- ghc --mk-dll
46   | StopBefore Phase                    -- ghc -E | -C | -S | -c
47   | DoMake                              -- ghc --make
48   | DoInteractive                       -- ghc --interactive
49   | DoLink                              -- [ the default ]
50   | DoEval String                       -- ghc -e
51   deriving (Eq,Show)
52
53 GLOBAL_VAR(v_GhcMode,     DoLink, GhcMode)
54 GLOBAL_VAR(v_GhcModeFlag, "",     String)
55
56 setMode :: GhcMode -> String -> IO ()
57 setMode m flag = do
58   old_mode <- readIORef v_GhcMode
59   old_flag <- readIORef v_GhcModeFlag
60   when (notNull old_flag && flag /= old_flag) $
61       throwDyn (UsageError 
62           ("cannot use `" ++ old_flag ++ "' with `" ++ flag ++ "'"))
63   writeIORef v_GhcMode m
64   writeIORef v_GhcModeFlag flag
65
66 isCompManagerMode DoMake        = True
67 isCompManagerMode DoInteractive = True
68 isCompManagerMode _             = False
69
70 -----------------------------------------------------------------------------
71 -- Global compilation flags
72
73 -- Cpp-related flags
74 v_Hs_source_cpp_opts = global
75         [ "-D__HASKELL1__="++cHaskell1Version
76         , "-D__GLASGOW_HASKELL__="++cProjectVersionInt                          
77         , "-D__HASKELL98__"
78         , "-D__CONCURRENT_HASKELL__"
79         ]
80 {-# NOINLINE v_Hs_source_cpp_opts #-}
81
82
83 -- Keep output from intermediate phases
84 GLOBAL_VAR(v_Keep_hi_diffs,             False,          Bool)
85 GLOBAL_VAR(v_Keep_hc_files,             False,          Bool)
86 GLOBAL_VAR(v_Keep_s_files,              False,          Bool)
87 GLOBAL_VAR(v_Keep_raw_s_files,          False,          Bool)
88 GLOBAL_VAR(v_Keep_tmp_files,            False,          Bool)
89 #ifdef ILX
90 GLOBAL_VAR(v_Keep_il_files,             False,          Bool)
91 GLOBAL_VAR(v_Keep_ilx_files,            False,          Bool)
92 #endif
93
94 -- Misc
95 GLOBAL_VAR(v_Scale_sizes_by,            1.0,            Double)
96 GLOBAL_VAR(v_Static,                    True,           Bool)
97 GLOBAL_VAR(v_NoLink,                    False,          Bool)
98 GLOBAL_VAR(v_NoHsMain,                  False,          Bool)
99 GLOBAL_VAR(v_MainModIs,                 Nothing,        Maybe String)
100 GLOBAL_VAR(v_MainFunIs,                 Nothing,        Maybe String)
101 GLOBAL_VAR(v_Recomp,                    True,           Bool)
102 GLOBAL_VAR(v_Collect_ghc_timing,        False,          Bool)
103 GLOBAL_VAR(v_Do_asm_mangling,           True,           Bool)
104 GLOBAL_VAR(v_Excess_precision,          False,          Bool)
105 GLOBAL_VAR(v_Read_DotGHCi,              True,           Bool)
106
107 -- Preprocessor flags
108 GLOBAL_VAR(v_Hs_source_pp_opts, [], [String])
109
110 -----------------------------------------------------------------------------
111 -- Splitting object files (for libraries)
112
113 GLOBAL_VAR(v_Split_object_files,        False,          Bool)
114 GLOBAL_VAR(v_Split_info,                ("",0),         (String,Int))
115         -- The split prefix and number of files
116
117         
118 can_split :: Bool
119 can_split =  prefixMatch "i386"    cTARGETPLATFORM
120           || prefixMatch "alpha"   cTARGETPLATFORM
121           || prefixMatch "hppa"    cTARGETPLATFORM
122           || prefixMatch "m68k"    cTARGETPLATFORM
123           || prefixMatch "mips"    cTARGETPLATFORM
124           || prefixMatch "powerpc" cTARGETPLATFORM
125           || prefixMatch "rs6000"  cTARGETPLATFORM
126           || prefixMatch "sparc"   cTARGETPLATFORM
127
128 -----------------------------------------------------------------------------
129 -- Compiler output options
130
131 GLOBAL_VAR(v_Output_dir,  Nothing, Maybe String)
132 GLOBAL_VAR(v_Output_file, Nothing, Maybe String)
133 GLOBAL_VAR(v_Output_hi,   Nothing, Maybe String)
134
135 -- called to verify that the output files & directories
136 -- point somewhere valid. 
137 --
138 -- The assumption is that the directory portion of these output
139 -- options will have to exist by the time 'verifyOutputFiles'
140 -- is invoked.
141 -- 
142 verifyOutputFiles :: IO ()
143 verifyOutputFiles = do
144   odir <- readIORef v_Output_dir
145   when (isJust odir) $ do
146      let dir = fromJust odir
147      flg <- doesDirectoryExist dir
148      when (not flg) (nonExistentDir "-odir" dir)
149   ofile <- readIORef v_Output_file
150   when (isJust ofile) $ do
151      let fn = fromJust ofile
152      flg <- doesDirNameExist fn
153      when (not flg) (nonExistentDir "-o" fn)
154   ohi <- readIORef v_Output_hi
155   when (isJust ohi) $ do
156      let hi = fromJust ohi
157      flg <- doesDirNameExist hi
158      when (not flg) (nonExistentDir "-ohi" hi)
159  where
160    nonExistentDir flg dir = 
161      throwDyn (CmdLineError ("error: directory portion of " ++ 
162                              show dir ++ " does not exist (used with " ++ 
163                              show flg ++ " option.)"))
164
165 GLOBAL_VAR(v_Object_suf,  phaseInputExt Ln, String)
166 GLOBAL_VAR(v_HC_suf,      Nothing, Maybe String)
167 GLOBAL_VAR(v_Hi_dir,      Nothing, Maybe String)
168 GLOBAL_VAR(v_Hi_suf,      "hi",    String)
169
170 GLOBAL_VAR(v_Ld_inputs, [],      [String])
171
172 odir_ify :: String -> IO String
173 odir_ify f = do
174   odir_opt <- readIORef v_Output_dir
175   case odir_opt of
176         Nothing -> return f
177         Just d  -> return (replaceFilenameDirectory f d)
178
179 osuf_ify :: String -> IO String
180 osuf_ify f = do
181   osuf <- readIORef v_Object_suf
182   return (replaceFilenameSuffix f osuf)
183
184 GLOBAL_VAR(v_StgStats,                  False, Bool)
185
186 buildStgToDo :: IO [ StgToDo ]
187 buildStgToDo = do
188   stg_stats <- readIORef v_StgStats
189   let flags1 | stg_stats = [ D_stg_stats ]
190              | otherwise = [ ]
191
192         -- STG passes
193   ways_ <- readIORef v_Ways
194   let flags2 | WayProf `elem` ways_ = StgDoMassageForProfiling : flags1
195              | otherwise            = flags1
196
197   return flags2
198
199 -----------------------------------------------------------------------------
200 -- Paths & Libraries
201
202 split_marker = ':'   -- not configurable (ToDo)
203
204 v_Import_paths, v_Include_paths, v_Library_paths :: IORef [String]
205 GLOBAL_VAR(v_Import_paths,  ["."], [String])
206 GLOBAL_VAR(v_Include_paths, ["."], [String])
207 GLOBAL_VAR(v_Library_paths, [],  [String])
208
209 #ifdef darwin_TARGET_OS
210 GLOBAL_VAR(v_Framework_paths, [], [String])
211 GLOBAL_VAR(v_Cmdline_frameworks, [], [String])
212 #endif
213
214 addToDirList :: IORef [String] -> String -> IO ()
215 addToDirList ref path
216   = do paths           <- readIORef ref
217        shiny_new_ones  <- splitUp path
218        writeIORef ref (paths ++ filter notNull shiny_new_ones)
219                 -- empty paths are ignored: there might be a trailing
220                 -- ':' in the initial list, for example.  Empty paths can
221                 -- cause confusion when they are translated into -I options
222                 -- for passing to gcc.
223   where
224     splitUp ::String -> IO [String]
225 #ifdef mingw32_TARGET_OS
226      -- 'hybrid' support for DOS-style paths in directory lists.
227      -- 
228      -- That is, if "foo:bar:baz" is used, this interpreted as
229      -- consisting of three entries, 'foo', 'bar', 'baz'.
230      -- However, with "c:/foo:c:\\foo;x:/bar", this is interpreted
231      -- as four elts, "c:/foo", "c:\\foo", "x", and "/bar" --
232      -- *provided* c:/foo exists and x:/bar doesn't.
233      --
234      -- Notice that no attempt is made to fully replace the 'standard'
235      -- split marker ':' with the Windows / DOS one, ';'. The reason being
236      -- that this will cause too much breakage for users & ':' will
237      -- work fine even with DOS paths, if you're not insisting on being silly.
238      -- So, use either.
239     splitUp []         = return []
240     splitUp (x:':':div:xs) 
241       | div `elem` dir_markers = do
242           let (p,rs) = findNextPath xs
243           ps  <- splitUp rs
244            {-
245              Consult the file system to check the interpretation
246              of (x:':':div:p) -- this is arguably excessive, we
247              could skip this test & just say that it is a valid
248              dir path.
249            -}
250           flg <- doesDirectoryExist (x:':':div:p)
251           if flg then
252              return ((x:':':div:p):ps)
253            else
254              return ([x]:(div:p):ps)
255     splitUp xs = do
256       let (p,rs) = findNextPath xs
257       ps <- splitUp rs
258       return (cons p ps)
259     
260     cons "" xs = xs
261     cons x  xs = x:xs
262
263     -- will be called either when we've consumed nought or the "<Drive>:/" part of
264     -- a DOS path, so splitting is just a Q of finding the next split marker.
265     findNextPath xs = 
266         case break (`elem` split_markers) xs of
267            (p, d:ds) -> (p, ds)
268            (p, xs)   -> (p, xs)
269
270     split_markers :: [Char]
271     split_markers = [':', ';']
272
273     dir_markers :: [Char]
274     dir_markers = ['/', '\\']
275
276 #else
277     splitUp xs = return (split split_marker xs)
278 #endif
279
280 -- ----------------------------------------------------------------------------
281 -- Loading the package config file
282
283 readPackageConf :: String -> IO ()
284 readPackageConf conf_file = do
285   proto_pkg_configs <- loadPackageConfig conf_file
286   top_dir           <- getTopDir
287   let pkg_configs = mungePackagePaths top_dir proto_pkg_configs
288   extendPackageConfigMap pkg_configs
289
290 mungePackagePaths :: String -> [PackageConfig] -> [PackageConfig]
291 -- Replace the string "$libdir" at the beginning of a path
292 -- with the current libdir (obtained from the -B option).
293 mungePackagePaths top_dir ps = map munge_pkg ps
294  where 
295   munge_pkg p = p{ import_dirs  = munge_paths (import_dirs p),
296                    include_dirs = munge_paths (include_dirs p),
297                    library_dirs = munge_paths (library_dirs p),
298                    framework_dirs = munge_paths (framework_dirs p) }
299
300   munge_paths = map munge_path
301
302   munge_path p 
303           | Just p' <- maybePrefixMatch "$libdir" p = top_dir ++ p'
304           | otherwise                               = p
305
306
307 -- -----------------------------------------------------------------------------
308 -- The list of packages requested on the command line
309
310 -- The package list reflects what packages were given as command-line options,
311 -- plus their dependent packages.  It is maintained in dependency order;
312 -- earlier packages may depend on later ones, but not vice versa
313 GLOBAL_VAR(v_ExplicitPackages, initPackageList, [PackageName])
314
315 initPackageList = [basePackage, rtsPackage]
316         -- basePackage is part of this list entirely because of 
317         -- wired-in names in GHCi.  See the notes on wired-in names in
318         -- Linker.linkExpr.  By putting the base backage in initPackageList
319         -- we make sure that it'll always by linked.
320
321
322 -- add a package requested from the command-line
323 addPackage :: String -> IO ()
324 addPackage package = do
325   pkg_details <- getPackageConfigMap
326   ps  <- readIORef v_ExplicitPackages
327   ps' <- add_package pkg_details ps (mkPackageName package)
328                 -- Throws an exception if it fails
329   writeIORef v_ExplicitPackages ps'
330
331 -- internal helper
332 add_package :: PackageConfigMap -> [PackageName]
333             -> PackageName -> IO [PackageName]
334 add_package pkg_details ps p    
335   | p `elem` ps -- Check if we've already added this package
336   = return ps
337   | Just details <- lookupPkg pkg_details p
338   -- Add the package's dependents also
339   = do ps' <- foldM (add_package pkg_details) ps (packageDependents details)
340        return (p : ps')
341   | otherwise
342   = throwDyn (CmdLineError ("unknown package name: " ++ packageNameString p))
343
344
345 -- -----------------------------------------------------------------------------
346 -- Extracting information from the packages in scope
347
348 -- Many of these functions take a list of packages: in those cases,
349 -- the list is expected to contain the "dependent packages",
350 -- i.e. those packages that were found to be depended on by the
351 -- current module/program.  These can be auto or non-auto packages, it
352 -- doesn't really matter.  The list is always combined with the list
353 -- of explicit (command-line) packages to determine which packages to
354 -- use.
355
356 getPackageImportPath :: IO [String]
357 getPackageImportPath = do
358   ps <- getExplicitAndAutoPackageConfigs
359                   -- import dirs are always derived from the 'auto' 
360                   -- packages as well as the explicit ones
361   return (nub (filter notNull (concatMap import_dirs ps)))
362
363 getPackageIncludePath :: [PackageName] -> IO [String]
364 getPackageIncludePath pkgs = do
365   ps <- getExplicitPackagesAnd pkgs
366   return (nub (filter notNull (concatMap include_dirs ps)))
367
368         -- includes are in reverse dependency order (i.e. rts first)
369 getPackageCIncludes :: [PackageConfig] -> IO [String]
370 getPackageCIncludes pkg_configs = do
371   return (reverse (nub (filter notNull (concatMap c_includes pkg_configs))))
372
373 getPackageLibraryPath :: [PackageName] -> IO [String]
374 getPackageLibraryPath pkgs = do 
375   ps <- getExplicitPackagesAnd pkgs
376   return (nub (filter notNull (concatMap library_dirs ps)))
377
378 getPackageLinkOpts :: [PackageName] -> IO [String]
379 getPackageLinkOpts pkgs = do
380   ps <- getExplicitPackagesAnd pkgs
381   tag <- readIORef v_Build_tag
382   rts_tag <- readIORef v_RTS_Build_tag
383   static <- readIORef v_Static
384   let 
385         imp        = if static then "" else "_imp"
386         libs p     = map addSuffix (hACK (hs_libraries p)) ++ extra_libraries p
387         imp_libs p = map (++imp) (libs p)
388         all_opts p = map ("-l" ++) (imp_libs p) ++ extra_ld_opts p
389
390         suffix     = if null tag then "" else  '_':tag
391         rts_suffix = if null rts_tag then "" else  '_':rts_tag
392
393         addSuffix rts@"HSrts"    = rts       ++ rts_suffix
394         addSuffix other_lib      = other_lib ++ suffix
395
396   return (concat (map all_opts ps))
397   where
398
399      -- This is a totally horrible (temporary) hack, for Win32.  Problem is
400      -- that package.conf for Win32 says that the main prelude lib is 
401      -- split into HSbase1, HSbase2 and HSbase3, which is needed due to a bug
402      -- in the GNU linker (PEi386 backend). However, we still only
403      -- have HSbase.a for static linking, not HSbase{1,2,3}.a
404      -- getPackageLibraries is called to find the .a's to add to the static
405      -- link line.  On Win32, this hACK detects HSbase{1,2,3} and 
406      -- replaces them with HSbase, so static linking still works.
407      -- Libraries needed for dynamic (GHCi) linking are discovered via
408      -- different route (in InteractiveUI.linkPackage).
409      -- See driver/PackageSrc.hs for the HSbase1/HSbase2 split definition.
410      -- THIS IS A STRICTLY TEMPORARY HACK (famous last words ...)
411      -- JRS 04 Sept 01: Same appalling hack for HSwin32[1,2]
412      -- KAA 29 Mar  02: Same appalling hack for HSobjectio[1,2,3,4]
413      hACK libs
414 #      if !defined(mingw32_TARGET_OS) && !defined(cygwin32_TARGET_OS)
415        = libs
416 #      else
417        = if   "HSbase1" `elem` libs && "HSbase2" `elem` libs && "HSbase3" `elem` libs
418          then "HSbase" : filter (not.(isPrefixOf "HSbase")) libs
419          else
420          if   "HSwin321" `elem` libs && "HSwin322" `elem` libs
421          then "HSwin32" : filter (not.(isPrefixOf "HSwin32")) libs
422          else 
423          if   "HSobjectio1" `elem` libs && "HSobjectio2" `elem` libs && "HSobjectio3" `elem` libs && "HSobjectio4" `elem` libs
424          then "HSobjectio" : filter (not.(isPrefixOf "HSobjectio")) libs
425          else 
426          libs
427 #      endif
428
429 getPackageExtraGhcOpts :: IO [String]
430 getPackageExtraGhcOpts = do
431   ps <- getExplicitAndAutoPackageConfigs
432   return (concatMap extra_ghc_opts ps)
433
434 getPackageExtraCcOpts :: [PackageName] -> IO [String]
435 getPackageExtraCcOpts pkgs = do
436   ps <- getExplicitPackagesAnd pkgs
437   return (concatMap extra_cc_opts ps)
438
439 #ifdef darwin_TARGET_OS
440 getPackageFrameworkPath  :: [PackageName] -> IO [String]
441 getPackageFrameworkPath pkgs = do
442   ps <- getExplicitPackagesAnd pkgs
443   return (nub (filter notNull (concatMap framework_dirs ps)))
444
445 getPackageFrameworks  :: [PackageName] -> IO [String]
446 getPackageFrameworks pkgs = do
447   ps <- getExplicitPackagesAnd pkgs
448   return (concatMap extra_frameworks ps)
449 #endif
450
451 -- -----------------------------------------------------------------------------
452 -- Package Utils
453
454 getExplicitPackagesAnd :: [PackageName] -> IO [PackageConfig]
455 getExplicitPackagesAnd pkg_names = do
456   pkg_map <- getPackageConfigMap
457   expl <- readIORef v_ExplicitPackages
458   all_pkgs <- foldM (add_package pkg_map) expl pkg_names
459   getPackageDetails all_pkgs
460
461 -- return all packages, including both the auto packages and the explicit ones
462 getExplicitAndAutoPackageConfigs :: IO [PackageConfig]
463 getExplicitAndAutoPackageConfigs = do
464   pkg_map <- getPackageConfigMap
465   let auto_packages = [ mkPackageName (name p) | p <- eltsUFM pkg_map, auto p ]
466   getExplicitPackagesAnd auto_packages
467
468 -----------------------------------------------------------------------------
469 -- Ways
470
471 -- The central concept of a "way" is that all objects in a given
472 -- program must be compiled in the same "way".  Certain options change
473 -- parameters of the virtual machine, eg. profiling adds an extra word
474 -- to the object header, so profiling objects cannot be linked with
475 -- non-profiling objects.
476
477 -- After parsing the command-line options, we determine which "way" we
478 -- are building - this might be a combination way, eg. profiling+ticky-ticky.
479
480 -- We then find the "build-tag" associated with this way, and this
481 -- becomes the suffix used to find .hi files and libraries used in
482 -- this compilation.
483
484 GLOBAL_VAR(v_Build_tag, "", String)
485
486 -- The RTS has its own build tag, because there are some ways that
487 -- affect the RTS only.
488 GLOBAL_VAR(v_RTS_Build_tag, "", String)
489
490 data WayName
491   = WayThreaded
492   | WayDebug
493   | WayProf
494   | WayUnreg
495   | WayTicky
496   | WayPar
497   | WayGran
498   | WaySMP
499   | WayNDP
500   | WayUser_a
501   | WayUser_b
502   | WayUser_c
503   | WayUser_d
504   | WayUser_e
505   | WayUser_f
506   | WayUser_g
507   | WayUser_h
508   | WayUser_i
509   | WayUser_j
510   | WayUser_k
511   | WayUser_l
512   | WayUser_m
513   | WayUser_n
514   | WayUser_o
515   | WayUser_A
516   | WayUser_B
517   deriving (Eq,Ord)
518
519 GLOBAL_VAR(v_Ways, [] ,[WayName])
520
521 allowed_combination way = and [ x `allowedWith` y 
522                               | x <- way, y <- way, x < y ]
523   where
524         -- debug is allowed with everything
525         _ `allowedWith` WayDebug                = True
526         WayDebug `allowedWith` _                = True
527
528         WayProf `allowedWith` WayThreaded       = True
529         WayProf `allowedWith` WayUnreg          = True
530         WayProf `allowedWith` WaySMP            = True
531         WayProf `allowedWith` WayNDP            = True
532
533
534 findBuildTag :: IO [String]  -- new options
535 findBuildTag = do
536   way_names <- readIORef v_Ways
537   let ws = sort way_names
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 stuff   = map lkupWay ws
544                tag     = concat [ wayTag w | w <- stuff, not (wayRTSOnly w) ]
545                rts_tag = concat (map wayTag stuff)
546                flags   = map wayOpts stuff
547            in do
548            writeIORef v_Build_tag tag
549            writeIORef v_RTS_Build_tag rts_tag
550            return (concat flags)
551
552 lkupWay w = 
553    case lookup w way_details of
554         Nothing -> error "findBuildTag"
555         Just details -> details
556
557 data Way = Way {
558   wayTag     :: String,
559   wayRTSOnly :: Bool,
560   wayName    :: String,
561   wayOpts    :: [String]
562   }
563
564 way_details :: [ (WayName, Way) ]
565 way_details =
566   [ (WayThreaded, Way "thr" True "Threaded" [
567 #if defined(freebsd_TARGET_OS)
568         , "-optc-pthread"
569 #endif
570         ] ),
571
572     (WayDebug, Way "debug" True "Debug" [] ),
573
574     (WayProf, Way  "p" False "Profiling"
575         [ "-fscc-profiling"
576         , "-DPROFILING"
577         , "-optc-DPROFILING"
578         , "-fvia-C" ]),
579
580     (WayTicky, Way  "t" False "Ticky-ticky Profiling"  
581         [ "-fticky-ticky"
582         , "-DTICKY_TICKY"
583         , "-optc-DTICKY_TICKY"
584         , "-fvia-C" ]),
585
586     (WayUnreg, Way  "u" False "Unregisterised" 
587         unregFlags ),
588
589     -- optl's below to tell linker where to find the PVM library -- HWL
590     (WayPar, Way  "mp" False "Parallel" 
591         [ "-fparallel"
592         , "-D__PARALLEL_HASKELL__"
593         , "-optc-DPAR"
594         , "-package concurrent"
595         , "-optc-w"
596         , "-optl-L${PVM_ROOT}/lib/${PVM_ARCH}"
597         , "-optl-lpvm3"
598         , "-optl-lgpvm3"
599         , "-fvia-C" ]),
600
601     -- at the moment we only change the RTS and could share compiler and libs!
602     (WayPar, Way  "mt" False "Parallel ticky profiling" 
603         [ "-fparallel"
604         , "-D__PARALLEL_HASKELL__"
605         , "-optc-DPAR"
606         , "-optc-DPAR_TICKY"
607         , "-package concurrent"
608         , "-optc-w"
609         , "-optl-L${PVM_ROOT}/lib/${PVM_ARCH}"
610         , "-optl-lpvm3"
611         , "-optl-lgpvm3"
612         , "-fvia-C" ]),
613
614     (WayPar, Way  "md" False "Distributed" 
615         [ "-fparallel"
616         , "-D__PARALLEL_HASKELL__"
617         , "-D__DISTRIBUTED_HASKELL__"
618         , "-optc-DPAR"
619         , "-optc-DDIST"
620         , "-package concurrent"
621         , "-optc-w"
622         , "-optl-L${PVM_ROOT}/lib/${PVM_ARCH}"
623         , "-optl-lpvm3"
624         , "-optl-lgpvm3"
625         , "-fvia-C" ]),
626
627     (WayGran, Way  "mg" False "GranSim"
628         [ "-fgransim"
629         , "-D__GRANSIM__"
630         , "-optc-DGRAN"
631         , "-package concurrent"
632         , "-fvia-C" ]),
633
634     (WaySMP, Way  "s" False "SMP"
635         [ "-fsmp"
636         , "-optc-pthread"
637 #ifndef freebsd_TARGET_OS
638         , "-optl-pthread"
639 #endif
640         , "-optc-DSMP"
641         , "-fvia-C" ]),
642
643     (WayNDP, Way  "ndp" False "Nested data parallelism"
644         [ "-fparr"
645         , "-fflatten"]),
646
647     (WayUser_a,  Way  "a"  False "User way 'a'"  ["$WAY_a_REAL_OPTS"]), 
648     (WayUser_b,  Way  "b"  False "User way 'b'"  ["$WAY_b_REAL_OPTS"]), 
649     (WayUser_c,  Way  "c"  False "User way 'c'"  ["$WAY_c_REAL_OPTS"]), 
650     (WayUser_d,  Way  "d"  False "User way 'd'"  ["$WAY_d_REAL_OPTS"]), 
651     (WayUser_e,  Way  "e"  False "User way 'e'"  ["$WAY_e_REAL_OPTS"]), 
652     (WayUser_f,  Way  "f"  False "User way 'f'"  ["$WAY_f_REAL_OPTS"]), 
653     (WayUser_g,  Way  "g"  False "User way 'g'"  ["$WAY_g_REAL_OPTS"]), 
654     (WayUser_h,  Way  "h"  False "User way 'h'"  ["$WAY_h_REAL_OPTS"]), 
655     (WayUser_i,  Way  "i"  False "User way 'i'"  ["$WAY_i_REAL_OPTS"]), 
656     (WayUser_j,  Way  "j"  False "User way 'j'"  ["$WAY_j_REAL_OPTS"]), 
657     (WayUser_k,  Way  "k"  False "User way 'k'"  ["$WAY_k_REAL_OPTS"]), 
658     (WayUser_l,  Way  "l"  False "User way 'l'"  ["$WAY_l_REAL_OPTS"]), 
659     (WayUser_m,  Way  "m"  False "User way 'm'"  ["$WAY_m_REAL_OPTS"]), 
660     (WayUser_n,  Way  "n"  False "User way 'n'"  ["$WAY_n_REAL_OPTS"]), 
661     (WayUser_o,  Way  "o"  False "User way 'o'"  ["$WAY_o_REAL_OPTS"]), 
662     (WayUser_A,  Way  "A"  False "User way 'A'"  ["$WAY_A_REAL_OPTS"]), 
663     (WayUser_B,  Way  "B"  False "User way 'B'"  ["$WAY_B_REAL_OPTS"]) 
664   ]
665
666 unregFlags = 
667    [ "-optc-DNO_REGS"
668    , "-optc-DUSE_MINIINTERPRETER"
669    , "-fno-asm-mangling"
670    , "-funregisterised"
671    , "-fvia-C" ]
672
673 -----------------------------------------------------------------------------
674 -- Options for particular phases
675
676 GLOBAL_VAR(v_Opt_dep,    [], [String])
677 GLOBAL_VAR(v_Anti_opt_C, [], [String])
678 GLOBAL_VAR(v_Opt_C,      [], [String])
679 GLOBAL_VAR(v_Opt_l,      [], [String])
680 GLOBAL_VAR(v_Opt_dll,    [], [String])
681
682 getStaticOpts :: IORef [String] -> IO [String]
683 getStaticOpts ref = readIORef ref >>= return . reverse