Cabalize ext-core tools
[ghc-hetmet.git] / utils / genprimopcode / Main.hs
1 {-# OPTIONS -cpp #-}
2 ------------------------------------------------------------------
3 -- A primop-table mangling program                              --
4 ------------------------------------------------------------------
5
6 module Main where
7
8 import Parser
9 import Syntax
10
11 import Monad
12 import Char
13 import List
14 import System ( getArgs )
15 import Maybe ( catMaybes )
16
17 main :: IO ()
18 main = getArgs >>= \args ->
19        if length args /= 1 || head args `notElem` known_args
20        then error ("usage: genprimopcode command < primops.txt > ...\n"
21                    ++ "   where command is one of\n"
22                    ++ unlines (map ("            "++) known_args)
23                   )
24        else
25        do s <- getContents
26           case parse s of
27              Left err -> error ("parse error at " ++ (show err))
28              Right p_o_specs@(Info _ entries)
29                 -> seq (sanityTop p_o_specs) (
30                    case head args of
31
32                       "--data-decl" 
33                          -> putStr (gen_data_decl p_o_specs)
34
35                       "--has-side-effects" 
36                          -> putStr (gen_switch_from_attribs 
37                                        "has_side_effects" 
38                                        "primOpHasSideEffects" p_o_specs)
39
40                       "--out-of-line" 
41                          -> putStr (gen_switch_from_attribs 
42                                        "out_of_line" 
43                                        "primOpOutOfLine" p_o_specs)
44
45                       "--commutable" 
46                          -> putStr (gen_switch_from_attribs 
47                                        "commutable" 
48                                        "commutableOp" p_o_specs)
49
50                       "--needs-wrapper" 
51                          -> putStr (gen_switch_from_attribs 
52                                        "needs_wrapper" 
53                                        "primOpNeedsWrapper" p_o_specs)
54
55                       "--can-fail" 
56                          -> putStr (gen_switch_from_attribs 
57                                        "can_fail" 
58                                        "primOpCanFail" p_o_specs)
59
60                       "--strictness" 
61                          -> putStr (gen_switch_from_attribs 
62                                        "strictness" 
63                                        "primOpStrictness" p_o_specs)
64
65                       "--primop-primop-info" 
66                          -> putStr (gen_primop_info p_o_specs)
67
68                       "--primop-tag" 
69                          -> putStr (gen_primop_tag p_o_specs)
70
71                       "--primop-list" 
72                          -> putStr (gen_primop_list p_o_specs)
73
74                       "--make-haskell-wrappers" 
75                          -> putStr (gen_wrappers p_o_specs)
76                         
77                       "--make-haskell-source" 
78                          -> putStr (gen_hs_source p_o_specs)
79
80                       "--make-ext-core-source"
81                          -> putStr (gen_ext_core_source entries)
82
83                       "--make-latex-doc"
84                          -> putStr (gen_latex_doc p_o_specs)
85
86                       _ -> error "Should not happen, known_args out of sync?"
87                    )
88
89 known_args :: [String]
90 known_args 
91    = [ "--data-decl",
92        "--has-side-effects",
93        "--out-of-line",
94        "--commutable",
95        "--needs-wrapper",
96        "--can-fail",
97        "--strictness",
98        "--primop-primop-info",
99        "--primop-tag",
100        "--primop-list",
101        "--make-haskell-wrappers",
102        "--make-haskell-source",
103        "--make-ext-core-source",
104        "--make-latex-doc"
105      ]
106
107 ------------------------------------------------------------------
108 -- Code generators -----------------------------------------------
109 ------------------------------------------------------------------
110
111 gen_hs_source :: Info -> String
112 gen_hs_source (Info defaults entries) =
113            "-----------------------------------------------------------------------------\n"
114         ++ "-- |\n"
115         ++ "-- Module      :  GHC.Prim\n"
116         ++ "-- \n"
117         ++ "-- Maintainer  :  cvs-ghc@haskell.org\n"
118         ++ "-- Stability   :  internal\n"
119         ++ "-- Portability :  non-portable (GHC extensions)\n"
120         ++ "--\n"
121         ++ "-- GHC\'s primitive types and operations.\n"
122         ++ "--\n" 
123         ++ "-----------------------------------------------------------------------------\n"
124         ++ "module GHC.Prim (\n"
125         ++ unlines (map (("\t" ++) . hdr) entries)
126         ++ ") where\n\n{-\n"
127         ++ unlines (map opt defaults) ++ "-}\n"
128         ++ unlines (map ent entries) ++ "\n\n\n"
129      where opt (OptionFalse n)    = n ++ " = False"
130            opt (OptionTrue n)     = n ++ " = True"
131            opt (OptionString n v) = n ++ " = { " ++ v ++ "}"
132
133            hdr s@(Section {})                    = sec s
134            hdr (PrimOpSpec { name = n })         = wrapOp n ++ ","
135            hdr (PseudoOpSpec { name = n })       = wrapOp n ++ ","
136            hdr (PrimTypeSpec { ty = TyApp n _ }) = wrapTy n ++ ","
137            hdr (PrimTypeSpec {})                 = error "Illegal type spec"
138
139            ent   (Section {})      = ""
140            ent o@(PrimOpSpec {})   = spec o
141            ent o@(PrimTypeSpec {}) = spec o
142            ent o@(PseudoOpSpec {}) = spec o
143
144            sec s = "\n-- * " ++ escape (title s) ++ "\n"
145                         ++ (unlines $ map ("-- " ++ ) $ lines $ unlatex $ escape $ "|" ++ desc s) ++ "\n"
146
147            spec o = comm ++ decl
148              where decl = case o of
149                         PrimOpSpec { name = n, ty = t }   -> wrapOp n ++ " :: " ++ pty t
150                         PseudoOpSpec { name = n, ty = t } -> wrapOp n ++ " :: " ++ pty t
151                         PrimTypeSpec { ty = t }   -> "data " ++ pty t
152                         Section { } -> ""
153
154                    comm = case (desc o) of
155                         [] -> ""
156                         d -> "\n" ++ (unlines $ map ("-- " ++ ) $ lines $ unlatex $ escape $ "|" ++ d)
157
158                    pty (TyF t1 t2) = pbty t1 ++ " -> " ++ pty t2
159                    pty t           = pbty t
160
161                    pbty (TyApp tc ts) = tc ++ (concat (map (' ':) (map paty ts)))
162                    pbty (TyUTup ts)   = "(# " ++ (concat (intersperse "," (map pty ts))) ++ " #)"
163                    pbty t             = paty t
164
165                    paty (TyVar tv)      = tv
166                    paty t               = "(" ++ pty t ++ ")"
167
168            wrapOp nm | isAlpha (head nm) = nm
169                      | otherwise         = "(" ++ nm ++ ")"
170            wrapTy nm | isAlpha (head nm) = nm
171                      | otherwise         = "(" ++ nm ++ ")"
172            unlatex s = case s of
173                 '\\':'t':'e':'x':'t':'t':'t':'{':cs -> markup "@" "@" cs
174                 '{':'\\':'t':'t':cs -> markup "@" "@" cs
175                 '{':'\\':'i':'t':cs -> markup "/" "/" cs
176                 c : cs -> c : unlatex cs
177                 [] -> []
178            markup s t xs = s ++ mk (dropWhile isSpace xs)
179                 where mk ""        = t
180                       mk ('\n':cs) = ' ' : mk cs
181                       mk ('}':cs)  = t ++ unlatex cs
182                       mk (c:cs)    = c : mk cs
183            escape = concatMap (\c -> if c `elem` special then '\\':c:[] else c:[])
184                 where special = "/'`\"@<"
185
186 -- Generates the type environment that the stand-alone External Core tools use.
187 gen_ext_core_source :: [Entry] -> String
188 gen_ext_core_source entries =
189       "-----------------------------------------------------------------------\n"
190    ++ "-- This module is automatically generated by the GHC utility\n"
191    ++ "-- \"genprimopcode\". Do not edit!\n"
192    ++ "-----------------------------------------------------------------------\n"
193    ++ "module Language.Core.PrimEnv(primTcs, primVals, intLitTypes, ratLitTypes,"
194    ++ "\n charLitTypes, stringLitTypes) where\nimport Language.Core.Core"
195    ++ "\nimport Language.Core.Encoding\n\n"
196    ++ "primTcs :: [(Tcon, Kind)]\n"
197    ++ "primTcs = [\n"
198    ++ printList tcEnt entries 
199    ++ "   ]\n"
200    ++ "primVals :: [(Var, Ty)]\n"
201    ++ "primVals = [\n"
202    ++ printList valEnt entries
203    ++ "]\n"
204    ++ "intLitTypes :: [Ty]\n"
205    ++ "intLitTypes = [\n"
206    ++ printList tyEnt (intLitTys entries)
207    ++ "]\n"
208    ++ "ratLitTypes :: [Ty]\n"
209    ++ "ratLitTypes = [\n"
210    ++ printList tyEnt (ratLitTys entries)
211    ++ "]\n"
212    ++ "charLitTypes :: [Ty]\n"
213    ++ "charLitTypes = [\n"
214    ++ printList tyEnt (charLitTys entries)
215    ++ "]\n"
216    ++ "stringLitTypes :: [Ty]\n"
217    ++ "stringLitTypes = [\n"
218    ++ printList tyEnt (stringLitTys entries)
219    ++ "]\n\n"
220
221   where printList f = concat . intersperse ",\n" . filter (not . null) . map f   
222         tcEnt  (PrimTypeSpec {ty=t}) = 
223            case t of
224             TyApp tc args -> parens tc (tcKind tc args)
225             _             -> error ("tcEnt: type in PrimTypeSpec is not a type"
226                               ++ " constructor: " ++ show t)  
227         tcEnt  _                = ""
228         -- hack alert!
229         -- The primops.txt.pp format doesn't have enough information in it to 
230         -- print out some of the information that ext-core needs (like kinds,
231         -- and later on in this code, module names) so we special-case. An
232         -- alternative would be to refer to things indirectly and hard-wire
233         -- certain things (e.g., the kind of the Any constructor, here) into
234         -- ext-core's Prims module again.
235         tcKind "Any" _                = "Klifted"
236         tcKind tc [] | last tc == '#' = "Kunlifted"
237         tcKind tc [] | otherwise      = "Klifted"
238         -- assumes that all type arguments are lifted (are they?)
239         tcKind tc (v:as)              = "(Karrow Klifted " ++ tcKind tc as 
240                                         ++ ")"
241         valEnt (PseudoOpSpec {name=n, ty=t}) = valEntry n t
242         valEnt (PrimOpSpec {name=n, ty=t})   = valEntry n t
243         valEnt _                             = ""
244         valEntry name ty = parens name (mkForallTy (freeTvars ty) (pty ty))
245             where pty (TyF t1 t2) = mkFunTy (pty t1) (pty t2)
246                   pty (TyApp tc ts) = mkTconApp (mkTcon tc) (map pty ts)  
247                   pty (TyUTup ts)   = mkUtupleTy (map pty ts)
248                   pty (TyVar tv)    = paren $ "Tvar \"" ++ tv ++ "\""
249
250                   mkFunTy s1 s2 = "Tapp " ++ (paren ("Tapp (Tcon tcArrow)" 
251                                                ++ " " ++ paren s1))
252                                           ++ " " ++ paren s2
253                   mkTconApp tc args = foldl tapp tc args
254                   mkTcon tc = paren $ "Tcon " ++ paren (qualify True tc)
255                   mkUtupleTy args = foldl tapp (tcUTuple (length args)) args   
256                   mkForallTy [] t = t
257                   mkForallTy vs t = foldr 
258                      (\ v s -> "Tforall " ++ 
259                                (paren (quot v ++ ", " ++ vKind v)) ++ " "
260                                ++ paren s) t vs
261
262                   -- hack alert!
263                   vKind "o" = "Kopen"
264                   vKind _   = "Klifted"
265
266                   freeTvars (TyF t1 t2)   = freeTvars t1 `union` freeTvars t2
267                   freeTvars (TyApp _ tys) = freeTvarss tys
268                   freeTvars (TyVar v)     = [v]
269                   freeTvars (TyUTup tys)  = freeTvarss tys
270                   freeTvarss = nub . concatMap freeTvars
271
272                   tapp s nextArg = paren $ "Tapp " ++ s ++ " " ++ paren nextArg
273                   tcUTuple n = paren $ "Tcon " ++ paren (qualify False $ "Z" 
274                                                           ++ show n ++ "H")
275
276         tyEnt (PrimTypeSpec {ty=(TyApp tc args)}) = "   " ++ paren ("Tcon " ++
277                                                        (paren (qualify True tc)))
278         tyEnt _ = ""
279
280         -- more hacks. might be better to do this on the ext-core side,
281         -- as per earlier comment
282         qualify _ tc | tc == "ByteArr#" = qualify True "ByteArray#"
283         qualify _ tc | tc == "MutArr#" = qualify True "MutableArray#"
284         qualify _ tc | tc == "MutByteArr#" = 
285                      qualify True "MutableByteArray#"
286         qualify _ tc | tc == "Bool" = "Just boolMname" ++ ", " 
287                                                 ++ ze True tc
288         qualify _ tc | tc == "()"  = "Just baseMname" ++ ", "
289                                                 ++ ze True tc
290         qualify enc tc = "Just primMname" ++ ", " ++ (ze enc tc)
291         ze enc tc      = (if enc then "zEncodeString " else "")
292                                       ++ "\"" ++ tc ++ "\""
293
294         intLitTys = prefixes ["Int", "Word", "Addr", "Char"]
295         ratLitTys = prefixes ["Float", "Double"]
296         charLitTys = prefixes ["Char"]
297         stringLitTys = prefixes ["Addr"]
298         prefixes ps = filter (\ t ->
299                         case t of
300                           (PrimTypeSpec {ty=(TyApp tc args)}) ->
301                             any (\ p -> p `isPrefixOf` tc) ps
302                           _ -> False)
303
304         parens n ty = "      (zEncodeString \"" ++ n ++ "\", " ++ ty ++ ")"
305         paren s = "(" ++ s ++ ")"
306         quot s = "\"" ++ s ++ "\""
307
308 gen_latex_doc :: Info -> String
309 gen_latex_doc (Info defaults entries)
310    = "\\primopdefaults{" 
311          ++ mk_options defaults
312          ++ "}\n"
313      ++ (concat (map mk_entry entries))
314      where mk_entry (PrimOpSpec {cons=constr,name=n,ty=t,cat=c,desc=d,opts=o}) =
315                  "\\primopdesc{" 
316                  ++ latex_encode constr ++ "}{"
317                  ++ latex_encode n ++ "}{"
318                  ++ latex_encode (zencode n) ++ "}{"
319                  ++ latex_encode (show c) ++ "}{"
320                  ++ latex_encode (mk_source_ty t) ++ "}{"
321                  ++ latex_encode (mk_core_ty t) ++ "}{"
322                  ++ d ++ "}{"
323                  ++ mk_options o
324                  ++ "}\n"
325            mk_entry (Section {title=ti,desc=d}) =
326                  "\\primopsection{" 
327                  ++ latex_encode ti ++ "}{"
328                  ++ d ++ "}\n"
329            mk_entry (PrimTypeSpec {ty=t,desc=d,opts=o}) =
330                  "\\primtypespec{"
331                  ++ latex_encode (mk_source_ty t) ++ "}{"
332                  ++ latex_encode (mk_core_ty t) ++ "}{"
333                  ++ d ++ "}{"
334                  ++ mk_options o
335                  ++ "}\n"
336            mk_entry (PseudoOpSpec {name=n,ty=t,desc=d,opts=o}) =
337                  "\\pseudoopspec{"
338                  ++ latex_encode (zencode n) ++ "}{"
339                  ++ latex_encode (mk_source_ty t) ++ "}{"
340                  ++ latex_encode (mk_core_ty t) ++ "}{"
341                  ++ d ++ "}{"
342                  ++ mk_options o
343                  ++ "}\n"
344            mk_source_ty typ = pty typ
345              where pty (TyF t1 t2) = pbty t1 ++ " -> " ++ pty t2
346                    pty t = pbty t
347                    pbty (TyApp tc ts) = tc ++ (concat (map (' ':) (map paty ts)))
348                    pbty (TyUTup ts) = "(# " ++ (concat (intersperse "," (map pty ts))) ++ " #)"
349                    pbty t = paty t
350                    paty (TyVar tv) = tv
351                    paty t = "(" ++ pty t ++ ")"
352            
353            mk_core_ty typ = foralls ++ (pty typ)
354              where pty (TyF t1 t2) = pbty t1 ++ " -> " ++ pty t2
355                    pty t = pbty t
356                    pbty (TyApp tc ts) = (zencode tc) ++ (concat (map (' ':) (map paty ts)))
357                    pbty (TyUTup ts) = (zencode (utuplenm (length ts))) ++ (concat ((map (' ':) (map paty ts))))
358                    pbty t = paty t
359                    paty (TyVar tv) = zencode tv
360                    paty (TyApp tc []) = zencode tc
361                    paty t = "(" ++ pty t ++ ")"
362                    utuplenm 1 = "(# #)"
363                    utuplenm n = "(#" ++ (replicate (n-1) ',') ++ "#)"
364                    foralls = if tvars == [] then "" else "%forall " ++ (tbinds tvars)
365                    tvars = tvars_of typ
366                    tbinds [] = ". " 
367                    tbinds ("o":tbs) = "(o::?) " ++ (tbinds tbs)
368                    tbinds (tv:tbs) = tv ++ " " ++ (tbinds tbs)
369            tvars_of (TyF t1 t2) = tvars_of t1 `union` tvars_of t2
370            tvars_of (TyApp _ ts) = foldl union [] (map tvars_of ts)
371            tvars_of (TyUTup ts) = foldr union [] (map tvars_of ts)
372            tvars_of (TyVar tv) = [tv]
373            
374            mk_options o =
375              "\\primoptions{"
376               ++ mk_has_side_effects o ++ "}{"
377               ++ mk_out_of_line o ++ "}{"
378               ++ mk_commutable o ++ "}{"
379               ++ mk_needs_wrapper o ++ "}{"
380               ++ mk_can_fail o ++ "}{"
381               ++ latex_encode (mk_strictness o) ++ "}{"
382               ++ "}"
383
384            mk_has_side_effects o = mk_bool_opt o "has_side_effects" "Has side effects." "Has no side effects."
385            mk_out_of_line o = mk_bool_opt o "out_of_line" "Implemented out of line." "Implemented in line."
386            mk_commutable o = mk_bool_opt o "commutable" "Commutable." "Not commutable."
387            mk_needs_wrapper o = mk_bool_opt o "needs_wrapper" "Needs wrapper." "Needs no wrapper."
388            mk_can_fail o = mk_bool_opt o "can_fail" "Can fail." "Cannot fail."
389
390            mk_bool_opt o opt_name if_true if_false =
391              case lookup_attrib opt_name o of
392                Just (OptionTrue _) -> if_true
393                Just (OptionFalse _) -> if_false
394                Just (OptionString _ _) -> error "String value for boolean option"
395                Nothing -> ""
396            
397            mk_strictness o = 
398              case lookup_attrib "strictness" o of
399                Just (OptionString _ s) -> s  -- for now
400                Just _ -> error "Boolean value for strictness"
401                Nothing -> "" 
402
403            zencode xs =
404              case maybe_tuple xs of
405                 Just n  -> n            -- Tuples go to Z2T etc
406                 Nothing -> concat (map encode_ch xs)
407              where
408                maybe_tuple "(# #)" = Just("Z1H")
409                maybe_tuple ('(' : '#' : cs) = case count_commas (0::Int) cs of
410                                                 (n, '#' : ')' : _) -> Just ('Z' : shows (n+1) "H")
411                                                 _                  -> Nothing
412                maybe_tuple "()" = Just("Z0T")
413                maybe_tuple ('(' : cs)       = case count_commas (0::Int) cs of
414                                                 (n, ')' : _) -> Just ('Z' : shows (n+1) "T")
415                                                 _            -> Nothing
416                maybe_tuple _                 = Nothing
417                
418                count_commas :: Int -> String -> (Int, String)
419                count_commas n (',' : cs) = count_commas (n+1) cs
420                count_commas n cs          = (n,cs)
421                
422                unencodedChar :: Char -> Bool    -- True for chars that don't need encoding
423                unencodedChar 'Z' = False
424                unencodedChar 'z' = False
425                unencodedChar c   = isAlphaNum c
426                
427                encode_ch :: Char -> String
428                encode_ch c | unencodedChar c = [c]      -- Common case first
429                
430                -- Constructors
431                encode_ch '('  = "ZL"    -- Needed for things like (,), and (->)
432                encode_ch ')'  = "ZR"    -- For symmetry with (
433                encode_ch '['  = "ZM"
434                encode_ch ']'  = "ZN"
435                encode_ch ':'  = "ZC"
436                encode_ch 'Z'  = "ZZ"
437                
438                -- Variables
439                encode_ch 'z'  = "zz"
440                encode_ch '&'  = "za"
441                encode_ch '|'  = "zb"
442                encode_ch '^'  = "zc"
443                encode_ch '$'  = "zd"
444                encode_ch '='  = "ze"
445                encode_ch '>'  = "zg"
446                encode_ch '#'  = "zh"
447                encode_ch '.'  = "zi"
448                encode_ch '<'  = "zl"
449                encode_ch '-'  = "zm"
450                encode_ch '!'  = "zn"
451                encode_ch '+'  = "zp"
452                encode_ch '\'' = "zq"
453                encode_ch '\\' = "zr"
454                encode_ch '/'  = "zs"
455                encode_ch '*'  = "zt"
456                encode_ch '_'  = "zu"
457                encode_ch '%'  = "zv"
458                encode_ch c    = 'z' : shows (ord c) "U"
459                        
460            latex_encode [] = []
461            latex_encode (c:cs) | c `elem` "#$%&_^{}" = "\\" ++ c:(latex_encode cs)
462            latex_encode ('~':cs) = "\\verb!~!" ++ (latex_encode cs)
463            latex_encode ('\\':cs) = "$\\backslash$" ++ (latex_encode cs)
464            latex_encode (c:cs) = c:(latex_encode cs)
465
466 gen_wrappers :: Info -> String
467 gen_wrappers (Info _ entries)
468    = "{-# OPTIONS -fno-implicit-prelude #-}\n" 
469         -- Dependencies on Prelude must be explicit in libraries/base, but we
470         -- don't need the Prelude here so we add -fno-implicit-prelude.
471      ++ "module GHC.PrimopWrappers where\n" 
472      ++ "import qualified GHC.Prim\n" 
473      ++ unlines (map f (filter (not.dodgy) (filter is_primop entries)))
474      where
475         f spec = let args = map (\n -> "a" ++ show n) [1 .. arity (ty spec)]
476                      src_name = wrap (name spec)
477                  in "{-# NOINLINE " ++ src_name ++ " #-}\n" ++ 
478                     src_name ++ " " ++ unwords args 
479                      ++ " = (GHC.Prim." ++ name spec ++ ") " ++ unwords args
480         wrap nm | isLower (head nm) = nm
481                 | otherwise = "(" ++ nm ++ ")"
482
483         dodgy spec
484            = name spec `elem` 
485              [-- C code generator can't handle these
486               "seq#", 
487               "tagToEnum#",
488               -- not interested in parallel support
489               "par#", "parGlobal#", "parLocal#", "parAt#", 
490               "parAtAbs#", "parAtRel#", "parAtForNow#" 
491              ]
492
493 gen_primop_list :: Info -> String
494 gen_primop_list (Info _ entries)
495    = unlines (
496         [      "   [" ++ cons first       ]
497         ++
498         map (\p -> "   , " ++ cons p) rest
499         ++ 
500         [     "   ]"     ]
501      ) where (first:rest) = filter is_primop entries
502
503 gen_primop_tag :: Info -> String
504 gen_primop_tag (Info _ entries)
505    = unlines (max_def_type : max_def :
506               tagOf_type : zipWith f primop_entries [1 :: Int ..])
507      where
508         primop_entries = filter is_primop entries
509         tagOf_type = "tagOf_PrimOp :: PrimOp -> FastInt"
510         f i n = "tagOf_PrimOp " ++ cons i ++ " = _ILIT(" ++ show n ++ ")"
511         max_def_type = "maxPrimOpTag :: Int"
512         max_def      = "maxPrimOpTag = " ++ show (length primop_entries)
513
514 gen_data_decl :: Info -> String
515 gen_data_decl (Info _ entries)
516    = let conss = map cons (filter is_primop entries)
517      in  "data PrimOp\n   = " ++ head conss ++ "\n"
518          ++ unlines (map ("   | "++) (tail conss))
519
520 gen_switch_from_attribs :: String -> String -> Info -> String
521 gen_switch_from_attribs attrib_name fn_name (Info defaults entries)
522    = let defv = lookup_attrib attrib_name defaults
523          alternatives = catMaybes (map mkAlt (filter is_primop entries))
524
525          getAltRhs (OptionFalse _)    = "False"
526          getAltRhs (OptionTrue _)     = "True"
527          getAltRhs (OptionString _ s) = s
528
529          mkAlt po
530             = case lookup_attrib attrib_name (opts po) of
531                  Nothing -> Nothing
532                  Just xx -> Just (fn_name ++ " " ++ cons po ++ " = " ++ getAltRhs xx)
533
534      in
535          case defv of
536             Nothing -> error ("gen_switch_from: " ++ attrib_name)
537             Just xx 
538                -> unlines alternatives
539                   ++ fn_name ++ " _ = " ++ getAltRhs xx ++ "\n"
540
541 ------------------------------------------------------------------
542 -- Create PrimOpInfo text from PrimOpSpecs -----------------------
543 ------------------------------------------------------------------
544
545 gen_primop_info :: Info -> String
546 gen_primop_info (Info _ entries)
547    = unlines (map mkPOItext (filter is_primop entries))
548
549 mkPOItext :: Entry -> String
550 mkPOItext i = mkPOI_LHS_text i ++ mkPOI_RHS_text i
551
552 mkPOI_LHS_text :: Entry -> String
553 mkPOI_LHS_text i
554    = "primOpInfo " ++ cons i ++ " = "
555
556 mkPOI_RHS_text :: Entry -> String
557 mkPOI_RHS_text i
558    = case cat i of
559         Compare 
560            -> case ty i of
561                  TyF t1 (TyF _ _) 
562                     -> "mkCompare " ++ sl_name i ++ ppType t1
563                  _ -> error "Type error in comparison op"
564         Monadic
565            -> case ty i of
566                  TyF t1 _
567                     -> "mkMonadic " ++ sl_name i ++ ppType t1
568                  _ -> error "Type error in monadic op"
569         Dyadic
570            -> case ty i of
571                  TyF t1 (TyF _ _)
572                     -> "mkDyadic " ++ sl_name i ++ ppType t1
573                  _ -> error "Type error in dyadic op"
574         GenPrimOp
575            -> let (argTys, resTy) = flatTys (ty i)
576                   tvs = nub (tvsIn (ty i))
577               in
578                   "mkGenPrimOp " ++ sl_name i ++ " " 
579                       ++ listify (map ppTyVar tvs) ++ " "
580                       ++ listify (map ppType argTys) ++ " "
581                       ++ "(" ++ ppType resTy ++ ")"
582
583 sl_name :: Entry -> String
584 sl_name i = "(fsLit \"" ++ name i ++ "\") "
585
586 ppTyVar :: String -> String
587 ppTyVar "a" = "alphaTyVar"
588 ppTyVar "b" = "betaTyVar"
589 ppTyVar "c" = "gammaTyVar"
590 ppTyVar "s" = "deltaTyVar"
591 ppTyVar "o" = "openAlphaTyVar"
592 ppTyVar _   = error "Unknown type var"
593
594 ppType :: Ty -> String
595 ppType (TyApp "Bool"        []) = "boolTy"
596
597 ppType (TyApp "Int#"        []) = "intPrimTy"
598 ppType (TyApp "Int32#"      []) = "int32PrimTy"
599 ppType (TyApp "Int64#"      []) = "int64PrimTy"
600 ppType (TyApp "Char#"       []) = "charPrimTy"
601 ppType (TyApp "Word#"       []) = "wordPrimTy"
602 ppType (TyApp "Word32#"     []) = "word32PrimTy"
603 ppType (TyApp "Word64#"     []) = "word64PrimTy"
604 ppType (TyApp "Addr#"       []) = "addrPrimTy"
605 ppType (TyApp "Float#"      []) = "floatPrimTy"
606 ppType (TyApp "Double#"     []) = "doublePrimTy"
607 ppType (TyApp "ByteArr#"    []) = "byteArrayPrimTy"
608 ppType (TyApp "RealWorld"   []) = "realWorldTy"
609 ppType (TyApp "ThreadId#"   []) = "threadIdPrimTy"
610 ppType (TyApp "ForeignObj#" []) = "foreignObjPrimTy"
611 ppType (TyApp "BCO#"        []) = "bcoPrimTy"
612 ppType (TyApp "()"          []) = "unitTy"      -- unitTy is TysWiredIn's name for ()
613
614 ppType (TyVar "a")               = "alphaTy"
615 ppType (TyVar "b")               = "betaTy"
616 ppType (TyVar "c")               = "gammaTy"
617 ppType (TyVar "s")               = "deltaTy"
618 ppType (TyVar "o")               = "openAlphaTy"
619 ppType (TyApp "State#" [x])      = "mkStatePrimTy " ++ ppType x
620 ppType (TyApp "MutVar#" [x,y])   = "mkMutVarPrimTy " ++ ppType x 
621                                    ++ " " ++ ppType y
622 ppType (TyApp "MutArr#" [x,y])   = "mkMutableArrayPrimTy " ++ ppType x 
623                                    ++ " " ++ ppType y
624
625 ppType (TyApp "MutByteArr#" [x]) = "mkMutableByteArrayPrimTy " 
626                                    ++ ppType x
627
628 ppType (TyApp "Array#" [x])      = "mkArrayPrimTy " ++ ppType x
629
630
631 ppType (TyApp "Weak#"  [x])      = "mkWeakPrimTy " ++ ppType x
632 ppType (TyApp "StablePtr#"  [x])      = "mkStablePtrPrimTy " ++ ppType x
633 ppType (TyApp "StableName#"  [x])      = "mkStableNamePrimTy " ++ ppType x
634
635 ppType (TyApp "MVar#" [x,y])     = "mkMVarPrimTy " ++ ppType x 
636                                    ++ " " ++ ppType y
637 ppType (TyApp "TVar#" [x,y])     = "mkTVarPrimTy " ++ ppType x 
638                                    ++ " " ++ ppType y
639 ppType (TyUTup ts)               = "(mkTupleTy Unboxed " ++ show (length ts)
640                                    ++ " "
641                                    ++ listify (map ppType ts) ++ ")"
642
643 ppType (TyF s d) = "(mkFunTy (" ++ ppType s ++ ") (" ++ ppType d ++ "))"
644
645 ppType other
646    = error ("ppType: can't handle: " ++ show other ++ "\n")
647
648 listify :: [String] -> String
649 listify ss = "[" ++ concat (intersperse ", " ss) ++ "]"
650
651 flatTys :: Ty -> ([Ty],Ty)
652 flatTys (TyF t1 t2) = case flatTys t2 of (ts,t) -> (t1:ts,t)
653 flatTys other       = ([],other)
654
655 tvsIn :: Ty -> [TyVar]
656 tvsIn (TyF t1 t2)    = tvsIn t1 ++ tvsIn t2
657 tvsIn (TyApp _ tys)  = concatMap tvsIn tys
658 tvsIn (TyVar tv)     = [tv]
659 tvsIn (TyUTup tys)   = concatMap tvsIn tys
660
661 arity :: Ty -> Int
662 arity = length . fst . flatTys
663