{-# LANGUAGE DeriveFunctor #-} {-# LANGUAGE FlexibleContexts #-} {-# LANGUAGE FlexibleInstances #-} {-# LANGUAGE GeneralizedNewtypeDeriving #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE Trustworthy #-} {-# LANGUAGE TupleSections #-} -- | Facilities for type-checking Futhark terms. Checking a term -- requires a little more context to track uniqueness and such. -- -- Type inference is implemented through a variation of -- Hindley-Milner. The main complication is supporting the rich -- number of built-in language constructs, as well as uniqueness -- types. This is mostly done in an ad hoc way, and many programs -- will require the programmer to fall back on type annotations. module Language.Futhark.TypeChecker.Terms ( checkOneExp, checkFunDef, ) where import Control.Monad.Except import Control.Monad.Reader import Control.Monad.State import Data.Bifunctor import Data.Bitraversable import Data.Char (isAscii) import Data.Either import Data.List (find, foldl', isPrefixOf, sort) import qualified Data.List.NonEmpty as NE import qualified Data.Map.Strict as M import Data.Maybe import qualified Data.Set as S import qualified Data.Version as Version import Futhark.IR.Primitive (intByteSize) import Futhark.Util (nubOrd) import Futhark.Util.Pretty hiding (bool, group, space) import Language.Futhark import Language.Futhark.Semantic (includeToFilePath) import Language.Futhark.Traversals import Language.Futhark.TypeChecker.Match import Language.Futhark.TypeChecker.Monad hiding (BoundV) import qualified Language.Futhark.TypeChecker.Monad as TypeM import Language.Futhark.TypeChecker.Types hiding (checkTypeDecl) import qualified Language.Futhark.TypeChecker.Types as Types import Language.Futhark.TypeChecker.Unify hiding (Usage) import qualified Paths_futhark import Prelude hiding (mod) --- Uniqueness data Usage = Consumed SrcLoc | Observed SrcLoc deriving (Eq, Ord, Show) type Names = S.Set VName -- | The consumption set is a Maybe so we can distinguish whether a -- consumption took place, but the variable went out of scope since, -- or no consumption at all took place. data Occurence = Occurence { observed :: Names, consumed :: Maybe Names, location :: SrcLoc } deriving (Eq, Show) instance Located Occurence where locOf = locOf . location observation :: Aliasing -> SrcLoc -> Occurence observation = flip Occurence Nothing . S.map aliasVar consumption :: Aliasing -> SrcLoc -> Occurence consumption = Occurence S.empty . Just . S.map aliasVar -- | A null occurence is one that we can remove without affecting -- anything. nullOccurence :: Occurence -> Bool nullOccurence occ = S.null (observed occ) && isNothing (consumed occ) -- | A seminull occurence is one that does not contain references to -- any variables in scope. The big difference is that a seminull -- occurence may denote a consumption, as long as the array that was -- consumed is now out of scope. seminullOccurence :: Occurence -> Bool seminullOccurence occ = S.null (observed occ) && maybe True S.null (consumed occ) type Occurences = [Occurence] type UsageMap = M.Map VName [Usage] usageMap :: Occurences -> UsageMap usageMap = foldl comb M.empty where comb m (Occurence obs cons loc) = let m' = S.foldl' (ins $ Observed loc) m obs in S.foldl' (ins $ Consumed loc) m' $ fromMaybe mempty cons ins v m k = M.insertWith (++) k [v] m combineOccurences :: VName -> Usage -> Usage -> TermTypeM Usage combineOccurences _ (Observed loc) (Observed _) = return $ Observed loc combineOccurences name (Consumed wloc) (Observed rloc) = useAfterConsume name rloc wloc combineOccurences name (Observed rloc) (Consumed wloc) = useAfterConsume name rloc wloc combineOccurences name (Consumed loc1) (Consumed loc2) = useAfterConsume name (max loc1 loc2) (min loc1 loc2) checkOccurences :: Occurences -> TermTypeM () checkOccurences = void . M.traverseWithKey comb . usageMap where comb _ [] = return () comb name (u : us) = foldM_ (combineOccurences name) u us allObserved :: Occurences -> Names allObserved = S.unions . map observed allConsumed :: Occurences -> Names allConsumed = S.unions . map (fromMaybe mempty . consumed) allOccuring :: Occurences -> Names allOccuring occs = allConsumed occs <> allObserved occs anyConsumption :: Occurences -> Maybe Occurence anyConsumption = find (isJust . consumed) seqOccurences :: Occurences -> Occurences -> Occurences seqOccurences occurs1 occurs2 = filter (not . nullOccurence) $ map filt occurs1 ++ occurs2 where filt occ = occ {observed = observed occ `S.difference` postcons} postcons = allConsumed occurs2 altOccurences :: Occurences -> Occurences -> Occurences altOccurences occurs1 occurs2 = filter (not . nullOccurence) $ map filt1 occurs1 ++ map filt2 occurs2 where filt1 occ = occ { consumed = S.difference <$> consumed occ <*> pure cons2, observed = observed occ `S.difference` cons2 } filt2 occ = occ { consumed = consumed occ, observed = observed occ `S.difference` cons1 } cons1 = allConsumed occurs1 cons2 = allConsumed occurs2 --- Scope management data Checking = CheckingApply (Maybe (QualName VName)) Exp StructType StructType | CheckingReturn StructType StructType | CheckingAscription StructType StructType | CheckingLetGeneralise Name | CheckingParams (Maybe Name) | CheckingPat UncheckedPat InferredType | CheckingLoopBody StructType StructType | CheckingLoopInitial StructType StructType | CheckingRecordUpdate [Name] StructType StructType | CheckingRequired [StructType] StructType | CheckingBranches StructType StructType instance Pretty Checking where ppr (CheckingApply f e expected actual) = header "Expected:" <+> align (ppr expected) "Actual: " <+> align (ppr actual) where header = case f of Nothing -> "Cannot apply function to" <+> pquote (shorten $ pretty $ flatten $ ppr e) <> " (invalid type)." Just fname -> "Cannot apply" <+> pquote (ppr fname) <+> "to" <+> pquote (shorten $ pretty $ flatten $ ppr e) <> " (invalid type)." ppr (CheckingReturn expected actual) = "Function body does not have expected type." "Expected:" <+> align (ppr expected) "Actual: " <+> align (ppr actual) ppr (CheckingAscription expected actual) = "Expression does not have expected type from explicit ascription." "Expected:" <+> align (ppr expected) "Actual: " <+> align (ppr actual) ppr (CheckingLetGeneralise fname) = "Cannot generalise type of" <+> pquote (ppr fname) <> "." ppr (CheckingParams fname) = "Invalid use of parameters in" <+> pquote fname' <> "." where fname' = maybe "anonymous function" ppr fname ppr (CheckingPat pat NoneInferred) = "Invalid pattern" <+> pquote (ppr pat) <> "." ppr (CheckingPat pat (Ascribed t)) = "Pat" <+> pquote (ppr pat) <+> "cannot match value of type" indent 2 (ppr t) ppr (CheckingLoopBody expected actual) = "Loop body does not have expected type." "Expected:" <+> align (ppr expected) "Actual: " <+> align (ppr actual) ppr (CheckingLoopInitial expected actual) = "Initial loop values do not have expected type." "Expected:" <+> align (ppr expected) "Actual: " <+> align (ppr actual) ppr (CheckingRecordUpdate fs expected actual) = "Type mismatch when updating record field" <+> pquote fs' <> "." "Existing:" <+> align (ppr expected) "New: " <+> align (ppr actual) where fs' = mconcat $ punctuate "." $ map ppr fs ppr (CheckingRequired [expected] actual) = "Expression must must have type" <+> ppr expected <> "." "Actual type:" <+> align (ppr actual) ppr (CheckingRequired expected actual) = "Type of expression must must be one of " <+> expected' <> "." "Actual type:" <+> align (ppr actual) where expected' = commasep (map ppr expected) ppr (CheckingBranches t1 t2) = "Conditional branches differ in type." "Former:" <+> ppr t1 "Latter:" <+> ppr t2 -- | Whether something is a global or a local variable. data Locality = Local | Global deriving (Show) data ValBinding = -- | Aliases in parameters indicate the lexical -- closure. BoundV Locality [TypeParam] PatType | OverloadedF [PrimType] [Maybe PrimType] (Maybe PrimType) | EqualityF | WasConsumed SrcLoc deriving (Show) -- | Type checking happens with access to this environment. The -- 'TermScope' will be extended during type-checking as bindings come into -- scope. data TermEnv = TermEnv { termScope :: TermScope, termChecking :: Maybe Checking, termLevel :: Level } data TermScope = TermScope { scopeVtable :: M.Map VName ValBinding, scopeTypeTable :: M.Map VName TypeBinding, scopeModTable :: M.Map VName Mod, scopeNameMap :: NameMap } deriving (Show) instance Semigroup TermScope where TermScope vt1 tt1 mt1 nt1 <> TermScope vt2 tt2 mt2 nt2 = TermScope (vt2 `M.union` vt1) (tt2 `M.union` tt1) (mt1 `M.union` mt2) (nt2 `M.union` nt1) envToTermScope :: Env -> TermScope envToTermScope env = TermScope { scopeVtable = vtable, scopeTypeTable = envTypeTable env, scopeNameMap = envNameMap env, scopeModTable = envModTable env } where vtable = M.mapWithKey valBinding $ envVtable env valBinding k (TypeM.BoundV tps v) = BoundV Global tps $ v `setAliases` (if arrayRank v > 0 then S.singleton (AliasBound k) else mempty) withEnv :: TermEnv -> Env -> TermEnv withEnv tenv env = tenv {termScope = termScope tenv <> envToTermScope env} overloadedTypeVars :: Constraints -> Names overloadedTypeVars = mconcat . map f . M.elems where f (_, HasFields fs _) = mconcat $ map typeVars $ M.elems fs f _ = mempty -- | Get the type of an expression, with top level type variables -- substituted. Never call 'typeOf' directly (except in a few -- carefully inspected locations)! expType :: Exp -> TermTypeM PatType expType = normPatType . typeOf -- | Get the type of an expression, with all type variables -- substituted. Slower than 'expType', but sometimes necessary. -- Never call 'typeOf' directly (except in a few carefully inspected -- locations)! expTypeFully :: Exp -> TermTypeM PatType expTypeFully = normTypeFully . typeOf -- Wrap a function name to give it a vacuous Eq instance for SizeSource. newtype FName = FName (Maybe (QualName VName)) deriving (Show) instance Eq FName where _ == _ = True instance Ord FName where compare _ _ = EQ -- | What was the source of some existential size? This is used for -- using the same existential variable if the same source is -- encountered in multiple locations. data SizeSource = SourceArg FName (ExpBase NoInfo VName) | SourceBound (ExpBase NoInfo VName) | SourceSlice (Maybe (DimDecl VName)) (Maybe (ExpBase NoInfo VName)) (Maybe (ExpBase NoInfo VName)) (Maybe (ExpBase NoInfo VName)) deriving (Eq, Ord, Show) -- | A description of where an artificial compiler-generated -- intermediate name came from. data NameReason = -- | Name is the result of a function application. NameAppRes (Maybe (QualName VName)) SrcLoc nameReason :: SrcLoc -> NameReason -> Doc nameReason loc (NameAppRes Nothing apploc) = "result of application at" <+> text (locStrRel loc apploc) nameReason loc (NameAppRes fname apploc) = "result of applying" <+> pquote (ppr fname) <+> parens ("at" <+> text (locStrRel loc apploc)) -- | The state is a set of constraints and a counter for generating -- type names. This is distinct from the usual counter we use for -- generating unique names, as these will be user-visible. data TermTypeState = TermTypeState { stateConstraints :: Constraints, stateCounter :: !Int, -- | Mapping function arguments encountered to -- the sizes they ended up generating (when -- they could not be substituted directly). -- This happens for function arguments that are -- not constants or names. stateDimTable :: M.Map SizeSource VName, stateNames :: M.Map VName NameReason, stateOccs :: Occurences } newtype TermTypeM a = TermTypeM (ReaderT TermEnv (StateT TermTypeState TypeM) a) deriving ( Monad, Functor, Applicative, MonadReader TermEnv, MonadState TermTypeState, MonadError TypeError ) instance MonadUnify TermTypeM where getConstraints = gets stateConstraints putConstraints x = modify $ \s -> s {stateConstraints = x} newTypeVar loc desc = do i <- incCounter v <- newID $ mkTypeVarName desc i constrain v $ NoConstraint Lifted $ mkUsage' loc return $ Scalar $ TypeVar mempty Nonunique (typeName v) [] curLevel = asks termLevel newDimVar loc rigidity name = do i <- incCounter dim <- newID $ mkTypeVarName name i case rigidity of Rigid rsrc -> constrain dim $ UnknowableSize loc rsrc Nonrigid -> constrain dim $ Size Nothing $ mkUsage' loc return dim unifyError loc notes bcs doc = do checking <- asks termChecking case checking of Just checking' -> throwError $ TypeError (srclocOf loc) notes $ ppr checking' <> line doc <> ppr bcs Nothing -> throwError $ TypeError (srclocOf loc) notes $ doc <> ppr bcs matchError loc notes bcs t1 t2 = do checking <- asks termChecking case checking of Just checking' | hasNoBreadCrumbs bcs -> throwError $ TypeError (srclocOf loc) notes $ ppr checking' | otherwise -> throwError $ TypeError (srclocOf loc) notes $ ppr checking' <> line doc <> ppr bcs Nothing -> throwError $ TypeError (srclocOf loc) notes $ doc <> ppr bcs where doc = "Types" indent 2 (ppr t1) "and" indent 2 (ppr t2) "do not match." onFailure :: Checking -> TermTypeM a -> TermTypeM a onFailure c = local $ \env -> env {termChecking = Just c} runTermTypeM :: TermTypeM a -> TypeM (a, Occurences) runTermTypeM (TermTypeM m) = do initial_scope <- (initialTermScope <>) . envToTermScope <$> askEnv let initial_tenv = TermEnv { termScope = initial_scope, termChecking = Nothing, termLevel = 0 } second stateOccs <$> runStateT (runReaderT m initial_tenv) (TermTypeState mempty 0 mempty mempty mempty) liftTypeM :: TypeM a -> TermTypeM a liftTypeM = TermTypeM . lift . lift localScope :: (TermScope -> TermScope) -> TermTypeM a -> TermTypeM a localScope f = local $ \tenv -> tenv {termScope = f $ termScope tenv} incCounter :: TermTypeM Int incCounter = do s <- get put s {stateCounter = stateCounter s + 1} return $ stateCounter s extSize :: SrcLoc -> SizeSource -> TermTypeM (DimDecl VName, Maybe VName) extSize loc e = do prev <- gets $ M.lookup e . stateDimTable case prev of Nothing -> do let rsrc = case e of SourceArg (FName fname) e' -> RigidArg fname $ prettyOneLine e' SourceBound e' -> RigidBound $ prettyOneLine e' SourceSlice d i j s -> RigidSlice d $ prettyOneLine $ DimSlice i j s d <- newDimVar loc (Rigid rsrc) "n" modify $ \s -> s {stateDimTable = M.insert e d $ stateDimTable s} return ( NamedDim $ qualName d, Just d ) Just d -> return ( NamedDim $ qualName d, Just d ) -- Any argument sizes created with 'extSize' inside the given action -- will be removed once the action finishes. This is to ensure that -- just because e.g. @n+1@ appears as a size in one branch of a -- conditional, that doesn't mean it's also available in the other branch. noSizeEscape :: TermTypeM a -> TermTypeM a noSizeEscape m = do dimtable <- gets stateDimTable x <- m modify $ \s -> s {stateDimTable = dimtable} return x constrain :: VName -> Constraint -> TermTypeM () constrain v c = do lvl <- curLevel modifyConstraints $ M.insert v (lvl, c) incLevel :: TermTypeM a -> TermTypeM a incLevel = local $ \env -> env {termLevel = termLevel env + 1} initialTermScope :: TermScope initialTermScope = TermScope { scopeVtable = initialVtable, scopeTypeTable = mempty, scopeNameMap = topLevelNameMap, scopeModTable = mempty } where initialVtable = M.fromList $ mapMaybe addIntrinsicF $ M.toList intrinsics prim = Scalar . Prim arrow x y = Scalar $ Arrow mempty Unnamed x y addIntrinsicF (name, IntrinsicMonoFun pts t) = Just (name, BoundV Global [] $ arrow pts' $ prim t) where pts' = case pts of [pt] -> prim pt _ -> tupleRecord $ map prim pts addIntrinsicF (name, IntrinsicOverloadedFun ts pts rts) = Just (name, OverloadedF ts pts rts) addIntrinsicF (name, IntrinsicPolyFun tvs pts rt) = Just ( name, BoundV Global tvs $ fromStruct $ Scalar $ Arrow mempty Unnamed pts' rt ) where pts' = case pts of [pt] -> pt _ -> tupleRecord pts addIntrinsicF (name, IntrinsicEquality) = Just (name, EqualityF) addIntrinsicF _ = Nothing instance MonadTypeChecker TermTypeM where warn loc problem = liftTypeM $ warn loc problem newName = liftTypeM . newName newID = liftTypeM . newID checkQualName space name loc = snd <$> checkQualNameWithEnv space name loc bindNameMap m = localScope $ \scope -> scope {scopeNameMap = m <> scopeNameMap scope} bindVal v (TypeM.BoundV tps t) = localScope $ \scope -> scope {scopeVtable = M.insert v vb $ scopeVtable scope} where vb = BoundV Local tps $ fromStruct t lookupType loc qn = do outer_env <- liftTypeM askEnv (scope, qn'@(QualName qs name)) <- checkQualNameWithEnv Type qn loc case M.lookup name $ scopeTypeTable scope of Nothing -> unknownType loc qn Just (TypeAbbr l ps def) -> return (qn', ps, qualifyTypeVars outer_env (map typeParamName ps) qs def, l) lookupMod loc qn = do (scope, qn'@(QualName _ name)) <- checkQualNameWithEnv Term qn loc case M.lookup name $ scopeModTable scope of Nothing -> unknownVariable Term qn loc Just m -> return (qn', m) lookupVar loc qn = do outer_env <- liftTypeM askEnv (scope, qn'@(QualName qs name)) <- checkQualNameWithEnv Term qn loc let usage = mkUsage loc $ "use of " ++ quote (pretty qn) t <- case M.lookup name $ scopeVtable scope of Nothing -> typeError loc mempty $ "Unknown variable" <+> pquote (ppr qn) <> "." Just (WasConsumed wloc) -> useAfterConsume name loc wloc Just (BoundV _ tparams t) | "_" `isPrefixOf` baseString name -> underscoreUse loc qn | otherwise -> do (tnames, t') <- instantiateTypeScheme loc tparams t return $ qualifyTypeVars outer_env tnames qs t' Just EqualityF -> do argtype <- newTypeVar loc "t" equalityType usage argtype return $ Scalar $ Arrow mempty Unnamed argtype $ Scalar $ Arrow mempty Unnamed argtype $ Scalar $ Prim Bool Just (OverloadedF ts pts rt) -> do argtype <- newTypeVar loc "t" mustBeOneOf ts usage argtype let (pts', rt') = instOverloaded argtype pts rt arrow xt yt = Scalar $ Arrow mempty Unnamed xt yt return $ fromStruct $ foldr arrow rt' pts' observe $ Ident name (Info t) loc return (qn', t) where instOverloaded argtype pts rt = ( map (maybe (toStruct argtype) (Scalar . Prim)) pts, maybe (toStruct argtype) (Scalar . Prim) rt ) checkNamedDim loc v = do (v', t) <- lookupVar loc v onFailure (CheckingRequired [Scalar $ Prim $ Signed Int64] (toStruct t)) $ unify (mkUsage loc "use as array size") (toStruct t) $ Scalar $ Prim $ Signed Int64 return v' typeError loc notes s = do checking <- asks termChecking case checking of Just checking' -> throwError $ TypeError (srclocOf loc) notes (ppr checking' <> line s) Nothing -> throwError $ TypeError (srclocOf loc) notes s checkQualNameWithEnv :: Namespace -> QualName Name -> SrcLoc -> TermTypeM (TermScope, QualName VName) checkQualNameWithEnv space qn@(QualName quals name) loc = do scope <- asks termScope descend scope quals where descend scope [] | Just name' <- M.lookup (space, name) $ scopeNameMap scope = return (scope, name') | otherwise = unknownVariable space qn loc descend scope (q : qs) | Just (QualName _ q') <- M.lookup (Term, q) $ scopeNameMap scope, Just res <- M.lookup q' $ scopeModTable scope = case res of -- Check if we are referring to the magical intrinsics -- module. _ | baseTag q' <= maxIntrinsicTag -> checkIntrinsic space qn loc ModEnv q_scope -> do (scope', QualName qs' name') <- descend (envToTermScope q_scope) qs return (scope', QualName (q' : qs') name') ModFun {} -> unappliedFunctor loc | otherwise = unknownVariable space qn loc checkIntrinsic :: Namespace -> QualName Name -> SrcLoc -> TermTypeM (TermScope, QualName VName) checkIntrinsic space qn@(QualName _ name) loc | Just v <- M.lookup (space, name) intrinsicsNameMap = do me <- liftTypeM askImportName unless ("/prelude" `isPrefixOf` includeToFilePath me) $ warn loc "Using intrinsic functions directly can easily crash the compiler or result in wrong code generation." scope <- asks termScope return (scope, v) | otherwise = unknownVariable space qn loc -- | Wrap 'Types.checkTypeDecl' to also perform an observation of -- every size in the type. checkTypeDecl :: TypeDeclBase NoInfo Name -> TermTypeM (TypeDeclBase Info VName) checkTypeDecl tdecl = do (tdecl', _) <- Types.checkTypeDecl tdecl mapM_ observeDim $ nestedDims $ unInfo $ expandedType tdecl' return tdecl' where observeDim (NamedDim v) = observe $ Ident (qualLeaf v) (Info $ Scalar $ Prim $ Signed Int64) mempty observeDim _ = return () -- | Instantiate a type scheme with fresh type variables for its type -- parameters. Returns the names of the fresh type variables, the -- instance list, and the instantiated type. instantiateTypeScheme :: SrcLoc -> [TypeParam] -> PatType -> TermTypeM ([VName], PatType) instantiateTypeScheme loc tparams t = do let tnames = map typeParamName tparams (tparam_names, tparam_substs) <- unzip <$> mapM (instantiateTypeParam loc) tparams let substs = M.fromList $ zip tnames tparam_substs t' = applySubst (`M.lookup` substs) t return (tparam_names, t') -- | Create a new type name and insert it (unconstrained) in the -- substitution map. instantiateTypeParam :: Monoid as => SrcLoc -> TypeParam -> TermTypeM (VName, Subst (TypeBase dim as)) instantiateTypeParam loc tparam = do i <- incCounter v <- newID $ mkTypeVarName (takeWhile isAscii (baseString (typeParamName tparam))) i case tparam of TypeParamType x _ _ -> do constrain v $ NoConstraint x $ mkUsage' loc return (v, Subst [] $ Scalar $ TypeVar mempty Nonunique (typeName v) []) TypeParamDim {} -> do constrain v $ Size Nothing $ mkUsage' loc return (v, SizeSubst $ NamedDim $ qualName v) newArrayType :: SrcLoc -> String -> Int -> TermTypeM (StructType, StructType) newArrayType loc desc r = do v <- newID $ nameFromString desc constrain v $ NoConstraint Unlifted $ mkUsage' loc dims <- replicateM r $ newDimVar loc Nonrigid "dim" let rowt = TypeVar () Nonunique (typeName v) [] return ( Array () Nonunique rowt (ShapeDecl $ map (NamedDim . qualName) dims), Scalar rowt ) --- Errors errorIndexUrl :: Doc errorIndexUrl = version_url <> "error-index.html" where version = Paths_futhark.version base_url = "https://futhark.readthedocs.io/en/" version_url | last (Version.versionBranch version) == 0 = base_url <> "latest/" | otherwise = base_url <> "v" <> text (Version.showVersion version) <> "/" withIndexLink :: Doc -> Doc -> Doc withIndexLink href msg = stack [ msg, "\nFor more information, see:", indent 2 (ppr errorIndexUrl <> "#" <> href) ] useAfterConsume :: VName -> SrcLoc -> SrcLoc -> TermTypeM a useAfterConsume name rloc wloc = do name' <- describeVar rloc name typeError rloc mempty . withIndexLink "use-after-consume" $ "Using" <+> name' <> ", but this was consumed at" <+> text (locStrRel rloc wloc) <> ". (Possibly through aliasing.)" badLetWithValue :: (Pretty arr, Pretty src) => arr -> src -> SrcLoc -> TermTypeM a badLetWithValue arre vale loc = typeError loc mempty $ "Source array for in-place update" indent 2 (ppr arre) "might alias update value" indent 2 (ppr vale) "Hint: use" <+> pquote "copy" <+> "to remove aliases from the value." returnAliased :: Name -> Name -> SrcLoc -> TermTypeM () returnAliased fname name loc = typeError loc mempty . withIndexLink "return-aliased" $ "Unique-typed return value of" <+> pquote (pprName fname) <+> "is aliased to" <+> pquote (pprName name) <> ", which is not consumable." uniqueReturnAliased :: Name -> SrcLoc -> TermTypeM a uniqueReturnAliased fname loc = typeError loc mempty . withIndexLink "unique-return-aliased" $ "A unique-typed component of the return value of" <+> pquote (pprName fname) <+> "is aliased to some other component." unexpectedType :: MonadTypeChecker m => SrcLoc -> StructType -> [StructType] -> m a unexpectedType loc _ [] = typeError loc mempty $ "Type of expression at" <+> text (locStr loc) <+> "cannot have any type - possibly a bug in the type checker." unexpectedType loc t ts = typeError loc mempty $ "Type of expression at" <+> text (locStr loc) <+> "must be one of" <+> commasep (map ppr ts) <> ", but is" <+> ppr t <> "." notConsumable :: MonadTypeChecker m => SrcLoc -> Doc -> m b notConsumable loc v = typeError loc mempty . withIndexLink "not-consumable" $ "Would consume" <+> v <> ", which is not consumable." unusedSize :: (MonadTypeChecker m) => SizeBinder VName -> m a unusedSize p = typeError p mempty . withIndexLink "unused-size" $ "Size" <+> ppr p <+> "unused in pattern." --- Basic checking -- | Determine if the two types of identical, ignoring uniqueness. -- Mismatched dimensions are turned into fresh rigid type variables. -- Causes a 'TypeError' if they fail to match, and otherwise returns -- one of them. unifyBranchTypes :: SrcLoc -> PatType -> PatType -> TermTypeM (PatType, [VName]) unifyBranchTypes loc t1 t2 = onFailure (CheckingBranches (toStruct t1) (toStruct t2)) $ unifyMostCommon (mkUsage loc "unification of branch results") t1 t2 unifyBranches :: SrcLoc -> Exp -> Exp -> TermTypeM (PatType, [VName]) unifyBranches loc e1 e2 = do e1_t <- expTypeFully e1 e2_t <- expTypeFully e2 unifyBranchTypes loc e1_t e2_t --- General binding. doNotShadow :: [String] doNotShadow = ["&&", "||"] data InferredType = NoneInferred | Ascribed PatType -- All this complexity is just so we can handle un-suffixed numeric -- literals in patterns. patLitMkType :: PatLit -> SrcLoc -> TermTypeM StructType patLitMkType (PatLitInt _) loc = do t <- newTypeVar loc "t" mustBeOneOf anyNumberType (mkUsage loc "integer literal") t return t patLitMkType (PatLitFloat _) loc = do t <- newTypeVar loc "t" mustBeOneOf anyFloatType (mkUsage loc "float literal") t return t patLitMkType (PatLitPrim v) _ = pure $ Scalar $ Prim $ primValueType v nonrigidFor :: [SizeBinder VName] -> StructType -> TermTypeM StructType nonrigidFor [] t = pure t -- Minor optimisation. nonrigidFor sizes t = evalStateT (bitraverse onDim pure t) mempty where onDim (NamedDim (QualName _ v)) | Just size <- find ((== v) . sizeName) sizes = do prev <- gets $ lookup v case prev of Nothing -> do v' <- lift $ newID $ baseName v lift $ constrain v' $ Size Nothing $ mkUsage' $ srclocOf size modify ((v, v') :) pure $ NamedDim $ qualName v' Just v' -> pure $ NamedDim $ qualName v' onDim d = pure d checkPat' :: [SizeBinder VName] -> UncheckedPat -> InferredType -> TermTypeM Pat checkPat' sizes (PatParens p loc) t = PatParens <$> checkPat' sizes p t <*> pure loc checkPat' _ (Id name _ loc) _ | name' `elem` doNotShadow = typeError loc mempty $ "The" <+> text name' <+> "operator may not be redefined." where name' = nameToString name checkPat' _ (Id name NoInfo loc) (Ascribed t) = do name' <- newID name return $ Id name' (Info t) loc checkPat' _ (Id name NoInfo loc) NoneInferred = do name' <- newID name t <- newTypeVar loc "t" return $ Id name' (Info t) loc checkPat' _ (Wildcard _ loc) (Ascribed t) = return $ Wildcard (Info $ t `setUniqueness` Nonunique) loc checkPat' _ (Wildcard NoInfo loc) NoneInferred = do t <- newTypeVar loc "t" return $ Wildcard (Info t) loc checkPat' sizes (TuplePat ps loc) (Ascribed t) | Just ts <- isTupleRecord t, length ts == length ps = TuplePat <$> zipWithM (checkPat' sizes) ps (map Ascribed ts) <*> pure loc checkPat' sizes p@(TuplePat ps loc) (Ascribed t) = do ps_t <- replicateM (length ps) (newTypeVar loc "t") unify (mkUsage loc "matching a tuple pattern") (tupleRecord ps_t) $ toStruct t t' <- normTypeFully t checkPat' sizes p $ Ascribed t' checkPat' sizes (TuplePat ps loc) NoneInferred = TuplePat <$> mapM (\p -> checkPat' sizes p NoneInferred) ps <*> pure loc checkPat' _ (RecordPat p_fs _) _ | Just (f, fp) <- find (("_" `isPrefixOf`) . nameToString . fst) p_fs = typeError fp mempty $ "Underscore-prefixed fields are not allowed." "Did you mean" <> dquotes (text (drop 1 (nameToString f)) <> "=_") <> "?" checkPat' sizes (RecordPat p_fs loc) (Ascribed (Scalar (Record t_fs))) | sort (map fst p_fs) == sort (M.keys t_fs) = RecordPat . M.toList <$> check <*> pure loc where check = traverse (uncurry (checkPat' sizes)) $ M.intersectionWith (,) (M.fromList p_fs) (fmap Ascribed t_fs) checkPat' sizes p@(RecordPat fields loc) (Ascribed t) = do fields' <- traverse (const $ newTypeVar loc "t") $ M.fromList fields when (sort (M.keys fields') /= sort (map fst fields)) $ typeError loc mempty $ "Duplicate fields in record pattern" <+> ppr p <> "." unify (mkUsage loc "matching a record pattern") (Scalar (Record fields')) $ toStruct t t' <- normTypeFully t checkPat' sizes p $ Ascribed t' checkPat' sizes (RecordPat fs loc) NoneInferred = RecordPat . M.toList <$> traverse (\p -> checkPat' sizes p NoneInferred) (M.fromList fs) <*> pure loc checkPat' sizes (PatAscription p (TypeDecl t NoInfo) loc) maybe_outer_t = do (t', st_nodims, _) <- checkTypeExp t (st, _) <- instantiateEmptyArrayDims loc "impl" Nonrigid st_nodims let st' = fromStruct st case maybe_outer_t of Ascribed outer_t -> do st_forunify <- nonrigidFor sizes st unify (mkUsage loc "explicit type ascription") st_forunify (toStruct outer_t) -- We also have to make sure that uniqueness matches. This is -- done explicitly, because it is ignored by unification. st'' <- normTypeFully st' outer_t' <- normTypeFully outer_t case unifyTypesU unifyUniqueness st'' outer_t' of Just outer_t'' -> PatAscription <$> checkPat' sizes p (Ascribed outer_t'') <*> pure (TypeDecl t' (Info st)) <*> pure loc Nothing -> typeError loc mempty $ "Cannot match type" <+> pquote (ppr outer_t') <+> "with expected type" <+> pquote (ppr st'') <> "." NoneInferred -> PatAscription <$> checkPat' sizes p (Ascribed st') <*> pure (TypeDecl t' (Info st)) <*> pure loc where unifyUniqueness u1 u2 = if u2 `subuniqueOf` u1 then Just u1 else Nothing checkPat' _ (PatLit l NoInfo loc) (Ascribed t) = do t' <- patLitMkType l loc unify (mkUsage loc "matching against literal") t' (toStruct t) return $ PatLit l (Info (fromStruct t')) loc checkPat' _ (PatLit l NoInfo loc) NoneInferred = do t' <- patLitMkType l loc return $ PatLit l (Info (fromStruct t')) loc checkPat' sizes (PatConstr n NoInfo ps loc) (Ascribed (Scalar (Sum cs))) | Just ts <- M.lookup n cs = do ps' <- zipWithM (checkPat' sizes) ps $ map Ascribed ts return $ PatConstr n (Info (Scalar (Sum cs))) ps' loc checkPat' sizes (PatConstr n NoInfo ps loc) (Ascribed t) = do t' <- newTypeVar loc "t" ps' <- mapM (\p -> checkPat' sizes p NoneInferred) ps mustHaveConstr usage n t' (patternStructType <$> ps') unify usage t' (toStruct t) t'' <- normTypeFully t return $ PatConstr n (Info t'') ps' loc where usage = mkUsage loc "matching against constructor" checkPat' sizes (PatConstr n NoInfo ps loc) NoneInferred = do ps' <- mapM (\p -> checkPat' sizes p NoneInferred) ps t <- newTypeVar loc "t" mustHaveConstr usage n t (patternStructType <$> ps') return $ PatConstr n (Info $ fromStruct t) ps' loc where usage = mkUsage loc "matching against constructor" patternNameMap :: Pat -> NameMap patternNameMap = M.fromList . map asTerm . S.toList . patNames where asTerm v = ((Term, baseName v), qualName v) checkPat :: [SizeBinder VName] -> UncheckedPat -> InferredType -> (Pat -> TermTypeM a) -> TermTypeM a checkPat sizes p t m = do checkForDuplicateNames [p] p' <- onFailure (CheckingPat p t) $ checkPat' sizes p t let explicit = mustBeExplicitInType $ patternStructType p' case filter ((`S.member` explicit) . sizeName) sizes of size : _ -> typeError size mempty $ "Cannot bind" <+> ppr size <+> "as it is never used as the size of a concrete (non-function) value." [] -> bindNameMap (patternNameMap p') $ m p' binding :: [Ident] -> TermTypeM a -> TermTypeM a binding stms = check . handleVars where handleVars m = localScope (`bindVars` stms) $ do -- Those identifiers that can potentially also be sizes are -- added as type constraints. This is necessary so that we -- can properly detect scope violations during unification. -- We do this for *all* identifiers, not just those that are -- integers, because they may become integers later due to -- inference... forM_ stms $ \ident -> constrain (identName ident) $ ParamSize $ srclocOf ident m bindVars :: TermScope -> [Ident] -> TermScope bindVars = foldl bindVar bindVar :: TermScope -> Ident -> TermScope bindVar scope (Ident name (Info tp) _) = let inedges = boundAliases $ aliases tp update (BoundV l tparams in_t) -- If 'name' is record or sum-typed, don't alias the -- components to 'name', because these no identity -- beyond their components. | Array {} <- tp = BoundV l tparams (in_t `addAliases` S.insert (AliasBound name)) | otherwise = BoundV l tparams in_t update b = b tp' = tp `addAliases` S.insert (AliasBound name) in scope { scopeVtable = M.insert name (BoundV Local [] tp') $ adjustSeveral update inedges $ scopeVtable scope } adjustSeveral f = flip $ foldl $ flip $ M.adjust f -- Check whether the bound variables have been used correctly -- within their scope. check m = do (a, usages) <- collectBindingsOccurences m checkOccurences usages mapM_ (checkIfUsed usages) stms return a -- Collect and remove all occurences in @stms@. This relies -- on the fact that no variables shadow any other. collectBindingsOccurences m = do (x, usage) <- collectOccurences m let (relevant, rest) = split usage occur rest pure (x, relevant) where split = unzip . map ( \occ -> let (obs1, obs2) = divide $ observed occ occ_cons = divide <$> consumed occ con1 = fst <$> occ_cons con2 = snd <$> occ_cons in ( occ {observed = obs1, consumed = con1}, occ {observed = obs2, consumed = con2} ) ) names = S.fromList $ map identName stms divide s = (s `S.intersection` names, s `S.difference` names) bindingTypes :: [Either (VName, TypeBinding) (VName, Constraint)] -> TermTypeM a -> TermTypeM a bindingTypes types m = do lvl <- curLevel modifyConstraints (<> M.map (lvl,) (M.fromList constraints)) localScope extend m where (tbinds, constraints) = partitionEithers types extend scope = scope { scopeTypeTable = M.fromList tbinds <> scopeTypeTable scope } bindingTypeParams :: [TypeParam] -> TermTypeM a -> TermTypeM a bindingTypeParams tparams = binding (mapMaybe typeParamIdent tparams) . bindingTypes (concatMap typeParamType tparams) where typeParamType (TypeParamType l v loc) = [ Left (v, TypeAbbr l [] (Scalar (TypeVar () Nonunique (typeName v) []))), Right (v, ParamType l loc) ] typeParamType (TypeParamDim v loc) = [Right (v, ParamSize loc)] typeParamIdent :: TypeParam -> Maybe Ident typeParamIdent (TypeParamDim v loc) = Just $ Ident v (Info $ Scalar $ Prim $ Signed Int64) loc typeParamIdent _ = Nothing bindingIdent :: IdentBase NoInfo Name -> PatType -> (Ident -> TermTypeM a) -> TermTypeM a bindingIdent (Ident v NoInfo vloc) t m = bindSpaced [(Term, v)] $ do v' <- checkName Term v vloc let ident = Ident v' (Info t) vloc binding [ident] $ m ident bindingParams :: [UncheckedTypeParam] -> [UncheckedPat] -> ([TypeParam] -> [Pat] -> TermTypeM a) -> TermTypeM a bindingParams tps orig_ps m = do checkForDuplicateNames orig_ps checkTypeParams tps $ \tps' -> bindingTypeParams tps' $ do let descend ps' (p : ps) = checkPat [] p NoneInferred $ \p' -> binding (S.toList $ patIdents p') $ descend (p' : ps') ps descend ps' [] = do -- Perform an observation of every type parameter. This -- prevents unused-name warnings for otherwise unused -- dimensions. mapM_ observe $ mapMaybe typeParamIdent tps' m tps' $ reverse ps' descend [] orig_ps bindingSizes :: [SizeBinder Name] -> ([SizeBinder VName] -> TermTypeM a) -> TermTypeM a bindingSizes [] m = m [] -- Minor optimisation. bindingSizes sizes m = do foldM_ lookForDuplicates mempty sizes bindSpaced (map sizeWithSpace sizes) $ do sizes' <- mapM check sizes binding (map sizeWithType sizes') $ m sizes' where lookForDuplicates prev size | Just prevloc <- M.lookup (sizeName size) prev = typeError size mempty $ "Size name also bound at " <> text (locStrRel (srclocOf size) prevloc) <> "." | otherwise = pure $ M.insert (sizeName size) (srclocOf size) prev sizeWithSpace size = (Term, sizeName size) sizeWithType size = Ident (sizeName size) (Info (Scalar (Prim (Signed Int64)))) (srclocOf size) check (SizeBinder v loc) = SizeBinder <$> checkName Term v loc <*> pure loc bindingPat :: [SizeBinder VName] -> PatBase NoInfo Name -> InferredType -> (Pat -> TermTypeM a) -> TermTypeM a bindingPat sizes p t m = do checkForDuplicateNames [p] checkPat sizes p t $ \p' -> binding (S.toList $ patIdents p') $ do -- Perform an observation of every declared dimension. This -- prevents unused-name warnings for otherwise unused dimensions. mapM_ observe $ patternDims p' let used_sizes = typeDimNames $ patternStructType p' case filter ((`S.notMember` used_sizes) . sizeName) sizes of [] -> m p' size : _ -> unusedSize size patternDims :: Pat -> [Ident] patternDims (PatParens p _) = patternDims p patternDims (TuplePat pats _) = concatMap patternDims pats patternDims (PatAscription p (TypeDecl _ (Info t)) _) = patternDims p <> mapMaybe (dimIdent (srclocOf p)) (nestedDims t) where dimIdent _ (AnyDim _) = Nothing dimIdent _ (ConstDim _) = Nothing dimIdent _ NamedDim {} = Nothing patternDims _ = [] sliceShape :: Maybe (SrcLoc, Rigidity) -> Slice -> TypeBase (DimDecl VName) as -> TermTypeM (TypeBase (DimDecl VName) as, [VName]) sliceShape r slice t@(Array als u et (ShapeDecl orig_dims)) = runStateT (setDims <$> adjustDims slice orig_dims) [] where setDims [] = stripArray (length orig_dims) t setDims dims' = Array als u et $ ShapeDecl dims' -- If the result is supposed to be AnyDim or a nonrigid size -- variable, then don't bother trying to create -- non-existential sizes. This is necessary to make programs -- type-check without too much ceremony; see -- e.g. tests/inplace5.fut. isRigid Rigid {} = True isRigid _ = False refine_sizes = maybe False (isRigid . snd) r sliceSize orig_d i j stride = case r of Just (loc, Rigid _) -> do (d, ext) <- lift $ extSize loc $ SourceSlice orig_d' (bareExp <$> i) (bareExp <$> j) (bareExp <$> stride) modify (maybeToList ext ++) return d Just (loc, Nonrigid) -> lift $ NamedDim . qualName <$> newDimVar loc Nonrigid "slice_dim" Nothing -> pure $ AnyDim Nothing where -- The original size does not matter if the slice is fully specified. orig_d' | isJust i, isJust j = Nothing | otherwise = Just orig_d adjustDims (DimFix {} : idxes') (_ : dims) = adjustDims idxes' dims -- Pat match some known slices to be non-existential. adjustDims (DimSlice i j stride : idxes') (_ : dims) | refine_sizes, maybe True ((== Just 0) . isInt64) i, Just j' <- maybeDimFromExp =<< j, maybe True ((== Just 1) . isInt64) stride = (j' :) <$> adjustDims idxes' dims adjustDims (DimSlice Nothing Nothing stride : idxes') (d : dims) | refine_sizes, maybe True (maybe False ((== 1) . abs) . isInt64) stride = (d :) <$> adjustDims idxes' dims adjustDims (DimSlice i j stride : idxes') (d : dims) = (:) <$> sliceSize d i j stride <*> adjustDims idxes' dims adjustDims _ dims = pure dims sliceShape _ _ t = pure (t, []) --- Main checkers -- | @require ts e@ causes a 'TypeError' if @expType e@ is not one of -- the types in @ts@. Otherwise, simply returns @e@. require :: String -> [PrimType] -> Exp -> TermTypeM Exp require why ts e = do mustBeOneOf ts (mkUsage (srclocOf e) why) . toStruct =<< expType e return e unifies :: String -> StructType -> Exp -> TermTypeM Exp unifies why t e = do unify (mkUsage (srclocOf e) why) t . toStruct =<< expType e return e -- The closure of a lambda or local function are those variables that -- it references, and which local to the current top-level function. lexicalClosure :: [Pat] -> Occurences -> TermTypeM Aliasing lexicalClosure params closure = do vtable <- asks $ scopeVtable . termScope let isLocal v = case v `M.lookup` vtable of Just (BoundV Local _ _) -> True _ -> False return $ S.map AliasBound $ S.filter isLocal $ allOccuring closure S.\\ mconcat (map patNames params) noAliasesIfOverloaded :: PatType -> TermTypeM PatType noAliasesIfOverloaded t@(Scalar (TypeVar _ u tn [])) = do subst <- fmap snd . M.lookup (typeLeaf tn) <$> getConstraints case subst of Just Overloaded {} -> return $ Scalar $ TypeVar mempty u tn [] _ -> return t noAliasesIfOverloaded t = return t -- Check the common parts of ascription and coercion. checkAscript :: SrcLoc -> UncheckedTypeDecl -> UncheckedExp -> (StructType -> TermTypeM StructType) -> TermTypeM (TypeDecl, Exp) checkAscript loc decl e shapef = do decl' <- checkTypeDecl decl e' <- checkExp e t <- expTypeFully e' (decl_t_nonrigid, _) <- instantiateEmptyArrayDims loc "impl" Nonrigid =<< shapef (unInfo $ expandedType decl') onFailure (CheckingAscription (unInfo $ expandedType decl') (toStruct t)) $ unify (mkUsage loc "type ascription") decl_t_nonrigid (toStruct t) -- We also have to make sure that uniqueness matches. This is done -- explicitly, because uniqueness is ignored by unification. t' <- normTypeFully t decl_t' <- normTypeFully $ unInfo $ expandedType decl' unless (toStructural t' `subtypeOf` toStructural decl_t') $ typeError loc mempty $ "Type" <+> pquote (ppr t') <+> "is not a subtype of" <+> pquote (ppr decl_t') <> "." return (decl', e') unscopeType :: SrcLoc -> M.Map VName Ident -> PatType -> TermTypeM (PatType, [VName]) unscopeType tloc unscoped t = do (t', m) <- runStateT (traverseDims onDim t) mempty return (t' `addAliases` S.map unAlias, M.elems m) where onDim _ p (NamedDim d) | Just loc <- srclocOf <$> M.lookup (qualLeaf d) unscoped = if p == PosImmediate || p == PosParam then inst loc $ qualLeaf d else return $ AnyDim $ Just $ qualLeaf d onDim _ _ d = return d inst loc d = do prev <- gets $ M.lookup d case prev of Just d' -> return $ NamedDim $ qualName d' Nothing -> do d' <- lift $ newDimVar tloc (Rigid $ RigidOutOfScope loc d) "d" modify $ M.insert d d' return $ NamedDim $ qualName d' unAlias (AliasBound v) | v `M.member` unscoped = AliasFree v unAlias a = a -- When a function result is not immediately bound to a name, we need -- to invent a name for it so we can track it during aliasing -- (uniqueness-error54.fut, uniqueness-error55.fut). addResultAliases :: NameReason -> PatType -> TermTypeM PatType addResultAliases r (Scalar (Record fs)) = Scalar . Record <$> traverse (addResultAliases r) fs addResultAliases r (Scalar (Sum fs)) = Scalar . Sum <$> traverse (traverse (addResultAliases r)) fs addResultAliases r (Scalar (TypeVar as u tn targs)) = do v <- newID "internal_app_result" modify $ \s -> s {stateNames = M.insert v r $ stateNames s} pure $ Scalar $ TypeVar (S.insert (AliasFree v) as) u tn targs addResultAliases _ (Scalar t@Prim {}) = pure (Scalar t) addResultAliases _ (Scalar t@Arrow {}) = pure (Scalar t) addResultAliases r (Array als u t shape) = do v <- newID "internal_app_result" modify $ \s -> s {stateNames = M.insert v r $ stateNames s} pure $ Array (S.insert (AliasFree v) als) u t shape -- 'checkApplyExp' is like 'checkExp', but tries to find the "root -- function", for better error messages. checkApplyExp :: UncheckedExp -> TermTypeM (Exp, ApplyOp) checkApplyExp (AppExp (Apply e1 e2 _ loc) _) = do arg <- checkArg e2 (e1', (fname, i)) <- checkApplyExp e1 t <- expType e1' (t1, rt, argext, exts) <- checkApply loc (fname, i) t arg rt' <- addResultAliases (NameAppRes fname loc) rt return ( AppExp (Apply e1' (argExp arg) (Info (diet t1, argext)) loc) (Info $ AppRes rt' exts), (fname, i + 1) ) checkApplyExp e = do e' <- checkExp e return ( e', ( case e' of Var qn _ _ -> Just qn _ -> Nothing, 0 ) ) checkExp :: UncheckedExp -> TermTypeM Exp checkExp (Literal val loc) = return $ Literal val loc checkExp (StringLit vs loc) = return $ StringLit vs loc checkExp (IntLit val NoInfo loc) = do t <- newTypeVar loc "t" mustBeOneOf anyNumberType (mkUsage loc "integer literal") t return $ IntLit val (Info $ fromStruct t) loc checkExp (FloatLit val NoInfo loc) = do t <- newTypeVar loc "t" mustBeOneOf anyFloatType (mkUsage loc "float literal") t return $ FloatLit val (Info $ fromStruct t) loc checkExp (TupLit es loc) = TupLit <$> mapM checkExp es <*> pure loc checkExp (RecordLit fs loc) = do fs' <- evalStateT (mapM checkField fs) mempty return $ RecordLit fs' loc where checkField (RecordFieldExplicit f e rloc) = do errIfAlreadySet f rloc modify $ M.insert f rloc RecordFieldExplicit f <$> lift (checkExp e) <*> pure rloc checkField (RecordFieldImplicit name NoInfo rloc) = do errIfAlreadySet name rloc (QualName _ name', t) <- lift $ lookupVar rloc $ qualName name modify $ M.insert name rloc return $ RecordFieldImplicit name' (Info t) rloc errIfAlreadySet f rloc = do maybe_sloc <- gets $ M.lookup f case maybe_sloc of Just sloc -> lift . typeError rloc mempty $ "Field" <+> pquote (ppr f) <+> "previously defined at" <+> text (locStrRel rloc sloc) <> "." Nothing -> return () checkExp (ArrayLit all_es _ loc) = -- Construct the result type and unify all elements with it. We -- only create a type variable for empty arrays; otherwise we use -- the type of the first element. This significantly cuts down on -- the number of type variables generated for pathologically large -- multidimensional array literals. case all_es of [] -> do et <- newTypeVar loc "t" t <- arrayOfM loc et (ShapeDecl [ConstDim 0]) Unique return $ ArrayLit [] (Info t) loc e : es -> do e' <- checkExp e et <- expType e' es' <- mapM (unifies "type of first array element" (toStruct et) <=< checkExp) es et' <- normTypeFully et t <- arrayOfM loc et' (ShapeDecl [ConstDim $ length all_es]) Unique return $ ArrayLit (e' : es') (Info t) loc checkExp (AppExp (Range start maybe_step end loc) _) = do start' <- require "use in range expression" anySignedType =<< checkExp start start_t <- toStruct <$> expTypeFully start' maybe_step' <- case maybe_step of Nothing -> return Nothing Just step -> do let warning = warn loc "First and second element of range are identical, this will produce an empty array." case (start, step) of (Literal x _, Literal y _) -> when (x == y) warning (Var x_name _ _, Var y_name _ _) -> when (x_name == y_name) warning _ -> return () Just <$> (unifies "use in range expression" start_t =<< checkExp step) let unifyRange e = unifies "use in range expression" start_t =<< checkExp e end' <- traverse unifyRange end end_t <- case end' of DownToExclusive e -> expType e ToInclusive e -> expType e UpToExclusive e -> expType e -- Special case some ranges to give them a known size. let dimFromBound = dimFromExp (SourceBound . bareExp) (dim, retext) <- case (isInt64 start', isInt64 <$> maybe_step', end') of (Just 0, Just (Just 1), UpToExclusive end'') | Scalar (Prim (Signed Int64)) <- end_t -> dimFromBound end'' (Just 0, Nothing, UpToExclusive end'') | Scalar (Prim (Signed Int64)) <- end_t -> dimFromBound end'' (Just 1, Just (Just 2), ToInclusive end'') | Scalar (Prim (Signed Int64)) <- end_t -> dimFromBound end'' _ -> do d <- newDimVar loc (Rigid RigidRange) "range_dim" return (NamedDim $ qualName d, Just d) t <- arrayOfM loc start_t (ShapeDecl [dim]) Unique let res = AppRes (t `setAliases` mempty) (maybeToList retext) return $ AppExp (Range start' maybe_step' end' loc) (Info res) checkExp (Ascript e decl loc) = do (decl', e') <- checkAscript loc decl e pure return $ Ascript e' decl' loc checkExp (AppExp (Coerce e decl loc) _) = do -- We instantiate the declared types with all dimensions as nonrigid -- fresh type variables, which we then use to unify with the type of -- 'e'. This lets 'e' have whatever sizes it wants, but the overall -- type must still match. Eventually we will throw away those sizes -- (they will end up being unified with various sizes in 'e', which -- is fine). (decl', e') <- checkAscript loc decl e $ pure . anySizes -- Now we instantiate the declared type again, but this time we keep -- around the sizes as existentials. This is the result of the -- ascription as a whole. We use matchDims to obtain the aliasing -- of 'e'. (decl_t_rigid, ext) <- instantiateDimsInReturnType loc Nothing $ unInfo $ expandedType decl' t <- expTypeFully e' t' <- matchDims (const pure) t $ fromStruct decl_t_rigid return $ AppExp (Coerce e' decl' loc) (Info $ AppRes t' ext) checkExp (AppExp (BinOp (op, oploc) NoInfo (e1, _) (e2, _) loc) NoInfo) = do (op', ftype) <- lookupVar oploc op e1_arg <- checkArg e1 e2_arg <- checkArg e2 -- Note that the application to the first operand cannot fix any -- existential sizes, because it must by necessity be a function. (p1_t, rt, p1_ext, _) <- checkApply loc (Just op', 0) ftype e1_arg (p2_t, rt', p2_ext, retext) <- checkApply loc (Just op', 1) rt e2_arg return $ AppExp ( BinOp (op', oploc) (Info ftype) (argExp e1_arg, Info (toStruct p1_t, p1_ext)) (argExp e2_arg, Info (toStruct p2_t, p2_ext)) loc ) (Info (AppRes rt' retext)) checkExp (Project k e NoInfo loc) = do e' <- checkExp e t <- expType e' kt <- mustHaveField (mkUsage loc $ "projection of field " ++ quote (pretty k)) k t return $ Project k e' (Info kt) loc checkExp (AppExp (If e1 e2 e3 loc) _) = sequentially checkCond $ \e1' _ -> do ((e2', e3'), dflow) <- tapOccurences $ checkExp e2 `alternative` checkExp e3 (brancht, retext) <- unifyBranches loc e2' e3' let t' = addAliases brancht $ S.filter $ (`S.notMember` allConsumed dflow) . aliasVar zeroOrderType (mkUsage loc "returning value of this type from 'if' expression") "type returned from branch" t' return $ AppExp (If e1' e2' e3' loc) (Info $ AppRes t' retext) where checkCond = do e1' <- checkExp e1 let bool = Scalar $ Prim Bool e1_t <- toStruct <$> expType e1' onFailure (CheckingRequired [bool] e1_t) $ unify (mkUsage (srclocOf e1') "use as 'if' condition") bool e1_t return e1' checkExp (Parens e loc) = Parens <$> checkExp e <*> pure loc checkExp (QualParens (modname, modnameloc) e loc) = do (modname', mod) <- lookupMod loc modname case mod of ModEnv env -> local (`withEnv` qualifyEnv modname' env) $ do e' <- checkExp e return $ QualParens (modname', modnameloc) e' loc ModFun {} -> typeError loc mempty $ "Module" <+> ppr modname <+> " is a parametric module." where qualifyEnv modname' env = env {envNameMap = M.map (qualify' modname') $ envNameMap env} qualify' modname' (QualName qs name) = QualName (qualQuals modname' ++ [qualLeaf modname'] ++ qs) name checkExp (Var qn NoInfo loc) = do -- The qualifiers of a variable is divided into two parts: first a -- possibly-empty sequence of module qualifiers, followed by a -- possible-empty sequence of record field accesses. We use scope -- information to perform the split, by taking qualifiers off the -- end until we find a module. (qn', t, fields) <- findRootVar (qualQuals qn) (qualLeaf qn) foldM checkField (Var qn' (Info t) loc) fields where findRootVar qs name = (whenFound <$> lookupVar loc (QualName qs name)) `catchError` notFound qs name whenFound (qn', t) = (qn', t, []) notFound qs name err | null qs = throwError err | otherwise = do (qn', t, fields) <- findRootVar (init qs) (last qs) `catchError` const (throwError err) return (qn', t, fields ++ [name]) checkField e k = do t <- expType e let usage = mkUsage loc $ "projection of field " ++ quote (pretty k) kt <- mustHaveField usage k t return $ Project k e (Info kt) loc checkExp (Negate arg loc) = do arg' <- require "numeric negation" anyNumberType =<< checkExp arg return $ Negate arg' loc checkExp (Not arg loc) = do arg' <- require "logical negation" (Bool : anyIntType) =<< checkExp arg return $ Not arg' loc checkExp e@(AppExp Apply {} _) = fst <$> checkApplyExp e checkExp (AppExp (LetPat sizes pat e body loc) _) = sequentially (checkExp e) $ \e' e_occs -> do -- Not technically an ascription, but we want the pattern to have -- exactly the type of 'e'. t <- expType e' case anyConsumption e_occs of Just c -> let msg = "type computed with consumption at " ++ locStr (location c) in zeroOrderType (mkUsage loc "consumption in right-hand side of 'let'-binding") msg t _ -> return () incLevel . bindingSizes sizes $ \sizes' -> bindingPat sizes' pat (Ascribed t) $ \pat' -> do body' <- checkExp body (body_t, retext) <- unscopeType loc (sizesMap sizes' <> patternMap pat') =<< expTypeFully body' return $ AppExp (LetPat sizes' pat' e' body' loc) (Info $ AppRes body_t retext) where sizesMap = foldMap onSize onSize size = M.singleton (sizeName size) $ Ident (sizeName size) (Info (Scalar $ Prim $ Signed Int64)) (srclocOf size) checkExp (AppExp (LetFun name (tparams, params, maybe_retdecl, NoInfo, e) body loc) _) = sequentially (checkBinding (name, maybe_retdecl, tparams, params, e, loc)) $ \(tparams', params', maybe_retdecl', rettype, _, e') closure -> do closure' <- lexicalClosure params' closure bindSpaced [(Term, name)] $ do name' <- checkName Term name loc let arrow (xp, xt) yt = Scalar $ Arrow () xp xt yt ftype = foldr (arrow . patternParam) rettype params' entry = BoundV Local tparams' $ ftype `setAliases` closure' bindF scope = scope { scopeVtable = M.insert name' entry $ scopeVtable scope, scopeNameMap = M.insert (Term, name) (qualName name') $ scopeNameMap scope } body' <- localScope bindF $ checkExp body -- We fake an ident here, but it's OK as it can't be a size -- anyway. let fake_ident = Ident name' (Info $ fromStruct ftype) mempty (body_t, ext) <- unscopeType loc (M.singleton name' fake_ident) =<< expTypeFully body' return $ AppExp ( LetFun name' (tparams', params', maybe_retdecl', Info rettype, e') body' loc ) (Info $ AppRes body_t ext) checkExp (AppExp (LetWith dest src slice ve body loc) _) = sequentially (checkIdent src) $ \src' _ -> do slice' <- checkSlice slice (t, _) <- newArrayType (srclocOf src) "src" $ sliceDims slice' unify (mkUsage loc "type of target array") t $ toStruct $ unInfo $ identType src' -- Need the fully normalised type here to get the proper aliasing information. src_t <- normTypeFully $ unInfo $ identType src' (elemt, _) <- sliceShape (Just (loc, Nonrigid)) slice' =<< normTypeFully t unless (unique src_t) $ notConsumable loc $ pquote $ pprName $ identName src sequentially (unifies "type of target array" (toStruct elemt) =<< checkExp ve) $ \ve' _ -> do ve_t <- expTypeFully ve' when (AliasBound (identName src') `S.member` aliases ve_t) $ badLetWithValue src ve loc bindingIdent dest (src_t `setAliases` S.empty) $ \dest' -> do body' <- consuming src' $ checkExp body (body_t, ext) <- unscopeType loc (M.singleton (identName dest') dest') =<< expTypeFully body' return $ AppExp (LetWith dest' src' slice' ve' body' loc) (Info $ AppRes body_t ext) checkExp (Update src slice ve loc) = do slice' <- checkSlice slice (t, _) <- newArrayType (srclocOf src) "src" $ sliceDims slice' (elemt, _) <- sliceShape (Just (loc, Nonrigid)) slice' =<< normTypeFully t sequentially (checkExp ve >>= unifies "type of target array" elemt) $ \ve' _ -> sequentially (checkExp src >>= unifies "type of target array" t) $ \src' _ -> do src_t <- expTypeFully src' unless (unique src_t) $ notConsumable loc $ pquote $ ppr src let src_als = aliases src_t ve_t <- expTypeFully ve' unless (S.null $ src_als `S.intersection` aliases ve_t) $ badLetWithValue src ve loc consume loc src_als return $ Update src' slice' ve' loc -- Record updates are a bit hacky, because we do not have row typing -- (yet?). For now, we only permit record updates where we know the -- full type up to the field we are updating. checkExp (RecordUpdate src fields ve NoInfo loc) = do src' <- checkExp src ve' <- checkExp ve a <- expTypeFully src' foldM_ (flip $ mustHaveField usage) a fields ve_t <- expType ve' updated_t <- updateField fields ve_t =<< expTypeFully src' return $ RecordUpdate src' fields ve' (Info updated_t) loc where usage = mkUsage loc "record update" updateField [] ve_t src_t = do (src_t', _) <- instantiateEmptyArrayDims loc "any" Nonrigid $ anySizes src_t onFailure (CheckingRecordUpdate fields (toStruct src_t') (toStruct ve_t)) $ unify usage (toStruct src_t') (toStruct ve_t) -- Important that we return ve_t so that we get the right aliases. pure ve_t updateField (f : fs) ve_t (Scalar (Record m)) | Just f_t <- M.lookup f m = do f_t' <- updateField fs ve_t f_t pure $ Scalar $ Record $ M.insert f f_t' m updateField _ _ _ = typeError loc mempty $ "Full type of" indent 2 (ppr src) textwrap " is not known at this point. Add a size annotation to the original record to disambiguate." -- checkExp (AppExp (Index e slice loc) _) = do slice' <- checkSlice slice (t, _) <- newArrayType loc "e" $ sliceDims slice' e' <- unifies "being indexed at" t =<< checkExp e -- XXX, the RigidSlice here will be overridden in sliceShape with a proper value. (t', retext) <- sliceShape (Just (loc, Rigid (RigidSlice Nothing ""))) slice' =<< expTypeFully e' -- Remove aliases if the result is an overloaded type, because that -- will certainly not be aliased. t'' <- noAliasesIfOverloaded t' return $ AppExp (Index e' slice' loc) (Info $ AppRes t'' retext) checkExp (Assert e1 e2 NoInfo loc) = do e1' <- require "being asserted" [Bool] =<< checkExp e1 e2' <- checkExp e2 return $ Assert e1' e2' (Info (pretty e1)) loc checkExp (Lambda params body rettype_te NoInfo loc) = removeSeminullOccurences . noUnique . incLevel . bindingParams [] params $ \_ params' -> do rettype_checked <- traverse checkTypeExp rettype_te let declared_rettype = case rettype_checked of Just (_, st, _) -> Just st Nothing -> Nothing (body', closure) <- tapOccurences $ checkFunBody params' body declared_rettype loc body_t <- expTypeFully body' params'' <- mapM updateTypes params' (rettype', rettype_st) <- case rettype_checked of Just (te, st, _) -> return (Just te, st) Nothing -> do ret <- inferReturnSizes params'' $ toStruct $ inferReturnUniqueness params'' body_t return (Nothing, ret) checkGlobalAliases params' body_t loc verifyFunctionParams Nothing params' closure' <- lexicalClosure params'' closure return $ Lambda params'' body' rettype' (Info (closure', rettype_st)) loc where -- Inferring the sizes of the return type of a lambda is a lot -- like let-generalisation. We wish to remove any rigid sizes -- that were created when checking the body, except for those that -- are visible in types that existed before we entered the body, -- are parameters, or are used in parameters. inferReturnSizes params' ret = do cur_lvl <- curLevel let named (Named x, _) = Just x named (Unnamed, _) = Nothing param_names = mapMaybe (named . patternParam) params' pos_sizes = typeDimNamesPos (foldFunType (map patternStructType params') ret) hide k (lvl, _) = lvl >= cur_lvl && k `notElem` param_names && k `S.notMember` pos_sizes hidden_sizes <- S.fromList . M.keys . M.filterWithKey hide <$> getConstraints let onDim (NamedDim name) | not (qualLeaf name `S.member` hidden_sizes) = NamedDim name | otherwise = AnyDim $ Just $ qualLeaf name onDim d = d return $ first onDim ret checkExp (OpSection op _ loc) = do (op', ftype) <- lookupVar loc op return $ OpSection op' (Info ftype) loc checkExp (OpSectionLeft op _ e _ _ loc) = do (op', ftype) <- lookupVar loc op e_arg <- checkArg e (t1, rt, argext, retext) <- checkApply loc (Just op', 0) ftype e_arg case (ftype, rt) of (Scalar (Arrow _ m1 _ _), Scalar (Arrow _ m2 t2 rettype)) -> return $ OpSectionLeft op' (Info ftype) (argExp e_arg) (Info (m1, toStruct t1, argext), Info (m2, toStruct t2)) (Info rettype, Info retext) loc _ -> typeError loc mempty $ "Operator section with invalid operator of type" <+> ppr ftype checkExp (OpSectionRight op _ e _ NoInfo loc) = do (op', ftype) <- lookupVar loc op e_arg <- checkArg e case ftype of Scalar (Arrow as1 m1 t1 (Scalar (Arrow as2 m2 t2 ret))) -> do (t2', ret', argext, _) <- checkApply loc (Just op', 1) (Scalar $ Arrow as2 m2 t2 $ Scalar $ Arrow as1 m1 t1 ret) e_arg return $ OpSectionRight op' (Info ftype) (argExp e_arg) (Info (m1, toStruct t1), Info (m2, toStruct t2', argext)) (Info $ addAliases ret (<> aliases ret')) loc _ -> typeError loc mempty $ "Operator section with invalid operator of type" <+> ppr ftype checkExp (ProjectSection fields NoInfo loc) = do a <- newTypeVar loc "a" let usage = mkUsage loc "projection at" b <- foldM (flip $ mustHaveField usage) a fields return $ ProjectSection fields (Info $ Scalar $ Arrow mempty Unnamed a b) loc checkExp (IndexSection slice NoInfo loc) = do slice' <- checkSlice slice (t, _) <- newArrayType loc "e" $ sliceDims slice' (t', _) <- sliceShape Nothing slice' t return $ IndexSection slice' (Info $ fromStruct $ Scalar $ Arrow mempty Unnamed t t') loc checkExp (AppExp (DoLoop _ mergepat mergeexp form loopbody loc) _) = sequentially (checkExp mergeexp) $ \mergeexp' _ -> do zeroOrderType (mkUsage (srclocOf mergeexp) "use as loop variable") "type used as loop variable" =<< expTypeFully mergeexp' -- The handling of dimension sizes is a bit intricate, but very -- similar to checking a function, followed by checking a call to -- it. The overall procedure is as follows: -- -- (1) All empty dimensions in the merge pattern are instantiated -- with nonrigid size variables. All explicitly specified -- dimensions are preserved. -- -- (2) The body of the loop is type-checked. The result type is -- combined with the merge pattern type to determine which sizes are -- variant, and these are turned into size parameters for the merge -- pattern. -- -- (3) We now conceptually have a function parameter type and return -- type. We check that it can be called with the initial merge -- values as argument. The result of this is the type of the loop -- as a whole. -- -- (There is also a convergence loop for inferring uniqueness, but -- that's orthogonal to the size handling.) (merge_t, new_dims) <- instantiateEmptyArrayDims loc "loop" Nonrigid . anySizes -- dim handling (1) =<< expTypeFully mergeexp' -- dim handling (2) let checkLoopReturnSize mergepat' loopbody' = do loopbody_t <- expTypeFully loopbody' pat_t <- normTypeFully $ patternType mergepat' -- We are ignoring the dimensions here, because any mismatches -- should be turned into fresh size variables. onFailure (CheckingLoopBody (toStruct (anySizes pat_t)) (toStruct loopbody_t)) $ expect (mkUsage (srclocOf loopbody) "matching loop body to loop pattern") (toStruct (anyTheseSizes new_dims pat_t)) (toStruct loopbody_t) pat_t' <- normTypeFully pat_t loopbody_t' <- normTypeFully loopbody_t -- For each new_dims, figure out what they are instantiated -- with in the initial value. This is used to determine -- whether a size is invariant because it always matches the -- initial instantiation of that size. let initSubst (NamedDim v, d) = Just (v, d) initSubst _ = Nothing init_substs <- M.fromList . mapMaybe initSubst . snd . anyDimOnMismatch pat_t' <$> expTypeFully mergeexp' -- Figure out which of the 'new_dims' dimensions are variant. -- This works because we know that each dimension from -- new_dims in the pattern is unique and distinct. -- -- Our logic here is a bit reversed: the *mismatches* (from -- new_dims) are what we want to extract and turn into size -- parameters. let mismatchSubst (NamedDim v, d) | qualLeaf v `elem` new_dims = case M.lookup v init_substs of Just d' | d' == d -> return $ Just (qualLeaf v, SizeSubst d) _ -> do modify (qualLeaf v :) return Nothing mismatchSubst _ = return Nothing (init_substs', sparams) = (`runState` mempty) $ M.fromList . catMaybes <$> mapM mismatchSubst (snd $ anyDimOnMismatch pat_t' loopbody_t') -- Make sure that any of new_dims that are invariant will be -- replaced with the invariant size in the loop body. Failure -- to do this can cause type annotations to still refer to -- new_dims. let dimToInit (v, SizeSubst d) = constrain v $ Size (Just d) (mkUsage loc "size of loop parameter") dimToInit _ = return () mapM_ dimToInit $ M.toList init_substs' mergepat'' <- applySubst (`M.lookup` init_substs') <$> updateTypes mergepat' return (nubOrd sparams, mergepat'') -- First we do a basic check of the loop body to figure out which of -- the merge parameters are being consumed. For this, we first need -- to check the merge pattern, which requires the (initial) merge -- expression. -- -- Play a little with occurences to ensure it does not look like -- none of the merge variables are being used. ((sparams, mergepat', form', loopbody'), bodyflow) <- case form of For i uboundexp -> do uboundexp' <- require "being the bound in a 'for' loop" anySignedType =<< checkExp uboundexp bound_t <- expTypeFully uboundexp' bindingIdent i bound_t $ \i' -> noUnique . bindingPat [] mergepat (Ascribed merge_t) $ \mergepat' -> onlySelfAliasing $ tapOccurences $ do loopbody' <- noSizeEscape $ checkExp loopbody (sparams, mergepat'') <- checkLoopReturnSize mergepat' loopbody' return ( sparams, mergepat'', For i' uboundexp', loopbody' ) ForIn xpat e -> do (arr_t, _) <- newArrayType (srclocOf e) "e" 1 e' <- unifies "being iterated in a 'for-in' loop" arr_t =<< checkExp e t <- expTypeFully e' case t of _ | Just t' <- peelArray 1 t -> bindingPat [] xpat (Ascribed t') $ \xpat' -> noUnique . bindingPat [] mergepat (Ascribed merge_t) $ \mergepat' -> onlySelfAliasing . tapOccurences $ do loopbody' <- noSizeEscape $ checkExp loopbody (sparams, mergepat'') <- checkLoopReturnSize mergepat' loopbody' return ( sparams, mergepat'', ForIn xpat' e', loopbody' ) | otherwise -> typeError (srclocOf e) mempty $ "Iteratee of a for-in loop must be an array, but expression has type" <+> ppr t While cond -> noUnique . bindingPat [] mergepat (Ascribed merge_t) $ \mergepat' -> onlySelfAliasing . tapOccurences $ sequentially ( checkExp cond >>= unifies "being the condition of a 'while' loop" (Scalar $ Prim Bool) ) $ \cond' _ -> do loopbody' <- noSizeEscape $ checkExp loopbody (sparams, mergepat'') <- checkLoopReturnSize mergepat' loopbody' return ( sparams, mergepat'', While cond', loopbody' ) mergepat'' <- do loopbody_t <- expTypeFully loopbody' convergePat mergepat' (allConsumed bodyflow) loopbody_t $ mkUsage (srclocOf loopbody') "being (part of) the result of the loop body" let consumeMerge (Id _ (Info pt) ploc) mt | unique pt = consume ploc $ aliases mt consumeMerge (TuplePat pats _) t | Just ts <- isTupleRecord t = zipWithM_ consumeMerge pats ts consumeMerge (PatParens pat _) t = consumeMerge pat t consumeMerge (PatAscription pat _ _) t = consumeMerge pat t consumeMerge _ _ = return () consumeMerge mergepat'' =<< expTypeFully mergeexp' -- dim handling (3) let sparams_anydim = M.fromList $ zip sparams $ repeat $ SizeSubst $ AnyDim Nothing loopt_anydims = applySubst (`M.lookup` sparams_anydim) $ patternType mergepat'' (merge_t', _) <- instantiateEmptyArrayDims loc "loopres" Nonrigid $ toStruct loopt_anydims mergeexp_t <- toStruct <$> expTypeFully mergeexp' onFailure (CheckingLoopInitial (toStruct loopt_anydims) mergeexp_t) $ unify (mkUsage (srclocOf mergeexp') "matching initial loop values to pattern") merge_t' mergeexp_t (loopt, retext) <- instantiateDimsInType loc RigidLoop loopt_anydims -- We set all of the uniqueness to be unique. This is intentional, -- and matches what happens for function calls. Those arrays that -- really *cannot* be consumed will alias something unconsumable, -- and will be caught that way. let bound_here = patNames mergepat'' <> S.fromList sparams <> form_bound form_bound = case form' of For v _ -> S.singleton $ identName v ForIn forpat _ -> patNames forpat While {} -> mempty loopt' = second (`S.difference` S.map AliasBound bound_here) $ loopt `setUniqueness` Unique -- Eliminate those new_dims that turned into sparams so it won't -- look like we have ambiguous sizes lying around. modifyConstraints $ M.filterWithKey $ \k _ -> k `notElem` sparams return $ AppExp (DoLoop sparams mergepat'' mergeexp' form' loopbody' loc) (Info $ AppRes loopt' retext) where anyTheseSizes to_hide = first onDim where onDim (NamedDim (QualName _ v)) | v `elem` to_hide = AnyDim Nothing onDim d = d convergePat pat body_cons body_t body_loc = do let consumed_merge = patNames pat `S.intersection` body_cons uniquePat (Wildcard (Info t) wloc) = Wildcard (Info $ t `setUniqueness` Nonunique) wloc uniquePat (PatParens p ploc) = PatParens (uniquePat p) ploc uniquePat (Id name (Info t) iloc) | name `S.member` consumed_merge = let t' = t `setUniqueness` Unique `setAliases` mempty in Id name (Info t') iloc | otherwise = let t' = t `setUniqueness` Nonunique in Id name (Info t') iloc uniquePat (TuplePat pats ploc) = TuplePat (map uniquePat pats) ploc uniquePat (RecordPat fs ploc) = RecordPat (map (fmap uniquePat) fs) ploc uniquePat (PatAscription p t ploc) = PatAscription p t ploc uniquePat p@PatLit {} = p uniquePat (PatConstr n t ps ploc) = PatConstr n t (map uniquePat ps) ploc -- Make the pattern unique where needed. pat' = uniquePat pat pat_t <- normTypeFully $ patternType pat' unless (toStructural body_t `subtypeOf` toStructural pat_t) $ unexpectedType (srclocOf body_loc) (toStruct body_t) [toStruct pat_t] -- Check that the new values of consumed merge parameters do not -- alias something bound outside the loop, AND that anything -- returned for a unique merge parameter does not alias anything -- else returned. We also update the aliases for the pattern. bound_outside <- asks $ S.fromList . M.keys . scopeVtable . termScope let combAliases t1 t2 = case t1 of Scalar Record {} -> t1 _ -> t1 `addAliases` (<> aliases t2) checkMergeReturn (Id pat_v (Info pat_v_t) patloc) t | unique pat_v_t, v : _ <- S.toList $ S.map aliasVar (aliases t) `S.intersection` bound_outside = lift $ typeError loc mempty $ "Return value for loop parameter" <+> pquote (pprName pat_v) <+> "aliases" <+> pprName v <> "." | otherwise = do (cons, obs) <- get unless (S.null $ aliases t `S.intersection` cons) $ lift $ typeError loc mempty $ "Return value for loop parameter" <+> pquote (pprName pat_v) <+> "aliases other consumed loop parameter." when ( unique pat_v_t && not (S.null (aliases t `S.intersection` (cons <> obs))) ) $ lift $ typeError loc mempty $ "Return value for consuming loop parameter" <+> pquote (pprName pat_v) <+> "aliases previously returned value." if unique pat_v_t then put (cons <> aliases t, obs) else put (cons, obs <> aliases t) return $ Id pat_v (Info (combAliases pat_v_t t)) patloc checkMergeReturn (Wildcard (Info pat_v_t) patloc) t = return $ Wildcard (Info (combAliases pat_v_t t)) patloc checkMergeReturn (PatParens p _) t = checkMergeReturn p t checkMergeReturn (PatAscription p _ _) t = checkMergeReturn p t checkMergeReturn (RecordPat pfs patloc) (Scalar (Record tfs)) = RecordPat . M.toList <$> sequence pfs' <*> pure patloc where pfs' = M.intersectionWith checkMergeReturn (M.fromList pfs) tfs checkMergeReturn (TuplePat pats patloc) t | Just ts <- isTupleRecord t = TuplePat <$> zipWithM checkMergeReturn pats ts <*> pure patloc checkMergeReturn p _ = return p (pat'', (pat_cons, _)) <- runStateT (checkMergeReturn pat' body_t) (mempty, mempty) let body_cons' = body_cons <> S.map aliasVar pat_cons if body_cons' == body_cons && patternType pat'' == patternType pat then return pat' else convergePat pat'' body_cons' body_t body_loc checkExp (Constr name es NoInfo loc) = do t <- newTypeVar loc "t" es' <- mapM checkExp es ets <- mapM expTypeFully es' mustHaveConstr (mkUsage loc "use of constructor") name t (toStruct <$> ets) -- A sum value aliases *anything* that went into its construction. let als = foldMap aliases ets return $ Constr name es' (Info $ fromStruct t `addAliases` (<> als)) loc checkExp (AppExp (Match e cs loc) _) = sequentially (checkExp e) $ \e' _ -> do mt <- expTypeFully e' (cs', t, retext) <- checkCases mt cs zeroOrderType (mkUsage loc "being returned 'match'") "type returned from pattern match" t return $ AppExp (Match e' cs' loc) (Info $ AppRes t retext) checkExp (Attr info e loc) = Attr info <$> checkExp e <*> pure loc checkCases :: PatType -> NE.NonEmpty (CaseBase NoInfo Name) -> TermTypeM (NE.NonEmpty (CaseBase Info VName), PatType, [VName]) checkCases mt rest_cs = case NE.uncons rest_cs of (c, Nothing) -> do (c', t, retext) <- checkCase mt c return (c' NE.:| [], t, retext) (c, Just cs) -> do (((c', c_t, _), (cs', cs_t, _)), dflow) <- tapOccurences $ checkCase mt c `alternative` checkCases mt cs (brancht, retext) <- unifyBranchTypes (srclocOf c) c_t cs_t let t = addAliases brancht (`S.difference` S.map AliasBound (allConsumed dflow)) return (NE.cons c' cs', t, retext) checkCase :: PatType -> CaseBase NoInfo Name -> TermTypeM (CaseBase Info VName, PatType, [VName]) checkCase mt (CasePat p e loc) = bindingPat [] p (Ascribed mt) $ \p' -> do e' <- checkExp e (t, retext) <- unscopeType loc (patternMap p') =<< expTypeFully e' return (CasePat p' e' loc, t, retext) -- | An unmatched pattern. Used in in the generation of -- unmatched pattern warnings by the type checker. data Unmatched p = UnmatchedNum p [PatLit] | UnmatchedBool p | UnmatchedConstr p | Unmatched p deriving (Functor, Show) instance Pretty (Unmatched (PatBase Info VName)) where ppr um = case um of (UnmatchedNum p nums) -> ppr' p <+> "where p is not one of" <+> ppr nums (UnmatchedBool p) -> ppr' p (UnmatchedConstr p) -> ppr' p (Unmatched p) -> ppr' p where ppr' (PatAscription p t _) = ppr p <> ":" <+> ppr t ppr' (PatParens p _) = parens $ ppr' p ppr' (Id v _ _) = pprName v ppr' (TuplePat pats _) = parens $ commasep $ map ppr' pats ppr' (RecordPat fs _) = braces $ commasep $ map ppField fs where ppField (name, t) = text (nameToString name) <> equals <> ppr' t ppr' Wildcard {} = "_" ppr' (PatLit e _ _) = ppr e ppr' (PatConstr n _ ps _) = "#" <> ppr n <+> sep (map ppr' ps) checkUnmatched :: Exp -> TermTypeM () checkUnmatched e = void $ checkUnmatched' e >> astMap tv e where checkUnmatched' (AppExp (Match _ cs loc) _) = let ps = fmap (\(CasePat p _ _) -> p) cs in case unmatched $ NE.toList ps of [] -> return () ps' -> typeError loc mempty $ "Unmatched cases in match expression:" indent 2 (stack (map ppr ps')) checkUnmatched' _ = return () tv = ASTMapper { mapOnExp = \e' -> checkUnmatched' e' >> return e', mapOnName = pure, mapOnQualName = pure, mapOnStructType = pure, mapOnPatType = pure } checkIdent :: IdentBase NoInfo Name -> TermTypeM Ident checkIdent (Ident name _ loc) = do (QualName _ name', vt) <- lookupVar loc (qualName name) return $ Ident name' (Info vt) loc checkSlice :: UncheckedSlice -> TermTypeM Slice checkSlice = mapM checkDimIndex where checkDimIndex (DimFix i) = DimFix <$> (require "use as index" anySignedType =<< checkExp i) checkDimIndex (DimSlice i j s) = DimSlice <$> check i <*> check j <*> check s check = maybe (return Nothing) $ fmap Just . unifies "use as index" (Scalar $ Prim $ Signed Int64) <=< checkExp -- The number of dimensions affected by this slice (so the minimum -- rank of the array we are slicing). sliceDims :: Slice -> Int sliceDims = length sequentially :: TermTypeM a -> (a -> Occurences -> TermTypeM b) -> TermTypeM b sequentially m1 m2 = do (a, m1flow) <- collectOccurences m1 (b, m2flow) <- collectOccurences $ m2 a m1flow occur $ m1flow `seqOccurences` m2flow return b type Arg = (Exp, PatType, Occurences, SrcLoc) argExp :: Arg -> Exp argExp (e, _, _, _) = e argType :: Arg -> PatType argType (_, t, _, _) = t checkArg :: UncheckedExp -> TermTypeM Arg checkArg arg = do (arg', dflow) <- collectOccurences $ checkExp arg arg_t <- expType arg' return (arg', arg_t, dflow, srclocOf arg') instantiateDimsInType :: SrcLoc -> RigidSource -> TypeBase (DimDecl VName) als -> TermTypeM (TypeBase (DimDecl VName) als, [VName]) instantiateDimsInType tloc rsrc = instantiateEmptyArrayDims tloc "d" $ Rigid rsrc instantiateDimsInReturnType :: SrcLoc -> Maybe (QualName VName) -> TypeBase (DimDecl VName) als -> TermTypeM (TypeBase (DimDecl VName) als, [VName]) instantiateDimsInReturnType tloc fname = instantiateEmptyArrayDims tloc "ret" $ Rigid $ RigidRet fname -- Some information about the function/operator we are trying to -- apply, and how many arguments it has previously accepted. Used for -- generating nicer type errors. type ApplyOp = (Maybe (QualName VName), Int) checkApply :: SrcLoc -> ApplyOp -> PatType -> Arg -> TermTypeM (PatType, PatType, Maybe VName, [VName]) checkApply loc (fname, _) (Scalar (Arrow as pname tp1 tp2)) (argexp, argtype, dflow, argloc) = onFailure (CheckingApply fname argexp (toStruct tp1) (toStruct argtype)) $ do expect (mkUsage argloc "use as function argument") (toStruct tp1) (toStruct argtype) -- Perform substitutions of instantiated variables in the types. tp1' <- normTypeFully tp1 (tp2', ext) <- instantiateDimsInReturnType loc fname =<< normTypeFully tp2 argtype' <- normTypeFully argtype -- Check whether this would produce an impossible return type. let (_, tp2_paramdims, _) = dimUses $ toStruct tp2' case filter (`S.member` tp2_paramdims) ext of [] -> return () ext_paramdims -> do let onDim (NamedDim qn) | qualLeaf qn `elem` ext_paramdims = AnyDim $ Just $ qualLeaf qn onDim d = d typeError loc mempty $ "Anonymous size would appear in function parameter of return type:" indent 2 (ppr (first onDim tp2')) textwrap "This is usually because a higher-order function is used with functional arguments that return anonymous sizes, which are then used as parameters of other function arguments." occur [observation as loc] checkOccurences dflow case anyConsumption dflow of Just c -> let msg = "type of expression with consumption at " ++ locStr (location c) in zeroOrderType (mkUsage argloc "potential consumption in expression") msg tp1 _ -> return () occurs <- (dflow `seqOccurences`) <$> consumeArg argloc argtype' (diet tp1') checkIfConsumable loc $ S.map AliasBound $ allConsumed occurs occur occurs (argext, parsubst) <- case pname of Named pname' -> do (d, argext) <- sizeSubst tp1' argexp return ( argext, (`M.lookup` M.singleton pname' (SizeSubst d)) ) _ -> return (Nothing, const Nothing) let tp2'' = applySubst parsubst $ returnType tp2' (diet tp1') argtype' return (tp1', tp2'', argext, ext) where sizeSubst (Scalar (Prim (Signed Int64))) e = dimFromArg fname e sizeSubst _ _ = return (AnyDim Nothing, Nothing) checkApply loc fname tfun@(Scalar TypeVar {}) arg = do tv <- newTypeVar loc "b" -- Change the uniqueness of the argument type because we never want -- to infer that a function is consuming. unify (mkUsage loc "use as function") (toStruct tfun) $ Scalar $ Arrow mempty Unnamed (toStruct (argType arg) `setUniqueness` Nonunique) tv tfun' <- normPatType tfun checkApply loc fname tfun' arg checkApply loc (fname, prev_applied) ftype (argexp, _, _, _) = do let fname' = maybe "expression" (pquote . ppr) fname typeError loc mempty $ if prev_applied == 0 then "Cannot apply" <+> fname' <+> "as function, as it has type:" indent 2 (ppr ftype) else "Cannot apply" <+> fname' <+> "to argument #" <> ppr (prev_applied + 1) <+> pquote (shorten $ pretty $ flatten $ ppr argexp) <> "," <+/> "as" <+> fname' <+> "only takes" <+> ppr prev_applied <+> arguments <> "." where arguments | prev_applied == 1 = "argument" | otherwise = "arguments" isInt64 :: Exp -> Maybe Int64 isInt64 (Literal (SignedValue (Int64Value k')) _) = Just $ fromIntegral k' isInt64 (IntLit k' _ _) = Just $ fromInteger k' isInt64 (Negate x _) = negate <$> isInt64 x isInt64 _ = Nothing maybeDimFromExp :: Exp -> Maybe (DimDecl VName) maybeDimFromExp (Var v _ _) = Just $ NamedDim v maybeDimFromExp (Parens e _) = maybeDimFromExp e maybeDimFromExp (QualParens _ e _) = maybeDimFromExp e maybeDimFromExp e = ConstDim . fromIntegral <$> isInt64 e dimFromExp :: (Exp -> SizeSource) -> Exp -> TermTypeM (DimDecl VName, Maybe VName) dimFromExp rf (Parens e _) = dimFromExp rf e dimFromExp rf (QualParens _ e _) = dimFromExp rf e dimFromExp rf e | Just d <- maybeDimFromExp e = return (d, Nothing) | otherwise = extSize (srclocOf e) $ rf e dimFromArg :: Maybe (QualName VName) -> Exp -> TermTypeM (DimDecl VName, Maybe VName) dimFromArg fname = dimFromExp $ SourceArg (FName fname) . bareExp -- | @returnType ret_type arg_diet arg_type@ gives result of applying -- an argument the given types to a function with the given return -- type, consuming the argument with the given diet. returnType :: PatType -> Diet -> PatType -> PatType returnType (Array _ Unique et shape) _ _ = Array mempty Unique et shape returnType (Array als Nonunique et shape) d arg = Array (als <> arg_als) Unique et shape -- Intentional! where arg_als = aliases $ maskAliases arg d returnType (Scalar (Record fs)) d arg = Scalar $ Record $ fmap (\et -> returnType et d arg) fs returnType (Scalar (Prim t)) _ _ = Scalar $ Prim t returnType (Scalar (TypeVar _ Unique t targs)) _ _ = Scalar $ TypeVar mempty Unique t targs returnType (Scalar (TypeVar als Nonunique t targs)) d arg = Scalar $ TypeVar (als <> arg_als) Unique t targs -- Intentional! where arg_als = aliases $ maskAliases arg d returnType (Scalar (Arrow old_als v t1 t2)) d arg = Scalar $ Arrow als v (t1 `setAliases` mempty) (t2 `setAliases` als) where -- Make sure to propagate the aliases of an existing closure. als = old_als <> aliases (maskAliases arg d) returnType (Scalar (Sum cs)) d arg = Scalar $ Sum $ (fmap . fmap) (\et -> returnType et d arg) cs -- | @t `maskAliases` d@ removes aliases (sets them to 'mempty') from -- the parts of @t@ that are denoted as consumed by the 'Diet' @d@. maskAliases :: Monoid as => TypeBase shape as -> Diet -> TypeBase shape as maskAliases t Consume = t `setAliases` mempty maskAliases t Observe = t maskAliases (Scalar (Record ets)) (RecordDiet ds) = Scalar $ Record $ M.intersectionWith maskAliases ets ds maskAliases t FuncDiet {} = t maskAliases _ _ = error "Invalid arguments passed to maskAliases." consumeArg :: SrcLoc -> PatType -> Diet -> TermTypeM [Occurence] consumeArg loc (Scalar (Record ets)) (RecordDiet ds) = concat . M.elems <$> traverse (uncurry $ consumeArg loc) (M.intersectionWith (,) ets ds) consumeArg loc (Array _ Nonunique _ _) Consume = typeError loc mempty "Consuming parameter passed non-unique argument." consumeArg loc (Scalar (TypeVar _ Nonunique _ _)) Consume = typeError loc mempty "Consuming parameter passed non-unique argument." consumeArg loc (Scalar (Arrow _ _ t1 _)) (FuncDiet d _) | not $ contravariantArg t1 d = typeError loc mempty "Non-consuming higher-order parameter passed consuming argument." where contravariantArg (Array _ Unique _ _) Observe = False contravariantArg (Scalar (TypeVar _ Unique _ _)) Observe = False contravariantArg (Scalar (Record ets)) (RecordDiet ds) = and (M.intersectionWith contravariantArg ets ds) contravariantArg (Scalar (Arrow _ _ tp tr)) (FuncDiet dp dr) = contravariantArg tp dp && contravariantArg tr dr contravariantArg _ _ = True consumeArg loc at Consume = return [consumption (aliases at) loc] consumeArg loc at _ = return [observation (aliases at) loc] -- | Type-check a single expression in isolation. This expression may -- turn out to be polymorphic, in which case the list of type -- parameters will be non-empty. checkOneExp :: UncheckedExp -> TypeM ([TypeParam], Exp) checkOneExp e = fmap fst . runTermTypeM $ do e' <- checkExp e let t = toStruct $ typeOf e' (tparams, _, _, _) <- letGeneralise (nameFromString "") (srclocOf e) [] [] t fixOverloadedTypes $ typeVars t e'' <- updateTypes e' checkUnmatched e'' causalityCheck e'' literalOverflowCheck e'' return (tparams, e'') -- Verify that all sum type constructors and empty array literals have -- a size that is known (rigid or a type parameter). This is to -- ensure that we can actually determine their shape at run-time. causalityCheck :: Exp -> TermTypeM () causalityCheck binding_body = do constraints <- getConstraints let checkCausality what known t loc | (d, dloc) : _ <- mapMaybe (unknown constraints known) $ S.toList $ typeDimNames $ toStruct t = Just $ lift $ causality what loc d dloc t | otherwise = Nothing checkParamCausality known p = checkCausality (ppr p) known (patternType p) (srclocOf p) onExp :: S.Set VName -> Exp -> StateT (S.Set VName) (Either TypeError) Exp onExp known (Var v (Info t) loc) | Just bad <- checkCausality (pquote (ppr v)) known t loc = bad onExp known (ProjectSection _ (Info t) loc) | Just bad <- checkCausality "projection section" known t loc = bad onExp known (IndexSection _ (Info t) loc) | Just bad <- checkCausality "projection section" known t loc = bad onExp known (OpSectionRight _ (Info t) _ _ _ loc) | Just bad <- checkCausality "operator section" known t loc = bad onExp known (OpSectionLeft _ (Info t) _ _ _ loc) | Just bad <- checkCausality "operator section" known t loc = bad onExp known (ArrayLit [] (Info t) loc) | Just bad <- checkCausality "empty array" known t loc = bad onExp known (Lambda params _ _ _ _) | bad : _ <- mapMaybe (checkParamCausality known) params = bad onExp known e@(AppExp (LetPat _ _ bindee_e body_e _) (Info res)) = do sequencePoint known bindee_e body_e $ appResExt res return e onExp known e@(AppExp (Apply f arg (Info (_, p)) _) (Info res)) = do sequencePoint known arg f $ maybeToList p ++ appResExt res return e onExp known e@(AppExp (BinOp (f, floc) ft (x, Info (_, xp)) (y, Info (_, yp)) _) (Info res)) = do args_known <- lift $ execStateT (sequencePoint known x y $ catMaybes [xp, yp]) mempty void $ onExp (args_known <> known) (Var f ft floc) modify ((args_known <> S.fromList (appResExt res)) <>) return e onExp known e@(AppExp e' (Info res)) = do recurse known e' modify (<> S.fromList (appResExt res)) pure e onExp known e = do recurse known e pure e recurse known = void . astMap mapper where mapper = identityMapper {mapOnExp = onExp known} sequencePoint known x y ext = do new_known <- lift $ execStateT (onExp known x) mempty void $ onExp (new_known <> known) y modify ((new_known <> S.fromList ext) <>) either throwError (const $ return ()) $ evalStateT (onExp mempty binding_body) mempty where unknown constraints known v = do guard $ v `S.notMember` known loc <- unknowable constraints v return (v, loc) unknowable constraints v = case snd <$> M.lookup v constraints of Just (UnknowableSize loc _) -> Just loc _ -> Nothing causality what loc d dloc t = Left $ TypeError loc mempty . withIndexLink "causality-check" $ "Causality check: size" <+/> pquote (pprName d) <+/> "needed for type of" <+> what <> colon indent 2 (ppr t) "But" <+> pquote (pprName d) <+> "is computed at" <+/> text (locStrRel loc dloc) <> "." "" "Hint:" <+> align ( textwrap "Bind the expression producing" <+> pquote (pprName d) <+> "with 'let' beforehand." ) -- | Traverse the expression, emitting warnings if any of the literals overflow -- their inferred types -- -- Note: currently unable to detect float underflow (such as 1e-400 -> 0) literalOverflowCheck :: Exp -> TermTypeM () literalOverflowCheck = void . check where check e@(IntLit x ty loc) = e <$ case ty of Info (Scalar (Prim t)) -> warnBounds (inBoundsI x t) x t loc _ -> error "Inferred type of int literal is not a number" check e@(FloatLit x ty loc) = e <$ case ty of Info (Scalar (Prim (FloatType t))) -> warnBounds (inBoundsF x t) x t loc _ -> error "Inferred type of float literal is not a float" check e@(Negate (IntLit x ty loc1) loc2) = e <$ case ty of Info (Scalar (Prim t)) -> warnBounds (inBoundsI (- x) t) (- x) t (loc1 <> loc2) _ -> error "Inferred type of int literal is not a number" check e = astMap identityMapper {mapOnExp = check} e bitWidth ty = 8 * intByteSize ty :: Int inBoundsI x (Signed t) = x >= -2 ^ (bitWidth t - 1) && x < 2 ^ (bitWidth t - 1) inBoundsI x (Unsigned t) = x >= 0 && x < 2 ^ bitWidth t inBoundsI x (FloatType Float16) = not $ isInfinite (fromIntegral x :: Half) inBoundsI x (FloatType Float32) = not $ isInfinite (fromIntegral x :: Float) inBoundsI x (FloatType Float64) = not $ isInfinite (fromIntegral x :: Double) inBoundsI _ Bool = error "Inferred type of int literal is not a number" inBoundsF x Float16 = not $ isInfinite (realToFrac x :: Float) inBoundsF x Float32 = not $ isInfinite (realToFrac x :: Float) inBoundsF x Float64 = not $ isInfinite x warnBounds inBounds x ty loc = unless inBounds $ typeError loc mempty $ "Literal " <> ppr x <> " out of bounds for inferred type " <> ppr ty <> "." -- | Type-check a top-level (or module-level) function definition. -- Despite the name, this is also used for checking constant -- definitions, by treating them as 0-ary functions. checkFunDef :: ( Name, Maybe UncheckedTypeExp, [UncheckedTypeParam], [UncheckedPat], UncheckedExp, SrcLoc ) -> TypeM ( VName, [TypeParam], [Pat], Maybe (TypeExp VName), StructType, [VName], Exp ) checkFunDef (fname, maybe_retdecl, tparams, params, body, loc) = fmap fst $ runTermTypeM $ do (tparams', params', maybe_retdecl', rettype', retext, body') <- checkBinding (fname, maybe_retdecl, tparams, params, body, loc) -- Since this is a top-level function, we also resolve overloaded -- types, using either defaults or complaining about ambiguities. fixOverloadedTypes $ typeVars rettype' <> foldMap (typeVars . patternType) params' -- Then replace all inferred types in the body and parameters. body'' <- updateTypes body' params'' <- updateTypes params' maybe_retdecl'' <- traverse updateTypes maybe_retdecl' rettype'' <- normTypeFully rettype' -- Check if pattern matches are exhaustive and yield -- errors if not. checkUnmatched body'' -- Check if the function body can actually be evaluated. causalityCheck body'' literalOverflowCheck body'' bindSpaced [(Term, fname)] $ do fname' <- checkName Term fname loc when (nameToString fname `elem` doNotShadow) $ typeError loc mempty $ "The" <+> pprName fname <+> "operator may not be redefined." return (fname', tparams', params'', maybe_retdecl'', rettype'', retext, body'') -- | This is "fixing" as in "setting them", not "correcting them". We -- only make very conservative fixing. fixOverloadedTypes :: Names -> TermTypeM () fixOverloadedTypes tyvars_at_toplevel = getConstraints >>= mapM_ fixOverloaded . M.toList . M.map snd where fixOverloaded (v, Overloaded ots usage) | Signed Int32 `elem` ots = do unify usage (Scalar (TypeVar () Nonunique (typeName v) [])) $ Scalar $ Prim $ Signed Int32 when (v `S.member` tyvars_at_toplevel) $ warn usage "Defaulting ambiguous type to i32." | FloatType Float64 `elem` ots = do unify usage (Scalar (TypeVar () Nonunique (typeName v) [])) $ Scalar $ Prim $ FloatType Float64 when (v `S.member` tyvars_at_toplevel) $ warn usage "Defaulting ambiguous type to f64." | otherwise = typeError usage mempty $ "Type is ambiguous (could be one of" <+> commasep (map ppr ots) <> ")." "Add a type annotation to disambiguate the type." fixOverloaded (_, NoConstraint _ usage) = typeError usage mempty $ "Type of expression is ambiguous." "Add a type annotation to disambiguate the type." fixOverloaded (_, Equality usage) = typeError usage mempty $ "Type is ambiguous (must be equality type)." "Add a type annotation to disambiguate the type." fixOverloaded (_, HasFields fs usage) = typeError usage mempty $ "Type is ambiguous. Must be record with fields:" indent 2 (stack $ map field $ M.toList fs) "Add a type annotation to disambiguate the type." where field (l, t) = ppr l <> colon <+> align (ppr t) fixOverloaded (_, HasConstrs cs usage) = typeError usage mempty $ "Type is ambiguous (must be a sum type with constructors:" <+> ppr (Sum cs) <> ")." "Add a type annotation to disambiguate the type." fixOverloaded (v, Size Nothing usage) = typeError usage mempty $ "Size" <+> pquote (pprName v) <+> "is ambiguous.\n" fixOverloaded _ = return () hiddenParamNames :: [Pat] -> Names hiddenParamNames params = hidden where param_all_names = mconcat $ map patNames params named (Named x, _) = Just x named (Unnamed, _) = Nothing param_names = S.fromList $ mapMaybe (named . patternParam) params hidden = param_all_names `S.difference` param_names inferredReturnType :: SrcLoc -> [Pat] -> PatType -> TermTypeM StructType inferredReturnType loc params t = -- The inferred type may refer to names that are bound by the -- parameter patterns, but which will not be visible in the type. -- These we must turn into fresh type variables, which will be -- existential in the return type. fmap (toStruct . fst) $ unscopeType loc (M.filterWithKey (const . (`S.member` hidden)) $ foldMap patternMap params) $ inferReturnUniqueness params t where hidden = hiddenParamNames params checkBinding :: ( Name, Maybe UncheckedTypeExp, [UncheckedTypeParam], [UncheckedPat], UncheckedExp, SrcLoc ) -> TermTypeM ( [TypeParam], [Pat], Maybe (TypeExp VName), StructType, [VName], Exp ) checkBinding (fname, maybe_retdecl, tparams, params, body, loc) = noUnique . incLevel . bindingParams tparams params $ \tparams' params' -> do when (null params && any isSizeParam tparams) $ typeError loc mempty "Size parameters are only allowed on bindings that also have value parameters." maybe_retdecl' <- forM maybe_retdecl $ \retdecl -> do (retdecl', ret_nodims, _) <- checkTypeExp retdecl (ret, _) <- instantiateEmptyArrayDims loc "funret" Nonrigid ret_nodims return (retdecl', ret) body' <- checkFunBody params' body (snd <$> maybe_retdecl') (maybe loc srclocOf maybe_retdecl) params'' <- mapM updateTypes params' body_t <- expTypeFully body' (maybe_retdecl'', rettype) <- case maybe_retdecl' of Just (retdecl', ret) -> do let rettype_structural = toStructural ret checkReturnAlias rettype_structural params'' body_t when (null params) $ nothingMustBeUnique loc rettype_structural ret' <- normTypeFully ret return (Just retdecl', ret') Nothing | null params -> return (Nothing, toStruct $ body_t `setUniqueness` Nonunique) | otherwise -> do body_t' <- inferredReturnType loc params'' body_t return (Nothing, body_t') verifyFunctionParams (Just fname) params'' (tparams'', params''', rettype'', retext) <- letGeneralise fname loc tparams' params'' rettype checkGlobalAliases params'' body_t loc return (tparams'', params''', maybe_retdecl'', rettype'', retext, body') where checkReturnAlias rettp params' = foldM_ (checkReturnAlias' params') S.empty . returnAliasing rettp checkReturnAlias' params' seen (Unique, names) | any (`S.member` S.map snd seen) $ S.toList names = uniqueReturnAliased fname loc | otherwise = do notAliasingParam params' names return $ seen `S.union` tag Unique names checkReturnAlias' _ seen (Nonunique, names) | any (`S.member` seen) $ S.toList $ tag Unique names = uniqueReturnAliased fname loc | otherwise = return $ seen `S.union` tag Nonunique names notAliasingParam params' names = forM_ params' $ \p -> let consumedNonunique p' = not (unique $ unInfo $ identType p') && (identName p' `S.member` names) in case find consumedNonunique $ S.toList $ patIdents p of Just p' -> returnAliased fname (baseName $ identName p') loc Nothing -> return () tag u = S.map (u,) returnAliasing (Scalar (Record ets1)) (Scalar (Record ets2)) = concat $ M.elems $ M.intersectionWith returnAliasing ets1 ets2 returnAliasing expected got = [(uniqueness expected, S.map aliasVar $ aliases got)] -- | Extract all the shape names that occur in positive position -- (roughly, left side of an arrow) in a given type. typeDimNamesPos :: TypeBase (DimDecl VName) als -> S.Set VName typeDimNamesPos (Scalar (Arrow _ _ t1 t2)) = onParam t1 <> typeDimNamesPos t2 where onParam :: TypeBase (DimDecl VName) als -> S.Set VName onParam (Scalar Arrow {}) = mempty onParam (Scalar (Record fs)) = mconcat $ map onParam $ M.elems fs onParam (Scalar (TypeVar _ _ _ targs)) = mconcat $ map onTypeArg targs onParam t = typeDimNames t onTypeArg (TypeArgDim (NamedDim d) _) = S.singleton $ qualLeaf d onTypeArg (TypeArgDim _ _) = mempty onTypeArg (TypeArgType t _) = onParam t typeDimNamesPos _ = mempty checkGlobalAliases :: [Pat] -> PatType -> SrcLoc -> TermTypeM () checkGlobalAliases params body_t loc = do vtable <- asks $ scopeVtable . termScope let isLocal v = case v `M.lookup` vtable of Just (BoundV Local _ _) -> True _ -> False let als = filter (not . isLocal) $ S.toList $ boundArrayAliases body_t `S.difference` foldMap patNames params case als of v : _ | not $ null params -> typeError loc mempty $ "Function result aliases the free variable " <> pquote (pprName v) <> "." "Use" <+> pquote "copy" <+> "to break the aliasing." _ -> return () inferReturnUniqueness :: [Pat] -> PatType -> PatType inferReturnUniqueness params t = let forbidden = aliasesMultipleTimes t uniques = uniqueParamNames params delve (Scalar (Record fs)) = Scalar $ Record $ M.map delve fs delve t' | all (`S.member` uniques) (boundArrayAliases t'), not $ any ((`S.member` forbidden) . aliasVar) (aliases t') = t' | otherwise = t' `setUniqueness` Nonunique in delve t -- An alias inhibits uniqueness if it is used in disjoint values. aliasesMultipleTimes :: PatType -> Names aliasesMultipleTimes = S.fromList . map fst . filter ((> 1) . snd) . M.toList . delve where delve (Scalar (Record fs)) = foldl' (M.unionWith (+)) mempty $ map delve $ M.elems fs delve t = M.fromList $ zip (map aliasVar $ S.toList (aliases t)) $ repeat (1 :: Int) uniqueParamNames :: [Pat] -> Names uniqueParamNames = S.map identName . S.filter (unique . unInfo . identType) . foldMap patIdents boundArrayAliases :: PatType -> S.Set VName boundArrayAliases (Array als _ _ _) = boundAliases als boundArrayAliases (Scalar Prim {}) = mempty boundArrayAliases (Scalar (Record fs)) = foldMap boundArrayAliases fs boundArrayAliases (Scalar (TypeVar als _ _ _)) = boundAliases als boundArrayAliases (Scalar Arrow {}) = mempty boundArrayAliases (Scalar (Sum fs)) = mconcat $ concatMap (map boundArrayAliases) $ M.elems fs -- | The set of in-scope variables that are being aliased. boundAliases :: Aliasing -> S.Set VName boundAliases = S.map aliasVar . S.filter bound where bound AliasBound {} = True bound AliasFree {} = False nothingMustBeUnique :: SrcLoc -> TypeBase () () -> TermTypeM () nothingMustBeUnique loc = check where check (Array _ Unique _ _) = bad check (Scalar (TypeVar _ Unique _ _)) = bad check (Scalar (Record fs)) = mapM_ check fs check (Scalar (Sum fs)) = mapM_ (mapM_ check) fs check _ = return () bad = typeError loc mempty "A top-level constant cannot have a unique type." -- | Verify certain restrictions on function parameters, and bail out -- on dubious constructions. -- -- These restrictions apply to all functions (anonymous or otherwise). -- Top-level functions have further restrictions that are checked -- during let-generalisation. verifyFunctionParams :: Maybe Name -> [Pat] -> TermTypeM () verifyFunctionParams fname params = onFailure (CheckingParams fname) $ verifyParams (foldMap patNames params) =<< mapM updateTypes params where verifyParams forbidden (p : ps) | d : _ <- S.toList $ patternDimNames p `S.intersection` forbidden = typeError p mempty $ "Parameter" <+> pquote (ppr p) <+/> "refers to size" <+> pquote (pprName d) <> comma <+/> textwrap "which will not be accessible to the caller" <> comma <+/> textwrap "possibly because it is nested in a tuple or record." <+/> textwrap "Consider ascribing an explicit type that does not reference " <> pquote (pprName d) <> "." | otherwise = verifyParams forbidden' ps where forbidden' = case patternParam p of (Named v, _) -> forbidden `S.difference` S.singleton v _ -> forbidden verifyParams _ [] = return () -- Returns the sizes of the immediate type produced, -- the sizes of parameter types, and the sizes of return types. dimUses :: StructType -> (Names, Names, Names) dimUses = (`execState` mempty) . traverseDims f where f _ PosImmediate (NamedDim v) = modify (<> (S.singleton (qualLeaf v), mempty, mempty)) f _ PosParam (NamedDim v) = modify (<> (mempty, S.singleton (qualLeaf v), mempty)) f _ PosReturn (NamedDim v) = modify (<> (mempty, mempty, S.singleton (qualLeaf v))) f _ _ _ = return () -- | Find all type variables in the given type that are covered by the -- constraints, and produce type parameters that close over them. -- -- The passed-in list of type parameters is always prepended to the -- produced list of type parameters. closeOverTypes :: Name -> SrcLoc -> [TypeParam] -> [StructType] -> StructType -> Constraints -> TermTypeM ([TypeParam], StructType, [VName]) closeOverTypes defname defloc tparams paramts ret substs = do (more_tparams, retext) <- partitionEithers . catMaybes <$> mapM closeOver (M.toList $ M.map snd to_close_over) let retToAnyDim v = do guard $ v `S.member` ret_sizes UnknowableSize {} <- snd <$> M.lookup v substs Just $ SizeSubst $ AnyDim $ Just v return ( tparams ++ more_tparams, applySubst retToAnyDim ret, retext ) where t = foldFunType paramts ret to_close_over = M.filterWithKey (\k _ -> k `S.member` visible) substs visible = typeVars t <> typeDimNames t (produced_sizes, param_sizes, ret_sizes) = dimUses t -- Avoid duplicate type parameters. closeOver (k, _) | k `elem` map typeParamName tparams = return Nothing closeOver (k, NoConstraint l usage) = return $ Just $ Left $ TypeParamType l k $ srclocOf usage closeOver (k, ParamType l loc) = return $ Just $ Left $ TypeParamType l k loc closeOver (k, Size Nothing usage) = return $ Just $ Left $ TypeParamDim k $ srclocOf usage closeOver (k, UnknowableSize _ _) | k `S.member` param_sizes = do notes <- dimNotes defloc $ NamedDim $ qualName k typeError defloc notes $ "Unknowable size" <+> pquote (pprName k) <+> "imposes constraint on type of" <+> pquote (pprName defname) <> ", which is inferred as:" indent 2 (ppr t) | k `S.member` produced_sizes = return $ Just $ Right k closeOver (_, _) = return Nothing letGeneralise :: Name -> SrcLoc -> [TypeParam] -> [Pat] -> StructType -> TermTypeM ([TypeParam], [Pat], StructType, [VName]) letGeneralise defname defloc tparams params rettype = onFailure (CheckingLetGeneralise defname) $ do now_substs <- getConstraints -- Candidates for let-generalisation are those type variables that -- -- (1) were not known before we checked this function, and -- -- (2) are not used in the (new) definition of any type variables -- known before we checked this function. -- -- (3) are not referenced from an overloaded type (for example, -- are the element types of an incompletely resolved record type). -- This is a bit more restrictive than I'd like, and SML for -- example does not have this restriction. -- -- Criteria (1) and (2) is implemented by looking at the binding -- level of the type variables. let keep_type_vars = overloadedTypeVars now_substs cur_lvl <- curLevel let candidate k (lvl, _) = (k `S.notMember` keep_type_vars) && lvl >= cur_lvl new_substs = M.filterWithKey candidate now_substs (tparams', rettype', retext) <- closeOverTypes defname defloc tparams (map patternStructType params) rettype new_substs rettype'' <- updateTypes rettype' let used_sizes = foldMap typeDimNames $ rettype'' : map patternStructType params case filter ((`S.notMember` used_sizes) . typeParamName) $ filter isSizeParam tparams' of [] -> pure () tp : _ -> unusedSize $ SizeBinder (typeParamName tp) (srclocOf tp) -- We keep those type variables that were not closed over by -- let-generalisation. modifyConstraints $ M.filterWithKey $ \k _ -> k `notElem` map typeParamName tparams' return (tparams', params, rettype'', retext) checkFunBody :: [Pat] -> UncheckedExp -> Maybe StructType -> SrcLoc -> TermTypeM Exp checkFunBody params body maybe_rettype loc = do body' <- noSizeEscape $ checkExp body -- Unify body return type with return annotation, if one exists. case maybe_rettype of Just rettype -> do (rettype_withdims, _) <- instantiateEmptyArrayDims loc "impl" Nonrigid rettype body_t <- expTypeFully body' -- We need to turn any sizes provided by "hidden" parameter -- names into existential sizes instead. let hidden = hiddenParamNames params (body_t', _) <- unscopeType loc ( M.filterWithKey (const . (`S.member` hidden)) $ foldMap patternMap params ) body_t let usage = mkUsage (srclocOf body) "return type annotation" onFailure (CheckingReturn rettype (toStruct body_t')) $ expect usage rettype_withdims $ toStruct body_t' -- We also have to make sure that uniqueness matches. This is done -- explicitly, because uniqueness is ignored by unification. rettype' <- normTypeFully rettype body_t'' <- normTypeFully rettype -- Substs may have changed. unless (toStructural body_t'' `subtypeOf` toStructural rettype') $ typeError (srclocOf body) mempty $ "Body type" indent 2 (ppr body_t'') "is not a subtype of annotated type" indent 2 (ppr rettype') Nothing -> return () return body' --- Consumption occur :: Occurences -> TermTypeM () occur occs = modify $ \s -> s {stateOccs = stateOccs s <> occs} -- | Proclaim that we have made read-only use of the given variable. observe :: Ident -> TermTypeM () observe (Ident nm (Info t) loc) = let als = AliasBound nm `S.insert` aliases t in occur [observation als loc] describeVar :: SrcLoc -> VName -> TermTypeM Doc describeVar loc v = gets $ maybe ("variable" <+> pquote (pprName v)) (nameReason loc) . M.lookup v . stateNames checkIfConsumable :: SrcLoc -> Aliasing -> TermTypeM () checkIfConsumable loc als = do vtable <- asks $ scopeVtable . termScope let consumable v = case M.lookup v vtable of Just (BoundV Local _ t) | arrayRank t > 0 -> unique t | Scalar TypeVar {} <- t -> unique t | Scalar Arrow {} <- t -> False | otherwise -> True Just (BoundV Global _ _) -> False _ -> True -- The sort ensures that AliasBound vars are shown before AliasFree. case map aliasVar $ sort $ filter (not . consumable . aliasVar) $ S.toList als of v : _ -> notConsumable loc =<< describeVar loc v [] -> return () -- | Proclaim that we have written to the given variable. consume :: SrcLoc -> Aliasing -> TermTypeM () consume loc als = do checkIfConsumable loc als occur [consumption als loc] -- | Proclaim that we have written to the given variable, and mark -- accesses to it and all of its aliases as invalid inside the given -- computation. consuming :: Ident -> TermTypeM a -> TermTypeM a consuming (Ident name (Info t) loc) m = do t' <- normTypeFully t consume loc $ AliasBound name `S.insert` aliases t' localScope consume' m where consume' scope = scope {scopeVtable = M.insert name (WasConsumed loc) $ scopeVtable scope} collectOccurences :: TermTypeM a -> TermTypeM (a, Occurences) collectOccurences m = do old <- gets stateOccs modify $ \s -> s {stateOccs = mempty} x <- m new <- gets stateOccs modify $ \s -> s {stateOccs = old} pure (x, new) tapOccurences :: TermTypeM a -> TermTypeM (a, Occurences) tapOccurences m = do (x, occs) <- collectOccurences m occur occs pure (x, occs) removeSeminullOccurences :: TermTypeM a -> TermTypeM a removeSeminullOccurences m = do (x, occs) <- collectOccurences m occur $ filter (not . seminullOccurence) occs pure x checkIfUsed :: Occurences -> Ident -> TermTypeM () checkIfUsed occs v | not $ identName v `S.member` allOccuring occs, not $ "_" `isPrefixOf` prettyName (identName v) = warn (srclocOf v) $ "Unused variable" <+> pquote (pprName $ identName v) <+> "." | otherwise = return () alternative :: TermTypeM a -> TermTypeM b -> TermTypeM (a, b) alternative m1 m2 = do (x, occurs1) <- collectOccurences $ noSizeEscape m1 (y, occurs2) <- collectOccurences $ noSizeEscape m2 checkOccurences occurs1 checkOccurences occurs2 occur $ occurs1 `altOccurences` occurs2 pure (x, y) -- | Enter a context where nothing outside can be consumed (i.e. the -- body of a function definition). noUnique :: TermTypeM a -> TermTypeM a noUnique m = do (x, occs) <- collectOccurences $ localScope f m checkOccurences occs occur $ fst $ split occs pure x where f scope = scope {scopeVtable = M.map set $ scopeVtable scope} set (BoundV l tparams t) = BoundV l tparams $ t `setUniqueness` Nonunique set (OverloadedF ts pts rt) = OverloadedF ts pts rt set EqualityF = EqualityF set (WasConsumed loc) = WasConsumed loc split = unzip . map (\occ -> (occ {consumed = mempty}, occ {observed = mempty})) onlySelfAliasing :: TermTypeM a -> TermTypeM a onlySelfAliasing = localScope (\scope -> scope {scopeVtable = M.mapWithKey set $ scopeVtable scope}) where set k (BoundV l tparams t) = BoundV l tparams $ t `addAliases` S.intersection (S.singleton (AliasBound k)) set _ (OverloadedF ts pts rt) = OverloadedF ts pts rt set _ EqualityF = EqualityF set _ (WasConsumed loc) = WasConsumed loc arrayOfM :: (Pretty (ShapeDecl dim), Monoid as) => SrcLoc -> TypeBase dim as -> ShapeDecl dim -> Uniqueness -> TermTypeM (TypeBase dim as) arrayOfM loc t shape u = do arrayElemType (mkUsage loc "use as array element") "type used in array" t return $ arrayOf t shape u updateTypes :: ASTMappable e => e -> TermTypeM e updateTypes = astMap tv where tv = ASTMapper { mapOnExp = astMap tv, mapOnName = pure, mapOnQualName = pure, mapOnStructType = normTypeFully, mapOnPatType = normTypeFully }