hungryzzz opened issue #6213:
Hi, I want to dump the compiled machine code but I don't find the related option.
How could I do it? Thank you!
alexcrichton commented on issue #6213:
There's no "official" way to do this but for debugging what you can do is call
Module::serialize
(orwasmtime compile
) and then runobjdump -S
on the output. While not "officially supported" we're unlikely to change that since Wasmtime developers themselves frequently use it for debugging.
alexcrichton closed issue #6213:
Hi, I want to dump the compiled machine code but I don't find the related option.
How could I do it? Thank you!
jameysharp commented on issue #6213:
Depending on what you need it for, you might also find
wasmtime explore
helpful; it'll produce an HTML-format dump correlating wasm instructions with the machine code that they were compiled into.
alexcrichton commented on issue #6213:
Oh thank you @jameysharp I keep forgetting to mention that as well! And it's probably a lot more useful than
objdump
to bood!
Last updated: Nov 22 2024 at 17:03 UTC