diff options
Diffstat (limited to 'src/asm_v_wasm.h')
-rw-r--r-- | src/asm_v_wasm.h | 28 |
1 files changed, 1 insertions, 27 deletions
diff --git a/src/asm_v_wasm.h b/src/asm_v_wasm.h index 95b4cbbca..d7e2e5b24 100644 --- a/src/asm_v_wasm.h +++ b/src/asm_v_wasm.h @@ -28,19 +28,8 @@ Type asmToWasmType(AsmType asmType); AsmType wasmToAsmType(Type type); char getSig(Type type); - -template<typename ListType> -std::string getSig(const ListType& params, Type result) { - std::string ret; - ret += getSig(result); - for (auto param : params) { - ret += getSig(param); - } - return ret; -} - -std::string getSig(const FunctionType* type); std::string getSig(Function* func); +std::string getSig(Type results, Type params); template<typename T, typename std::enable_if<std::is_base_of<Expression, T>::value>::type* = @@ -74,21 +63,6 @@ std::string getSigFromStructs(Type result, const ListType& operands) { return ret; } -Type sigToType(char sig); - -FunctionType sigToFunctionType(const std::string& sig); - -FunctionType* -ensureFunctionType(const std::string& sig, Module* wasm, Name name = Name()); - -template<typename ListType> -FunctionType* ensureFunctionType(const ListType& params, - Type result, - Module* wasm, - Name name = Name()) { - return ensureFunctionType(getSig(params, result), wasm, name); -} - // converts an f32 to an f64 if necessary Expression* ensureDouble(Expression* expr, MixedArena& allocator); |