Gaurav Gautam
Gaurav Gautam
I have this working now as well (although this is not pushed to a PR yet). You can make a tree view and add a javascript file, a c file...
@tylerhou In d8 its possible to print the bytecode for a specific function using the flag `--print-bytecode-filter` By default it is set to `--print-bytecode-filter="*"`
@jaredwy I see its possible to make v8 print out the machine code generated without having to run the functions by passing `--always-sparkplug`. But that is the baseline compiler. If...
@jakobkummerow thankyou for the reply. I will read the reply again carefully before I go further. However, for the security concerns, compiler explorer supports executing user code now. And one...
@jakobkummerow is turbolizer a supported tool from v8? I do not understand everything it is doing, but as far as I understand its just parsing the output of `--trace-turbo`. I...
@jakobkummerow thanks again for replying. I am using `--print-opt-code` in the pull request I have open right now. As per your recommendation I also considered using nodejs instead of a...
For anyone who might be wondering why the v8 (trunk) build is not generating any assembly code output, it seems there has been a change between v8 11.3 and trunk...
Someone named Benjamin Coenen on the wasmer slack channel showed me that we have to add `--features experimental-io-devices` flag in the Makefile of wasmer under `build-wasmer` and then compile it....