Track changes to package ndp (use PArray_Int# instead of UArr Int)
[ghc-hetmet.git] / compiler / vectorise / VectType.hs
1 module VectType ( vectTyCon, vectType, vectTypeEnv,
2                    PAInstance, buildPADict )
3 where
4
5 #include "HsVersions.h"
6
7 import VectMonad
8 import VectUtils
9 import VectCore
10
11 import HscTypes          ( TypeEnv, extendTypeEnvList, typeEnvTyCons )
12 import CoreSyn
13 import CoreUtils
14 import BuildTyCl
15 import DataCon
16 import TyCon
17 import Type
18 import TypeRep
19 import Coercion
20 import FamInstEnv        ( FamInst, mkLocalFamInst )
21 import InstEnv           ( Instance, mkLocalInstance, instanceDFunId )
22 import OccName
23 import MkId
24 import BasicTypes        ( StrictnessMark(..), OverlapFlag(..), boolToRecFlag )
25 import Var               ( Var )
26 import Id                ( mkWildId )
27 import Name              ( Name, getOccName )
28 import NameEnv
29 import TysWiredIn        ( unitTy, unitTyCon, intTy, intDataCon, unitDataConId )
30 import TysPrim           ( intPrimTy )
31
32 import Unique
33 import UniqFM
34 import UniqSet
35 import Digraph           ( SCC(..), stronglyConnComp )
36
37 import Outputable
38
39 import Control.Monad  ( liftM, liftM2, zipWithM, zipWithM_, mapAndUnzipM )
40 import Data.List      ( inits, tails, zipWith4, zipWith5 )
41
42 -- ----------------------------------------------------------------------------
43 -- Types
44
45 vectTyCon :: TyCon -> VM TyCon
46 vectTyCon tc
47   | isFunTyCon tc        = builtin closureTyCon
48   | isBoxedTupleTyCon tc = return tc
49   | isUnLiftedTyCon tc   = return tc
50   | otherwise = do
51                   r <- lookupTyCon tc
52                   case r of
53                     Just tc' -> return tc'
54
55                     -- FIXME: just for now
56                     Nothing  -> pprTrace "ccTyCon:" (ppr tc) $ return tc
57
58 vectType :: Type -> VM Type
59 vectType ty | Just ty' <- coreView ty = vectType ty'
60 vectType (TyVarTy tv) = return $ TyVarTy tv
61 vectType (AppTy ty1 ty2) = liftM2 AppTy (vectType ty1) (vectType ty2)
62 vectType (TyConApp tc tys) = liftM2 TyConApp (vectTyCon tc) (mapM vectType tys)
63 vectType (FunTy ty1 ty2)   = liftM2 TyConApp (builtin closureTyCon)
64                                              (mapM vectType [ty1,ty2])
65 vectType ty@(ForAllTy _ _)
66   = do
67       mdicts   <- mapM paDictArgType tyvars
68       mono_ty' <- vectType mono_ty
69       return $ tyvars `mkForAllTys` ([dict | Just dict <- mdicts] `mkFunTys` mono_ty')
70   where
71     (tyvars, mono_ty) = splitForAllTys ty
72
73 vectType ty = pprPanic "vectType:" (ppr ty)
74
75 -- ----------------------------------------------------------------------------
76 -- Type definitions
77
78 type TyConGroup = ([TyCon], UniqSet TyCon)
79
80 data PAInstance = PAInstance {
81                     painstDFun      :: Var
82                   , painstOrigTyCon :: TyCon
83                   , painstVectTyCon :: TyCon
84                   , painstArrTyCon  :: TyCon
85                   }
86
87 vectTypeEnv :: TypeEnv -> VM (TypeEnv, [FamInst], [(Var, CoreExpr)])
88 vectTypeEnv env
89   = do
90       cs <- readGEnv $ mk_map . global_tycons
91       let (conv_tcs, keep_tcs) = classifyTyCons cs groups
92           keep_dcs             = concatMap tyConDataCons keep_tcs
93       zipWithM_ defTyCon   keep_tcs keep_tcs
94       zipWithM_ defDataCon keep_dcs keep_dcs
95       new_tcs <- vectTyConDecls conv_tcs
96
97       let orig_tcs = keep_tcs ++ conv_tcs
98           vect_tcs  = keep_tcs ++ new_tcs
99
100       repr_tcs <- zipWithM buildPReprTyCon   orig_tcs vect_tcs
101       parr_tcs <- zipWithM buildPArrayTyCon orig_tcs vect_tcs
102       dfuns    <- mapM mkPADFun vect_tcs
103       defTyConPAs (zip vect_tcs dfuns)
104       binds    <- sequence (zipWith5 buildTyConBindings orig_tcs
105                                                         vect_tcs
106                                                         repr_tcs
107                                                         parr_tcs
108                                                         dfuns)
109
110       let all_new_tcs = new_tcs ++ repr_tcs ++ parr_tcs
111
112       let new_env = extendTypeEnvList env
113                        (map ATyCon all_new_tcs
114                         ++ [ADataCon dc | tc <- all_new_tcs
115                                         , dc <- tyConDataCons tc])
116
117       return (new_env, map mkLocalFamInst (repr_tcs ++ parr_tcs), concat binds)
118   where
119     tycons = typeEnvTyCons env
120     groups = tyConGroups tycons
121
122     mk_map env = listToUFM_Directly [(u, getUnique n /= u) | (u,n) <- nameEnvUniqueElts env]
123
124     keep_tc tc = let dcs = tyConDataCons tc
125                  in
126                  defTyCon tc tc >> zipWithM_ defDataCon dcs dcs
127
128
129 vectTyConDecls :: [TyCon] -> VM [TyCon]
130 vectTyConDecls tcs = fixV $ \tcs' ->
131   do
132     mapM_ (uncurry defTyCon) (lazy_zip tcs tcs')
133     mapM vectTyConDecl tcs
134   where
135     lazy_zip [] _ = []
136     lazy_zip (x:xs) ~(y:ys) = (x,y) : lazy_zip xs ys
137
138 vectTyConDecl :: TyCon -> VM TyCon
139 vectTyConDecl tc
140   = do
141       name' <- cloneName mkVectTyConOcc name
142       rhs'  <- vectAlgTyConRhs (algTyConRhs tc)
143
144       liftDs $ buildAlgTyCon name'
145                              tyvars
146                              []           -- no stupid theta
147                              rhs'
148                              rec_flag     -- FIXME: is this ok?
149                              False        -- FIXME: no generics
150                              False        -- not GADT syntax
151                              Nothing      -- not a family instance
152   where
153     name   = tyConName tc
154     tyvars = tyConTyVars tc
155     rec_flag = boolToRecFlag (isRecursiveTyCon tc)
156
157 vectAlgTyConRhs :: AlgTyConRhs -> VM AlgTyConRhs
158 vectAlgTyConRhs (DataTyCon { data_cons = data_cons
159                            , is_enum   = is_enum
160                            })
161   = do
162       data_cons' <- mapM vectDataCon data_cons
163       zipWithM_ defDataCon data_cons data_cons'
164       return $ DataTyCon { data_cons = data_cons'
165                          , is_enum   = is_enum
166                          }
167
168 vectDataCon :: DataCon -> VM DataCon
169 vectDataCon dc
170   | not . null $ dataConExTyVars dc = pprPanic "vectDataCon: existentials" (ppr dc)
171   | not . null $ dataConEqSpec   dc = pprPanic "vectDataCon: eq spec" (ppr dc)
172   | otherwise
173   = do
174       name'    <- cloneName mkVectDataConOcc name
175       tycon'   <- vectTyCon tycon
176       arg_tys  <- mapM vectType rep_arg_tys
177
178       liftDs $ buildDataCon name'
179                             False           -- not infix
180                             (map (const NotMarkedStrict) arg_tys)
181                             []              -- no labelled fields
182                             univ_tvs
183                             []              -- no existential tvs for now
184                             []              -- no eq spec for now
185                             []              -- no context
186                             arg_tys
187                             tycon'
188   where
189     name        = dataConName dc
190     univ_tvs    = dataConUnivTyVars dc
191     rep_arg_tys = dataConRepArgTys dc
192     tycon       = dataConTyCon dc
193
194 mk_fam_inst :: TyCon -> TyCon -> (TyCon, [Type])
195 mk_fam_inst fam_tc arg_tc
196   = (fam_tc, [mkTyConApp arg_tc . mkTyVarTys $ tyConTyVars arg_tc])
197
198 buildPReprTyCon :: TyCon -> TyCon -> VM TyCon
199 buildPReprTyCon orig_tc vect_tc
200   = do
201       name     <- cloneName mkPReprTyConOcc (tyConName orig_tc)
202       rhs_ty   <- buildPReprType vect_tc
203       prepr_tc <- builtin preprTyCon
204       liftDs $ buildSynTyCon name
205                              tyvars
206                              (SynonymTyCon rhs_ty)
207                              (Just $ mk_fam_inst prepr_tc vect_tc)
208   where
209     tyvars = tyConTyVars vect_tc
210
211
212 data Repr = ProdRepr {
213               prod_components   :: [Type]
214             , prod_tycon        :: TyCon
215             , prod_data_con     :: DataCon
216             , prod_arr_tycon    :: TyCon
217             , prod_arr_data_con :: DataCon
218             }
219
220           | SumRepr {
221               sum_components    :: [Repr]
222             , sum_tycon         :: TyCon
223             , sum_arr_tycon     :: TyCon
224             , sum_arr_data_con  :: DataCon
225             }
226
227 mkProduct :: [Type] -> VM Repr
228 mkProduct tys
229   = do
230       tycon <- builtin (prodTyCon arity)
231       let [data_con] = tyConDataCons tycon
232
233       (arr_tycon, _) <- parrayReprTyCon $ mkTyConApp tycon tys
234       let [arr_data_con] = tyConDataCons arr_tycon
235
236       return $ ProdRepr {
237                  prod_components   = tys
238                , prod_tycon        = tycon
239                , prod_data_con     = data_con
240                , prod_arr_tycon    = arr_tycon
241                , prod_arr_data_con = arr_data_con
242                }
243   where
244     arity = length tys
245
246 mkSum :: [Repr] -> VM Repr
247 mkSum [repr] = return repr
248 mkSum reprs
249   = do
250       tycon <- builtin (sumTyCon arity)
251       (arr_tycon, _) <- parrayReprTyCon
252                       . mkTyConApp tycon
253                       $ map reprType reprs
254
255       let [arr_data_con] = tyConDataCons arr_tycon
256
257       return $ SumRepr {
258                  sum_components   = reprs
259                , sum_tycon        = tycon
260                , sum_arr_tycon    = arr_tycon
261                , sum_arr_data_con = arr_data_con
262                }
263   where
264     arity = length reprs
265
266 reprProducts :: Repr -> [Repr]
267 reprProducts (SumRepr { sum_components = rs }) = rs
268 reprProducts repr                              = [repr]
269
270 reprType :: Repr -> Type
271 reprType (ProdRepr { prod_tycon = tycon, prod_components = tys })
272   = mkTyConApp tycon tys
273 reprType (SumRepr { sum_tycon = tycon, sum_components = reprs })
274   = mkTyConApp tycon (map reprType reprs)
275
276 arrReprType :: Repr -> VM Type
277 arrReprType = mkPArrayType . reprType
278
279 reprTys :: Repr -> [[Type]]
280 reprTys (SumRepr { sum_components = prods }) = map prodTys prods
281 reprTys prod                                 = [prodTys prod]
282
283 prodTys (ProdRepr { prod_components = tys }) = tys
284
285 reprVars :: Repr -> VM [[Var]]
286 reprVars = mapM (mapM (newLocalVar FSLIT("r"))) . reprTys
287
288 arrShapeTys :: Repr -> VM [Type]
289 arrShapeTys (SumRepr  {})
290   = do
291       int_arr <- builtin parrayIntPrimTyCon
292       return [intPrimTy, mkTyConApp int_arr [], mkTyConApp int_arr []]
293 arrShapeTys repr = return [intPrimTy]
294
295 arrShapeVars :: Repr -> VM [Var]
296 arrShapeVars repr = mapM (newLocalVar FSLIT("sh")) =<< arrShapeTys repr
297
298 replicateShape :: Repr -> CoreExpr -> CoreExpr -> VM [CoreExpr]
299 replicateShape (ProdRepr {}) len _ = return [len]
300
301 arrReprElemTys :: Repr -> [[Type]]
302 arrReprElemTys (SumRepr { sum_components = prods })
303   = map arrProdElemTys prods
304 arrReprElemTys prod@(ProdRepr {})
305   = [arrProdElemTys prod]
306
307 arrProdElemTys (ProdRepr { prod_components = [] })
308   = [unitTy]
309 arrProdElemTys (ProdRepr { prod_components = tys })
310   = tys
311
312 arrReprTys :: Repr -> VM [[Type]]
313 arrReprTys = mapM (mapM mkPArrayType) . arrReprElemTys
314
315 arrReprVars :: Repr -> VM [[Var]]
316 arrReprVars repr
317   = mapM (mapM (newLocalVar FSLIT("rs"))) =<< arrReprTys repr
318
319 mkRepr :: TyCon -> VM Repr
320 mkRepr vect_tc
321   = mkSum
322   =<< mapM mkProduct (map dataConRepArgTys $ tyConDataCons vect_tc)
323
324 buildPReprType :: TyCon -> VM Type
325 buildPReprType = liftM reprType . mkRepr
326
327 buildToPRepr :: Repr -> TyCon -> TyCon -> TyCon -> VM CoreExpr
328 buildToPRepr repr vect_tc prepr_tc _
329   = do
330       arg    <- newLocalVar FSLIT("x") arg_ty
331       result <- to_repr repr (Var arg)
332
333       return . Lam arg
334              . wrapFamInstBody prepr_tc var_tys
335              $ result
336   where
337     var_tys = mkTyVarTys $ tyConTyVars vect_tc
338     arg_ty  = mkTyConApp vect_tc var_tys
339     res_ty  = reprType repr
340
341     cons    = tyConDataCons vect_tc
342     [con]   = cons
343
344     to_repr (SumRepr { sum_components = prods
345                      , sum_tycon      = tycon })
346             expr
347       = do
348           (vars, bodies) <- mapAndUnzipM prod_alt prods
349           return . Case expr (mkWildId (exprType expr)) res_ty
350                  $ zipWith4 mk_alt cons vars (tyConDataCons tycon) bodies
351       where
352         mk_alt con vars sum_con body
353           = (DataAlt con, vars, mkConApp sum_con (ty_args ++ [body]))
354
355         ty_args = map (Type . reprType) prods
356
357     to_repr prod expr
358       = do
359           (vars, body) <- prod_alt prod
360           return $ Case expr (mkWildId (exprType expr)) res_ty
361                    [(DataAlt con, vars, body)]
362
363     prod_alt (ProdRepr { prod_components = tys
364                        , prod_data_con   = data_con })
365       = do
366           vars <- mapM (newLocalVar FSLIT("r")) tys
367           return (vars, mkConApp data_con (map Type tys ++ map Var vars))
368
369 buildFromPRepr :: Repr -> TyCon -> TyCon -> TyCon -> VM CoreExpr
370 buildFromPRepr repr vect_tc prepr_tc _
371   = do
372       arg_ty <- mkPReprType res_ty
373       arg    <- newLocalVar FSLIT("x") arg_ty
374
375       liftM (Lam arg)
376            . from_repr repr
377            $ unwrapFamInstScrut prepr_tc var_tys (Var arg)
378   where
379     var_tys = mkTyVarTys $ tyConTyVars vect_tc
380     res_ty  = mkTyConApp vect_tc var_tys
381
382     cons    = map (`mkConApp` map Type var_tys) (tyConDataCons vect_tc)
383     [con]   = cons
384
385     from_repr repr@(SumRepr { sum_components = prods
386                             , sum_tycon      = tycon })
387               expr
388       = do
389           vars   <- mapM (newLocalVar FSLIT("x")) (map reprType prods)
390           bodies <- sequence . zipWith3 from_prod prods cons
391                              $ map Var vars
392           return . Case expr (mkWildId (reprType repr)) res_ty
393                  $ zipWith3 sum_alt (tyConDataCons tycon) vars bodies
394       where
395         sum_alt data_con var body = (DataAlt data_con, [var], body)
396
397     from_repr repr expr = from_prod repr con expr
398
399     from_prod prod@(ProdRepr { prod_components = tys
400                              , prod_data_con   = data_con })
401               con
402               expr
403       = do
404           vars <- mapM (newLocalVar FSLIT("y")) tys
405           return $ Case expr (mkWildId (reprType prod)) res_ty
406                    [(DataAlt data_con, vars, con `mkVarApps` vars)]
407
408 buildToArrPRepr :: Repr -> TyCon -> TyCon -> TyCon -> VM CoreExpr
409 buildToArrPRepr repr vect_tc prepr_tc arr_tc
410   = do
411       arg_ty     <- mkPArrayType el_ty
412       arg        <- newLocalVar FSLIT("xs") arg_ty
413
414       res_ty     <- mkPArrayType (reprType repr)
415
416       shape_vars <- arrShapeVars repr
417       repr_vars  <- arrReprVars  repr
418
419       parray_co  <- mkBuiltinCo parrayTyCon
420
421       let Just repr_co = tyConFamilyCoercion_maybe prepr_tc
422           co           = mkAppCoercion parray_co
423                        . mkSymCoercion
424                        $ mkTyConApp repr_co var_tys
425
426           scrut   = unwrapFamInstScrut arr_tc var_tys (Var arg)
427
428       result <- to_repr shape_vars repr_vars repr
429
430       return . Lam arg
431              . mkCoerce co
432              $ Case scrut (mkWildId (mkTyConApp arr_tc var_tys)) res_ty
433                [(DataAlt arr_dc, shape_vars ++ concat repr_vars, result)]
434   where
435     var_tys = mkTyVarTys $ tyConTyVars vect_tc
436     el_ty   = mkTyConApp vect_tc var_tys
437
438     [arr_dc] = tyConDataCons arr_tc
439
440     to_repr shape_vars@(len_var : _)
441             repr_vars
442             (SumRepr { sum_components   = prods
443                      , sum_arr_tycon    = tycon
444                      , sum_arr_data_con = data_con })
445       = do
446           exprs <- zipWithM (to_prod len_var) repr_vars prods
447
448           return . wrapFamInstBody tycon tys
449                  . mkConApp data_con
450                  $ map Type tys ++ map Var shape_vars ++ exprs
451       where
452         tys = map reprType prods
453
454     to_repr [len_var] [repr_vars] prod = to_prod len_var repr_vars prod
455
456     to_prod len_var
457             repr_vars
458             (ProdRepr { prod_components   = tys
459                       , prod_arr_tycon    = tycon
460                       , prod_arr_data_con = data_con })
461       = return . wrapFamInstBody tycon tys
462                . mkConApp data_con
463                $ map Type tys ++ map Var (len_var : repr_vars)
464
465 buildFromArrPRepr :: Repr -> TyCon -> TyCon -> TyCon -> VM CoreExpr
466 buildFromArrPRepr repr vect_tc prepr_tc arr_tc
467   = do
468       arg_ty     <- mkPArrayType =<< mkPReprType el_ty
469       arg        <- newLocalVar FSLIT("xs") arg_ty
470
471       res_ty     <- mkPArrayType el_ty
472
473       shape_vars <- arrShapeVars repr
474       repr_vars  <- arrReprVars  repr
475
476       parray_co  <- mkBuiltinCo parrayTyCon
477
478       let Just repr_co = tyConFamilyCoercion_maybe prepr_tc
479           co           = mkAppCoercion parray_co
480                        $ mkTyConApp repr_co var_tys
481
482           scrut  = mkCoerce co (Var arg)
483
484           result = wrapFamInstBody arr_tc var_tys
485                  . mkConApp arr_dc
486                  $ map Type var_tys ++ map Var (shape_vars ++ concat repr_vars)
487
488       liftM (Lam arg)
489             (from_repr repr scrut shape_vars repr_vars res_ty result)
490   where
491     var_tys = mkTyVarTys $ tyConTyVars vect_tc
492     el_ty   = mkTyConApp vect_tc var_tys
493
494     [arr_dc] = tyConDataCons arr_tc
495
496     from_repr (SumRepr { sum_components   = prods
497                        , sum_arr_tycon    = tycon
498                        , sum_arr_data_con = data_con })
499               expr
500               shape_vars
501               repr_vars
502               res_ty
503               body
504       = do
505           vars <- mapM (newLocalVar FSLIT("xs")) =<< mapM arrReprType prods
506           result <- go prods repr_vars vars body
507
508           let scrut = unwrapFamInstScrut tycon ty_args expr
509           return . Case scrut (mkWildId scrut_ty) res_ty
510                  $ [(DataAlt data_con, shape_vars ++ vars, result)]
511       where
512         ty_args  = map reprType prods
513         scrut_ty = mkTyConApp tycon ty_args
514
515         go [] [] [] body = return body
516         go (prod : prods) (repr_vars : rss) (var : vars) body
517           = do
518               shape_vars <- mapM (newLocalVar FSLIT("s")) =<< arrShapeTys prod
519
520               from_prod prod (Var var) shape_vars repr_vars res_ty
521                 =<< go prods rss vars body
522
523     from_repr repr expr shape_vars [repr_vars] res_ty body
524       = from_prod repr expr shape_vars repr_vars res_ty body
525
526     from_prod prod@(ProdRepr { prod_components = tys
527                              , prod_arr_tycon  = tycon
528                              , prod_arr_data_con = data_con })
529               expr
530               shape_vars
531               repr_vars
532               res_ty
533               body
534       = do
535           let scrut    = unwrapFamInstScrut tycon tys expr
536               scrut_ty = mkTyConApp tycon tys
537           ty <- arrReprType prod
538
539           return $ Case scrut (mkWildId scrut_ty) res_ty
540                    [(DataAlt data_con, shape_vars ++ repr_vars, body)]
541
542 buildPRDictRepr :: Repr -> VM CoreExpr
543 buildPRDictRepr (ProdRepr {
544                    prod_components = tys
545                  , prod_tycon      = tycon
546                  })
547   = do
548       prs  <- mapM mkPR tys
549       dfun <- prDFunOfTyCon tycon
550       return $ dfun `mkTyApps` tys `mkApps` prs
551
552 buildPRDictRepr (SumRepr {
553                    sum_components = prods
554                  , sum_tycon      = tycon })
555   = do
556       prs  <- mapM buildPRDictRepr prods
557       dfun <- prDFunOfTyCon tycon
558       return $ dfun `mkTyApps` map reprType prods `mkApps` prs
559
560 buildPRDict :: Repr -> TyCon -> TyCon -> TyCon -> VM CoreExpr
561 buildPRDict repr vect_tc prepr_tc _
562   = do
563       dict  <- buildPRDictRepr repr
564
565       pr_co <- mkBuiltinCo prTyCon
566       let co = mkAppCoercion pr_co
567              . mkSymCoercion
568              $ mkTyConApp arg_co var_tys
569
570       return $ mkCoerce co dict
571   where
572     var_tys = mkTyVarTys $ tyConTyVars vect_tc
573
574     Just arg_co = tyConFamilyCoercion_maybe prepr_tc
575
576 buildPArrayTyCon :: TyCon -> TyCon -> VM TyCon
577 buildPArrayTyCon orig_tc vect_tc = fixV $ \repr_tc ->
578   do
579     name'  <- cloneName mkPArrayTyConOcc orig_name
580     rhs    <- buildPArrayTyConRhs orig_name vect_tc repr_tc
581     parray <- builtin parrayTyCon
582
583     liftDs $ buildAlgTyCon name'
584                            tyvars
585                            []          -- no stupid theta
586                            rhs
587                            rec_flag    -- FIXME: is this ok?
588                            False       -- FIXME: no generics
589                            False       -- not GADT syntax
590                            (Just $ mk_fam_inst parray vect_tc)
591   where
592     orig_name = tyConName orig_tc
593     tyvars = tyConTyVars vect_tc
594     rec_flag = boolToRecFlag (isRecursiveTyCon vect_tc)
595
596
597 buildPArrayTyConRhs :: Name -> TyCon -> TyCon -> VM AlgTyConRhs
598 buildPArrayTyConRhs orig_name vect_tc repr_tc
599   = do
600       data_con <- buildPArrayDataCon orig_name vect_tc repr_tc
601       return $ DataTyCon { data_cons = [data_con], is_enum = False }
602
603 buildPArrayDataCon :: Name -> TyCon -> TyCon -> VM DataCon
604 buildPArrayDataCon orig_name vect_tc repr_tc
605   = do
606       dc_name  <- cloneName mkPArrayDataConOcc orig_name
607       repr     <- mkRepr vect_tc
608
609       shape_tys <- arrShapeTys repr
610       repr_tys  <- arrReprTys  repr
611
612       let tys = shape_tys ++ concat repr_tys
613
614       liftDs $ buildDataCon dc_name
615                             False                  -- not infix
616                             (map (const NotMarkedStrict) tys)
617                             []                     -- no field labels
618                             (tyConTyVars vect_tc)
619                             []                     -- no existentials
620                             []                     -- no eq spec
621                             []                     -- no context
622                             tys
623                             repr_tc
624
625 mkPADFun :: TyCon -> VM Var
626 mkPADFun vect_tc
627   = newExportedVar (mkPADFunOcc $ getOccName vect_tc) =<< paDFunType vect_tc
628
629 buildTyConBindings :: TyCon -> TyCon -> TyCon -> TyCon -> Var
630                    -> VM [(Var, CoreExpr)]
631 buildTyConBindings orig_tc vect_tc prepr_tc arr_tc dfun
632   = do
633       repr  <- mkRepr vect_tc
634       vectDataConWorkers repr orig_tc vect_tc arr_tc
635       dict <- buildPADict repr vect_tc prepr_tc arr_tc dfun
636       binds <- takeHoisted
637       return $ (dfun, dict) : binds
638   where
639     orig_dcs = tyConDataCons orig_tc
640     vect_dcs = tyConDataCons vect_tc
641     [arr_dc] = tyConDataCons arr_tc
642
643     repr_tys = map dataConRepArgTys vect_dcs
644
645 vectDataConWorkers :: Repr -> TyCon -> TyCon -> TyCon
646                    -> VM ()
647 vectDataConWorkers repr orig_tc vect_tc arr_tc
648   = do
649       bs <- sequence
650           . zipWith3 def_worker  (tyConDataCons orig_tc) rep_tys
651           $ zipWith4 mk_data_con (tyConDataCons vect_tc)
652                                  rep_tys
653                                  (inits arr_tys)
654                                  (tail $ tails arr_tys)
655       mapM_ (uncurry hoistBinding) bs
656   where
657     tyvars   = tyConTyVars vect_tc
658     var_tys  = mkTyVarTys tyvars
659     ty_args  = map Type var_tys
660
661     res_ty   = mkTyConApp vect_tc var_tys
662
663     rep_tys  = map dataConRepArgTys $ tyConDataCons vect_tc
664     arr_tys  = arrReprElemTys repr
665
666     [arr_dc] = tyConDataCons arr_tc
667
668     mk_data_con con tys pre post
669       = liftM2 (,) (vect_data_con con)
670                    (lift_data_con tys (concat pre)
671                                       (concat post)
672                                       (mkDataConTag con))
673
674     vect_data_con con = return $ mkConApp con ty_args
675     lift_data_con tys pre_tys post_tys tag
676       = do
677           len  <- builtin liftingContext
678           args <- mapM (newLocalVar FSLIT("xs"))
679                   =<< mapM mkPArrayType tys
680
681           shape <- replicateShape repr (Var len) tag
682           repr  <- mk_arr_repr (Var len) (map Var args)
683
684           pre   <- mapM emptyPA pre_tys
685           post  <- mapM emptyPA post_tys
686
687           return . mkLams (len : args)
688                  . wrapFamInstBody arr_tc var_tys
689                  . mkConApp arr_dc
690                  $ ty_args ++ shape ++ pre ++ repr ++ post
691
692     mk_arr_repr len []
693       = do
694           units <- replicatePA len (Var unitDataConId)
695           return [units]
696
697     mk_arr_repr len arrs = return arrs
698
699     def_worker data_con arg_tys mk_body
700       = do
701           body <- closedV
702                 . inBind orig_worker
703                 . polyAbstract tyvars $ \abstract ->
704                   liftM (abstract . vectorised)
705                 $ buildClosures tyvars [] arg_tys res_ty mk_body
706
707           vect_worker <- cloneId mkVectOcc orig_worker (exprType body)
708           defGlobalVar orig_worker vect_worker
709           return (vect_worker, body)
710       where
711         orig_worker = dataConWorkId data_con
712
713 buildPADict :: Repr -> TyCon -> TyCon -> TyCon -> Var -> VM CoreExpr
714 buildPADict repr vect_tc prepr_tc arr_tc dfun
715   = polyAbstract tvs $ \abstract ->
716     do
717       meth_binds <- mapM (mk_method repr) paMethods
718       let meth_exprs = map (Var . fst) meth_binds
719
720       pa_dc <- builtin paDataCon
721       let dict = mkConApp pa_dc (Type (mkTyConApp vect_tc arg_tys) : meth_exprs)
722           body = Let (Rec meth_binds) dict
723       return . mkInlineMe $ abstract body
724   where
725     tvs = tyConTyVars arr_tc
726     arg_tys = mkTyVarTys tvs
727
728     mk_method repr (name, build)
729       = localV
730       $ do
731           body <- build repr vect_tc prepr_tc arr_tc
732           var  <- newLocalVar name (exprType body)
733           return (var, mkInlineMe body)
734
735 paMethods = [(FSLIT("toPRepr"),      buildToPRepr),
736              (FSLIT("fromPRepr"),    buildFromPRepr),
737              (FSLIT("toArrPRepr"),   buildToArrPRepr),
738              (FSLIT("fromArrPRepr"), buildFromArrPRepr),
739              (FSLIT("dictPRepr"),    buildPRDict)]
740
741 -- | Split the given tycons into two sets depending on whether they have to be
742 -- converted (first list) or not (second list). The first argument contains
743 -- information about the conversion status of external tycons:
744 --
745 --   * tycons which have converted versions are mapped to True
746 --   * tycons which are not changed by vectorisation are mapped to False
747 --   * tycons which can't be converted are not elements of the map
748 --
749 classifyTyCons :: UniqFM Bool -> [TyConGroup] -> ([TyCon], [TyCon])
750 classifyTyCons = classify [] []
751   where
752     classify conv keep cs [] = (conv, keep)
753     classify conv keep cs ((tcs, ds) : rs)
754       | can_convert && must_convert
755         = classify (tcs ++ conv) keep (cs `addListToUFM` [(tc,True) | tc <- tcs]) rs
756       | can_convert
757         = classify conv (tcs ++ keep) (cs `addListToUFM` [(tc,False) | tc <- tcs]) rs
758       | otherwise
759         = classify conv keep cs rs
760       where
761         refs = ds `delListFromUniqSet` tcs
762
763         can_convert  = isNullUFM (refs `minusUFM` cs) && all convertable tcs
764         must_convert = foldUFM (||) False (intersectUFM_C const cs refs)
765
766         convertable tc = isDataTyCon tc && all isVanillaDataCon (tyConDataCons tc)
767
768 -- | Compute mutually recursive groups of tycons in topological order
769 --
770 tyConGroups :: [TyCon] -> [TyConGroup]
771 tyConGroups tcs = map mk_grp (stronglyConnComp edges)
772   where
773     edges = [((tc, ds), tc, uniqSetToList ds) | tc <- tcs
774                                 , let ds = tyConsOfTyCon tc]
775
776     mk_grp (AcyclicSCC (tc, ds)) = ([tc], ds)
777     mk_grp (CyclicSCC els)       = (tcs, unionManyUniqSets dss)
778       where
779         (tcs, dss) = unzip els
780
781 tyConsOfTyCon :: TyCon -> UniqSet TyCon
782 tyConsOfTyCon
783   = tyConsOfTypes . concatMap dataConRepArgTys . tyConDataCons
784
785 tyConsOfType :: Type -> UniqSet TyCon
786 tyConsOfType ty
787   | Just ty' <- coreView ty    = tyConsOfType ty'
788 tyConsOfType (TyVarTy v)       = emptyUniqSet
789 tyConsOfType (TyConApp tc tys) = extend (tyConsOfTypes tys)
790   where
791     extend | isUnLiftedTyCon tc
792            || isTupleTyCon   tc = id
793
794            | otherwise          = (`addOneToUniqSet` tc)
795
796 tyConsOfType (AppTy a b)       = tyConsOfType a `unionUniqSets` tyConsOfType b
797 tyConsOfType (FunTy a b)       = (tyConsOfType a `unionUniqSets` tyConsOfType b)
798                                  `addOneToUniqSet` funTyCon
799 tyConsOfType (ForAllTy _ ty)   = tyConsOfType ty
800 tyConsOfType other             = pprPanic "ClosureConv.tyConsOfType" $ ppr other
801
802 tyConsOfTypes :: [Type] -> UniqSet TyCon
803 tyConsOfTypes = unionManyUniqSets . map tyConsOfType
804