-
Notifications
You must be signed in to change notification settings - Fork 3.7k
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
[move-vm][closures] Refactor: move abilities and closure mask into core types #15668
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
⏱️ 58m total CI duration on this PR
|
16 tasks
This was referenced Jan 4, 2025
wrwg
force-pushed
the
wrwg/clos_file_format
branch
from
January 5, 2025 05:50
e45e16d
to
f92e339
Compare
wrwg
force-pushed
the
wrwg/clos_ability_move
branch
from
January 5, 2025 05:50
34517a1
to
7862e77
Compare
wrwg
force-pushed
the
wrwg/clos_file_format
branch
2 times, most recently
from
January 5, 2025 23:12
1a207d1
to
9688bde
Compare
wrwg
force-pushed
the
wrwg/clos_ability_move
branch
from
January 5, 2025 23:50
7862e77
to
ee49138
Compare
wrwg
force-pushed
the
wrwg/clos_file_format
branch
from
January 6, 2025 02:47
9688bde
to
f2effc9
Compare
wrwg
force-pushed
the
wrwg/clos_ability_move
branch
from
January 6, 2025 02:47
ee49138
to
9fbe74f
Compare
wrwg
requested review from
georgemitenkov,
runtian-zhou,
vgao1996,
vineethk and
ziaptos
January 8, 2025 06:16
wrwg
requested review from
davidiw,
movekevin,
banool,
gregnazario and
0xmaayan
as code owners
January 8, 2025 06:17
third_party/move/move-compiler-v2/src/pipeline/ability_processor.rs
Outdated
Show resolved
Hide resolved
third_party/move/move-ir-compiler/move-bytecode-source-map/src/source_map.rs
Outdated
Show resolved
Hide resolved
wrwg
force-pushed
the
wrwg/clos_file_format
branch
from
January 13, 2025 07:08
f2effc9
to
3c767c3
Compare
wrwg
force-pushed
the
wrwg/clos_ability_move
branch
2 times, most recently
from
January 14, 2025 02:32
a79fde9
to
719f728
Compare
wrwg
force-pushed
the
wrwg/clos_file_format
branch
from
January 16, 2025 06:43
3c767c3
to
0aa8d5d
Compare
wrwg
force-pushed
the
wrwg/clos_ability_move
branch
from
January 16, 2025 06:43
719f728
to
41d027e
Compare
wrwg
force-pushed
the
wrwg/clos_ability_move
branch
from
January 21, 2025 16:56
8140006
to
40f54be
Compare
wrwg
force-pushed
the
wrwg/clos_file_format
branch
from
January 22, 2025 03:19
58fb6ba
to
55a5551
Compare
wrwg
force-pushed
the
wrwg/clos_ability_move
branch
from
January 22, 2025 03:19
40f54be
to
691dc6e
Compare
wrwg
force-pushed
the
wrwg/clos_file_format
branch
from
January 22, 2025 06:23
55a5551
to
ffc2f2d
Compare
wrwg
force-pushed
the
wrwg/clos_ability_move
branch
from
January 22, 2025 06:23
691dc6e
to
14e0465
Compare
wrwg
force-pushed
the
wrwg/clos_file_format
branch
from
January 22, 2025 06:52
ffc2f2d
to
781423d
Compare
wrwg
force-pushed
the
wrwg/clos_ability_move
branch
from
January 22, 2025 06:52
14e0465
to
75db034
Compare
runtian-zhou
approved these changes
Jan 22, 2025
runtian-zhou
approved these changes
Jan 22, 2025
wrwg
force-pushed
the
wrwg/clos_file_format
branch
from
January 23, 2025 03:58
781423d
to
c9c8a92
Compare
wrwg
force-pushed
the
wrwg/clos_ability_move
branch
3 times, most recently
from
January 24, 2025 06:03
cb81217
to
86223e7
Compare
wrwg
force-pushed
the
wrwg/clos_file_format
branch
from
January 25, 2025 01:06
3b278ba
to
171ee27
Compare
wrwg
force-pushed
the
wrwg/clos_ability_move
branch
from
January 25, 2025 01:06
86223e7
to
41d50fa
Compare
…re types [PR 2/n vm closures] The type `AbilitySet` is required in `MoveTypeLayout`, and the type `ClosureMask` in `MoveValue`. This PRs moves those both types from file_format into the core types crate.
wrwg
force-pushed
the
wrwg/clos_ability_move
branch
from
January 25, 2025 02:56
41d50fa
to
76701d8
Compare
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
✅ Forge suite
|
✅ Forge suite
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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
[PR 2/n vm closures]
The type
AbilitySet
is required inMoveTypeLayout
, and the typeClosureMask
inMoveValue
. This PRs moves those both types from file_format into the core types crate.How Has This Been Tested?
Existing tests
Type of Change
Which Components or Systems Does This Change Impact?