A few random things I saw while investigating https://crbug.com/472729752; PTAL.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
LGTM
size_t split_index = types.size() / 2;Amazing engineering. 😄
Note that I seem to have copied the previous thing over to two new places, `EmitCallAndReturnValues` and `EmitCallAndReturnValues` have the same modulo thing to create two subvectors from one input vector of types...
Could you update those places as well? (See `uint32_t returns_split`)
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
size_t split_index = types.size() / 2;Amazing engineering. 😄
Note that I seem to have copied the previous thing over to two new places, `EmitCallAndReturnValues` and `EmitCallAndReturnValues` have the same modulo thing to create two subvectors from one input vector of types...
Could you update those places as well? (See `uint32_t returns_split`)
Aren't those places where we really want to split randomly?
This place here actually wants to split in two roughly equally sized halves, which is a different goal.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
size_t split_index = types.size() / 2;Clemens BackesAmazing engineering. 😄
Note that I seem to have copied the previous thing over to two new places, `EmitCallAndReturnValues` and `EmitCallAndReturnValues` have the same modulo thing to create two subvectors from one input vector of types...
Could you update those places as well? (See `uint32_t returns_split`)
Aren't those places where we really want to split randomly?
This place here actually wants to split in two roughly equally sized halves, which is a different goal.
Ah sorry, yes, I searched for the pattern and found it in other places, you're right, this is unrelated. I should've checked more carefully.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
[wasm][fuzzer] A few minor cleanups
- use type `int` more consistently,
- split types in half when saying so, and
- fix a probability and the comment to match reality.
R=mlie...@chromium.org
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |