Skip to content

Commit

Permalink
Bugfix: modules associated with inductive types should be declared af…
Browse files Browse the repository at this point in the history
…ter their inductive types (#2768)

* Closes #2763. 
* Fixes a bug in the scoper, likely introduced in
#2468 by making later declarations
depend on earlier ones. The problem was that the inductive modules were
always added at the beginning of a section, which resulted in an
incorrect definition dependency graph (an inductive type depended on its
associated projections).
* Now inductive modules are added just after a group of inductive
definitions, before the next function definition. This implies that
inductive type definitions which depend on each other cannot be
separated by function definitions. Existing Juvix code needs to be
adjusted.
* The behaviour is now equivalent to "manually" inserting module
declarations with projections after each group of inductive definitions.
  • Loading branch information
lukaszcz committed May 14, 2024
1 parent 1ab94f5 commit d59d02c
Show file tree
Hide file tree
Showing 8 changed files with 156 additions and 83 deletions.
42 changes: 21 additions & 21 deletions include/package/PackageDescription/V1.juvix
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,6 @@ type Package :=
buildDir : Maybe String
};

--- Construct a ;Package; with useful default arguments.
defaultPackage {name : String := "my-project"} {version : SemVer := defaultVersion} {dependencies : List
Dependency := [defaultStdlib]} {main : Maybe
String := nothing} {buildDir : Maybe String := nothing}
: Package :=
mkPackage name version dependencies main buildDir;

--- A ;SemVer; defines a version that conforms to the Semantic Versioning specification.
type SemVer :=
mkSemVer {
Expand All @@ -34,20 +27,6 @@ type SemVer :=
meta : Maybe String
};

--- Construct a ;SemVer; with useful default arguments.
mkVersion (major minor patch : Nat) {release : Maybe
String := nothing} {meta : Maybe String := nothing}
: SemVer :=
mkSemVer
(major := major;
minor := minor;
patch := patch;
release := release;
meta := meta);

--- The default version used in `defaultPackage`.
defaultVersion : SemVer := mkVersion 0 0 0;

--- A ;Dependency; defines a Juvix package dependency.
type Dependency :=
| --- A filesystem path to another Juvix Package.
Expand All @@ -64,6 +43,27 @@ type Dependency :=
| --- The ;defaultStdlib; that is bundled with the Juvix compiler.
defaultStdlib;

--- Construct a ;Package; with useful default arguments.
defaultPackage {name : String := "my-project"} {version : SemVer := defaultVersion} {dependencies : List
Dependency := [defaultStdlib]} {main : Maybe
String := nothing} {buildDir : Maybe String := nothing}
: Package :=
mkPackage name version dependencies main buildDir;

--- Construct a ;SemVer; with useful default arguments.
mkVersion (major minor patch : Nat) {release : Maybe
String := nothing} {meta : Maybe String := nothing}
: SemVer :=
mkSemVer
(major := major;
minor := minor;
patch := patch;
release := release;
meta := meta);

--- The default version used in `defaultPackage`.
defaultVersion : SemVer := mkVersion 0 0 0;

--- Constructs a GitHub dependency.
github (org repo ref : String) : Dependency :=
git
Expand Down
42 changes: 21 additions & 21 deletions include/package/PackageDescription/V2.juvix
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,6 @@ type Package :=
buildDir : Maybe String
};

--- Construct a ;Package; with useful default arguments.
defaultPackage {name : String := "my-project"} {version : SemVer := defaultVersion} {dependencies : List
Dependency := [defaultStdlib]} {main : Maybe
String := nothing} {buildDir : Maybe String := nothing}
: Package :=
mkPackage name version dependencies main buildDir;

--- A ;SemVer; defines a version that conforms to the Semantic Versioning specification.
type SemVer :=
mkSemVer {
Expand All @@ -34,20 +27,6 @@ type SemVer :=
meta : Maybe String
};

--- Construct a ;SemVer; with useful default arguments.
mkVersion (major minor patch : Nat) {release : Maybe
String := nothing} {meta : Maybe String := nothing}
: SemVer :=
mkSemVer
(major := major;
minor := minor;
patch := patch;
release := release;
meta := meta);

--- The default version used in `defaultPackage`.
defaultVersion : SemVer := mkVersion 0 0 0;

--- A ;Dependency; defines a Juvix package dependency.
type Dependency :=
| --- A filesystem path to another Juvix Package.
Expand All @@ -64,6 +43,27 @@ type Dependency :=
| --- The ;defaultStdlib; that is bundled with the Juvix compiler.
defaultStdlib;

--- Construct a ;Package; with useful default arguments.
defaultPackage {name : String := "my-project"} {version : SemVer := defaultVersion} {dependencies : List
Dependency := [defaultStdlib]} {main : Maybe
String := nothing} {buildDir : Maybe String := nothing}
: Package :=
mkPackage name version dependencies main buildDir;

--- Construct a ;SemVer; with useful default arguments.
mkVersion (major minor patch : Nat) {release : Maybe
String := nothing} {meta : Maybe String := nothing}
: SemVer :=
mkSemVer
(major := major;
minor := minor;
patch := patch;
release := release;
meta := meta);

--- The default version used in `defaultPackage`.
defaultVersion : SemVer := mkVersion 0 0 0;

--- Constructs a GitHub dependency.
github (org repo ref : String) : Dependency :=
git
Expand Down
129 changes: 89 additions & 40 deletions src/Juvix/Compiler/Concrete/Translation/FromParsed/Analysis/Scoping.hs
Original file line number Diff line number Diff line change
Expand Up @@ -1198,28 +1198,11 @@ checkSections ::
(Members '[HighlightBuilder, Error ScoperError, Reader ScopeParameters, State Scope, State ScoperState, InfoTableBuilder, Reader InfoTable, NameIdGen, State ScoperSyntax, Reader EntryPoint] r) =>
StatementSections 'Parsed ->
Sem r (StatementSections 'Scoped)
checkSections sec = do
(inductiveModules, sec' :: StatementSections 'Scoped) <- runOutputList (topBindings helper)
return $ case (fmap NonDefinitionModule) <$> nonEmpty inductiveModules of
Nothing -> sec'
Just im -> case sec' of
SectionsNonDefinitions d -> SectionsNonDefinitions (over nonDefinitionsSection (im <>) d)
SectionsEmpty ->
SectionsNonDefinitions
NonDefinitionsSection
{ _nonDefinitionsSection = im,
_nonDefinitionsNext = Nothing
}
SectionsDefinitions d ->
SectionsNonDefinitions
NonDefinitionsSection
{ _nonDefinitionsSection = im,
_nonDefinitionsNext = Just d
}
checkSections sec = topBindings helper
where
helper ::
forall r'.
(r' ~ Reader BindingStrategy ': Output (Module 'Scoped 'ModuleLocal) ': r) =>
(r' ~ Reader BindingStrategy ': r) =>
Sem r' (StatementSections 'Scoped)
helper = case sec of
SectionsEmpty -> return SectionsEmpty
Expand All @@ -1243,17 +1226,82 @@ checkSections sec = do
NonDefinitionOpenModule i -> NonDefinitionOpenModule <$> checkOpenModule i

goDefinitions :: DefinitionsSection 'Parsed -> Sem r' (DefinitionsSection 'Scoped)
goDefinitions DefinitionsSection {..} = do
mapM_ reserveDefinition _definitionsSection
mapM_ scanAlias (_definitionsSection ^.. each . _DefinitionSyntax . _SyntaxAlias)
sec' <- mapM goDefinition _definitionsSection
next' <- mapM goNonDefinitions _definitionsNext
return
DefinitionsSection
{ _definitionsNext = next',
_definitionsSection = sec'
}
goDefinitions DefinitionsSection {..} = goDefs [] [] (toList _definitionsSection)
where
-- This functions goes through a section reserving definitions and
-- collecting inductive modules. It breaks a section when the
-- collected inductive modules are non-empty (there were some
-- inductive definitions) and the next definition is a function
-- definition.
-- `acc` holds the definitions in the section encountered up till
-- now (reversed)
-- `ms` holds the inductive modules for the inductive definitions in
-- the section up till now (reversed)
goDefs :: [Definition 'Parsed] -> [Module 'Parsed 'ModuleLocal] -> [Definition 'Parsed] -> Sem r' (DefinitionsSection 'Scoped)
goDefs acc ms = \case
-- if there were some inductive type definitions (the list `ms` of
-- corresponding inductive modules is not empty) and the next
-- definition is a function definition, then we need to break the
-- section and start a new one
def@DefinitionFunctionDef {} : defs
| not (null ms) -> do
eassert (not (null acc))
sec' <- goDefsSection (nonEmpty' (reverse acc))
ms' <- goInductiveModules (nonEmpty' (reverse ms))
next' <- goDefs [] [] (def : defs)
let next'' =
NonDefinitionsSection
{ _nonDefinitionsSection = ms',
_nonDefinitionsNext = Just next'
}
return
DefinitionsSection
{ _definitionsNext = Just next'',
_definitionsSection = sec'
}
def : defs -> do
-- `reserveDefinition` returns the created inductive module if
-- `def` is an inductive type definition
m <- reserveDefinition def
let ms' = maybeToList m ++ ms
goDefs (def : acc) ms' defs
[] -> do
eassert (not (null acc))
sec' <- goDefsSection (nonEmpty' (reverse acc))
next' <- case nonEmpty (reverse ms) of
Nothing -> mapM goNonDefinitions _definitionsNext
Just ms' ->
case _definitionsNext of
Nothing -> do
ms'' <- goInductiveModules ms'
return $
Just
NonDefinitionsSection
{ _nonDefinitionsSection = ms'',
_nonDefinitionsNext = Nothing
}
Just nd -> do
ms'' <- goInductiveModules ms'
nd' <- goNonDefinitions nd
return $ Just $ over nonDefinitionsSection (ms'' <>) nd'
return
DefinitionsSection
{ _definitionsNext = next',
_definitionsSection = sec'
}

-- checks the local inductive modules generated for the inductive type definitions
goInductiveModules :: NonEmpty (Module 'Parsed 'ModuleLocal) -> Sem r' (NonEmpty (NonDefinition 'Scoped))
goInductiveModules ms = do
ms' <- mapM checkLocalModule ms
return $ fmap NonDefinitionModule ms'

-- checks the definitions in a section
goDefsSection :: NonEmpty (Definition 'Parsed) -> Sem r' (NonEmpty (Definition 'Scoped))
goDefsSection defs = do
mapM_ scanAlias (defs ^.. each . _DefinitionSyntax . _SyntaxAlias)
mapM goDefinition defs

scanAlias :: AliasDef 'Parsed -> Sem r' ()
scanAlias a = do
aliasId <- gets (^?! scopeLocalSymbols . at (a ^. aliasDefName) . _Just . S.nameId)
Expand All @@ -1271,20 +1319,22 @@ checkSections sec = do
modify' (HashSet.insert i)
whenJustM (gets (^? scoperAlias . at i . _Just . preSymbolName . S.nameId)) go

reserveDefinition :: Definition 'Parsed -> Sem r' ()
reserveDefinition :: Definition 'Parsed -> Sem r' (Maybe (Module 'Parsed 'ModuleLocal))
reserveDefinition = \case
DefinitionSyntax s -> resolveSyntaxDef s
DefinitionFunctionDef d -> void (reserveFunctionSymbol d)
DefinitionAxiom d -> void (reserveAxiomSymbol d)
DefinitionProjectionDef d -> void (reserveProjectionSymbol d)
DefinitionInductive d -> reserveInductive d
DefinitionSyntax s -> resolveSyntaxDef s $> Nothing
DefinitionFunctionDef d -> void (reserveFunctionSymbol d) >> return Nothing
DefinitionAxiom d -> void (reserveAxiomSymbol d) >> return Nothing
DefinitionProjectionDef d -> void (reserveProjectionSymbol d) >> return Nothing
DefinitionInductive d -> Just <$> reserveInductive d
where
reserveInductive :: InductiveDef 'Parsed -> Sem r' ()
-- returns the module generated for the inductive definition
reserveInductive :: InductiveDef 'Parsed -> Sem r' (Module 'Parsed 'ModuleLocal)
reserveInductive d = do
i <- reserveInductiveSymbol d
constrs <- mapM reserveConstructor (d ^. inductiveConstructors)
void (defineInductiveModule (head constrs) d)
m <- defineInductiveModule (head constrs) d
ignoreFail (registerRecordType (head constrs) i)
return m
where
reserveConstructor :: ConstructorDef 'Parsed -> Sem r' S.Symbol
reserveConstructor c = do
Expand Down Expand Up @@ -1323,10 +1373,9 @@ checkSections sec = do
DefinitionInductive d -> DefinitionInductive <$> checkInductiveDef d
DefinitionProjectionDef d -> DefinitionProjectionDef <$> checkProjectionDef d

defineInductiveModule :: S.Symbol -> InductiveDef 'Parsed -> Sem r' ()
defineInductiveModule :: S.Symbol -> InductiveDef 'Parsed -> Sem r' (Module 'Parsed 'ModuleLocal)
defineInductiveModule headConstr i = do
m <- runReader (getLoc (i ^. inductiveName)) genModule
checkLocalModule m >>= output
runReader (getLoc (i ^. inductiveName)) genModule
where
genModule :: forall s'. (Members '[Reader Interval, Reader EntryPoint, State Scope] s') => Sem s' (Module 'Parsed 'ModuleLocal)
genModule = do
Expand Down
6 changes: 6 additions & 0 deletions src/Juvix/Compiler/Internal/Pretty/Base.hs
Original file line number Diff line number Diff line change
Expand Up @@ -293,6 +293,12 @@ instance PrettyCode MutualStatement where
StatementFunction d -> ppCode d
StatementAxiom d -> ppCode d

instance PrettyCode PreStatement where
ppCode = \case
PreInductiveDef d -> ppCode d
PreFunctionDef d -> ppCode d
PreAxiomDef d -> ppCode d

instance PrettyCode MutualBlock where
ppCode (MutualBlock funs) = ppMutual funs

Expand Down
5 changes: 5 additions & 0 deletions test/Internal/Eval/Positive.hs
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,11 @@ tests =
$(mkRelDir ".")
$(mkRelFile "Universe.juvix")
$(mkRelFile "out/Universe.out"),
PosTest
"Parameterized type axioms"
$(mkRelDir ".")
$(mkRelFile "TypeParamAxiom.juvix")
$(mkRelFile "out/TypeParamAxiom.out"),
PosTest
"Inductive type constructor"
$(mkRelDir ".")
Expand Down
12 changes: 12 additions & 0 deletions tests/Internal/positive/TypeParamAxiom.juvix
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
module TypeParamAxiom;

import Stdlib.Data.Nat open;

axiom X : Type;
axiom B : Type -> Type;

type A := mkA {
a : B X;
};

main : Nat := 0;
1 change: 1 addition & 0 deletions tests/Internal/positive/out/TypeParamAxiom.out
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0

0 comments on commit d59d02c

Please sign in to comment.