From a85be9781620696b79d0efd694605f608417098d Mon Sep 17 00:00:00 2001 From: Kris Selden Date: Tue, 6 Feb 2018 07:17:17 -0800 Subject: Update wasm2asm to generate "almost asm" if grow_memory is used (#1340) * Allow wasm2asm to generate "almost asm" If grow_memory, current_memory or export memory is used then generate "almost asm" with memory growth support. * Log reason for "almost asm" to stderr --- src/asmjs/shared-constants.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/asmjs/shared-constants.cpp') diff --git a/src/asmjs/shared-constants.cpp b/src/asmjs/shared-constants.cpp index f62be6168..09452805c 100644 --- a/src/asmjs/shared-constants.cpp +++ b/src/asmjs/shared-constants.cpp @@ -62,6 +62,7 @@ cashew::IString GLOBAL("global"), I32_TEMP("asm2wasm_i32_temp"), DEBUGGER("debugger"), USE_ASM("use asm"), + ALMOST_ASM("almost asm"), BUFFER("buffer"), ENV("env"), INSTRUMENT("instrument"), @@ -84,5 +85,7 @@ cashew::IString GLOBAL("global"), WASM_ROTL32("__wasm_rotl_i32"), WASM_ROTL64("__wasm_rotl_i64"), WASM_ROTR32("__wasm_rotr_i32"), - WASM_ROTR64("__wasm_rotr_i64"); + WASM_ROTR64("__wasm_rotr_i64"), + WASM_GROW_MEMORY("__wasm_grow_memory"), + WASM_CURRENT_MEMORY("__wasm_current_memory"); } -- cgit v1.2.3