diff options
author | Alon Zakai <alonzakai@gmail.com> | 2016-04-27 10:43:21 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2016-04-27 16:59:17 -0700 |
commit | 127f9688cc26ab362dabadac5494af23cd78ac8b (patch) | |
tree | 14d88e021164cb784a7bb9d66bf9d0974c94c2cd /src/asmjs/asm_v_wasm.cpp | |
parent | 46f99e692014e714ffeed7f3db870ffd12bf077c (diff) | |
download | binaryen-127f9688cc26ab362dabadac5494af23cd78ac8b.tar.gz binaryen-127f9688cc26ab362dabadac5494af23cd78ac8b.tar.bz2 binaryen-127f9688cc26ab362dabadac5494af23cd78ac8b.zip |
allocate only expressions in arenas - functions, imports, exports, function types, can more simply be held by unique_ptrs on the owning module. this avoids need to coordinate arena allocation for their elements, and only the far more plentiful expression nodes are a perf factor anyhow
Diffstat (limited to 'src/asmjs/asm_v_wasm.cpp')
-rw-r--r-- | src/asmjs/asm_v_wasm.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/asmjs/asm_v_wasm.cpp b/src/asmjs/asm_v_wasm.cpp index 3e7e0241e..14a7fbdae 100644 --- a/src/asmjs/asm_v_wasm.cpp +++ b/src/asmjs/asm_v_wasm.cpp @@ -82,8 +82,8 @@ WasmType sigToWasmType(char sig) { } } -FunctionType* sigToFunctionType(std::string sig, MixedArena& allocator) { - auto ret = allocator.alloc<FunctionType>(); +FunctionType* sigToFunctionType(std::string sig) { + auto ret = new FunctionType; ret->result = sigToWasmType(sig[0]); for (size_t i = 1; i < sig.size(); i++) { ret->params.push_back(sigToWasmType(sig[i])); @@ -97,7 +97,7 @@ FunctionType* ensureFunctionType(std::string sig, Module* wasm) { return wasm->getFunctionType(name); } // add new type - auto type = wasm->allocator.alloc<FunctionType>(); + auto type = new FunctionType; type->name = name; type->result = sigToWasmType(sig[0]); for (size_t i = 1; i < sig.size(); i++) { |