jameysharp requested cfallin for a review on PR #8293.
jameysharp requested wasmtime-compiler-reviewers for a review on PR #8293.
jameysharp opened PR #8293 from jameysharp:cleanup-results
to bytecodealliance:main
:
In particular, remove support for detaching/attaching/appending instruction results.
The AliasAnalysis pass used detach_results, but leaked the detached ValueList; using clear_results instead is better.
The verifier's
test_printing_contextual_errors
needed to get the verifier to produce an error containing a pretty-printed instruction, and did so by appending too many results. Instead, failing to append any results gets a similar error out of the verifier, without requiring that we expose the easy-to-misuse append_result method. However,iconst
is not a suitable instruction for this version of the test because its result type is its controlling type, so failing to create any results caused assertion failures rather than the desired verifier error. I switched tof64const
which has a non-polymorphic type.The DFG's
aliases
test cleared both results of an instruction and then reattached one of them. Since we have access to DFG internals in these tests, it's easier to directly manipulate the relevant ValueList than to use these unsafe methods.The only other use of attach/append was in
make_inst_results_reusing
which decided which to use based on whether a particular result was supposed to reuse an existing value. Inlining both methods there revealed that they were nearly identical and could have most of their code factored out.While I was looking at uses of
DataFlowGraph::results
, I also simplified replace_with_aliases a little bit.
cfallin submitted PR review:
Thanks for this cleanup! A few things below but in general I'm always happy when we can shrink an API :-)
cfallin created PR review comment:
The bound
(dest, original)
names are slightly confusing given we're iterating overzip(dest_results, src_results)
-- can we pick eitheroriginal
orsrc
and use it in both places?
cfallin submitted PR review:
Thanks for this cleanup! A few things below but in general I'm always happy when we can shrink an API :-)
cfallin created PR review comment:
(I realize this is inlined code, but thoughts still follow:)
The
as u16
cast here is indeed protected by the assert above, but it's still something that catches my eye and takes a bit to understand safety thereof -- could we instead do thetry_from
here (overhead is the same in the common case of one result)?Also, it occurs to me that we want this check even in release builds (if other limits somehow let through a many-result function, we don't want to rely on fuzzing catching a wraparound-caused miscompile before users do); so either a
try_from().expect()
or a fullassert!
is probably what we want.
jameysharp updated PR #8293.
jameysharp commented on PR #8293:
Good suggestions, thanks!
jameysharp has enabled auto merge for PR #8293.
jameysharp merged PR #8293.
Last updated: Nov 22 2024 at 16:03 UTC