From 9715b813d39c1a68aa788d46922448912e82b8f6 Mon Sep 17 00:00:00 2001 From: YAMAMOTO Takashi Date: Fri, 12 Jul 2024 00:48:44 +0900 Subject: [PATCH] toywasm: regen for v54.0.0 ``` REF=034952e424600381b45d9d400735bfeb96fd5848 ./regen.sh ``` --- interpreters/toywasm/include/toywasm_config.h | 2 ++ interpreters/toywasm/include/toywasm_version.h | 2 +- interpreters/toywasm/src/toywasm_config.c | 3 +++ 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/interpreters/toywasm/include/toywasm_config.h b/interpreters/toywasm/include/toywasm_config.h index 7aef2a18f..26db93dab 100644 --- a/interpreters/toywasm/include/toywasm_config.h +++ b/interpreters/toywasm/include/toywasm_config.h @@ -32,6 +32,8 @@ #define TOYWASM_USE_SMALL_CELLS #define TOYWASM_USE_RESULTTYPE_CELLIDX #define TOYWASM_USE_LOCALTYPE_CELLIDX +#define TOYWASM_ENABLE_HEAP_TRACKING +#define TOYWASM_ENABLE_HEAP_TRACKING_PEAK #define TOYWASM_ENABLE_WRITER #define TOYWASM_ENABLE_WASM_SIMD #define TOYWASM_ENABLE_WASM_EXCEPTION_HANDLING diff --git a/interpreters/toywasm/include/toywasm_version.h b/interpreters/toywasm/include/toywasm_version.h index 444b0860e..f5120c547 100644 --- a/interpreters/toywasm/include/toywasm_version.h +++ b/interpreters/toywasm/include/toywasm_version.h @@ -21,6 +21,6 @@ #if !defined(_TOYWASM_VERSION_H) #define _TOYWASM_VERSION_H -#define TOYWASM_VERSION "v48.0.0" +#define TOYWASM_VERSION "v54.0.0" #endif /* !defined(_TOYWASM_VERSION_H) */ diff --git a/interpreters/toywasm/src/toywasm_config.c b/interpreters/toywasm/src/toywasm_config.c index 76e01372b..8c7915bd6 100644 --- a/interpreters/toywasm/src/toywasm_config.c +++ b/interpreters/toywasm/src/toywasm_config.c @@ -47,7 +47,10 @@ const char *const toywasm_config_string = "\tTOYWASM_USE_RESULTTYPE_CELLIDX = ON\n" "\tTOYWASM_USE_LOCALTYPE_CELLIDX = ON\n" "\tTOYWASM_PREALLOC_SHARED_MEMORY = OFF\n" +"\tTOYWASM_ENABLE_HEAP_TRACKING = ON\n" +"\tTOYWASM_ENABLE_HEAP_TRACKING_PEAK = ON\n" "\tTOYWASM_ENABLE_WRITER = ON\n" +"\tTOYWASM_MAINTAIN_EXPR_END = OFF\n" "\tTOYWASM_ENABLE_WASM_EXCEPTION_HANDLING = ON\n" "\tTOYWASM_EXCEPTION_MAX_CELLS = 4\n" "\tTOYWASM_ENABLE_WASM_SIMD = ON\n"