Earlier quoted context omitted.
Mike's primary complaint is bad register allocation. It is very important to keep the most important state consistently in registers. In my experience, compilers still struggle to do good register allocation in big and branchy functions. Even perfect branch prediction cannot solve the problem of unnecessary spills.
Does providing a hint to the compiler using the register keyword address the issue sufficiently?
Show HN: I wrote a WebAssembly Interpreter and Toolkit in C
21–30 of 31 posts
Re: Show HN: I wrote a WebAssembly Interpreter and Toolkit in C
#22Earlier quoted context omitted.
> I developed a unique way to write interpreters based on threaded code jumps and basic block versioning when I made MiniVM ( https://github.com/FastVM/minivm ). It was both larger and more dynamic than WebAssembly. I'd be very interested to read more about this. It looks like you are using "one big function" with computed goto ( https://github.com/FastVM/Web49/blob/main/src/interp/interp.... ). My experience working…
> My experience working on this problem led me to the same conclusion as Mike Pall, which is that compilers do not do well with this pattern Note that that message is from twelve years ago. A lot's changed since then, not just in compilers but in CPUs. Branch prediction is a lot better now.
Throw instruction counting into the mix, and you can even be faster than LuaJIT, although I'm not sure how it manages to screw up the counting so badly. I wrote a little bit about it here: https://medium.com/@fwsgonzo/time-to-first-instruction-53a04...
Re: Show HN: I wrote a WebAssembly Interpreter and Toolkit in C
#23Earlier quoted context omitted.
> My experience working on this problem led me to the same conclusion as Mike Pall, which is that compilers do not do well with this pattern Note that that message is from twelve years ago. A lot's changed since then, not just in compilers but in CPUs. Branch prediction is a lot better now.
Mike's primary complaint is bad register allocation. It is very important to keep the most important state consistently in registers. In my experience, compilers still struggle to do good register allocation in big and branchy functions. Even perfect branch prediction cannot solve the problem of unnecessary spills.
Re: Show HN: I wrote a WebAssembly Interpreter and Toolkit in C
#24Re: Show HN: I wrote a WebAssembly Interpreter and Toolkit in C
#25I'm really interested in a fast interpreter-only Wasm VM that can allow the host to share some of its memory with the VM.
Re: Show HN: I wrote a WebAssembly Interpreter and Toolkit in C
#26I made Web49 because there are not many good tools for WebAssembly out there. WABT is close, but the interpreter is too slow and the tools megabytes in size each. Wasm3 is a bit faster but only contains an interpreter, nothing else. Tooling for WebAssembly is held mostly by the browser vendors. It is such a nice format to work with when one removes all the fluff. WebAssembly tooling should not take seconds to do what…
> I developed a unique way to write interpreters based on threaded code jumps and basic block versioning when I made MiniVM ( https://github.com/FastVM/minivm ). It was both larger and more dynamic than WebAssembly. I'd be very interested to read more about this. It looks like you are using "one big function" with computed goto ( https://github.com/FastVM/Web49/blob/main/src/interp/interp.... ). My experience working…
As compared to hand-written assembly or the tailcall technique you describe. But (for the benefit of onlookers) a threaded switch, especially using (switch-like) computed gotos, is still more performant than a traditional function dispatch table.
Has there been any movement in GCC wrt the tailcalls feature?
One of the limitations with computed gotos is the inability to derive the address of a label from outside the function. You always end up with some amount of superfluous conditional code for selecting the address inside the function, or indexing through a table. Several years ago when exploring this space I discovered a hack, albeit it only works with GCC (IIRC), at least as of ~10 years ago. GCC supports inline function definitions, inline functions have visibility to goto labels (notwithstanding that you're not supposed to make use of them), and most surprisingly GCC also supports attaching __attribute__((constructor)) to inline function definitions. This means you can export a map of goto labels that can be used to initialize VM data structures, permitting (in theory) more efficient direct threading.
The tailcall technique is a much more sane and profitable approach, of course.
Re: Show HN: I wrote a WebAssembly Interpreter and Toolkit in C
#27Any ideas on why miniwasm performs better on all the benchmarks except "trap," on which it performs decidedly worse?
The benchmarks were run on MacOS, and actually execute an interrupt for debugging, MacOS then checks if the process is being debugged. Wasm3 just exit(1) and prints a message. And as to why the rest are faster, I spent much time optimizing the interpreter and learning what the best way to write interpreters is. Its mostly jump threading and Mixed Data.
Nice work!
Re: Show HN: I wrote a WebAssembly Interpreter and Toolkit in C
#28Earlier quoted context omitted.
> I developed a unique way to write interpreters based on threaded code jumps and basic block versioning when I made MiniVM ( https://github.com/FastVM/minivm ). It was both larger and more dynamic than WebAssembly. I'd be very interested to read more about this. It looks like you are using "one big function" with computed goto ( https://github.com/FastVM/Web49/blob/main/src/interp/interp.... ). My experience working…
> that compilers do not do well with this pattern As compared to hand-written assembly or the tailcall technique you describe. But (for the benefit of onlookers) a threaded switch, especially using (switch-like) computed gotos, is still more performant than a traditional function dispatch table. Has there been any movement in GCC wrt the tailcalls feature? One of the limitations with computed gotos is the inability t…
#define LABEL_START(TAG) ns_##TAG : __asm__(".p2align 3\n.Lstart_" #TAG ":" :::)
#define LABEL_END(TAG) __asm__(".Lend_" #TAG ":\n")
#define PROLOGUE(TAG) LABEL_START(TAG); ip++
#define EPILOGUE(TAG) __asm__ goto("\tjmpq %0\n" "\t.Lend_" #TAG ":\n"::"r"((void)decode(ip))::ALL_LABELS())
Followed by opcodes implemented in this fashion:
{
PROLOGUE(add);
{
apply_opcode_ADD(&s->data_stack);
}
EPILOGUE(add);
}
Because the labels are defined in assembly, not in C, accessing them from outside the function is straightforward. I wrote a whole load of these at some point, there's probably a version of those macros somewhere that compiles to jumps through a C computed goto as well.Re: Show HN: I wrote a WebAssembly Interpreter and Toolkit in C
#29Earlier quoted context omitted.
Mike's primary complaint is bad register allocation. It is very important to keep the most important state consistently in registers. In my experience, compilers still struggle to do good register allocation in big and branchy functions. Even perfect branch prediction cannot solve the problem of unnecessary spills.
Does providing a hint to the compiler using the register keyword address the issue sufficiently?
The 'register' is indeed largely ignored, but it has the additional somewhat documented meaning of 'when this variable goes into inline asm, it needs to be in that register'. In between asm blocks it can be elsewhere - stack or whatever - but it still gives the regalloc a really clear guide to work from.
Re: Show HN: I wrote a WebAssembly Interpreter and Toolkit in C
#30Earlier quoted context omitted.
Does providing a hint to the compiler using the register keyword address the issue sufficiently?
Nearly. You need register and to also pass them into (potentially no-op) inline asm. `register int v("eax")` iirc, but it's been years since I did this. The 'register' is indeed largely ignored, but it has the additional somewhat documented meaning of 'when this variable goes into inline asm, it needs to be in that register'. In between asm blocks it can be elsewhere - stack or whatever - but it still gives the regal…
[1] https://gcc.gnu.org/onlinedocs/gcc/Local-Register-Variables....