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