Stream: git-wasmtime

Topic: wasmtime / PR #6381 wasmtime: Refactor compilation orches...


view this post on Zulip Wasmtime GitHub notifications bot (May 15 2023 at 21:54):

fitzgen requested wasmtime-core-reviewers for a review on PR #6381.

view this post on Zulip Wasmtime GitHub notifications bot (May 15 2023 at 21:54):

fitzgen opened PR #6381 from fitzgen:refactor-parallel-compilation to bytecodealliance:main:

Before, the acts of discovering what we need to compile and actually compiling those things was intertwined. This meant that we weren't fanning out as wide as we could in parallel compilation because we would do things like compile all Wasm functions in parallel, and all wasm-to-native trampolines in parallel, but not compile those two groups in parallel with each other.

Now we split discovery and compilation into separate phases: first we discover all the work we need to do, then we do it all in parallel at once.

<!--
Please make sure you include the following information:

Our development process is documented in the Wasmtime book:
https://docs.wasmtime.dev/contributing-development-process.html

Please ensure all communication follows the code of conduct:
https://github.com/bytecodealliance/wasmtime/blob/main/CODE_OF_CONDUCT.md
-->

view this post on Zulip Wasmtime GitHub notifications bot (May 15 2023 at 21:54):

fitzgen requested alexcrichton for a review on PR #6381.

view this post on Zulip Wasmtime GitHub notifications bot (May 16 2023 at 15:15):

alexcrichton created PR review comment:

I'm a bit scared that at some point during development an i132 was used

view this post on Zulip Wasmtime GitHub notifications bot (May 16 2023 at 15:29):

alexcrichton submitted PR review:

Nice! I really like how this turned out :+1:

view this post on Zulip Wasmtime GitHub notifications bot (May 16 2023 at 15:29):

alexcrichton submitted PR review:

Nice! I really like how this turned out :+1:

view this post on Zulip Wasmtime GitHub notifications bot (May 16 2023 at 15:29):

alexcrichton created PR review comment:

These symbol_name functions may be best to move here now since they should only be called from this location?

view this post on Zulip Wasmtime GitHub notifications bot (May 16 2023 at 15:29):

alexcrichton created PR review comment:

No changes necessary, but I've found that [expr] works nowadays for "iterate this thing once" which I think reads pretty well too

view this post on Zulip Wasmtime GitHub notifications bot (May 16 2023 at 15:29):

alexcrichton created PR review comment:

This'll want a gate that there's only one translation because otherwise appending dwarf multiple times will end up with something corrupt that nothing can read

view this post on Zulip Wasmtime GitHub notifications bot (May 16 2023 at 15:29):

alexcrichton created PR review comment:

Perhaps assert that self.indices is empty just above this?

view this post on Zulip Wasmtime GitHub notifications bot (May 16 2023 at 18:11):

fitzgen created PR review comment:

Oh nice, I always forget that arrays are useful now.

view this post on Zulip Wasmtime GitHub notifications bot (May 16 2023 at 18:11):

fitzgen created PR review comment:

Maybe? I kind of like them as methods on the thing.

view this post on Zulip Wasmtime GitHub notifications bot (May 16 2023 at 18:33):

fitzgen updated PR #6381.

view this post on Zulip Wasmtime GitHub notifications bot (May 16 2023 at 18:34):

fitzgen has enabled auto merge for PR #6381.

view this post on Zulip Wasmtime GitHub notifications bot (May 16 2023 at 19:24):

fitzgen merged PR #6381.


Last updated: Nov 22 2024 at 16:03 UTC