Refactoring
[ghc-hetmet.git] / compiler / vectorise / Vectorise.hs
1 module Vectorise( vectorise )
2 where
3
4 #include "HsVersions.h"
5
6 import VectMonad
7 import VectUtils
8
9 import DynFlags
10 import HscTypes
11
12 import CoreLint             ( showPass, endPass )
13 import CoreSyn
14 import CoreUtils
15 import CoreFVs
16 import TyCon
17 import Type
18 import TypeRep
19 import Var
20 import VarEnv
21 import Name                 ( mkSysTvName )
22 import NameEnv
23 import Id
24
25 import DsMonad hiding (mapAndUnzipM)
26
27 import PrelNames
28
29 import Outputable
30 import FastString
31 import Control.Monad        ( liftM, liftM2, mapAndUnzipM, zipWithM_ )
32 import Data.Maybe           ( maybeToList )
33
34 vectorise :: HscEnv -> ModGuts -> IO ModGuts
35 vectorise hsc_env guts
36   | not (Opt_Vectorise `dopt` dflags) = return guts
37   | otherwise
38   = do
39       showPass dflags "Vectorisation"
40       eps <- hscEPS hsc_env
41       let info = hptVectInfo hsc_env `plusVectInfo` eps_vect_info eps
42       Just (info', guts') <- initV hsc_env guts info (vectModule guts)
43       endPass dflags "Vectorisation" Opt_D_dump_vect (mg_binds guts')
44       return $ guts' { mg_vect_info = info' }
45   where
46     dflags = hsc_dflags hsc_env
47
48 vectModule :: ModGuts -> VM ModGuts
49 vectModule guts = return guts
50
51 -- ----------------------------------------------------------------------------
52 -- Bindings
53
54 vectBndr :: Var -> VM (Var, Var)
55 vectBndr v
56   = do
57       vty <- vectType (idType v)
58       lty <- mkPArrayType vty
59       let vv = v `Id.setIdType` vty
60           lv = v `Id.setIdType` lty
61       updLEnv (mapTo vv lv)
62       return (vv, lv)
63   where
64     mapTo vv lv env = env { local_vars = extendVarEnv (local_vars env) v (Var vv, Var lv) }
65
66 vectBndrIn :: Var -> VM a -> VM (Var, Var, a)
67 vectBndrIn v p
68   = localV
69   $ do
70       (vv, lv) <- vectBndr v
71       x <- p
72       return (vv, lv, x)
73
74 vectBndrsIn :: [Var] -> VM a -> VM ([Var], [Var], a)
75 vectBndrsIn vs p
76   = localV
77   $ do
78       (vvs, lvs) <- mapAndUnzipM vectBndr vs
79       x <- p
80       return (vvs, lvs, x)
81
82 -- ----------------------------------------------------------------------------
83 -- Expressions
84
85 replicateP :: CoreExpr -> CoreExpr -> VM CoreExpr
86 replicateP expr len
87   = do
88       dict <- paDictOfType ty
89       rep  <- builtin replicatePAVar
90       return $ mkApps (Var rep) [Type ty, dict, expr, len]
91   where
92     ty = exprType expr
93
94 capply :: (CoreExpr, CoreExpr) -> (CoreExpr, CoreExpr) -> VM (CoreExpr, CoreExpr)
95 capply (vfn, lfn) (varg, larg)
96   = do
97       apply  <- builtin applyClosureVar
98       applyP <- builtin applyClosurePVar
99       return (mkApps (Var apply)  [Type arg_ty, Type res_ty, vfn, varg],
100               mkApps (Var applyP) [Type arg_ty, Type res_ty, lfn, larg])
101   where
102     fn_ty            = exprType vfn
103     (arg_ty, res_ty) = splitClosureTy fn_ty
104
105 vectVar :: CoreExpr -> Var -> VM (CoreExpr, CoreExpr)
106 vectVar lc v = local v `orElseV` global v
107   where
108     local  v = maybeV (readLEnv $ \env -> lookupVarEnv (local_vars env) v)
109     global v = do
110                  vexpr <- maybeV (readGEnv $ \env -> lookupVarEnv (global_vars env) v)
111                  lexpr <- replicateP vexpr lc
112                  return (vexpr, lexpr)
113
114 vectPolyVar :: CoreExpr -> Var -> [Type] -> VM (CoreExpr, CoreExpr)
115 vectPolyVar lc v tys
116   = do
117       r <- readLEnv $ \env -> lookupVarEnv (local_vars env) v
118       case r of
119         Just (vexpr, lexpr) -> liftM2 (,) (mk_app vexpr) (mk_app lexpr)
120         Nothing ->
121           do
122             poly  <- maybeV (readGEnv $ \env -> lookupVarEnv (global_vars env) v)
123             vexpr <- mk_app poly
124             lexpr <- replicateP vexpr lc
125             return (vexpr, lexpr)
126   where
127     mk_app e = do
128                  vtys  <- mapM vectType tys
129                  dicts <- mapM paDictOfType vtys
130                  return $ mkApps e [arg | (vty, dict) <- zip vtys dicts
131                                         , arg <- [Type vty, dict]]
132
133 abstractOverTyVars :: [TyVar] -> ((CoreExpr -> CoreExpr) -> VM a) -> VM a
134 abstractOverTyVars tvs p
135   = do
136       mdicts <- mapM mk_dict_var tvs
137       zipWithM_ (\tv -> maybe (deleteTyVarPA tv) (extendTyVarPA tv . Var)) tvs mdicts
138       p (mk_lams mdicts)
139   where
140     mk_dict_var tv = do
141                        r <- paDictArgType tv
142                        case r of
143                          Just ty -> liftM Just (newLocalVar FSLIT("dPA") ty)
144                          Nothing -> return Nothing
145
146     mk_lams mdicts = mkLams [arg | (tv, mdict) <- zip tvs mdicts
147                                  , arg <- tv : maybeToList mdict]
148     
149
150 vectPolyExpr :: CoreExpr -> CoreExprWithFVs -> VM (CoreExpr, CoreExpr)
151 vectPolyExpr lc expr
152   = localV
153   . abstractOverTyVars tvs $ \mk_lams ->
154     -- FIXME: shadowing (tvs in lc)
155     do
156       (vmono, lmono) <- vectExpr lc mono
157       return $ (mk_lams vmono, mk_lams lmono)
158   where
159     (tvs, mono) = collectAnnTypeBinders expr  
160                 
161 vectExpr :: CoreExpr -> CoreExprWithFVs -> VM (CoreExpr, CoreExpr)
162 vectExpr lc (_, AnnType ty)
163   = do
164       vty <- vectType ty
165       return (Type vty, Type vty)
166
167 vectExpr lc (_, AnnVar v)   = vectVar lc v
168
169 vectExpr lc (_, AnnLit lit)
170   = do
171       let vexpr = Lit lit
172       lexpr <- replicateP vexpr lc
173       return (vexpr, lexpr)
174
175 vectExpr lc (_, AnnNote note expr)
176   = do
177       (vexpr, lexpr) <- vectExpr lc expr
178       return (Note note vexpr, Note note lexpr)
179
180 vectExpr lc e@(_, AnnApp _ arg)
181   | isAnnTypeArg arg
182   = vectTyAppExpr lc fn tys
183   where
184     (fn, tys) = collectAnnTypeArgs e
185
186 vectExpr lc (_, AnnApp fn arg)
187   = do
188       fn'  <- vectExpr lc fn
189       arg' <- vectExpr lc arg
190       capply fn' arg'
191
192 vectExpr lc (_, AnnCase expr bndr ty alts)
193   = panic "vectExpr: case"
194
195 vectExpr lc (_, AnnLet (AnnNonRec bndr rhs) body)
196   = do
197       (vrhs, lrhs) <- vectPolyExpr lc rhs
198       (vbndr, lbndr, (vbody, lbody)) <- vectBndrIn bndr (vectExpr lc body)
199       return (Let (NonRec vbndr vrhs) vbody,
200               Let (NonRec lbndr lrhs) lbody)
201
202 vectExpr lc (_, AnnLet (AnnRec prs) body)
203   = do
204       (vbndrs, lbndrs, (vrhss, vbody, lrhss, lbody)) <- vectBndrsIn bndrs vect
205       return (Let (Rec (zip vbndrs vrhss)) vbody,
206               Let (Rec (zip lbndrs lrhss)) lbody)
207   where
208     (bndrs, rhss) = unzip prs
209     
210     vect = do
211              (vrhss, lrhss) <- mapAndUnzipM (vectExpr lc) rhss
212              (vbody, lbody) <- vectPolyExpr lc body
213              return (vrhss, vbody, lrhss, lbody)
214
215 vectExpr lc e@(_, AnnLam bndr body)
216   | isTyVar bndr = pprPanic "vectExpr" (ppr $ deAnnotate e)
217
218 vectTyAppExpr :: CoreExpr -> CoreExprWithFVs -> [Type] -> VM (CoreExpr, CoreExpr)
219 vectTyAppExpr lc (_, AnnVar v) tys = vectPolyVar lc v tys
220 vectTyAppExpr lc e tys = pprPanic "vectTyAppExpr" (ppr $ deAnnotate e)
221
222 -- ----------------------------------------------------------------------------
223 -- Types
224
225 vectTyCon :: TyCon -> VM TyCon
226 vectTyCon tc
227   | isFunTyCon tc        = builtin closureTyCon
228   | isBoxedTupleTyCon tc = return tc
229   | isUnLiftedTyCon tc   = return tc
230   | otherwise = do
231                   r <- lookupTyCon tc
232                   case r of
233                     Just tc' -> return tc'
234
235                     -- FIXME: just for now
236                     Nothing  -> pprTrace "ccTyCon:" (ppr tc) $ return tc
237
238 vectType :: Type -> VM Type
239 vectType ty | Just ty' <- coreView ty = vectType ty
240 vectType (TyVarTy tv) = return $ TyVarTy tv
241 vectType (AppTy ty1 ty2) = liftM2 AppTy (vectType ty1) (vectType ty2)
242 vectType (TyConApp tc tys) = liftM2 TyConApp (vectTyCon tc) (mapM vectType tys)
243 vectType (FunTy ty1 ty2)   = liftM2 TyConApp (builtin closureTyCon)
244                                              (mapM vectType [ty1,ty2])
245 vectType (ForAllTy tv ty)
246   = do
247       r   <- paDictArgType tv
248       ty' <- vectType ty
249       return $ ForAllTy tv (wrap r ty')
250   where
251     wrap Nothing      = id
252     wrap (Just pa_ty) = FunTy pa_ty
253
254 vectType ty = pprPanic "vectType:" (ppr ty)
255