[project @ 2003-07-11 08:53:25 by simonpj]
[ghc-hetmet.git] / ghc / compiler / coreSyn / MkExternalCore.lhs
1 %
2 % (c) The University of Glasgow 2001
3 %
4 \begin{code}
5
6 module MkExternalCore (
7         emitExternalCore
8 ) where
9
10 #include "HsVersions.h"
11
12 import qualified ExternalCore as C
13 import Char
14 import Module
15 import CoreSyn
16 import HscTypes 
17 import TyCon
18 import Class
19 import TypeRep
20 import Type
21 import DataCon  ( DataCon, dataConExistentialTyVars, dataConRepArgTys, 
22                   dataConName, dataConWrapId_maybe )
23 import CoreSyn
24 import Var
25 import IdInfo
26 import Id       ( idUnfolding )
27 import CoreTidy ( tidyExpr )
28 import VarEnv   ( emptyTidyEnv )
29 import Literal
30 import Name
31 import CostCentre
32 import Outputable
33 import ForeignCall
34 import PprExternalCore  
35 import CmdLineOpts
36 import Maybes   ( orElse, catMaybes )
37 import IO
38 import FastString
39
40 emitExternalCore :: DynFlags -> ModGuts -> IO ()
41 emitExternalCore dflags mod_impl
42  | opt_EmitExternalCore 
43  = (do handle <- openFile corename WriteMode
44        hPutStrLn handle (show (mkExternalCore mod_impl))      
45        hClose handle)
46    `catch` (\err -> pprPanic "Failed to open or write external core output file" 
47                              (text corename))
48    where corename = extCoreName dflags
49 emitExternalCore _ _
50  | otherwise
51  = return ()
52
53
54 mkExternalCore :: ModGuts -> C.Module
55 -- The ModGuts has been tidied, but the implicit bindings have
56 -- not been injected, so we have to add them manually here
57 -- We don't include the strange data-con *workers* because they are
58 -- implicit in the data type declaration itself
59 mkExternalCore (ModGuts {mg_module=this_mod, mg_types = type_env, mg_binds = binds})
60   = C.Module mname tdefs (map make_vdef all_binds)
61   where
62     mname  = make_mid this_mod
63     tdefs  = foldr collect_tdefs [] tycons
64
65     all_binds  = implicit_con_wrappers ++ other_implicit_binds ++ binds
66                 -- Put the constructor wrappers first, because
67                 -- other implicit bindings (notably the fromT functions arising 
68                 -- from generics) use the constructor wrappers.
69
70     tycons = map classTyCon (typeEnvClasses type_env) ++ typeEnvTyCons type_env
71
72     implicit_con_wrappers = map get_defn (concatMap implicit_con_ids   (typeEnvElts type_env))
73     other_implicit_binds  = map get_defn (concatMap other_implicit_ids (typeEnvElts type_env))
74
75 implicit_con_ids :: TyThing -> [Id]
76 implicit_con_ids (ATyCon tc) | isAlgTyCon tc = catMaybes (map dataConWrapId_maybe (tyConDataCons tc))
77 implicit_con_ids other                       = []
78
79 other_implicit_ids :: TyThing -> [Id]
80 other_implicit_ids (ATyCon tc) = tyConSelIds tc ++ tyConGenIds tc
81 other_implicit_ids (AClass cl) = classSelIds cl
82 other_implicit_ids other       = []
83
84 get_defn :: Id -> CoreBind
85 get_defn id = NonRec id rhs
86             where
87               rhs  = tidyExpr emptyTidyEnv body 
88               body = unfoldingTemplate (idUnfolding id)
89         -- Don't forget to tidy the body !  Otherwise you get silly things like
90         --      \ tpl -> case tpl of tpl -> (tpl,tpl) -> tpl
91         -- Maybe we should inject these bindings during CoreTidy?
92
93 collect_tdefs :: TyCon -> [C.Tdef] -> [C.Tdef]
94 collect_tdefs tcon tdefs 
95   | isAlgTyCon tcon = tdef: tdefs
96   where
97     tdef | isNewTyCon tcon = 
98                 C.Newtype (make_con_qid (tyConName tcon)) (map make_tbind tyvars) repclause 
99          | otherwise = 
100                 C.Data (make_con_qid (tyConName tcon)) (map make_tbind tyvars) (map make_cdef (tyConDataCons tcon)) 
101          where repclause | isRecursiveTyCon tcon = Nothing
102                          | otherwise = Just (make_ty rep)
103                                            where (_, rep) = newTyConRep tcon
104     tyvars = tyConTyVars tcon
105
106 collect_tdefs _ tdefs = tdefs
107
108
109 make_cdef :: DataCon -> C.Cdef
110 make_cdef dcon =  C.Constr dcon_name existentials tys
111   where 
112     dcon_name    = make_con_qid (dataConName dcon)
113     existentials = map make_tbind ex_tyvars
114     ex_tyvars    = dataConExistentialTyVars dcon
115     tys          = map make_ty (dataConRepArgTys dcon)
116
117 make_tbind :: TyVar -> C.Tbind
118 make_tbind tv = (make_var_id (tyVarName tv), make_kind (tyVarKind tv))
119     
120 make_vbind :: Var -> C.Vbind
121 make_vbind v = (make_var_id  (Var.varName v), make_ty (varType v))
122
123 make_vdef :: CoreBind -> C.Vdefg
124 make_vdef b = 
125   case b of
126     NonRec v e -> C.Nonrec (f (v,e))
127     Rec ves -> C.Rec (map f ves)
128   where f (v,e) = (make_var_qid (Var.varName v), make_ty (varType v),make_exp e)
129
130 make_exp :: CoreExpr -> C.Exp
131 make_exp (Var v) =  
132   case globalIdDetails v of
133      -- a DataConId represents the Id of a worker, which is a varName. -- sof 4/02
134 --    DataConId _ -> C.Dcon (make_con_qid (Var.varName v))
135     FCallId (CCall (CCallSpec (StaticTarget nm) _ _)) -> C.External (unpackFS nm) (make_ty (varType v))
136     FCallId _ -> error "MkExternalCore died: can't handle non-static-C foreign call"
137     _ -> C.Var (make_var_qid (Var.varName v))
138 make_exp (Lit (l@(MachLabel s _))) = C.External (unpackFS s) (make_ty (literalType l))
139 make_exp (Lit l) = C.Lit (make_lit l)
140 make_exp (App e (Type t)) = C.Appt (make_exp e) (make_ty t)
141 make_exp (App e1 e2) = C.App (make_exp e1) (make_exp e2)
142 make_exp (Lam v e) | isTyVar v = C.Lam (C.Tb (make_tbind v)) (make_exp e)
143 make_exp (Lam v e) | otherwise = C.Lam (C.Vb (make_vbind v)) (make_exp e)
144 make_exp (Let b e) = C.Let (make_vdef b) (make_exp e)
145 make_exp (Case e v alts) = C.Case (make_exp e) (make_vbind v) (map make_alt alts)
146 make_exp (Note (SCC cc) e) = C.Note "SCC"  (make_exp e) -- temporary
147 make_exp (Note (Coerce t_to t_from) e) = C.Coerce (make_ty t_to) (make_exp e)
148 make_exp (Note InlineCall e) = C.Note "InlineCall" (make_exp e)
149 make_exp (Note (CoreNote s) e) = C.Note s (make_exp e)  -- hdaume: core annotations
150 make_exp (Note InlineMe e) = C.Note "InlineMe" (make_exp e)
151 make_exp _ = error "MkExternalCore died: make_exp"
152
153 make_alt :: CoreAlt -> C.Alt
154 make_alt (DataAlt dcon, vs, e) = 
155     C.Acon (make_con_qid (dataConName dcon))
156            (map make_tbind tbs)
157            (map make_vbind vbs)
158            (make_exp e)    
159         where (tbs,vbs) = span isTyVar vs
160 make_alt (LitAlt l,_,e) = C.Alit (make_lit l) (make_exp e)
161 make_alt (DEFAULT,[],e) = C.Adefault (make_exp e)
162
163 make_lit :: Literal -> C.Lit
164 make_lit l = 
165   case l of
166     MachChar i | i <= 0xff -> C.Lchar (chr i) t
167     MachChar i | otherwise -> C.Lint (toEnum i) t
168         -- For big characters, use an integer literal with a character type sig
169     MachStr s -> C.Lstring (unpackFS s) t
170     MachNullAddr -> C.Lint 0 t
171     MachInt i -> C.Lint i t
172     MachInt64 i -> C.Lint i t
173     MachWord i -> C.Lint i t
174     MachWord64 i -> C.Lint i t
175     MachFloat r -> C.Lrational r t
176     MachDouble r -> C.Lrational r t
177     _ -> error "MkExternalCore died: make_lit"
178   where 
179     t = make_ty (literalType l)
180
181 make_ty :: Type -> C.Ty
182 make_ty (TyVarTy tv)             = C.Tvar (make_var_id (tyVarName tv))
183 make_ty (AppTy t1 t2)            = C.Tapp (make_ty t1) (make_ty t2)
184 make_ty (FunTy t1 t2)            = make_ty (TyConApp funTyCon [t1,t2])
185 make_ty (ForAllTy tv t)          = C.Tforall (make_tbind tv) (make_ty t)
186 make_ty (TyConApp tc ts)         = foldl C.Tapp (C.Tcon (make_con_qid (tyConName tc))) 
187                                          (map make_ty ts)
188 -- The special case for newtypes says "do not expand newtypes".
189 -- Reason: sourceTypeRep does substitution and, while substitution deals
190 --         correctly with name capture, it's only correct if you see the uniques!
191 --         If you just see occurrence names, name capture may occur.
192 -- Example: newtype A a = A (forall b. b -> a)
193 --          test :: forall q b. q -> A b
194 --          test _ = undefined
195 --      Here the 'a' gets substituted by 'b', which is captured.
196 -- Another solution would be to expand newtypes before tidying; but that would
197 -- expose the representation in interface files, which definitely isn't right.
198 -- Maybe CoreTidy should know whether to expand newtypes or not?
199
200 make_ty (SourceTy (NType tc ts)) = foldl C.Tapp (C.Tcon (make_con_qid (tyConName tc))) 
201                                          (map make_ty ts)
202
203 make_ty (SourceTy p)             = make_ty (sourceTypeRep p)
204 make_ty (NoteTy _ t)             = make_ty t
205
206
207
208 make_kind :: Kind -> C.Kind
209 make_kind (FunTy k1 k2) = C.Karrow (make_kind k1) (make_kind k2)
210 make_kind k | k `eqKind` liftedTypeKind = C.Klifted
211 make_kind k | k `eqKind` unliftedTypeKind = C.Kunlifted
212 make_kind k | k `eqKind` openTypeKind = C.Kopen
213 make_kind _ = error "MkExternalCore died: make_kind"
214
215 {- Id generation. -}
216
217 {- Use encoded strings.
218    Also, adjust casing to work around some badly-chosen internal names. -}
219 make_id :: Bool -> Name -> C.Id
220 make_id is_var nm = (occNameString . nameOccName) nm
221
222 {-      SIMON thinks this stuff isn't necessary
223 make_id is_var nm = 
224   case n of
225     'Z':cs | is_var -> 'z':cs 
226     'z':cs | not is_var -> 'Z':cs 
227     c:cs | isUpper c && is_var -> 'z':'d':n
228     c:cs | isLower c && (not is_var) -> 'Z':'d':n
229     _ -> n
230   where n = (occNameString . nameOccName) nm
231 -}
232
233 make_var_id :: Name -> C.Id
234 make_var_id = make_id True
235
236 make_mid :: Module -> C.Id
237 make_mid = moduleNameString . moduleName
238
239 make_qid :: Bool -> Name -> C.Qual C.Id
240 make_qid is_var n = (mname,make_id is_var n)
241     where mname = 
242            case nameModule_maybe n of
243             Just m -> make_mid m
244             Nothing -> "" 
245
246 make_var_qid :: Name -> C.Qual C.Id
247 make_var_qid = make_qid True
248
249 make_con_qid :: Name -> C.Qual C.Id
250 make_con_qid = make_qid False
251
252 \end{code}
253
254
255
256