Skip to content

Conversation

HodanPlodky
Copy link
Collaborator

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

Put a link to a cute animal picture inside the parenthesis-->

Copy link

codecov bot commented May 19, 2025

Codecov Report

❌ Patch coverage is 96.36364% with 6 lines in your changes missing coverage. Please review.
✅ Project coverage is 93.22%. Comparing base (2a56308) to head (9b5561c).

Files with missing lines Patch % Lines
vyper/venom/analysis/stack_order.py 95.83% 5 Missing ⚠️
vyper/venom/passes/single_use_expansion.py 75.00% 0 Missing and 1 partial ⚠️
Additional details and impacted files
@@            Coverage Diff             @@
##           master    #4646      +/-   ##
==========================================
+ Coverage   93.20%   93.22%   +0.02%     
==========================================
  Files         131      132       +1     
  Lines       19169    19322     +153     
  Branches     3292     3330      +38     
==========================================
+ Hits        17866    18013     +147     
- Misses        884      889       +5     
- Partials      419      420       +1     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.


while len(worklist) > 0:
bb = worklist.popleft()
stack_order = self.stack_order.handle_bbs(list(self.cfg.cfg_out(bb)))
Copy link
Member

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?

@HodanPlodky HodanPlodky marked this pull request as ready for review August 13, 2025 13:38
self.stack.append(src)
elif src in next_live:
self.stack.append(src)
if src in self.stack:
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Always true

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants