futhark-0.17.2: src/Language/Futhark/TypeChecker/Monad.hs
{-# LANGUAGE FlexibleContexts #-}
{-# LANGUAGE GeneralizedNewtypeDeriving #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE Trustworthy #-}
{-# LANGUAGE TupleSections #-}
-- | Main monad in which the type checker runs, as well as ancillary
-- data definitions.
module Language.Futhark.TypeChecker.Monad
( TypeM,
runTypeM,
askEnv,
askImportName,
bindSpaced,
qualifyTypeVars,
lookupMTy,
lookupImport,
localEnv,
TypeError (..),
unappliedFunctor,
unknownVariable,
unknownType,
underscoreUse,
Notes,
aNote,
MonadTypeChecker (..),
checkName,
badOnLeft,
module Language.Futhark.Warnings,
Env (..),
TySet,
FunSig (..),
ImportTable,
NameMap,
BoundV (..),
Mod (..),
TypeBinding (..),
MTy (..),
anySignedType,
anyUnsignedType,
anyFloatType,
anyNumberType,
anyPrimType,
Namespace (..),
intrinsicsNameMap,
topLevelNameMap,
)
where
import Control.Monad.Except
import Control.Monad.RWS.Strict hiding (Sum)
import Data.Either
import Data.List (find, isPrefixOf)
import qualified Data.Map.Strict as M
import Data.Maybe
import qualified Data.Set as S
import Futhark.FreshNames hiding (newName)
import qualified Futhark.FreshNames
import Futhark.Util.Console
import Futhark.Util.Pretty hiding (space)
import Language.Futhark
import Language.Futhark.Semantic
import Language.Futhark.Warnings
import Prelude hiding (mapM, mod)
-- | A note with extra information regarding a type error.
newtype Note = Note Doc
-- | A collection of 'Note's.
newtype Notes = Notes [Note]
deriving (Semigroup, Monoid)
instance Pretty Note where
ppr (Note msg) = "Note:" <+> align msg
instance Pretty Notes where
ppr (Notes notes) = foldMap (((line <> line) <>) . ppr) notes
-- | A single note.
aNote :: Pretty a => a -> Notes
aNote = Notes . pure . Note . ppr
-- | Information about an error during type checking.
data TypeError = TypeError SrcLoc Notes Doc
instance Pretty TypeError where
ppr (TypeError loc notes msg) =
text (inRed $ "Error at " <> locStr loc <> ":")
</> msg <> ppr notes
-- | An unexpected functor appeared!
unappliedFunctor :: MonadTypeChecker m => SrcLoc -> m a
unappliedFunctor loc =
typeError loc mempty "Cannot have parametric module here."
-- | An unknown variable was referenced.
unknownVariable ::
MonadTypeChecker m =>
Namespace ->
QualName Name ->
SrcLoc ->
m a
unknownVariable space name loc =
typeError loc mempty $
"Unknown" <+> ppr space <+> pquote (ppr name)
-- | An unknown type was referenced.
unknownType :: MonadTypeChecker m => SrcLoc -> QualName Name -> m a
unknownType loc name =
typeError loc mempty $ "Unknown type" <+> ppr name <> "."
-- | A name prefixed with an underscore was used.
underscoreUse ::
MonadTypeChecker m =>
SrcLoc ->
QualName Name ->
m a
underscoreUse loc name =
typeError loc mempty $
"Use of" <+> pquote (ppr name)
<> ": variables prefixed with underscore may not be accessed."
-- | A mapping from import strings to 'Env's. This is used to resolve
-- @import@ declarations.
type ImportTable = M.Map String Env
data Context = Context
{ contextEnv :: Env,
contextImportTable :: ImportTable,
contextImportName :: ImportName
}
-- | The type checker runs in this monad.
newtype TypeM a
= TypeM
( RWST
Context -- Reader
Warnings -- Writer
VNameSource -- State
(Except TypeError) -- Inner monad
a
)
deriving
( Monad,
Functor,
Applicative,
MonadReader Context,
MonadWriter Warnings,
MonadState VNameSource,
MonadError TypeError
)
-- | Run a 'TypeM' computation.
runTypeM ::
Env ->
ImportTable ->
ImportName ->
VNameSource ->
TypeM a ->
Either TypeError (a, Warnings, VNameSource)
runTypeM env imports fpath src (TypeM m) = do
(x, src', ws) <- runExcept $ runRWST m (Context env imports fpath) src
return (x, ws, src')
-- | Retrieve the current 'Env'.
askEnv :: TypeM Env
askEnv = asks contextEnv
-- | The name of the current file/import.
askImportName :: TypeM ImportName
askImportName = asks contextImportName
-- | Look up a module type.
lookupMTy :: SrcLoc -> QualName Name -> TypeM (QualName VName, MTy)
lookupMTy loc qn = do
(scope, qn'@(QualName _ name)) <- checkQualNameWithEnv Signature qn loc
(qn',) <$> maybe explode return (M.lookup name $ envSigTable scope)
where
explode = unknownVariable Signature qn loc
-- | Look up an import.
lookupImport :: SrcLoc -> FilePath -> TypeM (FilePath, Env)
lookupImport loc file = do
imports <- asks contextImportTable
my_path <- asks contextImportName
let canonical_import = includeToString $ mkImportFrom my_path file loc
case M.lookup canonical_import imports of
Nothing ->
typeError loc mempty $
"Unknown import" <+> dquotes (text canonical_import)
</> "Known:" <+> commasep (map text (M.keys imports))
Just scope -> return (canonical_import, scope)
-- | Evaluate a 'TypeM' computation within an extended (/not/
-- replaced) environment.
localEnv :: Env -> TypeM a -> TypeM a
localEnv env = local $ \ctx ->
let env' = env <> contextEnv ctx
in ctx {contextEnv = env'}
-- | Monads that support type checking. The reason we have this
-- internal interface is because we use distinct monads for checking
-- expressions and declarations.
class Monad m => MonadTypeChecker m where
warn :: Located loc => loc -> String -> m ()
newName :: VName -> m VName
newID :: Name -> m VName
bindNameMap :: NameMap -> m a -> m a
bindVal :: VName -> BoundV -> m a -> m a
checkQualName :: Namespace -> QualName Name -> SrcLoc -> m (QualName VName)
lookupType :: SrcLoc -> QualName Name -> m (QualName VName, [TypeParam], StructType, Liftedness)
lookupMod :: SrcLoc -> QualName Name -> m (QualName VName, Mod)
lookupVar :: SrcLoc -> QualName Name -> m (QualName VName, PatternType)
checkNamedDim :: SrcLoc -> QualName Name -> m (QualName VName)
checkNamedDim loc v = do
(v', t) <- lookupVar loc v
case t of
Scalar (Prim (Signed Int32)) -> return v'
_ ->
typeError loc mempty $
"Dimension declaration" <+> ppr v <+> "should be of type i32."
typeError :: Located loc => loc -> Notes -> Doc -> m a
-- | Elaborate the given name in the given namespace at the given
-- location, producing the corresponding unique 'VName'.
checkName :: MonadTypeChecker m => Namespace -> Name -> SrcLoc -> m VName
checkName space name loc = qualLeaf <$> checkQualName space (qualName name) loc
-- | Map source-level names do fresh unique internal names, and
-- evaluate a type checker context with the mapping active.
bindSpaced :: MonadTypeChecker m => [(Namespace, Name)] -> m a -> m a
bindSpaced names body = do
names' <- mapM (newID . snd) names
let mapping = M.fromList (zip names $ map qualName names')
bindNameMap mapping body
instance MonadTypeChecker TypeM where
warn loc problem = tell $ singleWarning (srclocOf loc) problem
newName s = do
src <- get
let (s', src') = Futhark.FreshNames.newName src s
put src'
return s'
newID s = newName $ VName s 0
bindNameMap m = local $ \ctx ->
let env = contextEnv ctx
in ctx {contextEnv = env {envNameMap = m <> envNameMap env}}
bindVal v t = local $ \ctx ->
ctx
{ contextEnv =
(contextEnv ctx)
{ envVtable = M.insert v t $ envVtable $ contextEnv ctx
}
}
checkQualName space name loc = snd <$> checkQualNameWithEnv space name loc
lookupType loc qn = do
outer_env <- askEnv
(scope, qn'@(QualName qs name)) <- checkQualNameWithEnv Type qn loc
case M.lookup name $ envTypeTable scope of
Nothing -> unknownType loc qn
Just (TypeAbbr l ps def) -> return (qn', ps, qualifyTypeVars outer_env mempty qs def, l)
lookupMod loc qn = do
(scope, qn'@(QualName _ name)) <- checkQualNameWithEnv Term qn loc
case M.lookup name $ envModTable scope of
Nothing -> unknownVariable Term qn loc
Just m -> return (qn', m)
lookupVar loc qn = do
outer_env <- askEnv
(env, qn'@(QualName qs name)) <- checkQualNameWithEnv Term qn loc
case M.lookup name $ envVtable env of
Nothing -> unknownVariable Term qn loc
Just (BoundV _ t)
| "_" `isPrefixOf` baseString name -> underscoreUse loc qn
| otherwise ->
case getType t of
Left {} ->
typeError loc mempty $
"Attempt to use function" <+> pprName name <+> "as value."
Right t' ->
return
( qn',
fromStruct $
qualifyTypeVars outer_env mempty qs t'
)
typeError loc notes s = throwError $ TypeError (srclocOf loc) notes s
-- | Extract from a type either a function type comprising a list of
-- parameter types and a return type, or a first-order type.
getType ::
TypeBase dim as ->
Either
([(PName, TypeBase dim as)], TypeBase dim as)
(TypeBase dim as)
getType (Scalar (Arrow _ v t1 t2)) =
case getType t2 of
Left (ps, r) -> Left ((v, t1) : ps, r)
Right _ -> Left ([(v, t1)], t2)
getType t = Right t
checkQualNameWithEnv :: Namespace -> QualName Name -> SrcLoc -> TypeM (Env, QualName VName)
checkQualNameWithEnv space qn@(QualName quals name) loc = do
env <- askEnv
descend env quals
where
descend scope []
| Just name' <- M.lookup (space, name) $ envNameMap scope =
return (scope, name')
| otherwise =
unknownVariable space qn loc
descend scope (q : qs)
| Just (QualName _ q') <- M.lookup (Term, q) $ envNameMap scope,
Just res <- M.lookup q' $ envModTable scope =
case res of
ModEnv q_scope -> do
(scope', QualName qs' name') <- descend q_scope qs
return (scope', QualName (q' : qs') name')
ModFun {} -> unappliedFunctor loc
| otherwise =
unknownVariable space qn loc
-- | Try to prepend qualifiers to the type names such that they
-- represent how to access the type in some scope.
qualifyTypeVars ::
Env ->
[VName] ->
[VName] ->
TypeBase (DimDecl VName) as ->
TypeBase (DimDecl VName) as
qualifyTypeVars outer_env orig_except ref_qs = onType (S.fromList orig_except)
where
onType ::
S.Set VName ->
TypeBase (DimDecl VName) as ->
TypeBase (DimDecl VName) as
onType except (Array as u et shape) =
Array as u (onScalar except et) (fmap (onDim except) shape)
onType except (Scalar t) =
Scalar $ onScalar except t
onScalar _ (Prim t) = Prim t
onScalar except (TypeVar as u tn targs) =
TypeVar as u tn' $ map (onTypeArg except) targs
where
tn' = typeNameFromQualName $ qual except $ qualNameFromTypeName tn
onScalar except (Record m) =
Record $ M.map (onType except) m
onScalar except (Sum m) =
Sum $ M.map (map $ onType except) m
onScalar except (Arrow as p t1 t2) =
Arrow as p (onType except' t1) (onType except' t2)
where
except' = case p of
Named p' -> S.insert p' except
Unnamed -> except
onTypeArg except (TypeArgDim d loc) =
TypeArgDim (onDim except d) loc
onTypeArg except (TypeArgType t loc) =
TypeArgType (onType except t) loc
onDim except (NamedDim qn) = NamedDim $ qual except qn
onDim _ d = d
qual except (QualName orig_qs name)
| name `elem` except || reachable orig_qs name outer_env =
QualName orig_qs name
| otherwise =
prependAsNecessary [] ref_qs $ QualName orig_qs name
prependAsNecessary qs rem_qs (QualName orig_qs name)
| reachable (qs ++ orig_qs) name outer_env = QualName (qs ++ orig_qs) name
| otherwise = case rem_qs of
q : rem_qs' -> prependAsNecessary (qs ++ [q]) rem_qs' (QualName orig_qs name)
[] -> QualName (qs ++ orig_qs) name
reachable [] name env =
name `M.member` envVtable env
|| isJust (find matches $ M.elems (envTypeTable env))
where
matches (TypeAbbr _ _ (Scalar (TypeVar _ _ (TypeName x_qs name') _))) =
null x_qs && name == name'
matches _ = False
reachable (q : qs') name env
| Just (ModEnv env') <- M.lookup q $ envModTable env =
reachable qs' name env'
| otherwise = False
-- | Turn a 'Left' 'TypeError' into an actual error.
badOnLeft :: Either TypeError a -> TypeM a
badOnLeft = either throwError return
-- | All signed integer types.
anySignedType :: [PrimType]
anySignedType = map Signed [minBound .. maxBound]
-- | All unsigned integer types.
anyUnsignedType :: [PrimType]
anyUnsignedType = map Unsigned [minBound .. maxBound]
-- | All integer types.
anyIntType :: [PrimType]
anyIntType = anySignedType ++ anyUnsignedType
-- | All floating-point types.
anyFloatType :: [PrimType]
anyFloatType = map FloatType [minBound .. maxBound]
-- | All number types.
anyNumberType :: [PrimType]
anyNumberType = anyIntType ++ anyFloatType
-- | All primitive types.
anyPrimType :: [PrimType]
anyPrimType = Bool : anyIntType ++ anyFloatType
--- Name handling
-- | The 'NameMap' corresponding to the intrinsics module.
intrinsicsNameMap :: NameMap
intrinsicsNameMap = M.fromList $ map mapping $ M.toList intrinsics
where
mapping (v, IntrinsicType {}) = ((Type, baseName v), QualName [] v)
mapping (v, _) = ((Term, baseName v), QualName [] v)
-- | The names that are available in the initial environment.
topLevelNameMap :: NameMap
topLevelNameMap = M.filterWithKey (\k _ -> atTopLevel k) intrinsicsNameMap
where
atTopLevel :: (Namespace, Name) -> Bool
atTopLevel (Type, _) = True
atTopLevel (Term, v) = v `S.member` (type_names <> binop_names <> unop_names <> fun_names)
where
type_names = S.fromList $ map (nameFromString . pretty) anyPrimType
binop_names =
S.fromList $
map
(nameFromString . pretty)
[minBound .. (maxBound :: BinOp)]
unop_names = S.fromList $ map nameFromString ["!"]
fun_names = S.fromList $ map nameFromString ["shape"]
atTopLevel _ = False