clash-lib-0.2: src/CLaSH/Core/Term.hs
{-# LANGUAGE FlexibleContexts #-}
{-# LANGUAGE FlexibleInstances #-}
{-# LANGUAGE MultiParamTypeClasses #-}
{-# LANGUAGE TemplateHaskell #-}
{-# LANGUAGE UndecidableInstances #-}
{-# OPTIONS_GHC -fno-warn-name-shadowing #-}
-- | Term representation in the CoreHW language: System F + LetRec + Case
module CLaSH.Core.Term
( Term (..)
, TmName
, LetBinding
, Pat (..)
)
where
-- External Modules
import Unbound.LocallyNameless as Unbound hiding (Data)
import Unbound.LocallyNameless.Alpha (aeqR1, fvR1)
import Unbound.LocallyNameless.Name (isFree)
-- Internal Modules
import CLaSH.Core.DataCon (DataCon)
import CLaSH.Core.Literal (Literal)
import {-# SOURCE #-} CLaSH.Core.Type (Type)
import CLaSH.Core.Var (Id, TyVar)
import CLaSH.Util
-- | Term representation in the CoreHW language: System F + LetRec + Case
data Term
= Var Type TmName -- ^ Variable reference
| Data DataCon -- ^ Datatype constructor
| Literal Literal -- ^ Literal
| Prim TmName Type -- ^ Primitive
| Lam (Bind Id Term) -- ^ Term-abstraction
| TyLam (Bind TyVar Term) -- ^ Type-abstraction
| App Term Term -- ^ Application
| TyApp Term Type -- ^ Type-application
| Letrec (Bind (Rec [LetBinding]) Term) -- ^ Recursive let-binding
| Case Term Type [Bind Pat Term] -- ^ Case-expression: subject, type of
-- alternatives, list of alternatives
deriving Show
-- | Term reference
type TmName = Name Term
-- | Binding in a LetRec construct
type LetBinding = (Id, Embed Term)
-- | Patterns in the LHS of a case-decomposition
data Pat
= DataPat (Embed DataCon) (Rebind [TyVar] [Id])
-- ^ Datatype pattern, '[TyVar]' bind existentially-quantified
-- type-variables of a DataCon
| LitPat (Embed Literal)
-- ^ Literal pattern
| DefaultPat
-- ^ Default pattern
deriving (Show)
Unbound.derive [''Term,''Pat]
instance Eq Term where
(==) = aeq
instance Ord Term where
compare = acompare
instance Alpha Term where
fv' c (Var _ n) = fv' c n
fv' c (Prim _ t) = fv' c t
fv' c t = fvR1 rep1 c t
aeq' c (Var _ n) (Var _ m) = aeq' c n m
aeq' c t1 t2 = aeqR1 rep1 c t1 t2
instance Alpha Pat
instance Subst Term Pat
instance Subst Term Term where
isvar (Var _ x) = Just (SubstName x)
isvar _ = Nothing
instance Subst Type Pat
instance Subst Type Term where
subst tvN u x | isFree tvN = case x of
Lam b -> Lam (subst tvN u b )
TyLam b -> TyLam (subst tvN u b )
App fun arg -> App (subst tvN u fun) (subst tvN u arg)
TyApp e ty -> TyApp (subst tvN u e ) (subst tvN u ty )
Letrec b -> Letrec (subst tvN u b )
Case e ty a -> Case (subst tvN u e )
(subst tvN u ty )
(subst tvN u a )
Var ty nm -> Var (subst tvN u ty ) nm
Prim nm ty -> Prim nm (subst tvN u ty)
e -> e
subst m _ _ = error $ $(curLoc) ++ "Cannot substitute for bound variable: " ++ show m