-
Notifications
You must be signed in to change notification settings - Fork 5.4k
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 scwq
instruction and "phantom" error in purity checks
#6432
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
ironcev
added
bug
Something isn't working
compiler
General compiler. Should eventually become more specific as the issue is triaged
compiler: ir
IRgen and sway-ir including optimization passes
compiler: frontend
Everything to do with type checking, control flow analysis, and everything between parsing and IRgen
compiler: ui
Mostly compiler messages
labels
Aug 18, 2024
Benchmark for d22e678Click to view benchmark
|
Benchmark for 89bfeb5Click to view benchmark
|
tritao
reviewed
Aug 19, 2024
tritao
approved these changes
Aug 19, 2024
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.
Nice to see this, new approach looks a lot more robust.
Benchmark for 7e4dbb2Click to view benchmark
|
IGI-111
approved these changes
Aug 19, 2024
Benchmark for fef8e43Click to view benchmark
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
bug
Something isn't working
compiler: frontend
Everything to do with type checking, control flow analysis, and everything between parsing and IRgen
compiler: ir
IRgen and sway-ir including optimization passes
compiler: ui
Mostly compiler messages
compiler
General compiler. Should eventually become more specific as the issue is triaged
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.
Description
This PR fixes #6320 and #6431 by:
scwq
instruction in purity check as a storage writing instruction.__entry
functions.Additionally, the PR:
#[storage]
attributes, which do not necessary represent actual storage access patterns.MetadataManager
to be able to store more then oneSpan
perMetadataIndex
. E.g., for a function, we can now store the span of the whole function declaration, but in addition, also the span pointing only to the function name.Note that having the purity tests at the IR level means that no purity errors will be reported on non-used functions. This was already the case before, since the complete set of tests was done at the IR level, and only two tests (inaccurately) at the type-checking phase, where errors would be reported even for the non-used functions. The purity guaranty is given for all the compiled code.
Closes #6320.
Closes #6431.
Demo
Before, we had two different error messages, rendered potentially several times per access violation.
Now, we have only one error message that points to the access violations and explains them.
Checklist
Breaking*
orNew Feature
labels where relevant.