Comment on Wasm3 compiles itself (using LLVM/Clang compiled to WASM)parentComments−moonchild5ySince it compiles using llvm, what's the reason for the discrepancy?Lost information about e.g. aliasing?−Others5yBounds checking, dynamic dispatch is more expensive, wasm semantics have no undefined behavior to exploit for optimizations. And there is bloat in the process. I’m sure losing information effects things as well
Comments
Since it compiles using llvm, what's the reason for the discrepancy?
Lost information about e.g. aliasing?
Bounds checking, dynamic dispatch is more expensive, wasm semantics have no undefined behavior to exploit for optimizations. And there is bloat in the process. I’m sure losing information effects things as well