-
Notifications
You must be signed in to change notification settings - Fork 36
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
New backend (elpi 2.0) #269
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gares
changed the title
delay compiling to DBL as long as possible
New backend (elpi 2.0)
Nov 14, 2024
This was referenced Nov 15, 2024
Scope term add impl constructor
…uted_functional_preds to checked_compilation_unit
[functionality] add functionality field to program
[determinacy] refactor determinacy checker (working with unique type …
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The new backend reorganizes compilation passes so to allocate integers for global constants late, at unit linking time, and avoid relocations (of previously allocated constants). This speeds up compilation substantially. Also the index is built incrementally as units are linked in, reducing startup time (the optimize step is now almost a no-op). A new type checker runs on all units as they are compiled, before spilling that can now use the types computed by the checker (although the current code is still as brittle as before w.r.t. polarity). Types are checked as well. The AST contains locations, and the type checker reports errors with precision. Quotations are expanded early and must produce a new ScopedTerm data type that is still based on names, but with scopes, so that names of different languages don't conflict. Macros are expanded early and are now hygienic (some renaming may be needed and may show up in type errors later on). The HTML printer and elpi-checker.elpi are gone, as well as the API to quote elpi's syntax. An experimental determinacy checker is also part of the backend (off for now).