-
Notifications
You must be signed in to change notification settings - Fork 853
[Stack Switching] wasm-ctor-eval: Do not try to serialize continuations #7877
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 2 commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
cfea6e8
fix
kripken 5ffa86e
fix
kripken 7cbc6c6
Update test/lit/ctor-eval/cont-noserial.wast
kripken 226291c
clarify.export
kripken 60211e8
test that we keep the function without the export, if needed
kripken be2817a
test
kripken 4af4b03
test
kripken 49bb3c4
test
kripken 638d13d
Update test/lit/ctor-eval/cont-noserial.wast
kripken 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,57 @@ | ||
| ;; NOTE: Assertions have been generated by update_lit_checks.py --all-items and should not be edited. | ||
|
|
||
| ;; Test that we do not error on trying to serialize continuations (which cannot | ||
| ;; be serialized). When we do not --kept-exports, we can at least optimize away | ||
| ;; that export, since we don't need to serialize anything when it doesn't stick | ||
|
kripken marked this conversation as resolved.
Outdated
|
||
| ;; around. | ||
|
|
||
| ;; RUN: foreach %s %t wasm-ctor-eval --ctors=test --kept-exports=test -all --ignore-external-input -S -o - | filecheck %s | ||
| ;; RUN: foreach %s %t wasm-ctor-eval --ctors=test -all --ignore-external-input -S -o - | filecheck %s --check-prefix=NOKEEP | ||
|
|
||
| (module | ||
| ;; CHECK: (type $func (func)) | ||
| ;; NOKEEP: (type $func (func)) | ||
| (type $func (func)) | ||
| ;; CHECK: (type $cont (cont $func)) | ||
| (type $cont (cont $func)) | ||
|
|
||
| ;; CHECK: (type $2 (func (result (ref $cont)))) | ||
|
|
||
| ;; CHECK: (elem declare func $func) | ||
|
|
||
| ;; CHECK: (export "export" (func $export)) | ||
|
|
||
| ;; CHECK: (export "test" (func $test)) | ||
| (export "test" (func $test)) | ||
|
|
||
| ;; CHECK: (func $func (type $func) | ||
| ;; CHECK-NEXT: (nop) | ||
| ;; CHECK-NEXT: ) | ||
| (func $func | ||
| ) | ||
|
|
||
| ;; CHECK: (func $test (type $2) (result (ref $cont)) | ||
| ;; CHECK-NEXT: (cont.new $cont | ||
| ;; CHECK-NEXT: (ref.func $func) | ||
| ;; CHECK-NEXT: ) | ||
| ;; CHECK-NEXT: ) | ||
| (func $test (result (ref $cont)) | ||
| (cont.new $cont | ||
| (ref.func $func) | ||
| ) | ||
| ) | ||
|
tlively marked this conversation as resolved.
|
||
|
|
||
| ;; CHECK: (func $export (type $func) | ||
| ;; CHECK-NEXT: (nop) | ||
| ;; CHECK-NEXT: ) | ||
| ;; NOKEEP: (export "export" (func $export)) | ||
|
|
||
| ;; NOKEEP: (func $export (type $func) | ||
| ;; NOKEEP-NEXT: (nop) | ||
| ;; NOKEEP-NEXT: ) | ||
| (func $export (export "export") | ||
| ;; A dummy export, just to avoid the NOKEEP case ending up with a blank | ||
| ;; module and no CHECKs. | ||
| ) | ||
| ) | ||
|
|
||
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.
It would be good to test the non-serializable defining global, parameter, and local separately.
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.
Added specific tests.