{-# LANGUAGE CPP #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE TemplateHaskell #-}
{-# LANGUAGE QuasiQuotes #-}
module Clash.Normalize.PrimitiveReductions where
import qualified Control.Lens as Lens
import Control.Lens ((.=))
import Control.Monad.Trans.Class (lift)
import Control.Monad.Trans.Maybe (MaybeT (..))
import Data.Bifunctor (second)
import Data.List (mapAccumR)
import Data.List.Extra (zipEqual)
#if MIN_VERSION_base(4,20,0)
import qualified Data.List.NonEmpty as NE hiding (unzip)
import qualified Data.Functor as NE
#else
import qualified Data.List.NonEmpty as NE
#endif
import qualified Data.Maybe as Maybe
import Data.Semigroup (sconcat)
import Data.Text.Extra (showt)
import GHC.Stack (HasCallStack)
#if MIN_VERSION_ghc(9,0,0)
import GHC.Builtin.Names
(boolTyConKey, typeNatAddTyFamNameKey, typeNatMulTyFamNameKey,
typeNatSubTyFamNameKey)
import GHC.Types.SrcLoc (wiredInSrcSpan)
#else
import PrelNames
(boolTyConKey, typeNatAddTyFamNameKey, typeNatMulTyFamNameKey,
typeNatSubTyFamNameKey)
import SrcLoc (wiredInSrcSpan)
#endif
import Clash.Core.DataCon (DataCon)
import Clash.Core.HasType
import Clash.Core.Literal (Literal (..))
import Clash.Core.Name
(nameOcc, Name(..), NameSort(User), mkUnsafeSystemName)
import Clash.Core.Pretty (showPpr)
import Clash.Core.Term
(IsMultiPrim (..), CoreContext (..), PrimInfo (..), Term (..), WorkInfo (..), Pat (..),
collectTermIds, mkApps, PrimUnfolding(..))
import Clash.Core.Type (LitTy (..), Type (..),
TypeView (..), coreView1,
mkFunTy, mkTyConApp,
splitFunForallTy, tyView)
import Clash.Core.TyCon
(TyConMap, TyConName, tyConDataCons, tyConName)
import Clash.Core.TysPrim
(integerPrimTy, typeNatKind, liftedTypeKind)
import Clash.Core.Util
(appendToVec, extractElems, extractTElems, mkRTree,
mkUniqInternalId, mkUniqSystemTyVar, mkVec, dataConInstArgTys, primCo)
import Clash.Core.Var (mkTyVar, mkLocalId)
import Clash.Core.VarEnv (extendInScopeSetList)
import qualified Clash.Data.UniqMap as UniqMap
import qualified Clash.Normalize.Primitives as NP (undefined)
import {-# SOURCE #-} Clash.Normalize.Strategy
import Clash.Normalize.Types
import Clash.Rewrite.Types
import Clash.Rewrite.Util
import Clash.Unique (fromGhcUnique)
import Clash.Util
import qualified Clash.Util.Interpolate as I
typeNatAdd :: TyConName
typeNatAdd :: TyConName
typeNatAdd =
NameSort -> OccName -> Unique -> SrcSpan -> TyConName
forall a. NameSort -> OccName -> Unique -> SrcSpan -> Name a
Name NameSort
User OccName
"GHC.TypeNats.+" (Unique -> Unique
fromGhcUnique Unique
typeNatAddTyFamNameKey) SrcSpan
wiredInSrcSpan
typeNatMul :: TyConName
typeNatMul :: TyConName
typeNatMul =
NameSort -> OccName -> Unique -> SrcSpan -> TyConName
forall a. NameSort -> OccName -> Unique -> SrcSpan -> Name a
Name NameSort
User OccName
"GHC.TypeNats.*" (Unique -> Unique
fromGhcUnique Unique
typeNatMulTyFamNameKey) SrcSpan
wiredInSrcSpan
typeNatSub :: TyConName
typeNatSub :: TyConName
typeNatSub =
NameSort -> OccName -> Unique -> SrcSpan -> TyConName
forall a. NameSort -> OccName -> Unique -> SrcSpan -> Name a
Name NameSort
User OccName
"GHC.TypeNats.-" (Unique -> Unique
fromGhcUnique Unique
typeNatSubTyFamNameKey) SrcSpan
wiredInSrcSpan
vecHeadPrim
:: TyConName
-> Term
vecHeadPrim :: TyConName -> Term
vecHeadPrim TyConName
vecTcNm =
PrimInfo -> Term
Prim (OccName
-> Type -> WorkInfo -> IsMultiPrim -> PrimUnfolding -> PrimInfo
PrimInfo OccName
"Clash.Sized.Vector.head" (TyConName -> Type
vecHeadTy TyConName
vecTcNm) WorkInfo
WorkNever IsMultiPrim
SingleResult PrimUnfolding
NoUnfolding)
vecLastPrim
:: TyConName
-> Term
vecLastPrim :: TyConName -> Term
vecLastPrim TyConName
vecTcNm =
PrimInfo -> Term
Prim (OccName
-> Type -> WorkInfo -> IsMultiPrim -> PrimUnfolding -> PrimInfo
PrimInfo OccName
"Clash.Sized.Vector.last" (TyConName -> Type
vecHeadTy TyConName
vecTcNm) WorkInfo
WorkNever IsMultiPrim
SingleResult PrimUnfolding
NoUnfolding)
vecHeadTy
:: TyConName
-> Type
vecHeadTy :: TyConName -> Type
vecHeadTy TyConName
vecNm =
TyVar -> Type -> Type
ForAllTy TyVar
nTV (Type -> Type) -> Type -> Type
forall a b. (a -> b) -> a -> b
$
TyVar -> Type -> Type
ForAllTy TyVar
aTV (Type -> Type) -> Type -> Type
forall a b. (a -> b) -> a -> b
$
Type -> Type -> Type
mkFunTy
(TyConName -> [Type] -> Type
mkTyConApp TyConName
vecNm [TyConName -> [Type] -> Type
mkTyConApp TyConName
typeNatAdd [TyVar -> Type
VarTy TyVar
nTV, LitTy -> Type
LitTy (Integer -> LitTy
NumTy Integer
1)], TyVar -> Type
VarTy TyVar
aTV])
(TyVar -> Type
VarTy TyVar
aTV)
where
aTV :: TyVar
aTV = Type -> TyName -> TyVar
mkTyVar Type
liftedTypeKind (OccName -> Unique -> TyName
forall a. OccName -> Unique -> Name a
mkUnsafeSystemName OccName
"a" Unique
0)
nTV :: TyVar
nTV = Type -> TyName -> TyVar
mkTyVar Type
typeNatKind (OccName -> Unique -> TyName
forall a. OccName -> Unique -> Name a
mkUnsafeSystemName OccName
"n" Unique
1)
vecTailPrim
:: TyConName
-> Term
vecTailPrim :: TyConName -> Term
vecTailPrim TyConName
vecTcNm =
PrimInfo -> Term
Prim (OccName
-> Type -> WorkInfo -> IsMultiPrim -> PrimUnfolding -> PrimInfo
PrimInfo OccName
"Clash.Sized.Vector.tail" (TyConName -> Type
vecTailTy TyConName
vecTcNm) WorkInfo
WorkNever IsMultiPrim
SingleResult PrimUnfolding
NoUnfolding)
vecInitPrim
:: TyConName
-> Term
vecInitPrim :: TyConName -> Term
vecInitPrim TyConName
vecTcNm =
PrimInfo -> Term
Prim (OccName
-> Type -> WorkInfo -> IsMultiPrim -> PrimUnfolding -> PrimInfo
PrimInfo OccName
"Clash.Sized.Vector.init" (TyConName -> Type
vecTailTy TyConName
vecTcNm) WorkInfo
WorkNever IsMultiPrim
SingleResult PrimUnfolding
NoUnfolding)
vecTailTy
:: TyConName
-> Type
vecTailTy :: TyConName -> Type
vecTailTy TyConName
vecNm =
TyVar -> Type -> Type
ForAllTy TyVar
nTV (Type -> Type) -> Type -> Type
forall a b. (a -> b) -> a -> b
$
TyVar -> Type -> Type
ForAllTy TyVar
aTV (Type -> Type) -> Type -> Type
forall a b. (a -> b) -> a -> b
$
Type -> Type -> Type
mkFunTy
(TyConName -> [Type] -> Type
mkTyConApp TyConName
vecNm [TyConName -> [Type] -> Type
mkTyConApp TyConName
typeNatAdd [TyVar -> Type
VarTy TyVar
nTV, LitTy -> Type
LitTy (Integer -> LitTy
NumTy Integer
1)], TyVar -> Type
VarTy TyVar
aTV])
(TyConName -> [Type] -> Type
mkTyConApp TyConName
vecNm [TyVar -> Type
VarTy TyVar
nTV, TyVar -> Type
VarTy TyVar
aTV])
where
nTV :: TyVar
nTV = Type -> TyName -> TyVar
mkTyVar Type
typeNatKind (OccName -> Unique -> TyName
forall a. OccName -> Unique -> Name a
mkUnsafeSystemName OccName
"n" Unique
0)
aTV :: TyVar
aTV = Type -> TyName -> TyVar
mkTyVar Type
liftedTypeKind (OccName -> Unique -> TyName
forall a. OccName -> Unique -> Name a
mkUnsafeSystemName OccName
"a" Unique
1)
extractHeadTail
:: DataCon
-> Type
-> Integer
-> Term
-> (Term, Term)
DataCon
consCon Type
elTy Integer
n Term
vec =
case DataCon -> [Type] -> Maybe [Type]
dataConInstArgTys DataCon
consCon [Type]
tys of
Just [Type
coTy, Type
_elTy, Type
restTy] ->
let
mTV :: TyVar
mTV = Type -> TyName -> TyVar
mkTyVar Type
typeNatKind (OccName -> Unique -> TyName
forall a. OccName -> Unique -> Name a
mkUnsafeSystemName OccName
"m" Unique
0)
co :: Id
co = Type -> TmName -> Id
mkLocalId Type
coTy (OccName -> Unique -> TmName
forall a. OccName -> Unique -> Name a
mkUnsafeSystemName OccName
"_co_" Unique
1)
el :: Id
el = Type -> TmName -> Id
mkLocalId Type
elTy (OccName -> Unique -> TmName
forall a. OccName -> Unique -> Name a
mkUnsafeSystemName OccName
"el" Unique
2)
rest :: Id
rest = Type -> TmName -> Id
mkLocalId Type
restTy (OccName -> Unique -> TmName
forall a. OccName -> Unique -> Name a
mkUnsafeSystemName OccName
"res" Unique
3)
pat :: Pat
pat = DataCon -> [TyVar] -> [Id] -> Pat
DataPat DataCon
consCon [TyVar
mTV] [Id
co, Id
el, Id
rest]
in
( Term -> Type -> [Alt] -> Term
Case Term
vec Type
elTy [(Pat
pat, Id -> Term
Var Id
el)]
, Term -> Type -> [Alt] -> Term
Case Term
vec Type
restTy [(Pat
pat, Id -> Term
Var Id
rest)] )
Maybe [Type]
_ -> [Char] -> (Term, Term)
forall a. HasCallStack => [Char] -> a
error [Char]
"extractHeadTail: failed to instantiate Cons DC"
where
tys :: [Type]
tys = [(LitTy -> Type
LitTy (Integer -> LitTy
NumTy Integer
n)), Type
elTy, (LitTy -> Type
LitTy (Integer -> LitTy
NumTy (Integer
nInteger -> Integer -> Integer
forall a. Num a => a -> a -> a
-Integer
1)))]
mkVecCons
:: HasCallStack
=> DataCon
-> Type
-> Integer
-> Term
-> Term
-> Term
mkVecCons :: DataCon -> Type -> Integer -> Term -> Term -> Term
mkVecCons DataCon
consCon Type
resTy Integer
n Term
h Term
t
| Integer
n Integer -> Integer -> Bool
forall a. Ord a => a -> a -> Bool
<= Integer
0 = [Char] -> Term
forall a. HasCallStack => [Char] -> a
error [Char]
"mkVecCons: n <= 0"
| Bool
otherwise
= case DataCon -> [Type] -> Maybe [Type]
dataConInstArgTys DataCon
consCon [LitTy -> Type
LitTy (Integer -> LitTy
NumTy Integer
n), Type
resTy, LitTy -> Type
LitTy (Integer -> LitTy
NumTy (Integer
nInteger -> Integer -> Integer
forall a. Num a => a -> a -> a
-Integer
1))] of
Just (Type
consCoTy : [Type]
_) ->
Term -> [Either Term Type] -> Term
mkApps (DataCon -> Term
Data DataCon
consCon) [ Type -> Either Term Type
forall a b. b -> Either a b
Right (LitTy -> Type
LitTy (Integer -> LitTy
NumTy Integer
n))
, Type -> Either Term Type
forall a b. b -> Either a b
Right Type
resTy
, Type -> Either Term Type
forall a b. b -> Either a b
Right (LitTy -> Type
LitTy (Integer -> LitTy
NumTy (Integer
nInteger -> Integer -> Integer
forall a. Num a => a -> a -> a
-Integer
1)))
, Term -> Either Term Type
forall a b. a -> Either a b
Left (Type -> Term
primCo Type
consCoTy)
, Term -> Either Term Type
forall a b. a -> Either a b
Left Term
h
, Term -> Either Term Type
forall a b. a -> Either a b
Left Term
t ]
Maybe [Type]
_ -> [Char] -> Term
forall a. HasCallStack => [Char] -> a
error [Char]
"mkVecCons: failed to instantiate Cons DC"
mkVecNil
:: DataCon
-> Type
-> Term
mkVecNil :: DataCon -> Type -> Term
mkVecNil DataCon
nilCon Type
resTy = case DataCon -> [Type] -> Maybe [Type]
dataConInstArgTys DataCon
nilCon [LitTy -> Type
LitTy (Integer -> LitTy
NumTy Integer
0), Type
resTy] of
Just (Type
nilCoTy : [Type]
_) ->
Term -> [Either Term Type] -> Term
mkApps (DataCon -> Term
Data DataCon
nilCon) [ Type -> Either Term Type
forall a b. b -> Either a b
Right (LitTy -> Type
LitTy (Integer -> LitTy
NumTy Integer
0))
, Type -> Either Term Type
forall a b. b -> Either a b
Right Type
resTy
, Term -> Either Term Type
forall a b. a -> Either a b
Left (Type -> Term
primCo Type
nilCoTy) ]
Maybe [Type]
_ -> [Char] -> Term
forall a. HasCallStack => [Char] -> a
error [Char]
"mkVecNil: failed to instantiate Nil DC"
reduceReverse
:: Integer
-> Type
-> Term
-> TransformContext
-> NormalizeSession Term
reduceReverse :: Integer
-> Type -> Term -> TransformContext -> NormalizeSession Term
reduceReverse Integer
n Type
elTy Term
vArg (TransformContext InScopeSet
inScope0 Context
_ctx) = do
TyConMap
tcm <- Getting TyConMap RewriteEnv TyConMap
-> RewriteMonad NormalizeState TyConMap
forall s (m :: Type -> Type) a.
MonadReader s m =>
Getting a s a -> m a
Lens.view Getting TyConMap RewriteEnv TyConMap
Getter RewriteEnv TyConMap
tcCache
let ty :: Type
ty = TyConMap -> Term -> Type
forall a. InferType a => TyConMap -> a -> Type
inferCoreTypeOf TyConMap
tcm Term
vArg
TyConMap -> Type -> NormalizeSession Term
forall extra. TyConMap -> Type -> RewriteMonad extra Term
go TyConMap
tcm Type
ty
where
go :: TyConMap -> Type -> RewriteMonad extra Term
go TyConMap
tcm (TyConMap -> Type -> Maybe Type
coreView1 TyConMap
tcm -> Just Type
ty') = TyConMap -> Type -> RewriteMonad extra Term
go TyConMap
tcm Type
ty'
go TyConMap
tcm (Type -> TypeView
tyView -> TyConApp TyConName
vecTcNm [Type]
_)
| Just TyCon
vecTc <- TyConName -> TyConMap -> Maybe TyCon
forall a b. Uniquable a => a -> UniqMap b -> Maybe b
UniqMap.lookup TyConName
vecTcNm TyConMap
tcm
, TyConName -> OccName
forall a. Name a -> OccName
nameOcc TyConName
vecTcNm OccName -> OccName -> Bool
forall a. Eq a => a -> a -> Bool
== OccName
"Clash.Sized.Vector.Vec"
, [DataCon
nilCon, DataCon
consCon] <- TyCon -> [DataCon]
tyConDataCons TyCon
vecTc
= do
Supply
uniqs0 <- Getting Supply (RewriteState extra) Supply
-> RewriteMonad extra Supply
forall s (m :: Type -> Type) a.
MonadState s m =>
Getting a s a -> m a
Lens.use Getting Supply (RewriteState extra) Supply
forall extra. Lens' (RewriteState extra) Supply
uniqSupply
let (Supply
uniqs1,(NonEmpty Term
vars,NonEmpty (Id, Term)
elems)) = (NonEmpty (Term, NonEmpty (Id, Term))
-> (NonEmpty Term, NonEmpty (Id, Term)))
-> (Supply, NonEmpty (Term, NonEmpty (Id, Term)))
-> (Supply, (NonEmpty Term, NonEmpty (Id, Term)))
forall (p :: Type -> Type -> Type) b c a.
Bifunctor p =>
(b -> c) -> p a b -> p a c
second ((NonEmpty (NonEmpty (Id, Term)) -> NonEmpty (Id, Term))
-> (NonEmpty Term, NonEmpty (NonEmpty (Id, Term)))
-> (NonEmpty Term, NonEmpty (Id, Term))
forall (p :: Type -> Type -> Type) b c a.
Bifunctor p =>
(b -> c) -> p a b -> p a c
second NonEmpty (NonEmpty (Id, Term)) -> NonEmpty (Id, Term)
forall a. Semigroup a => NonEmpty a -> a
sconcat ((NonEmpty Term, NonEmpty (NonEmpty (Id, Term)))
-> (NonEmpty Term, NonEmpty (Id, Term)))
-> (NonEmpty (Term, NonEmpty (Id, Term))
-> (NonEmpty Term, NonEmpty (NonEmpty (Id, Term))))
-> NonEmpty (Term, NonEmpty (Id, Term))
-> (NonEmpty Term, NonEmpty (Id, Term))
forall b c a. (b -> c) -> (a -> b) -> a -> c
. NonEmpty (Term, NonEmpty (Id, Term))
-> (NonEmpty Term, NonEmpty (NonEmpty (Id, Term)))
forall (f :: Type -> Type) a b. Functor f => f (a, b) -> (f a, f b)
NE.unzip)
((Supply, NonEmpty (Term, NonEmpty (Id, Term)))
-> (Supply, (NonEmpty Term, NonEmpty (Id, Term))))
-> (Supply, NonEmpty (Term, NonEmpty (Id, Term)))
-> (Supply, (NonEmpty Term, NonEmpty (Id, Term)))
forall a b. (a -> b) -> a -> b
$ HasCallStack =>
Supply
-> InScopeSet
-> DataCon
-> Type
-> Char
-> Integer
-> Term
-> (Supply, NonEmpty (Term, NonEmpty (Id, Term)))
Supply
-> InScopeSet
-> DataCon
-> Type
-> Char
-> Integer
-> Term
-> (Supply, NonEmpty (Term, NonEmpty (Id, Term)))
extractElems Supply
uniqs0 InScopeSet
inScope0 DataCon
consCon Type
elTy Char
'V' Integer
n Term
vArg
lbody :: Term
lbody = DataCon -> DataCon -> Type -> Integer -> [Term] -> Term
mkVec DataCon
nilCon DataCon
consCon Type
elTy Integer
n ([Term] -> [Term]
forall a. [a] -> [a]
reverse (NonEmpty Term -> [Term]
forall a. NonEmpty a -> [a]
NE.toList NonEmpty Term
vars))
lb :: Term
lb = [(Id, Term)] -> Term -> Term
Letrec (NonEmpty (Id, Term) -> [(Id, Term)]
forall a. NonEmpty a -> [a]
NE.init NonEmpty (Id, Term)
elems) Term
lbody
(Supply -> Identity Supply)
-> RewriteState extra -> Identity (RewriteState extra)
forall extra. Lens' (RewriteState extra) Supply
uniqSupply ((Supply -> Identity Supply)
-> RewriteState extra -> Identity (RewriteState extra))
-> Supply -> RewriteMonad extra ()
forall s (m :: Type -> Type) a b.
MonadState s m =>
ASetter s s a b -> b -> m ()
Lens..= Supply
uniqs1
Term -> RewriteMonad extra Term
forall a extra. a -> RewriteMonad extra a
changed Term
lb
go TyConMap
_ Type
ty = [Char] -> RewriteMonad extra Term
forall a. HasCallStack => [Char] -> a
error ([Char] -> RewriteMonad extra Term)
-> [Char] -> RewriteMonad extra Term
forall a b. (a -> b) -> a -> b
$ $([Char]
curLoc) [Char] -> [Char] -> [Char]
forall a. [a] -> [a] -> [a]
++ [Char]
"reduceReverse: argument does not have a vector type: " [Char] -> [Char] -> [Char]
forall a. [a] -> [a] -> [a]
++ Type -> [Char]
forall p. PrettyPrec p => p -> [Char]
showPpr Type
ty
reduceZipWith
:: PrimInfo
-> Integer
-> Type
-> Type
-> Type
-> Term
-> Term
-> Term
-> TransformContext
-> NormalizeSession Term
reduceZipWith :: PrimInfo
-> Integer
-> Type
-> Type
-> Type
-> Term
-> Term
-> Term
-> TransformContext
-> NormalizeSession Term
reduceZipWith PrimInfo
zipWithPrimInfo Integer
n Type
lhsElTy Type
rhsElTy Type
resElTy Term
fun Term
lhsArg Term
rhsArg TransformContext
_ctx = do
TyConMap
tcm <- Getting TyConMap RewriteEnv TyConMap
-> RewriteMonad NormalizeState TyConMap
forall s (m :: Type -> Type) a.
MonadReader s m =>
Getting a s a -> m a
Lens.view Getting TyConMap RewriteEnv TyConMap
Getter RewriteEnv TyConMap
tcCache
Term -> NormalizeSession Term
forall a extra. a -> RewriteMonad extra a
changed (TyConMap -> Type -> Term
go TyConMap
tcm (TyConMap -> Term -> Type
forall a. InferType a => TyConMap -> a -> Type
inferCoreTypeOf TyConMap
tcm Term
lhsArg))
where
go :: TyConMap -> Type -> Term
go TyConMap
tcm (TyConMap -> Type -> Maybe Type
coreView1 TyConMap
tcm -> Just Type
ty) = TyConMap -> Type -> Term
go TyConMap
tcm Type
ty
go TyConMap
tcm (Type -> TypeView
tyView -> TyConApp TyConName
vecTcNm [Type]
_)
| (Just TyCon
vecTc) <- TyConName -> TyConMap -> Maybe TyCon
forall a b. Uniquable a => a -> UniqMap b -> Maybe b
UniqMap.lookup TyConName
vecTcNm TyConMap
tcm
, TyConName -> OccName
forall a. Name a -> OccName
nameOcc TyConName
vecTcNm OccName -> OccName -> Bool
forall a. Eq a => a -> a -> Bool
== OccName
"Clash.Sized.Vector.Vec"
, [DataCon
nilCon, DataCon
consCon] <- TyCon -> [DataCon]
tyConDataCons TyCon
vecTc
= if Integer
n Integer -> Integer -> Bool
forall a. Eq a => a -> a -> Bool
== Integer
0 then
DataCon -> Type -> Term
mkVecNil DataCon
nilCon Type
resElTy
else
let
(Term
a, Term
as) = DataCon -> Type -> Integer -> Term -> (Term, Term)
extractHeadTail DataCon
consCon Type
lhsElTy Integer
n Term
lhsArg
(Term
b, Term
bs) = DataCon -> Type -> Integer -> Term -> (Term, Term)
extractHeadTail DataCon
consCon Type
rhsElTy Integer
n Term
rhsArg
c :: Term
c = Term -> [Either Term Type] -> Term
mkApps Term
fun [Term -> Either Term Type
forall a b. a -> Either a b
Left Term
a, Term -> Either Term Type
forall a b. a -> Either a b
Left Term
b]
cs :: Term
cs = Term -> [Either Term Type] -> Term
mkApps (PrimInfo -> Term
Prim PrimInfo
zipWithPrimInfo) [ Type -> Either Term Type
forall a b. b -> Either a b
Right Type
lhsElTy
, Type -> Either Term Type
forall a b. b -> Either a b
Right Type
rhsElTy
, Type -> Either Term Type
forall a b. b -> Either a b
Right Type
resElTy
, Type -> Either Term Type
forall a b. b -> Either a b
Right (LitTy -> Type
LitTy (Integer -> LitTy
NumTy (Integer
n Integer -> Integer -> Integer
forall a. Num a => a -> a -> a
- Integer
1)))
, Term -> Either Term Type
forall a b. a -> Either a b
Left Term
fun
, Term -> Either Term Type
forall a b. a -> Either a b
Left Term
as
, Term -> Either Term Type
forall a b. a -> Either a b
Left Term
bs ]
in
HasCallStack => DataCon -> Type -> Integer -> Term -> Term -> Term
DataCon -> Type -> Integer -> Term -> Term -> Term
mkVecCons DataCon
consCon Type
resElTy Integer
n Term
c Term
cs
go TyConMap
_ Type
ty =
[Char] -> Term
forall a. HasCallStack => [Char] -> a
error ([Char] -> Term) -> [Char] -> Term
forall a b. (a -> b) -> a -> b
$ $([Char]
curLoc) [Char] -> [Char] -> [Char]
forall a. [a] -> [a] -> [a]
++ [I.i|
reduceZipWith: argument does not have a vector type:
#{showPpr ty}
|]
reduceMap
:: PrimInfo
-> Integer
-> Type
-> Type
-> Term
-> Term
-> TransformContext
-> NormalizeSession Term
reduceMap :: PrimInfo
-> Integer
-> Type
-> Type
-> Term
-> Term
-> TransformContext
-> NormalizeSession Term
reduceMap PrimInfo
mapPrimInfo Integer
n Type
argElTy Type
resElTy Term
fun Term
arg TransformContext
_ctx = do
TyConMap
tcm <- Getting TyConMap RewriteEnv TyConMap
-> RewriteMonad NormalizeState TyConMap
forall s (m :: Type -> Type) a.
MonadReader s m =>
Getting a s a -> m a
Lens.view Getting TyConMap RewriteEnv TyConMap
Getter RewriteEnv TyConMap
tcCache
let ty :: Type
ty = TyConMap -> Term -> Type
forall a. InferType a => TyConMap -> a -> Type
inferCoreTypeOf TyConMap
tcm Term
arg
Term -> NormalizeSession Term
forall a extra. a -> RewriteMonad extra a
changed (TyConMap -> Type -> Term
go TyConMap
tcm Type
ty)
where
go :: TyConMap -> Type -> Term
go TyConMap
tcm (TyConMap -> Type -> Maybe Type
coreView1 TyConMap
tcm -> Just Type
ty') = TyConMap -> Type -> Term
go TyConMap
tcm Type
ty'
go TyConMap
tcm (Type -> TypeView
tyView -> TyConApp TyConName
vecTcNm [Type]
_)
| (Just TyCon
vecTc) <- TyConName -> TyConMap -> Maybe TyCon
forall a b. Uniquable a => a -> UniqMap b -> Maybe b
UniqMap.lookup TyConName
vecTcNm TyConMap
tcm
, TyConName -> OccName
forall a. Name a -> OccName
nameOcc TyConName
vecTcNm OccName -> OccName -> Bool
forall a. Eq a => a -> a -> Bool
== OccName
"Clash.Sized.Vector.Vec"
, [DataCon
nilCon,DataCon
consCon] <- TyCon -> [DataCon]
tyConDataCons TyCon
vecTc
= if Integer
n Integer -> Integer -> Bool
forall a. Eq a => a -> a -> Bool
== Integer
0 then
DataCon -> Type -> Term
mkVecNil DataCon
nilCon Type
argElTy
else
let
nPredTy :: Either a Type
nPredTy = Type -> Either a Type
forall a b. b -> Either a b
Right (LitTy -> Type
LitTy (Integer -> LitTy
NumTy (Integer
n Integer -> Integer -> Integer
forall a. Num a => a -> a -> a
- Integer
1)))
(Term
a, Term
as) = DataCon -> Type -> Integer -> Term -> (Term, Term)
extractHeadTail DataCon
consCon Type
argElTy Integer
n Term
arg
b :: Term
b = Term -> [Either Term Type] -> Term
mkApps Term
fun [Term -> Either Term Type
forall a b. a -> Either a b
Left Term
a]
bs :: Term
bs = Term -> [Either Term Type] -> Term
mkApps (PrimInfo -> Term
Prim PrimInfo
mapPrimInfo) [ Type -> Either Term Type
forall a b. b -> Either a b
Right Type
argElTy
, Type -> Either Term Type
forall a b. b -> Either a b
Right Type
resElTy
, Either Term Type
forall a. Either a Type
nPredTy
, Term -> Either Term Type
forall a b. a -> Either a b
Left Term
fun
, Term -> Either Term Type
forall a b. a -> Either a b
Left Term
as ]
in
HasCallStack => DataCon -> Type -> Integer -> Term -> Term -> Term
DataCon -> Type -> Integer -> Term -> Term -> Term
mkVecCons DataCon
consCon Type
resElTy Integer
n Term
b Term
bs
go TyConMap
_ Type
ty =
[Char] -> Term
forall a. HasCallStack => [Char] -> a
error ([Char] -> Term) -> [Char] -> Term
forall a b. (a -> b) -> a -> b
$ $([Char]
curLoc) [Char] -> [Char] -> [Char]
forall a. [a] -> [a] -> [a]
++ [I.i|
reduceMap: argument does not have a vector type:
#{showPpr ty}
|]
reduceImap
:: Integer
-> Type
-> Type
-> Term
-> Term
-> Term
-> TransformContext
-> NormalizeSession Term
reduceImap :: Integer
-> Type
-> Type
-> Term
-> Term
-> Term
-> TransformContext
-> NormalizeSession Term
reduceImap Integer
n Type
argElTy Type
resElTy Term
_kn Term
fun Term
arg (TransformContext InScopeSet
is0 Context
ctx) = do
TyConMap
tcm <- Getting TyConMap RewriteEnv TyConMap
-> RewriteMonad NormalizeState TyConMap
forall s (m :: Type -> Type) a.
MonadReader s m =>
Getting a s a -> m a
Lens.view Getting TyConMap RewriteEnv TyConMap
Getter RewriteEnv TyConMap
tcCache
let ty :: Type
ty = TyConMap -> Term -> Type
forall a. InferType a => TyConMap -> a -> Type
inferCoreTypeOf TyConMap
tcm Term
arg
TyConMap -> Type -> NormalizeSession Term
go TyConMap
tcm Type
ty
where
go :: TyConMap -> Type -> NormalizeSession Term
go TyConMap
tcm (TyConMap -> Type -> Maybe Type
coreView1 TyConMap
tcm -> Just Type
ty') = TyConMap -> Type -> NormalizeSession Term
go TyConMap
tcm Type
ty'
go TyConMap
tcm (Type -> TypeView
tyView -> TyConApp TyConName
vecTcNm [Type]
_)
| (Just TyCon
vecTc) <- TyConName -> TyConMap -> Maybe TyCon
forall a b. Uniquable a => a -> UniqMap b -> Maybe b
UniqMap.lookup TyConName
vecTcNm TyConMap
tcm
, TyConName -> OccName
forall a. Name a -> OccName
nameOcc TyConName
vecTcNm OccName -> OccName -> Bool
forall a. Eq a => a -> a -> Bool
== OccName
"Clash.Sized.Vector.Vec"
, [DataCon
nilCon,DataCon
consCon] <- TyCon -> [DataCon]
tyConDataCons TyCon
vecTc
= do
Supply
uniqs0 <- Getting Supply (RewriteState NormalizeState) Supply
-> RewriteMonad NormalizeState Supply
forall s (m :: Type -> Type) a.
MonadState s m =>
Getting a s a -> m a
Lens.use Getting Supply (RewriteState NormalizeState) Supply
forall extra. Lens' (RewriteState extra) Supply
uniqSupply
Term
fun1 <- NormRewrite
constantPropagation (InScopeSet -> Context -> TransformContext
TransformContext InScopeSet
is0 (Maybe (OccName, Unique, Unique) -> CoreContext
AppArg Maybe (OccName, Unique, Unique)
forall a. Maybe a
NothingCoreContext -> Context -> Context
forall a. a -> [a] -> [a]
:Context
ctx)) Term
fun
let is1 :: InScopeSet
is1 = InScopeSet -> [Id] -> InScopeSet
forall a. InScopeSet -> [Var a] -> InScopeSet
extendInScopeSetList InScopeSet
is0 (Term -> [Id]
collectTermIds Term
fun1)
((Supply, InScopeSet)
uniqs1,TyVar
nTv) = (Supply, InScopeSet)
-> (OccName, Type) -> ((Supply, InScopeSet), TyVar)
mkUniqSystemTyVar (Supply
uniqs0,InScopeSet
is1) (OccName
"n",Type
typeNatKind)
(Supply
uniqs2,(NonEmpty Term
vars,NonEmpty (Id, Term)
elems)) = (NonEmpty (Term, NonEmpty (Id, Term))
-> (NonEmpty Term, NonEmpty (Id, Term)))
-> (Supply, NonEmpty (Term, NonEmpty (Id, Term)))
-> (Supply, (NonEmpty Term, NonEmpty (Id, Term)))
forall (p :: Type -> Type -> Type) b c a.
Bifunctor p =>
(b -> c) -> p a b -> p a c
second ((NonEmpty (NonEmpty (Id, Term)) -> NonEmpty (Id, Term))
-> (NonEmpty Term, NonEmpty (NonEmpty (Id, Term)))
-> (NonEmpty Term, NonEmpty (Id, Term))
forall (p :: Type -> Type -> Type) b c a.
Bifunctor p =>
(b -> c) -> p a b -> p a c
second NonEmpty (NonEmpty (Id, Term)) -> NonEmpty (Id, Term)
forall a. Semigroup a => NonEmpty a -> a
sconcat ((NonEmpty Term, NonEmpty (NonEmpty (Id, Term)))
-> (NonEmpty Term, NonEmpty (Id, Term)))
-> (NonEmpty (Term, NonEmpty (Id, Term))
-> (NonEmpty Term, NonEmpty (NonEmpty (Id, Term))))
-> NonEmpty (Term, NonEmpty (Id, Term))
-> (NonEmpty Term, NonEmpty (Id, Term))
forall b c a. (b -> c) -> (a -> b) -> a -> c
. NonEmpty (Term, NonEmpty (Id, Term))
-> (NonEmpty Term, NonEmpty (NonEmpty (Id, Term)))
forall (f :: Type -> Type) a b. Functor f => f (a, b) -> (f a, f b)
NE.unzip)
((Supply, NonEmpty (Term, NonEmpty (Id, Term)))
-> (Supply, (NonEmpty Term, NonEmpty (Id, Term))))
-> (Supply, NonEmpty (Term, NonEmpty (Id, Term)))
-> (Supply, (NonEmpty Term, NonEmpty (Id, Term)))
forall a b. (a -> b) -> a -> b
$ (Supply
-> InScopeSet
-> DataCon
-> Type
-> Char
-> Integer
-> Term
-> (Supply, NonEmpty (Term, NonEmpty (Id, Term))))
-> (Supply, InScopeSet)
-> DataCon
-> Type
-> Char
-> Integer
-> Term
-> (Supply, NonEmpty (Term, NonEmpty (Id, Term)))
forall a b c. (a -> b -> c) -> (a, b) -> c
uncurry HasCallStack =>
Supply
-> InScopeSet
-> DataCon
-> Type
-> Char
-> Integer
-> Term
-> (Supply, NonEmpty (Term, NonEmpty (Id, Term)))
Supply
-> InScopeSet
-> DataCon
-> Type
-> Char
-> Integer
-> Term
-> (Supply, NonEmpty (Term, NonEmpty (Id, Term)))
extractElems (Supply, InScopeSet)
uniqs1 DataCon
consCon Type
argElTy Char
'I' Integer
n Term
arg
idxTcNm :: TyConName
idxTcNm = TyConName -> Maybe TyConName -> TyConName
forall a. a -> Maybe a -> a
Maybe.fromMaybe ([Char] -> TyConName
forall a. HasCallStack => [Char] -> a
error [Char]
"reduceImap: failed to create Index TC") (Maybe TyConName -> TyConName) -> Maybe TyConName -> TyConName
forall a b. (a -> b) -> a -> b
$ do
(Right Type
idxTy:[Either TyVar Type]
_,Type
_) <- ([Either TyVar Type], Type) -> Maybe ([Either TyVar Type], Type)
forall (f :: Type -> Type) a. Applicative f => a -> f a
pure (Type -> ([Either TyVar Type], Type)
splitFunForallTy (TyConMap -> Term -> Type
forall a. InferType a => TyConMap -> a -> Type
inferCoreTypeOf TyConMap
tcm Term
fun))
TyConApp TyConName
nm [Type]
_ <- TypeView -> Maybe TypeView
forall (f :: Type -> Type) a. Applicative f => a -> f a
pure (Type -> TypeView
tyView Type
idxTy)
TyConName -> Maybe TyConName
forall (m :: Type -> Type) a. Monad m => a -> m a
return TyConName
nm
idxFromIntegerTy :: Type
idxFromIntegerTy = TyVar -> Type -> Type
ForAllTy TyVar
nTv
((Type -> Type -> Type) -> Type -> [Type] -> Type
forall (t :: Type -> Type) a b.
Foldable t =>
(a -> b -> b) -> b -> t a -> b
foldr Type -> Type -> Type
mkFunTy
(TyConName -> [Type] -> Type
mkTyConApp TyConName
idxTcNm
[TyVar -> Type
VarTy TyVar
nTv])
[Type
integerPrimTy,Type
integerPrimTy])
idxFromInteger :: Term
idxFromInteger = PrimInfo -> Term
Prim (OccName
-> Type -> WorkInfo -> IsMultiPrim -> PrimUnfolding -> PrimInfo
PrimInfo OccName
"Clash.Sized.Internal.Index.fromInteger#" Type
idxFromIntegerTy WorkInfo
WorkNever IsMultiPrim
SingleResult PrimUnfolding
NoUnfolding)
idxs :: [Term]
idxs = (Integer -> Term) -> [Integer] -> [Term]
forall a b. (a -> b) -> [a] -> [b]
map (Term -> Term -> Term
App (Term -> Term -> Term
App (Term -> Type -> Term
TyApp Term
idxFromInteger (LitTy -> Type
LitTy (Integer -> LitTy
NumTy Integer
n)))
(Literal -> Term
Literal (Integer -> Literal
IntegerLiteral (Integer -> Integer
forall a. Integral a => a -> Integer
toInteger Integer
n))))
(Term -> Term) -> (Integer -> Term) -> Integer -> Term
forall b c a. (b -> c) -> (a -> b) -> a -> c
. Literal -> Term
Literal (Literal -> Term) -> (Integer -> Literal) -> Integer -> Term
forall b c a. (b -> c) -> (a -> b) -> a -> c
. Integer -> Literal
IntegerLiteral (Integer -> Literal) -> (Integer -> Integer) -> Integer -> Literal
forall b c a. (b -> c) -> (a -> b) -> a -> c
. Integer -> Integer
forall a. Integral a => a -> Integer
toInteger) [Integer
0..(Integer
nInteger -> Integer -> Integer
forall a. Num a => a -> a -> a
-Integer
1)]
funApps :: [Term]
funApps = (Term -> Term -> Term) -> [Term] -> [Term] -> [Term]
forall a b c. (a -> b -> c) -> [a] -> [b] -> [c]
zipWith (\Term
i Term
v -> Term -> Term -> Term
App (Term -> Term -> Term
App Term
fun1 Term
i) Term
v) [Term]
idxs (NonEmpty Term -> [Term]
forall a. NonEmpty a -> [a]
NE.toList NonEmpty Term
vars)
lbody :: Term
lbody = DataCon -> DataCon -> Type -> Integer -> [Term] -> Term
mkVec DataCon
nilCon DataCon
consCon Type
resElTy Integer
n [Term]
funApps
lb :: Term
lb = [(Id, Term)] -> Term -> Term
Letrec (NonEmpty (Id, Term) -> [(Id, Term)]
forall a. NonEmpty a -> [a]
NE.init NonEmpty (Id, Term)
elems) Term
lbody
(Supply -> Identity Supply)
-> RewriteState NormalizeState
-> Identity (RewriteState NormalizeState)
forall extra. Lens' (RewriteState extra) Supply
uniqSupply ((Supply -> Identity Supply)
-> RewriteState NormalizeState
-> Identity (RewriteState NormalizeState))
-> Supply -> RewriteMonad NormalizeState ()
forall s (m :: Type -> Type) a b.
MonadState s m =>
ASetter s s a b -> b -> m ()
Lens..= Supply
uniqs2
Term -> NormalizeSession Term
forall a extra. a -> RewriteMonad extra a
changed Term
lb
go TyConMap
_ Type
ty = [Char] -> NormalizeSession Term
forall a. HasCallStack => [Char] -> a
error ([Char] -> NormalizeSession Term)
-> [Char] -> NormalizeSession Term
forall a b. (a -> b) -> a -> b
$ $([Char]
curLoc) [Char] -> [Char] -> [Char]
forall a. [a] -> [a] -> [a]
++ [Char]
"reduceImap: argument does not have a vector type: " [Char] -> [Char] -> [Char]
forall a. [a] -> [a] -> [a]
++ Type -> [Char]
forall p. PrettyPrec p => p -> [Char]
showPpr Type
ty
reduceIterateI
:: Integer
-> Type
-> Type
-> Term
-> Term
-> Term
-> TransformContext
-> RewriteMonad NormalizeState Term
reduceIterateI :: Integer
-> Type
-> Type
-> Term
-> Term
-> Term
-> TransformContext
-> NormalizeSession Term
reduceIterateI Integer
n Type
aTy Type
vTy Term
_kn Term
f0 Term
a (TransformContext InScopeSet
is0 Context
ctx) = do
TyConMap
tcm <- Getting TyConMap RewriteEnv TyConMap
-> RewriteMonad NormalizeState TyConMap
forall s (m :: Type -> Type) a.
MonadReader s m =>
Getting a s a -> m a
Lens.view Getting TyConMap RewriteEnv TyConMap
Getter RewriteEnv TyConMap
tcCache
Term
f1 <- NormRewrite
constantPropagation (InScopeSet -> Context -> TransformContext
TransformContext InScopeSet
is0 (Maybe (OccName, Unique, Unique) -> CoreContext
AppArg Maybe (OccName, Unique, Unique)
forall a. Maybe a
NothingCoreContext -> Context -> Context
forall a. a -> [a] -> [a]
:Context
ctx)) Term
f0
Supply
uniqs0 <- Getting Supply (RewriteState NormalizeState) Supply
-> RewriteMonad NormalizeState Supply
forall s (m :: Type -> Type) a.
MonadState s m =>
Getting a s a -> m a
Lens.use Getting Supply (RewriteState NormalizeState) Supply
forall extra. Lens' (RewriteState extra) Supply
uniqSupply
let
is1 :: InScopeSet
is1 = InScopeSet -> [Id] -> InScopeSet
forall a. InScopeSet -> [Var a] -> InScopeSet
extendInScopeSetList InScopeSet
is0 (Term -> [Id]
collectTermIds Term
f1)
((Supply
uniqs1, InScopeSet
_is2), [Id]
elementIds) =
((Supply, InScopeSet)
-> (OccName, Type) -> ((Supply, InScopeSet), Id))
-> (Supply, InScopeSet)
-> [(OccName, Type)]
-> ((Supply, InScopeSet), [Id])
forall (t :: Type -> Type) a b c.
Traversable t =>
(a -> b -> (a, c)) -> a -> t b -> (a, t c)
mapAccumR
(Supply, InScopeSet)
-> (OccName, Type) -> ((Supply, InScopeSet), Id)
mkUniqInternalId
(Supply
uniqs0, InScopeSet
is1)
([OccName] -> [Type] -> [(OccName, Type)]
forall a b. [a] -> [b] -> [(a, b)]
zip ((Integer -> OccName) -> [Integer] -> [OccName]
forall a b. (a -> b) -> [a] -> [b]
map ((OccName
"el" OccName -> OccName -> OccName
forall a. Semigroup a => a -> a -> a
<>) (OccName -> OccName) -> (Integer -> OccName) -> Integer -> OccName
forall b c a. (b -> c) -> (a -> b) -> a -> c
. Integer -> OccName
forall a. Show a => a -> OccName
showt) [Integer
1..Integer
nInteger -> Integer -> Integer
forall a. Num a => a -> a -> a
-Integer
1]) (Type -> [Type]
forall a. a -> [a]
repeat Type
aTy))
(Supply -> Identity Supply)
-> RewriteState NormalizeState
-> Identity (RewriteState NormalizeState)
forall extra. Lens' (RewriteState extra) Supply
uniqSupply ((Supply -> Identity Supply)
-> RewriteState NormalizeState
-> Identity (RewriteState NormalizeState))
-> Supply -> RewriteMonad NormalizeState ()
forall s (m :: Type -> Type) a b.
MonadState s m =>
ASetter s s a b -> b -> m ()
.= Supply
uniqs1
let
elems :: [Term]
elems = (Term -> Term) -> [Term] -> [Term]
forall a b. (a -> b) -> [a] -> [b]
map (Term -> Term -> Term
App Term
f1) (Term
aTerm -> [Term] -> [Term]
forall a. a -> [a] -> [a]
:(Id -> Term) -> [Id] -> [Term]
forall a b. (a -> b) -> [a] -> [b]
map Id -> Term
Var [Id]
elementIds)
vec :: Term
vec = Term -> Maybe Term -> Term
forall a. a -> Maybe a -> a
Maybe.fromMaybe ([Char] -> Term
forall a. HasCallStack => [Char] -> a
error [Char]
"reduceIterateI: failed to create Vec DCs") (Maybe Term -> Term) -> Maybe Term -> Term
forall a b. (a -> b) -> a -> b
$ do
TyConApp TyConName
vecTcNm [Type]
_ <- TypeView -> Maybe TypeView
forall (f :: Type -> Type) a. Applicative f => a -> f a
pure (Type -> TypeView
tyView Type
vTy)
TyCon
vecTc <- TyConName -> TyConMap -> Maybe TyCon
forall a b. Uniquable a => a -> UniqMap b -> Maybe b
UniqMap.lookup TyConName
vecTcNm TyConMap
tcm
[DataCon
nilCon, DataCon
consCon] <- [DataCon] -> Maybe [DataCon]
forall (f :: Type -> Type) a. Applicative f => a -> f a
pure (TyCon -> [DataCon]
tyConDataCons TyCon
vecTc)
Term -> Maybe Term
forall (m :: Type -> Type) a. Monad m => a -> m a
return (DataCon -> DataCon -> Type -> Integer -> [Term] -> Term
mkVec DataCon
nilCon DataCon
consCon Type
aTy Integer
n (Unique -> [Term] -> [Term]
forall a. Unique -> [a] -> [a]
take (Integer -> Unique
forall a. Num a => Integer -> a
fromInteger Integer
n) (Term
aTerm -> [Term] -> [Term]
forall a. a -> [a] -> [a]
:(Id -> Term) -> [Id] -> [Term]
forall a b. (a -> b) -> [a] -> [b]
map Id -> Term
Var [Id]
elementIds)))
Term -> NormalizeSession Term
forall a extra. a -> RewriteMonad extra a
changed ([(Id, Term)] -> Term -> Term
Letrec ([Id] -> [Term] -> [(Id, Term)]
forall a b. [a] -> [b] -> [(a, b)]
zip [Id]
elementIds [Term]
elems) Term
vec)
reduceTraverse
:: Integer
-> Type
-> Type
-> Type
-> Term
-> Term
-> Term
-> TransformContext
-> NormalizeSession Term
reduceTraverse :: Integer
-> Type
-> Type
-> Type
-> Term
-> Term
-> Term
-> TransformContext
-> NormalizeSession Term
reduceTraverse Integer
n Type
aTy Type
fTy Type
bTy Term
dict Term
fun Term
arg (TransformContext InScopeSet
is0 Context
ctx) = do
TyConMap
tcm <- Getting TyConMap RewriteEnv TyConMap
-> RewriteMonad NormalizeState TyConMap
forall s (m :: Type -> Type) a.
MonadReader s m =>
Getting a s a -> m a
Lens.view Getting TyConMap RewriteEnv TyConMap
Getter RewriteEnv TyConMap
tcCache
case Type -> TypeView
tyView (TyConMap -> Term -> Type
forall a. InferType a => TyConMap -> a -> Type
inferCoreTypeOf TyConMap
tcm Term
dict) of
TyConApp TyConName
apDictTcNm [Type]
_ ->
let ty :: Type
ty = TyConMap -> Term -> Type
forall a. InferType a => TyConMap -> a -> Type
inferCoreTypeOf TyConMap
tcm Term
arg
in TyConMap -> TyConName -> Type -> NormalizeSession Term
forall a.
Uniquable a =>
TyConMap -> a -> Type -> NormalizeSession Term
go TyConMap
tcm TyConName
apDictTcNm Type
ty
TypeView
t -> [Char] -> NormalizeSession Term
forall a. HasCallStack => [Char] -> a
error ([Char]
"reduceTraverse: expected a TC, but got: " [Char] -> [Char] -> [Char]
forall a. Semigroup a => a -> a -> a
<> TypeView -> [Char]
forall a. Show a => a -> [Char]
show TypeView
t)
where
go :: TyConMap -> a -> Type -> NormalizeSession Term
go TyConMap
tcm a
apDictTcNm (TyConMap -> Type -> Maybe Type
coreView1 TyConMap
tcm -> Just Type
ty') = TyConMap -> a -> Type -> NormalizeSession Term
go TyConMap
tcm a
apDictTcNm Type
ty'
go TyConMap
tcm a
apDictTcNm (Type -> TypeView
tyView -> TyConApp TyConName
vecTcNm [Type]
_)
| (Just TyCon
vecTc) <- TyConName -> TyConMap -> Maybe TyCon
forall a b. Uniquable a => a -> UniqMap b -> Maybe b
UniqMap.lookup TyConName
vecTcNm TyConMap
tcm
, TyConName -> OccName
forall a. Name a -> OccName
nameOcc TyConName
vecTcNm OccName -> OccName -> Bool
forall a. Eq a => a -> a -> Bool
== OccName
"Clash.Sized.Vector.Vec"
, [DataCon
nilCon,DataCon
consCon] <- TyCon -> [DataCon]
tyConDataCons TyCon
vecTc
= (Maybe Term -> Term)
-> RewriteMonad NormalizeState (Maybe Term)
-> NormalizeSession Term
forall (f :: Type -> Type) a b. Functor f => (a -> b) -> f a -> f b
fmap (Term -> Maybe Term -> Term
forall a. a -> Maybe a -> a
Maybe.fromMaybe ([Char] -> Term
forall a. HasCallStack => [Char] -> a
error [Char]
"reduceTraverse: failed to build")) (RewriteMonad NormalizeState (Maybe Term) -> NormalizeSession Term)
-> RewriteMonad NormalizeState (Maybe Term)
-> NormalizeSession Term
forall a b. (a -> b) -> a -> b
$ MaybeT (RewriteMonad NormalizeState) Term
-> RewriteMonad NormalizeState (Maybe Term)
forall (m :: Type -> Type) a. MaybeT m a -> m (Maybe a)
runMaybeT (MaybeT (RewriteMonad NormalizeState) Term
-> RewriteMonad NormalizeState (Maybe Term))
-> MaybeT (RewriteMonad NormalizeState) Term
-> RewriteMonad NormalizeState (Maybe Term)
forall a b. (a -> b) -> a -> b
$ do
Supply
uniqs0 <- Getting Supply (RewriteState NormalizeState) Supply
-> MaybeT (RewriteMonad NormalizeState) Supply
forall s (m :: Type -> Type) a.
MonadState s m =>
Getting a s a -> m a
Lens.use Getting Supply (RewriteState NormalizeState) Supply
forall extra. Lens' (RewriteState extra) Supply
uniqSupply
Term
fun1 <- NormalizeSession Term -> MaybeT (RewriteMonad NormalizeState) Term
forall (t :: (Type -> Type) -> Type -> Type) (m :: Type -> Type) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (NormRewrite
constantPropagation (InScopeSet -> Context -> TransformContext
TransformContext InScopeSet
is0 (Maybe (OccName, Unique, Unique) -> CoreContext
AppArg Maybe (OccName, Unique, Unique)
forall a. Maybe a
NothingCoreContext -> Context -> Context
forall a. a -> [a] -> [a]
:Context
ctx)) Term
fun)
let is1 :: InScopeSet
is1 = InScopeSet -> [Id] -> InScopeSet
forall a. InScopeSet -> [Var a] -> InScopeSet
extendInScopeSetList InScopeSet
is0 (Term -> [Id]
collectTermIds Term
fun1)
TyCon
apDictTc <- Maybe TyCon -> MaybeT (RewriteMonad NormalizeState) TyCon
forall (m :: Type -> Type) b.
Applicative m =>
Maybe b -> MaybeT m b
hoistMaybe (a -> TyConMap -> Maybe TyCon
forall a b. Uniquable a => a -> UniqMap b -> Maybe b
UniqMap.lookup a
apDictTcNm TyConMap
tcm)
DataCon
apDictCon <- Maybe DataCon -> MaybeT (RewriteMonad NormalizeState) DataCon
forall (m :: Type -> Type) b.
Applicative m =>
Maybe b -> MaybeT m b
hoistMaybe ([DataCon] -> Maybe DataCon
forall a. [a] -> Maybe a
Maybe.listToMaybe (TyCon -> [DataCon]
tyConDataCons TyCon
apDictTc))
[Type]
apDictIdTys <- Maybe [Type] -> MaybeT (RewriteMonad NormalizeState) [Type]
forall (m :: Type -> Type) b.
Applicative m =>
Maybe b -> MaybeT m b
hoistMaybe (DataCon -> [Type] -> Maybe [Type]
dataConInstArgTys DataCon
apDictCon [Type
fTy])
((Supply, InScopeSet)
uniqs1,apDictIds :: [Id]
apDictIds@[Id
functorDictId,Id
pureId,Id
apId,Id
_,Id
_,Id
_]) <- ((Supply, InScopeSet), [Id])
-> MaybeT
(RewriteMonad NormalizeState) ((Supply, InScopeSet), [Id])
forall (f :: Type -> Type) a. Applicative f => a -> f a
pure (((Supply, InScopeSet), [Id])
-> MaybeT
(RewriteMonad NormalizeState) ((Supply, InScopeSet), [Id]))
-> ((Supply, InScopeSet), [Id])
-> MaybeT
(RewriteMonad NormalizeState) ((Supply, InScopeSet), [Id])
forall a b. (a -> b) -> a -> b
$
((Supply, InScopeSet)
-> (OccName, Type) -> ((Supply, InScopeSet), Id))
-> (Supply, InScopeSet)
-> [(OccName, Type)]
-> ((Supply, InScopeSet), [Id])
forall (t :: Type -> Type) a b c.
Traversable t =>
(a -> b -> (a, c)) -> a -> t b -> (a, t c)
mapAccumR (Supply, InScopeSet)
-> (OccName, Type) -> ((Supply, InScopeSet), Id)
mkUniqInternalId (Supply
uniqs0,InScopeSet
is1)
([OccName] -> [Type] -> [(OccName, Type)]
forall a b. HasCallStack => [a] -> [b] -> [(a, b)]
zipEqual [OccName
"functorDict",OccName
"pure",OccName
"ap",OccName
"liftA2",OccName
"apConstL",OccName
"apConstR"]
[Type]
apDictIdTys)
TyConApp TyConName
funcDictTcNm [Type]
_ <- Maybe TypeView -> MaybeT (RewriteMonad NormalizeState) TypeView
forall (m :: Type -> Type) b.
Applicative m =>
Maybe b -> MaybeT m b
hoistMaybe (Type -> TypeView
tyView (Type -> TypeView) -> Maybe Type -> Maybe TypeView
forall (f :: Type -> Type) a b. Functor f => (a -> b) -> f a -> f b
<$> [Type] -> Maybe Type
forall a. [a] -> Maybe a
Maybe.listToMaybe [Type]
apDictIdTys)
TyCon
funcDictTc <- Maybe TyCon -> MaybeT (RewriteMonad NormalizeState) TyCon
forall (m :: Type -> Type) b.
Applicative m =>
Maybe b -> MaybeT m b
hoistMaybe (TyConName -> TyConMap -> Maybe TyCon
forall a b. Uniquable a => a -> UniqMap b -> Maybe b
UniqMap.lookup TyConName
funcDictTcNm TyConMap
tcm)
DataCon
funcDictCon <- Maybe DataCon -> MaybeT (RewriteMonad NormalizeState) DataCon
forall (m :: Type -> Type) b.
Applicative m =>
Maybe b -> MaybeT m b
hoistMaybe ([DataCon] -> Maybe DataCon
forall a. [a] -> Maybe a
Maybe.listToMaybe (TyCon -> [DataCon]
tyConDataCons TyCon
funcDictTc))
[Type]
funcDictIdTys <- Maybe [Type] -> MaybeT (RewriteMonad NormalizeState) [Type]
forall (m :: Type -> Type) b.
Applicative m =>
Maybe b -> MaybeT m b
hoistMaybe (DataCon -> [Type] -> Maybe [Type]
dataConInstArgTys DataCon
funcDictCon [Type
fTy])
((Supply, InScopeSet)
uniqs2,funcDicIds :: [Id]
funcDicIds@[Id
fmapId,Id
_]) <- ((Supply, InScopeSet), [Id])
-> MaybeT
(RewriteMonad NormalizeState) ((Supply, InScopeSet), [Id])
forall (f :: Type -> Type) a. Applicative f => a -> f a
pure (((Supply, InScopeSet), [Id])
-> MaybeT
(RewriteMonad NormalizeState) ((Supply, InScopeSet), [Id]))
-> ((Supply, InScopeSet), [Id])
-> MaybeT
(RewriteMonad NormalizeState) ((Supply, InScopeSet), [Id])
forall a b. (a -> b) -> a -> b
$
((Supply, InScopeSet)
-> (OccName, Type) -> ((Supply, InScopeSet), Id))
-> (Supply, InScopeSet)
-> [(OccName, Type)]
-> ((Supply, InScopeSet), [Id])
forall (t :: Type -> Type) a b c.
Traversable t =>
(a -> b -> (a, c)) -> a -> t b -> (a, t c)
mapAccumR (Supply, InScopeSet)
-> (OccName, Type) -> ((Supply, InScopeSet), Id)
mkUniqInternalId (Supply, InScopeSet)
uniqs1
([OccName] -> [Type] -> [(OccName, Type)]
forall a b. HasCallStack => [a] -> [b] -> [(a, b)]
zipEqual [OccName
"fmap",OccName
"fmapConst"] [Type]
funcDictIdTys)
let apPat :: Pat
apPat = DataCon -> [TyVar] -> [Id] -> Pat
DataPat DataCon
apDictCon [] [Id]
apDictIds
fnPat :: Pat
fnPat = DataCon -> [TyVar] -> [Id] -> Pat
DataPat DataCon
funcDictCon [] [Id]
funcDicIds
pureTy :: Type
pureTy = Id -> Type
forall a. HasType a => a -> Type
coreTypeOf Id
pureId
pureTm :: Term
pureTm = Term -> Type -> [Alt] -> Term
Case Term
dict Type
pureTy [(Pat
apPat,Id -> Term
Var Id
pureId)]
apTy :: Type
apTy = Id -> Type
forall a. HasType a => a -> Type
coreTypeOf Id
apId
apTm :: Term
apTm = Term -> Type -> [Alt] -> Term
Case Term
dict Type
apTy [(Pat
apPat, Id -> Term
Var Id
apId)]
funcTy :: Type
funcTy = Id -> Type
forall a. HasType a => a -> Type
coreTypeOf Id
functorDictId
funcTm :: Term
funcTm = Term -> Type -> [Alt] -> Term
Case Term
dict Type
funcTy
[(Pat
apPat,Id -> Term
Var Id
functorDictId)]
fmapTy :: Type
fmapTy = Id -> Type
forall a. HasType a => a -> Type
coreTypeOf Id
fmapId
fmapTm :: Term
fmapTm = Term -> Type -> [Alt] -> Term
Case (Id -> Term
Var Id
functorDictId) Type
fmapTy
[(Pat
fnPat, Id -> Term
Var Id
fmapId)]
(Supply
uniqs3,(NonEmpty Term
vars,NonEmpty (Id, Term)
elems)) = (NonEmpty (Term, NonEmpty (Id, Term))
-> (NonEmpty Term, NonEmpty (Id, Term)))
-> (Supply, NonEmpty (Term, NonEmpty (Id, Term)))
-> (Supply, (NonEmpty Term, NonEmpty (Id, Term)))
forall (p :: Type -> Type -> Type) b c a.
Bifunctor p =>
(b -> c) -> p a b -> p a c
second ((NonEmpty (NonEmpty (Id, Term)) -> NonEmpty (Id, Term))
-> (NonEmpty Term, NonEmpty (NonEmpty (Id, Term)))
-> (NonEmpty Term, NonEmpty (Id, Term))
forall (p :: Type -> Type -> Type) b c a.
Bifunctor p =>
(b -> c) -> p a b -> p a c
second NonEmpty (NonEmpty (Id, Term)) -> NonEmpty (Id, Term)
forall a. Semigroup a => NonEmpty a -> a
sconcat ((NonEmpty Term, NonEmpty (NonEmpty (Id, Term)))
-> (NonEmpty Term, NonEmpty (Id, Term)))
-> (NonEmpty (Term, NonEmpty (Id, Term))
-> (NonEmpty Term, NonEmpty (NonEmpty (Id, Term))))
-> NonEmpty (Term, NonEmpty (Id, Term))
-> (NonEmpty Term, NonEmpty (Id, Term))
forall b c a. (b -> c) -> (a -> b) -> a -> c
. NonEmpty (Term, NonEmpty (Id, Term))
-> (NonEmpty Term, NonEmpty (NonEmpty (Id, Term)))
forall (f :: Type -> Type) a b. Functor f => f (a, b) -> (f a, f b)
NE.unzip)
((Supply, NonEmpty (Term, NonEmpty (Id, Term)))
-> (Supply, (NonEmpty Term, NonEmpty (Id, Term))))
-> (Supply, NonEmpty (Term, NonEmpty (Id, Term)))
-> (Supply, (NonEmpty Term, NonEmpty (Id, Term)))
forall a b. (a -> b) -> a -> b
$ (Supply
-> InScopeSet
-> DataCon
-> Type
-> Char
-> Integer
-> Term
-> (Supply, NonEmpty (Term, NonEmpty (Id, Term))))
-> (Supply, InScopeSet)
-> DataCon
-> Type
-> Char
-> Integer
-> Term
-> (Supply, NonEmpty (Term, NonEmpty (Id, Term)))
forall a b c. (a -> b -> c) -> (a, b) -> c
uncurry HasCallStack =>
Supply
-> InScopeSet
-> DataCon
-> Type
-> Char
-> Integer
-> Term
-> (Supply, NonEmpty (Term, NonEmpty (Id, Term)))
Supply
-> InScopeSet
-> DataCon
-> Type
-> Char
-> Integer
-> Term
-> (Supply, NonEmpty (Term, NonEmpty (Id, Term)))
extractElems (Supply, InScopeSet)
uniqs2 DataCon
consCon Type
aTy Char
'T' Integer
n Term
arg
funApps :: [Term]
funApps = (Term -> Term) -> [Term] -> [Term]
forall a b. (a -> b) -> [a] -> [b]
map (Term
fun1 Term -> Term -> Term
`App`) (NonEmpty Term -> [Term]
forall a. NonEmpty a -> [a]
NE.toList NonEmpty Term
vars)
lbody :: Term
lbody = TyConName
-> DataCon
-> DataCon
-> Term
-> Term
-> Term
-> Type
-> Integer
-> [Term]
-> Term
mkTravVec TyConName
vecTcNm DataCon
nilCon DataCon
consCon (Id -> Term
Var ([Id]
apDictIds[Id] -> Unique -> Id
forall a. [a] -> Unique -> a
!!Unique
1))
(Id -> Term
Var ([Id]
apDictIds[Id] -> Unique -> Id
forall a. [a] -> Unique -> a
!!Unique
2))
(Id -> Term
Var ([Id]
funcDicIds[Id] -> Unique -> Id
forall a. [a] -> Unique -> a
!!Unique
0))
Type
bTy Integer
n [Term]
funApps
lb :: Term
lb = [(Id, Term)] -> Term -> Term
Letrec ([(([Id]
apDictIds[Id] -> Unique -> Id
forall a. [a] -> Unique -> a
!!Unique
0), Term
funcTm)
,(([Id]
apDictIds[Id] -> Unique -> Id
forall a. [a] -> Unique -> a
!!Unique
1), Term
pureTm)
,(([Id]
apDictIds[Id] -> Unique -> Id
forall a. [a] -> Unique -> a
!!Unique
2), Term
apTm)
,(([Id]
funcDicIds[Id] -> Unique -> Id
forall a. [a] -> Unique -> a
!!Unique
0), Term
fmapTm)
] [(Id, Term)] -> [(Id, Term)] -> [(Id, Term)]
forall a. [a] -> [a] -> [a]
++ NonEmpty (Id, Term) -> [(Id, Term)]
forall a. NonEmpty a -> [a]
NE.init NonEmpty (Id, Term)
elems) Term
lbody
(Supply -> Identity Supply)
-> RewriteState NormalizeState
-> Identity (RewriteState NormalizeState)
forall extra. Lens' (RewriteState extra) Supply
uniqSupply ((Supply -> Identity Supply)
-> RewriteState NormalizeState
-> Identity (RewriteState NormalizeState))
-> Supply -> MaybeT (RewriteMonad NormalizeState) ()
forall s (m :: Type -> Type) a b.
MonadState s m =>
ASetter s s a b -> b -> m ()
Lens..= Supply
uniqs3
NormalizeSession Term -> MaybeT (RewriteMonad NormalizeState) Term
forall (t :: (Type -> Type) -> Type -> Type) (m :: Type -> Type) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (Term -> NormalizeSession Term
forall a extra. a -> RewriteMonad extra a
changed Term
lb)
go TyConMap
_ a
_ Type
ty = [Char] -> NormalizeSession Term
forall a. HasCallStack => [Char] -> a
error ([Char] -> NormalizeSession Term)
-> [Char] -> NormalizeSession Term
forall a b. (a -> b) -> a -> b
$ $([Char]
curLoc) [Char] -> [Char] -> [Char]
forall a. [a] -> [a] -> [a]
++ [Char]
"reduceTraverse: argument does not have a vector type: " [Char] -> [Char] -> [Char]
forall a. [a] -> [a] -> [a]
++ Type -> [Char]
forall p. PrettyPrec p => p -> [Char]
showPpr Type
ty
mkTravVec :: TyConName
-> DataCon
-> DataCon
-> Term
-> Term
-> Term
-> Type
-> Integer
-> [Term]
-> Term
mkTravVec :: TyConName
-> DataCon
-> DataCon
-> Term
-> Term
-> Term
-> Type
-> Integer
-> [Term]
-> Term
mkTravVec TyConName
vecTc DataCon
nilCon DataCon
consCon Term
pureTm Term
apTm Term
fmapTm Type
bTy = Integer -> [Term] -> Term
go
where
go :: Integer -> [Term] -> Term
go :: Integer -> [Term] -> Term
go Integer
_ [] = Term -> [Either Term Type] -> Term
mkApps Term
pureTm [Type -> Either Term Type
forall a b. b -> Either a b
Right (TyConName -> [Type] -> Type
mkTyConApp TyConName
vecTc [LitTy -> Type
LitTy (Integer -> LitTy
NumTy Integer
0),Type
bTy])
,Term -> Either Term Type
forall a b. a -> Either a b
Left (Term -> [Either Term Type] -> Term
mkApps (DataCon -> Term
Data DataCon
nilCon)
[Type -> Either Term Type
forall a b. b -> Either a b
Right (LitTy -> Type
LitTy (Integer -> LitTy
NumTy Integer
0))
,Type -> Either Term Type
forall a b. b -> Either a b
Right Type
bTy
,Term -> Either Term Type
forall a b. a -> Either a b
Left (Type -> Term
primCo Type
nilCoTy)])]
go Integer
n (Term
x:[Term]
xs) = Term -> [Either Term Type] -> Term
mkApps Term
apTm
[Type -> Either Term Type
forall a b. b -> Either a b
Right (TyConName -> [Type] -> Type
mkTyConApp TyConName
vecTc [LitTy -> Type
LitTy (Integer -> LitTy
NumTy (Integer
nInteger -> Integer -> Integer
forall a. Num a => a -> a -> a
-Integer
1)),Type
bTy])
,Type -> Either Term Type
forall a b. b -> Either a b
Right (TyConName -> [Type] -> Type
mkTyConApp TyConName
vecTc [LitTy -> Type
LitTy (Integer -> LitTy
NumTy Integer
n),Type
bTy])
,Term -> Either Term Type
forall a b. a -> Either a b
Left (Term -> [Either Term Type] -> Term
mkApps Term
fmapTm [Type -> Either Term Type
forall a b. b -> Either a b
Right Type
bTy
,Type -> Either Term Type
forall a b. b -> Either a b
Right (Type -> Type -> Type
mkFunTy (TyConName -> [Type] -> Type
mkTyConApp TyConName
vecTc [LitTy -> Type
LitTy (Integer -> LitTy
NumTy (Integer
nInteger -> Integer -> Integer
forall a. Num a => a -> a -> a
-Integer
1)),Type
bTy])
(TyConName -> [Type] -> Type
mkTyConApp TyConName
vecTc [LitTy -> Type
LitTy (Integer -> LitTy
NumTy Integer
n),Type
bTy]))
,Term -> Either Term Type
forall a b. a -> Either a b
Left (Term -> [Either Term Type] -> Term
mkApps (DataCon -> Term
Data DataCon
consCon)
[Type -> Either Term Type
forall a b. b -> Either a b
Right (LitTy -> Type
LitTy (Integer -> LitTy
NumTy Integer
n))
,Type -> Either Term Type
forall a b. b -> Either a b
Right Type
bTy
,Type -> Either Term Type
forall a b. b -> Either a b
Right (LitTy -> Type
LitTy (Integer -> LitTy
NumTy (Integer
nInteger -> Integer -> Integer
forall a. Num a => a -> a -> a
-Integer
1)))
,Term -> Either Term Type
forall a b. a -> Either a b
Left (Type -> Term
primCo (Integer -> Type
consCoTy Integer
n))
])
,Term -> Either Term Type
forall a b. a -> Either a b
Left Term
x])
,Term -> Either Term Type
forall a b. a -> Either a b
Left (Integer -> [Term] -> Term
go (Integer
nInteger -> Integer -> Integer
forall a. Num a => a -> a -> a
-Integer
1) [Term]
xs)]
nilCoTy :: Type
nilCoTy = case DataCon -> [Type] -> Maybe [Type]
dataConInstArgTys DataCon
nilCon [(LitTy -> Type
LitTy (Integer -> LitTy
NumTy Integer
0)), Type
bTy] of
Just (Type
x:[Type]
_) -> Type
x
Maybe [Type]
_ -> [Char] -> Type
forall a. HasCallStack => [Char] -> a
error [Char]
"impossible"
consCoTy :: Integer -> Type
consCoTy Integer
n = case DataCon -> [Type] -> Maybe [Type]
dataConInstArgTys DataCon
consCon
[(LitTy -> Type
LitTy (Integer -> LitTy
NumTy Integer
n))
,Type
bTy
,(LitTy -> Type
LitTy (Integer -> LitTy
NumTy (Integer
nInteger -> Integer -> Integer
forall a. Num a => a -> a -> a
-Integer
1)))] of
Just (Type
x:[Type]
_) -> Type
x
Maybe [Type]
_ -> [Char] -> Type
forall a. HasCallStack => [Char] -> a
error [Char]
"impossible"
reduceFoldr
:: PrimInfo
-> Integer
-> Type
-> Term
-> Term
-> Term
-> TransformContext
-> NormalizeSession Term
reduceFoldr :: PrimInfo
-> Integer
-> Type
-> Term
-> Term
-> Term
-> TransformContext
-> NormalizeSession Term
reduceFoldr PrimInfo
_ Integer
0 Type
_ Term
_ Term
start Term
_ TransformContext
_ = Term -> NormalizeSession Term
forall a extra. a -> RewriteMonad extra a
changed Term
start
reduceFoldr PrimInfo
foldrPrimInfo Integer
n Type
aTy Term
fun Term
start Term
arg TransformContext
_ctx = do
TyConMap
tcm <- Getting TyConMap RewriteEnv TyConMap
-> RewriteMonad NormalizeState TyConMap
forall s (m :: Type -> Type) a.
MonadReader s m =>
Getting a s a -> m a
Lens.view Getting TyConMap RewriteEnv TyConMap
Getter RewriteEnv TyConMap
tcCache
let ty :: Type
ty = TyConMap -> Term -> Type
forall a. InferType a => TyConMap -> a -> Type
inferCoreTypeOf TyConMap
tcm Term
arg
Term -> NormalizeSession Term
forall a extra. a -> RewriteMonad extra a
changed (TyConMap -> Type -> Term
go TyConMap
tcm Type
ty)
where
go :: TyConMap -> Type -> Term
go TyConMap
tcm (TyConMap -> Type -> Maybe Type
coreView1 TyConMap
tcm -> Just Type
ty') = TyConMap -> Type -> Term
go TyConMap
tcm Type
ty'
go TyConMap
tcm (Type -> TypeView
tyView -> TyConApp TyConName
vecTcNm [Type]
_)
| TyConName -> OccName
forall a. Name a -> OccName
nameOcc TyConName
vecTcNm OccName -> OccName -> Bool
forall a. Eq a => a -> a -> Bool
== OccName
"Clash.Sized.Vector.Vec"
, Just TyCon
vecTc <- TyConName -> TyConMap -> Maybe TyCon
forall a b. Uniquable a => a -> UniqMap b -> Maybe b
UniqMap.lookup TyConName
vecTcNm TyConMap
tcm
, [DataCon
_nilCon, DataCon
consCon] <- TyCon -> [DataCon]
tyConDataCons TyCon
vecTc
= let
(Term
a, Term
as) = DataCon -> Type -> Integer -> Term -> (Term, Term)
extractHeadTail DataCon
consCon Type
aTy Integer
n Term
arg
b :: Term
b = Term -> [Either Term Type] -> Term
mkApps (PrimInfo -> Term
Prim PrimInfo
foldrPrimInfo) [ Type -> Either Term Type
forall a b. b -> Either a b
Right Type
aTy
, Type -> Either Term Type
forall a b. b -> Either a b
Right (TyConMap -> Term -> Type
forall a. InferType a => TyConMap -> a -> Type
inferCoreTypeOf TyConMap
tcm Term
start)
, Type -> Either Term Type
forall a b. b -> Either a b
Right (LitTy -> Type
LitTy (Integer -> LitTy
NumTy (Integer
n Integer -> Integer -> Integer
forall a. Num a => a -> a -> a
- Integer
1)))
, Term -> Either Term Type
forall a b. a -> Either a b
Left Term
fun
, Term -> Either Term Type
forall a b. a -> Either a b
Left Term
start
, Term -> Either Term Type
forall a b. a -> Either a b
Left Term
as ]
in
Term -> [Either Term Type] -> Term
mkApps Term
fun [Term -> Either Term Type
forall a b. a -> Either a b
Left Term
a, Term -> Either Term Type
forall a b. a -> Either a b
Left Term
b]
go TyConMap
_ Type
ty =
[Char] -> Term
forall a. HasCallStack => [Char] -> a
error ([Char] -> Term) -> [Char] -> Term
forall a b. (a -> b) -> a -> b
$ $([Char]
curLoc) [Char] -> [Char] -> [Char]
forall a. [a] -> [a] -> [a]
++ [I.i|
reduceFoldr: argument does not have a vector type:
#{showPpr ty}
|]
reduceFold
:: Integer
-> Type
-> Term
-> Term
-> TransformContext
-> NormalizeSession Term
reduceFold :: Integer
-> Type
-> Term
-> Term
-> TransformContext
-> NormalizeSession Term
reduceFold Integer
n Type
aTy Term
fun Term
arg (TransformContext InScopeSet
is0 Context
ctx) = do
TyConMap
tcm <- Getting TyConMap RewriteEnv TyConMap
-> RewriteMonad NormalizeState TyConMap
forall s (m :: Type -> Type) a.
MonadReader s m =>
Getting a s a -> m a
Lens.view Getting TyConMap RewriteEnv TyConMap
Getter RewriteEnv TyConMap
tcCache
let ty :: Type
ty = TyConMap -> Term -> Type
forall a. InferType a => TyConMap -> a -> Type
inferCoreTypeOf TyConMap
tcm Term
arg
TyConMap -> Type -> NormalizeSession Term
go TyConMap
tcm Type
ty
where
go :: TyConMap -> Type -> NormalizeSession Term
go TyConMap
tcm (TyConMap -> Type -> Maybe Type
coreView1 TyConMap
tcm -> Just Type
ty') = TyConMap -> Type -> NormalizeSession Term
go TyConMap
tcm Type
ty'
go TyConMap
tcm (Type -> TypeView
tyView -> TyConApp TyConName
vecTcNm [Type]
_)
| (Just TyCon
vecTc) <- TyConName -> TyConMap -> Maybe TyCon
forall a b. Uniquable a => a -> UniqMap b -> Maybe b
UniqMap.lookup TyConName
vecTcNm TyConMap
tcm
, TyConName -> OccName
forall a. Name a -> OccName
nameOcc TyConName
vecTcNm OccName -> OccName -> Bool
forall a. Eq a => a -> a -> Bool
== OccName
"Clash.Sized.Vector.Vec"
, [DataCon
_,DataCon
consCon] <- TyCon -> [DataCon]
tyConDataCons TyCon
vecTc
= do
Supply
uniqs0 <- Getting Supply (RewriteState NormalizeState) Supply
-> RewriteMonad NormalizeState Supply
forall s (m :: Type -> Type) a.
MonadState s m =>
Getting a s a -> m a
Lens.use Getting Supply (RewriteState NormalizeState) Supply
forall extra. Lens' (RewriteState extra) Supply
uniqSupply
Term
fun1 <- NormRewrite
constantPropagation (InScopeSet -> Context -> TransformContext
TransformContext InScopeSet
is0 (Maybe (OccName, Unique, Unique) -> CoreContext
AppArg Maybe (OccName, Unique, Unique)
forall a. Maybe a
NothingCoreContext -> Context -> Context
forall a. a -> [a] -> [a]
:Context
ctx)) Term
fun
let is1 :: InScopeSet
is1 = InScopeSet -> [Id] -> InScopeSet
forall a. InScopeSet -> [Var a] -> InScopeSet
extendInScopeSetList InScopeSet
is0 (Term -> [Id]
collectTermIds Term
fun1)
(Supply
uniqs1,(NonEmpty Term
vars,NonEmpty (Id, Term)
elems)) = (NonEmpty (Term, NonEmpty (Id, Term))
-> (NonEmpty Term, NonEmpty (Id, Term)))
-> (Supply, NonEmpty (Term, NonEmpty (Id, Term)))
-> (Supply, (NonEmpty Term, NonEmpty (Id, Term)))
forall (p :: Type -> Type -> Type) b c a.
Bifunctor p =>
(b -> c) -> p a b -> p a c
second ((NonEmpty (NonEmpty (Id, Term)) -> NonEmpty (Id, Term))
-> (NonEmpty Term, NonEmpty (NonEmpty (Id, Term)))
-> (NonEmpty Term, NonEmpty (Id, Term))
forall (p :: Type -> Type -> Type) b c a.
Bifunctor p =>
(b -> c) -> p a b -> p a c
second NonEmpty (NonEmpty (Id, Term)) -> NonEmpty (Id, Term)
forall a. Semigroup a => NonEmpty a -> a
sconcat ((NonEmpty Term, NonEmpty (NonEmpty (Id, Term)))
-> (NonEmpty Term, NonEmpty (Id, Term)))
-> (NonEmpty (Term, NonEmpty (Id, Term))
-> (NonEmpty Term, NonEmpty (NonEmpty (Id, Term))))
-> NonEmpty (Term, NonEmpty (Id, Term))
-> (NonEmpty Term, NonEmpty (Id, Term))
forall b c a. (b -> c) -> (a -> b) -> a -> c
. NonEmpty (Term, NonEmpty (Id, Term))
-> (NonEmpty Term, NonEmpty (NonEmpty (Id, Term)))
forall (f :: Type -> Type) a b. Functor f => f (a, b) -> (f a, f b)
NE.unzip)
((Supply, NonEmpty (Term, NonEmpty (Id, Term)))
-> (Supply, (NonEmpty Term, NonEmpty (Id, Term))))
-> (Supply, NonEmpty (Term, NonEmpty (Id, Term)))
-> (Supply, (NonEmpty Term, NonEmpty (Id, Term)))
forall a b. (a -> b) -> a -> b
$ HasCallStack =>
Supply
-> InScopeSet
-> DataCon
-> Type
-> Char
-> Integer
-> Term
-> (Supply, NonEmpty (Term, NonEmpty (Id, Term)))
Supply
-> InScopeSet
-> DataCon
-> Type
-> Char
-> Integer
-> Term
-> (Supply, NonEmpty (Term, NonEmpty (Id, Term)))
extractElems Supply
uniqs0 InScopeSet
is1 DataCon
consCon Type
aTy Char
'F' Integer
n Term
arg
lbody :: Term
lbody = Term -> [Term] -> Term
foldV Term
fun1 (NonEmpty Term -> [Term]
forall a. NonEmpty a -> [a]
NE.toList NonEmpty Term
vars)
lb :: Term
lb = [(Id, Term)] -> Term -> Term
Letrec (NonEmpty (Id, Term) -> [(Id, Term)]
forall a. NonEmpty a -> [a]
NE.init NonEmpty (Id, Term)
elems) Term
lbody
(Supply -> Identity Supply)
-> RewriteState NormalizeState
-> Identity (RewriteState NormalizeState)
forall extra. Lens' (RewriteState extra) Supply
uniqSupply ((Supply -> Identity Supply)
-> RewriteState NormalizeState
-> Identity (RewriteState NormalizeState))
-> Supply -> RewriteMonad NormalizeState ()
forall s (m :: Type -> Type) a b.
MonadState s m =>
ASetter s s a b -> b -> m ()
Lens..= Supply
uniqs1
Term -> NormalizeSession Term
forall a extra. a -> RewriteMonad extra a
changed Term
lb
go TyConMap
_ Type
ty = [Char] -> NormalizeSession Term
forall a. HasCallStack => [Char] -> a
error ([Char] -> NormalizeSession Term)
-> [Char] -> NormalizeSession Term
forall a b. (a -> b) -> a -> b
$ $([Char]
curLoc) [Char] -> [Char] -> [Char]
forall a. [a] -> [a] -> [a]
++ [Char]
"reduceFold: argument does not have a vector type: " [Char] -> [Char] -> [Char]
forall a. [a] -> [a] -> [a]
++ Type -> [Char]
forall p. PrettyPrec p => p -> [Char]
showPpr Type
ty
foldV :: Term -> [Term] -> Term
foldV Term
_ [Term
a] = Term
a
foldV Term
f [Term]
as = let ([Term]
l,[Term]
r) = Unique -> [Term] -> ([Term], [Term])
forall a. Unique -> [a] -> ([a], [a])
splitAt ([Term] -> Unique
forall (t :: Type -> Type) a. Foldable t => t a -> Unique
length [Term]
as Unique -> Unique -> Unique
forall a. Integral a => a -> a -> a
`div` Unique
2) [Term]
as
lF :: Term
lF = Term -> [Term] -> Term
foldV Term
f [Term]
l
rF :: Term
rF = Term -> [Term] -> Term
foldV Term
f [Term]
r
in Term -> [Either Term Type] -> Term
mkApps Term
f [Term -> Either Term Type
forall a b. a -> Either a b
Left Term
lF, Term -> Either Term Type
forall a b. a -> Either a b
Left Term
rF]
reduceDFold
:: Integer
-> Type
-> Term
-> Term
-> Term
-> Term
-> Term
-> TransformContext
-> NormalizeSession Term
reduceDFold :: Integer
-> Type
-> Term
-> Term
-> Term
-> Term
-> Term
-> TransformContext
-> NormalizeSession Term
reduceDFold Integer
0 Type
_ Term
_ Term
_ Term
_ Term
start Term
_ TransformContext
_ = Term -> NormalizeSession Term
forall a extra. a -> RewriteMonad extra a
changed Term
start
reduceDFold Integer
n Type
aTy Term
_kn Term
_motive Term
fun Term
start Term
arg (TransformContext InScopeSet
is0 Context
_ctx) = do
TyConMap
tcm <- Getting TyConMap RewriteEnv TyConMap
-> RewriteMonad NormalizeState TyConMap
forall s (m :: Type -> Type) a.
MonadReader s m =>
Getting a s a -> m a
Lens.view Getting TyConMap RewriteEnv TyConMap
Getter RewriteEnv TyConMap
tcCache
let ty :: Type
ty = TyConMap -> Term -> Type
forall a. InferType a => TyConMap -> a -> Type
inferCoreTypeOf TyConMap
tcm Term
arg
TyConMap -> Type -> NormalizeSession Term
forall extra. TyConMap -> Type -> RewriteMonad extra Term
go TyConMap
tcm Type
ty
where
go :: TyConMap -> Type -> RewriteMonad extra Term
go TyConMap
tcm (TyConMap -> Type -> Maybe Type
coreView1 TyConMap
tcm -> Just Type
ty') = TyConMap -> Type -> RewriteMonad extra Term
go TyConMap
tcm Type
ty'
go TyConMap
tcm (Type -> TypeView
tyView -> TyConApp TyConName
vecTcNm [Type]
_)
| (Just TyCon
vecTc) <- TyConName -> TyConMap -> Maybe TyCon
forall a b. Uniquable a => a -> UniqMap b -> Maybe b
UniqMap.lookup TyConName
vecTcNm TyConMap
tcm
, TyConName -> OccName
forall a. Name a -> OccName
nameOcc TyConName
vecTcNm OccName -> OccName -> Bool
forall a. Eq a => a -> a -> Bool
== OccName
"Clash.Sized.Vector.Vec"
, [DataCon
_,DataCon
consCon] <- TyCon -> [DataCon]
tyConDataCons TyCon
vecTc
= do
Supply
uniqs0 <- Getting Supply (RewriteState extra) Supply
-> RewriteMonad extra Supply
forall s (m :: Type -> Type) a.
MonadState s m =>
Getting a s a -> m a
Lens.use Getting Supply (RewriteState extra) Supply
forall extra. Lens' (RewriteState extra) Supply
uniqSupply
let is1 :: InScopeSet
is1 = InScopeSet -> [Id] -> InScopeSet
forall a. InScopeSet -> [Var a] -> InScopeSet
extendInScopeSetList InScopeSet
is0 (Term -> [Id]
collectTermIds Term
fun)
(Supply
uniqs1,(NonEmpty Term
vars,NonEmpty (Id, Term)
elems)) = (NonEmpty (Term, NonEmpty (Id, Term))
-> (NonEmpty Term, NonEmpty (Id, Term)))
-> (Supply, NonEmpty (Term, NonEmpty (Id, Term)))
-> (Supply, (NonEmpty Term, NonEmpty (Id, Term)))
forall (p :: Type -> Type -> Type) b c a.
Bifunctor p =>
(b -> c) -> p a b -> p a c
second ((NonEmpty (NonEmpty (Id, Term)) -> NonEmpty (Id, Term))
-> (NonEmpty Term, NonEmpty (NonEmpty (Id, Term)))
-> (NonEmpty Term, NonEmpty (Id, Term))
forall (p :: Type -> Type -> Type) b c a.
Bifunctor p =>
(b -> c) -> p a b -> p a c
second NonEmpty (NonEmpty (Id, Term)) -> NonEmpty (Id, Term)
forall a. Semigroup a => NonEmpty a -> a
sconcat ((NonEmpty Term, NonEmpty (NonEmpty (Id, Term)))
-> (NonEmpty Term, NonEmpty (Id, Term)))
-> (NonEmpty (Term, NonEmpty (Id, Term))
-> (NonEmpty Term, NonEmpty (NonEmpty (Id, Term))))
-> NonEmpty (Term, NonEmpty (Id, Term))
-> (NonEmpty Term, NonEmpty (Id, Term))
forall b c a. (b -> c) -> (a -> b) -> a -> c
. NonEmpty (Term, NonEmpty (Id, Term))
-> (NonEmpty Term, NonEmpty (NonEmpty (Id, Term)))
forall (f :: Type -> Type) a b. Functor f => f (a, b) -> (f a, f b)
NE.unzip)
((Supply, NonEmpty (Term, NonEmpty (Id, Term)))
-> (Supply, (NonEmpty Term, NonEmpty (Id, Term))))
-> (Supply, NonEmpty (Term, NonEmpty (Id, Term)))
-> (Supply, (NonEmpty Term, NonEmpty (Id, Term)))
forall a b. (a -> b) -> a -> b
$ HasCallStack =>
Supply
-> InScopeSet
-> DataCon
-> Type
-> Char
-> Integer
-> Term
-> (Supply, NonEmpty (Term, NonEmpty (Id, Term)))
Supply
-> InScopeSet
-> DataCon
-> Type
-> Char
-> Integer
-> Term
-> (Supply, NonEmpty (Term, NonEmpty (Id, Term)))
extractElems Supply
uniqs0 InScopeSet
is1 DataCon
consCon Type
aTy Char
'D' Integer
n Term
arg
snatDc :: DataCon
snatDc = DataCon -> Maybe DataCon -> DataCon
forall a. a -> Maybe a -> a
Maybe.fromMaybe ([Char] -> DataCon
forall a. HasCallStack => [Char] -> a
error [Char]
"reduceDFold: faild to build SNat") (Maybe DataCon -> DataCon) -> Maybe DataCon -> DataCon
forall a b. (a -> b) -> a -> b
$ do
(Either TyVar Type
_ltv:Right Type
snTy:[Either TyVar Type]
_,Type
_) <- ([Either TyVar Type], Type) -> Maybe ([Either TyVar Type], Type)
forall (f :: Type -> Type) a. Applicative f => a -> f a
pure (Type -> ([Either TyVar Type], Type)
splitFunForallTy (TyConMap -> Term -> Type
forall a. InferType a => TyConMap -> a -> Type
inferCoreTypeOf TyConMap
tcm Term
fun))
(TyConApp TyConName
snatTcNm [Type]
_) <- TypeView -> Maybe TypeView
forall (f :: Type -> Type) a. Applicative f => a -> f a
pure (Type -> TypeView
tyView Type
snTy)
TyCon
snatTc <- TyConName -> TyConMap -> Maybe TyCon
forall a b. Uniquable a => a -> UniqMap b -> Maybe b
UniqMap.lookup TyConName
snatTcNm TyConMap
tcm
[DataCon] -> Maybe DataCon
forall a. [a] -> Maybe a
Maybe.listToMaybe (TyCon -> [DataCon]
tyConDataCons TyCon
snatTc)
lbody :: Term
lbody = (Integer -> Term) -> Integer -> [Term] -> Term
doFold (DataCon -> Integer -> Term
buildSNat DataCon
snatDc) (Integer
nInteger -> Integer -> Integer
forall a. Num a => a -> a -> a
-Integer
1) (NonEmpty Term -> [Term]
forall a. NonEmpty a -> [a]
NE.toList NonEmpty Term
vars)
lb :: Term
lb = [(Id, Term)] -> Term -> Term
Letrec (NonEmpty (Id, Term) -> [(Id, Term)]
forall a. NonEmpty a -> [a]
NE.init NonEmpty (Id, Term)
elems) Term
lbody
(Supply -> Identity Supply)
-> RewriteState extra -> Identity (RewriteState extra)
forall extra. Lens' (RewriteState extra) Supply
uniqSupply ((Supply -> Identity Supply)
-> RewriteState extra -> Identity (RewriteState extra))
-> Supply -> RewriteMonad extra ()
forall s (m :: Type -> Type) a b.
MonadState s m =>
ASetter s s a b -> b -> m ()
Lens..= Supply
uniqs1
Term -> RewriteMonad extra Term
forall a extra. a -> RewriteMonad extra a
changed Term
lb
go TyConMap
_ Type
ty = [Char] -> RewriteMonad extra Term
forall a. HasCallStack => [Char] -> a
error ([Char] -> RewriteMonad extra Term)
-> [Char] -> RewriteMonad extra Term
forall a b. (a -> b) -> a -> b
$ $([Char]
curLoc) [Char] -> [Char] -> [Char]
forall a. [a] -> [a] -> [a]
++ [Char]
"reduceDFold: argument does not have a vector type: " [Char] -> [Char] -> [Char]
forall a. [a] -> [a] -> [a]
++ Type -> [Char]
forall p. PrettyPrec p => p -> [Char]
showPpr Type
ty
doFold :: (Integer -> Term) -> Integer -> [Term] -> Term
doFold Integer -> Term
_ Integer
_ [] = Term
start
doFold Integer -> Term
snDc Integer
k (Term
x:[Term]
xs) = Term -> [Either Term Type] -> Term
mkApps Term
fun
[Type -> Either Term Type
forall a b. b -> Either a b
Right (LitTy -> Type
LitTy (Integer -> LitTy
NumTy Integer
k))
,Term -> Either Term Type
forall a b. a -> Either a b
Left (Integer -> Term
snDc Integer
k)
,Term -> Either Term Type
forall a b. a -> Either a b
Left Term
x
,Term -> Either Term Type
forall a b. a -> Either a b
Left ((Integer -> Term) -> Integer -> [Term] -> Term
doFold Integer -> Term
snDc (Integer
kInteger -> Integer -> Integer
forall a. Num a => a -> a -> a
-Integer
1) [Term]
xs)
]
reduceHead
:: Integer
-> Type
-> Term
-> TransformContext
-> NormalizeSession Term
reduceHead :: Integer
-> Type -> Term -> TransformContext -> NormalizeSession Term
reduceHead Integer
n Type
aTy Term
vArg (TransformContext InScopeSet
inScope Context
_ctx) = do
TyConMap
tcm <- Getting TyConMap RewriteEnv TyConMap
-> RewriteMonad NormalizeState TyConMap
forall s (m :: Type -> Type) a.
MonadReader s m =>
Getting a s a -> m a
Lens.view Getting TyConMap RewriteEnv TyConMap
Getter RewriteEnv TyConMap
tcCache
let ty :: Type
ty = TyConMap -> Term -> Type
forall a. InferType a => TyConMap -> a -> Type
inferCoreTypeOf TyConMap
tcm Term
vArg
TyConMap -> Type -> NormalizeSession Term
forall extra. TyConMap -> Type -> RewriteMonad extra Term
go TyConMap
tcm Type
ty
where
go :: TyConMap -> Type -> RewriteMonad extra Term
go TyConMap
tcm (TyConMap -> Type -> Maybe Type
coreView1 TyConMap
tcm -> Just Type
ty') = TyConMap -> Type -> RewriteMonad extra Term
go TyConMap
tcm Type
ty'
go TyConMap
tcm (Type -> TypeView
tyView -> TyConApp TyConName
vecTcNm [Type]
_)
| (Just TyCon
vecTc) <- TyConName -> TyConMap -> Maybe TyCon
forall a b. Uniquable a => a -> UniqMap b -> Maybe b
UniqMap.lookup TyConName
vecTcNm TyConMap
tcm
, TyConName -> OccName
forall a. Name a -> OccName
nameOcc TyConName
vecTcNm OccName -> OccName -> Bool
forall a. Eq a => a -> a -> Bool
== OccName
"Clash.Sized.Vector.Vec"
, [DataCon
_,DataCon
consCon] <- TyCon -> [DataCon]
tyConDataCons TyCon
vecTc
= do
Supply
uniqs0 <- Getting Supply (RewriteState extra) Supply
-> RewriteMonad extra Supply
forall s (m :: Type -> Type) a.
MonadState s m =>
Getting a s a -> m a
Lens.use Getting Supply (RewriteState extra) Supply
forall extra. Lens' (RewriteState extra) Supply
uniqSupply
let (Supply
uniqs1,(NonEmpty Term
vars,NonEmpty (Id, Term)
elems)) = (NonEmpty (Term, NonEmpty (Id, Term))
-> (NonEmpty Term, NonEmpty (Id, Term)))
-> (Supply, NonEmpty (Term, NonEmpty (Id, Term)))
-> (Supply, (NonEmpty Term, NonEmpty (Id, Term)))
forall (p :: Type -> Type -> Type) b c a.
Bifunctor p =>
(b -> c) -> p a b -> p a c
second ((NonEmpty (NonEmpty (Id, Term)) -> NonEmpty (Id, Term))
-> (NonEmpty Term, NonEmpty (NonEmpty (Id, Term)))
-> (NonEmpty Term, NonEmpty (Id, Term))
forall (p :: Type -> Type -> Type) b c a.
Bifunctor p =>
(b -> c) -> p a b -> p a c
second NonEmpty (NonEmpty (Id, Term)) -> NonEmpty (Id, Term)
forall a. Semigroup a => NonEmpty a -> a
sconcat ((NonEmpty Term, NonEmpty (NonEmpty (Id, Term)))
-> (NonEmpty Term, NonEmpty (Id, Term)))
-> (NonEmpty (Term, NonEmpty (Id, Term))
-> (NonEmpty Term, NonEmpty (NonEmpty (Id, Term))))
-> NonEmpty (Term, NonEmpty (Id, Term))
-> (NonEmpty Term, NonEmpty (Id, Term))
forall b c a. (b -> c) -> (a -> b) -> a -> c
. NonEmpty (Term, NonEmpty (Id, Term))
-> (NonEmpty Term, NonEmpty (NonEmpty (Id, Term)))
forall (f :: Type -> Type) a b. Functor f => f (a, b) -> (f a, f b)
NE.unzip)
((Supply, NonEmpty (Term, NonEmpty (Id, Term)))
-> (Supply, (NonEmpty Term, NonEmpty (Id, Term))))
-> (Supply, NonEmpty (Term, NonEmpty (Id, Term)))
-> (Supply, (NonEmpty Term, NonEmpty (Id, Term)))
forall a b. (a -> b) -> a -> b
$ HasCallStack =>
Supply
-> InScopeSet
-> DataCon
-> Type
-> Char
-> Integer
-> Term
-> (Supply, NonEmpty (Term, NonEmpty (Id, Term)))
Supply
-> InScopeSet
-> DataCon
-> Type
-> Char
-> Integer
-> Term
-> (Supply, NonEmpty (Term, NonEmpty (Id, Term)))
extractElems Supply
uniqs0 InScopeSet
inScope DataCon
consCon Type
aTy Char
'H' Integer
n Term
vArg
lb :: Term
lb = [(Id, Term)] -> Term -> Term
Letrec [NonEmpty (Id, Term) -> (Id, Term)
forall a. NonEmpty a -> a
NE.head NonEmpty (Id, Term)
elems] (NonEmpty Term -> Term
forall a. NonEmpty a -> a
NE.head NonEmpty Term
vars)
(Supply -> Identity Supply)
-> RewriteState extra -> Identity (RewriteState extra)
forall extra. Lens' (RewriteState extra) Supply
uniqSupply ((Supply -> Identity Supply)
-> RewriteState extra -> Identity (RewriteState extra))
-> Supply -> RewriteMonad extra ()
forall s (m :: Type -> Type) a b.
MonadState s m =>
ASetter s s a b -> b -> m ()
Lens..= Supply
uniqs1
Term -> RewriteMonad extra Term
forall a extra. a -> RewriteMonad extra a
changed Term
lb
go TyConMap
_ Type
ty = [Char] -> RewriteMonad extra Term
forall a. HasCallStack => [Char] -> a
error ([Char] -> RewriteMonad extra Term)
-> [Char] -> RewriteMonad extra Term
forall a b. (a -> b) -> a -> b
$ $([Char]
curLoc) [Char] -> [Char] -> [Char]
forall a. [a] -> [a] -> [a]
++ [Char]
"reduceHead: argument does not have a vector type: " [Char] -> [Char] -> [Char]
forall a. [a] -> [a] -> [a]
++ Type -> [Char]
forall p. PrettyPrec p => p -> [Char]
showPpr Type
ty
reduceTail
:: Integer
-> Type
-> Term
-> TransformContext
-> NormalizeSession Term
reduceTail :: Integer
-> Type -> Term -> TransformContext -> NormalizeSession Term
reduceTail Integer
n Type
aTy Term
vArg (TransformContext InScopeSet
inScope Context
_ctx) = do
TyConMap
tcm <- Getting TyConMap RewriteEnv TyConMap
-> RewriteMonad NormalizeState TyConMap
forall s (m :: Type -> Type) a.
MonadReader s m =>
Getting a s a -> m a
Lens.view Getting TyConMap RewriteEnv TyConMap
Getter RewriteEnv TyConMap
tcCache
let ty :: Type
ty = TyConMap -> Term -> Type
forall a. InferType a => TyConMap -> a -> Type
inferCoreTypeOf TyConMap
tcm Term
vArg
TyConMap -> Type -> NormalizeSession Term
forall extra. TyConMap -> Type -> RewriteMonad extra Term
go TyConMap
tcm Type
ty
where
go :: TyConMap -> Type -> RewriteMonad extra Term
go TyConMap
tcm (TyConMap -> Type -> Maybe Type
coreView1 TyConMap
tcm -> Just Type
ty') = TyConMap -> Type -> RewriteMonad extra Term
go TyConMap
tcm Type
ty'
go TyConMap
tcm (Type -> TypeView
tyView -> TyConApp TyConName
vecTcNm [Type]
_)
| (Just TyCon
vecTc) <- TyConName -> TyConMap -> Maybe TyCon
forall a b. Uniquable a => a -> UniqMap b -> Maybe b
UniqMap.lookup TyConName
vecTcNm TyConMap
tcm
, TyConName -> OccName
forall a. Name a -> OccName
nameOcc TyConName
vecTcNm OccName -> OccName -> Bool
forall a. Eq a => a -> a -> Bool
== OccName
"Clash.Sized.Vector.Vec"
, [DataCon
_,DataCon
consCon] <- TyCon -> [DataCon]
tyConDataCons TyCon
vecTc
= do
Supply
uniqs0 <- Getting Supply (RewriteState extra) Supply
-> RewriteMonad extra Supply
forall s (m :: Type -> Type) a.
MonadState s m =>
Getting a s a -> m a
Lens.use Getting Supply (RewriteState extra) Supply
forall extra. Lens' (RewriteState extra) Supply
uniqSupply
let (Supply
uniqs1,(NonEmpty Term
_,NonEmpty (Id, Term)
elems)) = (NonEmpty (Term, NonEmpty (Id, Term))
-> (NonEmpty Term, NonEmpty (Id, Term)))
-> (Supply, NonEmpty (Term, NonEmpty (Id, Term)))
-> (Supply, (NonEmpty Term, NonEmpty (Id, Term)))
forall (p :: Type -> Type -> Type) b c a.
Bifunctor p =>
(b -> c) -> p a b -> p a c
second ((NonEmpty (NonEmpty (Id, Term)) -> NonEmpty (Id, Term))
-> (NonEmpty Term, NonEmpty (NonEmpty (Id, Term)))
-> (NonEmpty Term, NonEmpty (Id, Term))
forall (p :: Type -> Type -> Type) b c a.
Bifunctor p =>
(b -> c) -> p a b -> p a c
second NonEmpty (NonEmpty (Id, Term)) -> NonEmpty (Id, Term)
forall a. Semigroup a => NonEmpty a -> a
sconcat ((NonEmpty Term, NonEmpty (NonEmpty (Id, Term)))
-> (NonEmpty Term, NonEmpty (Id, Term)))
-> (NonEmpty (Term, NonEmpty (Id, Term))
-> (NonEmpty Term, NonEmpty (NonEmpty (Id, Term))))
-> NonEmpty (Term, NonEmpty (Id, Term))
-> (NonEmpty Term, NonEmpty (Id, Term))
forall b c a. (b -> c) -> (a -> b) -> a -> c
. NonEmpty (Term, NonEmpty (Id, Term))
-> (NonEmpty Term, NonEmpty (NonEmpty (Id, Term)))
forall (f :: Type -> Type) a b. Functor f => f (a, b) -> (f a, f b)
NE.unzip)
((Supply, NonEmpty (Term, NonEmpty (Id, Term)))
-> (Supply, (NonEmpty Term, NonEmpty (Id, Term))))
-> (Supply, NonEmpty (Term, NonEmpty (Id, Term)))
-> (Supply, (NonEmpty Term, NonEmpty (Id, Term)))
forall a b. (a -> b) -> a -> b
$ HasCallStack =>
Supply
-> InScopeSet
-> DataCon
-> Type
-> Char
-> Integer
-> Term
-> (Supply, NonEmpty (Term, NonEmpty (Id, Term)))
Supply
-> InScopeSet
-> DataCon
-> Type
-> Char
-> Integer
-> Term
-> (Supply, NonEmpty (Term, NonEmpty (Id, Term)))
extractElems Supply
uniqs0 InScopeSet
inScope DataCon
consCon Type
aTy Char
'L' Integer
n Term
vArg
b :: (Id, Term)
b@(Id
tB,Term
_) = NonEmpty (Id, Term)
elems NonEmpty (Id, Term) -> Unique -> (Id, Term)
forall a. NonEmpty a -> Unique -> a
NE.!! Unique
1
lb :: Term
lb = [(Id, Term)] -> Term -> Term
Letrec [(Id, Term)
b] (Id -> Term
Var Id
tB)
(Supply -> Identity Supply)
-> RewriteState extra -> Identity (RewriteState extra)
forall extra. Lens' (RewriteState extra) Supply
uniqSupply ((Supply -> Identity Supply)
-> RewriteState extra -> Identity (RewriteState extra))
-> Supply -> RewriteMonad extra ()
forall s (m :: Type -> Type) a b.
MonadState s m =>
ASetter s s a b -> b -> m ()
Lens..= Supply
uniqs1
Term -> RewriteMonad extra Term
forall a extra. a -> RewriteMonad extra a
changed Term
lb
go TyConMap
_ Type
ty = [Char] -> RewriteMonad extra Term
forall a. HasCallStack => [Char] -> a
error ([Char] -> RewriteMonad extra Term)
-> [Char] -> RewriteMonad extra Term
forall a b. (a -> b) -> a -> b
$ $([Char]
curLoc) [Char] -> [Char] -> [Char]
forall a. [a] -> [a] -> [a]
++ [Char]
"reduceTail: argument does not have a vector type: " [Char] -> [Char] -> [Char]
forall a. [a] -> [a] -> [a]
++ Type -> [Char]
forall p. PrettyPrec p => p -> [Char]
showPpr Type
ty
reduceLast
:: Integer
-> Type
-> Term
-> TransformContext
-> NormalizeSession Term
reduceLast :: Integer
-> Type -> Term -> TransformContext -> NormalizeSession Term
reduceLast Integer
n Type
aTy Term
vArg (TransformContext InScopeSet
inScope Context
_ctx) = do
TyConMap
tcm <- Getting TyConMap RewriteEnv TyConMap
-> RewriteMonad NormalizeState TyConMap
forall s (m :: Type -> Type) a.
MonadReader s m =>
Getting a s a -> m a
Lens.view Getting TyConMap RewriteEnv TyConMap
Getter RewriteEnv TyConMap
tcCache
let ty :: Type
ty = TyConMap -> Term -> Type
forall a. InferType a => TyConMap -> a -> Type
inferCoreTypeOf TyConMap
tcm Term
vArg
TyConMap -> Type -> NormalizeSession Term
forall extra. TyConMap -> Type -> RewriteMonad extra Term
go TyConMap
tcm Type
ty
where
go :: TyConMap -> Type -> RewriteMonad extra Term
go TyConMap
tcm (TyConMap -> Type -> Maybe Type
coreView1 TyConMap
tcm -> Just Type
ty') = TyConMap -> Type -> RewriteMonad extra Term
go TyConMap
tcm Type
ty'
go TyConMap
tcm (Type -> TypeView
tyView -> TyConApp TyConName
vecTcNm [Type]
_)
| (Just TyCon
vecTc) <- TyConName -> TyConMap -> Maybe TyCon
forall a b. Uniquable a => a -> UniqMap b -> Maybe b
UniqMap.lookup TyConName
vecTcNm TyConMap
tcm
, TyConName -> OccName
forall a. Name a -> OccName
nameOcc TyConName
vecTcNm OccName -> OccName -> Bool
forall a. Eq a => a -> a -> Bool
== OccName
"Clash.Sized.Vector.Vec"
, [DataCon
_,DataCon
consCon] <- TyCon -> [DataCon]
tyConDataCons TyCon
vecTc
= do
Supply
uniqs0 <- Getting Supply (RewriteState extra) Supply
-> RewriteMonad extra Supply
forall s (m :: Type -> Type) a.
MonadState s m =>
Getting a s a -> m a
Lens.use Getting Supply (RewriteState extra) Supply
forall extra. Lens' (RewriteState extra) Supply
uniqSupply
let (Supply
uniqs1,(NonEmpty Term
_,NonEmpty (NonEmpty (Id, Term))
elems)) = (NonEmpty (Term, NonEmpty (Id, Term))
-> (NonEmpty Term, NonEmpty (NonEmpty (Id, Term))))
-> (Supply, NonEmpty (Term, NonEmpty (Id, Term)))
-> (Supply, (NonEmpty Term, NonEmpty (NonEmpty (Id, Term))))
forall (p :: Type -> Type -> Type) b c a.
Bifunctor p =>
(b -> c) -> p a b -> p a c
second NonEmpty (Term, NonEmpty (Id, Term))
-> (NonEmpty Term, NonEmpty (NonEmpty (Id, Term)))
forall (f :: Type -> Type) a b. Functor f => f (a, b) -> (f a, f b)
NE.unzip
((Supply, NonEmpty (Term, NonEmpty (Id, Term)))
-> (Supply, (NonEmpty Term, NonEmpty (NonEmpty (Id, Term)))))
-> (Supply, NonEmpty (Term, NonEmpty (Id, Term)))
-> (Supply, (NonEmpty Term, NonEmpty (NonEmpty (Id, Term))))
forall a b. (a -> b) -> a -> b
$ HasCallStack =>
Supply
-> InScopeSet
-> DataCon
-> Type
-> Char
-> Integer
-> Term
-> (Supply, NonEmpty (Term, NonEmpty (Id, Term)))
Supply
-> InScopeSet
-> DataCon
-> Type
-> Char
-> Integer
-> Term
-> (Supply, NonEmpty (Term, NonEmpty (Id, Term)))
extractElems Supply
uniqs0 InScopeSet
inScope DataCon
consCon Type
aTy Char
'L' Integer
n Term
vArg
(Id
tB,Term
_) = NonEmpty (Id, Term) -> (Id, Term)
forall a. NonEmpty a -> a
NE.head (NonEmpty (NonEmpty (Id, Term)) -> NonEmpty (Id, Term)
forall a. NonEmpty a -> a
NE.last NonEmpty (NonEmpty (Id, Term))
elems)
(Supply -> Identity Supply)
-> RewriteState extra -> Identity (RewriteState extra)
forall extra. Lens' (RewriteState extra) Supply
uniqSupply ((Supply -> Identity Supply)
-> RewriteState extra -> Identity (RewriteState extra))
-> Supply -> RewriteMonad extra ()
forall s (m :: Type -> Type) a b.
MonadState s m =>
ASetter s s a b -> b -> m ()
Lens..= Supply
uniqs1
case Integer
n of
Integer
0 -> Term -> RewriteMonad extra Term
forall a extra. a -> RewriteMonad extra a
changed (Term -> Type -> Term
TyApp (PrimInfo -> Term
Prim PrimInfo
NP.undefined) Type
aTy)
Integer
_ -> Term -> RewriteMonad extra Term
forall a extra. a -> RewriteMonad extra a
changed ([(Id, Term)] -> Term -> Term
Letrec (NonEmpty (Id, Term) -> [(Id, Term)]
forall a. NonEmpty a -> [a]
NE.init (NonEmpty (NonEmpty (Id, Term)) -> NonEmpty (Id, Term)
forall a. Semigroup a => NonEmpty a -> a
sconcat NonEmpty (NonEmpty (Id, Term))
elems)) (Id -> Term
Var Id
tB))
go TyConMap
_ Type
ty = [Char] -> RewriteMonad extra Term
forall a. HasCallStack => [Char] -> a
error ([Char] -> RewriteMonad extra Term)
-> [Char] -> RewriteMonad extra Term
forall a b. (a -> b) -> a -> b
$ $([Char]
curLoc) [Char] -> [Char] -> [Char]
forall a. [a] -> [a] -> [a]
++ [Char]
"reduceLast: argument does not have a vector type: " [Char] -> [Char] -> [Char]
forall a. [a] -> [a] -> [a]
++ Type -> [Char]
forall p. PrettyPrec p => p -> [Char]
showPpr Type
ty
reduceInit
:: PrimInfo
-> Integer
-> Type
-> Term
-> TransformContext
-> NormalizeSession Term
reduceInit :: PrimInfo
-> Integer
-> Type
-> Term
-> TransformContext
-> NormalizeSession Term
reduceInit PrimInfo
initPrimInfo Integer
n Type
aTy Term
vArg TransformContext
_ctx = do
TyConMap
tcm <- Getting TyConMap RewriteEnv TyConMap
-> RewriteMonad NormalizeState TyConMap
forall s (m :: Type -> Type) a.
MonadReader s m =>
Getting a s a -> m a
Lens.view Getting TyConMap RewriteEnv TyConMap
Getter RewriteEnv TyConMap
tcCache
let ty :: Type
ty = TyConMap -> Term -> Type
forall a. InferType a => TyConMap -> a -> Type
inferCoreTypeOf TyConMap
tcm Term
vArg
Term -> NormalizeSession Term
forall a extra. a -> RewriteMonad extra a
changed (TyConMap -> Type -> Term
go TyConMap
tcm Type
ty)
where
go :: TyConMap -> Type -> Term
go TyConMap
tcm (TyConMap -> Type -> Maybe Type
coreView1 TyConMap
tcm -> Just Type
ty') = TyConMap -> Type -> Term
go TyConMap
tcm Type
ty'
go TyConMap
tcm (Type -> TypeView
tyView -> TyConApp TyConName
vecTcNm [Type]
_)
| (Just TyCon
vecTc) <- TyConName -> TyConMap -> Maybe TyCon
forall a b. Uniquable a => a -> UniqMap b -> Maybe b
UniqMap.lookup TyConName
vecTcNm TyConMap
tcm
, TyConName -> OccName
forall a. Name a -> OccName
nameOcc TyConName
vecTcNm OccName -> OccName -> Bool
forall a. Eq a => a -> a -> Bool
== OccName
"Clash.Sized.Vector.Vec"
, [DataCon
nilCon, DataCon
consCon] <- TyCon -> [DataCon]
tyConDataCons TyCon
vecTc
= if Integer
n Integer -> Integer -> Bool
forall a. Eq a => a -> a -> Bool
== Integer
0 then
DataCon -> Type -> Term
mkVecNil DataCon
nilCon Type
aTy
else
let
nPredTy :: Either a Type
nPredTy = Type -> Either a Type
forall a b. b -> Either a b
Right (LitTy -> Type
LitTy (Integer -> LitTy
NumTy (Integer
n Integer -> Integer -> Integer
forall a. Num a => a -> a -> a
- Integer
1)))
(Term
a, Term
as0) = DataCon -> Type -> Integer -> Term -> (Term, Term)
extractHeadTail DataCon
consCon Type
aTy (Integer
nInteger -> Integer -> Integer
forall a. Num a => a -> a -> a
+Integer
1) Term
vArg
as1 :: Term
as1 = Term -> [Either Term Type] -> Term
mkApps (PrimInfo -> Term
Prim PrimInfo
initPrimInfo) [Either Term Type
forall a. Either a Type
nPredTy, Type -> Either Term Type
forall a b. b -> Either a b
Right Type
aTy, Term -> Either Term Type
forall a b. a -> Either a b
Left Term
as0]
in
HasCallStack => DataCon -> Type -> Integer -> Term -> Term -> Term
DataCon -> Type -> Integer -> Term -> Term -> Term
mkVecCons DataCon
consCon Type
aTy Integer
n Term
a Term
as1
go TyConMap
_ Type
ty =
[Char] -> Term
forall a. HasCallStack => [Char] -> a
error ([Char] -> Term) -> [Char] -> Term
forall a b. (a -> b) -> a -> b
$ $([Char]
curLoc) [Char] -> [Char] -> [Char]
forall a. [a] -> [a] -> [a]
++ [I.i|
reduceInit: argument does not have a vector type:
#{showPpr ty}
|]
reduceAppend
:: Integer
-> Integer
-> Type
-> Term
-> Term
-> TransformContext
-> NormalizeSession Term
reduceAppend :: Integer
-> Integer
-> Type
-> Term
-> Term
-> TransformContext
-> NormalizeSession Term
reduceAppend Integer
0 Integer
_ Type
_ Term
_ Term
rArg TransformContext
_ = Term -> NormalizeSession Term
forall a extra. a -> RewriteMonad extra a
changed Term
rArg
reduceAppend Integer
_ Integer
0 Type
_ Term
lArg Term
_ TransformContext
_ = Term -> NormalizeSession Term
forall a extra. a -> RewriteMonad extra a
changed Term
lArg
reduceAppend Integer
n Integer
m Type
aTy Term
lArg Term
rArg (TransformContext InScopeSet
inScope Context
_ctx) = do
TyConMap
tcm <- Getting TyConMap RewriteEnv TyConMap
-> RewriteMonad NormalizeState TyConMap
forall s (m :: Type -> Type) a.
MonadReader s m =>
Getting a s a -> m a
Lens.view Getting TyConMap RewriteEnv TyConMap
Getter RewriteEnv TyConMap
tcCache
let ty :: Type
ty = TyConMap -> Term -> Type
forall a. InferType a => TyConMap -> a -> Type
inferCoreTypeOf TyConMap
tcm Term
lArg
TyConMap -> Type -> NormalizeSession Term
forall extra. TyConMap -> Type -> RewriteMonad extra Term
go TyConMap
tcm Type
ty
where
go :: TyConMap -> Type -> RewriteMonad extra Term
go TyConMap
tcm (TyConMap -> Type -> Maybe Type
coreView1 TyConMap
tcm -> Just Type
ty') = TyConMap -> Type -> RewriteMonad extra Term
go TyConMap
tcm Type
ty'
go TyConMap
tcm (Type -> TypeView
tyView -> TyConApp TyConName
vecTcNm [Type]
_)
| (Just TyCon
vecTc) <- TyConName -> TyConMap -> Maybe TyCon
forall a b. Uniquable a => a -> UniqMap b -> Maybe b
UniqMap.lookup TyConName
vecTcNm TyConMap
tcm
, TyConName -> OccName
forall a. Name a -> OccName
nameOcc TyConName
vecTcNm OccName -> OccName -> Bool
forall a. Eq a => a -> a -> Bool
== OccName
"Clash.Sized.Vector.Vec"
, [DataCon
_,DataCon
consCon] <- TyCon -> [DataCon]
tyConDataCons TyCon
vecTc
= do Supply
uniqs0 <- Getting Supply (RewriteState extra) Supply
-> RewriteMonad extra Supply
forall s (m :: Type -> Type) a.
MonadState s m =>
Getting a s a -> m a
Lens.use Getting Supply (RewriteState extra) Supply
forall extra. Lens' (RewriteState extra) Supply
uniqSupply
let (Supply
uniqs1,(NonEmpty Term
vars,NonEmpty (Id, Term)
elems)) = (NonEmpty (Term, NonEmpty (Id, Term))
-> (NonEmpty Term, NonEmpty (Id, Term)))
-> (Supply, NonEmpty (Term, NonEmpty (Id, Term)))
-> (Supply, (NonEmpty Term, NonEmpty (Id, Term)))
forall (p :: Type -> Type -> Type) b c a.
Bifunctor p =>
(b -> c) -> p a b -> p a c
second ((NonEmpty (NonEmpty (Id, Term)) -> NonEmpty (Id, Term))
-> (NonEmpty Term, NonEmpty (NonEmpty (Id, Term)))
-> (NonEmpty Term, NonEmpty (Id, Term))
forall (p :: Type -> Type -> Type) b c a.
Bifunctor p =>
(b -> c) -> p a b -> p a c
second NonEmpty (NonEmpty (Id, Term)) -> NonEmpty (Id, Term)
forall a. Semigroup a => NonEmpty a -> a
sconcat ((NonEmpty Term, NonEmpty (NonEmpty (Id, Term)))
-> (NonEmpty Term, NonEmpty (Id, Term)))
-> (NonEmpty (Term, NonEmpty (Id, Term))
-> (NonEmpty Term, NonEmpty (NonEmpty (Id, Term))))
-> NonEmpty (Term, NonEmpty (Id, Term))
-> (NonEmpty Term, NonEmpty (Id, Term))
forall b c a. (b -> c) -> (a -> b) -> a -> c
. NonEmpty (Term, NonEmpty (Id, Term))
-> (NonEmpty Term, NonEmpty (NonEmpty (Id, Term)))
forall (f :: Type -> Type) a b. Functor f => f (a, b) -> (f a, f b)
NE.unzip)
((Supply, NonEmpty (Term, NonEmpty (Id, Term)))
-> (Supply, (NonEmpty Term, NonEmpty (Id, Term))))
-> (Supply, NonEmpty (Term, NonEmpty (Id, Term)))
-> (Supply, (NonEmpty Term, NonEmpty (Id, Term)))
forall a b. (a -> b) -> a -> b
$ HasCallStack =>
Supply
-> InScopeSet
-> DataCon
-> Type
-> Char
-> Integer
-> Term
-> (Supply, NonEmpty (Term, NonEmpty (Id, Term)))
Supply
-> InScopeSet
-> DataCon
-> Type
-> Char
-> Integer
-> Term
-> (Supply, NonEmpty (Term, NonEmpty (Id, Term)))
extractElems Supply
uniqs0 InScopeSet
inScope DataCon
consCon Type
aTy
Char
'C' Integer
n Term
lArg
lbody :: Term
lbody = DataCon -> Type -> Term -> Integer -> [Term] -> Term
appendToVec DataCon
consCon Type
aTy Term
rArg (Integer
nInteger -> Integer -> Integer
forall a. Num a => a -> a -> a
+Integer
m) (NonEmpty Term -> [Term]
forall a. NonEmpty a -> [a]
NE.toList NonEmpty Term
vars)
lb :: Term
lb = [(Id, Term)] -> Term -> Term
Letrec (NonEmpty (Id, Term) -> [(Id, Term)]
forall a. NonEmpty a -> [a]
NE.init NonEmpty (Id, Term)
elems) Term
lbody
(Supply -> Identity Supply)
-> RewriteState extra -> Identity (RewriteState extra)
forall extra. Lens' (RewriteState extra) Supply
uniqSupply ((Supply -> Identity Supply)
-> RewriteState extra -> Identity (RewriteState extra))
-> Supply -> RewriteMonad extra ()
forall s (m :: Type -> Type) a b.
MonadState s m =>
ASetter s s a b -> b -> m ()
Lens..= Supply
uniqs1
Term -> RewriteMonad extra Term
forall a extra. a -> RewriteMonad extra a
changed Term
lb
go TyConMap
_ Type
ty = [Char] -> RewriteMonad extra Term
forall a. HasCallStack => [Char] -> a
error ([Char] -> RewriteMonad extra Term)
-> [Char] -> RewriteMonad extra Term
forall a b. (a -> b) -> a -> b
$ $([Char]
curLoc) [Char] -> [Char] -> [Char]
forall a. [a] -> [a] -> [a]
++ [Char]
"reduceAppend: argument does not have a vector type: " [Char] -> [Char] -> [Char]
forall a. [a] -> [a] -> [a]
++ Type -> [Char]
forall p. PrettyPrec p => p -> [Char]
showPpr Type
ty
reduceUnconcat :: PrimInfo
-> Integer
-> Integer
-> Type
-> Term
-> Term
-> Term
-> TransformContext
-> NormalizeSession Term
reduceUnconcat :: PrimInfo
-> Integer
-> Integer
-> Type
-> Term
-> Term
-> Term
-> TransformContext
-> NormalizeSession Term
reduceUnconcat PrimInfo
unconcatPrimInfo Integer
n Integer
m Type
aTy Term
_kn Term
sm Term
arg (TransformContext InScopeSet
inScope Context
_ctx) = do
TyConMap
tcm <- Getting TyConMap RewriteEnv TyConMap
-> RewriteMonad NormalizeState TyConMap
forall s (m :: Type -> Type) a.
MonadReader s m =>
Getting a s a -> m a
Lens.view Getting TyConMap RewriteEnv TyConMap
Getter RewriteEnv TyConMap
tcCache
let ty :: Type
ty = TyConMap -> Term -> Type
forall a. InferType a => TyConMap -> a -> Type
inferCoreTypeOf TyConMap
tcm Term
arg
TyConMap -> Type -> NormalizeSession Term
forall extra. TyConMap -> Type -> RewriteMonad extra Term
go TyConMap
tcm Type
ty
where
go :: TyConMap -> Type -> RewriteMonad extra Term
go TyConMap
tcm (TyConMap -> Type -> Maybe Type
coreView1 TyConMap
tcm -> Just Type
ty') = TyConMap -> Type -> RewriteMonad extra Term
go TyConMap
tcm Type
ty'
go TyConMap
tcm (Type -> TypeView
tyView -> TyConApp TyConName
vecTcNm [Type]
_)
| (Just TyCon
vecTc) <- TyConName -> TyConMap -> Maybe TyCon
forall a b. Uniquable a => a -> UniqMap b -> Maybe b
UniqMap.lookup TyConName
vecTcNm TyConMap
tcm
, TyConName -> OccName
forall a. Name a -> OccName
nameOcc TyConName
vecTcNm OccName -> OccName -> Bool
forall a. Eq a => a -> a -> Bool
== OccName
"Clash.Sized.Vector.Vec"
, [DataCon
nilCon,DataCon
consCon] <- TyCon -> [DataCon]
tyConDataCons TyCon
vecTc
, let innerVecTy :: Type
innerVecTy = TyConName -> [Type] -> Type
mkTyConApp TyConName
vecTcNm [LitTy -> Type
LitTy (Integer -> LitTy
NumTy Integer
m), Type
aTy]
= if Integer
n Integer -> Integer -> Bool
forall a. Eq a => a -> a -> Bool
== Integer
0 then
Term -> RewriteMonad extra Term
forall a extra. a -> RewriteMonad extra a
changed (DataCon -> Type -> Term
mkVecNil DataCon
nilCon Type
innerVecTy)
else if Integer
m Integer -> Integer -> Bool
forall a. Eq a => a -> a -> Bool
== Integer
0 then do
let
nilVec :: Term
nilVec = DataCon -> Type -> Term
mkVecNil DataCon
nilCon Type
aTy
retVec :: Term
retVec = DataCon -> DataCon -> Type -> Integer -> [Term] -> Term
mkVec DataCon
nilCon DataCon
consCon Type
innerVecTy Integer
n (Unique -> Term -> [Term]
forall a. Unique -> a -> [a]
replicate (Integer -> Unique
forall a. Num a => Integer -> a
fromInteger Integer
n) Term
nilVec)
Term -> RewriteMonad extra Term
forall a extra. a -> RewriteMonad extra a
changed Term
retVec
else do
Supply
uniqs0 <- Getting Supply (RewriteState extra) Supply
-> RewriteMonad extra Supply
forall s (m :: Type -> Type) a.
MonadState s m =>
Getting a s a -> m a
Lens.use Getting Supply (RewriteState extra) Supply
forall extra. Lens' (RewriteState extra) Supply
uniqSupply
let
(Supply
uniqs1,(NonEmpty Term
vars,NonEmpty (Id, Term)
headsAndTails)) =
(NonEmpty (Term, NonEmpty (Id, Term))
-> (NonEmpty Term, NonEmpty (Id, Term)))
-> (Supply, NonEmpty (Term, NonEmpty (Id, Term)))
-> (Supply, (NonEmpty Term, NonEmpty (Id, Term)))
forall (p :: Type -> Type -> Type) b c a.
Bifunctor p =>
(b -> c) -> p a b -> p a c
second ((NonEmpty (NonEmpty (Id, Term)) -> NonEmpty (Id, Term))
-> (NonEmpty Term, NonEmpty (NonEmpty (Id, Term)))
-> (NonEmpty Term, NonEmpty (Id, Term))
forall (p :: Type -> Type -> Type) b c a.
Bifunctor p =>
(b -> c) -> p a b -> p a c
second NonEmpty (NonEmpty (Id, Term)) -> NonEmpty (Id, Term)
forall a. Semigroup a => NonEmpty a -> a
sconcat ((NonEmpty Term, NonEmpty (NonEmpty (Id, Term)))
-> (NonEmpty Term, NonEmpty (Id, Term)))
-> (NonEmpty (Term, NonEmpty (Id, Term))
-> (NonEmpty Term, NonEmpty (NonEmpty (Id, Term))))
-> NonEmpty (Term, NonEmpty (Id, Term))
-> (NonEmpty Term, NonEmpty (Id, Term))
forall b c a. (b -> c) -> (a -> b) -> a -> c
. NonEmpty (Term, NonEmpty (Id, Term))
-> (NonEmpty Term, NonEmpty (NonEmpty (Id, Term)))
forall (f :: Type -> Type) a b. Functor f => f (a, b) -> (f a, f b)
NE.unzip)
(HasCallStack =>
Supply
-> InScopeSet
-> DataCon
-> Type
-> Char
-> Integer
-> Term
-> (Supply, NonEmpty (Term, NonEmpty (Id, Term)))
Supply
-> InScopeSet
-> DataCon
-> Type
-> Char
-> Integer
-> Term
-> (Supply, NonEmpty (Term, NonEmpty (Id, Term)))
extractElems Supply
uniqs0 InScopeSet
inScope DataCon
consCon Type
aTy Char
'U' (Integer
nInteger -> Integer -> Integer
forall a. Num a => a -> a -> a
*Integer
m) Term
arg)
mvec :: Term
mvec = DataCon -> DataCon -> Type -> Integer -> [Term] -> Term
mkVec DataCon
nilCon DataCon
consCon Type
aTy Integer
m (Unique -> NonEmpty Term -> [Term]
forall a. Unique -> NonEmpty a -> [a]
NE.take (Integer -> Unique
forall a. Num a => Integer -> a
fromInteger Integer
m) NonEmpty Term
vars)
([(Id, Term)]
lbs,(Id, Term)
nextVec) = case Unique -> NonEmpty (Id, Term) -> ([(Id, Term)], [(Id, Term)])
forall a. Unique -> NonEmpty a -> ([a], [a])
NE.splitAt ((Unique
2Unique -> Unique -> Unique
forall a. Num a => a -> a -> a
*Integer -> Unique
forall a. Num a => Integer -> a
fromInteger Integer
m)Unique -> Unique -> Unique
forall a. Num a => a -> a -> a
-Unique
1) NonEmpty (Id, Term)
headsAndTails of
([(Id, Term)]
xs,(Id, Term)
y:[(Id, Term)]
_) -> ([(Id, Term)]
xs,(Id, Term)
y)
([(Id, Term)], [(Id, Term)])
_ -> [Char] -> ([(Id, Term)], (Id, Term))
forall a. HasCallStack => [Char] -> a
error [Char]
"impossible"
nextUnconcat :: Term
nextUnconcat = Term -> [Either Term Type] -> Term
mkApps (PrimInfo -> Term
Prim PrimInfo
unconcatPrimInfo)
[ Type -> Either Term Type
forall a b. b -> Either a b
Right (LitTy -> Type
LitTy (Integer -> LitTy
NumTy (Integer
nInteger -> Integer -> Integer
forall a. Num a => a -> a -> a
-Integer
1)))
, Type -> Either Term Type
forall a b. b -> Either a b
Right (LitTy -> Type
LitTy (Integer -> LitTy
NumTy Integer
m))
, Type -> Either Term Type
forall a b. b -> Either a b
Right Type
aTy
, Term -> Either Term Type
forall a b. a -> Either a b
Left (Literal -> Term
Literal (Integer -> Literal
NaturalLiteral (Integer
nInteger -> Integer -> Integer
forall a. Num a => a -> a -> a
-Integer
1)))
, Term -> Either Term Type
forall a b. a -> Either a b
Left Term
sm
, Term -> Either Term Type
forall a b. a -> Either a b
Left ((Id, Term) -> Term
forall a b. (a, b) -> b
snd (Id, Term)
nextVec)
]
lBody :: Term
lBody = HasCallStack => DataCon -> Type -> Integer -> Term -> Term -> Term
DataCon -> Type -> Integer -> Term -> Term -> Term
mkVecCons DataCon
consCon Type
innerVecTy Integer
n Term
mvec Term
nextUnconcat
lb :: Term
lb = [(Id, Term)] -> Term -> Term
Letrec [(Id, Term)]
lbs Term
lBody
(Supply -> Identity Supply)
-> RewriteState extra -> Identity (RewriteState extra)
forall extra. Lens' (RewriteState extra) Supply
uniqSupply ((Supply -> Identity Supply)
-> RewriteState extra -> Identity (RewriteState extra))
-> Supply -> RewriteMonad extra ()
forall s (m :: Type -> Type) a b.
MonadState s m =>
ASetter s s a b -> b -> m ()
Lens..= Supply
uniqs1
Term -> RewriteMonad extra Term
forall a extra. a -> RewriteMonad extra a
changed Term
lb
go TyConMap
_ Type
ty = [Char] -> RewriteMonad extra Term
forall a. HasCallStack => [Char] -> a
error ([Char] -> RewriteMonad extra Term)
-> [Char] -> RewriteMonad extra Term
forall a b. (a -> b) -> a -> b
$ $([Char]
curLoc) [Char] -> [Char] -> [Char]
forall a. [a] -> [a] -> [a]
++ [Char]
"reduceUnconcat: argument does not have a vector type: " [Char] -> [Char] -> [Char]
forall a. [a] -> [a] -> [a]
++ Type -> [Char]
forall p. PrettyPrec p => p -> [Char]
showPpr Type
ty
reduceTranspose :: Integer
-> Integer
-> Type
-> Term
-> Term
-> TransformContext
-> NormalizeSession Term
reduceTranspose :: Integer
-> Integer
-> Type
-> Term
-> Term
-> TransformContext
-> NormalizeSession Term
reduceTranspose Integer
n Integer
0 Type
aTy Term
_kn Term
arg TransformContext
_ctx = do
TyConMap
tcm <- Getting TyConMap RewriteEnv TyConMap
-> RewriteMonad NormalizeState TyConMap
forall s (m :: Type -> Type) a.
MonadReader s m =>
Getting a s a -> m a
Lens.view Getting TyConMap RewriteEnv TyConMap
Getter RewriteEnv TyConMap
tcCache
let ty :: Type
ty = TyConMap -> Term -> Type
forall a. InferType a => TyConMap -> a -> Type
inferCoreTypeOf TyConMap
tcm Term
arg
TyConMap -> Type -> NormalizeSession Term
forall extra. TyConMap -> Type -> RewriteMonad extra Term
go TyConMap
tcm Type
ty
where
go :: TyConMap -> Type -> RewriteMonad extra Term
go TyConMap
tcm (TyConMap -> Type -> Maybe Type
coreView1 TyConMap
tcm -> Just Type
ty') = TyConMap -> Type -> RewriteMonad extra Term
go TyConMap
tcm Type
ty'
go TyConMap
tcm (Type -> TypeView
tyView -> TyConApp TyConName
vecTcNm [Type]
_)
| (Just TyCon
vecTc) <- TyConName -> TyConMap -> Maybe TyCon
forall a b. Uniquable a => a -> UniqMap b -> Maybe b
UniqMap.lookup TyConName
vecTcNm TyConMap
tcm
, TyConName -> OccName
forall a. Name a -> OccName
nameOcc TyConName
vecTcNm OccName -> OccName -> Bool
forall a. Eq a => a -> a -> Bool
== OccName
"Clash.Sized.Vector.Vec"
, [DataCon
nilCon,DataCon
consCon] <- TyCon -> [DataCon]
tyConDataCons TyCon
vecTc
= let nilVec :: Term
nilVec = DataCon -> DataCon -> Type -> Integer -> [Term] -> Term
mkVec DataCon
nilCon DataCon
consCon Type
aTy Integer
0 []
innerVecTy :: Type
innerVecTy = TyConName -> [Type] -> Type
mkTyConApp TyConName
vecTcNm [LitTy -> Type
LitTy (Integer -> LitTy
NumTy Integer
0), Type
aTy]
retVec :: Term
retVec = DataCon -> DataCon -> Type -> Integer -> [Term] -> Term
mkVec DataCon
nilCon DataCon
consCon Type
innerVecTy Integer
n (Unique -> Term -> [Term]
forall a. Unique -> a -> [a]
replicate (Integer -> Unique
forall a. Num a => Integer -> a
fromInteger Integer
n) Term
nilVec)
in Term -> RewriteMonad extra Term
forall a extra. a -> RewriteMonad extra a
changed Term
retVec
go TyConMap
_ Type
ty = [Char] -> RewriteMonad extra Term
forall a. HasCallStack => [Char] -> a
error ([Char] -> RewriteMonad extra Term)
-> [Char] -> RewriteMonad extra Term
forall a b. (a -> b) -> a -> b
$ $([Char]
curLoc) [Char] -> [Char] -> [Char]
forall a. [a] -> [a] -> [a]
++ [Char]
"reduceTranspose: argument does not have a vector type: " [Char] -> [Char] -> [Char]
forall a. [a] -> [a] -> [a]
++ Type -> [Char]
forall p. PrettyPrec p => p -> [Char]
showPpr Type
ty
reduceTranspose Integer
_ Integer
_ Type
_ Term
_ Term
_ TransformContext
_ = [Char] -> NormalizeSession Term
forall a. HasCallStack => [Char] -> a
error ([Char] -> NormalizeSession Term)
-> [Char] -> NormalizeSession Term
forall a b. (a -> b) -> a -> b
$ $([Char]
curLoc) [Char] -> [Char] -> [Char]
forall a. [a] -> [a] -> [a]
++ [Char]
"reduceTranspose: unimplemented"
reduceReplicate :: Integer
-> Type
-> Type
-> Term
-> Term
-> TransformContext
-> NormalizeSession Term
reduceReplicate :: Integer
-> Type
-> Type
-> Term
-> Term
-> TransformContext
-> NormalizeSession Term
reduceReplicate Integer
n Type
aTy Type
eTy Term
_sn Term
arg TransformContext
_ctx = do
TyConMap
tcm <- Getting TyConMap RewriteEnv TyConMap
-> RewriteMonad NormalizeState TyConMap
forall s (m :: Type -> Type) a.
MonadReader s m =>
Getting a s a -> m a
Lens.view Getting TyConMap RewriteEnv TyConMap
Getter RewriteEnv TyConMap
tcCache
TyConMap -> Type -> NormalizeSession Term
forall extra. TyConMap -> Type -> RewriteMonad extra Term
go TyConMap
tcm Type
eTy
where
go :: TyConMap -> Type -> RewriteMonad extra Term
go TyConMap
tcm (TyConMap -> Type -> Maybe Type
coreView1 TyConMap
tcm -> Just Type
ty') = TyConMap -> Type -> RewriteMonad extra Term
go TyConMap
tcm Type
ty'
go TyConMap
tcm (Type -> TypeView
tyView -> TyConApp TyConName
vecTcNm [Type]
_)
| (Just TyCon
vecTc) <- TyConName -> TyConMap -> Maybe TyCon
forall a b. Uniquable a => a -> UniqMap b -> Maybe b
UniqMap.lookup TyConName
vecTcNm TyConMap
tcm
, TyConName -> OccName
forall a. Name a -> OccName
nameOcc TyConName
vecTcNm OccName -> OccName -> Bool
forall a. Eq a => a -> a -> Bool
== OccName
"Clash.Sized.Vector.Vec"
, [DataCon
nilCon,DataCon
consCon] <- TyCon -> [DataCon]
tyConDataCons TyCon
vecTc
= let retVec :: Term
retVec = DataCon -> DataCon -> Type -> Integer -> [Term] -> Term
mkVec DataCon
nilCon DataCon
consCon Type
aTy Integer
n (Unique -> Term -> [Term]
forall a. Unique -> a -> [a]
replicate (Integer -> Unique
forall a. Num a => Integer -> a
fromInteger Integer
n) Term
arg)
in Term -> RewriteMonad extra Term
forall a extra. a -> RewriteMonad extra a
changed Term
retVec
go TyConMap
_ Type
ty = [Char] -> RewriteMonad extra Term
forall a. HasCallStack => [Char] -> a
error ([Char] -> RewriteMonad extra Term)
-> [Char] -> RewriteMonad extra Term
forall a b. (a -> b) -> a -> b
$ $([Char]
curLoc) [Char] -> [Char] -> [Char]
forall a. [a] -> [a] -> [a]
++ [Char]
"reduceReplicate: argument does not have a vector type: " [Char] -> [Char] -> [Char]
forall a. [a] -> [a] -> [a]
++ Type -> [Char]
forall p. PrettyPrec p => p -> [Char]
showPpr Type
ty
reduceReplace_int
:: Integer
-> Type
-> Type
-> Term
-> Term
-> Term
-> Term
-> TransformContext
-> NormalizeSession Term
reduceReplace_int :: Integer
-> Type
-> Type
-> Term
-> Term
-> Term
-> Term
-> TransformContext
-> NormalizeSession Term
reduceReplace_int Integer
n Type
aTy Type
vTy Term
_kn Term
v Term
i Term
newA (TransformContext InScopeSet
is0 Context
_ctx) = do
TyConMap
tcm <- Getting TyConMap RewriteEnv TyConMap
-> RewriteMonad NormalizeState TyConMap
forall s (m :: Type -> Type) a.
MonadReader s m =>
Getting a s a -> m a
Lens.view Getting TyConMap RewriteEnv TyConMap
Getter RewriteEnv TyConMap
tcCache
TyConMap -> Type -> NormalizeSession Term
forall extra. TyConMap -> Type -> RewriteMonad extra Term
go TyConMap
tcm Type
vTy
where
replace_intElement
:: TyConMap
-> DataCon
-> Type
-> Term
-> Integer
-> Term
replace_intElement :: TyConMap -> DataCon -> Type -> Term -> Integer -> Term
replace_intElement TyConMap
tcm DataCon
iDc Type
iTy Term
oldA Integer
elIndex = Term
case0
where
case0 :: Term
case0 = Term -> Maybe Term -> Term
forall a. a -> Maybe a -> a
Maybe.fromMaybe ([Char] -> Term
forall a. HasCallStack => [Char] -> a
error [Char]
"replace_intElement: faild to build Truce DC") (Maybe Term -> Term) -> Maybe Term -> Term
forall a b. (a -> b) -> a -> b
$ do
TyCon
boolTc <- Unique -> TyConMap -> Maybe TyCon
forall a b. Uniquable a => a -> UniqMap b -> Maybe b
UniqMap.lookup (Unique -> Unique
fromGhcUnique Unique
boolTyConKey) TyConMap
tcm
[DataCon
_,DataCon
trueDc] <- [DataCon] -> Maybe [DataCon]
forall (f :: Type -> Type) a. Applicative f => a -> f a
pure (TyCon -> [DataCon]
tyConDataCons TyCon
boolTc)
let eqInt :: Term
eqInt = Type -> Type -> Term
eqIntPrim Type
iTy (TyConName -> [Type] -> Type
mkTyConApp (TyCon -> TyConName
tyConName TyCon
boolTc) [])
Term -> Maybe Term
forall (m :: Type -> Type) a. Monad m => a -> m a
return (Term -> Type -> [Alt] -> Term
Case (Term -> [Either Term Type] -> Term
mkApps Term
eqInt [ Term -> Either Term Type
forall a b. a -> Either a b
Left Term
i
, Term -> Either Term Type
forall a b. a -> Either a b
Left (Term -> [Either Term Type] -> Term
mkApps (DataCon -> Term
Data DataCon
iDc)
[Term -> Either Term Type
forall a b. a -> Either a b
Left (Literal -> Term
Literal (Integer -> Literal
IntLiteral Integer
elIndex))])
])
Type
aTy
[ (Pat
DefaultPat, Term
oldA)
, (DataCon -> [TyVar] -> [Id] -> Pat
DataPat DataCon
trueDc [] [], Term
newA)
])
eqIntPrim
:: Type
-> Type
-> Term
eqIntPrim :: Type -> Type -> Term
eqIntPrim Type
intTy Type
boolTy =
PrimInfo -> Term
Prim (OccName
-> Type -> WorkInfo -> IsMultiPrim -> PrimUnfolding -> PrimInfo
PrimInfo
OccName
"GHC.Classes.eqInt"
(Type -> Type -> Type
mkFunTy Type
intTy (Type -> Type -> Type
mkFunTy Type
intTy Type
boolTy))
WorkInfo
WorkVariable
IsMultiPrim
SingleResult
PrimUnfolding
NoUnfolding)
go :: TyConMap -> Type -> RewriteMonad extra Term
go TyConMap
tcm (TyConMap -> Type -> Maybe Type
coreView1 TyConMap
tcm -> Just Type
ty') = TyConMap -> Type -> RewriteMonad extra Term
go TyConMap
tcm Type
ty'
go TyConMap
tcm (Type -> TypeView
tyView -> TyConApp TyConName
vecTcNm [Type]
_)
| (Just TyCon
vecTc) <- TyConName -> TyConMap -> Maybe TyCon
forall a b. Uniquable a => a -> UniqMap b -> Maybe b
UniqMap.lookup TyConName
vecTcNm TyConMap
tcm
, TyConName -> OccName
forall a. Name a -> OccName
nameOcc TyConName
vecTcNm OccName -> OccName -> Bool
forall a. Eq a => a -> a -> Bool
== OccName
"Clash.Sized.Vector.Vec"
, [DataCon
nilCon,DataCon
consCon] <- TyCon -> [DataCon]
tyConDataCons TyCon
vecTc
= do
Supply
uniqs0 <- Getting Supply (RewriteState extra) Supply
-> RewriteMonad extra Supply
forall s (m :: Type -> Type) a.
MonadState s m =>
Getting a s a -> m a
Lens.use Getting Supply (RewriteState extra) Supply
forall extra. Lens' (RewriteState extra) Supply
uniqSupply
let iTy :: Type
iTy = TyConMap -> Term -> Type
forall a. InferType a => TyConMap -> a -> Type
inferCoreTypeOf TyConMap
tcm Term
i
iDc :: DataCon
iDc = DataCon -> Maybe DataCon -> DataCon
forall a. a -> Maybe a -> a
Maybe.fromMaybe ([Char] -> DataCon
forall a. HasCallStack => [Char] -> a
error [Char]
"replace_intElement: faild to build Int DC") (Maybe DataCon -> DataCon) -> Maybe DataCon -> DataCon
forall a b. (a -> b) -> a -> b
$ do
(TyConApp TyConName
iTcNm [Type]
_) <- TypeView -> Maybe TypeView
forall (f :: Type -> Type) a. Applicative f => a -> f a
pure (Type -> TypeView
tyView Type
iTy)
TyCon
iTc <- TyConName -> TyConMap -> Maybe TyCon
forall a b. Uniquable a => a -> UniqMap b -> Maybe b
UniqMap.lookup TyConName
iTcNm TyConMap
tcm
[DataCon] -> Maybe DataCon
forall a. [a] -> Maybe a
Maybe.listToMaybe (TyCon -> [DataCon]
tyConDataCons TyCon
iTc)
(Supply
uniqs1,(NonEmpty Term
vars,NonEmpty (Id, Term)
elems)) = (NonEmpty (Term, NonEmpty (Id, Term))
-> (NonEmpty Term, NonEmpty (Id, Term)))
-> (Supply, NonEmpty (Term, NonEmpty (Id, Term)))
-> (Supply, (NonEmpty Term, NonEmpty (Id, Term)))
forall (p :: Type -> Type -> Type) b c a.
Bifunctor p =>
(b -> c) -> p a b -> p a c
second ((NonEmpty (NonEmpty (Id, Term)) -> NonEmpty (Id, Term))
-> (NonEmpty Term, NonEmpty (NonEmpty (Id, Term)))
-> (NonEmpty Term, NonEmpty (Id, Term))
forall (p :: Type -> Type -> Type) b c a.
Bifunctor p =>
(b -> c) -> p a b -> p a c
second NonEmpty (NonEmpty (Id, Term)) -> NonEmpty (Id, Term)
forall a. Semigroup a => NonEmpty a -> a
sconcat ((NonEmpty Term, NonEmpty (NonEmpty (Id, Term)))
-> (NonEmpty Term, NonEmpty (Id, Term)))
-> (NonEmpty (Term, NonEmpty (Id, Term))
-> (NonEmpty Term, NonEmpty (NonEmpty (Id, Term))))
-> NonEmpty (Term, NonEmpty (Id, Term))
-> (NonEmpty Term, NonEmpty (Id, Term))
forall b c a. (b -> c) -> (a -> b) -> a -> c
. NonEmpty (Term, NonEmpty (Id, Term))
-> (NonEmpty Term, NonEmpty (NonEmpty (Id, Term)))
forall (f :: Type -> Type) a b. Functor f => f (a, b) -> (f a, f b)
NE.unzip)
((Supply, NonEmpty (Term, NonEmpty (Id, Term)))
-> (Supply, (NonEmpty Term, NonEmpty (Id, Term))))
-> (Supply, NonEmpty (Term, NonEmpty (Id, Term)))
-> (Supply, (NonEmpty Term, NonEmpty (Id, Term)))
forall a b. (a -> b) -> a -> b
$ HasCallStack =>
Supply
-> InScopeSet
-> DataCon
-> Type
-> Char
-> Integer
-> Term
-> (Supply, NonEmpty (Term, NonEmpty (Id, Term)))
Supply
-> InScopeSet
-> DataCon
-> Type
-> Char
-> Integer
-> Term
-> (Supply, NonEmpty (Term, NonEmpty (Id, Term)))
extractElems
Supply
uniqs0
InScopeSet
is0
DataCon
consCon
Type
aTy
Char
'I'
Integer
n
Term
v
let replacedEls :: [Term]
replacedEls = (Term -> Integer -> Term) -> [Term] -> [Integer] -> [Term]
forall a b c. (a -> b -> c) -> [a] -> [b] -> [c]
zipWith (TyConMap -> DataCon -> Type -> Term -> Integer -> Term
replace_intElement TyConMap
tcm DataCon
iDc Type
iTy) (NonEmpty Term -> [Term]
forall a. NonEmpty a -> [a]
NE.toList NonEmpty Term
vars) [Integer
0..]
lbody :: Term
lbody = DataCon -> DataCon -> Type -> Integer -> [Term] -> Term
mkVec DataCon
nilCon DataCon
consCon Type
aTy Integer
n [Term]
replacedEls
lb :: Term
lb = [(Id, Term)] -> Term -> Term
Letrec (NonEmpty (Id, Term) -> [(Id, Term)]
forall a. NonEmpty a -> [a]
NE.init NonEmpty (Id, Term)
elems) Term
lbody
(Supply -> Identity Supply)
-> RewriteState extra -> Identity (RewriteState extra)
forall extra. Lens' (RewriteState extra) Supply
uniqSupply ((Supply -> Identity Supply)
-> RewriteState extra -> Identity (RewriteState extra))
-> Supply -> RewriteMonad extra ()
forall s (m :: Type -> Type) a b.
MonadState s m =>
ASetter s s a b -> b -> m ()
Lens..= Supply
uniqs1
Term -> RewriteMonad extra Term
forall a extra. a -> RewriteMonad extra a
changed Term
lb
go TyConMap
_ Type
ty = [Char] -> RewriteMonad extra Term
forall a. HasCallStack => [Char] -> a
error ([Char] -> RewriteMonad extra Term)
-> [Char] -> RewriteMonad extra Term
forall a b. (a -> b) -> a -> b
$ $([Char]
curLoc) [Char] -> [Char] -> [Char]
forall a. [a] -> [a] -> [a]
++ [Char]
"reduceReplace_int: argument does not have "
[Char] -> [Char] -> [Char]
forall a. [a] -> [a] -> [a]
++ [Char]
"a vector type: " [Char] -> [Char] -> [Char]
forall a. [a] -> [a] -> [a]
++ Type -> [Char]
forall p. PrettyPrec p => p -> [Char]
showPpr Type
ty
reduceIndex_int
:: Integer
-> Type
-> Term
-> Term
-> Term
-> TransformContext
-> NormalizeSession Term
reduceIndex_int :: Integer
-> Type
-> Term
-> Term
-> Term
-> TransformContext
-> NormalizeSession Term
reduceIndex_int Integer
n Type
aTy Term
_kn Term
v Term
i (TransformContext InScopeSet
is0 Context
_ctx) = do
TyConMap
tcm <- Getting TyConMap RewriteEnv TyConMap
-> RewriteMonad NormalizeState TyConMap
forall s (m :: Type -> Type) a.
MonadReader s m =>
Getting a s a -> m a
Lens.view Getting TyConMap RewriteEnv TyConMap
Getter RewriteEnv TyConMap
tcCache
let vTy :: Type
vTy = TyConMap -> Term -> Type
forall a. InferType a => TyConMap -> a -> Type
inferCoreTypeOf TyConMap
tcm Term
v
TyConMap -> Type -> NormalizeSession Term
forall extra. TyConMap -> Type -> RewriteMonad extra Term
go TyConMap
tcm Type
vTy
where
index_intElement
:: TyConMap
-> DataCon
-> Type
-> (Term, Integer)
-> Term
-> Term
index_intElement :: TyConMap -> DataCon -> Type -> (Term, Integer) -> Term -> Term
index_intElement TyConMap
tcm DataCon
iDc Type
iTy (Term
cur,Integer
elIndex) Term
next = Term
case0
where
case0 :: Term
case0 = Term -> Maybe Term -> Term
forall a. a -> Maybe a -> a
Maybe.fromMaybe ([Char] -> Term
forall a. HasCallStack => [Char] -> a
error [Char]
"reduceIndex_int: faild to build True DC") (Maybe Term -> Term) -> Maybe Term -> Term
forall a b. (a -> b) -> a -> b
$ do
TyCon
boolTc <- Unique -> TyConMap -> Maybe TyCon
forall a b. Uniquable a => a -> UniqMap b -> Maybe b
UniqMap.lookup (Unique -> Unique
fromGhcUnique Unique
boolTyConKey) TyConMap
tcm
[DataCon
_,DataCon
trueDc] <- [DataCon] -> Maybe [DataCon]
forall (f :: Type -> Type) a. Applicative f => a -> f a
pure (TyCon -> [DataCon]
tyConDataCons TyCon
boolTc)
let eqInt :: Term
eqInt = Type -> Type -> Term
eqIntPrim Type
iTy (TyConName -> [Type] -> Type
mkTyConApp (TyCon -> TyConName
tyConName TyCon
boolTc) [])
Term -> Maybe Term
forall (m :: Type -> Type) a. Monad m => a -> m a
return (Term -> Type -> [Alt] -> Term
Case (Term -> [Either Term Type] -> Term
mkApps Term
eqInt [ Term -> Either Term Type
forall a b. a -> Either a b
Left Term
i
, Term -> Either Term Type
forall a b. a -> Either a b
Left (Term -> [Either Term Type] -> Term
mkApps (DataCon -> Term
Data DataCon
iDc)
[Term -> Either Term Type
forall a b. a -> Either a b
Left (Literal -> Term
Literal (Integer -> Literal
IntLiteral Integer
elIndex))])
])
Type
aTy
[ (Pat
DefaultPat, Term
next)
, (DataCon -> [TyVar] -> [Id] -> Pat
DataPat DataCon
trueDc [] [], Term
cur)
])
eqIntPrim
:: Type
-> Type
-> Term
eqIntPrim :: Type -> Type -> Term
eqIntPrim Type
intTy Type
boolTy =
PrimInfo -> Term
Prim ( OccName
-> Type -> WorkInfo -> IsMultiPrim -> PrimUnfolding -> PrimInfo
PrimInfo
OccName
"GHC.Classes.eqInt"
(Type -> Type -> Type
mkFunTy Type
intTy (Type -> Type -> Type
mkFunTy Type
intTy Type
boolTy))
WorkInfo
WorkVariable
IsMultiPrim
SingleResult
PrimUnfolding
NoUnfolding)
go :: TyConMap -> Type -> RewriteMonad extra Term
go TyConMap
tcm (TyConMap -> Type -> Maybe Type
coreView1 TyConMap
tcm -> Just Type
ty') = TyConMap -> Type -> RewriteMonad extra Term
go TyConMap
tcm Type
ty'
go TyConMap
tcm (Type -> TypeView
tyView -> TyConApp TyConName
vecTcNm [Type]
_)
| (Just TyCon
vecTc) <- TyConName -> TyConMap -> Maybe TyCon
forall a b. Uniquable a => a -> UniqMap b -> Maybe b
UniqMap.lookup TyConName
vecTcNm TyConMap
tcm
, TyConName -> OccName
forall a. Name a -> OccName
nameOcc TyConName
vecTcNm OccName -> OccName -> Bool
forall a. Eq a => a -> a -> Bool
== OccName
"Clash.Sized.Vector.Vec"
, [DataCon
_nilCon,DataCon
consCon] <- TyCon -> [DataCon]
tyConDataCons TyCon
vecTc
= do
Supply
uniqs0 <- Getting Supply (RewriteState extra) Supply
-> RewriteMonad extra Supply
forall s (m :: Type -> Type) a.
MonadState s m =>
Getting a s a -> m a
Lens.use Getting Supply (RewriteState extra) Supply
forall extra. Lens' (RewriteState extra) Supply
uniqSupply
let iTy :: Type
iTy = TyConMap -> Term -> Type
forall a. InferType a => TyConMap -> a -> Type
inferCoreTypeOf TyConMap
tcm Term
i
iDc :: DataCon
iDc = DataCon -> Maybe DataCon -> DataCon
forall a. a -> Maybe a -> a
Maybe.fromMaybe ([Char] -> DataCon
forall a. HasCallStack => [Char] -> a
error [Char]
"reduceIndex_int: faild to build Int DC") (Maybe DataCon -> DataCon) -> Maybe DataCon -> DataCon
forall a b. (a -> b) -> a -> b
$ do
(TyConApp TyConName
iTcNm [Type]
_) <- TypeView -> Maybe TypeView
forall (f :: Type -> Type) a. Applicative f => a -> f a
pure (Type -> TypeView
tyView Type
iTy)
TyCon
iTc <- TyConName -> TyConMap -> Maybe TyCon
forall a b. Uniquable a => a -> UniqMap b -> Maybe b
UniqMap.lookup TyConName
iTcNm TyConMap
tcm
[DataCon] -> Maybe DataCon
forall a. [a] -> Maybe a
Maybe.listToMaybe (TyCon -> [DataCon]
tyConDataCons TyCon
iTc)
(Supply
uniqs1,(NonEmpty Term
vars,NonEmpty (Id, Term)
elems)) = (NonEmpty (Term, NonEmpty (Id, Term))
-> (NonEmpty Term, NonEmpty (Id, Term)))
-> (Supply, NonEmpty (Term, NonEmpty (Id, Term)))
-> (Supply, (NonEmpty Term, NonEmpty (Id, Term)))
forall (p :: Type -> Type -> Type) b c a.
Bifunctor p =>
(b -> c) -> p a b -> p a c
second ((NonEmpty (NonEmpty (Id, Term)) -> NonEmpty (Id, Term))
-> (NonEmpty Term, NonEmpty (NonEmpty (Id, Term)))
-> (NonEmpty Term, NonEmpty (Id, Term))
forall (p :: Type -> Type -> Type) b c a.
Bifunctor p =>
(b -> c) -> p a b -> p a c
second NonEmpty (NonEmpty (Id, Term)) -> NonEmpty (Id, Term)
forall a. Semigroup a => NonEmpty a -> a
sconcat ((NonEmpty Term, NonEmpty (NonEmpty (Id, Term)))
-> (NonEmpty Term, NonEmpty (Id, Term)))
-> (NonEmpty (Term, NonEmpty (Id, Term))
-> (NonEmpty Term, NonEmpty (NonEmpty (Id, Term))))
-> NonEmpty (Term, NonEmpty (Id, Term))
-> (NonEmpty Term, NonEmpty (Id, Term))
forall b c a. (b -> c) -> (a -> b) -> a -> c
. NonEmpty (Term, NonEmpty (Id, Term))
-> (NonEmpty Term, NonEmpty (NonEmpty (Id, Term)))
forall (f :: Type -> Type) a b. Functor f => f (a, b) -> (f a, f b)
NE.unzip)
((Supply, NonEmpty (Term, NonEmpty (Id, Term)))
-> (Supply, (NonEmpty Term, NonEmpty (Id, Term))))
-> (Supply, NonEmpty (Term, NonEmpty (Id, Term)))
-> (Supply, (NonEmpty Term, NonEmpty (Id, Term)))
forall a b. (a -> b) -> a -> b
$ HasCallStack =>
Supply
-> InScopeSet
-> DataCon
-> Type
-> Char
-> Integer
-> Term
-> (Supply, NonEmpty (Term, NonEmpty (Id, Term)))
Supply
-> InScopeSet
-> DataCon
-> Type
-> Char
-> Integer
-> Term
-> (Supply, NonEmpty (Term, NonEmpty (Id, Term)))
extractElems
Supply
uniqs0
InScopeSet
is0
DataCon
consCon
Type
aTy
Char
'I'
Integer
n
Term
v
let indexed :: Term
indexed = ((Term, Integer) -> Term -> Term)
-> Term -> [(Term, Integer)] -> Term
forall (t :: Type -> Type) a b.
Foldable t =>
(a -> b -> b) -> b -> t a -> b
foldr (TyConMap -> DataCon -> Type -> (Term, Integer) -> Term -> Term
index_intElement TyConMap
tcm DataCon
iDc Type
iTy)
(Term -> Type -> Term
TyApp (PrimInfo -> Term
Prim PrimInfo
NP.undefined) Type
aTy)
([Term] -> [Integer] -> [(Term, Integer)]
forall a b. [a] -> [b] -> [(a, b)]
zip (NonEmpty Term -> [Term]
forall a. NonEmpty a -> [a]
NE.toList NonEmpty Term
vars) [Integer
0..])
lb :: Term
lb = [(Id, Term)] -> Term -> Term
Letrec (NonEmpty (Id, Term) -> [(Id, Term)]
forall a. NonEmpty a -> [a]
NE.init NonEmpty (Id, Term)
elems) Term
indexed
(Supply -> Identity Supply)
-> RewriteState extra -> Identity (RewriteState extra)
forall extra. Lens' (RewriteState extra) Supply
uniqSupply ((Supply -> Identity Supply)
-> RewriteState extra -> Identity (RewriteState extra))
-> Supply -> RewriteMonad extra ()
forall s (m :: Type -> Type) a b.
MonadState s m =>
ASetter s s a b -> b -> m ()
Lens..= Supply
uniqs1
Term -> RewriteMonad extra Term
forall a extra. a -> RewriteMonad extra a
changed Term
lb
go TyConMap
_ Type
ty = [Char] -> RewriteMonad extra Term
forall a. HasCallStack => [Char] -> a
error ([Char] -> RewriteMonad extra Term)
-> [Char] -> RewriteMonad extra Term
forall a b. (a -> b) -> a -> b
$ $([Char]
curLoc) [Char] -> [Char] -> [Char]
forall a. [a] -> [a] -> [a]
++ [Char]
"indexReplace_int: argument does not have "
[Char] -> [Char] -> [Char]
forall a. [a] -> [a] -> [a]
++ [Char]
"a vector type: " [Char] -> [Char] -> [Char]
forall a. [a] -> [a] -> [a]
++ Type -> [Char]
forall p. PrettyPrec p => p -> [Char]
showPpr Type
ty
reduceDTFold
:: Integer
-> Type
-> Term
-> Term
-> Term
-> Term
-> Term
-> TransformContext
-> NormalizeSession Term
reduceDTFold :: Integer
-> Type
-> Term
-> Term
-> Term
-> Term
-> Term
-> TransformContext
-> NormalizeSession Term
reduceDTFold Integer
n Type
aTy Term
_kn Term
_motive Term
lrFun Term
brFun Term
arg (TransformContext InScopeSet
inScope Context
_ctx) = do
TyConMap
tcm <- Getting TyConMap RewriteEnv TyConMap
-> RewriteMonad NormalizeState TyConMap
forall s (m :: Type -> Type) a.
MonadReader s m =>
Getting a s a -> m a
Lens.view Getting TyConMap RewriteEnv TyConMap
Getter RewriteEnv TyConMap
tcCache
let ty :: Type
ty = TyConMap -> Term -> Type
forall a. InferType a => TyConMap -> a -> Type
inferCoreTypeOf TyConMap
tcm Term
arg
TyConMap -> Type -> NormalizeSession Term
forall extra. TyConMap -> Type -> RewriteMonad extra Term
go TyConMap
tcm Type
ty
where
go :: TyConMap -> Type -> RewriteMonad extra Term
go TyConMap
tcm (TyConMap -> Type -> Maybe Type
coreView1 TyConMap
tcm -> Just Type
ty') = TyConMap -> Type -> RewriteMonad extra Term
go TyConMap
tcm Type
ty'
go TyConMap
tcm (Type -> TypeView
tyView -> TyConApp TyConName
vecTcNm [Type]
_)
| (Just TyCon
vecTc) <- TyConName -> TyConMap -> Maybe TyCon
forall a b. Uniquable a => a -> UniqMap b -> Maybe b
UniqMap.lookup TyConName
vecTcNm TyConMap
tcm
, TyConName -> OccName
forall a. Name a -> OccName
nameOcc TyConName
vecTcNm OccName -> OccName -> Bool
forall a. Eq a => a -> a -> Bool
== OccName
"Clash.Sized.Vector.Vec"
, [DataCon
_,DataCon
consCon] <- TyCon -> [DataCon]
tyConDataCons TyCon
vecTc
= do Supply
uniqs0 <- Getting Supply (RewriteState extra) Supply
-> RewriteMonad extra Supply
forall s (m :: Type -> Type) a.
MonadState s m =>
Getting a s a -> m a
Lens.use Getting Supply (RewriteState extra) Supply
forall extra. Lens' (RewriteState extra) Supply
uniqSupply
let (Supply
uniqs1,(NonEmpty Term
vars,NonEmpty (Id, Term)
elems)) = (NonEmpty (Term, NonEmpty (Id, Term))
-> (NonEmpty Term, NonEmpty (Id, Term)))
-> (Supply, NonEmpty (Term, NonEmpty (Id, Term)))
-> (Supply, (NonEmpty Term, NonEmpty (Id, Term)))
forall (p :: Type -> Type -> Type) b c a.
Bifunctor p =>
(b -> c) -> p a b -> p a c
second ((NonEmpty (NonEmpty (Id, Term)) -> NonEmpty (Id, Term))
-> (NonEmpty Term, NonEmpty (NonEmpty (Id, Term)))
-> (NonEmpty Term, NonEmpty (Id, Term))
forall (p :: Type -> Type -> Type) b c a.
Bifunctor p =>
(b -> c) -> p a b -> p a c
second NonEmpty (NonEmpty (Id, Term)) -> NonEmpty (Id, Term)
forall a. Semigroup a => NonEmpty a -> a
sconcat ((NonEmpty Term, NonEmpty (NonEmpty (Id, Term)))
-> (NonEmpty Term, NonEmpty (Id, Term)))
-> (NonEmpty (Term, NonEmpty (Id, Term))
-> (NonEmpty Term, NonEmpty (NonEmpty (Id, Term))))
-> NonEmpty (Term, NonEmpty (Id, Term))
-> (NonEmpty Term, NonEmpty (Id, Term))
forall b c a. (b -> c) -> (a -> b) -> a -> c
. NonEmpty (Term, NonEmpty (Id, Term))
-> (NonEmpty Term, NonEmpty (NonEmpty (Id, Term)))
forall (f :: Type -> Type) a b. Functor f => f (a, b) -> (f a, f b)
NE.unzip)
((Supply, NonEmpty (Term, NonEmpty (Id, Term)))
-> (Supply, (NonEmpty Term, NonEmpty (Id, Term))))
-> (Supply, NonEmpty (Term, NonEmpty (Id, Term)))
-> (Supply, (NonEmpty Term, NonEmpty (Id, Term)))
forall a b. (a -> b) -> a -> b
$ HasCallStack =>
Supply
-> InScopeSet
-> DataCon
-> Type
-> Char
-> Integer
-> Term
-> (Supply, NonEmpty (Term, NonEmpty (Id, Term)))
Supply
-> InScopeSet
-> DataCon
-> Type
-> Char
-> Integer
-> Term
-> (Supply, NonEmpty (Term, NonEmpty (Id, Term)))
extractElems Supply
uniqs0 InScopeSet
inScope DataCon
consCon Type
aTy
Char
'T' (Integer
2Integer -> Integer -> Integer
forall a b. (Num a, Integral b) => a -> b -> a
^Integer
n) Term
arg
snatDc :: DataCon
snatDc = DataCon -> Maybe DataCon -> DataCon
forall a. a -> Maybe a -> a
Maybe.fromMaybe ([Char] -> DataCon
forall a. HasCallStack => [Char] -> a
error [Char]
"reduceDTFold: faild to build SNat") (Maybe DataCon -> DataCon) -> Maybe DataCon -> DataCon
forall a b. (a -> b) -> a -> b
$ do
(Either TyVar Type
_ltv:Right Type
snTy:[Either TyVar Type]
_,Type
_) <- ([Either TyVar Type], Type) -> Maybe ([Either TyVar Type], Type)
forall (f :: Type -> Type) a. Applicative f => a -> f a
pure (Type -> ([Either TyVar Type], Type)
splitFunForallTy (TyConMap -> Term -> Type
forall a. InferType a => TyConMap -> a -> Type
inferCoreTypeOf TyConMap
tcm Term
brFun))
(TyConApp TyConName
snatTcNm [Type]
_) <- TypeView -> Maybe TypeView
forall (f :: Type -> Type) a. Applicative f => a -> f a
pure (Type -> TypeView
tyView Type
snTy)
TyCon
snatTc <- TyConName -> TyConMap -> Maybe TyCon
forall a b. Uniquable a => a -> UniqMap b -> Maybe b
UniqMap.lookup TyConName
snatTcNm TyConMap
tcm
[DataCon] -> Maybe DataCon
forall a. [a] -> Maybe a
Maybe.listToMaybe (TyCon -> [DataCon]
tyConDataCons TyCon
snatTc)
lbody :: Term
lbody = (Integer -> Term) -> Integer -> [Term] -> Term
doFold (DataCon -> Integer -> Term
buildSNat DataCon
snatDc) (Integer
nInteger -> Integer -> Integer
forall a. Num a => a -> a -> a
-Integer
1) (NonEmpty Term -> [Term]
forall a. NonEmpty a -> [a]
NE.toList NonEmpty Term
vars)
lb :: Term
lb = [(Id, Term)] -> Term -> Term
Letrec (NonEmpty (Id, Term) -> [(Id, Term)]
forall a. NonEmpty a -> [a]
NE.init NonEmpty (Id, Term)
elems) Term
lbody
(Supply -> Identity Supply)
-> RewriteState extra -> Identity (RewriteState extra)
forall extra. Lens' (RewriteState extra) Supply
uniqSupply ((Supply -> Identity Supply)
-> RewriteState extra -> Identity (RewriteState extra))
-> Supply -> RewriteMonad extra ()
forall s (m :: Type -> Type) a b.
MonadState s m =>
ASetter s s a b -> b -> m ()
Lens..= Supply
uniqs1
Term -> RewriteMonad extra Term
forall a extra. a -> RewriteMonad extra a
changed Term
lb
go TyConMap
_ Type
ty = [Char] -> RewriteMonad extra Term
forall a. HasCallStack => [Char] -> a
error ([Char] -> RewriteMonad extra Term)
-> [Char] -> RewriteMonad extra Term
forall a b. (a -> b) -> a -> b
$ $([Char]
curLoc) [Char] -> [Char] -> [Char]
forall a. [a] -> [a] -> [a]
++ [Char]
"reduceDTFold: argument does not have a vector type: " [Char] -> [Char] -> [Char]
forall a. [a] -> [a] -> [a]
++ Type -> [Char]
forall p. PrettyPrec p => p -> [Char]
showPpr Type
ty
doFold :: (Integer -> Term) -> Integer -> [Term] -> Term
doFold :: (Integer -> Term) -> Integer -> [Term] -> Term
doFold Integer -> Term
_ Integer
_ [Term
x] = Term -> [Either Term Type] -> Term
mkApps Term
lrFun [Term -> Either Term Type
forall a b. a -> Either a b
Left Term
x]
doFold Integer -> Term
snDc Integer
k [Term]
xs =
let ([Term]
xsL,[Term]
xsR) = Unique -> [Term] -> ([Term], [Term])
forall a. Unique -> [a] -> ([a], [a])
splitAt (Unique
2Unique -> Integer -> Unique
forall a b. (Num a, Integral b) => a -> b -> a
^Integer
k) [Term]
xs
k' :: Integer
k' = Integer
kInteger -> Integer -> Integer
forall a. Num a => a -> a -> a
-Integer
1
eL :: Term
eL = (Integer -> Term) -> Integer -> [Term] -> Term
doFold Integer -> Term
snDc Integer
k' [Term]
xsL
eR :: Term
eR = (Integer -> Term) -> Integer -> [Term] -> Term
doFold Integer -> Term
snDc Integer
k' [Term]
xsR
in Term -> [Either Term Type] -> Term
mkApps Term
brFun [Type -> Either Term Type
forall a b. b -> Either a b
Right (LitTy -> Type
LitTy (Integer -> LitTy
NumTy Integer
k))
,Term -> Either Term Type
forall a b. a -> Either a b
Left (Integer -> Term
snDc Integer
k)
,Term -> Either Term Type
forall a b. a -> Either a b
Left Term
eL
,Term -> Either Term Type
forall a b. a -> Either a b
Left Term
eR
]
reduceTFold
:: Integer
-> Type
-> Term
-> Term
-> Term
-> Term
-> Term
-> TransformContext
-> NormalizeSession Term
reduceTFold :: Integer
-> Type
-> Term
-> Term
-> Term
-> Term
-> Term
-> TransformContext
-> NormalizeSession Term
reduceTFold Integer
n Type
aTy Term
_kn Term
_motive Term
lrFun Term
brFun Term
arg (TransformContext InScopeSet
inScope Context
_ctx) = do
TyConMap
tcm <- Getting TyConMap RewriteEnv TyConMap
-> RewriteMonad NormalizeState TyConMap
forall s (m :: Type -> Type) a.
MonadReader s m =>
Getting a s a -> m a
Lens.view Getting TyConMap RewriteEnv TyConMap
Getter RewriteEnv TyConMap
tcCache
let ty :: Type
ty = TyConMap -> Term -> Type
forall a. InferType a => TyConMap -> a -> Type
inferCoreTypeOf TyConMap
tcm Term
arg
TyConMap -> Type -> NormalizeSession Term
forall extra. TyConMap -> Type -> RewriteMonad extra Term
go TyConMap
tcm Type
ty
where
go :: TyConMap -> Type -> RewriteMonad extra Term
go TyConMap
tcm (TyConMap -> Type -> Maybe Type
coreView1 TyConMap
tcm -> Just Type
ty') = TyConMap -> Type -> RewriteMonad extra Term
go TyConMap
tcm Type
ty'
go TyConMap
tcm (Type -> TypeView
tyView -> TyConApp TyConName
treeTcNm [Type]
_)
| (Just TyCon
treeTc) <- TyConName -> TyConMap -> Maybe TyCon
forall a b. Uniquable a => a -> UniqMap b -> Maybe b
UniqMap.lookup TyConName
treeTcNm TyConMap
tcm
, TyConName -> OccName
forall a. Name a -> OccName
nameOcc TyConName
treeTcNm OccName -> OccName -> Bool
forall a. Eq a => a -> a -> Bool
== OccName
"Clash.Sized.RTree.RTree"
, [DataCon
lrCon,DataCon
brCon] <- TyCon -> [DataCon]
tyConDataCons TyCon
treeTc
= do Supply
uniqs0 <- Getting Supply (RewriteState extra) Supply
-> RewriteMonad extra Supply
forall s (m :: Type -> Type) a.
MonadState s m =>
Getting a s a -> m a
Lens.use Getting Supply (RewriteState extra) Supply
forall extra. Lens' (RewriteState extra) Supply
uniqSupply
let (Supply
uniqs1,([Term]
vars,[(Id, Term)]
elems)) = Supply
-> InScopeSet
-> DataCon
-> DataCon
-> Type
-> Char
-> Integer
-> Term
-> (Supply, ([Term], [(Id, Term)]))
extractTElems Supply
uniqs0 InScopeSet
inScope DataCon
lrCon DataCon
brCon Type
aTy Char
'T' Integer
n Term
arg
snatDc :: DataCon
snatDc = DataCon -> Maybe DataCon -> DataCon
forall a. a -> Maybe a -> a
Maybe.fromMaybe ([Char] -> DataCon
forall a. HasCallStack => [Char] -> a
error [Char]
"reduceTFold: faild to build SNat") (Maybe DataCon -> DataCon) -> Maybe DataCon -> DataCon
forall a b. (a -> b) -> a -> b
$ do
(Either TyVar Type
_ltv:Right Type
snTy:[Either TyVar Type]
_,Type
_) <- ([Either TyVar Type], Type) -> Maybe ([Either TyVar Type], Type)
forall (f :: Type -> Type) a. Applicative f => a -> f a
pure (Type -> ([Either TyVar Type], Type)
splitFunForallTy (TyConMap -> Term -> Type
forall a. InferType a => TyConMap -> a -> Type
inferCoreTypeOf TyConMap
tcm Term
brFun))
(TyConApp TyConName
snatTcNm [Type]
_) <- TypeView -> Maybe TypeView
forall (f :: Type -> Type) a. Applicative f => a -> f a
pure (Type -> TypeView
tyView Type
snTy)
TyCon
snatTc <- TyConName -> TyConMap -> Maybe TyCon
forall a b. Uniquable a => a -> UniqMap b -> Maybe b
UniqMap.lookup TyConName
snatTcNm TyConMap
tcm
[DataCon] -> Maybe DataCon
forall a. [a] -> Maybe a
Maybe.listToMaybe (TyCon -> [DataCon]
tyConDataCons TyCon
snatTc)
lbody :: Term
lbody = (Integer -> Term) -> Integer -> [Term] -> Term
doFold (DataCon -> Integer -> Term
buildSNat DataCon
snatDc) (Integer
nInteger -> Integer -> Integer
forall a. Num a => a -> a -> a
-Integer
1) [Term]
vars
lb :: Term
lb = ([(Id, Term)] -> Term -> Term
Letrec [(Id, Term)]
elems Term
lbody)
(Supply -> Identity Supply)
-> RewriteState extra -> Identity (RewriteState extra)
forall extra. Lens' (RewriteState extra) Supply
uniqSupply ((Supply -> Identity Supply)
-> RewriteState extra -> Identity (RewriteState extra))
-> Supply -> RewriteMonad extra ()
forall s (m :: Type -> Type) a b.
MonadState s m =>
ASetter s s a b -> b -> m ()
Lens..= Supply
uniqs1
Term -> RewriteMonad extra Term
forall a extra. a -> RewriteMonad extra a
changed Term
lb
go TyConMap
_ Type
ty = [Char] -> RewriteMonad extra Term
forall a. HasCallStack => [Char] -> a
error ([Char] -> RewriteMonad extra Term)
-> [Char] -> RewriteMonad extra Term
forall a b. (a -> b) -> a -> b
$ $([Char]
curLoc) [Char] -> [Char] -> [Char]
forall a. [a] -> [a] -> [a]
++ [Char]
"reduceTFold: argument does not have a tree type: " [Char] -> [Char] -> [Char]
forall a. [a] -> [a] -> [a]
++ Type -> [Char]
forall p. PrettyPrec p => p -> [Char]
showPpr Type
ty
doFold :: (Integer -> Term) -> Integer -> [Term] -> Term
doFold Integer -> Term
_ Integer
_ [Term
x] = Term -> [Either Term Type] -> Term
mkApps Term
lrFun [Term -> Either Term Type
forall a b. a -> Either a b
Left Term
x]
doFold Integer -> Term
snDc Integer
k [Term]
xs =
let ([Term]
xsL,[Term]
xsR) = Unique -> [Term] -> ([Term], [Term])
forall a. Unique -> [a] -> ([a], [a])
splitAt ([Term] -> Unique
forall (t :: Type -> Type) a. Foldable t => t a -> Unique
length [Term]
xs Unique -> Unique -> Unique
forall a. Integral a => a -> a -> a
`div` Unique
2) [Term]
xs
k' :: Integer
k' = Integer
kInteger -> Integer -> Integer
forall a. Num a => a -> a -> a
-Integer
1
eL :: Term
eL = (Integer -> Term) -> Integer -> [Term] -> Term
doFold Integer -> Term
snDc Integer
k' [Term]
xsL
eR :: Term
eR = (Integer -> Term) -> Integer -> [Term] -> Term
doFold Integer -> Term
snDc Integer
k' [Term]
xsR
in Term -> [Either Term Type] -> Term
mkApps Term
brFun [Type -> Either Term Type
forall a b. b -> Either a b
Right (LitTy -> Type
LitTy (Integer -> LitTy
NumTy Integer
k))
,Term -> Either Term Type
forall a b. a -> Either a b
Left (Integer -> Term
snDc Integer
k)
,Term -> Either Term Type
forall a b. a -> Either a b
Left Term
eL
,Term -> Either Term Type
forall a b. a -> Either a b
Left Term
eR
]
reduceTReplicate :: Integer
-> Type
-> Type
-> Term
-> Term
-> TransformContext
-> NormalizeSession Term
reduceTReplicate :: Integer
-> Type
-> Type
-> Term
-> Term
-> TransformContext
-> NormalizeSession Term
reduceTReplicate Integer
n Type
aTy Type
eTy Term
_sn Term
arg TransformContext
_ctx = do
TyConMap
tcm <- Getting TyConMap RewriteEnv TyConMap
-> RewriteMonad NormalizeState TyConMap
forall s (m :: Type -> Type) a.
MonadReader s m =>
Getting a s a -> m a
Lens.view Getting TyConMap RewriteEnv TyConMap
Getter RewriteEnv TyConMap
tcCache
TyConMap -> Type -> NormalizeSession Term
forall extra. TyConMap -> Type -> RewriteMonad extra Term
go TyConMap
tcm Type
eTy
where
go :: TyConMap -> Type -> RewriteMonad extra Term
go TyConMap
tcm (TyConMap -> Type -> Maybe Type
coreView1 TyConMap
tcm -> Just Type
ty') = TyConMap -> Type -> RewriteMonad extra Term
go TyConMap
tcm Type
ty'
go TyConMap
tcm (Type -> TypeView
tyView -> TyConApp TyConName
treeTcNm [Type]
_)
| (Just TyCon
treeTc) <- TyConName -> TyConMap -> Maybe TyCon
forall a b. Uniquable a => a -> UniqMap b -> Maybe b
UniqMap.lookup TyConName
treeTcNm TyConMap
tcm
, TyConName -> OccName
forall a. Name a -> OccName
nameOcc TyConName
treeTcNm OccName -> OccName -> Bool
forall a. Eq a => a -> a -> Bool
== OccName
"Clash.Sized.RTree.RTree"
, [DataCon
lrCon,DataCon
brCon] <- TyCon -> [DataCon]
tyConDataCons TyCon
treeTc
= let retVec :: Term
retVec = DataCon -> DataCon -> Type -> Integer -> [Term] -> Term
mkRTree DataCon
lrCon DataCon
brCon Type
aTy Integer
n (Unique -> Term -> [Term]
forall a. Unique -> a -> [a]
replicate (Unique
2Unique -> Integer -> Unique
forall a b. (Num a, Integral b) => a -> b -> a
^Integer
n) Term
arg)
in Term -> RewriteMonad extra Term
forall a extra. a -> RewriteMonad extra a
changed Term
retVec
go TyConMap
_ Type
ty = [Char] -> RewriteMonad extra Term
forall a. HasCallStack => [Char] -> a
error ([Char] -> RewriteMonad extra Term)
-> [Char] -> RewriteMonad extra Term
forall a b. (a -> b) -> a -> b
$ $([Char]
curLoc) [Char] -> [Char] -> [Char]
forall a. [a] -> [a] -> [a]
++ [Char]
"reduceTReplicate: argument does not have a RTree type: " [Char] -> [Char] -> [Char]
forall a. [a] -> [a] -> [a]
++ Type -> [Char]
forall p. PrettyPrec p => p -> [Char]
showPpr Type
ty
buildSNat :: DataCon -> Integer -> Term
buildSNat :: DataCon -> Integer -> Term
buildSNat DataCon
snatDc Integer
i =
Term -> [Either Term Type] -> Term
mkApps (DataCon -> Term
Data DataCon
snatDc)
[Type -> Either Term Type
forall a b. b -> Either a b
Right (LitTy -> Type
LitTy (Integer -> LitTy
NumTy Integer
i))
,Term -> Either Term Type
forall a b. a -> Either a b
Left (Literal -> Term
Literal (Integer -> Literal
NaturalLiteral (Integer -> Integer
forall a. Integral a => a -> Integer
toInteger Integer
i)))
]