-
Notifications
You must be signed in to change notification settings - Fork 42
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
crucible-llvm-syntax: Concrete syntax for Crucible-LLVM #1113
Merged
langston-barrett
merged 25 commits into
GaloisInc:master
from
langston-barrett:lb/crucible-llvm-syntax
Nov 1, 2023
Merged
crucible-llvm-syntax: Concrete syntax for Crucible-LLVM #1113
langston-barrett
merged 25 commits into
GaloisInc:master
from
langston-barrett:lb/crucible-llvm-syntax
Nov 1, 2023
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
Will be helpful for crucible-llvm-syntax.
This commit introduces an instance of crucible-syntax's `ParserHooks` for the LLVM language extension. It's far from optimal or complete, but later commits can build on this foundation.
Also, use `ImportQualifiedPost` everywhere
Also, take an LLVM memory global variable as an argument. Not yet necessary, but would be if we were to ever support operations like loading and storing.
langston-barrett
force-pushed
the
lb/crucible-llvm-syntax
branch
from
October 31, 2023 20:39
d19dd07
to
100d1dc
Compare
langston-barrett
force-pushed
the
lb/crucible-llvm-syntax
branch
from
October 31, 2023 20:40
100d1dc
to
7b4c01e
Compare
RyanGlScott
reviewed
Nov 1, 2023
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks exciting!
If this is merged, I will make three follow-up issues:
|
kquick
reviewed
Nov 1, 2023
RyanGlScott
approved these changes
Nov 1, 2023
Co-authored-by: Ryan Scott <[email protected]>
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.
This is an MVP implementation of syntax for the LLVM language extension. This package would need additional operations to address the use-cases listed in #920, but provides a reasonable base to start building off. It has the additional benefit of giving an in-repo example of usage of the API introduced in #923.