-
-
Notifications
You must be signed in to change notification settings - Fork 852
feat[venom]: stack order analysis #4646
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
base: master
Are you sure you want to change the base?
feat[venom]: stack order analysis #4646
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #4646 +/- ##
==========================================
+ Coverage 92.80% 92.86% +0.06%
==========================================
Files 131 132 +1
Lines 18947 19132 +185
Branches 3289 3334 +45
==========================================
+ Hits 17583 17767 +184
Misses 933 933
- Partials 431 432 +1 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
vyper/venom/passes/dft.py
Outdated
|
||
while len(worklist) > 0: | ||
bb = worklist.popleft() | ||
stack_order = self.stack_order.handle_bbs(list(self.cfg.cfg_out(bb))) |
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.
does the liveness need to be recomputed for these bbs?
@@ -0,0 +1,345 @@ | |||
import pytest |
Check notice
Code scanning / CodeQL
Unused import Note test
#for op in reversed(liv): | ||
#if op not in target_stack: | ||
#target_stack.insert(0, op) |
Check notice
Code scanning / CodeQL
Commented-out code Note
What I did
inter bb stack analysis
How I did it
used the intra bb analysis (dft) as a base for the inter bb by propagating the information between the basic blocks
How to verify it
Commit message
Commit message for the final, squashed PR. (Optional, but reviewers will appreciate it! Please see our commit message style guide for what we would ideally like to see in a commit message.)
Description for the changelog
Cute Animal Picture