Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix instance import #2350

Merged
merged 4 commits into from
Sep 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 23 additions & 2 deletions src/Juvix/Compiler/Internal/Data/InstanceInfo.hs
Original file line number Diff line number Diff line change
Expand Up @@ -27,22 +27,43 @@ data InstanceInfo = InstanceInfo
_instanceInfoResult :: Expression,
_instanceInfoArgs :: [FunctionParameter]
}
deriving stock (Eq)

instance Hashable InstanceInfo where
hashWithSalt salt InstanceInfo {..} = hashWithSalt salt _instanceInfoResult

-- | Maps trait names to available instances
type InstanceTable = HashMap InductiveName [InstanceInfo]
newtype InstanceTable = InstanceTable
{ _instanceTableMap :: HashMap InductiveName [InstanceInfo]
}

makeLenses ''InstanceApp
makeLenses ''InstanceInfo
makeLenses ''InstanceTable

instance Semigroup InstanceTable where
janmasrovira marked this conversation as resolved.
Show resolved Hide resolved
t1 <> t2 =
InstanceTable $
HashMap.unionWith combine (t1 ^. instanceTableMap) (t2 ^. instanceTableMap)
where
combine :: [InstanceInfo] -> [InstanceInfo] -> [InstanceInfo]
combine ii1 ii2 = nubHashable (ii1 ++ ii2)

instance Monoid InstanceTable where
mempty = InstanceTable mempty

updateInstanceTable :: InstanceTable -> InstanceInfo -> InstanceTable
updateInstanceTable tab ii@InstanceInfo {..} =
HashMap.alter go _instanceInfoInductive tab
over instanceTableMap (HashMap.alter go _instanceInfoInductive) tab
where
go :: Maybe [InstanceInfo] -> Maybe [InstanceInfo]
go = \case
Just is -> Just (ii : is)
Nothing -> Just [ii]

lookupInstanceTable :: InstanceTable -> Name -> Maybe [InstanceInfo]
lookupInstanceTable tab name = HashMap.lookup name (tab ^. instanceTableMap)

paramToExpression :: InstanceParam -> Expression
paramToExpression = \case
InstanceParamVar v ->
Expand Down
7 changes: 5 additions & 2 deletions src/Juvix/Compiler/Internal/Extra/DependencyBuilder.hs
Original file line number Diff line number Diff line change
Expand Up @@ -84,12 +84,15 @@ goModuleNoVisited (ModuleIndex m) = do
goImport :: (Members '[Reader ExportsTable, State DependencyGraph, State StartNodes, Visit ModuleIndex] r) => Import -> Sem r ()
goImport (Import m) = visit m

-- | Ignores includes
goPreModule :: (Members '[Reader ExportsTable, State DependencyGraph, State StartNodes] r) => PreModule -> Sem r ()
goPreModule :: (Members '[Reader ExportsTable, State DependencyGraph, State StartNodes, Visit ModuleIndex] r) => PreModule -> Sem r ()
goPreModule m = do
checkStartNode (m ^. moduleName)
let b = m ^. moduleBody
mapM_ (goPreStatement (m ^. moduleName)) (b ^. moduleStatements)
-- We cannot ignore imports with instances, because a trait in a module M may
-- depend on an instance in a module N which imports M (i.e. new edges may be
-- added from definitions in M to definitions in N)
mapM_ goImport (b ^. moduleImports)

goStatement :: forall r. (Members '[Reader ExportsTable, State DependencyGraph, State StartNodes] r) => Name -> Statement -> Sem r ()
goStatement parentModule = \case
Expand Down
4 changes: 4 additions & 0 deletions src/Juvix/Compiler/Internal/Pretty/Base.hs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ where

import Data.HashMap.Strict qualified as HashMap
import Juvix.Compiler.Internal.Data.InfoTable.Base
import Juvix.Compiler.Internal.Data.InstanceInfo (instanceInfoResult, instanceTableMap)
import Juvix.Compiler.Internal.Data.NameDependencyInfo
import Juvix.Compiler.Internal.Extra
import Juvix.Compiler.Internal.Pretty.Options
Expand Down Expand Up @@ -313,6 +314,7 @@ instance PrettyCode InfoTable where
inds <- ppCode (HashMap.keys (tbl ^. infoInductives))
constrs <- ppCode (HashMap.keys (tbl ^. infoConstructors))
funs <- ppCode (HashMap.keys (tbl ^. infoFunctions))
insts <- ppCode $ map (map (^. instanceInfoResult)) $ HashMap.elems (tbl ^. infoInstances . instanceTableMap)
let header :: Text -> Doc Ann = annotate AnnImportant . pretty
return $
header "InfoTable"
Expand All @@ -323,6 +325,8 @@ instance PrettyCode InfoTable where
<> constrs
<> header "\nFunctions: "
<> funs
<> header "\nInstances: "
<> insts

ppPostExpression ::
(PrettyCode a, HasAtomicity a, Member (Reader Options) r) =>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ lookupInstance' ::
[InstanceParam] ->
Sem r [(InstanceInfo, SubsI)]
lookupInstance' tab name params = do
let is = fromMaybe [] $ HashMap.lookup name tab
let is = fromMaybe [] $ lookupInstanceTable tab name
mapMaybeM matchInstance is
where
matchInstance :: InstanceInfo -> Sem r (Maybe (InstanceInfo, SubsI))
Expand Down
6 changes: 5 additions & 1 deletion test/Typecheck/Positive.hs
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,11 @@ tests =
posTest
"Traits"
$(mkRelDir ".")
$(mkRelFile "Traits.juvix")
$(mkRelFile "Traits.juvix"),
posTest
"Instance import"
$(mkRelDir "InstanceImport")
$(mkRelFile "Main.juvix")
]
<> [ compilationTest t | t <- Compilation.tests
]
9 changes: 9 additions & 0 deletions tests/positive/InstanceImport/M.juvix
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
module M;

trait
type T A := mkT {pp : A → A};

type Unit := unit;

instance
unitI : T Unit := mkT λ {x := x};
12 changes: 12 additions & 0 deletions tests/positive/InstanceImport/Main.juvix
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
module Main;

import M open;
import M open;

type Bool := true | false;

instance
boolI : T Bool := mkT λ {x := x};

main : Bool := case T.pp unit
| unit := T.pp true;
Empty file.