diff options
author | Ali Mohammad Pur <mpfard@serenityos.org> | 2021-07-17 01:04:37 +0430 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-17 01:04:37 +0430 |
commit | 35394dbfaa23b44a293da85b20a63a10f73572c3 (patch) | |
tree | 152449f3fa61c4b32d70c6fb12896b32429aada2 /Userland/Libraries/LibWeb | |
parent | 3099a6bf2add35ac6a0c7ce4cbb6c794d6269d19 (diff) | |
download | serenity-35394dbfaa23b44a293da85b20a63a10f73572c3.zip |
LibWasm: Some more performance stuff (#8812)
* wasm: Don't try to print the function results if it traps
* LibWasm: Inline some very hot functions
These are mostly pretty small functions too, and they were about ~10%
of runtime.
* LibWasm+Everywhere: Make the instruction count limit configurable
...and enable it for LibWeb and test-wasm.
Note that `wasm` will not be limited by this.
* LibWasm: Remove a useless use of ScopeGuard
There are no multiple exit paths in that function, so we can just put
the ending logic right at the end of the function instead.
Diffstat (limited to 'Userland/Libraries/LibWeb')
-rw-r--r-- | Userland/Libraries/LibWeb/WebAssembly/WebAssemblyObject.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWeb/WebAssembly/WebAssemblyObject.cpp b/Userland/Libraries/LibWeb/WebAssembly/WebAssemblyObject.cpp index 96654696eb..d383994ad1 100644 --- a/Userland/Libraries/LibWeb/WebAssembly/WebAssemblyObject.cpp +++ b/Userland/Libraries/LibWeb/WebAssembly/WebAssemblyObject.cpp @@ -25,6 +25,7 @@ namespace Web::Bindings { WebAssemblyObject::WebAssemblyObject(JS::GlobalObject& global_object) : Object(*global_object.object_prototype()) { + s_abstract_machine.enable_instruction_count_limit(); } void WebAssemblyObject::initialize(JS::GlobalObject& global_object) |