github-actions[bot] commented on Issue #1869:
Subscribe to Label Action
cc @bnjbvr
<details>
This issue or pull request has been labeled: "cranelift", "cranelift:area:aarch64", "cranelift:meta"Thus the following users have been cc'd because of the following labels:
- bnjbvr: cranelift
To subscribe or unsubscribe from this label, edit the <code>.github/subscribe-to-label.json</code> configuration file.
Learn more.
</details>
bnjbvr commented on Issue #1869:
Just for context: the reason why I added a new instruction, rather than creating manually the blocks and use the
resumable_trap
instruction is that when lowering wasm to clif, we can't mutate the CFG in place (we can't create new blocks). Allow mutation of the CFG at this place would be nice in the future, and could allow new things (of the same kind that the IR template proposal would allow), but this is out of scope for what appears to be really a bug fix here.
bnjbvr commented on Issue #1869:
Fuzz-target failure is caused by https://github.com/XAMPPRocky/remove_dir_all/issues/19.
bnjbvr edited a comment on Issue #1869:
Fuzz-target failure is being discussed in https://github.com/XAMPPRocky/remove_dir_all/issues/19.
fitzgen commented on Issue #1869:
https://github.com/bytecodealliance/wasmtime/blob/master/cranelift/codegen/src/regalloc/safepoint.rs#L54 should probably switch to something like
if pos.func.dfg[inst].is_resumable_trap() { ... }
that returns true for both
resumable_trap
andresumable_trapnz
.
bnjbvr commented on Issue #1869:
@fitzgen Thanks! Added something to that effect. (It didn't seem worth to make it a flag visible from the meta crate, but let me know if you think it's better (maybe for consistency? probably the other way around would be better imo))
fitzgen commented on Issue #1869:
(It didn't seem worth to make it a flag visible from the meta crate, but let me know if you think it's better (maybe for consistency? probably the other way around would be better imo))
Not 100% sure what you're getting at here, but the changes in this PR look great to me!
Last updated: Nov 22 2024 at 16:03 UTC