-
Notifications
You must be signed in to change notification settings - Fork 19
jit: preserve box identity across short preambles #1200
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
20 commits
Select commit
Hold shift + click to select a range
080a38a
jit: stop forcing the appended value's box in the list-append fold
youknowone d3b2285
jit: preserve box identity across short preambles
youknowone b8b8c24
jit: lazily load frozen indirect call targets
youknowone f002860
jit: load the build-time descr pool per index instead of as one table
youknowone b2bda7d
descr: mint the ExecutionContext group as a non-GC-managed struct
youknowone d080fcd
optimizeopt: skip GUARD_GC_TYPE when the descr names no type id
youknowone 557e3ba
majit: bind a rebuilt short preamble's inputarg domain for the next r…
youknowone 5d9901a
bench: re-record the synth jit-stats this branch moves
youknowone 4211648
bench: restore the three small jit-stats deltas to their committed va…
youknowone 01b22f8
gate-triage: register PYRE_DESCR_DEMAND, and re-record four CI-confir…
youknowone e058c70
optimizeopt: resolve a layout guard's runtime tid, or decline the sho…
youknowone c462db1
optimizeopt: assert import_state's source/target on box identity
youknowone ccabf45
jit: keep the first index for a folded runtime fnaddr
youknowone 6f1d5e8
bench: re-record the six wasm jit-stats baselines this branch moves
youknowone 1093a27
descr: mint the four PyCode field descrs as one group
youknowone 404fbba
majit: log the pre-optimization trace under jit-log-noopt
youknowone c1ea97b
majit: cache ordinary heap fields read off a virtualizable receiver
youknowone 8a3f267
bench: re-record twelve synthetic jitstats baselines
youknowone 8467699
bench: re-record eleven synthetic wasm jitstats baselines
youknowone ce706d1
bench: correct three synthetic wasm jitstats baselines
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.
Include this new storage in
PtrInfo::all_items().PtrInfo::setfieldcan now put an ordinary field value here, butOptUnroll::expand_infousesall_items()to discover and recursively export nested values, and that method still returns an empty vector forVirtualizable. If such a field contains a virtual object at a loop boundary, the next iteration can recover its operand from the field cache without importing the object'sPtrInfo, allowing an unmaterialized virtual to be treated as a concrete reference. Upstream has one_fieldscollection exposed verbatim byall_items(), so the split storage must preserve that behavior.AGENTS.md reference: AGENTS.md:L288-L290
Useful? React with 👍 / 👎.