-
Notifications
You must be signed in to change notification settings - Fork 19
codewriter parity, and the virtualizable array escape: the entry framestate was never copied #1087
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
Merged
Merged
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
5c1c508
jit: stop get_fielddescr_index_in double-counting before a nested struct
youknowone 6deed62
jit: drop a block's exception exits when its last operation is elided
youknowone a7a7aa6
jit: stop get_fielddescr_index_in double-counting before an inlined s…
youknowone dfabbb0
test: assert the surviving exit is the normal continuation
youknowone c21d884
jit: stop optimize_block treating an operation-less block as an elision
youknowone ab81a34
jit: number jitcode dump labels by first printed mention
youknowone 2513b7b
jit: gate virtualizable lowering on whether the field base is derefer…
youknowone 57bf4f0
interpreter: expand the locals_w accessors at the call site as macros
youknowone 078ffa0
ci: census the non-dereferenced PyFrame virtualizable-field projections
youknowone ffb611a
jit: copy the entry framestate, and sweep dead vars on every graph
youknowone dae0145
jit: scope the unconditional dead-var sweep to the end of lowering
youknowone 55231df
test: select the wrapper argument-slice length read by position, not …
youknowone 38501fd
ci: restore Charon executable permissions after artifact download
youknowone 23e4152
ci: gate the virtualizable projection census on the function set, not…
youknowone File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
Oops, something went wrong.
Oops, something went wrong.
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.
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.
📐 Maintainability & Code Quality | 🔵 Trivial | 💤 Low value
Use the pinned interpreter instead of the system
python3.Every other Python step in this job runs
${{ steps.cpython.outputs.python-path }}. This step runs barepython3, so it binds to the runner image's system interpreter rather than the pinned 3.14. The script uses only the standard library today, so behavior does not change; the inconsistency is what invites drift when the image's default moves.♻️ Proposed change
📝 Committable suggestion
🤖 Prompt for AI Agents