diff options
author | Alon Zakai <alonzakai@gmail.com> | 2016-04-22 22:01:43 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2016-04-26 19:50:14 -0700 |
commit | d9096704dfa84aea94bb6ac2ffa02d88fa546bfa (patch) | |
tree | 817992a1e811af71087a228b20f3c35df9485b96 /src/asmjs | |
parent | 7fd8aac5084223c48901ca20f9d233e9764d536a (diff) | |
download | binaryen-d9096704dfa84aea94bb6ac2ffa02d88fa546bfa.tar.gz binaryen-d9096704dfa84aea94bb6ac2ffa02d88fa546bfa.tar.bz2 binaryen-d9096704dfa84aea94bb6ac2ffa02d88fa546bfa.zip |
add an ArenaVector for internal array allocations in expression nodes
Diffstat (limited to 'src/asmjs')
-rw-r--r-- | src/asmjs/asm_v_wasm.cpp | 30 |
1 files changed, 6 insertions, 24 deletions
diff --git a/src/asmjs/asm_v_wasm.cpp b/src/asmjs/asm_v_wasm.cpp index 317a8b625..3e7e0241e 100644 --- a/src/asmjs/asm_v_wasm.cpp +++ b/src/asmjs/asm_v_wasm.cpp @@ -71,24 +71,6 @@ std::string getSig(Function *func) { return ret; } -std::string getSig(CallBase *call) { - std::string ret; - ret += getSig(call->type); - for (auto operand : call->operands) { - ret += getSig(operand->type); - } - return ret; -} - -std::string getSig(WasmType result, const ExpressionList& operands) { - std::string ret; - ret += getSig(result); - for (auto operand : operands) { - ret += getSig(operand->type); - } - return ret; -} - WasmType sigToWasmType(char sig) { switch (sig) { case 'i': return i32; @@ -100,22 +82,22 @@ WasmType sigToWasmType(char sig) { } } -FunctionType sigToFunctionType(std::string sig) { - FunctionType ret; - ret.result = sigToWasmType(sig[0]); +FunctionType* sigToFunctionType(std::string sig, MixedArena& allocator) { + auto ret = allocator.alloc<FunctionType>(); + ret->result = sigToWasmType(sig[0]); for (size_t i = 1; i < sig.size(); i++) { - ret.params.push_back(sigToWasmType(sig[i])); + ret->params.push_back(sigToWasmType(sig[i])); } return ret; } -FunctionType* ensureFunctionType(std::string sig, Module* wasm, MixedArena& allocator) { +FunctionType* ensureFunctionType(std::string sig, Module* wasm) { cashew::IString name(("FUNCSIG$" + sig).c_str(), false); if (wasm->checkFunctionType(name)) { return wasm->getFunctionType(name); } // add new type - auto type = allocator.alloc<FunctionType>(); + auto type = wasm->allocator.alloc<FunctionType>(); type->name = name; type->result = sigToWasmType(sig[0]); for (size_t i = 1; i < sig.size(); i++) { |