diff --git a/.bazelrc b/.bazelrc index a74e3e350c02e..20dafa1ef14bb 100644 --- a/.bazelrc +++ b/.bazelrc @@ -28,6 +28,7 @@ build --action_env=PATH # Basic ASAN/UBSAN that works for gcc build:asan --action_env=BAZEL_LINKLIBS= build:asan --action_env=BAZEL_LINKOPTS=-lstdc++:-lm +build:asan --action_env=ENVOY_ASAN=1 build:asan --define ENVOY_CONFIG_ASAN=1 build:asan --copt -fsanitize=address,undefined build:asan --linkopt -fsanitize=address,undefined @@ -59,6 +60,7 @@ build:macos-asan --copt -DGRPC_BAZEL_BUILD build:macos-asan --dynamic_mode=off # Clang TSAN +build:clang-tsan --action_env=ENVOY_TSAN=1 build:clang-tsan --define ENVOY_CONFIG_TSAN=1 build:clang-tsan --copt -fsanitize=thread build:clang-tsan --linkopt -fsanitize=thread @@ -70,6 +72,7 @@ build:clang-tsan --copt -DEVENT__DISABLE_DEBUG_MODE # Clang MSAN - broken today since we need to rebuild lib[std]c++ and external deps with MSAN # support (see https://github.com/envoyproxy/envoy/issues/443). +build:clang-msan --action_env=ENVOY_MSAN=1 build:clang-msan --define ENVOY_CONFIG_MSAN=1 build:clang-msan --copt -fsanitize=memory build:clang-msan --linkopt -fsanitize=memory @@ -80,6 +83,7 @@ build:clang-msan --copt -fsanitize-memory-track-origins=2 # TODO(cmluciano) fix and re-enable _LIBCPP_VERSION testing for TCMALLOC in Envoy::Stats::TestUtil::hasDeterministicMallocStats # and update stats_integration_test with appropriate m_per_cluster value build:libc++ --action_env=CXXFLAGS=-stdlib=libc++ +build:libc++ --action_env=LDFLAGS=-stdlib=libc++ build:libc++ --action_env=BAZEL_CXXOPTS=-stdlib=libc++ build:libc++ --action_env=BAZEL_LINKLIBS=-l%:libc++.a:-l%:libc++abi.a:-lm build:libc++ --host_linkopt=-fuse-ld=lld @@ -105,6 +109,8 @@ build:rbe-toolchain-clang-libc++ --config=rbe-toolchain build:rbe-toolchain-clang-libc++ --crosstool_top=@rbe_ubuntu_clang_libcxx//cc:toolchain build:rbe-toolchain-clang-libc++ --extra_toolchains=@rbe_ubuntu_clang_libcxx//config:cc-toolchain build:rbe-toolchain-clang-libc++ --action_env=CC=clang --action_env=CXX=clang++ --action_env=PATH=/usr/sbin:/usr/bin:/sbin:/bin:/usr/lib/llvm-8/bin +build:rbe-toolchain-clang-libc++ --action_env=CXXFLAGS=-stdlib=libc++ +build:rbe-toolchain-clang-libc++ --action_env=LDFLAGS=-stdlib=libc++ build:rbe-toolchain-gcc --config=rbe-toolchain build:rbe-toolchain-gcc --crosstool_top=@rbe_ubuntu_gcc//cc:toolchain diff --git a/.circleci/config.yml b/.circleci/config.yml index 401c6ca19c34b..95d19d3dbf23f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -73,10 +73,12 @@ jobs: macos: macos: - xcode: "10.2.1" + xcode: "11.0.0" environment: BAZEL_BUILD_EXTRA_OPTIONS: "--define wasm=v8" # v8 only, WAVM segfaults in tests. BAZEL_TEST_TARGETS: "//test/extensions/access_loggers/wasm/... //test/extensions/filters/http/wasm/... //test/extensions/wasm/..." + CC: clang + CXX: clang++ steps: - run: sudo sntp -sS time.apple.com - run: rm -rf /home/circleci/project/.git # CircleCI git caching is likely broken diff --git a/api/wasm/cpp/proxy_wasm_api.h b/api/wasm/cpp/proxy_wasm_api.h index beb3921d10552..67c4c65338234 100644 --- a/api/wasm/cpp/proxy_wasm_api.h +++ b/api/wasm/cpp/proxy_wasm_api.h @@ -49,12 +49,22 @@ inline void logAbort(StringView logMessag) { abort(); } +#define LOG(_level, ...) \ + log##_level(std::string("[") + __FILE__ + ":" + std::to_string(__LINE__) + "]::" + __FUNCTION__ + "() " + __VA_ARGS__) +#define LOG_TRACE(...) LOG(Trace, __VA_ARGS__) +#define LOG_DEBUG(...) LOG(Debug, __VA_ARGS__) +#define LOG_INFO(...) LOG(Info, __VA_ARGS__) +#define LOG_WARN(...) LOG(Warn, __VA_ARGS__) +#define LOG_ERROR(...) LOG(Error, __VA_ARGS__) +#define LOG_CRITICAL(...) LOG(Critical, __VA_ARGS__) + // Buffers coming into the WASM filter. class WasmData { public: WasmData(const char* data, size_t size) : data_(data), size_(size) {} ~WasmData() { ::free(const_cast(data_)); } const char* data() { return data_; } + size_t size() { return size_; } StringView view() { return {data_, size_}; } std::string toString() { return std::string(view()); } std::vector> pairs(); @@ -528,6 +538,32 @@ inline WasmResult getPluginDirection(PluginDirection *direction_ptr) { PROXY_EXPRESSION_GET("plugin.direction", reinterpret_cast(direction_ptr)); } +// Generic selector +inline Optional getSelectorExpression(std::initializer_list parts) { + size_t size = 0; + for (auto part: parts) { + size += part.size() + 1; // null terminated string value + } + + char* buffer = static_cast(::malloc(size)); + char* b = buffer; + + for (auto part : parts) { + memcpy(b, part.data(), part.size()); + b += part.size(); + *b++ = 0; + } + + const char* value_ptr = nullptr; + size_t value_size = 0; + auto result = proxy_getSelectorExpression(buffer, size, &value_ptr, &value_size); + ::free(buffer); + if (result != WasmResult::Ok) { + return {}; + } + return std::make_unique(value_ptr, value_size); +} + // Metadata inline WasmResult getMetadata(MetadataType type, StringView key, WasmDataPtr *wasm_data) { const char* value_ptr = nullptr; diff --git a/api/wasm/cpp/proxy_wasm_externs.h b/api/wasm/cpp/proxy_wasm_externs.h index 30b259a17caf0..ddce13d4c5a1a 100644 --- a/api/wasm/cpp/proxy_wasm_externs.h +++ b/api/wasm/cpp/proxy_wasm_externs.h @@ -72,6 +72,10 @@ extern "C" WasmResult proxy_getMetadataStruct(MetadataType type, const char* nam extern "C" WasmResult proxy_setMetadataStruct(MetadataType type, const char* name_ptr, size_t name_size, const char* value_ptr, size_t value_size); +// Generic selector +extern "C" WasmResult proxy_getSelectorExpression(const char* path_ptr, size_t path_size, + const char** value_ptr_ptr, size_t* value_size_ptr); + // Continue/Reply/Route extern "C" WasmResult proxy_continueRequest(); extern "C" WasmResult proxy_continueResponse(); diff --git a/api/wasm/cpp/proxy_wasm_intrinsics.h b/api/wasm/cpp/proxy_wasm_intrinsics.h index 72eba23cce010..9717757cc640f 100644 --- a/api/wasm/cpp/proxy_wasm_intrinsics.h +++ b/api/wasm/cpp/proxy_wasm_intrinsics.h @@ -12,6 +12,8 @@ #include #include using StringView = std::string_view; +#include +template using Optional = std::optional; #include "proxy_wasm_enums.h" #include "proxy_wasm_result.h" diff --git a/bazel/BUILD b/bazel/BUILD index a3ceca307f014..3ce73e899b227 100755 --- a/bazel/BUILD +++ b/bazel/BUILD @@ -214,16 +214,6 @@ alias( }), ) -# Alias pointing to a platform-specific version of wee8. -alias( - name = "wee8", - actual = select({ - ":darwin": "@wee8_macos//:wee8", - ":darwin_x86_64": "@wee8_macos//:wee8", - "//conditions:default": "@wee8_linux//:wee8", - }), -) - config_setting( name = "linux_x86_64", values = {"cpu": "k8"}, diff --git a/bazel/external/wee8.genrule_cmd b/bazel/external/wee8.genrule_cmd index 1b5f37d14a769..5a37d85b04dc1 100644 --- a/bazel/external/wee8.genrule_cmd +++ b/bazel/external/wee8.genrule_cmd @@ -15,8 +15,59 @@ pushd $$ROOT/wee8 # Clean after previous build. rm -rf out/wee8 +# Export compiler configuration. +if [[ ( `uname` == "Darwin" && $${CXX-} == "" ) || $${CXX-} == *"clang"* ]]; then + export IS_CLANG=true + export CC=$${CC:-clang} + export CXX=$${CXX:-clang++} +else + export IS_CLANG=false + export CC=$${CC:-gcc} + export CXX=$${CXX:-g++} +fi + +export AR=$${AR:-ar} +export NM=$${NM:-nm} + +# Hook sanitizers. +if [[ $${ENVOY_ASAN-} == "1" ]]; then + WEE8_BUILD_ARGS+=" is_asan=true" + WEE8_BUILD_ARGS+=" is_lsan=true" +fi +if [[ $${ENVOY_MSAN-} == "1" ]]; then + WEE8_BUILD_ARGS+=" is_msan=true" +fi +if [[ $${ENVOY_TSAN-} == "1" ]]; then + WEE8_BUILD_ARGS+=" is_tsan=true" +fi + +# Release build. +WEE8_BUILD_ARGS+=" is_debug=false" +# Clang or not Clang, that is the question. +WEE8_BUILD_ARGS+=" is_clang=$$IS_CLANG" +# Hack to disable bleeding-edge compiler flags. +WEE8_BUILD_ARGS+=" use_xcode_clang=true" +# Use local toolchain. +WEE8_BUILD_ARGS+=" custom_toolchain=\"//build/toolchain/linux/unbundle:default\"" +# Use local stdlibc++ / libc++. +WEE8_BUILD_ARGS+=" use_custom_libcxx=false" +# Use local sysroot. +WEE8_BUILD_ARGS+=" use_sysroot=false" +# Disable unused GLib2 dependency. +WEE8_BUILD_ARGS+=" use_glib=false" +# Expose debug symbols. +WEE8_BUILD_ARGS+=" v8_expose_symbols=true" +# Build monolithic library. +WEE8_BUILD_ARGS+=" is_component_build=false" +WEE8_BUILD_ARGS+=" v8_enable_i18n_support=false" +WEE8_BUILD_ARGS+=" v8_enable_gdbjit=false" +WEE8_BUILD_ARGS+=" v8_use_external_startup_data=false" +# Disable read-only heap, since it's leaky and HEAPCHECK complains about it. +# TODO(PiotrSikora): remove when fixed upstream. +WEE8_BUILD_ARGS+=" v8_enable_shared_ro_heap=false" + # Build wee8. -third_party/depot_tools/gn gen out/wee8 --args="v8_use_external_startup_data=false v8_enable_i18n_support=false v8_enable_gdbjit=false v8_expose_symbols=true is_component_build=false is_debug=false use_sysroot=false use_custom_libcxx=false" +third_party/depot_tools/gn gen out/wee8 --args="$$WEE8_BUILD_ARGS" third_party/depot_tools/ninja -C out/wee8 wee8 # Move compiled library to the expected destinations. diff --git a/bazel/external/wee8.patch b/bazel/external/wee8.patch index b64ec9738883d..3b16ca7d7cf8f 100644 --- a/bazel/external/wee8.patch +++ b/bazel/external/wee8.patch @@ -1,34 +1,33 @@ -# 1. Fix handling of f64 globals. -# 2. Force full GC when destroying VMs. -# 3. Fix build with -DDEBUG. ---- a/wee8/src/wasm/c-api.cc -+++ b/wee8/src/wasm/c-api.cc -@@ -825,7 +825,7 @@ void global_set_f32(v8::Local global, float val) { - void global_set_f64(v8::Local global, double val) { - auto v8_object = v8::Utils::OpenHandle(global); - auto v8_global = i::Handle::cast(v8_object); -- v8_global->SetF32(val); -+ v8_global->SetF64(val); - } +# 1. Fix linking with unbundled toolchain on macOS. +# 2. Increase VSZ limit to 4TiB (allows us to start up to 370 VMs). +--- a/wee8/build/toolchain/gcc_toolchain.gni ++++ b/wee8/build/toolchain/gcc_toolchain.gni +@@ -355,6 +355,8 @@ template("gcc_toolchain") { + # AIX does not support either -D (deterministic output) or response + # files. + command = "$ar -X64 {{arflags}} -r -c -s {{output}} {{inputs}}" ++ } else if (current_os == "mac") { ++ command = "\"$ar\" {{arflags}} -r -c -s {{output}} {{inputs}}" + } else { + rspfile = "{{output}}.rsp" + rspfile_content = "{{inputs}}" +@@ -546,7 +548,7 @@ template("gcc_toolchain") { - // Tables -@@ -1107,7 +1107,7 @@ class StoreImpl { - StoreImpl() {} - - ~StoreImpl() { --#ifdef DEBUG -+#if 1 - reinterpret_cast(isolate_)->heap()->PreciseCollectAllGarbage( - i::Heap::kNoGCFlags, i::GarbageCollectionReason::kTesting, - v8::kGCCallbackFlagForced); ---- a/wee8/third_party/wasm-api/wasm.hh -+++ b/wee8/third_party/wasm-api/wasm.hh -@@ -111,7 +111,7 @@ class vec { - size_t size_; - std::unique_ptr data_; - --#ifdef DEBUG -+#if 0 - void make_data(); - void free_data(); + start_group_flag = "" + end_group_flag = "" +- if (current_os != "aix") { ++ if (current_os != "aix" && current_os != "mac") { + # the "--start-group .. --end-group" feature isn't available on the aix ld. + start_group_flag = "-Wl,--start-group" + end_group_flag = "-Wl,--end-group " +--- a/wee8/src/wasm/wasm-memory.cc ++++ b/wee8/src/wasm/wasm-memory.cc +@@ -142,7 +142,7 @@ void* TryAllocateBackingStore(WasmMemoryTracker* memory_tracker, Heap* heap, + // address space limits needs to be smaller. + constexpr size_t kAddressSpaceLimit = 0x8000000000L; // 512 GiB + #elif V8_TARGET_ARCH_64_BIT +-constexpr size_t kAddressSpaceLimit = 0x10100000000L; // 1 TiB + 4 GiB ++constexpr size_t kAddressSpaceLimit = 0x40100000000L; // 4 TiB + 4 GiB #else + constexpr size_t kAddressSpaceLimit = 0xC0000000; // 3 GiB + #endif diff --git a/bazel/repositories.bzl b/bazel/repositories.bzl index 725c4e1ce3b73..8b53b129a7ec1 100644 --- a/bazel/repositories.bzl +++ b/bazel/repositories.bzl @@ -120,14 +120,6 @@ def envoy_dependencies(skip_targets = []): actual = "@envoy//bazel:boringssl", ) - # Binding to an alias pointing to a platform-specific version of wee8. - _wee8_linux() - _wee8_macos() - native.bind( - name = "wee8", - actual = "@envoy//bazel:wee8", - ) - # The long repo names (`com_github_fmtlib_fmt` instead of `fmtlib`) are # semi-standard in the Bazel community, intended to avoid both duplicate # dependencies and name conflicts. @@ -158,6 +150,7 @@ def envoy_dependencies(skip_targets = []): _com_github_curl() _com_github_envoyproxy_sqlparser() _com_googlesource_quiche() + _com_googlesource_chromium_v8() _org_llvm_llvm() _com_github_wavm_wavm() _com_lightstep_tracer_cpp() @@ -731,26 +724,18 @@ def _com_github_wavm_wavm(): actual = "@envoy//bazel/foreign_cc:wavm", ) -def _wee8_linux(): - location = REPOSITORY_LOCATIONS["wee8_linux"] +def _com_googlesource_chromium_v8(): + location = REPOSITORY_LOCATIONS["com_googlesource_chromium_v8"] genrule_repository( - name = "wee8_linux", - urls = location["urls"], - sha256 = location["sha256"], + name = "com_googlesource_chromium_v8", genrule_cmd_file = "@envoy//bazel/external:wee8.genrule_cmd", build_file = "@envoy//bazel/external:wee8.BUILD", patches = ["@envoy//bazel/external:wee8.patch"], + **location ) - -def _wee8_macos(): - location = REPOSITORY_LOCATIONS["wee8_macos"] - genrule_repository( - name = "wee8_macos", - urls = location["urls"], - sha256 = location["sha256"], - genrule_cmd_file = "@envoy//bazel/external:wee8.genrule_cmd", - build_file = "@envoy//bazel/external:wee8.BUILD", - patches = ["@envoy//bazel/external:wee8.patch"], + native.bind( + name = "wee8", + actual = "@com_googlesource_chromium_v8//:wee8", ) def _foreign_cc_dependencies(): diff --git a/bazel/repository_locations.bzl b/bazel/repository_locations.bzl index 637c2e1bd7ad1..fc1a43d44c5e7 100644 --- a/bazel/repository_locations.bzl +++ b/bazel/repository_locations.bzl @@ -241,19 +241,11 @@ REPOSITORY_LOCATIONS = dict( strip_prefix = "WAVM-95dbf08c8695b8941e7020c557d8612f9d2af895", urls = ["https://github.com/WAVM/WAVM/archive/95dbf08c8695b8941e7020c557d8612f9d2af895.tar.gz"], ), - wee8_linux = dict( + com_googlesource_chromium_v8 = dict( # This archive was created using https://storage.googleapis.com/envoyproxy-wee8/wee8-archive.sh - # and contains complete checkout of v8 with all dependencies necessary to build wee8 on Linux-x86_64. - # TODO(PiotrSikora): switch to local compiler and provide single platform-agnostic archive. - sha256 = "1caebced30cb9d3531be4720b70c9132c988b362160f7721bc01caeb572c0eb7", - urls = ["https://storage.googleapis.com/envoyproxy-wee8/wee8-7.5.288.22-linux-x86_64.tar.gz"], - ), - wee8_macos = dict( - # This archive was created using https://storage.googleapis.com/envoyproxy-wee8/wee8-archive.sh - # and contains complete checkout of v8 with all dependencies necessary to build wee8 on macOS-x86_64. - # TODO(PiotrSikora): switch to local compiler and provide single platform-agnostic archive. - sha256 = "f84e423417db0b03b96e853b7d92f69be7d4936a33d1e8e05848fb146925ff68", - urls = ["https://storage.googleapis.com/envoyproxy-wee8/wee8-7.5.288.22-macos-x86_64.tar.gz"], + # and contains complete checkout of v8 with all dependencies necessary to build wee8. + sha256 = "54d42b0de3055b5ddc6efc0ee1cf7fd2ef77696e90391129f403edc345511e1f", + urls = ["https://storage.googleapis.com/envoyproxy-wee8/wee8-7.8.196.tar.gz"], ), io_opencensus_cpp = dict( sha256 = "8d6016e47c2e19e7acbadb6f905b8c422748c64299d71101ac8f28151677e195", diff --git a/ci/build_container/build_container_centos.sh b/ci/build_container/build_container_centos.sh index 3e64e9f543961..85ea9a6513c9b 100755 --- a/ci/build_container/build_container_centos.sh +++ b/ci/build_container/build_container_centos.sh @@ -6,8 +6,10 @@ set -e yum install -y centos-release-scl epel-release yum update -y yum install -y devtoolset-7-gcc devtoolset-7-gcc-c++ devtoolset-7-binutils java-1.8.0-openjdk-headless rsync \ - rh-git218 wget unzip which make patch devtoolset-7-libatomic-devel openssl python27 \ - libtool autoconf tcpdump glib2-devel + rh-git218 wget unzip which make patch ninja-build devtoolset-7-libatomic-devel openssl python27 \ + libtool autoconf tcpdump + +ln -s /usr/bin/ninja-build /usr/bin/ninja # SLES 11 has older glibc than CentOS 7, so pre-built binary for it works on CentOS 7 LLVM_VERSION=8.0.0 diff --git a/ci/build_container/build_container_common.sh b/ci/build_container/build_container_common.sh index b527d75057b1d..9c0984e62a688 100755 --- a/ci/build_container/build_container_common.sh +++ b/ci/build_container/build_container_common.sh @@ -21,12 +21,4 @@ if [[ "$(uname -m)" == "x86_64" ]]; then curl -sLo cmake-"$VERSION".tar.gz https://github.com/Kitware/CMake/releases/download/v"$VERSION"/cmake-"$VERSION"-Linux-x86_64.tar.gz \ && echo "$SHA256" cmake-"$VERSION".tar.gz | sha256sum --check \ && tar -zxf cmake-"$VERSION".tar.gz -C /usr --strip-components=1 - - # ninja - VERSION=1.8.2 - SHA256=d2fea9ff33b3ef353161ed906f260d565ca55b8ca0568fa07b1d2cab90a84a07 - curl -sLo ninja-"$VERSION".zip https://github.com/ninja-build/ninja/releases/download/v"$VERSION"/ninja-linux.zip \ - && echo "$SHA256" ninja-"$VERSION".zip | sha256sum --check \ - && unzip ninja-"$VERSION".zip \ - && mv ninja /usr/bin fi diff --git a/ci/build_container/build_container_ubuntu.sh b/ci/build_container/build_container_ubuntu.sh index 91a8112a12900..c2f7369acc442 100755 --- a/ci/build_container/build_container_ubuntu.sh +++ b/ci/build_container/build_container_ubuntu.sh @@ -19,7 +19,7 @@ update-alternatives --config gcc update-alternatives --config g++ apt-get install -y --no-install-recommends curl wget make git python python-pip python-setuptools python3 python3-pip \ - unzip bc libtool automake zip time gdb strace tshark tcpdump patch xz-utils rsync ssh-client libglib2.0-dev + unzip bc libtool ninja-build automake zip time gdb strace tshark tcpdump patch xz-utils rsync ssh-client # clang 8. case $ARCH in diff --git a/examples/wasm/README.md b/examples/wasm/README.md index b0af060a5d437..14d345fcafc1f 100644 --- a/examples/wasm/README.md +++ b/examples/wasm/README.md @@ -48,14 +48,14 @@ Now you want to make changes to the C++ filter, regenerate to WASM module. 1. Download and install [`protobuf`](https://github.com/protocolbuffers/protobuf/blob/master/src/README.md). 2. Download and install [`WAVM`](https://github.com/WAVM/WAVM). 3. Download and install [`emscripten`](https://emscripten.org/docs/getting_started/downloads.html#installation-instructions) -4. Activate emsdk archived version 1.38.39 (Note: by 07/26/2019 the latest known working version is 1.38.39). +4. Activate emsdk archived version 1.38.42 (Note: by 08/26/2019 the latest known working version is 1.38.42). ```shell # in emsdk directory - ./emsdk install sdk-1.38.39-64bit - ./emsdk activate sdk-1.38.39-64bit + ./emsdk install sdk-1.38.42-64bit + ./emsdk activate sdk-1.38.42-64bit source emsdk_env.sh - # verify, should output 1.38.39 + # verify, should output 1.38.42 em++ -v 2>&1 |grep Emscripten ``` diff --git a/examples/wasm/envoy_filter_http_wasm_example.cc b/examples/wasm/envoy_filter_http_wasm_example.cc index 9aa9442ea62a1..3d2b5a895773a 100644 --- a/examples/wasm/envoy_filter_http_wasm_example.cc +++ b/examples/wasm/envoy_filter_http_wasm_example.cc @@ -27,28 +27,28 @@ static RegisterContextFactory register_ExampleContext(CONTEXT_FACTORY(ExampleCon ROOT_FACTORY(ExampleRootContext), "my_root_id"); -void ExampleRootContext::onStart(WasmDataPtr) { logTrace("onStart"); } +void ExampleRootContext::onStart(WasmDataPtr) { LOG_TRACE("onStart"); } -void ExampleContext::onCreate() { logWarn(std::string("onCreate " + std::to_string(id()))); } +void ExampleContext::onCreate() { LOG_WARN(std::string("onCreate " + std::to_string(id()))); } FilterHeadersStatus ExampleContext::onRequestHeaders() { - logDebug(std::string("onRequestHeaders ") + std::to_string(id())); + LOG_DEBUG(std::string("onRequestHeaders ") + std::to_string(id())); auto result = getRequestHeaderPairs(); auto pairs = result->pairs(); - logInfo(std::string("headers: ") + std::to_string(pairs.size())); + LOG_INFO(std::string("headers: ") + std::to_string(pairs.size())); for (auto& p : pairs) { - logInfo(std::string(p.first) + std::string(" -> ") + std::string(p.second)); + LOG_INFO(std::string(p.first) + std::string(" -> ") + std::string(p.second)); } return FilterHeadersStatus::Continue; } FilterHeadersStatus ExampleContext::onResponseHeaders() { - logDebug(std::string("onResponseHeaders ") + std::to_string(id())); + LOG_DEBUG(std::string("onResponseHeaders ") + std::to_string(id())); auto result = getResponseHeaderPairs(); auto pairs = result->pairs(); - logInfo(std::string("headers: ") + std::to_string(pairs.size())); + LOG_INFO(std::string("headers: ") + std::to_string(pairs.size())); for (auto& p : pairs) { - logInfo(std::string(p.first) + std::string(" -> ") + std::string(p.second)); + LOG_INFO(std::string(p.first) + std::string(" -> ") + std::string(p.second)); } addResponseHeader("newheader", "newheadervalue"); replaceResponseHeader("location", "envoy-wasm"); @@ -57,12 +57,12 @@ FilterHeadersStatus ExampleContext::onResponseHeaders() { FilterDataStatus ExampleContext::onRequestBody(size_t body_buffer_length, bool end_of_stream) { auto body = getRequestBodyBufferBytes(0, body_buffer_length); - logError(std::string("onRequestBody ") + std::string(body->view())); + LOG_ERROR(std::string("onRequestBody ") + std::string(body->view())); return FilterDataStatus::Continue; } -void ExampleContext::onDone() { logWarn(std::string("onDone " + std::to_string(id()))); } +void ExampleContext::onDone() { LOG_WARN(std::string("onDone " + std::to_string(id()))); } -void ExampleContext::onLog() { logWarn(std::string("onLog " + std::to_string(id()))); } +void ExampleContext::onLog() { LOG_WARN(std::string("onLog " + std::to_string(id()))); } -void ExampleContext::onDelete() { logWarn(std::string("onDelete " + std::to_string(id()))); } +void ExampleContext::onDelete() { LOG_WARN(std::string("onDelete " + std::to_string(id()))); } diff --git a/examples/wasm/envoy_filter_http_wasm_example.wasm b/examples/wasm/envoy_filter_http_wasm_example.wasm index 9e304e420896b..3e58770955108 100644 Binary files a/examples/wasm/envoy_filter_http_wasm_example.wasm and b/examples/wasm/envoy_filter_http_wasm_example.wasm differ diff --git a/examples/wasm/envoy_filter_http_wasm_example.wat b/examples/wasm/envoy_filter_http_wasm_example.wat index d5770841db70d..ea3c0020e9d84 100644 --- a/examples/wasm/envoy_filter_http_wasm_example.wat +++ b/examples/wasm/envoy_filter_http_wasm_example.wat @@ -110,8 +110,8 @@ (export "stackAlloc" (func $stackAlloc)) (export "stackRestore" (func $stackRestore)) (export "stackSave" (func $stackSave)) - (global $32 (mut i32) (i32.const 26624)) - (global $33 (mut i32) (i32.const 5269504)) + (global $32 (mut i32) (i32.const 26752)) + (global $33 (mut i32) (i32.const 5269632)) (elem $34 $28 (global.get $30) $b0 $__ZN11RootContext6asRootEv $__ZN11RootContext9asContextEv $__ZN11RootContext9asContextEv $__ZN11RootContext6asRootEv $__ZN14ExampleContext16onRequestHeadersEv $__ZN11RootContext9asContextEv $__ZN11RootContext9asContextEv $__ZN14ExampleContext17onResponseHeadersEv $__ZN11RootContext9asContextEv $__ZN11RootContext9asContextEv $__ZN11RootContext9asContextEv $__ZN11RootContext9asContextEv $__ZNK6google8protobuf8internal12MapEntryImplINS0_27Struct_FieldsEntry_DoNotUseENS0_11MessageLiteENSt3__212basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEENS0_5ValueELNS1_14WireFormatLite9FieldTypeE9ELSE_11ELi0EE3NewEv $__ZNK6google8protobuf8internal12MapEntryImplINS0_27Struct_FieldsEntry_DoNotUseENS0_11MessageLiteENSt3__212basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEENS0_5ValueELNS1_14WireFormatLite9FieldTypeE9ELSE_11ELi0EE8GetArenaEv $__ZNK6google8protobuf11MessageLite20GetMaybeArenaPointerEv @@ -170,7 +170,7 @@ $b10 $b10 $b11 $__ZN11RootContext18onHttpCallResponseEjNSt3__210unique_ptrI8WasmDataNS0_14default_deleteIS2_EEEES5_S5_ $__ZNK10__cxxabiv117__class_type_info16search_below_dstEPNS_19__dynamic_cast_infoEPKvib $__ZNK10__cxxabiv120__si_class_type_info16search_below_dstEPNS_19__dynamic_cast_infoEPKvib $__ZNK10__cxxabiv121__vmi_class_type_info16search_below_dstEPNS_19__dynamic_cast_infoEPKvib $b11 $b11 $b11 $b12 $__ZNK10__cxxabiv117__class_type_info16search_above_dstEPNS_19__dynamic_cast_infoEPKvS4_ib $__ZNK10__cxxabiv120__si_class_type_info16search_above_dstEPNS_19__dynamic_cast_infoEPKvS4_ib $__ZNK10__cxxabiv121__vmi_class_type_info16search_above_dstEPNS_19__dynamic_cast_infoEPKvS4_ib $b13) (data $35 $29 (i32.const 1024) - "\83:\00\00\88:\00\00\90:\00\00\96:") + "\01;\00\00\06;\00\00\0e;\00\00\14;") (data $36 $29 (i32.const 1168) "\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0" "\f0\f0\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\02\03\03\03\03\03\03\03\03\03\03\03\03\07\03\03\04\05\05\05\06\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0" @@ -243,18 +243,18 @@ "\00\00\00\a7\00\00\00\ad\00\00\00\b3\00\00\00\b5\00\00\00\bf\00\00\00\c1\00\00\00\c5\00\00\00\c7\00\00\00\d3\00\00\00\01\00\00\00\0b\00\00\00\0d\00\00\00\11\00\00\00\13\00\00\00\17\00\00\00\1d" "\00\00\00\1f\00\00\00%\00\00\00)\00\00\00+\00\00\00/\00\00\005\00\00\00;\00\00\00=\00\00\00C\00\00\00G\00\00\00I\00\00\00O\00\00\00S\00\00\00Y\00\00\00a\00\00\00e" "\00\00\00g\00\00\00k\00\00\00m\00\00\00q\00\00\00y\00\00\00\7f\00\00\00\83\00\00\00\89\00\00\00\8b\00\00\00\8f\00\00\00\95\00\00\00\97\00\00\00\9d\00\00\00\a3\00\00\00\a7\00\00\00\a9" - "\00\00\00\ad\00\00\00\b3\00\00\00\b5\00\00\00\bb\00\00\00\bf\00\00\00\c1\00\00\00\c5\00\00\00\c7\00\00\00\d1\00\00\00\ac\1e\00\00\d4+\00\00\d4\1e\00\00\c6+\00\00p\11\00\00\00\00\00\00\d4" - "\1e\00\00\b1+\00\00x\11\00\00\00\00\00\00\d4\1e\00\00\f3+\00\00p\11\00\00\00\00\00\00\d4\1e\00\00\e2+\00\00\98\11\00\00\00\00\00\00\ac\1e\00\00\fc+\00\00\ac\1e\00\00\01,\00\00\ac" - "\1e\00\00\06,\00\00\f0*\00\00\08-\00\00\00\00\00\00\01\00\00\00\e8\11\00\00\00\00\00\00\ac\1e\00\00G-\00\00\d4\1e\00\00*7\00\00\a0\12\00\00\00\00\00\00\d4\1e\00\00\0c6\00\00\10" - "\12\00\00\00\00\00\00\d4\1e\00\00\c9/\00\00 \12\00\00\00\00\00\00\d4\1e\00\00\f9/\00\000\12\00\00\00\00\00\00\d4\1e\00\00\bf0\00\00\a0\12\00\00\00\00\00\00\d4\1e\00\00\d95\00\00\a0" - "\12\00\00\00\00\00\00\f0*\00\00\974\00\00\00\00\00\00\01\00\00\00h\12\00\00\00\00\00\00\ac\1e\00\00\045\00\00\d4\1e\00\00\f35\00\00\a0\12\00\00\00\00\00\00\d4\1e\00\00~7\00\00\90" + "\00\00\00\ad\00\00\00\b3\00\00\00\b5\00\00\00\bb\00\00\00\bf\00\00\00\c1\00\00\00\c5\00\00\00\c7\00\00\00\d1\00\00\00\ac\1e\00\00P,\00\00\d4\1e\00\00B,\00\00p\11\00\00\00\00\00\00\d4" + "\1e\00\00-,\00\00x\11\00\00\00\00\00\00\d4\1e\00\00o,\00\00p\11\00\00\00\00\00\00\d4\1e\00\00^,\00\00\98\11\00\00\00\00\00\00\ac\1e\00\00x,\00\00\ac\1e\00\00},\00\00\ac" + "\1e\00\00\82,\00\00\f0*\00\00\84-\00\00\00\00\00\00\01\00\00\00\e8\11\00\00\00\00\00\00\ac\1e\00\00\c3-\00\00\d4\1e\00\00\a87\00\00\a0\12\00\00\00\00\00\00\d4\1e\00\00\8a6\00\00\10" + "\12\00\00\00\00\00\00\d4\1e\00\00G0\00\00 \12\00\00\00\00\00\00\d4\1e\00\00w0\00\000\12\00\00\00\00\00\00\d4\1e\00\00=1\00\00\a0\12\00\00\00\00\00\00\d4\1e\00\00W6\00\00\a0" + "\12\00\00\00\00\00\00\f0*\00\00\155\00\00\00\00\00\00\01\00\00\00h\12\00\00\00\00\00\00\ac\1e\00\00\825\00\00\d4\1e\00\00q6\00\00\a0\12\00\00\00\00\00\00\d4\1e\00\00\fc7\00\00\90" "\14\00\00\00\00\00\00\ff\ff\ff\ff\ff\ff\ff\ff") (data $53 $29 (i32.const 4768) - "\ac\1e\00\00\7f<\00\00\d4\1e\00\00P@\00\00\c8\12\00\00\00\00\00\00\d4\1e\00\00\0cA\00\00\c8\12\00\00\00\00\00\00\ac\1e\00\00\d8A\00\00\05") + "\ac\1e\00\00\fa<\00\00\d4\1e\00\00\cb@\00\00\c8\12\00\00\00\00\00\00\d4\1e\00\00\87A\00\00\c8\12\00\00\00\00\00\00\ac\1e\00\00SB\00\00\05") (data $54 $29 (i32.const 4828) ".") (data $55 $29 (i32.const 4852) - "\09\00\00\00\01\00\00\008[\00\00\00\04") + "\09\00\00\00\01\00\00\00\b8[\00\00\00\04") (data $56 $29 (i32.const 4876) "\01") (data $57 $29 (i32.const 4891) @@ -264,7 +264,7 @@ (data $59 $29 (i32.const 4972) ".") (data $60 $29 (i32.const 4996) - "\n\00\00\00\01\00\00\00&c") + "\n\00\00\00\01\00\00\00\a6c") (data $61 $29 (i32.const 5020) "\02") (data $62 $29 (i32.const 5035) @@ -274,26 +274,26 @@ (data $64 $29 (i32.const 5179) "\ff\ff\ff\ff\ff") (data $65 $29 (i32.const 5248) - "\d4\1e\00\00OB\00\00\90\14\00\00\00\00\00\00\ac\1e\00\00\15C\00\00\d4\1e\00\00uC\00\00\a8\14\00\00\00\00\00\00\d4\1e\00\00\"C\00\00\b8\14\00\00\00\00\00\00\ac\1e\00\00CC\00\00" - "\d4\1e\00\00PC\00\00\98\14\00\00\00\00\00\00\d4\1e\00\00\05E\00\00\e0\14\00\00\00\00\00\00\ac\1e\00\004E\00\00\d4\1e\00\00\e8E\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00+F\00\00" - "\e0\14\00\00\00\00\00\00\d4\1e\00\00xF\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\beF\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\eeF\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00,G\00\00" - "\e0\14\00\00\00\00\00\00\d4\1e\00\00]G\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\adG\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\e6G\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00!H\00\00" - "\e0\14\00\00\00\00\00\00\d4\1e\00\00]H\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\a0H\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\ceH\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\01I\00\00" - "\e0\14\00\00\00\00\00\00\d4\1e\00\00\bdI\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\eaI\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\1bJ\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00YJ\00\00" - "\e0\14\00\00\00\00\00\00\d4\1e\00\00\d1J\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\96J\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\18K\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00aK\00\00" - "\e0\14\00\00\00\00\00\00\d4\1e\00\00\bcK\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\e7K\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00!L\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00UL\00\00" - "\e0\14\00\00\00\00\00\00\d4\1e\00\00\a5L\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\d4L\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\0dM\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00FM\00\00" - "\e0\14\00\00\00\00\00\00\d4\1e\00\00kO\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\b9O\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\f4O\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00 P\00\00" - "\e0\14\00\00\00\00\00\00\d4\1e\00\00jP\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\9fP\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\d2P\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\09Q\00\00" - "\e0\14\00\00\00\00\00\00\d4\1e\00\00>Q\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\d4Q\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\06R\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\008R\00\00" - "\e0\14\00\00\00\00\00\00\d4\1e\00\00\90R\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\d8R\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\10S\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00^S\00\00" - "\e0\14\00\00\00\00\00\00\d4\1e\00\00\9dS\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\e0S\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\11T\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00KU\00\00" - "\e0\14\00\00\00\00\00\00\d4\1e\00\00\8bU\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\beU\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\f8U\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\001V\00\00" - "\e0\14\00\00\00\00\00\00\d4\1e\00\00nV\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\ebV\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\17W\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00MW\00\00" - "\e0\14\00\00\00\00\00\00\d4\1e\00\00\a1W\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\d9W\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\1cX\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00MX\00\00" - "\e0\14\00\00\00\00\00\00\d4\1e\00\00}X\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\b8X\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\faX\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\e9Y\00\00" - "\e0\14\00\00\00\00\00\00\d4\1e\00\00tZ\00\00\90\14\00\00\00\00\00\00\d4\1e\00\00\84Z\00\00\08\19\00\00\00\00\00\00\d4\1e\00\00\95Z\00\00\a8\14\00\00\00\00\00\00\d4\1e\00\00\b7Z\00\00" - "(\19\00\00\00\00\00\00\d4\1e\00\00\dbZ\00\00\a8\14\00\00\00\00\00\00\d4*\00\00\03[\00\00\d4*\00\00\05[\00\00\d4*\00\00\07[\00\00\d4\1e\00\00\09[\00\00\98\14") + "\d4\1e\00\00\caB\00\00\90\14\00\00\00\00\00\00\ac\1e\00\00\93C\00\00\d4\1e\00\00\f3C\00\00\a8\14\00\00\00\00\00\00\d4\1e\00\00\a0C\00\00\b8\14\00\00\00\00\00\00\ac\1e\00\00\c1C\00\00" + "\d4\1e\00\00\ceC\00\00\98\14\00\00\00\00\00\00\d4\1e\00\00\83E\00\00\e0\14\00\00\00\00\00\00\ac\1e\00\00\b2E\00\00\d4\1e\00\00fF\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\a9F\00\00" + "\e0\14\00\00\00\00\00\00\d4\1e\00\00\f6F\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00= (0): \00CHECK failed: (index) < " - "(current_size_): \00/usr/local/include/google/protobuf/map.h\00CHECK" - " failed: (bucket_index_ & 1) == (0): \00CHECK failed: m_->index_of" - "_first_non_null_ == m_->num_buckets_ || m_->table_[m_->index_of_" - "first_non_null_] != NULL: \00CHECK failed: !tree->empty(): \00CHECK " - "failed: node_ != NULL && m_ != NULL: \00google.protobuf.Value.stri" - "ng_value\00google.protobuf.Struct.FieldsEntry.key\00CHECK failed: (&" - "from) != (this): \00CHECK failed: (&other) != (this): \00N6google8pr" - "otobuf27Struct_FieldsEntry_DoNotUseE\00N6google8protobuf8internal1" - "2MapEntryLiteINS0_27Struct_FieldsEntry_DoNotUseENSt3__212basic_s" - "tringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEENS0_5ValueELNS1_" - "14WireFormatLite9FieldTypeE9ELSD_11ELi0EEE\00N6google8protobuf8int" - "ernal12MapEntryImplINS0_27Struct_FieldsEntry_DoNotUseENS0_11Mess" - "ageLiteENSt3__212basic_stringIcNS5_11char_traitsIcEENS5_9allocat" - "orIcEEEENS0_5ValueELNS1_14WireFormatLite9FieldTypeE9ELSE_11ELi0E" - "EE\00CHECK failed: (it.m_) == (this): \00CHECK failed: TableEntryIsN" - "onEmptyList(b): \00CHECK failed: TableEntryIsTree(b): \00CHECK faile" - "d: GetArenaNoVirtual() == NULL: \00CHECK failed: index_of_first_no" - "n_null_ == num_buckets_ || table_[index_of_first_non_null_] != N" - "ULL: \00CHECK failed: find(*KeyPtrFromNodePtr(node)) == end(): \00CH" - "ECK failed: (count) <= (kMaxLength): \00CHECK failed: (result.buck" - "et_index_) == (b & ~static_cast(1)): \00CHECK failed: (" - "table_[b]) == (table_[b ^ 1]): \00CHECK failed: !TableEntryIsTree(" - "b) && !TableEntryIsTree(b ^ 1): \00CHECK failed: (count) == (tree-" - ">size()): \00CHECK failed: (new_num_buckets) >= (kMinTableSize): \00" - "CHECK failed: n >= kMinTableSize: \00CHECK failed: (n & (n - 1)) =" - "= (0): \00CHECK failed: table_[b] == table_[b + 1] && (b & 1) == 0" - ": \00N6google8protobuf3MapINSt3__212basic_stringIcNS2_11char_trait" - "sIcEENS2_9allocatorIcEEEENS0_5ValueEE8InnerMapE\00N6google8protobu" - "f4hashINSt3__212basic_stringIcNS2_11char_traitsIcEENS2_9allocato" - "rIcEEEEEE\00f == NULL || dynamic_cast(f) != NULL\00/usr/local/in" - "clude/google/protobuf/stubs/casts.h\00down_cast\00google.protobuf.St" - "ruct\00N6google8protobuf6StructE\00N6google8protobuf5ValueE\00N6google" - "8protobuf8internal12MapEntryImplINS0_27Struct_FieldsEntry_DoNotU" - "seENS0_11MessageLiteENSt3__212basic_stringIcNS5_11char_traitsIcE" - "ENS5_9allocatorIcEEEENS0_5ValueELNS1_14WireFormatLite9FieldTypeE" - "9ELSE_11ELi0EE15MapEntryWrapperE\00CHECK failed: (n) >= (0): \00goog" - "le.protobuf.ListValue\00N6google8protobuf9ListValueE\00google.protob" - "uf.Value\00no context factory for root_id: \00N6google8protobuf14Fat" - "alExceptionE\00google/protobuf/stubs/common.cc\00This program requir" - "es version \00%d.%d.%d\00 of the Protocol Buffer runtime library, bu" - "t the installed version is \00. Please update your library. If y" - "ou compiled the program yourself, make sure that your headers ar" - "e from the same version of Protocol Buffers as your link-time li" - "brary. (Version verification failed in \"\00\".)\00This program was c" - "ompiled against version \00 of the Protocol Buffer runtime library" - ", which is not compatible with the installed version (\00). Conta" - "ct the program author for an update. If you compiled the progra" - "m yourself, make sure that your headers are from the same versio" - "n of Protocol Buffers as your link-time library. (Version verif" - "ication failed in \"\00[libprotobuf %s %s:%d] %s\n\00INFO\00WARNING\00ERRO" - "R\00FATAL\00allocator::allocate(size_t n) 'n' exceeds maximum sup" - "ported size\00%d\00google/protobuf/arena.cc\00CHECK failed: (min_bytes" - ") <= (std::numeric_limits::max() - kBlockHeaderSize): \00g" - "oogle/protobuf/generated_message_util.cc\00Not implemented field n" - "umber \00 with type \00CHECK failed: (scc->visit_status.load(std::me" - "mory_order_relaxed)) == (SCCInfoBase::kRunning): \00google/protobu" - "f/message_lite.cc\00CHECK failed: !coded_out.HadError(): \00(cannot " - "determine missing fields for lite message)\00N6google8protobuf11Me" - "ssageLiteE\00google/protobuf/repeated_field.cc\00CHECK failed: (new_" - "size) <= ((std::numeric_limits::max() - kRepHeaderSize) " - "/ sizeof(old_rep->elements[0])): \00Requested size is too large to" - " fit into size_t.\00google/protobuf/wire_format_lite.cc\00CHECK fail" - "ed: (value.size()) <= (kint32max): \00serializing\00parsing\00 '%s'\00St" - "ring field\00 contains invalid \00UTF-8 data when \00 a protocol \00buff" - "er. Use the 'bytes' type if you intend to send raw \00bytes. \00goog" - "le/protobuf/io/coded_stream.cc\00CHECK failed: (buffer_size) >= (0" - "): \00A protocol message was rejected because it was too big (more" - " than \00 bytes). To increase the limit (or to disable these warn" - "ings), see CodedInputStream::SetTotalBytesLimit() in google/prot" - "obuf/io/coded_stream.h.\00google/protobuf/io/zero_copy_stream_impl" - "_lite.cc\00CHECK failed: (count) >= (0): \00CHECK failed: (last_retu" - "rned_size_) > (0): \00BackUp() can only be called after a successf" - "ul Next().\00CHECK failed: (count) <= (last_returned_size_): \00N6go" - "ogle8protobuf2io17ArrayOutputStreamE\00CHECK failed: target_ != NU" - "LL: \00CHECK failed: (count) <= (target_->size()): \00Cannot allocat" - "e buffer larger than kint32max for \00StringOutputStream.\00N6google" - "8protobuf2io18StringOutputStreamE\00google/protobuf/io/zero_copy_s" - "tream.cc\00This ZeroCopyOutputStream doesn't support aliasing. Rea" - "ching here usually means a ZeroCopyOutputStream implementation b" - "ug.\00N6google8protobuf2io20ZeroCopyOutputStreamE\00-+ 0X0x\00(null)" - "\00-0X+0X 0X-0x+0x 0x\00inf\00INF\00nan\00NAN\00std::bad_function_call\00NSt3_" - "_217bad_function_callE\00mutex lock failed\00%u\00%lu\00terminating with" - " %s exception of type %s: %s\00terminating with %s exception of ty" - "pe %s\00terminating with %s foreign exception\00terminating\00uncaught" - "\00St9exception\00N10__cxxabiv116__shim_type_infoE\00St9type_info\00N10_" - "_cxxabiv120__si_class_type_infoE\00N10__cxxabiv117__class_type_inf" - "oE\00terminate_handler unexpectedly returned\00_Z\00___Z\00_block_invoke" - "\00invocation function for block in \00void\00bool\00char\00signed char\00un" - "signed char\00short\00unsigned short\00int\00unsigned int\00long\00unsigned " - "long\00long long\00__int128\00unsigned __int128\00float\00long double\00__fl" - "oat128\00...\00decimal64\00decimal128\00decimal32\00decimal16\00char32_t\00cha" - "r16_t\00auto\00decltype(auto)\00std::nullptr_t\00[abi:\00]\00N12_GLOBAL__N_1" - "16itanium_demangle10AbiTagAttrE\00N12_GLOBAL__N_116itanium_demangl" - "e4NodeE\00allocator\00basic_string\00string\00istream\00ostream\00iostream\00s" - "td::allocator\00std::basic_string\00std::string\00std::istream\00std::os" - "tream\00std::iostream\00N12_GLOBAL__N_116itanium_demangle19SpecialSu" - "bstitutionE\00 imaginary\00N12_GLOBAL__N_116itanium_demangle20Postfi" - "xQualifiedTypeE\00 complex\00)\00 \00(\00&\00&&\00N12_GLOBAL__N_116itanium_dem" - "angle13ReferenceTypeE\00objc_object\00*\00id<\00>\00N12_GLOBAL__N_116itani" - "um_demangle11PointerTypeE\00N12_GLOBAL__N_116itanium_demangle20Nam" - "eWithTemplateArgsE\00<\00, \00N12_GLOBAL__N_116itanium_demangle12Templ" - "ateArgsE\00N12_GLOBAL__N_116itanium_demangle13ParameterPackE\00wchar" - "_t\00b0E\00b1E\00u\00l\00ul\00ll\00ull\00N12_GLOBAL__N_116itanium_demangle15Inte" - "gerCastExprE\00%LaL\00N12_GLOBAL__N_116itanium_demangle16FloatLitera" - "lImplIeEE\00%a\00N12_GLOBAL__N_116itanium_demangle16FloatLiteralImpl" - "IdEE\00%af\00N12_GLOBAL__N_116itanium_demangle16FloatLiteralImplIfEE" - "\00true\00false\00N12_GLOBAL__N_116itanium_demangle8BoolExprE\00-\00N12_GL" - "OBAL__N_116itanium_demangle14IntegerLiteralE\00N12_GLOBAL__N_116it" - "anium_demangle20TemplateArgumentPackE\00gs\00&=\00=\00alignof (\00,\00~\00.*\00/" - "\00/=\00^\00^=\00==\00>=\00<=\00<<\00<<=\00-=\00*=\00--\00!=\00!\00||\00|\00|=\00->*\00+\00+=\00++\00->\00%\00" - "%=\00>>\00>>=\00sizeof (\00typeid (\00throw\00throw \00N12_GLOBAL__N_116itaniu" - "m_demangle9ThrowExprE\00N12_GLOBAL__N_116itanium_demangle12InitLis" - "tExprE\00N12_GLOBAL__N_116itanium_demangle13NodeArrayNodeE\00sizeof." - ".. (\00N12_GLOBAL__N_116itanium_demangle13EnclosingExprE\00sizeof..." - "(\00N12_GLOBAL__N_116itanium_demangle22ParameterPackExpansionE\00N12" - "_GLOBAL__N_116itanium_demangle19SizeofParamPackExprE\00static_cast" - "\00>(\00N12_GLOBAL__N_116itanium_demangle8CastExprE\00reinterpret_cast" - "\00) ? (\00) : (\00N12_GLOBAL__N_116itanium_demangle15ConditionalExprE" - "\00noexcept (\00nw\00na\00pi\00::operator \00new\00[]\00N12_GLOBAL__N_116itanium" - "_demangle7NewExprE\00N12_GLOBAL__N_116itanium_demangle11PostfixExp" - "rE\00 ... \00 = \00N12_GLOBAL__N_116itanium_demangle15BracedRangeExprE" - "\00N12_GLOBAL__N_116itanium_demangle10BracedExprE\00_GLOBAL__N\00(anon" - "ymous namespace)\00N12_GLOBAL__N_116itanium_demangle8NameTypeE\00)[\00" - "N12_GLOBAL__N_116itanium_demangle18ArraySubscriptExprE\00.\00N12_GLO" - "BAL__N_116itanium_demangle10MemberExprE\00srN\00sr\00::\00N12_GLOBAL__N_" - "116itanium_demangle19GlobalQualifiedNameE\00dn\00on\00operator&&\00opera" - "tor&\00operator&=\00operator=\00operator()\00operator,\00operator~\00operato" - "r delete[]\00operator*\00operator/\00operator/=\00operator^\00operator^=\00o" - "perator==\00operator>=\00operator>\00operator[]\00operator<=\00operator<<\00" - "operator<<=\00operator<\00operator-\00operator-=\00operator*=\00operator--" - "\00operator new[]\00operator!=\00operator!\00operator new\00operator||\00ope" - "rator|\00operator|=\00operator->*\00operator+\00operator+=\00operator++\00op" - "erator->\00operator?\00operator%\00operator%=\00operator>>\00operator>>=\00o" - "perator<=>\00operator\"\" \00N12_GLOBAL__N_116itanium_demangle15Litera" - "lOperatorE\00operator delete\00operator \00N12_GLOBAL__N_116itanium_de" - "mangle22ConversionOperatorTypeE\00N12_GLOBAL__N_116itanium_demangl" - "e8DtorNameE\00N12_GLOBAL__N_116itanium_demangle13QualifiedNameE\00dy" - "namic_cast\00delete\00[] \00N12_GLOBAL__N_116itanium_demangle10DeleteE" - "xprE\00cv\00)(\00N12_GLOBAL__N_116itanium_demangle14ConversionExprE\00N1" - "2_GLOBAL__N_116itanium_demangle8CallExprE\00const_cast\00N12_GLOBAL_" - "_N_116itanium_demangle10PrefixExprE\00) \00 (\00N12_GLOBAL__N_116itani" - "um_demangle10BinaryExprE\00aa\00an\00aN\00aS\00cm\00ds\00dv\00dV\00eo\00eO\00eq\00ge\00gt\00" - "le\00ls\00lS\00lt\00mi\00mI\00ml\00mL\00ne\00oo\00or\00oR\00pl\00pL\00rm\00rM\00rs\00rS\00... \00 ...\00" - "N12_GLOBAL__N_116itanium_demangle8FoldExprE\00fp\00fL\00N12_GLOBAL__N_" - "116itanium_demangle13FunctionParamE\00N12_GLOBAL__N_116itanium_dem" - "angle24ForwardTemplateReferenceE\00Ts\00struct\00Tu\00union\00Te\00enum\00N12_" - "GLOBAL__N_116itanium_demangle22ElaboratedTypeSpefTypeE\00StL\00St\00st" - "d::\00N12_GLOBAL__N_116itanium_demangle16StdQualifiedNameE\00DC\00N12_" - "GLOBAL__N_116itanium_demangle21StructuredBindingNameE\00Ut\00Ul\00vE\00'" - "lambda\00'(\00N12_GLOBAL__N_116itanium_demangle15ClosureTypeNameE\00'u" - "nnamed\00'\00N12_GLOBAL__N_116itanium_demangle15UnnamedTypeNameE\00str" - "ing literal\00N12_GLOBAL__N_116itanium_demangle9LocalNameE\00std\00N12" - "_GLOBAL__N_116itanium_demangle12CtorDtorNameE\00basic_istream\00basi" - "c_ostream\00basic_iostream\00std::basic_string, std::allocator >\00std::basic_istream >\00std::basic_ostream >\00std::basic_iostream >\00N12_GLOBA" - "L__N_116itanium_demangle27ExpandedSpecialSubstitutionE\00N12_GLOBA" - "L__N_116itanium_demangle10NestedNameE\00::*\00N12_GLOBAL__N_116itani" - "um_demangle19PointerToMemberTypeE\00[\00N12_GLOBAL__N_116itanium_dem" - "angle9ArrayTypeE\00Dv\00 vector[\00N12_GLOBAL__N_116itanium_demangle10" - "VectorTypeE\00pixel vector[\00N12_GLOBAL__N_116itanium_demangle15Pix" - "elVectorTypeE\00decltype(\00double\00unsigned long long\00objcproto\00 con" - "st\00 volatile\00 restrict\00N12_GLOBAL__N_116itanium_demangle8QualTyp" - "eE\00N12_GLOBAL__N_116itanium_demangle17VendorExtQualTypeE\00N12_GLO" - "BAL__N_116itanium_demangle13ObjCProtoNameE\00Do\00noexcept\00DO\00Dw\00Dx\00" - "RE\00OE\00 &\00 &&\00N12_GLOBAL__N_116itanium_demangle12FunctionTypeE\00th" - "row(\00N12_GLOBAL__N_116itanium_demangle20DynamicExceptionSpecE\00no" - "except(\00N12_GLOBAL__N_116itanium_demangle12NoexceptSpecE\00N12_GLO" - "BAL__N_116itanium_demangle11SpecialNameE\00N12_GLOBAL__N_116itaniu" - "m_demangle9DotSuffixE\00Ua9enable_ifI\00N12_GLOBAL__N_116itanium_dem" - "angle16FunctionEncodingE\00 [enable_if:\00N12_GLOBAL__N_116itanium_d" - "emangle12EnableIfAttrE\00thread-local wrapper routine for \00referen" - "ce temporary for \00guard variable for \00non-virtual thunk to \00virt" - "ual thunk to \00thread-local initialization routine for \00construct" - "ion vtable for \00-in-\00N12_GLOBAL__N_116itanium_demangle21CtorVtab" - "leSpecialNameE\00covariant return thunk to \00typeinfo name for \00typ" - "einfo for \00VTT for \00vtable for \00St11logic_error\00St12length_error" - "\00N10__cxxabiv117__pbase_type_infoE\00N10__cxxabiv119__pointer_type" - "_infoE\00N10__cxxabiv123__fundamental_type_infoE\00v\00c\00h\00N10__cxxabi" - "v121__vmi_class_type_infoE") + "oot_id\00envoy_filter_http_wasm_example.cc\00:\00]::\00onStart\00() \00onCre" + "ate\00onCreate \00onRequestHeaders\00onRequestHeaders \00headers: \00onRes" + "ponseHeaders\00onResponseHeaders \00newheader\00newheadervalue\00locatio" + "n\00envoy-wasm\00onRequestBody\00onRequestBody \00onDone\00onDone \00onLog\00o" + "nLog \00onDelete\00onDelete \0018ExampleRootContext\0011RootContext\0011Co" + "ntextBase\0014ExampleContext\007Context\003$_0\003$_1\00N6google8protobuf8" + "internal29InternalMetadataWithArenaBaseINSt3__212basic_stringIcN" + "S3_11char_traitsIcEENS3_9allocatorIcEEEENS1_29InternalMetadataWi" + "thArenaLiteEE9ContainerE\00/usr/local/include/google/protobuf/aren" + "astring.h\00CHECK failed: initial_value != NULL: \00NSt3__212basic_s" + "tringIcNS_11char_traitsIcEENS_9allocatorIcEEEE\00NSt3__221__basic_" + "string_commonILb1EEE\00/home/piotrsikora/Google/envoy/api/wasm/cpp" + "/struct_lite.pb.cc\00/usr/local/include/google/protobuf/repeated_f" + "ield.h\00CHECK failed: (index) >= (0): \00CHECK failed: (index) < (c" + "urrent_size_): \00/usr/local/include/google/protobuf/map.h\00CHECK f" + "ailed: (bucket_index_ & 1) == (0): \00CHECK failed: m_->index_of_f" + "irst_non_null_ == m_->num_buckets_ || m_->table_[m_->index_of_fi" + "rst_non_null_] != NULL: \00CHECK failed: !tree->empty(): \00CHECK fa" + "iled: node_ != NULL && m_ != NULL: \00google.protobuf.Value.string" + "_value\00google.protobuf.Struct.FieldsEntry.key\00CHECK failed: (&fr" + "om) != (this): \00CHECK failed: (&other) != (this): \00N6google8prot" + "obuf27Struct_FieldsEntry_DoNotUseE\00N6google8protobuf8internal12M" + "apEntryLiteINS0_27Struct_FieldsEntry_DoNotUseENSt3__212basic_str" + "ingIcNS4_11char_traitsIcEENS4_9allocatorIcEEEENS0_5ValueELNS1_14" + "WireFormatLite9FieldTypeE9ELSD_11ELi0EEE\00N6google8protobuf8inter" + "nal12MapEntryImplINS0_27Struct_FieldsEntry_DoNotUseENS0_11Messag" + "eLiteENSt3__212basic_stringIcNS5_11char_traitsIcEENS5_9allocator" + "IcEEEENS0_5ValueELNS1_14WireFormatLite9FieldTypeE9ELSE_11ELi0EEE" + "\00CHECK failed: (it.m_) == (this): \00CHECK failed: TableEntryIsNon" + "EmptyList(b): \00CHECK failed: TableEntryIsTree(b): \00CHECK failed:" + " GetArenaNoVirtual() == NULL: \00CHECK failed: index_of_first_non_" + "null_ == num_buckets_ || table_[index_of_first_non_null_] != NUL" + "L: \00CHECK failed: find(*KeyPtrFromNodePtr(node)) == end(): \00CHEC" + "K failed: (count) <= (kMaxLength): \00CHECK failed: (result.bucket" + "_index_) == (b & ~static_cast(1)): \00CHECK failed: (ta" + "ble_[b]) == (table_[b ^ 1]): \00CHECK failed: !TableEntryIsTree(b)" + " && !TableEntryIsTree(b ^ 1): \00CHECK failed: (count) == (tree->s" + "ize()): \00CHECK failed: (new_num_buckets) >= (kMinTableSize): \00CH" + "ECK failed: n >= kMinTableSize: \00CHECK failed: (n & (n - 1)) == " + "(0): \00CHECK failed: table_[b] == table_[b + 1] && (b & 1) == 0: " + "\00N6google8protobuf3MapINSt3__212basic_stringIcNS2_11char_traitsI" + "cEENS2_9allocatorIcEEEENS0_5ValueEE8InnerMapE\00N6google8protobuf4" + "hashINSt3__212basic_stringIcNS2_11char_traitsIcEENS2_9allocatorI" + "cEEEEEE\00f == NULL || dynamic_cast(f) != NULL\00/usr/local/incl" + "ude/google/protobuf/stubs/casts.h\00down_cast\00google.protobuf.Stru" + "ct\00N6google8protobuf6StructE\00N6google8protobuf5ValueE\00N6google8p" + "rotobuf8internal12MapEntryImplINS0_27Struct_FieldsEntry_DoNotUse" + "ENS0_11MessageLiteENSt3__212basic_stringIcNS5_11char_traitsIcEEN" + "S5_9allocatorIcEEEENS0_5ValueELNS1_14WireFormatLite9FieldTypeE9E" + "LSE_11ELi0EE15MapEntryWrapperE\00CHECK failed: (n) >= (0): \00google" + ".protobuf.ListValue\00N6google8protobuf9ListValueE\00google.protobuf" + ".Value\00no context factory for root_id: \00N6google8protobuf14Fatal" + "ExceptionE\00google/protobuf/stubs/common.cc\00This program requires" + " version \00%d.%d.%d\00 of the Protocol Buffer runtime library, but " + "the installed version is \00. Please update your library. If you" + " compiled the program yourself, make sure that your headers are " + "from the same version of Protocol Buffers as your link-time libr" + "ary. (Version verification failed in \"\00\".)\00This program was com" + "piled against version \00 of the Protocol Buffer runtime library, " + "which is not compatible with the installed version (\00). Contact" + " the program author for an update. If you compiled the program " + "yourself, make sure that your headers are from the same version " + "of Protocol Buffers as your link-time library. (Version verific" + "ation failed in \"\00[libprotobuf %s %s:%d] %s\n\00INFO\00WARNING\00ERROR\00" + "FATAL\00allocator::allocate(size_t n) 'n' exceeds maximum suppo" + "rted size\00google/protobuf/arena.cc\00CHECK failed: (min_bytes) <= " + "(std::numeric_limits::max() - kBlockHeaderSize): \00google" + "/protobuf/generated_message_util.cc\00Not implemented field number" + " \00 with type \00CHECK failed: (scc->visit_status.load(std::memory_" + "order_relaxed)) == (SCCInfoBase::kRunning): \00google/protobuf/mes" + "sage_lite.cc\00CHECK failed: !coded_out.HadError(): \00(cannot deter" + "mine missing fields for lite message)\00N6google8protobuf11Message" + "LiteE\00google/protobuf/repeated_field.cc\00CHECK failed: (new_size)" + " <= ((std::numeric_limits::max() - kRepHeaderSize) / siz" + "eof(old_rep->elements[0])): \00Requested size is too large to fit " + "into size_t.\00google/protobuf/wire_format_lite.cc\00CHECK failed: (" + "value.size()) <= (kint32max): \00serializing\00parsing\00 '%s'\00String " + "field\00 contains invalid \00UTF-8 data when \00 a protocol \00buffer. U" + "se the 'bytes' type if you intend to send raw \00bytes. \00google/pr" + "otobuf/io/coded_stream.cc\00CHECK failed: (buffer_size) >= (0): \00A" + " protocol message was rejected because it was too big (more than" + " \00 bytes). To increase the limit (or to disable these warnings)" + ", see CodedInputStream::SetTotalBytesLimit() in google/protobuf/" + "io/coded_stream.h.\00google/protobuf/io/zero_copy_stream_impl_lite" + ".cc\00CHECK failed: (count) >= (0): \00CHECK failed: (last_returned_" + "size_) > (0): \00BackUp() can only be called after a successful Ne" + "xt().\00CHECK failed: (count) <= (last_returned_size_): \00N6google8" + "protobuf2io17ArrayOutputStreamE\00CHECK failed: target_ != NULL: \00" + "CHECK failed: (count) <= (target_->size()): \00Cannot allocate buf" + "fer larger than kint32max for \00StringOutputStream.\00N6google8prot" + "obuf2io18StringOutputStreamE\00google/protobuf/io/zero_copy_stream" + ".cc\00This ZeroCopyOutputStream doesn't support aliasing. Reaching" + " here usually means a ZeroCopyOutputStream implementation bug.\00N" + "6google8protobuf2io20ZeroCopyOutputStreamE\00-+ 0X0x\00(null)\00-0X+" + "0X 0X-0x+0x 0x\00inf\00INF\00nan\00NAN\00std::bad_function_call\00NSt3__217b" + "ad_function_callE\00mutex lock failed\00%d\00%u\00%lu\00terminating with %" + "s exception of type %s: %s\00terminating with %s exception of type" + " %s\00terminating with %s foreign exception\00terminating\00uncaught\00S" + "t9exception\00N10__cxxabiv116__shim_type_infoE\00St9type_info\00N10__c" + "xxabiv120__si_class_type_infoE\00N10__cxxabiv117__class_type_infoE" + "\00terminate_handler unexpectedly returned\00_Z\00___Z\00_block_invoke\00i" + "nvocation function for block in \00void\00bool\00char\00signed char\00unsi" + "gned char\00short\00unsigned short\00int\00unsigned int\00long\00unsigned lo" + "ng\00long long\00__int128\00unsigned __int128\00float\00long double\00__floa" + "t128\00...\00decimal64\00decimal128\00decimal32\00decimal16\00char32_t\00char1" + "6_t\00auto\00decltype(auto)\00std::nullptr_t\00[abi:\00]\00N12_GLOBAL__N_116" + "itanium_demangle10AbiTagAttrE\00N12_GLOBAL__N_116itanium_demangle4" + "NodeE\00allocator\00basic_string\00string\00istream\00ostream\00iostream\00std" + "::allocator\00std::basic_string\00std::string\00std::istream\00std::ostr" + "eam\00std::iostream\00N12_GLOBAL__N_116itanium_demangle19SpecialSubs" + "titutionE\00 imaginary\00N12_GLOBAL__N_116itanium_demangle20PostfixQ" + "ualifiedTypeE\00 complex\00)\00 \00(\00&\00&&\00N12_GLOBAL__N_116itanium_deman" + "gle13ReferenceTypeE\00objc_object\00*\00id<\00>\00N12_GLOBAL__N_116itanium" + "_demangle11PointerTypeE\00N12_GLOBAL__N_116itanium_demangle20NameW" + "ithTemplateArgsE\00<\00, \00N12_GLOBAL__N_116itanium_demangle12Templat" + "eArgsE\00N12_GLOBAL__N_116itanium_demangle13ParameterPackE\00wchar_t" + "\00b0E\00b1E\00u\00l\00ul\00ll\00ull\00N12_GLOBAL__N_116itanium_demangle15Intege" + "rCastExprE\00%LaL\00N12_GLOBAL__N_116itanium_demangle16FloatLiteralI" + "mplIeEE\00%a\00N12_GLOBAL__N_116itanium_demangle16FloatLiteralImplId" + "EE\00%af\00N12_GLOBAL__N_116itanium_demangle16FloatLiteralImplIfEE\00t" + "rue\00false\00N12_GLOBAL__N_116itanium_demangle8BoolExprE\00-\00N12_GLOB" + "AL__N_116itanium_demangle14IntegerLiteralE\00N12_GLOBAL__N_116itan" + "ium_demangle20TemplateArgumentPackE\00gs\00&=\00=\00alignof (\00,\00~\00.*\00/\00/" + "=\00^\00^=\00==\00>=\00<=\00<<\00<<=\00-=\00*=\00--\00!=\00!\00||\00|\00|=\00->*\00+\00+=\00++\00->\00%\00%=" + "\00>>\00>>=\00sizeof (\00typeid (\00throw\00throw \00N12_GLOBAL__N_116itanium_" + "demangle9ThrowExprE\00N12_GLOBAL__N_116itanium_demangle12InitListE" + "xprE\00N12_GLOBAL__N_116itanium_demangle13NodeArrayNodeE\00sizeof..." + " (\00N12_GLOBAL__N_116itanium_demangle13EnclosingExprE\00sizeof...(\00" + "N12_GLOBAL__N_116itanium_demangle22ParameterPackExpansionE\00N12_G" + "LOBAL__N_116itanium_demangle19SizeofParamPackExprE\00static_cast\00>" + "(\00N12_GLOBAL__N_116itanium_demangle8CastExprE\00reinterpret_cast\00)" + " ? (\00) : (\00N12_GLOBAL__N_116itanium_demangle15ConditionalExprE\00n" + "oexcept (\00nw\00na\00pi\00::operator \00new\00[]\00N12_GLOBAL__N_116itanium_d" + "emangle7NewExprE\00N12_GLOBAL__N_116itanium_demangle11PostfixExprE" + "\00 ... \00 = \00N12_GLOBAL__N_116itanium_demangle15BracedRangeExprE\00N" + "12_GLOBAL__N_116itanium_demangle10BracedExprE\00_GLOBAL__N\00(anonym" + "ous namespace)\00N12_GLOBAL__N_116itanium_demangle8NameTypeE\00)[\00N1" + "2_GLOBAL__N_116itanium_demangle18ArraySubscriptExprE\00.\00N12_GLOBA" + "L__N_116itanium_demangle10MemberExprE\00srN\00sr\00::\00N12_GLOBAL__N_11" + "6itanium_demangle19GlobalQualifiedNameE\00dn\00on\00operator&&\00operato" + "r&\00operator&=\00operator=\00operator()\00operator,\00operator~\00operator " + "delete[]\00operator*\00operator/\00operator/=\00operator^\00operator^=\00ope" + "rator==\00operator>=\00operator>\00operator[]\00operator<=\00operator<<\00op" + "erator<<=\00operator<\00operator-\00operator-=\00operator*=\00operator--\00o" + "perator new[]\00operator!=\00operator!\00operator new\00operator||\00opera" + "tor|\00operator|=\00operator->*\00operator+\00operator+=\00operator++\00oper" + "ator->\00operator?\00operator%\00operator%=\00operator>>\00operator>>=\00ope" + "rator<=>\00operator\"\" \00N12_GLOBAL__N_116itanium_demangle15LiteralO" + "peratorE\00operator delete\00operator \00N12_GLOBAL__N_116itanium_dema" + "ngle22ConversionOperatorTypeE\00N12_GLOBAL__N_116itanium_demangle8" + "DtorNameE\00N12_GLOBAL__N_116itanium_demangle13QualifiedNameE\00dyna" + "mic_cast\00delete\00[] \00N12_GLOBAL__N_116itanium_demangle10DeleteExp" + "rE\00cv\00)(\00N12_GLOBAL__N_116itanium_demangle14ConversionExprE\00N12_" + "GLOBAL__N_116itanium_demangle8CallExprE\00const_cast\00N12_GLOBAL__N" + "_116itanium_demangle10PrefixExprE\00) \00 (\00N12_GLOBAL__N_116itanium" + "_demangle10BinaryExprE\00aa\00an\00aN\00aS\00cm\00ds\00dv\00dV\00eo\00eO\00eq\00ge\00gt\00le" + "\00ls\00lS\00lt\00mi\00mI\00ml\00mL\00ne\00oo\00or\00oR\00pl\00pL\00rm\00rM\00rs\00rS\00... \00 ...\00N1" + "2_GLOBAL__N_116itanium_demangle8FoldExprE\00fp\00fL\00N12_GLOBAL__N_11" + "6itanium_demangle13FunctionParamE\00N12_GLOBAL__N_116itanium_deman" + "gle24ForwardTemplateReferenceE\00Ts\00struct\00Tu\00union\00Te\00enum\00N12_GL" + "OBAL__N_116itanium_demangle22ElaboratedTypeSpefTypeE\00StL\00St\00std:" + ":\00N12_GLOBAL__N_116itanium_demangle16StdQualifiedNameE\00DC\00N12_GL" + "OBAL__N_116itanium_demangle21StructuredBindingNameE\00Ut\00Ul\00vE\00'la" + "mbda\00'(\00N12_GLOBAL__N_116itanium_demangle15ClosureTypeNameE\00'unn" + "amed\00'\00N12_GLOBAL__N_116itanium_demangle15UnnamedTypeNameE\00strin" + "g literal\00N12_GLOBAL__N_116itanium_demangle9LocalNameE\00std\00N12_G" + "LOBAL__N_116itanium_demangle12CtorDtorNameE\00basic_istream\00basic_" + "ostream\00basic_iostream\00std::basic_string, std::allocator >\00std::basic_istream >\00std::basic_ostream " + ">\00std::basic_iostream >\00N12_GLOBAL_" + "_N_116itanium_demangle27ExpandedSpecialSubstitutionE\00N12_GLOBAL_" + "_N_116itanium_demangle10NestedNameE\00::*\00N12_GLOBAL__N_116itanium" + "_demangle19PointerToMemberTypeE\00[\00N12_GLOBAL__N_116itanium_deman" + "gle9ArrayTypeE\00Dv\00 vector[\00N12_GLOBAL__N_116itanium_demangle10Ve" + "ctorTypeE\00pixel vector[\00N12_GLOBAL__N_116itanium_demangle15Pixel" + "VectorTypeE\00decltype(\00double\00unsigned long long\00objcproto\00 const" + "\00 volatile\00 restrict\00N12_GLOBAL__N_116itanium_demangle8QualTypeE" + "\00N12_GLOBAL__N_116itanium_demangle17VendorExtQualTypeE\00N12_GLOBA" + "L__N_116itanium_demangle13ObjCProtoNameE\00Do\00noexcept\00DO\00Dw\00Dx\00RE" + "\00OE\00 &\00 &&\00N12_GLOBAL__N_116itanium_demangle12FunctionTypeE\00thro" + "w(\00N12_GLOBAL__N_116itanium_demangle20DynamicExceptionSpecE\00noex" + "cept(\00N12_GLOBAL__N_116itanium_demangle12NoexceptSpecE\00N12_GLOBA" + "L__N_116itanium_demangle11SpecialNameE\00N12_GLOBAL__N_116itanium_" + "demangle9DotSuffixE\00Ua9enable_ifI\00N12_GLOBAL__N_116itanium_deman" + "gle16FunctionEncodingE\00 [enable_if:\00N12_GLOBAL__N_116itanium_dem" + "angle12EnableIfAttrE\00thread-local wrapper routine for \00reference" + " temporary for \00guard variable for \00non-virtual thunk to \00virtua" + "l thunk to \00thread-local initialization routine for \00constructio" + "n vtable for \00-in-\00N12_GLOBAL__N_116itanium_demangle21CtorVtable" + "SpecialNameE\00covariant return thunk to \00typeinfo name for \00typei" + "nfo for \00VTT for \00vtable for \00St11logic_error\00St12length_error\00N" + "10__cxxabiv117__pbase_type_infoE\00N10__cxxabiv119__pointer_type_i" + "nfoE\00N10__cxxabiv123__fundamental_type_infoE\00v\00c\00h\00N10__cxxabiv1" + "21__vmi_class_type_infoE") (func $globalCtors (type $8) call $__GLOBAL__sub_I_envoy_filter_http_wasm_example_cc - i32.const 24568 + i32.const 24696 i64.const 0 i64.store align=4 - i32.const 24576 + i32.const 24704 i64.const 0 i64.store align=4 - i32.const 24584 + i32.const 24712 i32.const 1065353216 i32.store - i32.const 24588 + i32.const 24716 i64.const 0 i64.store align=4 - i32.const 24596 + i32.const 24724 i64.const 0 i64.store align=4 - i32.const 24604 + i32.const 24732 i32.const 1065353216 i32.store call $__GLOBAL__sub_I_status_cc @@ -632,67 +634,221 @@ (func $__ZN18ExampleRootContext7onStartENSt3__210unique_ptrI8WasmDataNS0_14default_deleteIS2_EEEE (type $3) (param $0 i32) (param $1 i32) - i32.const 0 - i32.const 11035 - i32.const 7 - call $_proxy_log - drop - ) - - (func $__ZN14ExampleContext8onCreateEv (type $0) - (param $0 i32) - (local $1 i32) (local $2 i32) (local $3 i32) + (local $4 i32) + (local $5 i32) + (local $6 i32) + (local $7 i32) + (local $8 i32) + (local $9 i32) + (local $10 i32) global.get $32 - local.set $1 + local.set $0 global.get $32 - i32.const 32 + i32.const 112 i32.add global.set $32 - local.get $1 + local.get $0 + i32.const 84 + i32.add + local.set $1 + local.get $0 + i32.const 96 + i32.add + local.set $4 + local.get $0 + i32.const 72 + i32.add + local.set $5 + local.get $0 + i32.const 60 + i32.add + local.set $6 + local.get $0 + i32.const 48 + i32.add + local.set $7 + local.get $0 + i32.const 36 + i32.add + local.set $8 + local.get $0 i32.const 12 i32.add + local.tee $3 + i64.const 0 + i64.store align=4 + local.get $3 + i32.const 0 + i32.store offset=8 + local.get $3 + i32.const 1 + i32.store8 offset=11 + local.get $3 + i32.const 91 + i32.store8 + local.get $3 + i32.const 0 + i32.store8 offset=1 + local.get $0 + i32.const 24 + i32.add + local.tee $9 + local.get $3 + i32.const 11035 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc + local.tee $2 + i64.load align=4 + i64.store align=4 + local.get $9 + local.get $2 + i32.load offset=8 + i32.store offset=8 + local.get $2 + i64.const 0 + i64.store align=4 + local.get $2 + i32.const 0 + i32.store offset=8 + local.get $8 + local.get $9 + i32.const 11069 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc local.tee $2 + i64.load align=4 + i64.store align=4 + local.get $8 + local.get $2 + i32.load offset=8 + i32.store offset=8 + local.get $2 + i64.const 0 + i64.store align=4 + local.get $2 + i32.const 0 + i32.store offset=8 + local.get $0 + i32.const 30 + call $__ZNSt3__29to_stringEi + local.get $7 + local.get $8 local.get $0 - i32.const -64 - i32.sub i32.load - call $__ZNSt3__29to_stringEj - local.get $1 + local.get $0 + local.get $0 + i32.load8_s offset=11 + local.tee $2 + i32.const 0 + i32.lt_s + local.tee $10 + select + local.get $0 + i32.load offset=4 local.get $2 - i32.const 11043 - call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6insertEmPKc - local.tee $0 + i32.const 255 + i32.and + local.get $10 + select + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKcm + local.tee $2 i64.load align=4 i64.store align=4 + local.get $7 + local.get $2 + i32.load offset=8 + i32.store offset=8 + local.get $2 + i64.const 0 + i64.store align=4 + local.get $2 + i32.const 0 + i32.store offset=8 + local.get $6 + local.get $7 + i32.const 11071 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc + local.tee $2 + i64.load align=4 + i64.store align=4 + local.get $6 + local.get $2 + i32.load offset=8 + i32.store offset=8 + local.get $2 + i64.const 0 + i64.store align=4 + local.get $2 + i32.const 0 + i32.store offset=8 + local.get $5 + local.get $6 + i32.const 11075 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc + local.tee $2 + i64.load align=4 + i64.store align=4 + local.get $5 + local.get $2 + i32.load offset=8 + i32.store offset=8 + local.get $2 + i64.const 0 + i64.store align=4 + local.get $2 + i32.const 0 + i32.store offset=8 + local.get $4 + local.get $5 + i32.const 11083 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc + local.tee $2 + i64.load align=4 + i64.store align=4 + local.get $4 + local.get $2 + i32.load offset=8 + i32.store offset=8 + local.get $2 + i64.const 0 + i64.store align=4 + local.get $2 + i32.const 0 + i32.store offset=8 local.get $1 - local.get $0 + local.get $4 + i32.const 11075 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc + local.tee $2 + i64.load align=4 + i64.store align=4 + local.get $1 + local.get $2 i32.load offset=8 i32.store offset=8 - local.get $0 + local.get $2 i64.const 0 i64.store align=4 - local.get $0 + local.get $2 i32.const 0 i32.store offset=8 - i32.const 3 + i32.const 0 local.get $1 i32.load local.get $1 local.get $1 i32.load8_s offset=11 - local.tee $0 + local.tee $2 i32.const 0 i32.lt_s - local.tee $3 + local.tee $10 select local.get $1 i32.load offset=4 - local.get $0 + local.get $2 i32.const 255 i32.and - local.get $3 + local.get $10 select call $_proxy_log drop @@ -705,25 +861,87 @@ i32.load call $_free end ;; $if - local.get $2 + local.get $4 i32.load8_s offset=11 i32.const 0 - i32.ge_s + i32.lt_s if $if_0 - local.get $1 + local.get $4 + i32.load + call $_free + end ;; $if_0 + local.get $5 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_1 + local.get $5 + i32.load + call $_free + end ;; $if_1 + local.get $6 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_2 + local.get $6 + i32.load + call $_free + end ;; $if_2 + local.get $7 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_3 + local.get $7 + i32.load + call $_free + end ;; $if_3 + local.get $0 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_4 + local.get $0 + i32.load + call $_free + end ;; $if_4 + local.get $8 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_5 + local.get $8 + i32.load + call $_free + end ;; $if_5 + local.get $9 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_6 + local.get $9 + i32.load + call $_free + end ;; $if_6 + local.get $3 + i32.load8_s offset=11 + i32.const 0 + i32.ge_s + if $if_7 + local.get $0 global.set $32 return - end ;; $if_0 - local.get $2 + end ;; $if_7 + local.get $3 i32.load call $_free - local.get $1 + local.get $0 global.set $32 ) - (func $__ZN14ExampleContext16onRequestHeadersEv (type $4) + (func $__ZN14ExampleContext8onCreateEv (type $0) (param $0 i32) - (result i32) (local $1 i32) (local $2 i32) (local $3 i32) @@ -737,100 +955,200 @@ (local $11 i32) (local $12 i32) (local $13 i32) - (local $14 i32) - (local $15 i32) - (local $16 i32) - (local $17 i32) global.get $32 - local.set $8 + local.set $2 global.get $32 - i32.const 96 + i32.const 144 i32.add global.set $32 - local.get $8 - i32.const 72 + local.get $2 + i32.const 108 i32.add local.set $3 - local.get $8 - i32.const 60 + local.get $2 + i32.const 120 i32.add - local.set $1 - local.get $8 - i32.const 48 + local.set $7 + local.get $2 + i32.const 96 i32.add - local.set $2 - local.get $8 - i32.const 24 + local.set $8 + local.get $2 + i32.const 84 i32.add - local.set $4 - local.get $8 - i32.const 36 + local.set $9 + local.get $2 + i32.const 72 i32.add local.set $10 - local.get $8 - i32.const 12 + local.get $2 + i32.const 60 i32.add local.set $11 - local.get $8 - local.tee $7 - i32.const 84 + local.get $2 + i32.const 24 + i32.add + local.set $5 + local.get $2 + i32.const 12 + i32.add + local.set $4 + local.get $2 + i32.const 36 i32.add - local.tee $5 - i32.const 32 - call $__Znwm local.tee $6 - i32.store - local.get $5 - i32.const -2147483616 + i64.const 0 + i64.store align=4 + local.get $6 + i32.const 0 i32.store offset=8 - local.get $5 - i32.const 17 - i32.store offset=4 local.get $6 - i32.const 11053 - i64.load align=1 - i64.store align=1 + i32.const 1 + i32.store8 offset=11 local.get $6 - i32.const 11061 - i64.load align=1 - i64.store offset=8 align=1 + i32.const 91 + i32.store8 local.get $6 - i32.const 11069 - i32.load8_s - i32.store8 offset=16 + i32.const 0 + i32.store8 offset=1 + local.get $2 + i32.const 48 + i32.add + local.tee $12 local.get $6 + i32.const 11035 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc + local.tee $1 + i64.load align=4 + i64.store align=4 + local.get $12 + local.get $1 + i32.load offset=8 + i32.store offset=8 + local.get $1 + i64.const 0 + i64.store align=4 + local.get $1 i32.const 0 - i32.store8 offset=17 - local.get $3 - local.get $0 - i32.const -64 - i32.sub - i32.load - call $__ZNSt3__29to_stringEj + i32.store offset=8 + local.get $11 + local.get $12 + i32.const 11069 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc + local.tee $1 + i64.load align=4 + i64.store align=4 + local.get $11 + local.get $1 + i32.load offset=8 + i32.store offset=8 + local.get $1 + i64.const 0 + i64.store align=4 local.get $1 + i32.const 0 + i32.store offset=8 + local.get $5 + i32.const 32 + call $__ZNSt3__29to_stringEi + local.get $10 + local.get $11 local.get $5 - local.get $3 i32.load - local.get $3 - local.get $3 + local.get $5 + local.get $5 i32.load8_s offset=11 - local.tee $0 + local.tee $1 i32.const 0 i32.lt_s - local.tee $6 + local.tee $13 select - local.get $3 + local.get $5 i32.load offset=4 - local.get $0 + local.get $1 i32.const 255 i32.and - local.get $6 + local.get $13 select call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKcm - local.tee $0 + local.tee $1 + i64.load align=4 + i64.store align=4 + local.get $10 + local.get $1 + i32.load offset=8 + i32.store offset=8 + local.get $1 + i64.const 0 + i64.store align=4 + local.get $1 + i32.const 0 + i32.store offset=8 + local.get $9 + local.get $10 + i32.const 11071 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc + local.tee $1 + i64.load align=4 + i64.store align=4 + local.get $9 + local.get $1 + i32.load offset=8 + i32.store offset=8 + local.get $1 + i64.const 0 + i64.store align=4 + local.get $1 + i32.const 0 + i32.store offset=8 + local.get $8 + local.get $9 + i32.const 11087 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc + local.tee $1 + i64.load align=4 + i64.store align=4 + local.get $8 + local.get $1 + i32.load offset=8 + i32.store offset=8 + local.get $1 + i64.const 0 + i64.store align=4 + local.get $1 + i32.const 0 + i32.store offset=8 + local.get $7 + local.get $8 + i32.const 11083 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc + local.tee $1 i64.load align=4 i64.store align=4 + local.get $7 + local.get $1 + i32.load offset=8 + i32.store offset=8 + local.get $1 + i64.const 0 + i64.store align=4 local.get $1 + i32.const 0 + i32.store offset=8 + local.get $2 + local.get $0 + i32.const -64 + i32.sub + i32.load + call $__ZNSt3__29to_stringEj + local.get $4 + local.get $2 + i32.const 11096 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6insertEmPKc + local.tee $0 + i64.load align=4 + i64.store align=4 + local.get $4 local.get $0 i32.load offset=8 i32.store offset=8 @@ -840,225 +1158,442 @@ local.get $0 i32.const 0 i32.store offset=8 - i32.const 1 - local.get $1 + local.get $3 + local.get $7 + local.get $4 i32.load - local.get $1 - local.get $1 + local.get $4 + local.get $4 i32.load8_s offset=11 local.tee $0 i32.const 0 i32.lt_s - local.tee $6 + local.tee $1 select - local.get $1 + local.get $4 i32.load offset=4 local.get $0 i32.const 255 i32.and - local.get $6 + local.get $1 select - call $_proxy_log - drop + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKcm + local.tee $0 + i64.load align=4 + i64.store align=4 + local.get $3 + local.get $0 + i32.load offset=8 + i32.store offset=8 + local.get $0 + i64.const 0 + i64.store align=4 + local.get $0 + i32.const 0 + i32.store offset=8 + i32.const 3 + local.get $3 + i32.load + local.get $3 + local.get $3 + i32.load8_s offset=11 + local.tee $0 + i32.const 0 + i32.lt_s + local.tee $1 + select + local.get $3 + i32.load offset=4 + local.get $0 + i32.const 255 + i32.and local.get $1 + select + call $_proxy_log + drop + local.get $3 i32.load8_s offset=11 i32.const 0 i32.lt_s if $if - local.get $1 + local.get $3 i32.load call $_free end ;; $if - local.get $3 + local.get $4 i32.load8_s offset=11 i32.const 0 i32.lt_s if $if_0 - local.get $3 + local.get $4 i32.load call $_free end ;; $if_0 - local.get $5 + local.get $2 i32.load8_s offset=11 i32.const 0 i32.lt_s if $if_1 - local.get $5 + local.get $2 i32.load call $_free end ;; $if_1 - local.get $5 + local.get $7 + i32.load8_s offset=11 i32.const 0 - i32.store - local.get $3 + i32.lt_s + if $if_2 + local.get $7 + i32.load + call $_free + end ;; $if_2 + local.get $8 + i32.load8_s offset=11 i32.const 0 - i32.store + i32.lt_s + if $if_3 + local.get $8 + i32.load + call $_free + end ;; $if_3 + local.get $9 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_4 + local.get $9 + i32.load + call $_free + end ;; $if_4 + local.get $10 + i32.load8_s offset=11 i32.const 0 + i32.lt_s + if $if_5 + local.get $10 + i32.load + call $_free + end ;; $if_5 local.get $5 - local.get $3 - call $_proxy_getHeaderMapPairs - drop - i32.const 8 - call $__Znwm - local.set $6 - local.get $3 - i32.load - local.set $0 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_6 + local.get $5 + i32.load + call $_free + end ;; $if_6 + local.get $11 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_7 + local.get $11 + i32.load + call $_free + end ;; $if_7 + local.get $12 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_8 + local.get $12 + i32.load + call $_free + end ;; $if_8 local.get $6 - local.get $5 - i32.load - local.tee $1 - i32.store + i32.load8_s offset=11 + i32.const 0 + i32.ge_s + if $if_9 + local.get $2 + global.set $32 + return + end ;; $if_9 local.get $6 - local.get $0 - i32.store offset=4 - local.get $5 + i32.load + call $_free + local.get $2 + global.set $32 + ) + + (func $__ZN14ExampleContext16onRequestHeadersEv (type $4) + (param $0 i32) + (result i32) + (local $1 i32) + (local $2 i32) + (local $3 i32) + (local $4 i32) + (local $5 i32) + (local $6 i32) + (local $7 i32) + (local $8 i32) + (local $9 i32) + (local $10 i32) + (local $11 i32) + (local $12 i32) + (local $13 i32) + (local $14 i32) + (local $15 i32) + (local $16 i32) + (local $17 i32) + (local $18 i32) + (local $19 i32) + (local $20 i32) + (local $21 i32) + (local $22 i32) + (local $23 i32) + (local $24 i32) + (local $25 i32) + global.get $32 + local.set $8 + global.get $32 + i32.const 208 + i32.add + global.set $32 + local.get $8 + i32.const 192 + i32.add + local.set $6 + local.get $8 + i32.const 180 + i32.add + local.set $9 + local.get $8 + i32.const 168 + i32.add + local.set $2 + local.get $8 + i32.const 156 + i32.add + local.set $13 + local.get $8 + i32.const 144 + i32.add + local.set $14 + local.get $8 + i32.const 132 + i32.add + local.set $15 + local.get $8 + i32.const 120 + i32.add + local.set $16 + local.get $8 + i32.const 84 + i32.add + local.set $7 + local.get $8 + i32.const 60 + i32.add + local.set $4 + local.get $8 + i32.const 72 + i32.add + local.set $3 + local.get $8 + i32.const 36 + i32.add + local.set $11 + local.get $8 + i32.const 24 + i32.add + local.set $5 + local.get $8 + i32.const 48 + i32.add + local.set $20 + local.get $8 + i32.const 12 + i32.add + local.set $21 + local.get $8 + local.set $17 + local.get $8 + i32.const 96 + i32.add + local.tee $10 + i64.const 0 + i64.store align=4 + local.get $10 i32.const 0 - i32.store - local.get $5 - i32.const 4 + i32.store offset=8 + local.get $10 + i32.const 1 + i32.store8 offset=11 + local.get $10 + i32.const 91 + i32.store8 + local.get $10 + i32.const 0 + i32.store8 offset=1 + local.get $8 + i32.const 108 i32.add - local.tee $14 + local.tee $18 + local.get $10 + i32.const 11035 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc + local.tee $1 + i64.load align=4 + i64.store align=4 + local.get $18 + local.get $1 + i32.load offset=8 + i32.store offset=8 + local.get $1 + i64.const 0 + i64.store align=4 + local.get $1 i32.const 0 - i32.store - local.get $5 + i32.store offset=8 + local.get $16 + local.get $18 + i32.const 11069 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc + local.tee $1 + i64.load align=4 + i64.store align=4 + local.get $16 + local.get $1 + i32.load offset=8 + i32.store offset=8 + local.get $1 + i64.const 0 + i64.store align=4 + local.get $1 i32.const 0 i32.store offset=8 + local.get $7 + i32.const 35 + call $__ZNSt3__29to_stringEi + local.get $15 + local.get $16 + local.get $7 + i32.load + local.get $7 + local.get $7 + i32.load8_s offset=11 + local.tee $1 + i32.const 0 + i32.lt_s + local.tee $12 + select + local.get $7 + i32.load offset=4 + local.get $1 + i32.const 255 + i32.and + local.get $12 + select + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKcm + local.tee $1 + i64.load align=4 + i64.store align=4 + local.get $15 + local.get $1 + i32.load offset=8 + i32.store offset=8 local.get $1 - if $if_2 (result i32) - block $block (result i32) - local.get $1 - i32.const 4 - i32.add - local.set $0 - local.get $1 - i32.load - local.tee $12 - if $if_3 - local.get $5 - local.get $12 - call $__ZNSt3__26vectorINS_4pairINS_17basic_string_viewIcNS_11char_traitsIcEEEES5_EENS_9allocatorIS6_EEE8__appendEm - local.get $12 - i32.const 0 - i32.le_s - if $if_4 - local.get $5 - i32.load - local.set $1 - local.get $14 - br $block - end ;; $if_4 - local.get $5 - i32.load - local.set $1 - local.get $0 - local.get $12 - i32.const 3 - i32.shl - i32.add - local.set $9 - loop $loop - local.get $0 - i32.load - local.set $16 - local.get $13 - i32.const 4 - i32.shl - local.get $1 - i32.add - local.get $9 - i32.store - local.get $13 - i32.const 4 - i32.shl - local.get $1 - i32.add - local.get $16 - i32.store offset=4 - local.get $0 - i32.load offset=4 - local.set $17 - local.get $0 - i32.const 8 - i32.add - local.set $0 - local.get $5 - i32.load - local.tee $1 - local.get $13 - i32.const 4 - i32.shl - i32.add - local.get $16 - i32.const 1 - i32.add - local.get $9 - i32.add - local.tee $9 - i32.store offset=8 - local.get $13 - i32.const 4 - i32.shl - local.get $1 - i32.add - local.get $17 - i32.store offset=12 - local.get $9 - local.get $17 - i32.const 1 - i32.add - i32.add - local.set $9 - local.get $13 - i32.const 1 - i32.add - local.tee $13 - local.get $12 - i32.ne - br_if $loop - end ;; $loop - else - i32.const 0 - local.set $1 - end ;; $if_3 - local.get $14 - end ;; $block - else - i32.const 0 - local.set $1 - local.get $14 - end ;; $if_2 - local.set $13 - local.get $3 i64.const 0 i64.store align=4 - local.get $3 + local.get $1 i32.const 0 i32.store offset=8 - local.get $3 - i32.const 9 - i32.store8 offset=11 - local.get $3 + local.get $14 + local.get $15 i32.const 11071 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc + local.tee $1 + i64.load align=4 + i64.store align=4 + local.get $14 + local.get $1 + i32.load offset=8 + i32.store offset=8 + local.get $1 + i64.const 0 + i64.store align=4 + local.get $1 + i32.const 0 + i32.store offset=8 + local.get $13 + local.get $14 + i32.const 11106 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc + local.tee $1 + i64.load align=4 + i64.store align=4 + local.get $13 + local.get $1 + i32.load offset=8 + i32.store offset=8 + local.get $1 + i64.const 0 + i64.store align=4 + local.get $1 + i32.const 0 + i32.store offset=8 + local.get $9 + local.get $13 + i32.const 11083 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc + local.tee $1 + i64.load align=4 + i64.store align=4 + local.get $9 + local.get $1 + i32.load offset=8 + i32.store offset=8 + local.get $1 + i64.const 0 + i64.store align=4 + local.get $1 + i32.const 0 + i32.store offset=8 + i32.const 32 + call $__Znwm + local.tee $1 + i32.const 11123 i64.load align=1 i64.store align=1 - local.get $3 - i32.const 11079 + local.get $1 + i32.const 11131 + i64.load align=1 + i64.store offset=8 align=1 + local.get $1 + i32.const 11139 i32.load8_s - i32.store8 offset=8 - local.get $3 + i32.store8 offset=16 + local.get $1 i32.const 0 - i32.store8 offset=9 - local.get $4 - local.get $13 - i32.load + i32.store8 offset=17 + local.get $6 + local.get $9 local.get $1 + i32.const 17 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKcm + local.tee $12 + i64.load align=4 + i64.store align=4 + local.get $6 + local.get $12 + i32.load offset=8 + i32.store offset=8 + local.get $12 + i64.const 0 + i64.store align=4 + local.get $12 + i32.const 0 + i32.store offset=8 + local.get $4 + local.get $0 + i32.const -64 i32.sub - i32.const 4 - i32.shr_s - call $__ZNSt3__29to_stringEm + i32.load + call $__ZNSt3__29to_stringEj local.get $2 - local.get $3 + local.get $6 local.get $4 i32.load local.get $4 @@ -1067,14 +1602,14 @@ local.tee $0 i32.const 0 i32.lt_s - local.tee $1 + local.tee $12 select local.get $4 i32.load offset=4 local.get $0 i32.const 255 i32.and - local.get $1 + local.get $12 select call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKcm local.tee $0 @@ -1090,7 +1625,7 @@ local.get $0 i32.const 0 i32.store offset=8 - i32.const 2 + i32.const 1 local.get $2 i32.load local.get $2 @@ -1099,14 +1634,14 @@ local.tee $0 i32.const 0 i32.lt_s - local.tee $1 + local.tee $12 select local.get $2 i32.load offset=4 local.get $0 i32.const 255 i32.and - local.get $1 + local.get $12 select call $_proxy_log drop @@ -1114,715 +1649,435 @@ i32.load8_s offset=11 i32.const 0 i32.lt_s - if $if_5 + if $if local.get $2 i32.load call $_free - end ;; $if_5 + end ;; $if local.get $4 i32.load8_s offset=11 i32.const 0 i32.lt_s - if $if_6 + if $if_0 local.get $4 i32.load call $_free - end ;; $if_6 - local.get $3 + end ;; $if_0 + local.get $6 i32.load8_s offset=11 i32.const 0 i32.lt_s - if $if_7 - local.get $3 - i32.load - call $_free - end ;; $if_7 - local.get $5 - i32.load - local.tee $1 - local.get $14 - i32.load - local.tee $14 - i32.eq - if $if_8 - local.get $1 - local.set $15 - else - block $block_0 - block $block_1 - block $block_2 - loop $loop_0 - local.get $4 - i64.const 0 - i64.store align=4 - local.get $4 - i32.const 0 - i32.store offset=8 - local.get $1 - i32.load - local.set $12 - local.get $1 - i32.load offset=4 - local.tee $2 - i32.const -17 - i32.gt_u - br_if $block_2 - block $block_3 - block $block_4 - local.get $2 - i32.const 11 - i32.lt_u - if $if_9 (result i32) - local.get $4 - local.get $2 - i32.store8 offset=11 - local.get $2 - if $if_10 (result i32) - local.get $4 - local.set $0 - br $block_4 - else - local.get $4 - end ;; $if_10 - else - local.get $4 - local.get $2 - i32.const 16 - i32.add - i32.const -16 - i32.and - local.tee $9 - call $__Znwm - local.tee $0 - i32.store - local.get $4 - local.get $9 - i32.const -2147483648 - i32.or - i32.store offset=8 - local.get $4 - local.get $2 - i32.store offset=4 - br $block_4 - end ;; $if_9 - local.set $0 - br $block_3 - end ;; $block_4 - local.get $0 - local.get $12 - local.get $2 - call $_memcpy - drop - end ;; $block_3 - local.get $0 - local.get $2 - i32.add - i32.const 0 - i32.store8 - local.get $11 - i64.const 0 - i64.store align=4 - local.get $11 - i32.const 0 - i32.store offset=8 - local.get $11 - i32.const 4 - i32.store8 offset=11 - local.get $11 - i32.const 540945696 - i32.store - local.get $11 - i32.const 0 - i32.store8 offset=4 - local.get $3 - local.get $4 - local.get $11 - i32.const 4 - call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKcm - local.tee $0 - i64.load align=4 - i64.store align=4 - local.get $3 - local.get $0 - i32.load offset=8 - i32.store offset=8 - local.get $0 - i64.const 0 - i64.store align=4 - local.get $0 - i32.const 0 - i32.store offset=8 - local.get $7 - i64.const 0 - i64.store align=4 - local.get $7 - i32.const 0 - i32.store offset=8 - local.get $1 - i32.load offset=8 - local.set $12 - local.get $1 - i32.load offset=12 - local.tee $2 - i32.const -17 - i32.gt_u - br_if $block_1 - block $block_5 - block $block_6 - local.get $2 - i32.const 11 - i32.lt_u - if $if_11 (result i32) - local.get $7 - local.get $2 - i32.store8 offset=11 - local.get $2 - if $if_12 (result i32) - local.get $7 - local.set $0 - br $block_6 - else - local.get $7 - end ;; $if_12 - else - local.get $7 - local.get $2 - i32.const 16 - i32.add - i32.const -16 - i32.and - local.tee $9 - call $__Znwm - local.tee $0 - i32.store - local.get $7 - local.get $9 - i32.const -2147483648 - i32.or - i32.store offset=8 - local.get $7 - local.get $2 - i32.store offset=4 - br $block_6 - end ;; $if_11 - local.set $0 - br $block_5 - end ;; $block_6 - local.get $0 - local.get $12 - local.get $2 - call $_memcpy - drop - end ;; $block_5 - local.get $0 - local.get $2 - i32.add - i32.const 0 - i32.store8 - local.get $10 - local.get $3 - local.get $7 - i32.load - local.get $7 - local.get $7 - i32.load8_s offset=11 - local.tee $0 - i32.const 0 - i32.lt_s - local.tee $2 - select - local.get $7 - i32.load offset=4 - local.get $0 - i32.const 255 - i32.and - local.get $2 - select - call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKcm - local.tee $0 - i64.load align=4 - i64.store align=4 - local.get $10 - local.get $0 - i32.load offset=8 - i32.store offset=8 - local.get $0 - i64.const 0 - i64.store align=4 - local.get $0 - i32.const 0 - i32.store offset=8 - i32.const 2 - local.get $10 - i32.load - local.get $10 - local.get $10 - i32.load8_s offset=11 - local.tee $0 - i32.const 0 - i32.lt_s - local.tee $2 - select - local.get $10 - i32.load offset=4 - local.get $0 - i32.const 255 - i32.and - local.get $2 - select - call $_proxy_log - drop - local.get $10 - i32.load8_s offset=11 - i32.const 0 - i32.lt_s - if $if_13 - local.get $10 - i32.load - call $_free - end ;; $if_13 - local.get $7 - i32.load8_s offset=11 - i32.const 0 - i32.lt_s - if $if_14 - local.get $7 - i32.load - call $_free - end ;; $if_14 - local.get $3 - i32.load8_s offset=11 - i32.const 0 - i32.lt_s - if $if_15 - local.get $3 - i32.load - call $_free - end ;; $if_15 - local.get $11 - i32.load8_s offset=11 - i32.const 0 - i32.lt_s - if $if_16 - local.get $11 - i32.load - call $_free - end ;; $if_16 - local.get $4 - i32.load8_s offset=11 - i32.const 0 - i32.lt_s - if $if_17 - local.get $4 - i32.load - call $_free - end ;; $if_17 - local.get $1 - i32.const 16 - i32.add - local.tee $1 - local.get $14 - i32.ne - br_if $loop_0 - end ;; $loop_0 - local.get $5 - i32.load - local.set $15 - br $block_0 - end ;; $block_2 - call $_abort - br $block_0 - end ;; $block_1 - call $_abort - end ;; $block_0 - end ;; $if_8 - local.get $15 - i32.eqz - if $if_18 + if $if_1 local.get $6 i32.load call $_free - local.get $6 - call $_free - local.get $8 - global.set $32 - i32.const 0 - return - end ;; $if_18 - local.get $13 - local.get $15 - i32.store - local.get $15 - call $_free - local.get $6 - i32.load - call $_free - local.get $6 - call $_free - local.get $8 - global.set $32 - i32.const 0 - ) - - (func $__ZN14ExampleContext17onResponseHeadersEv (type $4) - (param $0 i32) - (result i32) - (local $1 i32) - (local $2 i32) - (local $3 i32) - (local $4 i32) - (local $5 i32) - (local $6 i32) - (local $7 i32) - (local $8 i32) - (local $9 i32) - (local $10 i32) - (local $11 i32) - (local $12 i32) - (local $13 i32) - (local $14 i32) - (local $15 i32) - (local $16 i32) - global.get $32 - local.set $8 - global.get $32 - i32.const 96 - i32.add - global.set $32 - local.get $8 - i32.const 72 - i32.add - local.set $3 - local.get $8 - i32.const 60 - i32.add - local.set $1 - local.get $8 - i32.const 48 - i32.add - local.set $2 - local.get $8 - i32.const 24 - i32.add - local.set $4 - local.get $8 - i32.const 36 - i32.add - local.set $10 - local.get $8 - i32.const 12 - i32.add - local.set $11 - local.get $8 - local.tee $7 - i32.const 84 - i32.add - local.tee $5 - i32.const 32 - call $__Znwm - local.tee $6 - i32.store - local.get $5 - i32.const -2147483616 - i32.store offset=8 - local.get $5 - i32.const 18 - i32.store offset=4 - local.get $6 - i32.const 11081 - i64.load align=1 - i64.store align=1 - local.get $6 - i32.const 11089 - i64.load align=1 - i64.store offset=8 align=1 - local.get $6 - i32.const 11097 - i32.load16_s align=1 - i32.store16 offset=16 align=1 - local.get $6 - i32.const 0 - i32.store8 offset=18 - local.get $3 - local.get $0 - i32.const -64 - i32.sub - i32.load - call $__ZNSt3__29to_stringEj + end ;; $if_1 local.get $1 - local.get $5 - local.get $3 - i32.load - local.get $3 - local.get $3 + call $_free + local.get $9 i32.load8_s offset=11 - local.tee $0 i32.const 0 i32.lt_s - local.tee $6 - select - local.get $3 - i32.load offset=4 - local.get $0 - i32.const 255 - i32.and - local.get $6 - select - call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKcm - local.tee $0 - i64.load align=4 - i64.store align=4 - local.get $1 - local.get $0 - i32.load offset=8 - i32.store offset=8 - local.get $0 - i64.const 0 - i64.store align=4 - local.get $0 + if $if_2 + local.get $9 + i32.load + call $_free + end ;; $if_2 + local.get $13 + i32.load8_s offset=11 i32.const 0 - i32.store offset=8 - i32.const 1 - local.get $1 - i32.load - local.get $1 - local.get $1 + i32.lt_s + if $if_3 + local.get $13 + i32.load + call $_free + end ;; $if_3 + local.get $14 i32.load8_s offset=11 - local.tee $0 i32.const 0 i32.lt_s - local.tee $6 - select - local.get $1 - i32.load offset=4 - local.get $0 - i32.const 255 - i32.and - local.get $6 - select - call $_proxy_log - drop - local.get $1 + if $if_4 + local.get $14 + i32.load + call $_free + end ;; $if_4 + local.get $15 i32.load8_s offset=11 i32.const 0 i32.lt_s - if $if - local.get $1 + if $if_5 + local.get $15 i32.load call $_free - end ;; $if - local.get $3 + end ;; $if_5 + local.get $7 i32.load8_s offset=11 i32.const 0 i32.lt_s - if $if_0 - local.get $3 + if $if_6 + local.get $7 i32.load call $_free - end ;; $if_0 - local.get $5 + end ;; $if_6 + local.get $16 i32.load8_s offset=11 i32.const 0 i32.lt_s - if $if_1 - local.get $5 + if $if_7 + local.get $16 i32.load call $_free - end ;; $if_1 - local.get $5 + end ;; $if_7 + local.get $18 + i32.load8_s offset=11 i32.const 0 - i32.store - local.get $3 + i32.lt_s + if $if_8 + local.get $18 + i32.load + call $_free + end ;; $if_8 + local.get $10 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_9 + local.get $10 + i32.load + call $_free + end ;; $if_9 + local.get $6 i32.const 0 i32.store - i32.const 2 - local.get $5 - local.get $3 + local.get $9 + i32.const 0 + i32.store + i32.const 0 + local.get $6 + local.get $9 call $_proxy_getHeaderMapPairs drop i32.const 8 call $__Znwm - local.set $6 - local.get $3 + local.set $1 + local.get $9 i32.load local.set $0 + local.get $1 local.get $6 - local.get $5 i32.load - local.tee $1 + local.tee $2 i32.store - local.get $6 + local.get $1 local.get $0 i32.store offset=4 - local.get $5 + local.get $6 i32.const 0 i32.store - local.get $5 - i32.const 4 - i32.add - local.tee $14 + local.get $6 i32.const 0 - i32.store - local.get $5 + i32.store offset=4 + local.get $6 i32.const 0 i32.store offset=8 - local.get $1 - if $if_2 (result i32) - block $block (result i32) - local.get $1 - i32.const 4 - i32.add - local.set $0 - local.get $1 - i32.load - local.tee $12 - if $if_3 - local.get $5 - local.get $12 - call $__ZNSt3__26vectorINS_4pairINS_17basic_string_viewIcNS_11char_traitsIcEEEES5_EENS_9allocatorIS6_EEE8__appendEm - local.get $12 - i32.const 0 - i32.le_s - if $if_4 - local.get $5 - i32.load - local.set $1 - local.get $14 - br $block - end ;; $if_4 - local.get $5 + local.get $2 + if $if_10 + local.get $2 + i32.const 4 + i32.add + local.set $0 + local.get $2 + i32.load + local.tee $12 + if $if_11 + local.get $6 + local.get $12 + call $__ZNSt3__26vectorINS_4pairINS_17basic_string_viewIcNS_11char_traitsIcEEEES5_EENS_9allocatorIS6_EEE8__appendEm + local.get $12 + i32.const 0 + i32.gt_s + if $if_12 + local.get $6 i32.load - local.set $1 + local.set $22 + i32.const 0 + local.set $2 local.get $0 local.get $12 i32.const 3 i32.shl i32.add - local.set $9 + local.set $19 loop $loop local.get $0 i32.load - local.set $15 - local.get $13 + local.set $24 + local.get $2 i32.const 4 i32.shl - local.get $1 + local.get $22 i32.add - local.get $9 + local.get $19 i32.store - local.get $13 + local.get $2 i32.const 4 i32.shl - local.get $1 + local.get $22 i32.add - local.get $15 + local.get $24 i32.store offset=4 local.get $0 i32.load offset=4 - local.set $16 + local.set $25 local.get $0 i32.const 8 i32.add local.set $0 - local.get $5 + local.get $6 i32.load - local.tee $1 - local.get $13 + local.tee $22 + local.get $2 i32.const 4 i32.shl i32.add - local.get $15 + local.get $24 i32.const 1 i32.add - local.get $9 + local.get $19 i32.add - local.tee $9 + local.tee $19 i32.store offset=8 - local.get $13 + local.get $2 i32.const 4 i32.shl - local.get $1 + local.get $22 i32.add - local.get $16 + local.get $25 i32.store offset=12 - local.get $9 - local.get $16 + local.get $19 + local.get $25 i32.const 1 i32.add i32.add - local.set $9 - local.get $13 + local.set $19 + local.get $2 i32.const 1 i32.add - local.tee $13 + local.tee $2 local.get $12 i32.ne br_if $loop end ;; $loop - else - i32.const 0 - local.set $1 - end ;; $if_3 - local.get $14 - end ;; $block - else - i32.const 0 - local.set $1 - local.get $14 - end ;; $if_2 - local.set $13 - local.get $3 + end ;; $if_12 + end ;; $if_11 + end ;; $if_10 + local.get $7 i64.const 0 i64.store align=4 - local.get $3 + local.get $7 i32.const 0 i32.store offset=8 - local.get $3 - i32.const 9 + local.get $7 + i32.const 1 i32.store8 offset=11 - local.get $3 + local.get $7 + i32.const 91 + i32.store8 + local.get $7 + i32.const 0 + i32.store8 offset=1 + local.get $10 + local.get $7 + i32.const 11035 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc + local.tee $0 + i64.load align=4 + i64.store align=4 + local.get $10 + local.get $0 + i32.load offset=8 + i32.store offset=8 + local.get $0 + i64.const 0 + i64.store align=4 + local.get $0 + i32.const 0 + i32.store offset=8 + local.get $18 + local.get $10 + i32.const 11069 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc + local.tee $0 + i64.load align=4 + i64.store align=4 + local.get $18 + local.get $0 + i32.load offset=8 + i32.store offset=8 + local.get $0 + i64.const 0 + i64.store align=4 + local.get $0 + i32.const 0 + i32.store offset=8 + local.get $4 + i32.const 38 + call $__ZNSt3__29to_stringEi + local.get $16 + local.get $18 + local.get $4 + i32.load + local.get $4 + local.get $4 + i32.load8_s offset=11 + local.tee $0 + i32.const 0 + i32.lt_s + local.tee $2 + select + local.get $4 + i32.load offset=4 + local.get $0 + i32.const 255 + i32.and + local.get $2 + select + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKcm + local.tee $0 + i64.load align=4 + i64.store align=4 + local.get $16 + local.get $0 + i32.load offset=8 + i32.store offset=8 + local.get $0 + i64.const 0 + i64.store align=4 + local.get $0 + i32.const 0 + i32.store offset=8 + local.get $15 + local.get $16 i32.const 11071 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc + local.tee $0 + i64.load align=4 + i64.store align=4 + local.get $15 + local.get $0 + i32.load offset=8 + i32.store offset=8 + local.get $0 + i64.const 0 + i64.store align=4 + local.get $0 + i32.const 0 + i32.store offset=8 + local.get $14 + local.get $15 + i32.const 11106 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc + local.tee $0 + i64.load align=4 + i64.store align=4 + local.get $14 + local.get $0 + i32.load offset=8 + i32.store offset=8 + local.get $0 + i64.const 0 + i64.store align=4 + local.get $0 + i32.const 0 + i32.store offset=8 + local.get $13 + local.get $14 + i32.const 11083 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc + local.tee $0 + i64.load align=4 + i64.store align=4 + local.get $13 + local.get $0 + i32.load offset=8 + i32.store offset=8 + local.get $0 + i64.const 0 + i64.store align=4 + local.get $0 + i32.const 0 + i32.store offset=8 + local.get $11 + i64.const 0 + i64.store align=4 + local.get $11 + i32.const 0 + i32.store offset=8 + local.get $11 + i32.const 9 + i32.store8 offset=11 + local.get $11 + i32.const 11141 i64.load align=1 i64.store align=1 - local.get $3 - i32.const 11079 + local.get $11 + i32.const 11149 i32.load8_s i32.store8 offset=8 - local.get $3 + local.get $11 i32.const 0 i32.store8 offset=9 - local.get $4 + local.get $9 local.get $13 + local.get $11 + i32.const 9 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKcm + local.tee $0 + i64.load align=4 + i64.store align=4 + local.get $9 + local.get $0 + i32.load offset=8 + i32.store offset=8 + local.get $0 + i64.const 0 + i64.store align=4 + local.get $0 + i32.const 0 + i32.store offset=8 + local.get $5 + local.get $6 + i32.load offset=4 + local.get $6 i32.load - local.get $1 i32.sub i32.const 4 i32.shr_s call $__ZNSt3__29to_stringEm - local.get $2 local.get $3 - local.get $4 + local.get $9 + local.get $5 i32.load - local.get $4 - local.get $4 + local.get $5 + local.get $5 i32.load8_s offset=11 local.tee $0 i32.const 0 i32.lt_s - local.tee $1 + local.tee $2 select - local.get $4 + local.get $5 i32.load offset=4 local.get $0 i32.const 255 i32.and - local.get $1 + local.get $2 select call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKcm local.tee $0 i64.load align=4 i64.store align=4 - local.get $2 + local.get $3 local.get $0 i32.load offset=8 i32.store offset=8 @@ -1833,155 +2088,408 @@ i32.const 0 i32.store offset=8 i32.const 2 - local.get $2 + local.get $3 i32.load - local.get $2 - local.get $2 + local.get $3 + local.get $3 i32.load8_s offset=11 local.tee $0 i32.const 0 i32.lt_s - local.tee $1 + local.tee $2 select - local.get $2 + local.get $3 i32.load offset=4 local.get $0 i32.const 255 i32.and - local.get $1 + local.get $2 select call $_proxy_log drop - local.get $2 + local.get $3 i32.load8_s offset=11 i32.const 0 i32.lt_s - if $if_5 - local.get $2 + if $if_13 + local.get $3 i32.load call $_free - end ;; $if_5 + end ;; $if_13 + local.get $5 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_14 + local.get $5 + i32.load + call $_free + end ;; $if_14 + local.get $9 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_15 + local.get $9 + i32.load + call $_free + end ;; $if_15 + local.get $11 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_16 + local.get $11 + i32.load + call $_free + end ;; $if_16 + local.get $13 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_17 + local.get $13 + i32.load + call $_free + end ;; $if_17 + local.get $14 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_18 + local.get $14 + i32.load + call $_free + end ;; $if_18 + local.get $15 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_19 + local.get $15 + i32.load + call $_free + end ;; $if_19 + local.get $16 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_20 + local.get $16 + i32.load + call $_free + end ;; $if_20 local.get $4 i32.load8_s offset=11 i32.const 0 i32.lt_s - if $if_6 + if $if_21 local.get $4 i32.load call $_free - end ;; $if_6 - local.get $3 + end ;; $if_21 + local.get $18 i32.load8_s offset=11 i32.const 0 i32.lt_s - if $if_7 - local.get $3 + if $if_22 + local.get $18 i32.load call $_free - end ;; $if_7 - local.get $5 - i32.load - local.tee $1 - local.get $14 + end ;; $if_22 + local.get $10 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_23 + local.get $10 + i32.load + call $_free + end ;; $if_23 + local.get $7 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_24 + local.get $7 + i32.load + call $_free + end ;; $if_24 + local.get $6 i32.load - local.tee $14 - i32.ne - if $if_8 - block $block_0 - block $block_1 - loop $loop_0 - block $block_2 + local.tee $2 + local.get $6 + i32.load offset=4 + local.tee $12 + i32.eq + if $if_25 + local.get $2 + local.set $23 + else + block $block + block $block_0 + block $block_1 + loop $loop_0 local.get $4 i64.const 0 i64.store align=4 local.get $4 i32.const 0 i32.store offset=8 - local.get $1 - i32.load - local.set $12 - local.get $1 - i32.load offset=4 - local.tee $2 - i32.const -17 - i32.gt_u - br_if $block_2 - block $block_3 - block $block_4 - local.get $2 - i32.const 11 - i32.lt_u - if $if_9 (result i32) - local.get $4 - local.get $2 - i32.store8 offset=11 - local.get $2 - if $if_10 (result i32) - local.get $4 - local.set $0 - br $block_4 - else - local.get $4 - end ;; $if_10 - else - local.get $4 - local.get $2 - i32.const 16 - i32.add - i32.const -16 - i32.and - local.tee $9 - call $__Znwm - local.tee $0 - i32.store - local.get $4 - local.get $9 - i32.const -2147483648 - i32.or - i32.store offset=8 - local.get $4 - local.get $2 - i32.store offset=4 - br $block_4 - end ;; $if_9 - local.set $0 - br $block_3 - end ;; $block_4 - local.get $0 - local.get $12 - local.get $2 - call $_memcpy - drop - end ;; $block_3 - local.get $0 - local.get $2 - i32.add - i32.const 0 + local.get $4 + i32.const 1 + i32.store8 offset=11 + local.get $4 + i32.const 91 i32.store8 - local.get $11 - i64.const 0 - i64.store align=4 - local.get $11 + local.get $4 i32.const 0 + i32.store8 offset=1 + local.get $7 + local.get $4 + i32.const 11035 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc + local.tee $0 + i64.load align=4 + i64.store align=4 + local.get $7 + local.get $0 + i32.load offset=8 + i32.store offset=8 + local.get $0 + i64.const 0 + i64.store align=4 + local.get $0 + i32.const 0 + i32.store offset=8 + local.get $10 + local.get $7 + i32.const 11069 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc + local.tee $0 + i64.load align=4 + i64.store align=4 + local.get $10 + local.get $0 + i32.load offset=8 i32.store offset=8 + local.get $0 + i64.const 0 + i64.store align=4 + local.get $0 + i32.const 0 + i32.store offset=8 + local.get $11 + i32.const 40 + call $__ZNSt3__29to_stringEi + local.get $18 + local.get $10 + local.get $11 + i32.load + local.get $11 + local.get $11 + i32.load8_s offset=11 + local.tee $0 + i32.const 0 + i32.lt_s + local.tee $3 + select local.get $11 + i32.load offset=4 + local.get $0 + i32.const 255 + i32.and + local.get $3 + select + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKcm + local.tee $0 + i64.load align=4 + i64.store align=4 + local.get $18 + local.get $0 + i32.load offset=8 + i32.store offset=8 + local.get $0 + i64.const 0 + i64.store align=4 + local.get $0 + i32.const 0 + i32.store offset=8 + local.get $16 + local.get $18 + i32.const 11071 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc + local.tee $0 + i64.load align=4 + i64.store align=4 + local.get $16 + local.get $0 + i32.load offset=8 + i32.store offset=8 + local.get $0 + i64.const 0 + i64.store align=4 + local.get $0 + i32.const 0 + i32.store offset=8 + local.get $15 + local.get $16 + i32.const 11106 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc + local.tee $0 + i64.load align=4 + i64.store align=4 + local.get $15 + local.get $0 + i32.load offset=8 + i32.store offset=8 + local.get $0 + i64.const 0 + i64.store align=4 + local.get $0 + i32.const 0 + i32.store offset=8 + local.get $14 + local.get $15 + i32.const 11083 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc + local.tee $0 + i64.load align=4 + i64.store align=4 + local.get $14 + local.get $0 + i32.load offset=8 + i32.store offset=8 + local.get $0 + i64.const 0 + i64.store align=4 + local.get $0 + i32.const 0 + i32.store offset=8 + local.get $5 + i64.const 0 + i64.store align=4 + local.get $5 + i32.const 0 + i32.store offset=8 + local.get $2 + i32.load + local.set $22 + local.get $2 + i32.load offset=4 + local.tee $3 + i32.const -17 + i32.gt_u + br_if $block_1 + block $block_2 + block $block_3 + local.get $3 + i32.const 11 + i32.lt_u + if $if_26 (result i32) + local.get $5 + local.get $3 + i32.store8 offset=11 + local.get $3 + if $if_27 (result i32) + local.get $5 + local.set $0 + br $block_3 + else + local.get $5 + end ;; $if_27 + else + local.get $5 + local.get $3 + i32.const 16 + i32.add + i32.const -16 + i32.and + local.tee $19 + call $__Znwm + local.tee $0 + i32.store + local.get $5 + local.get $19 + i32.const -2147483648 + i32.or + i32.store offset=8 + local.get $5 + local.get $3 + i32.store offset=4 + br $block_3 + end ;; $if_26 + local.set $0 + br $block_2 + end ;; $block_3 + local.get $0 + local.get $22 + local.get $3 + call $_memcpy + drop + end ;; $block_2 + local.get $0 + local.get $3 + i32.add + i32.const 0 + i32.store8 + local.get $13 + local.get $14 + local.get $5 + i32.load + local.get $5 + local.get $5 + i32.load8_s offset=11 + local.tee $0 + i32.const 0 + i32.lt_s + local.tee $3 + select + local.get $5 + i32.load offset=4 + local.get $0 + i32.const 255 + i32.and + local.get $3 + select + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKcm + local.tee $0 + i64.load align=4 + i64.store align=4 + local.get $13 + local.get $0 + i32.load offset=8 + i32.store offset=8 + local.get $0 + i64.const 0 + i64.store align=4 + local.get $0 + i32.const 0 + i32.store offset=8 + local.get $21 + i64.const 0 + i64.store align=4 + local.get $21 + i32.const 0 + i32.store offset=8 + local.get $21 i32.const 4 i32.store8 offset=11 - local.get $11 + local.get $21 i32.const 540945696 i32.store - local.get $11 + local.get $21 i32.const 0 i32.store8 offset=4 - local.get $3 - local.get $4 - local.get $11 + local.get $9 + local.get $13 + local.get $21 i32.const 4 call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKcm local.tee $0 i64.load align=4 i64.store align=4 - local.get $3 + local.get $9 local.get $0 i32.load offset=8 i32.store offset=8 @@ -1991,97 +2499,97 @@ local.get $0 i32.const 0 i32.store offset=8 - local.get $7 + local.get $17 i64.const 0 i64.store align=4 - local.get $7 + local.get $17 i32.const 0 i32.store offset=8 - local.get $1 + local.get $2 i32.load offset=8 - local.set $12 - local.get $1 + local.set $22 + local.get $2 i32.load offset=12 - local.tee $2 + local.tee $3 i32.const -17 i32.gt_u - br_if $block_1 - block $block_5 - block $block_6 - local.get $2 + br_if $block_0 + block $block_4 + block $block_5 + local.get $3 i32.const 11 i32.lt_u - if $if_11 (result i32) - local.get $7 - local.get $2 + if $if_28 (result i32) + local.get $17 + local.get $3 i32.store8 offset=11 - local.get $2 - if $if_12 (result i32) - local.get $7 + local.get $3 + if $if_29 (result i32) + local.get $17 local.set $0 - br $block_6 + br $block_5 else - local.get $7 - end ;; $if_12 + local.get $17 + end ;; $if_29 else - local.get $7 - local.get $2 + local.get $17 + local.get $3 i32.const 16 i32.add i32.const -16 i32.and - local.tee $9 + local.tee $19 call $__Znwm local.tee $0 i32.store - local.get $7 - local.get $9 + local.get $17 + local.get $19 i32.const -2147483648 i32.or i32.store offset=8 - local.get $7 - local.get $2 + local.get $17 + local.get $3 i32.store offset=4 - br $block_6 - end ;; $if_11 + br $block_5 + end ;; $if_28 local.set $0 - br $block_5 - end ;; $block_6 + br $block_4 + end ;; $block_5 local.get $0 - local.get $12 - local.get $2 + local.get $22 + local.get $3 call $_memcpy drop - end ;; $block_5 + end ;; $block_4 local.get $0 - local.get $2 + local.get $3 i32.add i32.const 0 i32.store8 - local.get $10 - local.get $3 - local.get $7 + local.get $20 + local.get $9 + local.get $17 i32.load - local.get $7 - local.get $7 + local.get $17 + local.get $17 i32.load8_s offset=11 local.tee $0 i32.const 0 i32.lt_s - local.tee $2 + local.tee $3 select - local.get $7 + local.get $17 i32.load offset=4 local.get $0 i32.const 255 i32.and - local.get $2 + local.get $3 select call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKcm local.tee $0 i64.load align=4 i64.store align=4 - local.get $10 + local.get $20 local.get $0 i32.load offset=8 i32.store offset=8 @@ -2092,305 +2600,2834 @@ i32.const 0 i32.store offset=8 i32.const 2 - local.get $10 + local.get $20 i32.load - local.get $10 - local.get $10 + local.get $20 + local.get $20 i32.load8_s offset=11 local.tee $0 i32.const 0 i32.lt_s - local.tee $2 + local.tee $3 select - local.get $10 + local.get $20 i32.load offset=4 local.get $0 i32.const 255 i32.and - local.get $2 + local.get $3 select call $_proxy_log drop - local.get $10 + local.get $20 i32.load8_s offset=11 i32.const 0 i32.lt_s - if $if_13 - local.get $10 + if $if_30 + local.get $20 i32.load call $_free - end ;; $if_13 - local.get $7 + end ;; $if_30 + local.get $17 i32.load8_s offset=11 i32.const 0 i32.lt_s - if $if_14 - local.get $7 + if $if_31 + local.get $17 i32.load call $_free - end ;; $if_14 - local.get $3 + end ;; $if_31 + local.get $9 i32.load8_s offset=11 i32.const 0 i32.lt_s - if $if_15 - local.get $3 + if $if_32 + local.get $9 i32.load call $_free - end ;; $if_15 + end ;; $if_32 + local.get $21 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_33 + local.get $21 + i32.load + call $_free + end ;; $if_33 + local.get $13 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_34 + local.get $13 + i32.load + call $_free + end ;; $if_34 + local.get $5 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_35 + local.get $5 + i32.load + call $_free + end ;; $if_35 + local.get $14 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_36 + local.get $14 + i32.load + call $_free + end ;; $if_36 + local.get $15 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_37 + local.get $15 + i32.load + call $_free + end ;; $if_37 + local.get $16 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_38 + local.get $16 + i32.load + call $_free + end ;; $if_38 + local.get $18 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_39 + local.get $18 + i32.load + call $_free + end ;; $if_39 local.get $11 i32.load8_s offset=11 i32.const 0 i32.lt_s - if $if_16 + if $if_40 local.get $11 i32.load call $_free - end ;; $if_16 + end ;; $if_40 + local.get $10 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_41 + local.get $10 + i32.load + call $_free + end ;; $if_41 + local.get $7 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_42 + local.get $7 + i32.load + call $_free + end ;; $if_42 local.get $4 i32.load8_s offset=11 i32.const 0 i32.lt_s - if $if_17 + if $if_43 local.get $4 i32.load call $_free - end ;; $if_17 - local.get $1 + end ;; $if_43 + local.get $2 i32.const 16 i32.add - local.tee $1 - local.get $14 + local.tee $2 + local.get $12 i32.ne br_if $loop_0 - br $block_0 - end ;; $block_2 - end ;; $loop_0 + end ;; $loop_0 + local.get $6 + i32.load + local.set $23 + br $block + end ;; $block_1 call $_abort - br $block_0 - end ;; $block_1 + br $block + end ;; $block_0 call $_abort - end ;; $block_0 - end ;; $if_8 - i32.const 2 - i32.const 11100 - i32.const 9 - i32.const 11110 - i32.const 14 - call $_proxy_addHeaderMapValue - drop - i32.const 2 - i32.const 11125 - i32.const 8 - i32.const 11134 - i32.const 10 - call $_proxy_replaceHeaderMapValue - drop - local.get $5 + end ;; $block + end ;; $if_25 + local.get $23 + i32.eqz + if $if_44 + local.get $1 + i32.load + call $_free + local.get $1 + call $_free + local.get $8 + global.set $32 + i32.const 0 + return + end ;; $if_44 + local.get $6 + local.get $23 + i32.store offset=4 + local.get $23 + call $_free + local.get $1 + i32.load + call $_free + local.get $1 + call $_free + local.get $8 + global.set $32 + i32.const 0 + ) + + (func $__ZN14ExampleContext17onResponseHeadersEv (type $4) + (param $0 i32) + (result i32) + (local $1 i32) + (local $2 i32) + (local $3 i32) + (local $4 i32) + (local $5 i32) + (local $6 i32) + (local $7 i32) + (local $8 i32) + (local $9 i32) + (local $10 i32) + (local $11 i32) + (local $12 i32) + (local $13 i32) + (local $14 i32) + (local $15 i32) + (local $16 i32) + (local $17 i32) + (local $18 i32) + (local $19 i32) + (local $20 i32) + (local $21 i32) + (local $22 i32) + (local $23 i32) + (local $24 i32) + global.get $32 + local.set $8 + global.get $32 + i32.const 208 + i32.add + global.set $32 + local.get $8 + i32.const 192 + i32.add + local.set $6 + local.get $8 + i32.const 180 + i32.add + local.set $9 + local.get $8 + i32.const 168 + i32.add + local.set $2 + local.get $8 + i32.const 156 + i32.add + local.set $13 + local.get $8 + i32.const 144 + i32.add + local.set $14 + local.get $8 + i32.const 132 + i32.add + local.set $15 + local.get $8 + i32.const 120 + i32.add + local.set $16 + local.get $8 + i32.const 84 + i32.add + local.set $7 + local.get $8 + i32.const 60 + i32.add + local.set $4 + local.get $8 + i32.const 72 + i32.add + local.set $3 + local.get $8 + i32.const 36 + i32.add + local.set $11 + local.get $8 + i32.const 24 + i32.add + local.set $5 + local.get $8 + i32.const 48 + i32.add + local.set $20 + local.get $8 + i32.const 12 + i32.add + local.set $21 + local.get $8 + local.set $17 + local.get $8 + i32.const 96 + i32.add + local.tee $10 + i64.const 0 + i64.store align=4 + local.get $10 + i32.const 0 + i32.store offset=8 + local.get $10 + i32.const 1 + i32.store8 offset=11 + local.get $10 + i32.const 91 + i32.store8 + local.get $10 + i32.const 0 + i32.store8 offset=1 + local.get $8 + i32.const 108 + i32.add + local.tee $18 + local.get $10 + i32.const 11035 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc + local.tee $1 + i64.load align=4 + i64.store align=4 + local.get $18 + local.get $1 + i32.load offset=8 + i32.store offset=8 + local.get $1 + i64.const 0 + i64.store align=4 + local.get $1 + i32.const 0 + i32.store offset=8 + local.get $16 + local.get $18 + i32.const 11069 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc + local.tee $1 + i64.load align=4 + i64.store align=4 + local.get $16 + local.get $1 + i32.load offset=8 + i32.store offset=8 + local.get $1 + i64.const 0 + i64.store align=4 + local.get $1 + i32.const 0 + i32.store offset=8 + local.get $7 + i32.const 46 + call $__ZNSt3__29to_stringEi + local.get $15 + local.get $16 + local.get $7 + i32.load + local.get $7 + local.get $7 + i32.load8_s offset=11 + local.tee $1 + i32.const 0 + i32.lt_s + local.tee $12 + select + local.get $7 + i32.load offset=4 + local.get $1 + i32.const 255 + i32.and + local.get $12 + select + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKcm + local.tee $1 + i64.load align=4 + i64.store align=4 + local.get $15 + local.get $1 + i32.load offset=8 + i32.store offset=8 + local.get $1 + i64.const 0 + i64.store align=4 + local.get $1 + i32.const 0 + i32.store offset=8 + local.get $14 + local.get $15 + i32.const 11071 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc + local.tee $1 + i64.load align=4 + i64.store align=4 + local.get $14 + local.get $1 + i32.load offset=8 + i32.store offset=8 + local.get $1 + i64.const 0 + i64.store align=4 + local.get $1 + i32.const 0 + i32.store offset=8 + local.get $13 + local.get $14 + i32.const 11151 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc + local.tee $1 + i64.load align=4 + i64.store align=4 + local.get $13 + local.get $1 + i32.load offset=8 + i32.store offset=8 + local.get $1 + i64.const 0 + i64.store align=4 + local.get $1 + i32.const 0 + i32.store offset=8 + local.get $9 + local.get $13 + i32.const 11083 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc + local.tee $1 + i64.load align=4 + i64.store align=4 + local.get $9 + local.get $1 + i32.load offset=8 + i32.store offset=8 + local.get $1 + i64.const 0 + i64.store align=4 + local.get $1 + i32.const 0 + i32.store offset=8 + i32.const 32 + call $__Znwm + local.tee $1 + i32.const 11169 + i64.load align=1 + i64.store align=1 + local.get $1 + i32.const 11177 + i64.load align=1 + i64.store offset=8 align=1 + local.get $1 + i32.const 11185 + i32.load16_s align=1 + i32.store16 offset=16 align=1 + local.get $1 + i32.const 0 + i32.store8 offset=18 + local.get $6 + local.get $9 + local.get $1 + i32.const 18 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKcm + local.tee $12 + i64.load align=4 + i64.store align=4 + local.get $6 + local.get $12 + i32.load offset=8 + i32.store offset=8 + local.get $12 + i64.const 0 + i64.store align=4 + local.get $12 + i32.const 0 + i32.store offset=8 + local.get $4 + local.get $0 + i32.const -64 + i32.sub + i32.load + call $__ZNSt3__29to_stringEj + local.get $2 + local.get $6 + local.get $4 + i32.load + local.get $4 + local.get $4 + i32.load8_s offset=11 + local.tee $0 + i32.const 0 + i32.lt_s + local.tee $12 + select + local.get $4 + i32.load offset=4 + local.get $0 + i32.const 255 + i32.and + local.get $12 + select + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKcm + local.tee $0 + i64.load align=4 + i64.store align=4 + local.get $2 + local.get $0 + i32.load offset=8 + i32.store offset=8 + local.get $0 + i64.const 0 + i64.store align=4 + local.get $0 + i32.const 0 + i32.store offset=8 + i32.const 1 + local.get $2 + i32.load + local.get $2 + local.get $2 + i32.load8_s offset=11 + local.tee $0 + i32.const 0 + i32.lt_s + local.tee $12 + select + local.get $2 + i32.load offset=4 + local.get $0 + i32.const 255 + i32.and + local.get $12 + select + call $_proxy_log + drop + local.get $2 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if + local.get $2 + i32.load + call $_free + end ;; $if + local.get $4 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_0 + local.get $4 + i32.load + call $_free + end ;; $if_0 + local.get $6 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_1 + local.get $6 + i32.load + call $_free + end ;; $if_1 + local.get $1 + call $_free + local.get $9 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_2 + local.get $9 + i32.load + call $_free + end ;; $if_2 + local.get $13 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_3 + local.get $13 + i32.load + call $_free + end ;; $if_3 + local.get $14 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_4 + local.get $14 + i32.load + call $_free + end ;; $if_4 + local.get $15 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_5 + local.get $15 + i32.load + call $_free + end ;; $if_5 + local.get $7 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_6 + local.get $7 + i32.load + call $_free + end ;; $if_6 + local.get $16 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_7 + local.get $16 + i32.load + call $_free + end ;; $if_7 + local.get $18 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_8 + local.get $18 + i32.load + call $_free + end ;; $if_8 + local.get $10 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_9 + local.get $10 + i32.load + call $_free + end ;; $if_9 + local.get $6 + i32.const 0 + i32.store + local.get $9 + i32.const 0 + i32.store + i32.const 2 + local.get $6 + local.get $9 + call $_proxy_getHeaderMapPairs + drop + i32.const 8 + call $__Znwm + local.set $1 + local.get $9 + i32.load + local.set $0 + local.get $1 + local.get $6 + i32.load + local.tee $2 + i32.store + local.get $1 + local.get $0 + i32.store offset=4 + local.get $6 + i32.const 0 + i32.store + local.get $6 + i32.const 0 + i32.store offset=4 + local.get $6 + i32.const 0 + i32.store offset=8 + local.get $2 + if $if_10 + local.get $2 + i32.const 4 + i32.add + local.set $0 + local.get $2 + i32.load + local.tee $12 + if $if_11 + local.get $6 + local.get $12 + call $__ZNSt3__26vectorINS_4pairINS_17basic_string_viewIcNS_11char_traitsIcEEEES5_EENS_9allocatorIS6_EEE8__appendEm + local.get $12 + i32.const 0 + i32.gt_s + if $if_12 + local.get $6 + i32.load + local.set $22 + i32.const 0 + local.set $2 + local.get $0 + local.get $12 + i32.const 3 + i32.shl + i32.add + local.set $19 + loop $loop + local.get $0 + i32.load + local.set $23 + local.get $2 + i32.const 4 + i32.shl + local.get $22 + i32.add + local.get $19 + i32.store + local.get $2 + i32.const 4 + i32.shl + local.get $22 + i32.add + local.get $23 + i32.store offset=4 + local.get $0 + i32.load offset=4 + local.set $24 + local.get $0 + i32.const 8 + i32.add + local.set $0 + local.get $6 + i32.load + local.tee $22 + local.get $2 + i32.const 4 + i32.shl + i32.add + local.get $23 + i32.const 1 + i32.add + local.get $19 + i32.add + local.tee $19 + i32.store offset=8 + local.get $2 + i32.const 4 + i32.shl + local.get $22 + i32.add + local.get $24 + i32.store offset=12 + local.get $19 + local.get $24 + i32.const 1 + i32.add + i32.add + local.set $19 + local.get $2 + i32.const 1 + i32.add + local.tee $2 + local.get $12 + i32.ne + br_if $loop + end ;; $loop + end ;; $if_12 + end ;; $if_11 + end ;; $if_10 + local.get $7 + i64.const 0 + i64.store align=4 + local.get $7 + i32.const 0 + i32.store offset=8 + local.get $7 + i32.const 1 + i32.store8 offset=11 + local.get $7 + i32.const 91 + i32.store8 + local.get $7 + i32.const 0 + i32.store8 offset=1 + local.get $10 + local.get $7 + i32.const 11035 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc + local.tee $0 + i64.load align=4 + i64.store align=4 + local.get $10 + local.get $0 + i32.load offset=8 + i32.store offset=8 + local.get $0 + i64.const 0 + i64.store align=4 + local.get $0 + i32.const 0 + i32.store offset=8 + local.get $18 + local.get $10 + i32.const 11069 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc + local.tee $0 + i64.load align=4 + i64.store align=4 + local.get $18 + local.get $0 + i32.load offset=8 + i32.store offset=8 + local.get $0 + i64.const 0 + i64.store align=4 + local.get $0 + i32.const 0 + i32.store offset=8 + local.get $4 + i32.const 49 + call $__ZNSt3__29to_stringEi + local.get $16 + local.get $18 + local.get $4 + i32.load + local.get $4 + local.get $4 + i32.load8_s offset=11 + local.tee $0 + i32.const 0 + i32.lt_s + local.tee $2 + select + local.get $4 + i32.load offset=4 + local.get $0 + i32.const 255 + i32.and + local.get $2 + select + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKcm + local.tee $0 + i64.load align=4 + i64.store align=4 + local.get $16 + local.get $0 + i32.load offset=8 + i32.store offset=8 + local.get $0 + i64.const 0 + i64.store align=4 + local.get $0 + i32.const 0 + i32.store offset=8 + local.get $15 + local.get $16 + i32.const 11071 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc + local.tee $0 + i64.load align=4 + i64.store align=4 + local.get $15 + local.get $0 + i32.load offset=8 + i32.store offset=8 + local.get $0 + i64.const 0 + i64.store align=4 + local.get $0 + i32.const 0 + i32.store offset=8 + local.get $14 + local.get $15 + i32.const 11151 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc + local.tee $0 + i64.load align=4 + i64.store align=4 + local.get $14 + local.get $0 + i32.load offset=8 + i32.store offset=8 + local.get $0 + i64.const 0 + i64.store align=4 + local.get $0 + i32.const 0 + i32.store offset=8 + local.get $13 + local.get $14 + i32.const 11083 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc + local.tee $0 + i64.load align=4 + i64.store align=4 + local.get $13 + local.get $0 + i32.load offset=8 + i32.store offset=8 + local.get $0 + i64.const 0 + i64.store align=4 + local.get $0 + i32.const 0 + i32.store offset=8 + local.get $11 + i64.const 0 + i64.store align=4 + local.get $11 + i32.const 0 + i32.store offset=8 + local.get $11 + i32.const 9 + i32.store8 offset=11 + local.get $11 + i32.const 11141 + i64.load align=1 + i64.store align=1 + local.get $11 + i32.const 11149 + i32.load8_s + i32.store8 offset=8 + local.get $11 + i32.const 0 + i32.store8 offset=9 + local.get $9 + local.get $13 + local.get $11 + i32.const 9 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKcm + local.tee $0 + i64.load align=4 + i64.store align=4 + local.get $9 + local.get $0 + i32.load offset=8 + i32.store offset=8 + local.get $0 + i64.const 0 + i64.store align=4 + local.get $0 + i32.const 0 + i32.store offset=8 + local.get $5 + local.get $6 + i32.load offset=4 + local.get $6 + i32.load + i32.sub + i32.const 4 + i32.shr_s + call $__ZNSt3__29to_stringEm + local.get $3 + local.get $9 + local.get $5 + i32.load + local.get $5 + local.get $5 + i32.load8_s offset=11 + local.tee $0 + i32.const 0 + i32.lt_s + local.tee $2 + select + local.get $5 + i32.load offset=4 + local.get $0 + i32.const 255 + i32.and + local.get $2 + select + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKcm + local.tee $0 + i64.load align=4 + i64.store align=4 + local.get $3 + local.get $0 + i32.load offset=8 + i32.store offset=8 + local.get $0 + i64.const 0 + i64.store align=4 + local.get $0 + i32.const 0 + i32.store offset=8 + i32.const 2 + local.get $3 + i32.load + local.get $3 + local.get $3 + i32.load8_s offset=11 + local.tee $0 + i32.const 0 + i32.lt_s + local.tee $2 + select + local.get $3 + i32.load offset=4 + local.get $0 + i32.const 255 + i32.and + local.get $2 + select + call $_proxy_log + drop + local.get $3 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_13 + local.get $3 + i32.load + call $_free + end ;; $if_13 + local.get $5 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_14 + local.get $5 + i32.load + call $_free + end ;; $if_14 + local.get $9 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_15 + local.get $9 + i32.load + call $_free + end ;; $if_15 + local.get $11 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_16 + local.get $11 + i32.load + call $_free + end ;; $if_16 + local.get $13 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_17 + local.get $13 + i32.load + call $_free + end ;; $if_17 + local.get $14 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_18 + local.get $14 + i32.load + call $_free + end ;; $if_18 + local.get $15 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_19 + local.get $15 + i32.load + call $_free + end ;; $if_19 + local.get $16 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_20 + local.get $16 + i32.load + call $_free + end ;; $if_20 + local.get $4 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_21 + local.get $4 + i32.load + call $_free + end ;; $if_21 + local.get $18 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_22 + local.get $18 + i32.load + call $_free + end ;; $if_22 + local.get $10 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_23 + local.get $10 + i32.load + call $_free + end ;; $if_23 + local.get $7 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_24 + local.get $7 + i32.load + call $_free + end ;; $if_24 + local.get $6 + i32.load + local.tee $2 + local.get $6 + i32.load offset=4 + local.tee $12 + i32.ne + if $if_25 + block $block + block $block_0 + loop $loop_0 + block $block_1 + local.get $4 + i64.const 0 + i64.store align=4 + local.get $4 + i32.const 0 + i32.store offset=8 + local.get $4 + i32.const 1 + i32.store8 offset=11 + local.get $4 + i32.const 91 + i32.store8 + local.get $4 + i32.const 0 + i32.store8 offset=1 + local.get $7 + local.get $4 + i32.const 11035 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc + local.tee $0 + i64.load align=4 + i64.store align=4 + local.get $7 + local.get $0 + i32.load offset=8 + i32.store offset=8 + local.get $0 + i64.const 0 + i64.store align=4 + local.get $0 + i32.const 0 + i32.store offset=8 + local.get $10 + local.get $7 + i32.const 11069 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc + local.tee $0 + i64.load align=4 + i64.store align=4 + local.get $10 + local.get $0 + i32.load offset=8 + i32.store offset=8 + local.get $0 + i64.const 0 + i64.store align=4 + local.get $0 + i32.const 0 + i32.store offset=8 + local.get $11 + i32.const 51 + call $__ZNSt3__29to_stringEi + local.get $18 + local.get $10 + local.get $11 + i32.load + local.get $11 + local.get $11 + i32.load8_s offset=11 + local.tee $0 + i32.const 0 + i32.lt_s + local.tee $3 + select + local.get $11 + i32.load offset=4 + local.get $0 + i32.const 255 + i32.and + local.get $3 + select + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKcm + local.tee $0 + i64.load align=4 + i64.store align=4 + local.get $18 + local.get $0 + i32.load offset=8 + i32.store offset=8 + local.get $0 + i64.const 0 + i64.store align=4 + local.get $0 + i32.const 0 + i32.store offset=8 + local.get $16 + local.get $18 + i32.const 11071 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc + local.tee $0 + i64.load align=4 + i64.store align=4 + local.get $16 + local.get $0 + i32.load offset=8 + i32.store offset=8 + local.get $0 + i64.const 0 + i64.store align=4 + local.get $0 + i32.const 0 + i32.store offset=8 + local.get $15 + local.get $16 + i32.const 11151 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc + local.tee $0 + i64.load align=4 + i64.store align=4 + local.get $15 + local.get $0 + i32.load offset=8 + i32.store offset=8 + local.get $0 + i64.const 0 + i64.store align=4 + local.get $0 + i32.const 0 + i32.store offset=8 + local.get $14 + local.get $15 + i32.const 11083 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc + local.tee $0 + i64.load align=4 + i64.store align=4 + local.get $14 + local.get $0 + i32.load offset=8 + i32.store offset=8 + local.get $0 + i64.const 0 + i64.store align=4 + local.get $0 + i32.const 0 + i32.store offset=8 + local.get $5 + i64.const 0 + i64.store align=4 + local.get $5 + i32.const 0 + i32.store offset=8 + local.get $2 + i32.load + local.set $22 + local.get $2 + i32.load offset=4 + local.tee $3 + i32.const -17 + i32.gt_u + br_if $block_1 + block $block_2 + block $block_3 + local.get $3 + i32.const 11 + i32.lt_u + if $if_26 (result i32) + local.get $5 + local.get $3 + i32.store8 offset=11 + local.get $3 + if $if_27 (result i32) + local.get $5 + local.set $0 + br $block_3 + else + local.get $5 + end ;; $if_27 + else + local.get $5 + local.get $3 + i32.const 16 + i32.add + i32.const -16 + i32.and + local.tee $19 + call $__Znwm + local.tee $0 + i32.store + local.get $5 + local.get $19 + i32.const -2147483648 + i32.or + i32.store offset=8 + local.get $5 + local.get $3 + i32.store offset=4 + br $block_3 + end ;; $if_26 + local.set $0 + br $block_2 + end ;; $block_3 + local.get $0 + local.get $22 + local.get $3 + call $_memcpy + drop + end ;; $block_2 + local.get $0 + local.get $3 + i32.add + i32.const 0 + i32.store8 + local.get $13 + local.get $14 + local.get $5 + i32.load + local.get $5 + local.get $5 + i32.load8_s offset=11 + local.tee $0 + i32.const 0 + i32.lt_s + local.tee $3 + select + local.get $5 + i32.load offset=4 + local.get $0 + i32.const 255 + i32.and + local.get $3 + select + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKcm + local.tee $0 + i64.load align=4 + i64.store align=4 + local.get $13 + local.get $0 + i32.load offset=8 + i32.store offset=8 + local.get $0 + i64.const 0 + i64.store align=4 + local.get $0 + i32.const 0 + i32.store offset=8 + local.get $21 + i64.const 0 + i64.store align=4 + local.get $21 + i32.const 0 + i32.store offset=8 + local.get $21 + i32.const 4 + i32.store8 offset=11 + local.get $21 + i32.const 540945696 + i32.store + local.get $21 + i32.const 0 + i32.store8 offset=4 + local.get $9 + local.get $13 + local.get $21 + i32.const 4 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKcm + local.tee $0 + i64.load align=4 + i64.store align=4 + local.get $9 + local.get $0 + i32.load offset=8 + i32.store offset=8 + local.get $0 + i64.const 0 + i64.store align=4 + local.get $0 + i32.const 0 + i32.store offset=8 + local.get $17 + i64.const 0 + i64.store align=4 + local.get $17 + i32.const 0 + i32.store offset=8 + local.get $2 + i32.load offset=8 + local.set $22 + local.get $2 + i32.load offset=12 + local.tee $3 + i32.const -17 + i32.gt_u + br_if $block_0 + block $block_4 + block $block_5 + local.get $3 + i32.const 11 + i32.lt_u + if $if_28 (result i32) + local.get $17 + local.get $3 + i32.store8 offset=11 + local.get $3 + if $if_29 (result i32) + local.get $17 + local.set $0 + br $block_5 + else + local.get $17 + end ;; $if_29 + else + local.get $17 + local.get $3 + i32.const 16 + i32.add + i32.const -16 + i32.and + local.tee $19 + call $__Znwm + local.tee $0 + i32.store + local.get $17 + local.get $19 + i32.const -2147483648 + i32.or + i32.store offset=8 + local.get $17 + local.get $3 + i32.store offset=4 + br $block_5 + end ;; $if_28 + local.set $0 + br $block_4 + end ;; $block_5 + local.get $0 + local.get $22 + local.get $3 + call $_memcpy + drop + end ;; $block_4 + local.get $0 + local.get $3 + i32.add + i32.const 0 + i32.store8 + local.get $20 + local.get $9 + local.get $17 + i32.load + local.get $17 + local.get $17 + i32.load8_s offset=11 + local.tee $0 + i32.const 0 + i32.lt_s + local.tee $3 + select + local.get $17 + i32.load offset=4 + local.get $0 + i32.const 255 + i32.and + local.get $3 + select + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKcm + local.tee $0 + i64.load align=4 + i64.store align=4 + local.get $20 + local.get $0 + i32.load offset=8 + i32.store offset=8 + local.get $0 + i64.const 0 + i64.store align=4 + local.get $0 + i32.const 0 + i32.store offset=8 + i32.const 2 + local.get $20 + i32.load + local.get $20 + local.get $20 + i32.load8_s offset=11 + local.tee $0 + i32.const 0 + i32.lt_s + local.tee $3 + select + local.get $20 + i32.load offset=4 + local.get $0 + i32.const 255 + i32.and + local.get $3 + select + call $_proxy_log + drop + local.get $20 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_30 + local.get $20 + i32.load + call $_free + end ;; $if_30 + local.get $17 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_31 + local.get $17 + i32.load + call $_free + end ;; $if_31 + local.get $9 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_32 + local.get $9 + i32.load + call $_free + end ;; $if_32 + local.get $21 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_33 + local.get $21 + i32.load + call $_free + end ;; $if_33 + local.get $13 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_34 + local.get $13 + i32.load + call $_free + end ;; $if_34 + local.get $5 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_35 + local.get $5 + i32.load + call $_free + end ;; $if_35 + local.get $14 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_36 + local.get $14 + i32.load + call $_free + end ;; $if_36 + local.get $15 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_37 + local.get $15 + i32.load + call $_free + end ;; $if_37 + local.get $16 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_38 + local.get $16 + i32.load + call $_free + end ;; $if_38 + local.get $18 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_39 + local.get $18 + i32.load + call $_free + end ;; $if_39 + local.get $11 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_40 + local.get $11 + i32.load + call $_free + end ;; $if_40 + local.get $10 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_41 + local.get $10 + i32.load + call $_free + end ;; $if_41 + local.get $7 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_42 + local.get $7 + i32.load + call $_free + end ;; $if_42 + local.get $4 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_43 + local.get $4 + i32.load + call $_free + end ;; $if_43 + local.get $2 + i32.const 16 + i32.add + local.tee $2 + local.get $12 + i32.ne + br_if $loop_0 + br $block + end ;; $block_1 + end ;; $loop_0 + call $_abort + br $block + end ;; $block_0 + call $_abort + end ;; $block + end ;; $if_25 + i32.const 2 + i32.const 11188 + i32.const 9 + i32.const 11198 + i32.const 14 + call $_proxy_addHeaderMapValue + drop + i32.const 2 + i32.const 11213 + i32.const 8 + i32.const 11222 + i32.const 10 + call $_proxy_replaceHeaderMapValue + drop + local.get $6 + i32.load + local.tee $0 + i32.eqz + if $if_44 + local.get $1 + i32.load + call $_free + local.get $1 + call $_free + local.get $8 + global.set $32 + i32.const 0 + return + end ;; $if_44 + local.get $6 + local.get $0 + i32.store offset=4 + local.get $0 + call $_free + local.get $1 + i32.load + call $_free + local.get $1 + call $_free + local.get $8 + global.set $32 + i32.const 0 + ) + + (func $__ZN14ExampleContext13onRequestBodyEmb (type $5) + (param $0 i32) + (param $1 i32) + (param $2 i32) + (result i32) + (local $3 i32) + (local $4 i32) + (local $5 i32) + (local $6 i32) + (local $7 i32) + (local $8 i32) + (local $9 i32) + (local $10 i32) + (local $11 i32) + (local $12 i32) + (local $13 i32) + (local $14 i32) + (local $15 i32) + (local $16 i32) + global.get $32 + local.set $3 + global.get $32 + i32.const 144 + i32.add + global.set $32 + local.get $3 + i32.const 108 + i32.add + local.set $5 + local.get $3 + i32.const 96 + i32.add + local.set $11 + local.get $3 + i32.const 84 + i32.add + local.set $12 + local.get $3 + i32.const 72 + i32.add + local.set $13 + local.get $3 + i32.const 60 + i32.add + local.set $14 + local.get $3 + i32.const 48 + i32.add + local.set $15 + local.get $3 + i32.const 36 + i32.add + local.set $6 + local.get $3 + i32.const 24 + i32.add + local.set $8 + local.get $3 + local.set $2 + local.get $3 + i32.const 132 + i32.add + local.tee $9 + i32.const 0 + i32.store + local.get $3 + i32.const 120 + i32.add + local.tee $10 + i32.const 0 + i32.store + i32.const 0 + local.get $1 + local.get $9 + local.get $10 + call $_proxy_getRequestBodyBufferBytes + drop + i32.const 8 + call $__Znwm + local.set $7 + local.get $10 + i32.load + local.set $0 + local.get $7 + local.get $9 + i32.load + i32.store + local.get $7 + local.get $0 + i32.store offset=4 + local.get $6 + i64.const 0 + i64.store align=4 + local.get $6 + i32.const 0 + i32.store offset=8 + local.get $6 + i32.const 1 + i32.store8 offset=11 + local.get $6 + i32.const 91 + i32.store8 + local.get $6 + i32.const 0 + i32.store8 offset=1 + local.get $15 + local.get $6 + i32.const 11035 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc + local.tee $0 + i64.load align=4 + i64.store align=4 + local.get $15 + local.get $0 + i32.load offset=8 + i32.store offset=8 + local.get $0 + i64.const 0 + i64.store align=4 + local.get $0 + i32.const 0 + i32.store offset=8 + local.get $14 + local.get $15 + i32.const 11069 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc + local.tee $0 + i64.load align=4 + i64.store align=4 + local.get $14 + local.get $0 + i32.load offset=8 + i32.store offset=8 + local.get $0 + i64.const 0 + i64.store align=4 + local.get $0 + i32.const 0 + i32.store offset=8 + local.get $8 + i32.const 60 + call $__ZNSt3__29to_stringEi + local.get $13 + local.get $14 + local.get $8 + i32.load + local.get $8 + local.get $8 + i32.load8_s offset=11 + local.tee $0 + i32.const 0 + i32.lt_s + local.tee $1 + select + local.get $8 + i32.load offset=4 + local.get $0 + i32.const 255 + i32.and + local.get $1 + select + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKcm + local.tee $0 + i64.load align=4 + i64.store align=4 + local.get $13 + local.get $0 + i32.load offset=8 + i32.store offset=8 + local.get $0 + i64.const 0 + i64.store align=4 + local.get $0 + i32.const 0 + i32.store offset=8 + local.get $12 + local.get $13 + i32.const 11071 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc + local.tee $0 + i64.load align=4 + i64.store align=4 + local.get $12 + local.get $0 + i32.load offset=8 + i32.store offset=8 + local.get $0 + i64.const 0 + i64.store align=4 + local.get $0 + i32.const 0 + i32.store offset=8 + local.get $11 + local.get $12 + i32.const 11233 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc + local.tee $0 + i64.load align=4 + i64.store align=4 + local.get $11 + local.get $0 + i32.load offset=8 + i32.store offset=8 + local.get $0 + i64.const 0 + i64.store align=4 + local.get $0 + i32.const 0 + i32.store offset=8 + local.get $10 + local.get $11 + i32.const 11083 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc + local.tee $0 + i64.load align=4 + i64.store align=4 + local.get $10 + local.get $0 + i32.load offset=8 + i32.store offset=8 + local.get $0 + i64.const 0 + i64.store align=4 + local.get $0 + i32.const 0 + i32.store offset=8 + local.get $3 + i64.const 0 + i64.store offset=12 align=4 + local.get $3 + i32.const 0 + i32.store offset=20 + local.get $3 + i32.const 16 + call $__Znwm + local.tee $0 + i32.store offset=12 + local.get $3 + i32.const -2147483632 + i32.store offset=20 + local.get $3 + i32.const 14 + i32.store offset=16 + local.get $0 + i32.const 11247 + i64.load align=1 + i64.store align=1 + local.get $0 + i32.const 11255 + i32.load align=1 + i32.store offset=8 align=1 + local.get $0 + i32.const 11259 + i32.load16_s align=1 + i32.store16 offset=12 align=1 + local.get $0 + i32.const 0 + i32.store8 offset=14 + local.get $9 + local.get $10 + local.get $0 + i32.const 14 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKcm + local.tee $0 + i64.load align=4 + i64.store align=4 + local.get $9 + local.get $0 + i32.load offset=8 + i32.store offset=8 + local.get $0 + i64.const 0 + i64.store align=4 + local.get $0 + i32.const 0 + i32.store offset=8 + local.get $7 + i32.load + local.set $16 + local.get $7 + i32.load offset=4 + local.set $4 + local.get $3 + i64.const 0 + i64.store align=4 + local.get $3 + i32.const 0 + i32.store offset=8 + local.get $4 + i32.const -17 + i32.gt_u + if $if + call $_abort + end ;; $if + block $block + block $block_0 + local.get $4 + i32.const 11 + i32.lt_u + if $if_0 (result i32) + local.get $2 + i32.const 11 + i32.add + local.tee $1 + local.get $4 + i32.store8 + local.get $4 + if $if_1 (result i32) + local.get $2 + local.set $0 + br $block_0 + else + local.get $2 + end ;; $if_1 + else + local.get $2 + local.get $4 + i32.const 16 + i32.add + i32.const -16 + i32.and + local.tee $1 + call $__Znwm + local.tee $0 + i32.store + local.get $2 + local.get $1 + i32.const -2147483648 + i32.or + i32.store offset=8 + local.get $2 + local.get $4 + i32.store offset=4 + local.get $2 + i32.const 11 + i32.add + local.set $1 + br $block_0 + end ;; $if_0 + local.set $0 + br $block + end ;; $block_0 + local.get $0 + local.get $16 + local.get $4 + call $_memcpy + drop + end ;; $block + local.get $0 + local.get $4 + i32.add + i32.const 0 + i32.store8 + local.get $5 + local.get $9 + local.get $2 + i32.load + local.get $2 + local.get $1 + i32.load8_s + local.tee $0 + i32.const 0 + i32.lt_s + local.tee $4 + select + local.get $2 + i32.load offset=4 + local.get $0 + i32.const 255 + i32.and + local.get $4 + select + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKcm + local.tee $0 + i64.load align=4 + i64.store align=4 + local.get $5 + local.get $0 + i32.load offset=8 + i32.store offset=8 + local.get $0 + i64.const 0 + i64.store align=4 + local.get $0 + i32.const 0 + i32.store offset=8 + i32.const 4 + local.get $5 + i32.load + local.get $5 + local.get $5 + i32.load8_s offset=11 + local.tee $0 + i32.const 0 + i32.lt_s + local.tee $4 + select + local.get $5 + i32.load offset=4 + local.get $0 + i32.const 255 + i32.and + local.get $4 + select + call $_proxy_log + drop + local.get $5 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_2 + local.get $5 + i32.load + call $_free + end ;; $if_2 + local.get $1 + i32.load8_s + i32.const 0 + i32.lt_s + if $if_3 + local.get $2 + i32.load + call $_free + end ;; $if_3 + local.get $9 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_4 + local.get $9 + i32.load + call $_free + end ;; $if_4 + local.get $3 + i32.load8_s offset=23 + i32.const 0 + i32.lt_s + if $if_5 + local.get $3 + i32.load offset=12 + call $_free + end ;; $if_5 + local.get $10 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_6 + local.get $10 + i32.load + call $_free + end ;; $if_6 + local.get $11 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_7 + local.get $11 + i32.load + call $_free + end ;; $if_7 + local.get $12 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_8 + local.get $12 + i32.load + call $_free + end ;; $if_8 + local.get $13 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_9 + local.get $13 + i32.load + call $_free + end ;; $if_9 + local.get $8 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_10 + local.get $8 + i32.load + call $_free + end ;; $if_10 + local.get $14 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_11 + local.get $14 + i32.load + call $_free + end ;; $if_11 + local.get $15 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_12 + local.get $15 + i32.load + call $_free + end ;; $if_12 + local.get $6 + i32.load8_s offset=11 + i32.const 0 + i32.ge_s + if $if_13 + local.get $7 + i32.load + call $_free + local.get $7 + call $_free + local.get $3 + global.set $32 + i32.const 0 + return + end ;; $if_13 + local.get $6 + i32.load + call $_free + local.get $7 + i32.load + call $_free + local.get $7 + call $_free + local.get $3 + global.set $32 + i32.const 0 + ) + + (func $__ZN14ExampleContext6onDoneEv (type $0) + (param $0 i32) + (local $1 i32) + (local $2 i32) + (local $3 i32) + (local $4 i32) + (local $5 i32) + (local $6 i32) + (local $7 i32) + (local $8 i32) + (local $9 i32) + (local $10 i32) + (local $11 i32) + (local $12 i32) + (local $13 i32) + global.get $32 + local.set $2 + global.get $32 + i32.const 144 + i32.add + global.set $32 + local.get $2 + i32.const 108 + i32.add + local.set $3 + local.get $2 + i32.const 120 + i32.add + local.set $7 + local.get $2 + i32.const 96 + i32.add + local.set $8 + local.get $2 + i32.const 84 + i32.add + local.set $9 + local.get $2 + i32.const 72 + i32.add + local.set $10 + local.get $2 + i32.const 60 + i32.add + local.set $11 + local.get $2 + i32.const 24 + i32.add + local.set $5 + local.get $2 + i32.const 12 + i32.add + local.set $4 + local.get $2 + i32.const 36 + i32.add + local.tee $6 + i64.const 0 + i64.store align=4 + local.get $6 + i32.const 0 + i32.store offset=8 + local.get $6 + i32.const 1 + i32.store8 offset=11 + local.get $6 + i32.const 91 + i32.store8 + local.get $6 + i32.const 0 + i32.store8 offset=1 + local.get $2 + i32.const 48 + i32.add + local.tee $12 + local.get $6 + i32.const 11035 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc + local.tee $1 + i64.load align=4 + i64.store align=4 + local.get $12 + local.get $1 + i32.load offset=8 + i32.store offset=8 + local.get $1 + i64.const 0 + i64.store align=4 + local.get $1 + i32.const 0 + i32.store offset=8 + local.get $11 + local.get $12 + i32.const 11069 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc + local.tee $1 + i64.load align=4 + i64.store align=4 + local.get $11 + local.get $1 + i32.load offset=8 + i32.store offset=8 + local.get $1 + i64.const 0 + i64.store align=4 + local.get $1 + i32.const 0 + i32.store offset=8 + local.get $5 + i32.const 64 + call $__ZNSt3__29to_stringEi + local.get $10 + local.get $11 + local.get $5 + i32.load + local.get $5 + local.get $5 + i32.load8_s offset=11 + local.tee $1 + i32.const 0 + i32.lt_s + local.tee $13 + select + local.get $5 + i32.load offset=4 + local.get $1 + i32.const 255 + i32.and + local.get $13 + select + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKcm + local.tee $1 + i64.load align=4 + i64.store align=4 + local.get $10 + local.get $1 + i32.load offset=8 + i32.store offset=8 + local.get $1 + i64.const 0 + i64.store align=4 + local.get $1 + i32.const 0 + i32.store offset=8 + local.get $9 + local.get $10 + i32.const 11071 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc + local.tee $1 + i64.load align=4 + i64.store align=4 + local.get $9 + local.get $1 + i32.load offset=8 + i32.store offset=8 + local.get $1 + i64.const 0 + i64.store align=4 + local.get $1 + i32.const 0 + i32.store offset=8 + local.get $8 + local.get $9 + i32.const 11262 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc + local.tee $1 + i64.load align=4 + i64.store align=4 + local.get $8 + local.get $1 + i32.load offset=8 + i32.store offset=8 + local.get $1 + i64.const 0 + i64.store align=4 + local.get $1 + i32.const 0 + i32.store offset=8 + local.get $7 + local.get $8 + i32.const 11083 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc + local.tee $1 + i64.load align=4 + i64.store align=4 + local.get $7 + local.get $1 + i32.load offset=8 + i32.store offset=8 + local.get $1 + i64.const 0 + i64.store align=4 + local.get $1 + i32.const 0 + i32.store offset=8 + local.get $2 + local.get $0 + i32.const -64 + i32.sub + i32.load + call $__ZNSt3__29to_stringEj + local.get $4 + local.get $2 + i32.const 11269 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6insertEmPKc + local.tee $0 + i64.load align=4 + i64.store align=4 + local.get $4 + local.get $0 + i32.load offset=8 + i32.store offset=8 + local.get $0 + i64.const 0 + i64.store align=4 + local.get $0 + i32.const 0 + i32.store offset=8 + local.get $3 + local.get $7 + local.get $4 + i32.load + local.get $4 + local.get $4 + i32.load8_s offset=11 + local.tee $0 + i32.const 0 + i32.lt_s + local.tee $1 + select + local.get $4 + i32.load offset=4 + local.get $0 + i32.const 255 + i32.and + local.get $1 + select + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKcm + local.tee $0 + i64.load align=4 + i64.store align=4 + local.get $3 + local.get $0 + i32.load offset=8 + i32.store offset=8 + local.get $0 + i64.const 0 + i64.store align=4 + local.get $0 + i32.const 0 + i32.store offset=8 + i32.const 3 + local.get $3 i32.load + local.get $3 + local.get $3 + i32.load8_s offset=11 local.tee $0 - i32.eqz - if $if_18 - local.get $6 + i32.const 0 + i32.lt_s + local.tee $1 + select + local.get $3 + i32.load offset=4 + local.get $0 + i32.const 255 + i32.and + local.get $1 + select + call $_proxy_log + drop + local.get $3 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if + local.get $3 i32.load call $_free - local.get $6 + end ;; $if + local.get $4 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_0 + local.get $4 + i32.load + call $_free + end ;; $if_0 + local.get $2 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_1 + local.get $2 + i32.load call $_free + end ;; $if_1 + local.get $7 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_2 + local.get $7 + i32.load + call $_free + end ;; $if_2 + local.get $8 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_3 local.get $8 + i32.load + call $_free + end ;; $if_3 + local.get $9 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_4 + local.get $9 + i32.load + call $_free + end ;; $if_4 + local.get $10 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_5 + local.get $10 + i32.load + call $_free + end ;; $if_5 + local.get $5 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_6 + local.get $5 + i32.load + call $_free + end ;; $if_6 + local.get $11 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_7 + local.get $11 + i32.load + call $_free + end ;; $if_7 + local.get $12 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_8 + local.get $12 + i32.load + call $_free + end ;; $if_8 + local.get $6 + i32.load8_s offset=11 + i32.const 0 + i32.ge_s + if $if_9 + local.get $2 global.set $32 - i32.const 0 return - end ;; $if_18 - local.get $13 - local.get $0 - i32.store - local.get $0 - call $_free + end ;; $if_9 local.get $6 i32.load call $_free - local.get $6 - call $_free - local.get $8 + local.get $2 global.set $32 - i32.const 0 ) - (func $__ZN14ExampleContext13onRequestBodyEmb (type $5) + (func $__ZN14ExampleContext5onLogEv (type $0) (param $0 i32) - (param $1 i32) - (param $2 i32) - (result i32) + (local $1 i32) + (local $2 i32) (local $3 i32) (local $4 i32) (local $5 i32) (local $6 i32) (local $7 i32) + (local $8 i32) + (local $9 i32) + (local $10 i32) + (local $11 i32) + (local $12 i32) + (local $13 i32) global.get $32 - local.set $4 + local.set $2 global.get $32 - i32.const 48 + i32.const 144 i32.add global.set $32 - local.get $4 + local.get $2 + i32.const 108 + i32.add + local.set $3 + local.get $2 + i32.const 120 + i32.add + local.set $7 + local.get $2 + i32.const 96 + i32.add + local.set $8 + local.get $2 + i32.const 84 + i32.add + local.set $9 + local.get $2 + i32.const 72 + i32.add + local.set $10 + local.get $2 + i32.const 60 + i32.add + local.set $11 + local.get $2 i32.const 24 i32.add - local.tee $5 - i32.const 0 - i32.store - local.get $4 + local.set $5 + local.get $2 i32.const 12 i32.add - local.tee $2 + local.set $4 + local.get $2 + i32.const 36 + i32.add + local.tee $6 + i64.const 0 + i64.store align=4 + local.get $6 i32.const 0 - i32.store + i32.store offset=8 + local.get $6 + i32.const 1 + i32.store8 offset=11 + local.get $6 + i32.const 91 + i32.store8 + local.get $6 i32.const 0 - local.get $1 - local.get $5 - local.get $2 - call $_proxy_getRequestBodyBufferBytes - drop - i32.const 8 - call $__Znwm - local.set $6 + i32.store8 offset=1 local.get $2 - i32.load - local.set $3 + i32.const 48 + i32.add + local.tee $12 local.get $6 + i32.const 11035 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc + local.tee $1 + i64.load align=4 + i64.store align=4 + local.get $12 + local.get $1 + i32.load offset=8 + i32.store offset=8 + local.get $1 + i64.const 0 + i64.store align=4 + local.get $1 + i32.const 0 + i32.store offset=8 + local.get $11 + local.get $12 + i32.const 11069 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc + local.tee $1 + i64.load align=4 + i64.store align=4 + local.get $11 + local.get $1 + i32.load offset=8 + i32.store offset=8 + local.get $1 + i64.const 0 + i64.store align=4 + local.get $1 + i32.const 0 + i32.store offset=8 + local.get $5 + i32.const 66 + call $__ZNSt3__29to_stringEi + local.get $10 + local.get $11 local.get $5 i32.load - local.tee $7 - i32.store - local.get $6 - local.get $3 - i32.store offset=4 local.get $5 + local.get $5 + i32.load8_s offset=11 + local.tee $1 + i32.const 0 + i32.lt_s + local.tee $13 + select + local.get $5 + i32.load offset=4 + local.get $1 + i32.const 255 + i32.and + local.get $13 + select + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKcm + local.tee $1 + i64.load align=4 + i64.store align=4 + local.get $10 + local.get $1 + i32.load offset=8 + i32.store offset=8 + local.get $1 i64.const 0 i64.store align=4 - local.get $5 + local.get $1 i32.const 0 i32.store offset=8 - local.get $5 - i32.const 16 - call $__Znwm - local.tee $0 - i32.store - local.get $5 - i32.const -2147483632 + local.get $9 + local.get $10 + i32.const 11071 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc + local.tee $1 + i64.load align=4 + i64.store align=4 + local.get $9 + local.get $1 + i32.load offset=8 i32.store offset=8 - local.get $5 - i32.const 14 - i32.store offset=4 - local.get $0 - i32.const 11145 - i64.load align=1 - i64.store align=1 + local.get $1 + i64.const 0 + i64.store align=4 + local.get $1 + i32.const 0 + i32.store offset=8 + local.get $8 + local.get $9 + i32.const 11277 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc + local.tee $1 + i64.load align=4 + i64.store align=4 + local.get $8 + local.get $1 + i32.load offset=8 + i32.store offset=8 + local.get $1 + i64.const 0 + i64.store align=4 + local.get $1 + i32.const 0 + i32.store offset=8 + local.get $7 + local.get $8 + i32.const 11083 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc + local.tee $1 + i64.load align=4 + i64.store align=4 + local.get $7 + local.get $1 + i32.load offset=8 + i32.store offset=8 + local.get $1 + i64.const 0 + i64.store align=4 + local.get $1 + i32.const 0 + i32.store offset=8 + local.get $2 local.get $0 - i32.const 11153 - i32.load align=1 - i32.store offset=8 align=1 + i32.const -64 + i32.sub + i32.load + call $__ZNSt3__29to_stringEj + local.get $4 + local.get $2 + i32.const 11283 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6insertEmPKc + local.tee $0 + i64.load align=4 + i64.store align=4 + local.get $4 local.get $0 - i32.const 11157 - i32.load16_s align=1 - i32.store16 offset=12 align=1 + i32.load offset=8 + i32.store offset=8 local.get $0 - i32.const 0 - i32.store8 offset=14 - local.get $2 i64.const 0 i64.store align=4 - local.get $2 + local.get $0 i32.const 0 i32.store offset=8 local.get $3 - i32.const -17 - i32.gt_u - if $if - call $_abort - end ;; $if - block $block - block $block_0 - local.get $3 - i32.const 11 - i32.lt_u - if $if_0 (result i32) - local.get $2 - i32.const 11 - i32.add - local.tee $1 - local.get $3 - i32.store8 - local.get $3 - if $if_1 (result i32) - local.get $2 - local.set $0 - br $block_0 - else - local.get $2 - end ;; $if_1 - else - local.get $2 - local.get $3 - i32.const 16 - i32.add - i32.const -16 - i32.and - local.tee $1 - call $__Znwm - local.tee $0 - i32.store - local.get $2 - local.get $1 - i32.const -2147483648 - i32.or - i32.store offset=8 - local.get $2 - local.get $3 - i32.store offset=4 - local.get $2 - i32.const 11 - i32.add - local.set $1 - br $block_0 - end ;; $if_0 - local.set $0 - br $block - end ;; $block_0 - local.get $0 - local.get $7 - local.get $3 - call $_memcpy - drop - end ;; $block - local.get $0 - local.get $3 - i32.add - i32.const 0 - i32.store8 + local.get $7 local.get $4 - local.get $5 - local.get $2 i32.load - local.get $2 - local.get $1 - i32.load8_s + local.get $4 + local.get $4 + i32.load8_s offset=11 local.tee $0 i32.const 0 i32.lt_s - local.tee $3 + local.tee $1 select - local.get $2 + local.get $4 i32.load offset=4 local.get $0 i32.const 255 i32.and - local.get $3 + local.get $1 select call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKcm local.tee $0 i64.load align=4 i64.store align=4 - local.get $4 + local.get $3 local.get $0 i32.load offset=8 i32.store offset=8 @@ -2400,182 +5437,341 @@ local.get $0 i32.const 0 i32.store offset=8 - i32.const 4 - local.get $4 + i32.const 3 + local.get $3 i32.load - local.get $4 - local.get $4 + local.get $3 + local.get $3 i32.load8_s offset=11 local.tee $0 i32.const 0 i32.lt_s - local.tee $3 + local.tee $1 select - local.get $4 + local.get $3 i32.load offset=4 local.get $0 i32.const 255 i32.and - local.get $3 + local.get $1 select call $_proxy_log drop + local.get $3 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if + local.get $3 + i32.load + call $_free + end ;; $if local.get $4 i32.load8_s offset=11 i32.const 0 i32.lt_s - if $if_2 - local.get $4 + if $if_0 + local.get $4 + i32.load + call $_free + end ;; $if_0 + local.get $2 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_1 + local.get $2 + i32.load + call $_free + end ;; $if_1 + local.get $7 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_2 + local.get $7 + i32.load + call $_free + end ;; $if_2 + local.get $8 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_3 + local.get $8 + i32.load + call $_free + end ;; $if_3 + local.get $9 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_4 + local.get $9 + i32.load + call $_free + end ;; $if_4 + local.get $10 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_5 + local.get $10 + i32.load + call $_free + end ;; $if_5 + local.get $5 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_6 + local.get $5 i32.load call $_free - end ;; $if_2 - local.get $1 - i32.load8_s + end ;; $if_6 + local.get $11 + i32.load8_s offset=11 i32.const 0 i32.lt_s - if $if_3 - local.get $2 + if $if_7 + local.get $11 i32.load call $_free - end ;; $if_3 - local.get $5 + end ;; $if_7 + local.get $12 i32.load8_s offset=11 i32.const 0 - i32.ge_s - if $if_4 - local.get $6 + i32.lt_s + if $if_8 + local.get $12 i32.load call $_free - local.get $6 - call $_free - local.get $4 + end ;; $if_8 + local.get $6 + i32.load8_s offset=11 + i32.const 0 + i32.ge_s + if $if_9 + local.get $2 global.set $32 - i32.const 0 return - end ;; $if_4 - local.get $5 - i32.load - call $_free + end ;; $if_9 local.get $6 i32.load call $_free - local.get $6 - call $_free - local.get $4 + local.get $2 global.set $32 - i32.const 0 ) - (func $__ZN14ExampleContext6onDoneEv (type $0) + (func $__ZN14ExampleContext8onDeleteEv (type $0) (param $0 i32) (local $1 i32) (local $2 i32) (local $3 i32) + (local $4 i32) + (local $5 i32) + (local $6 i32) + (local $7 i32) + (local $8 i32) + (local $9 i32) + (local $10 i32) + (local $11 i32) + (local $12 i32) + (local $13 i32) global.get $32 - local.set $1 + local.set $2 global.get $32 - i32.const 32 + i32.const 144 i32.add global.set $32 - local.get $1 + local.get $2 + i32.const 108 + i32.add + local.set $3 + local.get $2 + i32.const 120 + i32.add + local.set $7 + local.get $2 + i32.const 96 + i32.add + local.set $8 + local.get $2 + i32.const 84 + i32.add + local.set $9 + local.get $2 + i32.const 72 + i32.add + local.set $10 + local.get $2 + i32.const 60 + i32.add + local.set $11 + local.get $2 + i32.const 24 + i32.add + local.set $5 + local.get $2 i32.const 12 i32.add - local.tee $2 - local.get $0 - i32.const -64 - i32.sub - i32.load - call $__ZNSt3__29to_stringEj - local.get $1 + local.set $4 local.get $2 - i32.const 11160 - call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6insertEmPKc - local.tee $0 + i32.const 36 + i32.add + local.tee $6 + i64.const 0 + i64.store align=4 + local.get $6 + i32.const 0 + i32.store offset=8 + local.get $6 + i32.const 1 + i32.store8 offset=11 + local.get $6 + i32.const 91 + i32.store8 + local.get $6 + i32.const 0 + i32.store8 offset=1 + local.get $2 + i32.const 48 + i32.add + local.tee $12 + local.get $6 + i32.const 11035 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc + local.tee $1 i64.load align=4 i64.store align=4 + local.get $12 local.get $1 - local.get $0 i32.load offset=8 i32.store offset=8 - local.get $0 + local.get $1 i64.const 0 i64.store align=4 - local.get $0 + local.get $1 i32.const 0 i32.store offset=8 - i32.const 3 + local.get $11 + local.get $12 + i32.const 11069 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc + local.tee $1 + i64.load align=4 + i64.store align=4 + local.get $11 local.get $1 - i32.load + i32.load offset=8 + i32.store offset=8 local.get $1 + i64.const 0 + i64.store align=4 local.get $1 + i32.const 0 + i32.store offset=8 + local.get $5 + i32.const 68 + call $__ZNSt3__29to_stringEi + local.get $10 + local.get $11 + local.get $5 + i32.load + local.get $5 + local.get $5 i32.load8_s offset=11 - local.tee $0 + local.tee $1 i32.const 0 i32.lt_s - local.tee $3 + local.tee $13 select - local.get $1 + local.get $5 i32.load offset=4 - local.get $0 + local.get $1 i32.const 255 i32.and - local.get $3 + local.get $13 select - call $_proxy_log - drop + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKcm + local.tee $1 + i64.load align=4 + i64.store align=4 + local.get $10 + local.get $1 + i32.load offset=8 + i32.store offset=8 + local.get $1 + i64.const 0 + i64.store align=4 local.get $1 - i32.load8_s offset=11 i32.const 0 - i32.lt_s - if $if - local.get $1 - i32.load - call $_free - end ;; $if - local.get $2 - i32.load8_s offset=11 + i32.store offset=8 + local.get $9 + local.get $10 + i32.const 11071 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc + local.tee $1 + i64.load align=4 + i64.store align=4 + local.get $9 + local.get $1 + i32.load offset=8 + i32.store offset=8 + local.get $1 + i64.const 0 + i64.store align=4 + local.get $1 i32.const 0 - i32.ge_s - if $if_0 - local.get $1 - global.set $32 - return - end ;; $if_0 - local.get $2 - i32.load - call $_free + i32.store offset=8 + local.get $8 + local.get $9 + i32.const 11290 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc + local.tee $1 + i64.load align=4 + i64.store align=4 + local.get $8 local.get $1 - global.set $32 - ) - - (func $__ZN14ExampleContext5onLogEv (type $0) - (param $0 i32) - (local $1 i32) - (local $2 i32) - (local $3 i32) - global.get $32 - local.set $1 - global.get $32 - i32.const 32 - i32.add - global.set $32 + i32.load offset=8 + i32.store offset=8 local.get $1 - i32.const 12 - i32.add - local.tee $2 + i64.const 0 + i64.store align=4 + local.get $1 + i32.const 0 + i32.store offset=8 + local.get $7 + local.get $8 + i32.const 11083 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc + local.tee $1 + i64.load align=4 + i64.store align=4 + local.get $7 + local.get $1 + i32.load offset=8 + i32.store offset=8 + local.get $1 + i64.const 0 + i64.store align=4 + local.get $1 + i32.const 0 + i32.store offset=8 + local.get $2 local.get $0 i32.const -64 i32.sub i32.load call $__ZNSt3__29to_stringEj - local.get $1 + local.get $4 local.get $2 - i32.const 11168 + i32.const 11299 call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6insertEmPKc local.tee $0 i64.load align=4 i64.store align=4 - local.get $1 + local.get $4 local.get $0 i32.load offset=8 i32.store offset=8 @@ -2585,79 +5781,30 @@ local.get $0 i32.const 0 i32.store offset=8 - i32.const 3 - local.get $1 + local.get $3 + local.get $7 + local.get $4 i32.load - local.get $1 - local.get $1 + local.get $4 + local.get $4 i32.load8_s offset=11 local.tee $0 i32.const 0 i32.lt_s - local.tee $3 + local.tee $1 select - local.get $1 + local.get $4 i32.load offset=4 local.get $0 i32.const 255 i32.and - local.get $3 - select - call $_proxy_log - drop - local.get $1 - i32.load8_s offset=11 - i32.const 0 - i32.lt_s - if $if - local.get $1 - i32.load - call $_free - end ;; $if - local.get $2 - i32.load8_s offset=11 - i32.const 0 - i32.ge_s - if $if_0 - local.get $1 - global.set $32 - return - end ;; $if_0 - local.get $2 - i32.load - call $_free - local.get $1 - global.set $32 - ) - - (func $__ZN14ExampleContext8onDeleteEv (type $0) - (param $0 i32) - (local $1 i32) - (local $2 i32) - (local $3 i32) - global.get $32 - local.set $1 - global.get $32 - i32.const 32 - i32.add - global.set $32 - local.get $1 - i32.const 12 - i32.add - local.tee $2 - local.get $0 - i32.const -64 - i32.sub - i32.load - call $__ZNSt3__29to_stringEj local.get $1 - local.get $2 - i32.const 11175 - call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6insertEmPKc + select + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKcm local.tee $0 i64.load align=4 i64.store align=4 - local.get $1 + local.get $3 local.get $0 i32.load offset=8 i32.store offset=8 @@ -2668,47 +5815,128 @@ i32.const 0 i32.store offset=8 i32.const 3 - local.get $1 + local.get $3 i32.load - local.get $1 - local.get $1 + local.get $3 + local.get $3 i32.load8_s offset=11 local.tee $0 i32.const 0 i32.lt_s - local.tee $3 + local.tee $1 select - local.get $1 + local.get $3 i32.load offset=4 local.get $0 i32.const 255 i32.and - local.get $3 + local.get $1 select call $_proxy_log drop - local.get $1 + local.get $3 i32.load8_s offset=11 i32.const 0 i32.lt_s if $if - local.get $1 + local.get $3 i32.load call $_free end ;; $if + local.get $4 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_0 + local.get $4 + i32.load + call $_free + end ;; $if_0 local.get $2 i32.load8_s offset=11 i32.const 0 + i32.lt_s + if $if_1 + local.get $2 + i32.load + call $_free + end ;; $if_1 + local.get $7 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_2 + local.get $7 + i32.load + call $_free + end ;; $if_2 + local.get $8 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_3 + local.get $8 + i32.load + call $_free + end ;; $if_3 + local.get $9 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_4 + local.get $9 + i32.load + call $_free + end ;; $if_4 + local.get $10 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_5 + local.get $10 + i32.load + call $_free + end ;; $if_5 + local.get $5 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_6 + local.get $5 + i32.load + call $_free + end ;; $if_6 + local.get $11 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_7 + local.get $11 + i32.load + call $_free + end ;; $if_7 + local.get $12 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_8 + local.get $12 + i32.load + call $_free + end ;; $if_8 + local.get $6 + i32.load8_s offset=11 + i32.const 0 i32.ge_s - if $if_0 - local.get $1 + if $if_9 + local.get $2 global.set $32 return - end ;; $if_0 - local.get $2 + end ;; $if_9 + local.get $6 i32.load call $_free - local.get $1 + local.get $2 global.set $32 ) @@ -7167,7 +10395,7 @@ i32.const 3 i32.store local.get $3 - i32.const 11441 + i32.const 11565 i32.store offset=4 local.get $3 i32.const 370 @@ -7179,7 +10407,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 11490 + i32.const 11614 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -7238,33 +10466,33 @@ global.set $32 local.get $0 global.set $32 - i32.const 24396 + i32.const 24524 i32.const 0 i32.store - i32.const 24388 - i32.const 24536 + i32.const 24516 + i32.const 24664 i32.store - i32.const 24392 + i32.const 24520 i32.const 0 i32.store - i32.const 24400 + i32.const 24528 i32.const 0 i32.store - i32.const 24384 + i32.const 24512 i32.const 6840 i32.store - i32.const 24408 + i32.const 24536 call $__ZN6google8protobuf6StructC2Ev i32.const 119 - i32.const 24408 + i32.const 24536 call $__ZN6google8protobuf8internal13OnShutdownRunEPFvPKvES3_ - i32.const 24440 + i32.const 24568 i32.const 6928 i32.store - i32.const 24444 + i32.const 24572 i32.const 0 i32.store - i32.const 24456 + i32.const 24584 i32.const 0 i32.store i32.const 6816 @@ -7272,19 +10500,19 @@ if $if call $__ZN6google8protobuf8internal11InitSCCImplEPNS1_11SCCInfoBaseE end ;; $if - i32.const 24460 + i32.const 24588 i32.const 0 i32.store i32.const 119 - i32.const 24440 + i32.const 24568 call $__ZN6google8protobuf8internal13OnShutdownRunEPFvPKvES3_ - i32.const 24496 + i32.const 24624 call $__ZN6google8protobuf9ListValueC2Ev i32.const 119 - i32.const 24496 + i32.const 24624 call $__ZN6google8protobuf8internal13OnShutdownRunEPFvPKvES3_ - i32.const 24392 - i32.const 24440 + i32.const 24520 + i32.const 24568 i32.store ) @@ -7380,7 +10608,7 @@ i32.const 3 i32.store local.get $2 - i32.const 11629 + i32.const 11753 i32.store offset=4 local.get $2 i32.const 915 @@ -7392,7 +10620,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 12809 + i32.const 12935 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -7526,19 +10754,19 @@ i32.const 25 i32.store offset=4 local.get $1 - i32.const 14096 + i32.const 14222 i64.load align=1 i64.store align=1 local.get $1 - i32.const 14104 + i32.const 14230 i64.load align=1 i64.store offset=8 align=1 local.get $1 - i32.const 14112 + i32.const 14238 i64.load align=1 i64.store offset=16 align=1 local.get $1 - i32.const 14120 + i32.const 14246 i32.load8_s i32.store8 offset=24 local.get $1 @@ -7650,10 +10878,10 @@ local.get $1 call $__ZN6google8protobuf9ListValue9MergeFromERKS1_ else - i32.const 13662 - i32.const 13703 + i32.const 13788 + i32.const 13829 i32.const 92 - i32.const 13752 + i32.const 13878 call $___assert_fail end ;; $if ) @@ -8067,7 +11295,7 @@ local.tee $1 i32.const -2 i32.and - i32.const 24536 + i32.const 24664 local.get $1 i32.const 1 i32.and @@ -8176,7 +11404,7 @@ local.tee $2 i32.const -2 i32.and - i32.const 24536 + i32.const 24664 local.get $2 i32.const 1 i32.and @@ -8195,7 +11423,7 @@ local.tee $0 i32.const -2 i32.and - i32.const 24536 + i32.const 24664 local.get $0 i32.const 1 i32.and @@ -8252,7 +11480,7 @@ i32.const 3 i32.store local.get $3 - i32.const 11689 + i32.const 11815 i32.store offset=4 local.get $3 i32.const 1505 @@ -8264,7 +11492,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 11741 + i32.const 11867 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -8294,7 +11522,7 @@ i32.const 3 i32.store local.get $2 - i32.const 11689 + i32.const 11815 i32.store offset=4 local.get $2 i32.const 1506 @@ -8306,7 +11534,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 11772 + i32.const 11898 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -8341,7 +11569,7 @@ local.tee $1 i32.const -2 i32.and - i32.const 24536 + i32.const 24664 local.get $1 i32.const 1 i32.and @@ -8492,7 +11720,7 @@ local.tee $1 i32.const -2 i32.and - i32.const 24536 + i32.const 24664 local.get $1 i32.const 1 i32.and @@ -8613,7 +11841,7 @@ local.tee $1 i32.const -2 i32.and - i32.const 24536 + i32.const 24664 local.get $1 i32.const 1 i32.and @@ -8730,7 +11958,7 @@ i32.store offset=12 end ;; $if_1 local.get $1 - i32.const 24536 + i32.const 24664 i32.store offset=4 local.get $1 i32.const 0 @@ -8964,7 +12192,7 @@ i32.const 3 i32.store local.get $3 - i32.const 11814 + i32.const 11940 i32.store offset=4 local.get $3 i32.const 418 @@ -8976,7 +12204,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 11898 + i32.const 12024 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -9062,7 +12290,7 @@ i32.const 3 i32.store local.get $2 - i32.const 11814 + i32.const 11940 i32.store offset=4 local.get $2 i32.const 427 @@ -9074,7 +12302,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 12015 + i32.const 12141 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -9145,7 +12373,7 @@ i32.const 3 i32.store local.get $2 - i32.const 11814 + i32.const 11940 i32.store offset=4 local.get $2 i32.const 451 @@ -9157,7 +12385,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 11855 + i32.const 11981 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -9293,7 +12521,7 @@ i32.const 3 i32.store local.get $3 - i32.const 11814 + i32.const 11940 i32.store offset=4 local.get $3 i32.const 476 @@ -9305,7 +12533,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 12046 + i32.const 12172 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -9962,7 +13190,7 @@ local.get $0 i32.load offset=4 local.tee $1 - i32.const 24536 + i32.const 24664 i32.eq local.get $1 i32.eqz @@ -10015,7 +13243,7 @@ local.get $0 i32.load offset=4 local.tee $1 - i32.const 24536 + i32.const 24664 i32.eq local.get $1 i32.eqz @@ -10076,7 +13304,7 @@ i32.const 0 i32.store offset=12 local.get $0 - i32.const 24536 + i32.const 24664 i32.store offset=4 local.get $0 i32.const 0 @@ -10112,7 +13340,7 @@ local.get $0 i32.load offset=4 local.tee $1 - i32.const 24536 + i32.const 24664 i32.ne if $if local.get $1 @@ -10195,10 +13423,10 @@ local.get $1 call $__ZN6google8protobuf8internal12MapEntryImplINS0_27Struct_FieldsEntry_DoNotUseENS0_11MessageLiteENSt3__212basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEENS0_5ValueELNS1_14WireFormatLite9FieldTypeE9ELSE_11ELi0EE17MergeFromInternalERKSF_ else - i32.const 13662 - i32.const 13703 + i32.const 13788 + i32.const 13829 i32.const 92 - i32.const 13752 + i32.const 13878 call $___assert_fail end ;; $if ) @@ -10288,13 +13516,13 @@ local.get $5 i32.load local.tee $2 - i32.const 24536 + i32.const 24664 i32.eq if $if_0 local.get $5 local.get $0 i32.load offset=12 - i32.const 24536 + i32.const 24664 call $__ZN6google8protobuf8internal14ArenaStringPtr14CreateInstanceEPNS0_5ArenaEPKNSt3__212basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEE local.get $5 i32.load @@ -11128,7 +14356,7 @@ i32.const 3 i32.store offset=20 local.get $5 - i32.const 24536 + i32.const 24664 i32.store end ;; $if_5 local.get $0 @@ -11150,12 +14378,12 @@ local.get $5 i32.load local.tee $3 - i32.const 24536 + i32.const 24664 i32.eq if $if_7 (result i32) local.get $5 local.get $2 - i32.const 24536 + i32.const 24664 call $__ZN6google8protobuf8internal14ArenaStringPtr14CreateInstanceEPNS0_5ArenaEPKNSt3__212basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEE local.get $5 i32.load @@ -11176,9 +14404,9 @@ i32.load local.tee $2 else - i32.const 24536 + i32.const 24664 local.set $2 - i32.const 24536 + i32.const 24664 end ;; $if_8 i32.load8_s offset=11 i32.const 0 @@ -11195,9 +14423,9 @@ i32.load local.tee $3 else - i32.const 24536 + i32.const 24664 local.set $3 - i32.const 24536 + i32.const 24664 end ;; $if_10 i32.load8_s offset=11 local.tee $2 @@ -11212,7 +14440,7 @@ i32.and end ;; $if_11 i32.const 0 - i32.const 12090 + i32.const 12216 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ br_if $loop i32.const 0 @@ -11609,7 +14837,7 @@ local.get $0 i32.load offset=8 local.tee $1 - i32.const 24536 + i32.const 24664 i32.eq local.get $1 i32.eqz @@ -11952,7 +15180,7 @@ local.get $6 select i32.const 0 - i32.const 12125 + i32.const 12251 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ select br $block_4 @@ -12457,7 +15685,7 @@ i32.const 0 i32.store offset=12 local.get $2 - i32.const 24536 + i32.const 24664 i32.store offset=4 local.get $2 i32.const 0 @@ -12502,13 +15730,13 @@ local.tee $3 i32.load local.tee $5 - i32.const 24536 + i32.const 24664 i32.eq if $if_14 (result i32) local.get $3 local.get $2 i32.load offset=12 - i32.const 24536 + i32.const 24664 call $__ZN6google8protobuf8internal14ArenaStringPtr14CreateInstanceEPNS0_5ArenaEPKNSt3__212basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEE local.get $3 i32.load @@ -12784,7 +16012,7 @@ i32.const 0 i32.store offset=12 local.get $2 - i32.const 24536 + i32.const 24664 i32.store offset=4 local.get $2 i32.const 0 @@ -12865,13 +16093,13 @@ local.tee $3 i32.load local.tee $2 - i32.const 24536 + i32.const 24664 i32.eq if $if_2 local.get $3 local.get $4 i32.load offset=12 - i32.const 24536 + i32.const 24664 call $__ZN6google8protobuf8internal14ArenaStringPtr14CreateInstanceEPNS0_5ArenaEPKNSt3__212basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEE local.get $3 i32.load @@ -13044,7 +16272,7 @@ i32.store offset=12 end ;; $if local.get $0 - i32.const 24536 + i32.const 24664 i32.store offset=4 local.get $0 i32.const 0 @@ -13404,7 +16632,7 @@ i32.const 3 i32.store local.get $4 - i32.const 11629 + i32.const 11753 i32.store offset=4 local.get $4 i32.const 796 @@ -13416,7 +16644,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 12164 + i32.const 12290 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -13545,7 +16773,7 @@ i32.const 8 i32.add local.tee $0 - i32.const 24536 + i32.const 24664 i32.store end ;; $if_4 local.get $2 @@ -13565,7 +16793,7 @@ local.get $0 i32.load local.tee $2 - i32.const 24536 + i32.const 24664 i32.eq if $if_6 local.get $0 @@ -13641,7 +16869,7 @@ i32.const 5 i32.eq br_if $block_8 - i32.const 24408 + i32.const 24536 end ;; $if_8 br $block_7 end ;; $block_8 @@ -13695,7 +16923,7 @@ i32.const 6 i32.eq br_if $block_10 - i32.const 24496 + i32.const 24624 end ;; $if_10 br $block_9 end ;; $block_10 @@ -13738,7 +16966,7 @@ i32.const 3 i32.store local.get $3 - i32.const 11629 + i32.const 11753 i32.store offset=4 local.get $3 i32.const 341 @@ -13750,7 +16978,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 12164 + i32.const 12290 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -13933,7 +17161,7 @@ i32.const 3 i32.store local.get $2 - i32.const 11629 + i32.const 11753 i32.store offset=4 local.get $2 i32.const 1040 @@ -13945,7 +17173,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 12164 + i32.const 12290 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -14042,7 +17270,7 @@ i32.const 3 i32.store local.get $2 - i32.const 11689 + i32.const 11815 i32.store offset=4 local.get $2 i32.const 1586 @@ -14054,7 +17282,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 12198 + i32.const 12324 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -14282,7 +17510,7 @@ i32.const 3 i32.store local.get $2 - i32.const 11814 + i32.const 11940 i32.store offset=4 local.get $2 i32.const 601 @@ -14294,7 +17522,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 12695 + i32.const 12821 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -14356,7 +17584,7 @@ i32.const 3 i32.store local.get $2 - i32.const 11814 + i32.const 11940 i32.store offset=4 local.get $2 i32.const 607 @@ -14368,7 +17596,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 12729 + i32.const 12855 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -14411,7 +17639,7 @@ i32.const 3 i32.store local.get $3 - i32.const 11814 + i32.const 11940 i32.store offset=4 local.get $3 i32.const 612 @@ -14423,7 +17651,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 12773 + i32.const 12899 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -15492,7 +18720,7 @@ i32.const 3 i32.store local.get $1 - i32.const 11629 + i32.const 11753 i32.store offset=4 local.get $1 i32.const 495 @@ -15504,7 +18732,7 @@ i32.const 0 i32.store offset=20 local.get $1 - i32.const 12809 + i32.const 12935 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $1 @@ -15861,7 +19089,7 @@ i32.const 3 i32.store local.get $2 - i32.const 11814 + i32.const 11940 i32.store offset=4 local.get $2 i32.const 765 @@ -15873,7 +19101,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 13279 + i32.const 13405 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -16062,7 +19290,7 @@ i32.const 3 i32.store local.get $4 - i32.const 11814 + i32.const 11940 i32.store offset=4 local.get $4 i32.const 672 @@ -16074,7 +19302,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 12853 + i32.const 12979 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -16100,7 +19328,7 @@ i32.const 3 i32.store local.get $4 - i32.const 11814 + i32.const 11940 i32.store offset=4 local.get $4 i32.const 678 @@ -16112,7 +19340,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 12954 + i32.const 13080 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -16194,7 +19422,7 @@ i32.const 3 i32.store local.get $6 - i32.const 11814 + i32.const 11940 i32.store offset=4 local.get $6 i32.const 878 @@ -16206,7 +19434,7 @@ i32.const 0 i32.store offset=20 local.get $6 - i32.const 13010 + i32.const 13136 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $6 @@ -16238,7 +19466,7 @@ i32.const 3 i32.store local.get $5 - i32.const 11814 + i32.const 11940 i32.store offset=4 local.get $5 i32.const 685 @@ -16250,7 +19478,7 @@ i32.const 0 i32.store offset=20 local.get $5 - i32.const 13050 + i32.const 13176 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $5 @@ -16367,7 +19595,7 @@ i32.const 3 i32.store local.get $2 - i32.const 11814 + i32.const 11940 i32.store offset=4 local.get $2 i32.const 837 @@ -16379,7 +19607,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 13172 + i32.const 13298 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -16651,7 +19879,7 @@ i32.const 3 i32.store local.get $2 - i32.const 11814 + i32.const 11940 i32.store offset=4 local.get $2 i32.const 848 @@ -16663,7 +19891,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 13237 + i32.const 13363 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -16725,7 +19953,7 @@ i32.const 3 i32.store local.get $4 - i32.const 11814 + i32.const 11940 i32.store offset=4 local.get $4 i32.const 713 @@ -16737,7 +19965,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 13125 + i32.const 13251 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -18022,7 +21250,7 @@ i32.const 3 i32.store local.get $2 - i32.const 11814 + i32.const 11940 i32.store offset=4 local.get $2 i32.const 926 @@ -18034,7 +21262,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 13332 + i32.const 13458 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -18050,7 +21278,7 @@ i32.const 3 i32.store local.get $3 - i32.const 11814 + i32.const 11940 i32.store offset=4 local.get $3 i32.const 927 @@ -18062,7 +21290,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 13367 + i32.const 13493 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -18643,7 +21871,7 @@ i32.const 3 i32.store local.get $5 - i32.const 11814 + i32.const 11940 i32.store offset=4 local.get $5 i32.const 527 @@ -18655,7 +21883,7 @@ i32.const 0 i32.store offset=20 local.get $5 - i32.const 13404 + i32.const 13530 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $5 @@ -18919,7 +22147,7 @@ i32.const 3 i32.store local.get $1 - i32.const 11629 + i32.const 11753 i32.store offset=4 local.get $1 i32.const 150 @@ -18931,7 +22159,7 @@ i32.const 0 i32.store offset=20 local.get $1 - i32.const 12809 + i32.const 12935 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $1 @@ -19013,19 +22241,19 @@ i32.const 22 i32.store offset=4 local.get $1 - i32.const 13762 + i32.const 13888 i64.load align=1 i64.store align=1 local.get $1 - i32.const 13770 + i32.const 13896 i64.load align=1 i64.store offset=8 align=1 local.get $1 - i32.const 13778 + i32.const 13904 i32.load align=1 i32.store offset=16 align=1 local.get $1 - i32.const 13782 + i32.const 13908 i32.load16_s align=1 i32.store16 offset=20 align=1 local.get $1 @@ -19103,10 +22331,10 @@ local.get $1 call $__ZN6google8protobuf6Struct9MergeFromERKS1_ else - i32.const 13662 - i32.const 13703 + i32.const 13788 + i32.const 13829 i32.const 92 - i32.const 13752 + i32.const 13878 call $___assert_fail end ;; $if ) @@ -19215,7 +22443,7 @@ i32.store offset=12 end ;; $if_1 local.get $2 - i32.const 24536 + i32.const 24664 i32.store offset=4 local.get $2 i32.const 0 @@ -19285,7 +22513,7 @@ local.get $2 local.get $4 i32.const 1 - i32.const 12125 + i32.const 12251 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ drop local.get $5 @@ -19424,7 +22652,7 @@ i32.store offset=12 end ;; $if_8 local.get $2 - i32.const 24536 + i32.const 24664 i32.store offset=4 local.get $2 i32.const 0 @@ -19493,7 +22721,7 @@ local.get $2 local.get $4 i32.const 1 - i32.const 12125 + i32.const 12251 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ drop local.get $8 @@ -19526,7 +22754,7 @@ local.tee $2 i32.const -2 i32.and - i32.const 24536 + i32.const 24664 local.get $2 i32.const 1 i32.and @@ -19545,7 +22773,7 @@ local.tee $0 i32.const -2 i32.and - i32.const 24536 + i32.const 24664 local.get $0 i32.const 1 i32.and @@ -22586,13 +25814,13 @@ i32.add local.tee $2 i32.load - i32.const 24536 + i32.const 24664 i32.eq if $if_1 local.get $2 local.get $0 i32.load offset=12 - i32.const 24536 + i32.const 24664 call $__ZN6google8protobuf8internal14ArenaStringPtr14CreateInstanceEPNS0_5ArenaEPKNSt3__212basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEE end ;; $if_1 local.get $1 @@ -22608,7 +25836,7 @@ local.get $2 i32.load local.tee $4 - i32.const 24536 + i32.const 24664 i32.eq if $if_2 local.get $2 @@ -22676,7 +25904,7 @@ local.get $0 i32.load offset=8 local.tee $0 - i32.const 24392 + i32.const 24520 i32.load local.get $0 select @@ -22706,7 +25934,7 @@ i32.const 3 i32.store local.get $1 - i32.const 11689 + i32.const 11815 i32.store offset=4 local.get $1 i32.const 1567 @@ -22718,7 +25946,7 @@ i32.const 0 i32.store offset=20 local.get $1 - i32.const 14069 + i32.const 14195 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $1 @@ -22922,19 +26150,19 @@ i32.const 21 i32.store offset=4 local.get $1 - i32.const 14151 + i32.const 14277 i64.load align=1 i64.store align=1 local.get $1 - i32.const 14159 + i32.const 14285 i64.load align=1 i64.store offset=8 align=1 local.get $1 - i32.const 14167 + i32.const 14293 i32.load align=1 i32.store offset=16 align=1 local.get $1 - i32.const 14171 + i32.const 14297 i32.load8_s i32.store8 offset=20 local.get $1 @@ -23010,10 +26238,10 @@ local.get $1 call $__ZN6google8protobuf5Value9MergeFromERKS1_ else - i32.const 13662 - i32.const 13703 + i32.const 13788 + i32.const 13829 i32.const 92 - i32.const 13752 + i32.const 13878 call $___assert_fail end ;; $if ) @@ -23076,7 +26304,7 @@ local.get $2 local.get $3 i32.const 1 - i32.const 12090 + i32.const 12216 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ drop local.get $0 @@ -23087,7 +26315,7 @@ local.get $0 i32.load offset=8 else - i32.const 24536 + i32.const 24664 end ;; $if_3 local.get $1 call $__ZN6google8protobuf8internal14WireFormatLite23WriteStringMaybeAliasedEiRKNSt3__212basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEPNS0_2io17CodedOutputStreamE @@ -23137,7 +26365,7 @@ local.tee $2 i32.const -2 i32.and - i32.const 24536 + i32.const 24664 local.get $2 i32.const 1 i32.and @@ -23156,7 +26384,7 @@ local.tee $0 i32.const -2 i32.and - i32.const 24536 + i32.const 24664 local.get $0 i32.const 1 i32.and @@ -23296,13 +26524,13 @@ i32.store offset=4 block $block block $block_0 - i32.const 24572 + i32.const 24700 i32.load local.tee $3 i32.eqz local.tee $11 br_if $block_0 - i32.const 24568 + i32.const 24696 i32.load local.get $3 local.get $3 @@ -23413,13 +26641,13 @@ br $block end ;; $block_0 local.get $11 - i32.const 24584 + i32.const 24712 f32.load local.tee $14 local.get $3 f32.convert_i32_u f32.mul - i32.const 24580 + i32.const 24708 i32.load i32.const 1 i32.add @@ -23478,7 +26706,7 @@ i32.lt_u select call $__ZNSt3__212__hash_tableINS_17__hash_value_typeIiNS_10unique_ptrI11ContextBaseNS_14default_deleteIS3_EEEEEENS_22__unordered_map_hasherIiS7_NS_4hashIiEELb1EEENS_21__unordered_map_equalIiS7_NS_8equal_toIiEELb1EEENS_9allocatorIS7_EEE6rehashEm - i32.const 24572 + i32.const 24700 i32.load local.set $3 local.get $4 @@ -23489,7 +26717,7 @@ local.set $2 block $block_2 block $block_3 - i32.const 24568 + i32.const 24696 i32.load local.get $3 local.get $3 @@ -23534,14 +26762,14 @@ br $block_3 else local.get $4 - i32.const 24576 + i32.const 24704 i32.load i32.store - i32.const 24576 + i32.const 24704 local.get $4 i32.store local.get $11 - i32.const 24576 + i32.const 24704 i32.store local.get $4 i32.load @@ -23550,7 +26778,7 @@ local.get $2 i32.load offset=4 local.set $2 - i32.const 24568 + i32.const 24696 i32.load local.get $10 if $if_14 (result i32) @@ -23587,8 +26815,8 @@ local.get $4 i32.store end ;; $block_2 - i32.const 24580 - i32.const 24580 + i32.const 24708 + i32.const 24708 i32.load i32.const 1 i32.add @@ -23712,7 +26940,7 @@ i32.add i32.const 0 i32.store8 - i32.const 24612 + i32.const 24740 i32.load local.tee $1 if $if_21 @@ -24557,12 +27785,12 @@ local.set $12 block $block block $block_0 - i32.const 24572 + i32.const 24700 i32.load local.tee $5 i32.eqz br_if $block_0 - i32.const 24568 + i32.const 24696 i32.load local.get $5 local.get $5 @@ -24698,7 +27926,7 @@ local.set $0 br $block end ;; $block_0 - i32.const 24608 + i32.const 24736 i32.load i32.eqz if $if_7 @@ -24926,7 +28154,7 @@ i32.add i32.const 0 i32.store8 - i32.const 24608 + i32.const 24736 i32.load local.get $7 call $__ZNSt3__212__hash_tableINS_17__hash_value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEENS_8functionIFNS_10unique_ptrI11RootContextNS_14default_deleteISA_EEEEjNS_17basic_string_viewIcS4_EEEEEEENS_22__unordered_map_hasherIS7_SI_NS_4hashIS7_EELb1EEENS_21__unordered_map_equalIS7_SI_NS_8equal_toIS7_EELb1EEENS5_ISI_EEE4findIS7_EENS_15__hash_iteratorIPNS_11__hash_nodeISI_PvEEEERKT_ @@ -25277,7 +28505,7 @@ (local $3 i32) (local $4 i32) (local $5 i32) - i32.const 24572 + i32.const 24700 i32.load local.tee $1 i32.eqz @@ -25285,7 +28513,7 @@ i32.const 0 return end ;; $if - i32.const 24568 + i32.const 24696 i32.load local.get $1 local.get $1 @@ -25453,7 +28681,7 @@ local.get $0 i32.load local.set $4 - i32.const 24572 + i32.const 24700 i32.load local.tee $2 i32.eqz @@ -25462,7 +28690,7 @@ i32.const 0 local.set $0 else - i32.const 24568 + i32.const 24696 i32.load local.get $2 local.get $2 @@ -25601,13 +28829,13 @@ i32.const 0 i32.store local.get $6 - i32.const 24584 + i32.const 24712 f32.load local.tee $8 local.get $2 f32.convert_i32_u f32.mul - i32.const 24580 + i32.const 24708 i32.load i32.const 1 i32.add @@ -25667,7 +28895,7 @@ i32.lt_u select call $__ZNSt3__212__hash_tableINS_17__hash_value_typeIiNS_10unique_ptrI11ContextBaseNS_14default_deleteIS3_EEEEEENS_22__unordered_map_hasherIiS7_NS_4hashIiEELb1EEENS_21__unordered_map_equalIiS7_NS_8equal_toIiEELb1EEENS_9allocatorIS7_EEE6rehashEm - i32.const 24572 + i32.const 24700 i32.load local.tee $1 i32.const -1 @@ -25704,7 +28932,7 @@ end ;; $if_9 block $block_3 block $block_4 - i32.const 24568 + i32.const 24696 i32.load local.get $0 i32.const 2 @@ -25721,14 +28949,14 @@ br $block_4 else local.get $3 - i32.const 24576 + i32.const 24704 i32.load i32.store - i32.const 24576 + i32.const 24704 local.get $3 i32.store local.get $2 - i32.const 24576 + i32.const 24704 i32.store local.get $3 i32.load @@ -25737,7 +28965,7 @@ local.get $0 i32.load offset=4 local.set $0 - i32.const 24568 + i32.const 24696 i32.load local.get $1 local.get $1 @@ -25779,8 +29007,8 @@ local.get $3 i32.store end ;; $block_3 - i32.const 24580 - i32.const 24580 + i32.const 24708 + i32.const 24708 i32.load i32.const 1 i32.add @@ -26356,7 +29584,7 @@ i32.xor local.set $6 block $block_3 - i32.const 24592 + i32.const 24720 i32.load local.tee $2 i32.eqz @@ -26365,7 +29593,7 @@ i32.const 0 local.set $5 else - i32.const 24588 + i32.const 24716 i32.load local.get $2 local.get $2 @@ -26713,13 +29941,13 @@ i32.const 0 i32.store local.get $12 - i32.const 24604 + i32.const 24732 f32.load local.tee $13 local.get $2 f32.convert_i32_u f32.mul - i32.const 24600 + i32.const 24728 i32.load i32.const 1 i32.add @@ -26779,7 +30007,7 @@ i32.lt_u select call $__ZNSt3__212__hash_tableINS_17__hash_value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEP11RootContextEENS_22__unordered_map_hasherIS7_SA_NS_4hashIS7_EELb1EEENS_21__unordered_map_equalIS7_SA_NS_8equal_toIS7_EELb1EEENS5_ISA_EEE6rehashEm - i32.const 24592 + i32.const 24720 i32.load local.tee $0 i32.const -1 @@ -26816,7 +30044,7 @@ end ;; $if_21 block $block_12 block $block_13 - i32.const 24588 + i32.const 24716 i32.load local.get $5 i32.const 2 @@ -26835,14 +30063,14 @@ br $block_13 else local.get $4 - i32.const 24596 + i32.const 24724 i32.load i32.store - i32.const 24596 + i32.const 24724 local.get $4 i32.store local.get $2 - i32.const 24596 + i32.const 24724 i32.store local.get $4 i32.load @@ -26851,7 +30079,7 @@ local.get $1 i32.load offset=4 local.set $1 - i32.const 24588 + i32.const 24716 i32.load local.get $0 local.get $0 @@ -26893,8 +30121,8 @@ local.get $4 i32.store end ;; $block_12 - i32.const 24600 - i32.const 24600 + i32.const 24728 + i32.const 24728 i32.load i32.const 1 i32.add @@ -26934,7 +30162,7 @@ end ;; $if_0 end ;; $if local.tee $1 - i32.const 24592 + i32.const 24720 i32.load local.tee $0 i32.gt_u @@ -26960,10 +30188,10 @@ i32.gt_u i32.and local.set $3 - i32.const 24600 + i32.const 24728 i32.load f32.convert_i32_u - i32.const 24604 + i32.const 24732 f32.load f32.div f32.ceil @@ -27045,10 +30273,10 @@ local.get $0 i32.eqz if $if - i32.const 24588 + i32.const 24716 i32.load local.set $0 - i32.const 24588 + i32.const 24716 i32.const 0 i32.store local.get $0 @@ -27056,7 +30284,7 @@ local.get $0 call $_free end ;; $if_0 - i32.const 24592 + i32.const 24720 i32.const 0 i32.store return @@ -27082,10 +30310,10 @@ i32.shl call $__Znwm local.set $2 - i32.const 24588 + i32.const 24716 i32.load local.set $1 - i32.const 24588 + i32.const 24716 local.get $2 i32.store local.get $1 @@ -27093,13 +30321,13 @@ local.get $1 call $_free end ;; $if_2 - i32.const 24592 + i32.const 24720 local.get $0 i32.store i32.const 0 local.set $1 loop $loop - i32.const 24588 + i32.const 24716 i32.load local.get $1 i32.const 2 @@ -27115,7 +30343,7 @@ i32.ne br_if $loop end ;; $loop - i32.const 24596 + i32.const 24724 i32.load local.tee $6 i32.eqz @@ -27125,7 +30353,7 @@ local.get $6 i32.load offset=4 local.set $1 - i32.const 24588 + i32.const 24716 i32.load local.get $0 local.get $0 @@ -27160,7 +30388,7 @@ i32.const 2 i32.shl i32.add - i32.const 24596 + i32.const 24724 i32.store local.get $6 i32.load @@ -27202,7 +30430,7 @@ local.get $4 else block $block (result i32) - i32.const 24588 + i32.const 24716 i32.load local.get $8 i32.const 2 @@ -27430,7 +30658,7 @@ i32.load i32.store local.get $1 - i32.const 24588 + i32.const 24716 i32.load local.get $8 i32.const 2 @@ -27439,7 +30667,7 @@ i32.load i32.load i32.store - i32.const 24588 + i32.const 24716 i32.load local.get $8 i32.const 2 @@ -27487,7 +30715,7 @@ end ;; $if_0 end ;; $if local.tee $1 - i32.const 24572 + i32.const 24700 i32.load local.tee $0 i32.gt_u @@ -27513,10 +30741,10 @@ i32.gt_u i32.and local.set $3 - i32.const 24580 + i32.const 24708 i32.load f32.convert_i32_u - i32.const 24584 + i32.const 24712 f32.load f32.div f32.ceil @@ -27592,10 +30820,10 @@ local.get $0 i32.eqz if $if - i32.const 24568 + i32.const 24696 i32.load local.set $0 - i32.const 24568 + i32.const 24696 i32.const 0 i32.store local.get $0 @@ -27603,7 +30831,7 @@ local.get $0 call $_free end ;; $if_0 - i32.const 24572 + i32.const 24700 i32.const 0 i32.store return @@ -27629,10 +30857,10 @@ i32.shl call $__Znwm local.set $2 - i32.const 24568 + i32.const 24696 i32.load local.set $1 - i32.const 24568 + i32.const 24696 local.get $2 i32.store local.get $1 @@ -27640,13 +30868,13 @@ local.get $1 call $_free end ;; $if_2 - i32.const 24572 + i32.const 24700 local.get $0 i32.store i32.const 0 local.set $1 loop $loop - i32.const 24568 + i32.const 24696 i32.load local.get $1 i32.const 2 @@ -27662,7 +30890,7 @@ i32.ne br_if $loop end ;; $loop - i32.const 24576 + i32.const 24704 i32.load local.tee $4 i32.eqz @@ -27672,7 +30900,7 @@ local.get $4 i32.load offset=4 local.set $1 - i32.const 24568 + i32.const 24696 i32.load local.get $0 local.get $0 @@ -27707,7 +30935,7 @@ i32.const 2 i32.shl i32.add - i32.const 24576 + i32.const 24704 i32.store local.get $4 i32.load @@ -27734,7 +30962,7 @@ local.get $0 else block $block (result i32) - i32.const 24568 + i32.const 24696 i32.load local.get $3 i32.const 2 @@ -27793,7 +31021,7 @@ i32.load i32.store local.get $1 - i32.const 24568 + i32.const 24696 i32.load local.get $3 i32.const 2 @@ -27802,7 +31030,7 @@ i32.load i32.load i32.store - i32.const 24568 + i32.const 24696 i32.load local.get $3 i32.const 2 @@ -27849,7 +31077,7 @@ local.get $1 else block $block_2 (result i32) - i32.const 24568 + i32.const 24696 i32.load local.get $3 i32.const 2 @@ -27908,7 +31136,7 @@ i32.load i32.store local.get $2 - i32.const 24568 + i32.const 24696 i32.load local.get $3 i32.const 2 @@ -27917,7 +31145,7 @@ i32.load i32.load i32.store - i32.const 24568 + i32.const 24696 i32.load local.get $3 i32.const 2 @@ -27944,7 +31172,7 @@ (local $3 i32) (local $4 i32) (local $5 i32) - i32.const 24572 + i32.const 24700 i32.load local.tee $1 i32.eqz @@ -27952,7 +31180,7 @@ i32.const 0 return end ;; $if - i32.const 24568 + i32.const 24696 i32.load local.get $1 local.get $1 @@ -28119,14 +31347,14 @@ local.get $0 i32.load local.set $3 - i32.const 24572 + i32.const 24700 i32.load local.tee $2 i32.eqz if $if return end ;; $if - i32.const 24568 + i32.const 24696 i32.load local.tee $4 local.get $2 @@ -28294,7 +31522,7 @@ block $block_1 (result i32) block $block_2 local.get $3 - i32.const 24576 + i32.const 24704 i32.eq br_if $block_2 local.get $3 @@ -28404,7 +31632,7 @@ local.tee $2 i32.ne if $if_26 (result i32) - i32.const 24568 + i32.const 24696 i32.load local.get $2 i32.const 2 @@ -28424,8 +31652,8 @@ local.get $8 i32.const 0 i32.store - i32.const 24580 - i32.const 24580 + i32.const 24708 + i32.const 24708 i32.load i32.const -1 i32.add @@ -28474,7 +31702,7 @@ i32.const 16 i32.add global.set $32 - i32.const 24608 + i32.const 24736 i32.load i32.eqz if $if @@ -28489,7 +31717,7 @@ local.get $3 i32.const 1065353216 i32.store offset=16 - i32.const 24608 + i32.const 24736 local.get $3 i32.store i32.const 20 @@ -28503,7 +31731,7 @@ local.get $3 i32.const 1065353216 i32.store offset=16 - i32.const 24612 + i32.const 24740 local.get $3 i32.store end ;; $if @@ -28514,7 +31742,7 @@ i32.load8_s offset=8 i32.eqz if $if_0 - i32.const 24612 + i32.const 24740 i32.load local.set $6 local.get $3 @@ -28660,7 +31888,7 @@ global.set $32 return end ;; $if_7 - i32.const 24608 + i32.const 24736 i32.load local.set $5 local.get $3 @@ -30884,7 +34112,7 @@ local.get $1 i32.const 3 i32.store - i32.const 24616 + i32.const 24744 i32.load i32.const -1 i32.ne @@ -30898,7 +34126,7 @@ local.get $2 call $__ZNSt3__211__call_onceERVmPvPFvS2_E end ;; $if_0 - i32.const 24620 + i32.const 24748 i32.load drop local.get $0 @@ -30969,7 +34197,7 @@ local.get $0 i32.const 0 i32.store offset=24 - i32.const 24620 + i32.const 24748 local.get $0 i32.store i32.const 122 @@ -31054,14 +34282,14 @@ (func $__ZN6google8protobuf8internal22DeleteLogSilencerCountEv (type $8) (local $0 i32) - i32.const 24620 + i32.const 24748 i32.load local.tee $0 if $if local.get $0 call $_free end ;; $if - i32.const 24620 + i32.const 24748 i32.const 0 i32.store ) @@ -31087,11 +34315,11 @@ i32.const 16 i32.add global.set $32 - i32.const 24528 + i32.const 24656 i32.load8_s i32.eqz if $if - i32.const 24528 + i32.const 24656 i32.load8_s i32.const 0 i32.ne @@ -31115,21 +34343,21 @@ local.get $2 i64.const 0 i64.store offset=32 align=4 - i32.const 24624 + i32.const 24752 local.get $2 i32.store - i32.const 24528 + i32.const 24656 i32.const 0 i32.store - i32.const 24528 - i32.const 24528 + i32.const 24656 + i32.const 24656 i32.load i32.const 1 i32.or i32.store end ;; $if_0 end ;; $if - i32.const 24624 + i32.const 24752 i32.load local.set $2 local.get $3 @@ -31291,6 +34519,7 @@ i32.add local.get $1 call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc + drop local.get $0 ) @@ -31345,7 +34574,7 @@ i32.store local.get $2 i32.const 128 - i32.const 15072 + i32.const 17144 local.get $3 call $_snprintf drop @@ -31357,6 +34586,7 @@ i32.add local.get $2 call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc + drop local.get $2 global.set $32 local.get $0 @@ -31382,7 +34612,7 @@ i32.store local.get $2 i32.const 128 - i32.const 17021 + i32.const 17147 local.get $3 call $_snprintf drop @@ -31394,6 +34624,7 @@ i32.add local.get $2 call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc + drop local.get $2 global.set $32 local.get $0 @@ -31422,14 +34653,14 @@ i32.const 16 i32.add global.set $32 - i32.const 24628 + i32.const 24756 i64.const 0 i64.store align=4 - i32.const 24636 + i32.const 24764 i64.const 0 i64.store align=4 local.get $0 - i32.const 25382 + i32.const 25510 i32.store local.get $0 i32.const 0 @@ -31441,12 +34672,12 @@ local.get $0 i64.load align=4 i64.store align=4 - i32.const 24644 + i32.const 24772 i32.const 1 local.get $1 call $__ZN6google8protobuf4util6StatusC2ENS1_5error4CodeENS0_11StringPieceE local.get $0 - i32.const 25382 + i32.const 25510 i32.store local.get $0 i32.const 0 @@ -31455,7 +34686,7 @@ local.get $0 i64.load align=4 i64.store align=4 - i32.const 24660 + i32.const 24788 i32.const 2 local.get $1 call $__ZN6google8protobuf4util6StatusC2ENS1_5error4CodeENS0_11StringPieceE @@ -31670,7 +34901,7 @@ i32.const 3 i32.store local.get $3 - i32.const 15075 + i32.const 15198 i32.store offset=4 local.get $3 i32.const 116 @@ -31682,7 +34913,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 15100 + i32.const 15223 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -42546,7 +45777,7 @@ i32.const 3 i32.store local.get $11 - i32.const 15187 + i32.const 15310 i32.store offset=4 local.get $11 i32.const 571 @@ -42558,7 +45789,7 @@ i32.const 0 i32.store offset=20 local.get $11 - i32.const 15229 + i32.const 15352 call $__ZN6google8protobuf8internal10LogMessagelsEPKc local.get $4 call $__ZN6google8protobuf8internal10LogMessagelsEi @@ -42595,7 +45826,7 @@ i32.const 3 i32.store local.get $1 - i32.const 15187 + i32.const 15310 i32.store offset=4 local.get $1 i32.const 534 @@ -42607,12 +45838,12 @@ i32.const 0 i32.store offset=20 local.get $1 - i32.const 15229 + i32.const 15352 call $__ZN6google8protobuf8internal10LogMessagelsEPKc local.get $0 i32.load offset=4 call $__ZN6google8protobuf8internal10LogMessagelsEj - i32.const 15259 + i32.const 15382 call $__ZN6google8protobuf8internal10LogMessagelsEPKc local.get $0 i32.load offset=12 @@ -42632,29 +45863,29 @@ i32.const 32 i32.add global.set $32 - i32.const 24560 + i32.const 24688 i32.load8_s i32.eqz if $if - i32.const 24560 + i32.const 24688 i32.load8_s i32.const 0 i32.ne i32.const 1 i32.xor if $if_0 - i32.const 24560 + i32.const 24688 i32.const 0 i32.store - i32.const 24560 - i32.const 24560 + i32.const 24688 + i32.const 24688 i32.load i32.const 1 i32.or i32.store end ;; $if_0 end ;; $if - i32.const 24704 + i32.const 24832 i32.load i32.const 7580 call $_pthread_equal @@ -42672,7 +45903,7 @@ i32.const 3 i32.store local.get $0 - i32.const 15187 + i32.const 15310 i32.store offset=4 local.get $0 i32.const 801 @@ -42684,7 +45915,7 @@ i32.const 0 i32.store offset=20 local.get $0 - i32.const 15271 + i32.const 15394 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $0 @@ -42693,43 +45924,43 @@ global.set $32 return end ;; $if_1 - i32.const 24552 + i32.const 24680 i32.load8_s i32.eqz if $if_3 - i32.const 24552 + i32.const 24680 i32.load8_s i32.const 0 i32.ne i32.const 1 i32.xor if $if_4 - i32.const 24536 + i32.const 24664 i64.const 0 i64.store - i32.const 24544 + i32.const 24672 i32.const 0 i32.store i32.const 123 - i32.const 24536 + i32.const 24664 call $__ZN6google8protobuf8internal13OnShutdownRunEPFvPKvES3_ - i32.const 24552 + i32.const 24680 i32.const 0 i32.store - i32.const 24552 - i32.const 24552 + i32.const 24680 + i32.const 24680 i32.load i32.const 1 i32.or i32.store end ;; $if_4 end ;; $if_3 - i32.const 24704 + i32.const 24832 i32.const 7580 i32.store i32.const 6816 call $__ZN6google8protobuf8internal12_GLOBAL__N_111InitSCC_DFSEPNS1_11SCCInfoBaseE - i32.const 24704 + i32.const 24832 i32.const 0 i32.store local.get $0 @@ -42821,31 +46052,31 @@ i32.const 50 i32.store offset=4 local.get $1 - i32.const 15436 + i32.const 15559 i64.load align=1 i64.store align=1 local.get $1 - i32.const 15444 + i32.const 15567 i64.load align=1 i64.store offset=8 align=1 local.get $1 - i32.const 15452 + i32.const 15575 i64.load align=1 i64.store offset=16 align=1 local.get $1 - i32.const 15460 + i32.const 15583 i64.load align=1 i64.store offset=24 align=1 local.get $1 - i32.const 15468 + i32.const 15591 i64.load align=1 i64.store offset=32 align=1 local.get $1 - i32.const 15476 + i32.const 15599 i64.load align=1 i64.store offset=40 align=1 local.get $1 - i32.const 15484 + i32.const 15607 i32.load16_s align=1 i32.store16 offset=48 align=1 local.get $1 @@ -42865,7 +46096,7 @@ i32.load local.set $2 local.get $0 - i32.const 25373 + i32.const 25501 i32.load8_s i32.const 1 i32.and @@ -42982,7 +46213,7 @@ i32.const 3 i32.store local.get $4 - i32.const 15366 + i32.const 15489 i32.store offset=4 local.get $4 i32.const 373 @@ -42994,7 +46225,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 15398 + i32.const 15521 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -43077,7 +46308,7 @@ i32.const 3 i32.store local.get $3 - i32.const 15519 + i32.const 15642 i32.store offset=4 local.get $3 i32.const 59 @@ -43089,9 +46320,9 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 15553 + i32.const 15676 call $__ZN6google8protobuf8internal10LogMessagelsEPKc - i32.const 15670 + i32.const 15793 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -44774,7 +48005,7 @@ i32.const 3 i32.store local.get $4 - i32.const 15718 + i32.const 15841 i32.store offset=4 local.get $4 i32.const 507 @@ -44786,7 +48017,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 15754 + i32.const 15877 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -44986,7 +48217,7 @@ i32.const 3 i32.store local.get $4 - i32.const 15718 + i32.const 15841 i32.store offset=4 local.get $4 i32.const 516 @@ -44998,7 +48229,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 15754 + i32.const 15877 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -45677,13 +48908,13 @@ i32.load offset=8 i32.store offset=8 end ;; $if_0 - i32.const 15800 + i32.const 15923 i32.const 0 local.get $2 i32.const 1 i32.eq select - i32.const 15812 + i32.const 15935 local.get $2 select local.set $3 @@ -45695,7 +48926,7 @@ i32.const 2 i32.store local.get $1 - i32.const 15718 + i32.const 15841 i32.store offset=4 local.get $1 i32.const 626 @@ -45707,21 +48938,21 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 15826 + i32.const 15949 call $__ZN6google8protobuf8internal10LogMessagelsEPKc local.get $0 call $__ZN6google8protobuf8internal10LogMessagelsERKNSt3__212basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEE - i32.const 15839 + i32.const 15962 call $__ZN6google8protobuf8internal10LogMessagelsEPKc - i32.const 15858 + i32.const 15981 call $__ZN6google8protobuf8internal10LogMessagelsEPKc local.get $3 call $__ZN6google8protobuf8internal10LogMessagelsEPKc - i32.const 15875 + i32.const 15998 call $__ZN6google8protobuf8internal10LogMessagelsEPKc - i32.const 15888 + i32.const 16011 call $__ZN6google8protobuf8internal10LogMessagelsEPKc - i32.const 15944 + i32.const 16067 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -46491,7 +49722,7 @@ i32.const 3 i32.store local.get $2 - i32.const 15952 + i32.const 16075 i32.store offset=4 local.get $2 i32.const 591 @@ -46503,7 +49734,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 15987 + i32.const 16110 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -46646,7 +49877,7 @@ i32.const 2 i32.store local.get $1 - i32.const 15952 + i32.const 16075 i32.store offset=4 local.get $1 i32.const 190 @@ -46658,12 +49889,12 @@ i32.const 0 i32.store offset=20 local.get $1 - i32.const 16024 + i32.const 16147 call $__ZN6google8protobuf8internal10LogMessagelsEPKc local.get $0 i32.load offset=36 call $__ZN6google8protobuf8internal10LogMessagelsEi - i32.const 16091 + i32.const 16214 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $1 @@ -49127,7 +52358,7 @@ i32.const 3 i32.store local.get $2 - i32.const 16236 + i32.const 16359 i32.store offset=4 local.get $2 i32.const 132 @@ -49139,9 +52370,9 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 16316 + i32.const 16439 call $__ZN6google8protobuf8internal10LogMessagelsEPKc - i32.const 16360 + i32.const 16483 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -49162,7 +52393,7 @@ i32.const 3 i32.store local.get $2 - i32.const 16236 + i32.const 16359 i32.store offset=4 local.get $2 i32.const 134 @@ -49174,7 +52405,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 16415 + i32.const 16538 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -49201,7 +52432,7 @@ i32.const 3 i32.store local.get $3 - i32.const 16236 + i32.const 16359 i32.store offset=4 local.get $3 i32.const 135 @@ -49213,7 +52444,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 16285 + i32.const 16408 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -49269,7 +52500,7 @@ i32.const 3 i32.store local.get $3 - i32.const 16236 + i32.const 16359 i32.store offset=4 local.get $3 i32.const 151 @@ -49281,7 +52512,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 16505 + i32.const 16628 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -49355,7 +52586,7 @@ i32.const 2 i32.store local.get $5 - i32.const 16236 + i32.const 16359 i32.store offset=4 local.get $5 i32.const 164 @@ -49367,9 +52598,9 @@ i32.const 0 i32.store offset=20 local.get $5 - i32.const 16582 + i32.const 16705 call $__ZN6google8protobuf8internal10LogMessagelsEPKc - i32.const 16632 + i32.const 16755 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $5 @@ -49444,7 +52675,7 @@ i32.const 3 i32.store local.get $2 - i32.const 16236 + i32.const 16359 i32.store offset=4 local.get $2 i32.const 182 @@ -49456,7 +52687,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 16285 + i32.const 16408 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -49477,7 +52708,7 @@ i32.const 3 i32.store local.get $2 - i32.const 16236 + i32.const 16359 i32.store offset=4 local.get $2 i32.const 183 @@ -49489,7 +52720,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 16505 + i32.const 16628 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -49519,7 +52750,7 @@ i32.const 3 i32.store local.get $3 - i32.const 16236 + i32.const 16359 i32.store offset=4 local.get $3 i32.const 184 @@ -49531,7 +52762,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 16537 + i32.const 16660 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -49592,7 +52823,7 @@ i32.const 3 i32.store local.get $1 - i32.const 16236 + i32.const 16359 i32.store offset=4 local.get $1 i32.const 189 @@ -49604,7 +52835,7 @@ i32.const 0 i32.store offset=20 local.get $1 - i32.const 16505 + i32.const 16628 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $1 @@ -49659,7 +52890,7 @@ i32.add local.tee $3 i32.const 1024 - i32.const 15820 + i32.const 15943 local.get $2 call $_vsnprintf local.tee $4 @@ -49692,7 +52923,7 @@ i32.store local.get $3 local.get $5 - i32.const 15820 + i32.const 15943 local.get $2 call $_vsnprintf local.tee $1 @@ -50239,7 +53470,7 @@ i32.const 3 i32.store local.get $0 - i32.const 16694 + i32.const 16817 i32.store offset=4 local.get $0 i32.const 47 @@ -50251,7 +53482,7 @@ i32.const 0 i32.store offset=20 local.get $0 - i32.const 16733 + i32.const 16856 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $0 @@ -50282,7 +53513,7 @@ i32.const -4096 i32.gt_u if $if - i32.const 24772 + i32.const 24900 i32.const 0 local.get $0 i32.sub @@ -50391,7 +53622,7 @@ i32.const -4096 i32.gt_u if $if (result i32) - i32.const 24772 + i32.const 24900 i32.const 0 local.get $0 i32.sub @@ -50419,7 +53650,7 @@ (func $___errno_location (type $14) (result i32) - i32.const 24772 + i32.const 24900 ) (func $___stdio_write (type $5) @@ -50490,7 +53721,7 @@ i32.const -4096 i32.gt_u if $if - i32.const 24772 + i32.const 24900 i32.const 0 local.get $1 i32.sub @@ -50567,7 +53798,7 @@ i32.const -4096 i32.gt_u if $if_1 - i32.const 24772 + i32.const 24900 i32.const 0 local.get $1 i32.sub @@ -51072,7 +54303,7 @@ br_if $block_0 local.get $1 if $if (result i32) - i32.const 24772 + i32.const 24900 i32.const 75 i32.store i32.const -1 @@ -51220,13 +54451,13 @@ local.tee $1 i64.reinterpret_f64 local.set $25 - i32.const 16917 + i32.const 17040 local.set $18 i32.const 1 else - i32.const 16920 - i32.const 16923 - i32.const 16918 + i32.const 17043 + i32.const 17046 + i32.const 17041 local.get $4 i32.const 1 i32.and @@ -51249,8 +54480,8 @@ i64.const 9218868437227405312 i64.eq if $if_0 (result i32) - i32.const 16944 - i32.const 16948 + i32.const 17067 + i32.const 17071 local.get $5 i32.const 32 i32.and @@ -51258,8 +54489,8 @@ i32.ne local.tee $3 select - i32.const 16936 - i32.const 16940 + i32.const 17059 + i32.const 17063 local.get $3 select local.get $1 @@ -52607,7 +55838,7 @@ i32.eqz if $if_54 local.get $0 - i32.const 19723 + i32.const 19849 i32.const 1 call $_out end ;; $if_54 @@ -52766,7 +55997,7 @@ br $block_4 end ;; $if_61 local.get $0 - i32.const 19723 + i32.const 19849 i32.const 1 call $_out local.get $6 @@ -53140,7 +56371,7 @@ i32.sub i32.gt_s if $if_0 (result i32) - i32.const 24772 + i32.const 24900 i32.const 75 i32.store i32.const -1 @@ -53856,7 +57087,7 @@ local.set $1 i32.const 0 local.set $12 - i32.const 16900 + i32.const 17023 local.set $8 br $block_14 end ;; $block_25 @@ -53872,13 +57103,13 @@ i64.sub local.tee $25 i64.store - i32.const 16900 + i32.const 17023 local.set $8 i32.const 1 else - i32.const 16901 - i32.const 16902 - i32.const 16900 + i32.const 17024 + i32.const 17025 + i32.const 17023 local.get $7 i32.const 1 i32.and @@ -53902,7 +57133,7 @@ local.set $25 i32.const 0 local.set $12 - i32.const 16900 + i32.const 17023 local.set $8 br $block_16 end ;; $block_23 @@ -53918,7 +57149,7 @@ local.set $5 i32.const 0 local.set $12 - i32.const 16900 + i32.const 17023 local.set $8 local.get $18 local.set $1 @@ -53927,7 +57158,7 @@ local.get $10 i32.load local.tee $5 - i32.const 16910 + i32.const 17033 local.get $5 select local.tee $6 @@ -53947,7 +57178,7 @@ local.set $5 i32.const 0 local.set $12 - i32.const 16900 + i32.const 17023 local.set $8 local.get $1 local.get $6 @@ -54008,7 +57239,7 @@ local.set $5 i32.const 0 local.set $12 - i32.const 16900 + i32.const 17023 local.set $8 local.get $18 local.set $1 @@ -54036,11 +57267,11 @@ local.tee $8 select local.set $12 - i32.const 16900 + i32.const 17023 local.get $6 i32.const 4 i32.shr_u - i32.const 16900 + i32.const 17023 i32.add local.get $8 select @@ -54892,7 +58123,7 @@ i32.const 1 br $block else - i32.const 24772 + i32.const 24900 i32.const 84 i32.store i32.const -1 @@ -54997,7 +58228,7 @@ i32.store8 offset=3 i32.const 4 else - i32.const 24772 + i32.const 24900 i32.const 84 i32.store i32.const -1 @@ -55225,7 +58456,7 @@ local.get $1 i32.store local.get $0 - i32.const 14952 + i32.const 15078 local.get $2 call $_vfprintf drop @@ -55342,9 +58573,9 @@ end ;; $if_1 local.set $0 block $block_0 (result i32) - i32.const 24776 + i32.const 24904 call $___lock - i32.const 24784 + i32.const 24912 i32.load local.tee $1 end ;; $block_0 @@ -55378,7 +58609,7 @@ br_if $loop end ;; $loop end ;; $if_2 - i32.const 24776 + i32.const 24904 call $___unlock end ;; $if local.get $0 @@ -55560,7 +58791,7 @@ i32.const 245 i32.lt_u if $if (result i32) - i32.const 24788 + i32.const 24916 i32.load local.tee $6 i32.const 16 @@ -55592,7 +58823,7 @@ local.tee $0 i32.const 3 i32.shl - i32.const 24828 + i32.const 24956 i32.add local.tee $3 i32.load offset=8 @@ -55605,7 +58836,7 @@ local.get $3 i32.eq if $if_1 - i32.const 24788 + i32.const 24916 local.get $6 i32.const 1 local.get $0 @@ -55615,7 +58846,7 @@ i32.and i32.store else - i32.const 24804 + i32.const 24932 i32.load local.get $4 i32.gt_u @@ -55660,7 +58891,7 @@ return end ;; $if_0 local.get $14 - i32.const 24796 + i32.const 24924 i32.load local.tee $13 i32.gt_u @@ -55739,7 +58970,7 @@ local.tee $0 i32.const 3 i32.shl - i32.const 24828 + i32.const 24956 i32.add local.tee $1 i32.load offset=8 @@ -55752,7 +58983,7 @@ local.get $1 i32.eq if $if_6 - i32.const 24788 + i32.const 24916 local.get $6 i32.const 1 local.get $0 @@ -55763,7 +58994,7 @@ local.tee $8 i32.store else - i32.const 24804 + i32.const 24932 i32.load local.get $2 i32.gt_u @@ -55813,7 +59044,7 @@ i32.store local.get $13 if $if_9 - i32.const 24808 + i32.const 24936 i32.load local.set $10 local.get $13 @@ -55822,7 +59053,7 @@ local.tee $0 i32.const 3 i32.shl - i32.const 24828 + i32.const 24956 i32.add local.set $2 local.get $8 @@ -55832,7 +59063,7 @@ local.tee $0 i32.and if $if_10 - i32.const 24804 + i32.const 24932 i32.load local.get $2 i32.const 8 @@ -55850,7 +59081,7 @@ local.set $4 end ;; $if_11 else - i32.const 24788 + i32.const 24916 local.get $0 local.get $8 i32.or @@ -55875,10 +59106,10 @@ local.get $2 i32.store offset=12 end ;; $if_9 - i32.const 24796 + i32.const 24924 local.get $6 i32.store - i32.const 24808 + i32.const 24936 local.get $3 i32.store local.get $17 @@ -55886,7 +59117,7 @@ local.get $9 return end ;; $if_5 - i32.const 24792 + i32.const 24920 i32.load local.tee $11 if $if_12 (result i32) @@ -55949,7 +59180,7 @@ i32.add i32.const 2 i32.shl - i32.const 25092 + i32.const 25220 i32.add i32.load local.tee $0 @@ -55999,7 +59230,7 @@ br $loop end ;; $block end ;; $loop - i32.const 24804 + i32.const 24932 i32.load local.tee $7 local.get $9 @@ -56123,7 +59354,7 @@ local.tee $1 i32.const 2 i32.shl - i32.const 25092 + i32.const 25220 i32.add local.tee $0 i32.load @@ -56136,7 +59367,7 @@ local.get $3 i32.eqz if $if_25 - i32.const 24792 + i32.const 24920 local.get $11 i32.const 1 local.get $1 @@ -56148,7 +59379,7 @@ br $block_2 end ;; $if_25 else - i32.const 24804 + i32.const 24932 i32.load local.get $18 i32.gt_u @@ -56173,7 +59404,7 @@ br_if $block_2 end ;; $if_26 end ;; $if_24 - i32.const 24804 + i32.const 24932 i32.load local.tee $0 local.get $3 @@ -56206,7 +59437,7 @@ i32.load offset=20 local.tee $0 if $if_30 - i32.const 24804 + i32.const 24932 i32.load local.get $0 i32.gt_u @@ -56262,7 +59493,7 @@ i32.store local.get $13 if $if_33 - i32.const 24808 + i32.const 24936 i32.load local.set $4 local.get $13 @@ -56271,7 +59502,7 @@ local.tee $0 i32.const 3 i32.shl - i32.const 24828 + i32.const 24956 i32.add local.set $3 local.get $6 @@ -56281,7 +59512,7 @@ local.tee $0 i32.and if $if_34 - i32.const 24804 + i32.const 24932 i32.load local.get $3 i32.const 8 @@ -56299,7 +59530,7 @@ local.set $12 end ;; $if_35 else - i32.const 24788 + i32.const 24916 local.get $0 local.get $6 i32.or @@ -56324,10 +59555,10 @@ local.get $3 i32.store offset=12 end ;; $if_33 - i32.const 24796 + i32.const 24924 local.get $10 i32.store - i32.const 24808 + i32.const 24936 local.get $5 i32.store end ;; $if_32 @@ -56358,7 +59589,7 @@ i32.const -8 i32.and local.set $15 - i32.const 24792 + i32.const 24920 i32.load local.tee $4 if $if_37 (result i32) @@ -56438,7 +59669,7 @@ local.tee $19 i32.const 2 i32.shl - i32.const 25092 + i32.const 25220 i32.add i32.load local.tee $0 @@ -56603,7 +59834,7 @@ i32.add i32.const 2 i32.shl - i32.const 25092 + i32.const 25220 i32.add i32.load local.set $0 @@ -56666,13 +59897,13 @@ local.get $2 if $if_47 (result i32) local.get $7 - i32.const 24796 + i32.const 24924 i32.load local.get $15 i32.sub i32.lt_u if $if_48 (result i32) - i32.const 24804 + i32.const 24932 i32.load local.tee $12 local.get $2 @@ -56796,7 +60027,7 @@ local.tee $3 i32.const 2 i32.shl - i32.const 25092 + i32.const 25220 i32.add local.tee $0 i32.load @@ -56809,7 +60040,7 @@ local.get $13 i32.eqz if $if_60 - i32.const 24792 + i32.const 24920 local.get $4 i32.const 1 local.get $3 @@ -56822,7 +60053,7 @@ br $block_9 end ;; $if_60 else - i32.const 24804 + i32.const 24932 i32.load local.get $8 i32.gt_u @@ -56851,7 +60082,7 @@ end ;; $if_62 end ;; $if_61 end ;; $if_59 - i32.const 24804 + i32.const 24932 i32.load local.tee $0 local.get $13 @@ -56884,7 +60115,7 @@ i32.load offset=20 local.tee $0 if $if_66 - i32.const 24804 + i32.const 24932 i32.load local.get $0 i32.gt_u @@ -56958,10 +60189,10 @@ local.get $0 i32.const 3 i32.shl - i32.const 24828 + i32.const 24956 i32.add local.set $3 - i32.const 24788 + i32.const 24916 i32.load local.tee $1 i32.const 1 @@ -56970,7 +60201,7 @@ local.tee $0 i32.and if $if_70 - i32.const 24804 + i32.const 24932 i32.load local.get $3 i32.const 8 @@ -56988,7 +60219,7 @@ local.set $11 end ;; $if_71 else - i32.const 24788 + i32.const 24916 local.get $0 local.get $1 i32.or @@ -57084,7 +60315,7 @@ local.tee $4 i32.const 2 i32.shl - i32.const 25092 + i32.const 25220 i32.add local.set $3 local.get $5 @@ -57104,7 +60335,7 @@ i32.and i32.eqz if $if_74 - i32.const 24792 + i32.const 24920 local.get $0 local.get $1 i32.or @@ -57185,7 +60416,7 @@ unreachable end ;; $if_76 end ;; $loop_4 - i32.const 24804 + i32.const 24932 i32.load local.get $4 i32.gt_u @@ -57208,7 +60439,7 @@ end ;; $if_78 end ;; $block_11 end ;; $if_75 - i32.const 24804 + i32.const 24932 i32.load local.tee $0 local.get $6 @@ -57261,13 +60492,13 @@ local.set $11 block $block_12 block $block_13 - i32.const 24796 + i32.const 24924 i32.load local.tee $3 local.get $11 i32.ge_u if $if_80 - i32.const 24808 + i32.const 24936 i32.load local.set $0 local.get $3 @@ -57277,13 +60508,13 @@ i32.const 15 i32.gt_u if $if_81 - i32.const 24808 + i32.const 24936 local.get $0 local.get $11 i32.add local.tee $1 i32.store - i32.const 24796 + i32.const 24924 local.get $2 i32.store local.get $1 @@ -57302,10 +60533,10 @@ i32.or i32.store offset=4 else - i32.const 24796 + i32.const 24924 i32.const 0 i32.store - i32.const 24808 + i32.const 24936 i32.const 0 i32.store local.get $0 @@ -57326,13 +60557,13 @@ br $block_13 end ;; $if_80 block $block_14 - i32.const 24800 + i32.const 24928 i32.load local.tee $12 local.get $11 i32.gt_u if $if_82 - i32.const 24800 + i32.const 24928 local.get $12 local.get $11 i32.sub @@ -57340,31 +60571,31 @@ i32.store br $block_14 end ;; $if_82 - i32.const 25260 + i32.const 25388 i32.load if $if_83 (result i32) - i32.const 25268 + i32.const 25396 i32.load else - i32.const 25268 + i32.const 25396 i32.const 4096 i32.store - i32.const 25264 + i32.const 25392 i32.const 4096 i32.store - i32.const 25272 + i32.const 25400 i32.const -1 i32.store - i32.const 25276 + i32.const 25404 i32.const -1 i32.store - i32.const 25280 + i32.const 25408 i32.const 0 i32.store - i32.const 25232 + i32.const 25360 i32.const 0 i32.store - i32.const 25260 + i32.const 25388 local.get $17 i32.const -16 i32.and @@ -57391,11 +60622,11 @@ if $if_84 br $block_12 end ;; $if_84 - i32.const 25228 + i32.const 25356 i32.load local.tee $2 if $if_85 - i32.const 25220 + i32.const 25348 i32.load local.tee $1 local.get $8 @@ -57417,7 +60648,7 @@ local.set $7 block $block_15 block $block_16 - i32.const 25232 + i32.const 25360 i32.load i32.const 4 i32.and @@ -57428,12 +60659,12 @@ block $block_17 block $block_18 block $block_19 - i32.const 24812 + i32.const 24940 i32.load local.tee $1 i32.eqz br_if $block_19 - i32.const 25236 + i32.const 25364 local.set $2 loop $loop_5 block $block_20 @@ -57496,11 +60727,11 @@ if $if_90 (result i32) i32.const 0 else - i32.const 25220 + i32.const 25348 i32.load local.tee $4 local.get $0 - i32.const 25264 + i32.const 25392 i32.load local.tee $2 i32.const -1 @@ -57531,7 +60762,7 @@ i32.gt_u i32.and if $if_91 (result i32) - i32.const 25228 + i32.const 25356 i32.load local.tee $1 if $if_92 @@ -57589,7 +60820,7 @@ end ;; $if_95 unreachable end ;; $if_94 - i32.const 25268 + i32.const 25396 i32.load local.tee $1 local.get $6 @@ -57626,8 +60857,8 @@ end ;; $if_96 local.set $3 end ;; $block_17 - i32.const 25232 - i32.const 25232 + i32.const 25360 + i32.const 25360 i32.load i32.const 4 i32.or @@ -57682,28 +60913,28 @@ end ;; $if_97 br $block_15 end ;; $block_16 - i32.const 25220 - i32.const 25220 + i32.const 25348 + i32.const 25348 i32.load local.get $3 i32.add local.tee $1 i32.store local.get $1 - i32.const 25224 + i32.const 25352 i32.load i32.gt_u if $if_98 - i32.const 25224 + i32.const 25352 local.get $1 i32.store end ;; $if_98 - i32.const 24812 + i32.const 24940 i32.load local.tee $6 if $if_99 block $block_21 - i32.const 25236 + i32.const 25364 local.set $2 block $block_22 block $block_23 @@ -57761,7 +60992,7 @@ local.tee $1 i32.add local.set $2 - i32.const 24800 + i32.const 24928 i32.load local.get $3 i32.add @@ -57769,10 +61000,10 @@ local.get $1 i32.sub local.set $1 - i32.const 24812 + i32.const 24940 local.get $2 i32.store - i32.const 24800 + i32.const 24928 local.get $1 i32.store local.get $2 @@ -57785,8 +61016,8 @@ i32.add i32.const 40 i32.store offset=4 - i32.const 24816 - i32.const 25276 + i32.const 24944 + i32.const 25404 i32.load i32.store br $block_21 @@ -57794,12 +61025,12 @@ end ;; $if_100 end ;; $block_22 local.get $0 - i32.const 24804 + i32.const 24932 i32.load local.tee $2 i32.lt_u if $if_102 - i32.const 24804 + i32.const 24932 local.get $0 i32.store local.get $0 @@ -57809,7 +61040,7 @@ local.get $3 i32.add local.set $1 - i32.const 25236 + i32.const 25364 local.set $8 block $block_24 block $block_25 @@ -57890,14 +61121,14 @@ local.get $6 i32.eq if $if_104 - i32.const 24800 - i32.const 24800 + i32.const 24928 + i32.const 24928 i32.load local.get $7 i32.add local.tee $0 i32.store - i32.const 24812 + i32.const 24940 local.get $5 i32.store local.get $5 @@ -57907,19 +61138,19 @@ i32.store offset=4 else block $block_26 - i32.const 24808 + i32.const 24936 i32.load local.get $3 i32.eq if $if_105 - i32.const 24796 - i32.const 24796 + i32.const 24924 + i32.const 24924 i32.load local.get $7 i32.add local.tee $0 i32.store - i32.const 24808 + i32.const 24936 local.get $5 i32.store local.get $5 @@ -57964,7 +61195,7 @@ local.get $1 i32.const 3 i32.shl - i32.const 24828 + i32.const 24956 i32.add local.tee $0 i32.ne @@ -57988,8 +61219,8 @@ local.get $6 i32.eq if $if_110 - i32.const 24788 - i32.const 24788 + i32.const 24916 + i32.const 24916 i32.load i32.const 1 local.get $1 @@ -58147,7 +61378,7 @@ local.tee $1 i32.const 2 i32.shl - i32.const 25092 + i32.const 25220 i32.add local.tee $0 i32.load @@ -58160,8 +61391,8 @@ i32.store local.get $16 br_if $block_32 - i32.const 24792 - i32.const 24792 + i32.const 24920 + i32.const 24920 i32.load i32.const 1 local.get $1 @@ -58173,7 +61404,7 @@ br $block_27 end ;; $block_32 else - i32.const 24804 + i32.const 24932 i32.load local.get $8 i32.gt_u @@ -58198,7 +61429,7 @@ br_if $block_27 end ;; $if_122 end ;; $if_121 - i32.const 24804 + i32.const 24932 i32.load local.tee $0 local.get $16 @@ -58232,7 +61463,7 @@ local.tee $0 i32.eqz br_if $block_27 - i32.const 24804 + i32.const 24932 i32.load local.get $0 i32.gt_u @@ -58284,10 +61515,10 @@ local.get $0 i32.const 3 i32.shl - i32.const 24828 + i32.const 24956 i32.add local.set $2 - i32.const 24788 + i32.const 24916 i32.load local.tee $1 i32.const 1 @@ -58297,7 +61528,7 @@ i32.and if $if_128 block $block_33 - i32.const 24804 + i32.const 24932 i32.load local.get $2 i32.const 8 @@ -58316,7 +61547,7 @@ call $_abort end ;; $block_33 else - i32.const 24788 + i32.const 24916 local.get $0 local.get $1 i32.or @@ -58412,7 +61643,7 @@ local.tee $3 i32.const 2 i32.shl - i32.const 25092 + i32.const 25220 i32.add local.set $2 local.get $5 @@ -58424,7 +61655,7 @@ local.get $5 i32.const 0 i32.store offset=16 - i32.const 24792 + i32.const 24920 i32.load local.tee $1 i32.const 1 @@ -58434,7 +61665,7 @@ i32.and i32.eqz if $if_132 - i32.const 24792 + i32.const 24920 local.get $0 local.get $1 i32.or @@ -58515,7 +61746,7 @@ unreachable end ;; $if_134 end ;; $loop_9 - i32.const 24804 + i32.const 24932 i32.load local.get $2 i32.gt_u @@ -58538,7 +61769,7 @@ end ;; $if_136 end ;; $block_34 end ;; $if_133 - i32.const 24804 + i32.const 24932 i32.load local.tee $0 local.get $9 @@ -58578,7 +61809,7 @@ return end ;; $if_103 end ;; $block_24 - i32.const 25236 + i32.const 25364 local.set $2 loop $loop_10 block $block_35 @@ -58603,7 +61834,7 @@ br $loop_10 end ;; $block_35 end ;; $loop_10 - i32.const 24812 + i32.const 24940 i32.const 0 local.get $0 i32.const 8 @@ -58622,7 +61853,7 @@ i32.add local.tee $4 i32.store - i32.const 24800 + i32.const 24928 local.get $3 i32.const -40 i32.add @@ -58641,8 +61872,8 @@ i32.add i32.const 40 i32.store offset=4 - i32.const 24816 - i32.const 25276 + i32.const 24944 + i32.const 25404 i32.load i32.store local.get $6 @@ -58675,23 +61906,23 @@ i32.const 27 i32.store offset=4 local.get $2 - i32.const 25236 + i32.const 25364 i64.load align=4 i64.store offset=8 align=4 local.get $2 - i32.const 25244 + i32.const 25372 i64.load align=4 i64.store offset=16 align=4 - i32.const 25236 + i32.const 25364 local.get $0 i32.store - i32.const 25240 + i32.const 25368 local.get $3 i32.store - i32.const 25248 + i32.const 25376 i32.const 0 i32.store - i32.const 25244 + i32.const 25372 local.get $2 i32.const 8 i32.add @@ -58750,10 +61981,10 @@ local.get $0 i32.const 3 i32.shl - i32.const 24828 + i32.const 24956 i32.add local.set $2 - i32.const 24788 + i32.const 24916 i32.load local.tee $1 i32.const 1 @@ -58762,7 +61993,7 @@ local.tee $0 i32.and if $if_142 - i32.const 24804 + i32.const 24932 i32.load local.get $2 i32.const 8 @@ -58780,7 +62011,7 @@ local.set $5 end ;; $if_143 else - i32.const 24788 + i32.const 24916 local.get $0 local.get $1 i32.or @@ -58876,7 +62107,7 @@ local.tee $3 i32.const 2 i32.shl - i32.const 25092 + i32.const 25220 i32.add local.set $2 local.get $6 @@ -58888,7 +62119,7 @@ local.get $6 i32.const 0 i32.store offset=16 - i32.const 24792 + i32.const 24920 i32.load local.tee $1 i32.const 1 @@ -58898,7 +62129,7 @@ i32.and i32.eqz if $if_146 - i32.const 24792 + i32.const 24920 local.get $0 local.get $1 i32.or @@ -58979,7 +62210,7 @@ unreachable end ;; $if_148 end ;; $loop_12 - i32.const 24804 + i32.const 24932 i32.load local.get $3 i32.gt_u @@ -59002,7 +62233,7 @@ end ;; $if_150 end ;; $block_36 end ;; $if_147 - i32.const 24804 + i32.const 24932 i32.load local.tee $0 local.get $10 @@ -59035,7 +62266,7 @@ end ;; $if_140 end ;; $block_21 else - i32.const 24804 + i32.const 24932 i32.load local.tee $1 i32.eqz @@ -59044,121 +62275,25 @@ i32.lt_u i32.or if $if_152 - i32.const 24804 + i32.const 24932 local.get $0 i32.store end ;; $if_152 - i32.const 25236 + i32.const 25364 local.get $0 i32.store - i32.const 25240 + i32.const 25368 local.get $3 i32.store - i32.const 25248 + i32.const 25376 i32.const 0 i32.store - i32.const 24824 - i32.const 25260 - i32.load - i32.store - i32.const 24820 - i32.const -1 - i32.store - i32.const 24840 - i32.const 24828 - i32.store - i32.const 24836 - i32.const 24828 - i32.store - i32.const 24848 - i32.const 24836 - i32.store - i32.const 24844 - i32.const 24836 - i32.store - i32.const 24856 - i32.const 24844 - i32.store - i32.const 24852 - i32.const 24844 - i32.store - i32.const 24864 - i32.const 24852 - i32.store - i32.const 24860 - i32.const 24852 - i32.store - i32.const 24872 - i32.const 24860 - i32.store - i32.const 24868 - i32.const 24860 - i32.store - i32.const 24880 - i32.const 24868 - i32.store - i32.const 24876 - i32.const 24868 - i32.store - i32.const 24888 - i32.const 24876 - i32.store - i32.const 24884 - i32.const 24876 - i32.store - i32.const 24896 - i32.const 24884 - i32.store - i32.const 24892 - i32.const 24884 - i32.store - i32.const 24904 - i32.const 24892 - i32.store - i32.const 24900 - i32.const 24892 - i32.store - i32.const 24912 - i32.const 24900 - i32.store - i32.const 24908 - i32.const 24900 - i32.store - i32.const 24920 - i32.const 24908 - i32.store - i32.const 24916 - i32.const 24908 - i32.store - i32.const 24928 - i32.const 24916 - i32.store - i32.const 24924 - i32.const 24916 - i32.store - i32.const 24936 - i32.const 24924 - i32.store - i32.const 24932 - i32.const 24924 - i32.store - i32.const 24944 - i32.const 24932 - i32.store - i32.const 24940 - i32.const 24932 - i32.store i32.const 24952 - i32.const 24940 - i32.store - i32.const 24948 - i32.const 24940 - i32.store - i32.const 24960 - i32.const 24948 + i32.const 25388 + i32.load i32.store - i32.const 24956 i32.const 24948 + i32.const -1 i32.store i32.const 24968 i32.const 24956 @@ -59256,7 +62391,103 @@ i32.const 25084 i32.const 25076 i32.store - i32.const 24812 + i32.const 25096 + i32.const 25084 + i32.store + i32.const 25092 + i32.const 25084 + i32.store + i32.const 25104 + i32.const 25092 + i32.store + i32.const 25100 + i32.const 25092 + i32.store + i32.const 25112 + i32.const 25100 + i32.store + i32.const 25108 + i32.const 25100 + i32.store + i32.const 25120 + i32.const 25108 + i32.store + i32.const 25116 + i32.const 25108 + i32.store + i32.const 25128 + i32.const 25116 + i32.store + i32.const 25124 + i32.const 25116 + i32.store + i32.const 25136 + i32.const 25124 + i32.store + i32.const 25132 + i32.const 25124 + i32.store + i32.const 25144 + i32.const 25132 + i32.store + i32.const 25140 + i32.const 25132 + i32.store + i32.const 25152 + i32.const 25140 + i32.store + i32.const 25148 + i32.const 25140 + i32.store + i32.const 25160 + i32.const 25148 + i32.store + i32.const 25156 + i32.const 25148 + i32.store + i32.const 25168 + i32.const 25156 + i32.store + i32.const 25164 + i32.const 25156 + i32.store + i32.const 25176 + i32.const 25164 + i32.store + i32.const 25172 + i32.const 25164 + i32.store + i32.const 25184 + i32.const 25172 + i32.store + i32.const 25180 + i32.const 25172 + i32.store + i32.const 25192 + i32.const 25180 + i32.store + i32.const 25188 + i32.const 25180 + i32.store + i32.const 25200 + i32.const 25188 + i32.store + i32.const 25196 + i32.const 25188 + i32.store + i32.const 25208 + i32.const 25196 + i32.store + i32.const 25204 + i32.const 25196 + i32.store + i32.const 25216 + i32.const 25204 + i32.store + i32.const 25212 + i32.const 25204 + i32.store + i32.const 24940 i32.const 0 local.get $0 i32.const 8 @@ -59275,7 +62506,7 @@ i32.add local.tee $4 i32.store - i32.const 24800 + i32.const 24928 local.get $3 i32.const -40 i32.add @@ -59294,18 +62525,18 @@ i32.add i32.const 40 i32.store offset=4 - i32.const 24816 - i32.const 25276 + i32.const 24944 + i32.const 25404 i32.load i32.store end ;; $if_99 - i32.const 24800 + i32.const 24928 i32.load local.tee $0 local.get $11 i32.gt_u if $if_153 - i32.const 24800 + i32.const 24928 local.get $0 local.get $11 i32.sub @@ -59314,13 +62545,13 @@ br $block_14 end ;; $if_153 end ;; $block_15 - i32.const 24772 + i32.const 24900 i32.const 12 i32.store br $block_12 end ;; $block_14 - i32.const 24812 - i32.const 24812 + i32.const 24940 + i32.const 24940 i32.load local.tee $0 local.get $11 @@ -59378,7 +62609,7 @@ i32.const -8 i32.add local.tee $5 - i32.const 24804 + i32.const 24932 i32.load local.tee $11 i32.lt_u @@ -59437,7 +62668,7 @@ local.get $10 i32.add local.set $5 - i32.const 24808 + i32.const 24936 i32.load local.get $0 i32.eq @@ -59457,7 +62688,7 @@ local.set $1 br $block end ;; $if_6 - i32.const 24796 + i32.const 24924 local.get $5 i32.store local.get $7 @@ -59494,7 +62725,7 @@ local.get $2 i32.const 3 i32.shl - i32.const 24828 + i32.const 24956 i32.add local.tee $4 i32.ne @@ -59517,8 +62748,8 @@ local.get $3 i32.eq if $if_11 - i32.const 24788 - i32.const 24788 + i32.const 24916 + i32.const 24916 i32.load i32.const 1 local.get $2 @@ -59684,7 +62915,7 @@ local.tee $2 i32.const 2 i32.shl - i32.const 25092 + i32.const 25220 i32.add local.tee $6 i32.load @@ -59697,8 +62928,8 @@ local.get $8 i32.eqz if $if_24 - i32.const 24792 - i32.const 24792 + i32.const 24920 + i32.const 24920 i32.load i32.const 1 local.get $2 @@ -59715,7 +62946,7 @@ br $block end ;; $if_24 else - i32.const 24804 + i32.const 24932 i32.load local.get $13 i32.gt_u @@ -59748,7 +62979,7 @@ end ;; $if_26 end ;; $if_25 end ;; $if_23 - i32.const 24804 + i32.const 24932 i32.load local.tee $6 local.get $8 @@ -59781,7 +63012,7 @@ i32.load offset=20 local.tee $2 if $if_30 - i32.const 24804 + i32.const 24932 i32.load local.get $2 i32.gt_u @@ -59851,19 +63082,19 @@ local.get $1 i32.store else - i32.const 24812 + i32.const 24940 i32.load local.get $7 i32.eq if $if_35 - i32.const 24800 - i32.const 24800 + i32.const 24928 + i32.const 24928 i32.load local.get $1 i32.add local.tee $0 i32.store - i32.const 24812 + i32.const 24940 local.get $3 i32.store local.get $3 @@ -59872,33 +63103,33 @@ i32.or i32.store offset=4 local.get $3 - i32.const 24808 + i32.const 24936 i32.load i32.ne if $if_36 return end ;; $if_36 - i32.const 24808 + i32.const 24936 i32.const 0 i32.store - i32.const 24796 + i32.const 24924 i32.const 0 i32.store return end ;; $if_35 - i32.const 24808 + i32.const 24936 i32.load local.get $7 i32.eq if $if_37 - i32.const 24796 - i32.const 24796 + i32.const 24924 + i32.const 24924 i32.load local.get $1 i32.add local.tee $0 i32.store - i32.const 24808 + i32.const 24936 local.get $4 i32.store local.get $3 @@ -59937,12 +63168,12 @@ local.get $6 i32.const 3 i32.shl - i32.const 24828 + i32.const 24956 i32.add local.tee $0 i32.ne if $if_39 - i32.const 24804 + i32.const 24932 i32.load local.get $2 i32.gt_u @@ -59961,8 +63192,8 @@ local.get $2 i32.eq if $if_42 - i32.const 24788 - i32.const 24788 + i32.const 24916 + i32.const 24916 i32.load i32.const 1 local.get $6 @@ -59982,7 +63213,7 @@ i32.add local.set $16 else - i32.const 24804 + i32.const 24932 i32.load local.get $1 i32.gt_u @@ -60065,7 +63296,7 @@ br $loop_0 end ;; $block_4 end ;; $loop_0 - i32.const 24804 + i32.const 24932 i32.load local.get $1 i32.gt_u @@ -60080,7 +63311,7 @@ end ;; $if_49 end ;; $block_3 else - i32.const 24804 + i32.const 24932 i32.load local.get $7 i32.load offset=8 @@ -60120,7 +63351,7 @@ local.tee $0 i32.const 2 i32.shl - i32.const 25092 + i32.const 25220 i32.add local.tee $1 i32.load @@ -60133,8 +63364,8 @@ local.get $9 i32.eqz if $if_55 - i32.const 24792 - i32.const 24792 + i32.const 24920 + i32.const 24920 i32.load i32.const 1 local.get $0 @@ -60146,7 +63377,7 @@ br $block_2 end ;; $if_55 else - i32.const 24804 + i32.const 24932 i32.load local.get $8 i32.gt_u @@ -60172,7 +63403,7 @@ br_if $block_2 end ;; $if_56 end ;; $if_54 - i32.const 24804 + i32.const 24932 i32.load local.tee $1 local.get $9 @@ -60205,7 +63436,7 @@ i32.load offset=20 local.tee $0 if $if_60 - i32.const 24804 + i32.const 24932 i32.load local.get $0 i32.gt_u @@ -60233,12 +63464,12 @@ i32.add local.get $5 i32.store - i32.const 24808 + i32.const 24936 i32.load local.get $3 i32.eq if $if_62 (result i32) - i32.const 24796 + i32.const 24924 local.get $5 i32.store return @@ -60258,10 +63489,10 @@ local.get $4 i32.const 3 i32.shl - i32.const 24828 + i32.const 24956 i32.add local.set $0 - i32.const 24788 + i32.const 24916 i32.load local.tee $1 i32.const 1 @@ -60270,7 +63501,7 @@ local.tee $4 i32.and if $if_64 - i32.const 24804 + i32.const 24932 i32.load local.get $0 i32.const 8 @@ -60288,7 +63519,7 @@ local.set $15 end ;; $if_65 else - i32.const 24788 + i32.const 24916 local.get $1 local.get $4 i32.or @@ -60385,7 +63616,7 @@ local.tee $4 i32.const 2 i32.shl - i32.const 25092 + i32.const 25220 i32.add local.set $0 local.get $3 @@ -60397,7 +63628,7 @@ local.get $3 i32.const 0 i32.store offset=16 - i32.const 24792 + i32.const 24920 i32.load local.tee $5 i32.const 1 @@ -60469,7 +63700,7 @@ unreachable end ;; $if_70 end ;; $loop_1 - i32.const 24804 + i32.const 24932 i32.load local.get $2 i32.gt_u @@ -60492,7 +63723,7 @@ end ;; $if_72 end ;; $block_6 end ;; $if_69 - i32.const 24804 + i32.const 24932 i32.load local.tee $0 local.get $14 @@ -60524,7 +63755,7 @@ end ;; $if_73 end ;; $block_5 else - i32.const 24792 + i32.const 24920 local.get $2 local.get $5 i32.or @@ -60542,8 +63773,8 @@ local.get $3 i32.store offset=8 end ;; $if_68 - i32.const 24820 - i32.const 24820 + i32.const 24948 + i32.const 24948 i32.load i32.const -1 i32.add @@ -60553,7 +63784,7 @@ if $if_74 return end ;; $if_74 - i32.const 25244 + i32.const 25372 local.set $0 loop $loop_2 local.get $0 @@ -60565,7 +63796,7 @@ local.get $4 br_if $loop_2 end ;; $loop_2 - i32.const 24820 + i32.const 24948 i32.const -1 i32.store ) @@ -60587,7 +63818,7 @@ i32.const -65 i32.gt_u if $if_0 - i32.const 24772 + i32.const 24900 i32.const 12 i32.store i32.const 0 @@ -60683,7 +63914,7 @@ local.tee $8 i32.const 1 i32.ne - i32.const 24804 + i32.const 24932 i32.load local.tee $10 local.get $0 @@ -60720,7 +63951,7 @@ local.get $2 local.get $1 i32.sub - i32.const 25268 + i32.const 25396 i32.load i32.const 1 i32.shl @@ -60775,12 +64006,12 @@ local.get $0 return end ;; $if_4 - i32.const 24812 + i32.const 24940 i32.load local.get $4 i32.eq if $if_6 - i32.const 24800 + i32.const 24928 i32.load local.get $2 i32.add @@ -60808,21 +64039,21 @@ i32.const 1 i32.or i32.store offset=4 - i32.const 24812 + i32.const 24940 local.get $2 i32.store - i32.const 24800 + i32.const 24928 local.get $1 i32.store local.get $0 return end ;; $if_6 - i32.const 24808 + i32.const 24936 i32.load local.get $4 i32.eq if $if_7 - i32.const 24796 + i32.const 24924 i32.load local.get $2 i32.add @@ -60890,10 +64121,10 @@ i32.const 0 local.set $3 end ;; $if_8 - i32.const 24796 + i32.const 24924 local.get $3 i32.store - i32.const 24808 + i32.const 24936 local.get $1 i32.store local.get $0 @@ -60934,7 +64165,7 @@ local.get $2 i32.const 3 i32.shl - i32.const 24828 + i32.const 24956 i32.add local.tee $8 i32.ne @@ -60957,8 +64188,8 @@ local.get $6 i32.eq if $if_13 - i32.const 24788 - i32.const 24788 + i32.const 24916 + i32.const 24916 i32.load i32.const 1 local.get $2 @@ -61113,7 +64344,7 @@ local.tee $3 i32.const 2 i32.shl - i32.const 25092 + i32.const 25220 i32.add local.tee $2 i32.load @@ -61126,8 +64357,8 @@ local.get $5 i32.eqz if $if_26 - i32.const 24792 - i32.const 24792 + i32.const 24920 + i32.const 24920 i32.load i32.const 1 local.get $3 @@ -61139,7 +64370,7 @@ br $block_0 end ;; $if_26 else - i32.const 24804 + i32.const 24932 i32.load local.get $9 i32.gt_u @@ -61165,7 +64396,7 @@ br_if $block_0 end ;; $if_27 end ;; $if_25 - i32.const 24804 + i32.const 24932 i32.load local.tee $2 local.get $5 @@ -61198,7 +64429,7 @@ i32.load offset=20 local.tee $3 if $if_31 - i32.const 24804 + i32.const 24932 i32.load local.get $3 i32.gt_u @@ -61322,7 +64553,7 @@ local.get $4 i32.sub local.tee $0 - i32.const 24804 + i32.const 24932 i32.load local.tee $11 i32.lt_u @@ -61333,7 +64564,7 @@ local.get $4 i32.add local.set $1 - i32.const 24808 + i32.const 24936 i32.load local.get $0 i32.eq @@ -61352,7 +64583,7 @@ local.set $5 br $block end ;; $if_3 - i32.const 24796 + i32.const 24924 local.get $1 i32.store local.get $6 @@ -61387,7 +64618,7 @@ local.get $8 i32.const 3 i32.shl - i32.const 24828 + i32.const 24956 i32.add local.tee $5 i32.ne @@ -61410,8 +64641,8 @@ local.get $4 i32.eq if $if_8 - i32.const 24788 - i32.const 24788 + i32.const 24916 + i32.const 24916 i32.load i32.const 1 local.get $8 @@ -61575,7 +64806,7 @@ local.tee $3 i32.const 2 i32.shl - i32.const 25092 + i32.const 25220 i32.add local.tee $4 i32.load @@ -61588,8 +64819,8 @@ local.get $7 i32.eqz if $if_21 - i32.const 24792 - i32.const 24792 + i32.const 24920 + i32.const 24920 i32.load i32.const 1 local.get $3 @@ -61605,7 +64836,7 @@ br $block end ;; $if_21 else - i32.const 24804 + i32.const 24932 i32.load local.get $10 i32.gt_u @@ -61637,7 +64868,7 @@ end ;; $if_23 end ;; $if_22 end ;; $if_20 - i32.const 24804 + i32.const 24932 i32.load local.tee $4 local.get $7 @@ -61670,7 +64901,7 @@ i32.load offset=20 local.tee $3 if $if_27 - i32.const 24804 + i32.const 24932 i32.load local.get $3 i32.gt_u @@ -61703,7 +64934,7 @@ end ;; $block end ;; $if local.get $6 - i32.const 24804 + i32.const 24932 i32.load local.tee $8 i32.lt_u @@ -61732,19 +64963,19 @@ local.get $5 i32.store else - i32.const 24812 + i32.const 24940 i32.load local.get $6 i32.eq if $if_31 - i32.const 24800 - i32.const 24800 + i32.const 24928 + i32.const 24928 i32.load local.get $5 i32.add local.tee $0 i32.store - i32.const 24812 + i32.const 24940 local.get $2 i32.store local.get $2 @@ -61753,33 +64984,33 @@ i32.or i32.store offset=4 local.get $2 - i32.const 24808 + i32.const 24936 i32.load i32.ne if $if_32 return end ;; $if_32 - i32.const 24808 + i32.const 24936 i32.const 0 i32.store - i32.const 24796 + i32.const 24924 i32.const 0 i32.store return end ;; $if_31 - i32.const 24808 + i32.const 24936 i32.load local.get $6 i32.eq if $if_33 - i32.const 24796 - i32.const 24796 + i32.const 24924 + i32.const 24924 i32.load local.get $5 i32.add local.tee $0 i32.store - i32.const 24808 + i32.const 24936 local.get $2 i32.store local.get $2 @@ -61818,7 +65049,7 @@ local.get $4 i32.const 3 i32.shl - i32.const 24828 + i32.const 24956 i32.add local.tee $0 i32.ne @@ -61841,8 +65072,8 @@ local.get $3 i32.eq if $if_38 - i32.const 24788 - i32.const 24788 + i32.const 24916 + i32.const 24916 i32.load i32.const 1 local.get $4 @@ -61997,7 +65228,7 @@ local.tee $0 i32.const 2 i32.shl - i32.const 25092 + i32.const 25220 i32.add local.tee $1 i32.load @@ -62010,8 +65241,8 @@ local.get $9 i32.eqz if $if_51 - i32.const 24792 - i32.const 24792 + i32.const 24920 + i32.const 24920 i32.load i32.const 1 local.get $0 @@ -62023,7 +65254,7 @@ br $block_2 end ;; $if_51 else - i32.const 24804 + i32.const 24932 i32.load local.get $7 i32.gt_u @@ -62049,7 +65280,7 @@ br_if $block_2 end ;; $if_52 end ;; $if_50 - i32.const 24804 + i32.const 24932 i32.load local.tee $1 local.get $9 @@ -62082,7 +65313,7 @@ i32.load offset=20 local.tee $0 if $if_56 - i32.const 24804 + i32.const 24932 i32.load local.get $0 i32.gt_u @@ -62110,12 +65341,12 @@ i32.add local.get $5 i32.store - i32.const 24808 + i32.const 24936 i32.load local.get $2 i32.eq if $if_58 - i32.const 24796 + i32.const 24924 local.get $5 i32.store return @@ -62132,10 +65363,10 @@ local.get $1 i32.const 3 i32.shl - i32.const 24828 + i32.const 24956 i32.add local.set $0 - i32.const 24788 + i32.const 24916 i32.load local.tee $5 i32.const 1 @@ -62144,7 +65375,7 @@ local.tee $1 i32.and if $if_60 - i32.const 24804 + i32.const 24932 i32.load local.get $0 i32.const 8 @@ -62162,7 +65393,7 @@ local.set $13 end ;; $if_61 else - i32.const 24788 + i32.const 24916 local.get $1 local.get $5 i32.or @@ -62259,7 +65490,7 @@ local.tee $1 i32.const 2 i32.shl - i32.const 25092 + i32.const 25220 i32.add local.set $0 local.get $2 @@ -62272,7 +65503,7 @@ i32.const 0 i32.store offset=16 block $block_5 - i32.const 24792 + i32.const 24920 i32.load local.tee $3 i32.const 1 @@ -62282,7 +65513,7 @@ i32.and i32.eqz if $if_64 - i32.const 24792 + i32.const 24920 local.get $3 local.get $4 i32.or @@ -62351,7 +65582,7 @@ unreachable end ;; $if_66 end ;; $loop_1 - i32.const 24804 + i32.const 24932 i32.load local.get $4 i32.gt_u @@ -62364,7 +65595,7 @@ br $block_5 end ;; $block_6 end ;; $if_65 - i32.const 24804 + i32.const 24932 i32.load local.tee $1 local.get $0 @@ -62417,7 +65648,7 @@ (func $__ZNKSt3__217bad_function_call4whatEv (type $4) (param $0 i32) (result i32) - i32.const 16952 + i32.const 17075 ) (func $__ZNSt3__212__next_primeEm (type $4) @@ -64304,29 +67535,29 @@ (func $__ZNSt3__211__call_onceERVmPvPFvS2_E (type $0) (param $0 i32) loop $loop - i32.const 24616 + i32.const 24744 i32.load i32.const 1 i32.eq if $if - i32.const 25312 - i32.const 25284 + i32.const 25440 + i32.const 25412 call $_pthread_cond_wait drop br $loop end ;; $if end ;; $loop - i32.const 24616 + i32.const 24744 i32.load i32.eqz if $if_0 - i32.const 24616 + i32.const 24744 i32.const 1 i32.store local.get $0 i32.const 281 call_indirect $28 (type $0) - i32.const 24616 + i32.const 24744 i32.const -1 i32.store end ;; $if_0 @@ -64354,7 +67585,7 @@ (param $0 i32) (local $1 i32) (local $2 i32) - i32.const 15004 + i32.const 15130 call $_strlen local.tee $2 i32.const 13 @@ -64373,7 +67604,7 @@ i32.const 12 i32.add local.tee $1 - i32.const 15004 + i32.const 15130 local.get $2 i32.const 1 i32.add @@ -65317,15 +68548,15 @@ local.get $0 ) - (func $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc (type $3) + (func $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc (type $6) (param $0 i32) (param $1 i32) + (result i32) local.get $0 local.get $1 local.get $1 call $_strlen call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKcm - drop ) (func $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6insertEmPKcm (type $5) @@ -65525,7 +68756,7 @@ local.set $0 end ;; $if_0 local.get $0 - i32.const 14173 + i32.const 14299 local.get $1 call $__ZNSt3__211char_traitsIcE4copyEPcPKcm local.get $3 @@ -65572,7 +68803,7 @@ end ;; $if end ;; $loop local.get $0 - i32.const 14173 + i32.const 14299 call $_strlen local.tee $2 local.get $2 @@ -65604,7 +68835,7 @@ drop ) - (func $__ZNSt3__29to_stringEj (type $3) + (func $__ZNSt3__29to_stringEi (type $3) (param $0 i32) (param $1 i32) (local $2 i32) @@ -65615,18 +68846,18 @@ i32.add global.set $32 local.get $2 - call $__ZNKSt3__212_GLOBAL__N_114initial_stringINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEjLb0EEclEv + call $__ZNKSt3__212_GLOBAL__N_114initial_stringINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEiLb0EEclEv local.get $0 local.get $2 local.get $1 - call $__ZNSt3__212_GLOBAL__N_19as_stringINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPFiPcmPKczEjEET_T0_SD_PKNSD_10value_typeET1_ + call $__ZNSt3__212_GLOBAL__N_19as_stringINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPFiPcmPKczEiEET_T0_SD_PKNSD_10value_typeET1_ local.get $2 call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev local.get $2 global.set $32 ) - (func $__ZNKSt3__212_GLOBAL__N_114initial_stringINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEjLb0EEclEv (type $0) + (func $__ZNKSt3__212_GLOBAL__N_114initial_stringINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEiLb0EEclEv (type $0) (param $0 i32) (local $1 i32) local.get $0 @@ -65672,6 +68903,142 @@ call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEmc ) + (func $__ZNSt3__212_GLOBAL__N_19as_stringINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPFiPcmPKczEiEET_T0_SD_PKNSD_10value_typeET1_ (type $2) + (param $0 i32) + (param $1 i32) + (param $2 i32) + (local $3 i32) + (local $4 i32) + (local $5 i32) + global.get $32 + local.set $5 + global.get $32 + i32.const 16 + i32.add + global.set $32 + local.get $1 + i32.load8_s offset=11 + local.tee $3 + i32.const 0 + i32.lt_s + if $if (result i32) + local.get $1 + i32.load offset=4 + else + local.get $3 + i32.const 255 + i32.and + end ;; $if + local.set $4 + loop $loop + block $block + local.get $3 + i32.const 24 + i32.shl + i32.const 24 + i32.shr_s + i32.const 0 + i32.lt_s + if $if_0 (result i32) + local.get $1 + i32.load + else + local.get $1 + end ;; $if_0 + local.set $3 + local.get $5 + local.get $2 + i32.store + local.get $1 + local.get $3 + local.get $4 + i32.const 1 + i32.add + i32.const 17144 + local.get $5 + call $_snprintf + local.tee $3 + i32.const -1 + i32.gt_s + if $if_1 (result i32) + local.get $3 + local.get $4 + i32.le_u + br_if $block + local.get $3 + else + local.get $4 + i32.const 1 + i32.shl + i32.const 1 + i32.or + end ;; $if_1 + local.tee $4 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEmc + local.get $1 + i32.load8_s offset=11 + local.set $3 + br $loop + end ;; $block + end ;; $loop + local.get $1 + local.get $3 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEmc + local.get $0 + local.get $1 + i64.load align=4 + i64.store align=4 + local.get $0 + local.get $1 + i32.load offset=8 + i32.store offset=8 + i32.const 0 + local.set $0 + loop $loop_0 + local.get $0 + i32.const 3 + i32.ne + if $if_2 + local.get $0 + i32.const 2 + i32.shl + local.get $1 + i32.add + i32.const 0 + i32.store + local.get $0 + i32.const 1 + i32.add + local.set $0 + br $loop_0 + end ;; $if_2 + end ;; $loop_0 + local.get $5 + global.set $32 + ) + + (func $__ZNSt3__29to_stringEj (type $3) + (param $0 i32) + (param $1 i32) + (local $2 i32) + global.get $32 + local.set $2 + global.get $32 + i32.const 16 + i32.add + global.set $32 + local.get $2 + call $__ZNKSt3__212_GLOBAL__N_114initial_stringINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEiLb0EEclEv + local.get $0 + local.get $2 + local.get $1 + call $__ZNSt3__212_GLOBAL__N_19as_stringINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPFiPcmPKczEjEET_T0_SD_PKNSD_10value_typeET1_ + local.get $2 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev + local.get $2 + global.set $32 + ) + (func $__ZNSt3__212_GLOBAL__N_19as_stringINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPFiPcmPKczEjEET_T0_SD_PKNSD_10value_typeET1_ (type $2) (param $0 i32) (param $1 i32) @@ -65723,7 +69090,7 @@ local.get $4 i32.const 1 i32.add - i32.const 17021 + i32.const 17147 local.get $5 call $_snprintf local.tee $3 @@ -65797,7 +69164,7 @@ i32.add global.set $32 local.get $2 - call $__ZNKSt3__212_GLOBAL__N_114initial_stringINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEjLb0EEclEv + call $__ZNKSt3__212_GLOBAL__N_114initial_stringINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEiLb0EEclEv local.get $0 local.get $2 local.get $1 @@ -65859,7 +69226,7 @@ local.get $4 i32.const 1 i32.add - i32.const 17024 + i32.const 17150 local.get $5 call $_snprintf local.tee $3 @@ -65961,7 +69328,7 @@ i32.const 1060 i32.add local.set $7 - i32.const 25360 + i32.const 25488 i32.load local.tee $0 if $if @@ -65973,9 +69340,9 @@ i64.ne if $if_0 local.get $1 - i32.const 17164 + i32.const 17290 i32.store - i32.const 17114 + i32.const 17240 local.get $1 call $_abort_message end ;; $if_0 @@ -66040,7 +69407,7 @@ call_indirect $28 (type $4) local.set $0 local.get $4 - i32.const 17164 + i32.const 17290 i32.store local.get $4 local.get $1 @@ -66048,22 +69415,22 @@ local.get $4 local.get $0 i32.store offset=8 - i32.const 17028 + i32.const 17154 local.get $4 call $_abort_message else local.get $3 - i32.const 17164 + i32.const 17290 i32.store local.get $3 local.get $1 i32.store offset=4 - i32.const 17073 + i32.const 17199 local.get $3 call $_abort_message end ;; $if_3 end ;; $if - i32.const 17152 + i32.const 17278 local.get $2 i32.const 1056 i32.add @@ -67028,7 +70395,7 @@ local.get $3 i32.const 24 i32.add - i32.const 17343 + i32.const 17469 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $3 @@ -67102,7 +70469,7 @@ else block $block (result i32) local.get $2 - i32.const 17346 + i32.const 17472 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $2 @@ -67132,7 +70499,7 @@ local.get $2 if $if_4 (result i32) local.get $4 - i32.const 17351 + i32.const 17477 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $4 @@ -67193,7 +70560,7 @@ i32.const 0 else local.get $0 - i32.const 17365 + i32.const 17491 local.get $3 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_11SpecialNameEJRA34_KcRPNS0_4NodeEEEESC_DpOT0_ end ;; $if_9 @@ -67390,7 +70757,7 @@ (func $__ZSt9terminatev (type $8) (local $0 i32) - i32.const 25360 + i32.const 25488 i32.load local.tee $0 if $if @@ -67425,7 +70792,7 @@ i32.const 152 i32.add call_indirect $28 (type $8) - i32.const 17303 + i32.const 17429 local.get $1 call $_abort_message ) @@ -67662,7 +71029,7 @@ i32.const 0 i32.store local.get $5 - i32.const 22698 + i32.const 22824 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -68182,7 +71549,7 @@ i32.add i32.store local.get $0 - i32.const 17399 + i32.const 17525 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_35 @@ -68205,7 +71572,7 @@ i32.add i32.store local.get $0 - i32.const 17404 + i32.const 17530 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_33 @@ -68216,7 +71583,7 @@ i32.add i32.store local.get $0 - i32.const 17409 + i32.const 17535 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_32 @@ -68227,7 +71594,7 @@ i32.add i32.store local.get $0 - i32.const 17414 + i32.const 17540 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_31 @@ -68238,7 +71605,7 @@ i32.add i32.store local.get $0 - i32.const 17426 + i32.const 17552 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_30 @@ -68249,7 +71616,7 @@ i32.add i32.store local.get $0 - i32.const 17440 + i32.const 17566 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_29 @@ -68260,7 +71627,7 @@ i32.add i32.store local.get $0 - i32.const 17446 + i32.const 17572 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_28 @@ -68271,7 +71638,7 @@ i32.add i32.store local.get $0 - i32.const 17461 + i32.const 17587 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_27 @@ -68282,7 +71649,7 @@ i32.add i32.store local.get $0 - i32.const 17465 + i32.const 17591 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_26 @@ -68293,7 +71660,7 @@ i32.add i32.store local.get $0 - i32.const 17478 + i32.const 17604 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_25 @@ -68304,7 +71671,7 @@ i32.add i32.store local.get $0 - i32.const 17483 + i32.const 17609 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_24 @@ -68315,7 +71682,7 @@ i32.add i32.store local.get $0 - i32.const 17497 + i32.const 17623 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_23 @@ -68338,7 +71705,7 @@ i32.add i32.store local.get $0 - i32.const 17507 + i32.const 17633 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_21 @@ -68349,7 +71716,7 @@ i32.add i32.store local.get $0 - i32.const 17516 + i32.const 17642 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_20 @@ -68360,7 +71727,7 @@ i32.add i32.store local.get $0 - i32.const 17534 + i32.const 17660 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_19 @@ -68383,7 +71750,7 @@ i32.add i32.store local.get $0 - i32.const 17540 + i32.const 17666 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_17 @@ -68394,7 +71761,7 @@ i32.add i32.store local.get $0 - i32.const 17552 + i32.const 17678 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_16 @@ -68405,7 +71772,7 @@ i32.add i32.store local.get $0 - i32.const 17563 + i32.const 17689 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_15 @@ -68479,7 +71846,7 @@ i32.add i32.store local.get $0 - i32.const 17567 + i32.const 17693 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_53 @@ -68490,7 +71857,7 @@ i32.add i32.store local.get $0 - i32.const 17577 + i32.const 17703 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_52 @@ -68501,7 +71868,7 @@ i32.add i32.store local.get $0 - i32.const 17588 + i32.const 17714 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_51 @@ -68512,7 +71879,7 @@ i32.add i32.store local.get $0 - i32.const 17598 + i32.const 17724 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_50 @@ -68523,7 +71890,7 @@ i32.add i32.store local.get $0 - i32.const 17608 + i32.const 17734 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_49 @@ -68534,7 +71901,7 @@ i32.add i32.store local.get $0 - i32.const 17617 + i32.const 17743 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_48 @@ -68545,7 +71912,7 @@ i32.add i32.store local.get $0 - i32.const 17626 + i32.const 17752 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_47 @@ -68556,7 +71923,7 @@ i32.add i32.store local.get $0 - i32.const 17631 + i32.const 17757 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_46 @@ -68567,7 +71934,7 @@ i32.add i32.store local.get $0 - i32.const 17646 + i32.const 17772 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_45 @@ -69042,7 +72409,7 @@ i32.const 0 i32.store local.get $3 - i32.const 22399 + i32.const 22525 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $3 @@ -69056,14 +72423,14 @@ if $if (result i32) local.get $6 local.get $0 - i32.const 22402 + i32.const 22528 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ i32.store br $block_0 else block $block_1 (result i32) local.get $4 - i32.const 22411 + i32.const 22537 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $4 @@ -69100,7 +72467,7 @@ br $block_0 end ;; $if_0 local.get $5 - i32.const 22414 + i32.const 22540 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $5 @@ -69163,7 +72530,7 @@ br $block end ;; $block_0 local.get $8 - i32.const 22417 + i32.const 22543 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $8 @@ -69219,7 +72586,7 @@ i32.eqz if $if_4 local.get $9 - i32.const 22420 + i32.const 22546 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $9 @@ -69230,7 +72597,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE br_if $block_7 local.get $10 - i32.const 22423 + i32.const 22549 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $10 @@ -69342,7 +72709,7 @@ else block $block (result i32) local.get $5 - i32.const 22214 + i32.const 22340 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -69637,7 +73004,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfEc if $if_2 (result i32) local.get $0 - i32.const 22178 + i32.const 22304 local.get $1 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_13EnclosingExprEJRA10_KcRPNS0_4NodeERA2_S8_EEESC_DpOT0_ else @@ -69675,7 +73042,7 @@ local.get $1 i32.const 8 i32.add - i32.const 22053 + i32.const 22179 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -70064,7 +73431,7 @@ i32.const 24 i32.add local.tee $5 - i32.const 21109 + i32.const 21235 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -70075,12 +73442,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if local.get $1 - i32.const 21112 + i32.const 21238 call $__ZN12_GLOBAL__N_110StringViewC2EPKc else block $block local.get $3 - i32.const 21119 + i32.const 21245 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -70091,12 +73458,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_0 local.get $1 - i32.const 21122 + i32.const 21248 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $if_0 local.get $4 - i32.const 21128 + i32.const 21254 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -70107,7 +73474,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_1 local.get $1 - i32.const 21131 + i32.const 21257 call $__ZN12_GLOBAL__N_110StringViewC2EPKc end ;; $if_1 end ;; $block @@ -70200,7 +73567,7 @@ i32.load8_s offset=362 if $if_2 local.get $0 - i32.const 17626 + i32.const 17752 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $if_2 @@ -71223,7 +74590,7 @@ i32.add call_indirect $28 (type $3) local.get $4 - i32.const 17661 + i32.const 17787 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -71244,7 +74611,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $5 - i32.const 17667 + i32.const 17793 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -71456,7 +74823,7 @@ $block ;; default end ;; $block_5 local.get $4 - i32.const 17811 + i32.const 17937 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -71468,7 +74835,7 @@ br $block end ;; $block_4 local.get $5 - i32.const 17826 + i32.const 17952 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -71480,7 +74847,7 @@ br $block end ;; $block_3 local.get $6 - i32.const 17844 + i32.const 17970 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -71492,7 +74859,7 @@ br $block end ;; $block_2 local.get $7 - i32.const 17856 + i32.const 17982 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -71504,7 +74871,7 @@ br $block end ;; $block_1 local.get $8 - i32.const 17869 + i32.const 17995 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $8 @@ -71516,7 +74883,7 @@ br $block end ;; $block_0 local.get $3 - i32.const 17882 + i32.const 18008 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -71547,32 +74914,32 @@ $block ;; default end ;; $block_5 local.get $0 - i32.const 17756 + i32.const 17882 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_4 local.get $0 - i32.const 17766 + i32.const 17892 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_3 local.get $0 - i32.const 17779 + i32.const 17905 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_2 local.get $0 - i32.const 17786 + i32.const 17912 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_1 local.get $0 - i32.const 17794 + i32.const 17920 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_0 local.get $0 - i32.const 17802 + i32.const 17928 call $__ZN12_GLOBAL__N_110StringViewC2EPKc end ;; $block ) @@ -71601,7 +74968,7 @@ i32.load local.set $1 local.get $2 - i32.const 17952 + i32.const 18078 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -71717,7 +75084,7 @@ i32.load local.set $1 local.get $2 - i32.const 18020 + i32.const 18146 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -71858,7 +75225,7 @@ call $__ZNK12_GLOBAL__N_116itanium_demangle4Node8hasArrayERNS_12OutputStreamE if $if_0 local.get $7 - i32.const 18031 + i32.const 18157 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $7 @@ -71881,7 +75248,7 @@ br $block end ;; $block_0 local.get $8 - i32.const 18033 + i32.const 18159 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $8 @@ -71892,8 +75259,8 @@ call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE end ;; $block local.get $2 - i32.const 18037 - i32.const 18035 + i32.const 18163 + i32.const 18161 local.get $6 i32.load select @@ -71984,7 +75351,7 @@ br $block end ;; $block_0 local.get $2 - i32.const 18029 + i32.const 18155 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $5 local.get $2 @@ -72257,7 +75624,7 @@ i32.load offset=8 local.set $0 local.get $8 - i32.const 18104 + i32.const 18230 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $8 @@ -72278,7 +75645,7 @@ local.get $2 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $9 - i32.const 18108 + i32.const 18234 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $9 @@ -72311,7 +75678,7 @@ call $__ZNK12_GLOBAL__N_116itanium_demangle4Node8hasArrayERNS_12OutputStreamE if $if_0 local.get $5 - i32.const 18031 + i32.const 18157 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -72336,7 +75703,7 @@ br $block_1 end ;; $block_2 local.get $6 - i32.const 18033 + i32.const 18159 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -72347,7 +75714,7 @@ call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE end ;; $block_1 local.get $7 - i32.const 18102 + i32.const 18228 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -72411,7 +75778,7 @@ br $block_1 end ;; $block_2 local.get $3 - i32.const 18029 + i32.const 18155 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $4 local.get $3 @@ -72467,7 +75834,7 @@ i64.load offset=8 align=4 i64.store align=4 local.get $1 - i32.const 18090 + i32.const 18216 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -73109,7 +76476,7 @@ local.get $2 i32.const 16 i32.add - i32.const 18215 + i32.const 18341 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -73143,7 +76510,7 @@ i32.eq if $if_0 local.get $4 - i32.const 18031 + i32.const 18157 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -73154,7 +76521,7 @@ call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE end ;; $if_0 local.get $2 - i32.const 18108 + i32.const 18234 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -73201,7 +76568,7 @@ i32.eqz if $if_0 local.get $2 - i32.const 18217 + i32.const 18343 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $4 local.get $2 @@ -73953,7 +77320,7 @@ local.get $3 i32.const 328 i32.add - i32.const 18746 + i32.const 18872 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -74105,7 +77472,7 @@ i32.add i32.store local.get $6 - i32.const 18037 + i32.const 18163 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -74122,7 +77489,7 @@ i32.add i32.store local.get $7 - i32.const 18035 + i32.const 18161 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -74139,7 +77506,7 @@ i32.add i32.store local.get $8 - i32.const 18035 + i32.const 18161 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $8 @@ -74156,7 +77523,7 @@ i32.add i32.store local.get $9 - i32.const 18749 + i32.const 18875 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $9 @@ -74173,7 +77540,7 @@ i32.add i32.store local.get $10 - i32.const 18752 + i32.const 18878 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $10 @@ -74197,7 +77564,7 @@ local.get $1 if $if_2 (result i32) local.get $0 - i32.const 18754 + i32.const 18880 local.get $2 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_13EnclosingExprEJRA10_KcRPNS0_4NodeERA2_S8_EEESC_DpOT0_ else @@ -74218,7 +77585,7 @@ local.get $1 if $if_3 (result i32) local.get $0 - i32.const 18754 + i32.const 18880 local.get $2 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_13EnclosingExprEJRA10_KcRPNS0_4NodeERA2_S8_EEESC_DpOT0_ else @@ -74348,7 +77715,7 @@ i32.add i32.store local.get $11 - i32.const 18764 + i32.const 18890 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $11 @@ -74365,7 +77732,7 @@ i32.add i32.store local.get $12 - i32.const 18766 + i32.const 18892 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $12 @@ -74467,7 +77834,7 @@ i32.add i32.store local.get $13 - i32.const 18102 + i32.const 18228 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $13 @@ -74528,7 +77895,7 @@ if $if_12 (result i32) local.get $0 local.get $2 - i32.const 18768 + i32.const 18894 local.get $4 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_10MemberExprEJRPNS0_4NodeERA3_KcSA_EEES9_DpOT0_ else @@ -74578,7 +77945,7 @@ i32.add i32.store local.get $14 - i32.const 18771 + i32.const 18897 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $14 @@ -74595,7 +77962,7 @@ i32.add i32.store local.get $15 - i32.const 18773 + i32.const 18899 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $15 @@ -74629,7 +77996,7 @@ i32.add i32.store local.get $16 - i32.const 18776 + i32.const 18902 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $16 @@ -74646,7 +78013,7 @@ i32.add i32.store local.get $17 - i32.const 18778 + i32.const 18904 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $17 @@ -74663,7 +78030,7 @@ i32.add i32.store local.get $18 - i32.const 18781 + i32.const 18907 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $18 @@ -74694,7 +78061,7 @@ i32.add i32.store local.get $19 - i32.const 18784 + i32.const 18910 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $19 @@ -74711,7 +78078,7 @@ i32.add i32.store local.get $20 - i32.const 18108 + i32.const 18234 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $20 @@ -74851,7 +78218,7 @@ i32.add i32.store local.get $21 - i32.const 18787 + i32.const 18913 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $21 @@ -74868,7 +78235,7 @@ i32.add i32.store local.get $22 - i32.const 18790 + i32.const 18916 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $22 @@ -74885,7 +78252,7 @@ i32.add i32.store local.get $23 - i32.const 18793 + i32.const 18919 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $23 @@ -74902,7 +78269,7 @@ i32.add i32.store local.get $24 - i32.const 18215 + i32.const 18341 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $24 @@ -74938,7 +78305,7 @@ i32.add i32.store local.get $25 - i32.const 18636 + i32.const 18762 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $25 @@ -74955,7 +78322,7 @@ i32.add i32.store local.get $26 - i32.const 18797 + i32.const 18923 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $26 @@ -74972,7 +78339,7 @@ i32.add i32.store local.get $27 - i32.const 18102 + i32.const 18228 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $27 @@ -74989,7 +78356,7 @@ i32.add i32.store local.get $28 - i32.const 18800 + i32.const 18926 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $28 @@ -75010,7 +78377,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfEc if $if_17 local.get $29 - i32.const 18803 + i32.const 18929 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $29 @@ -75030,7 +78397,7 @@ if $if_18 (result i32) local.get $0 local.get $2 - i32.const 18803 + i32.const 18929 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_11PostfixExprEJRPNS0_4NodeERA3_KcEEES9_DpOT0_ else i32.const 0 @@ -75065,7 +78432,7 @@ i32.add i32.store local.get $30 - i32.const 18806 + i32.const 18932 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $30 @@ -75082,7 +78449,7 @@ i32.add i32.store local.get $31 - i32.const 18636 + i32.const 18762 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $31 @@ -75099,7 +78466,7 @@ i32.add i32.store local.get $32 - i32.const 18809 + i32.const 18935 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $32 @@ -75160,7 +78527,7 @@ i32.add i32.store local.get $33 - i32.const 18811 + i32.const 18937 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $33 @@ -75177,7 +78544,7 @@ i32.add i32.store local.get $34 - i32.const 18814 + i32.const 18940 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $34 @@ -75194,7 +78561,7 @@ i32.add i32.store local.get $35 - i32.const 18816 + i32.const 18942 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $35 @@ -75231,7 +78598,7 @@ i32.add i32.store local.get $36 - i32.const 18819 + i32.const 18945 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $36 @@ -75248,7 +78615,7 @@ i32.add i32.store local.get $37 - i32.const 18823 + i32.const 18949 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $37 @@ -75265,7 +78632,7 @@ i32.add i32.store local.get $38 - i32.const 18825 + i32.const 18951 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $38 @@ -75286,7 +78653,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfEc if $if_20 local.get $39 - i32.const 18828 + i32.const 18954 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $39 @@ -75306,7 +78673,7 @@ if $if_21 (result i32) local.get $0 local.get $2 - i32.const 18828 + i32.const 18954 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_11PostfixExprEJRPNS0_4NodeERA3_KcEEES9_DpOT0_ else i32.const 0 @@ -75319,7 +78686,7 @@ i32.add i32.store local.get $40 - i32.const 18823 + i32.const 18949 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $40 @@ -75351,7 +78718,7 @@ if $if_23 (result i32) local.get $0 local.get $2 - i32.const 18831 + i32.const 18957 local.get $4 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_10MemberExprEJRPNS0_4NodeERA3_KcSA_EEES9_DpOT0_ else @@ -75478,7 +78845,7 @@ i32.add i32.store local.get $41 - i32.const 18834 + i32.const 18960 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $41 @@ -75495,7 +78862,7 @@ i32.add i32.store local.get $42 - i32.const 18836 + i32.const 18962 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $42 @@ -75512,7 +78879,7 @@ i32.add i32.store local.get $43 - i32.const 18839 + i32.const 18965 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $43 @@ -75529,7 +78896,7 @@ i32.add i32.store local.get $44 - i32.const 18842 + i32.const 18968 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $44 @@ -75631,7 +78998,7 @@ local.get $1 if $if_32 (result i32) local.get $0 - i32.const 18846 + i32.const 18972 local.get $2 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_13EnclosingExprEJRA10_KcRPNS0_4NodeERA2_S8_EEESC_DpOT0_ else @@ -75652,7 +79019,7 @@ local.get $1 if $if_33 (result i32) local.get $0 - i32.const 18846 + i32.const 18972 local.get $2 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_13EnclosingExprEJRA10_KcRPNS0_4NodeERA2_S8_EEESC_DpOT0_ else @@ -75816,7 +79183,7 @@ local.get $1 if $if_37 (result i32) local.get $0 - i32.const 18855 + i32.const 18981 local.get $2 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_13EnclosingExprEJRA10_KcRPNS0_4NodeERA2_S8_EEESC_DpOT0_ else @@ -75837,7 +79204,7 @@ local.get $1 if $if_38 (result i32) local.get $0 - i32.const 18855 + i32.const 18981 local.get $2 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_13EnclosingExprEJRA10_KcRPNS0_4NodeERA2_S8_EEESC_DpOT0_ else @@ -75916,7 +79283,7 @@ i32.add i32.store local.get $0 - i32.const 18864 + i32.const 18990 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_111 @@ -76121,7 +79488,7 @@ i32.add i32.store local.get $3 - i32.const 18319 + i32.const 18445 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $3 @@ -76133,7 +79500,7 @@ br $block end ;; $block_18 local.get $4 - i32.const 18327 + i32.const 18453 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $4 @@ -76152,7 +79519,7 @@ br $block end ;; $if_1 local.get $5 - i32.const 18331 + i32.const 18457 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $5 @@ -76180,7 +79547,7 @@ i32.add i32.store local.get $6 - i32.const 17409 + i32.const 17535 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $6 @@ -76198,7 +79565,7 @@ i32.add i32.store local.get $7 - i32.const 17414 + i32.const 17540 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $7 @@ -76216,7 +79583,7 @@ i32.add i32.store local.get $8 - i32.const 17426 + i32.const 17552 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $8 @@ -76234,7 +79601,7 @@ i32.add i32.store local.get $9 - i32.const 17440 + i32.const 17566 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $9 @@ -76252,7 +79619,7 @@ i32.add i32.store local.get $10 - i32.const 17446 + i32.const 17572 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $10 @@ -76270,7 +79637,7 @@ i32.add i32.store local.get $11 - i32.const 25382 + i32.const 25510 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $11 @@ -76288,7 +79655,7 @@ i32.add i32.store local.get $12 - i32.const 18335 + i32.const 18461 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $12 @@ -76306,7 +79673,7 @@ i32.add i32.store local.get $13 - i32.const 18337 + i32.const 18463 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $13 @@ -76324,7 +79691,7 @@ i32.add i32.store local.get $14 - i32.const 18339 + i32.const 18465 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $14 @@ -76342,7 +79709,7 @@ i32.add i32.store local.get $15 - i32.const 18342 + i32.const 18468 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $15 @@ -76360,7 +79727,7 @@ i32.add i32.store local.get $16 - i32.const 18345 + i32.const 18471 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $16 @@ -76378,7 +79745,7 @@ i32.add i32.store local.get $17 - i32.const 17507 + i32.const 17633 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $17 @@ -76396,7 +79763,7 @@ i32.add i32.store local.get $18 - i32.const 17516 + i32.const 17642 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $18 @@ -76438,7 +79805,7 @@ br $block end ;; $block_1 local.get $19 - i32.const 17343 + i32.const 17469 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $19 @@ -76982,7 +80349,7 @@ i32.const 16 i32.add local.tee $5 - i32.const 18033 + i32.const 18159 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -76996,7 +80363,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 18029 + i32.const 18155 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -77223,7 +80590,7 @@ f64.store local.get $2 i32.const 40 - i32.const 18401 + i32.const 18527 local.get $5 call $_snprintf local.get $2 @@ -77445,7 +80812,7 @@ f64.store local.get $2 i32.const 32 - i32.const 18462 + i32.const 18588 local.get $4 call $_snprintf local.get $2 @@ -77665,7 +81032,7 @@ f64.store local.get $2 i32.const 24 - i32.const 18521 + i32.const 18647 local.get $4 call $_snprintf local.get $2 @@ -77731,11 +81098,11 @@ i32.load8_s offset=8 if $if local.get $2 - i32.const 18581 + i32.const 18707 call $__ZN12_GLOBAL__N_110StringViewC2EPKc else local.get $2 - i32.const 18586 + i32.const 18712 call $__ZN12_GLOBAL__N_110StringViewC2EPKc end ;; $if local.get $2 @@ -77870,7 +81237,7 @@ i32.gt_u if $if local.get $4 - i32.const 18033 + i32.const 18159 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -77891,7 +81258,7 @@ local.get $2 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $5 - i32.const 18029 + i32.const 18155 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -77919,7 +81286,7 @@ i32.eq if $if_0 local.get $4 - i32.const 18636 + i32.const 18762 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -78082,7 +81449,7 @@ local.get $2 i32.const 8 i32.add - i32.const 20992 + i32.const 21118 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $2 @@ -78111,7 +81478,7 @@ end ;; $if_0 else local.get $2 - i32.const 20995 + i32.const 21121 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $2 @@ -78409,7 +81776,7 @@ i32.const 0 i32.store offset=4 local.get $3 - i32.const 20845 + i32.const 20971 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $3 @@ -78422,13 +81789,13 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_1 local.get $1 - i32.const 18037 + i32.const 18163 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 else block $block_5 local.get $4 - i32.const 20848 + i32.const 20974 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $4 @@ -78439,12 +81806,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_2 local.get $1 - i32.const 18035 + i32.const 18161 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_2 local.get $8 - i32.const 20851 + i32.const 20977 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $8 @@ -78455,12 +81822,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_3 local.get $1 - i32.const 18749 + i32.const 18875 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_3 local.get $9 - i32.const 20854 + i32.const 20980 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $9 @@ -78471,12 +81838,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_4 local.get $1 - i32.const 18752 + i32.const 18878 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_4 local.get $10 - i32.const 20857 + i32.const 20983 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $10 @@ -78487,12 +81854,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_5 local.get $1 - i32.const 18764 + i32.const 18890 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_5 local.get $11 - i32.const 20860 + i32.const 20986 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $11 @@ -78503,12 +81870,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_6 local.get $1 - i32.const 18768 + i32.const 18894 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_6 local.get $12 - i32.const 20863 + i32.const 20989 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $12 @@ -78519,12 +81886,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_7 local.get $1 - i32.const 18771 + i32.const 18897 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_7 local.get $13 - i32.const 20866 + i32.const 20992 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $13 @@ -78535,12 +81902,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_8 local.get $1 - i32.const 18773 + i32.const 18899 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_8 local.get $14 - i32.const 20869 + i32.const 20995 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $14 @@ -78551,12 +81918,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_9 local.get $1 - i32.const 18776 + i32.const 18902 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_9 local.get $15 - i32.const 20872 + i32.const 20998 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $15 @@ -78567,12 +81934,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_10 local.get $1 - i32.const 18778 + i32.const 18904 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_10 local.get $16 - i32.const 20875 + i32.const 21001 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $16 @@ -78583,12 +81950,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_11 local.get $1 - i32.const 18781 + i32.const 18907 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_11 local.get $17 - i32.const 20878 + i32.const 21004 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $17 @@ -78599,12 +81966,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_12 local.get $1 - i32.const 18784 + i32.const 18910 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_12 local.get $18 - i32.const 20881 + i32.const 21007 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $18 @@ -78615,12 +81982,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_13 local.get $1 - i32.const 18108 + i32.const 18234 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_13 local.get $19 - i32.const 20884 + i32.const 21010 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $19 @@ -78631,12 +81998,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_14 local.get $1 - i32.const 18787 + i32.const 18913 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_14 local.get $20 - i32.const 20887 + i32.const 21013 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $20 @@ -78647,12 +82014,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_15 local.get $1 - i32.const 18790 + i32.const 18916 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_15 local.get $21 - i32.const 20890 + i32.const 21016 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $21 @@ -78663,12 +82030,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_16 local.get $1 - i32.const 18793 + i32.const 18919 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_16 local.get $22 - i32.const 20893 + i32.const 21019 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $22 @@ -78679,12 +82046,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_17 local.get $1 - i32.const 18215 + i32.const 18341 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_17 local.get $23 - i32.const 20896 + i32.const 21022 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $23 @@ -78695,12 +82062,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_18 local.get $1 - i32.const 18636 + i32.const 18762 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_18 local.get $24 - i32.const 20899 + i32.const 21025 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $24 @@ -78711,12 +82078,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_19 local.get $1 - i32.const 18797 + i32.const 18923 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_19 local.get $25 - i32.const 20902 + i32.const 21028 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $25 @@ -78727,12 +82094,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_20 local.get $1 - i32.const 18102 + i32.const 18228 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_20 local.get $26 - i32.const 20905 + i32.const 21031 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $26 @@ -78743,12 +82110,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_21 local.get $1 - i32.const 18800 + i32.const 18926 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_21 local.get $27 - i32.const 20908 + i32.const 21034 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $27 @@ -78759,12 +82126,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_22 local.get $1 - i32.const 18806 + i32.const 18932 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_22 local.get $28 - i32.const 20911 + i32.const 21037 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $28 @@ -78775,12 +82142,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_23 local.get $1 - i32.const 18811 + i32.const 18937 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_23 local.get $29 - i32.const 20914 + i32.const 21040 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $29 @@ -78791,12 +82158,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_24 local.get $1 - i32.const 18814 + i32.const 18940 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_24 local.get $30 - i32.const 20917 + i32.const 21043 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $30 @@ -78807,12 +82174,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_25 local.get $1 - i32.const 18816 + i32.const 18942 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_25 local.get $31 - i32.const 20920 + i32.const 21046 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $31 @@ -78823,12 +82190,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_26 local.get $1 - i32.const 18823 + i32.const 18949 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_26 local.get $32 - i32.const 20923 + i32.const 21049 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $32 @@ -78839,12 +82206,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_27 local.get $1 - i32.const 18825 + i32.const 18951 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_27 local.get $33 - i32.const 20926 + i32.const 21052 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $33 @@ -78855,12 +82222,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_28 local.get $1 - i32.const 18834 + i32.const 18960 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_28 local.get $34 - i32.const 20929 + i32.const 21055 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $34 @@ -78871,12 +82238,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_29 local.get $1 - i32.const 18836 + i32.const 18962 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_29 local.get $35 - i32.const 20932 + i32.const 21058 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $35 @@ -78887,12 +82254,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_30 local.get $1 - i32.const 18839 + i32.const 18965 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_30 local.get $36 - i32.const 20935 + i32.const 21061 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $36 @@ -78908,7 +82275,7 @@ br $block_5 end ;; $if_31 local.get $1 - i32.const 18842 + i32.const 18968 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $block_5 @@ -79109,7 +82476,7 @@ local.get $2 i32.const 16 i32.add - i32.const 20633 + i32.const 20759 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -79287,7 +82654,7 @@ local.get $4 i32.const 24 i32.add - i32.const 19772 + i32.const 19898 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -79394,7 +82761,7 @@ end ;; $if_0 else local.get $1 - i32.const 18746 + i32.const 18872 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -79405,7 +82772,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE local.set $5 local.get $4 - i32.const 19776 + i32.const 19902 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -79869,7 +83236,7 @@ local.get $2 i32.const 40 i32.add - i32.const 18746 + i32.const 18872 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $2 @@ -79903,7 +83270,7 @@ i32.eq i32.store8 local.get $4 - i32.const 19360 + i32.const 19486 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $4 @@ -79916,7 +83283,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE br_if $block_0 local.get $3 - i32.const 19363 + i32.const 19489 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $3 @@ -79981,7 +83348,7 @@ if $if_1 (result i32) block $block_3 (result i32) local.get $5 - i32.const 19366 + i32.const 19492 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $5 @@ -80136,7 +83503,7 @@ i32.add local.set $3 local.get $2 - i32.const 18870 + i32.const 18996 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -80331,13 +83698,13 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $5 - i32.const 19021 + i32.const 19147 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load local.set $1 local.get $2 - i32.const 18029 + i32.const 18155 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $4 local.get $5 @@ -80499,7 +83866,7 @@ i32.const 24 i32.add local.tee $5 - i32.const 19083 + i32.const 19209 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -80516,7 +83883,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle22ParameterPackExpansion9printLeftERNS_12OutputStreamE local.get $2 - i32.const 18029 + i32.const 18155 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -80638,7 +84005,7 @@ $block_0 ;; default end ;; $block_2 local.get $8 - i32.const 17563 + i32.const 17689 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $5 local.get $8 @@ -80662,7 +84029,7 @@ i32.ge_u br_if $block local.get $2 - i32.const 18217 + i32.const 18343 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $5 local.get $2 @@ -80747,7 +84114,7 @@ i32.load local.set $1 local.get $3 - i32.const 18029 + i32.const 18155 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $5 local.get $6 @@ -80789,7 +84156,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $3 - i32.const 19209 + i32.const 19335 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -80888,7 +84255,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $4 - i32.const 18215 + i32.const 18341 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -80912,7 +84279,7 @@ i32.add call_indirect $28 (type $3) local.get $5 - i32.const 19221 + i32.const 19347 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -80936,7 +84303,7 @@ i32.add call_indirect $28 (type $3) local.get $6 - i32.const 18029 + i32.const 18155 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $6 @@ -80971,7 +84338,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $3 - i32.const 19268 + i32.const 19394 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -81057,7 +84424,7 @@ i32.const 24 i32.add local.tee $6 - i32.const 18033 + i32.const 18159 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -81071,7 +84438,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 19285 + i32.const 19411 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -81085,7 +84452,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $5 - i32.const 19291 + i32.const 19417 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -81099,7 +84466,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $3 - i32.const 18029 + i32.const 18155 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -81143,13 +84510,13 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $5 - i32.const 19349 + i32.const 19475 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load local.set $1 local.get $2 - i32.const 18029 + i32.const 18155 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $4 local.get $5 @@ -81314,7 +84681,7 @@ i32.load8_s offset=28 if $if local.get $4 - i32.const 19369 + i32.const 19495 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -81343,7 +84710,7 @@ local.get $3 i32.const 40 i32.add - i32.const 19381 + i32.const 19507 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -81356,7 +84723,7 @@ i32.load8_s offset=29 if $if_0 local.get $4 - i32.const 19385 + i32.const 19511 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -81376,7 +84743,7 @@ i32.load offset=4 if $if_1 local.get $5 - i32.const 18033 + i32.const 18159 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -81389,7 +84756,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle9NodeArray14printWithCommaERNS_12OutputStreamE local.get $6 - i32.const 18029 + i32.const 18155 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -81410,7 +84777,7 @@ i32.load offset=4 if $if_2 local.get $7 - i32.const 18033 + i32.const 18159 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -81423,7 +84790,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle9NodeArray14printWithCommaERNS_12OutputStreamE local.get $3 - i32.const 18029 + i32.const 18155 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -81608,7 +84975,7 @@ i32.add i32.store local.get $1 - i32.const 19588 + i32.const 19714 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $4 local.get $1 @@ -81723,7 +85090,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 19479 + i32.const 19605 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -81755,7 +85122,7 @@ i32.ge_s if $if (result i32) local.get $2 - i32.const 19485 + i32.const 19611 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -81865,7 +85232,7 @@ i32.ge_s if $if_0 (result i32) local.get $2 - i32.const 19485 + i32.const 19611 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -82068,7 +85435,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $1 - i32.const 19599 + i32.const 19725 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -82201,7 +85568,7 @@ i32.const 16 i32.add local.tee $5 - i32.const 18033 + i32.const 18159 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -82215,7 +85582,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 19665 + i32.const 19791 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -82229,7 +85596,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $2 - i32.const 17667 + i32.const 17793 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -82267,7 +85634,7 @@ i32.load local.set $1 local.get $3 - i32.const 19723 + i32.const 19849 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 i32.load @@ -82631,7 +85998,7 @@ else block $block (result i32) local.get $1 - i32.const 19838 + i32.const 19964 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $1 @@ -82646,7 +86013,7 @@ br $block end ;; $if_1 local.get $4 - i32.const 19841 + i32.const 19967 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -82770,7 +86137,7 @@ i32.add local.set $3 local.get $2 - i32.const 19779 + i32.const 19905 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -82950,7 +86317,7 @@ i32.add i32.store local.get $0 - i32.const 19844 + i32.const 19970 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82962,7 +86329,7 @@ i32.add i32.store local.get $0 - i32.const 19855 + i32.const 19981 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82974,7 +86341,7 @@ i32.add i32.store local.get $0 - i32.const 19865 + i32.const 19991 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82986,7 +86353,7 @@ i32.add i32.store local.get $0 - i32.const 19876 + i32.const 20002 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83031,7 +86398,7 @@ i32.add i32.store local.get $0 - i32.const 19886 + i32.const 20012 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83043,7 +86410,7 @@ i32.add i32.store local.get $0 - i32.const 19897 + i32.const 20023 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83055,7 +86422,7 @@ i32.add i32.store local.get $0 - i32.const 19907 + i32.const 20033 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83190,7 +86557,7 @@ i32.add i32.store local.get $0 - i32.const 19917 + i32.const 20043 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83202,7 +86569,7 @@ i32.add i32.store local.get $0 - i32.const 19935 + i32.const 20061 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83227,7 +86594,7 @@ i32.add i32.store local.get $0 - i32.const 19945 + i32.const 20071 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83239,7 +86606,7 @@ i32.add i32.store local.get $0 - i32.const 19955 + i32.const 20081 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83285,7 +86652,7 @@ i32.add i32.store local.get $0 - i32.const 19966 + i32.const 20092 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83297,7 +86664,7 @@ i32.add i32.store local.get $0 - i32.const 19976 + i32.const 20102 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83309,7 +86676,7 @@ i32.add i32.store local.get $0 - i32.const 19987 + i32.const 20113 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83352,7 +86719,7 @@ i32.add i32.store local.get $0 - i32.const 19998 + i32.const 20124 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83364,7 +86731,7 @@ i32.add i32.store local.get $0 - i32.const 20009 + i32.const 20135 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83399,7 +86766,7 @@ i32.add i32.store local.get $0 - i32.const 20019 + i32.const 20145 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ else i32.const 0 @@ -83446,7 +86813,7 @@ i32.add i32.store local.get $0 - i32.const 20030 + i32.const 20156 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83482,7 +86849,7 @@ i32.add i32.store local.get $0 - i32.const 20041 + i32.const 20167 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83494,7 +86861,7 @@ i32.add i32.store local.get $0 - i32.const 20052 + i32.const 20178 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83506,7 +86873,7 @@ i32.add i32.store local.get $0 - i32.const 20064 + i32.const 20190 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83554,7 +86921,7 @@ i32.add i32.store local.get $0 - i32.const 20074 + i32.const 20200 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83566,7 +86933,7 @@ i32.add i32.store local.get $0 - i32.const 20084 + i32.const 20210 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83578,7 +86945,7 @@ i32.add i32.store local.get $0 - i32.const 19935 + i32.const 20061 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83590,7 +86957,7 @@ i32.add i32.store local.get $0 - i32.const 20095 + i32.const 20221 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83602,7 +86969,7 @@ i32.add i32.store local.get $0 - i32.const 20106 + i32.const 20232 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83649,7 +87016,7 @@ i32.add i32.store local.get $0 - i32.const 20117 + i32.const 20243 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83661,7 +87028,7 @@ i32.add i32.store local.get $0 - i32.const 20132 + i32.const 20258 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83673,7 +87040,7 @@ i32.add i32.store local.get $0 - i32.const 20074 + i32.const 20200 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83685,7 +87052,7 @@ i32.add i32.store local.get $0 - i32.const 20143 + i32.const 20269 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83697,7 +87064,7 @@ i32.add i32.store local.get $0 - i32.const 20153 + i32.const 20279 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83743,7 +87110,7 @@ i32.add i32.store local.get $0 - i32.const 20166 + i32.const 20292 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83755,7 +87122,7 @@ i32.add i32.store local.get $0 - i32.const 20177 + i32.const 20303 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83767,7 +87134,7 @@ i32.add i32.store local.get $0 - i32.const 20187 + i32.const 20313 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83816,7 +87183,7 @@ i32.add i32.store local.get $0 - i32.const 20198 + i32.const 20324 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83828,7 +87195,7 @@ i32.add i32.store local.get $0 - i32.const 20210 + i32.const 20336 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83840,7 +87207,7 @@ i32.add i32.store local.get $0 - i32.const 20220 + i32.const 20346 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83852,7 +87219,7 @@ i32.add i32.store local.get $0 - i32.const 20231 + i32.const 20357 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83864,7 +87231,7 @@ i32.add i32.store local.get $0 - i32.const 20210 + i32.const 20336 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83876,7 +87243,7 @@ i32.add i32.store local.get $0 - i32.const 20242 + i32.const 20368 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83911,7 +87278,7 @@ i32.add i32.store local.get $0 - i32.const 20253 + i32.const 20379 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ else i32.const 0 @@ -83957,7 +87324,7 @@ i32.add i32.store local.get $0 - i32.const 20263 + i32.const 20389 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83969,7 +87336,7 @@ i32.add i32.store local.get $0 - i32.const 20273 + i32.const 20399 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83981,7 +87348,7 @@ i32.add i32.store local.get $0 - i32.const 20284 + i32.const 20410 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83993,7 +87360,7 @@ i32.add i32.store local.get $0 - i32.const 20295 + i32.const 20421 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -84028,7 +87395,7 @@ i32.add i32.store local.get $0 - i32.const 20307 + i32.const 20433 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ else i32.const 0 @@ -84161,7 +87528,7 @@ i32.add local.set $3 local.get $2 - i32.const 20319 + i32.const 20445 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -84198,7 +87565,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $1 - i32.const 20383 + i32.const 20509 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -84254,7 +87621,7 @@ i32.add local.set $3 local.get $2 - i32.const 20399 + i32.const 20525 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -84324,7 +87691,7 @@ i32.add local.set $3 local.get $2 - i32.const 18766 + i32.const 18892 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -84401,7 +87768,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $2 - i32.const 19779 + i32.const 19905 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -84460,7 +87827,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $3 - i32.const 20562 + i32.const 20688 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -84568,7 +87935,7 @@ i32.load8_s offset=12 if $if local.get $4 - i32.const 19779 + i32.const 19905 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -84582,7 +87949,7 @@ i32.const 8 i32.add local.tee $4 - i32.const 20575 + i32.const 20701 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -84595,7 +87962,7 @@ i32.load8_s offset=13 if $if_0 local.get $2 - i32.const 20582 + i32.const 20708 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -84710,7 +88077,7 @@ i32.const 16 i32.add local.tee $5 - i32.const 18033 + i32.const 18159 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -84724,7 +88091,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 20636 + i32.const 20762 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -84739,7 +88106,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle9NodeArray14printWithCommaERNS_12OutputStreamE local.get $2 - i32.const 18029 + i32.const 18155 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -84849,7 +88216,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 18033 + i32.const 18159 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -84864,7 +88231,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle9NodeArray14printWithCommaERNS_12OutputStreamE local.get $2 - i32.const 18029 + i32.const 18155 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -84899,7 +88266,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $3 - i32.const 20734 + i32.const 20860 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -85029,7 +88396,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $4 - i32.const 18033 + i32.const 18159 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -85043,7 +88410,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $5 - i32.const 18029 + i32.const 18155 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -85187,14 +88554,14 @@ i32.const 56 i32.add local.tee $2 - i32.const 18108 + i32.const 18234 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $4 local.get $2 call $__ZN12_GLOBAL__N_1eqERKNS_10StringViewES2_ if $if local.get $5 - i32.const 18033 + i32.const 18159 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -85205,7 +88572,7 @@ call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE end ;; $if local.get $6 - i32.const 18033 + i32.const 18159 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -85219,7 +88586,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $7 - i32.const 20792 + i32.const 20918 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -85240,7 +88607,7 @@ local.get $2 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $8 - i32.const 20795 + i32.const 20921 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $8 @@ -85254,7 +88621,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $9 - i32.const 18029 + i32.const 18155 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $9 @@ -85264,14 +88631,14 @@ local.get $2 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $2 - i32.const 18108 + i32.const 18234 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $4 local.get $2 call $__ZN12_GLOBAL__N_1eqERKNS_10StringViewES2_ if $if_0 local.get $10 - i32.const 18029 + i32.const 18155 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $10 @@ -85454,7 +88821,7 @@ local.set $0 end ;; $if_0 local.get $6 - i32.const 20938 + i32.const 21064 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $6 @@ -85497,7 +88864,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $4 - i32.const 20943 + i32.const 21069 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -85707,7 +89074,7 @@ i32.const 8 i32.add local.tee $4 - i32.const 20992 + i32.const 21118 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -86524,7 +89891,7 @@ local.get $8 i32.store offset=8 local.get $4 - i32.const 21199 + i32.const 21325 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $6 local.get $4 @@ -86536,7 +89903,7 @@ if $if_4 local.get $2 local.get $0 - i32.const 21517 + i32.const 21643 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ i32.store end ;; $if_4 @@ -86856,7 +90223,7 @@ i32.store local.get $2 local.get $0 - i32.const 21457 + i32.const 21583 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ i32.store local.get $0 @@ -86955,7 +90322,7 @@ local.get $2 i32.const 8 i32.add - i32.const 21195 + i32.const 21321 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -86968,7 +90335,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE br_if $block_0 local.get $2 - i32.const 21199 + i32.const 21325 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -87071,7 +90438,7 @@ br $block_1 end ;; $if_1 local.get $4 - i32.const 21261 + i32.const 21387 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -87211,7 +90578,7 @@ i32.add local.set $3 local.get $2 - i32.const 21202 + i32.const 21328 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -87262,7 +90629,7 @@ local.get $2 i32.const 32 i32.add - i32.const 21322 + i32.const 21448 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $2 @@ -87291,7 +90658,7 @@ local.set $0 else local.get $5 - i32.const 21325 + i32.const 21451 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $5 @@ -87323,7 +90690,7 @@ i32.const 1 i32.store8 offset=362 local.get $4 - i32.const 21328 + i32.const 21454 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $4 @@ -87592,7 +90959,7 @@ i32.const 24 i32.add local.tee $6 - i32.const 21331 + i32.const 21457 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -87613,7 +90980,7 @@ local.get $2 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $4 - i32.const 21339 + i32.const 21465 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -87628,7 +90995,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle9NodeArray14printWithCommaERNS_12OutputStreamE local.get $5 - i32.const 18029 + i32.const 18155 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -87716,7 +91083,7 @@ i32.const 16 i32.add local.tee $5 - i32.const 21394 + i32.const 21520 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -87737,7 +91104,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $4 - i32.const 21403 + i32.const 21529 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -88281,7 +91648,7 @@ i32.load8_s offset=12 if $if local.get $4 - i32.const 18766 + i32.const 18892 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -88407,7 +91774,7 @@ $block ;; default end ;; $block_5 local.get $4 - i32.const 17811 + i32.const 17937 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -88419,7 +91786,7 @@ br $block end ;; $block_4 local.get $5 - i32.const 17826 + i32.const 17952 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -88431,7 +91798,7 @@ br $block end ;; $block_3 local.get $6 - i32.const 21613 + i32.const 21739 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -88443,7 +91810,7 @@ br $block end ;; $block_2 local.get $7 - i32.const 21684 + i32.const 21810 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -88455,7 +91822,7 @@ br $block end ;; $block_1 local.get $8 - i32.const 21734 + i32.const 21860 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $8 @@ -88467,7 +91834,7 @@ br $block end ;; $block_0 local.get $3 - i32.const 21784 + i32.const 21910 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -88498,32 +91865,32 @@ $block ;; default end ;; $block_5 local.get $0 - i32.const 17756 + i32.const 17882 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_4 local.get $0 - i32.const 17766 + i32.const 17892 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_3 local.get $0 - i32.const 17766 + i32.const 17892 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_2 local.get $0 - i32.const 21570 + i32.const 21696 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_1 local.get $0 - i32.const 21584 + i32.const 21710 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_0 local.get $0 - i32.const 21598 + i32.const 21724 call $__ZN12_GLOBAL__N_110StringViewC2EPKc end ;; $block ) @@ -88656,7 +92023,7 @@ call $__ZNK12_GLOBAL__N_116itanium_demangle4Node11hasFunctionERNS_12OutputStreamE br_if $block_0 local.get $5 - i32.const 18031 + i32.const 18157 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -88668,7 +92035,7 @@ br $block end ;; $block_0 local.get $4 - i32.const 18033 + i32.const 18159 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -88683,7 +92050,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $2 - i32.const 21946 + i32.const 22072 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -88726,7 +92093,7 @@ br $block end ;; $block_0 local.get $2 - i32.const 18029 + i32.const 18155 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -88923,7 +92290,7 @@ i32.ne if $if_0 local.get $4 - i32.const 18031 + i32.const 18157 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -88940,7 +92307,7 @@ local.get $3 i32.const 16 i32.add - i32.const 22006 + i32.const 22132 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -88997,7 +92364,7 @@ end ;; $if_4 end ;; $if_2 local.get $3 - i32.const 17667 + i32.const 17793 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -89138,7 +92505,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 22056 + i32.const 22182 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -89195,7 +92562,7 @@ end ;; $if_2 end ;; $if_0 local.get $2 - i32.const 17667 + i32.const 17793 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -89343,7 +92710,7 @@ local.get $2 i32.const 16 i32.add - i32.const 22112 + i32.const 22238 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -89370,7 +92737,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $2 - i32.const 17667 + i32.const 17793 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -89474,7 +92841,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $1 - i32.const 22188 + i32.const 22314 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -89508,7 +92875,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $1 - i32.const 22195 + i32.const 22321 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -89542,7 +92909,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $1 - i32.const 18319 + i32.const 18445 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -89690,7 +93057,7 @@ i32.and if $if local.get $4 - i32.const 22224 + i32.const 22350 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -89712,7 +93079,7 @@ i32.and if $if_0 local.get $4 - i32.const 22231 + i32.const 22357 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -89730,7 +93097,7 @@ i32.and if $if_1 local.get $2 - i32.const 22241 + i32.const 22367 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -89841,7 +93208,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 18031 + i32.const 18157 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -89967,7 +93334,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 18215 + i32.const 18341 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -89988,7 +93355,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $5 - i32.const 18108 + i32.const 18234 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -90131,7 +93498,7 @@ i32.add call_indirect $28 (type $3) local.get $2 - i32.const 18031 + i32.const 18157 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -90189,7 +93556,7 @@ i32.const 48 i32.add local.tee $4 - i32.const 18033 + i32.const 18159 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -90204,7 +93571,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle9NodeArray14printWithCommaERNS_12OutputStreamE local.get $5 - i32.const 18029 + i32.const 18155 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -90234,7 +93601,7 @@ i32.and if $if local.get $6 - i32.const 22224 + i32.const 22350 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -90252,7 +93619,7 @@ i32.and if $if_0 local.get $7 - i32.const 22231 + i32.const 22357 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -90270,7 +93637,7 @@ i32.and if $if_1 local.get $8 - i32.const 22241 + i32.const 22367 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $8 @@ -90292,7 +93659,7 @@ $block ;; default end ;; $block_1 local.get $9 - i32.const 22426 + i32.const 22552 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $9 @@ -90304,7 +93671,7 @@ br $block end ;; $block_0 local.get $3 - i32.const 22429 + i32.const 22555 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -90395,7 +93762,7 @@ i32.add local.set $3 local.get $2 - i32.const 22482 + i32.const 22608 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -90473,7 +93840,7 @@ i32.const 8 i32.add local.tee $4 - i32.const 22546 + i32.const 22672 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -90487,7 +93854,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $2 - i32.const 18029 + i32.const 18155 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -90706,7 +94073,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 20795 + i32.const 20921 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -90727,7 +94094,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $5 - i32.const 18029 + i32.const 18155 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -91021,7 +94388,7 @@ local.get $1 if $if_9 (result i32) local.get $0 - i32.const 22827 + i32.const 22953 local.get $2 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_11SpecialNameEJRA34_KcRPNS0_4NodeEEEESC_DpOT0_ else @@ -91538,7 +94905,7 @@ i32.eqz if $if_0 local.get $2 - i32.const 18031 + i32.const 18157 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -91602,7 +94969,7 @@ i32.const 48 i32.add local.tee $4 - i32.const 18033 + i32.const 18159 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -91617,7 +94984,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle9NodeArray14printWithCommaERNS_12OutputStreamE local.get $5 - i32.const 18029 + i32.const 18155 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -91650,7 +95017,7 @@ i32.and if $if_0 local.get $6 - i32.const 22224 + i32.const 22350 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -91668,7 +95035,7 @@ i32.and if $if_1 local.get $7 - i32.const 22231 + i32.const 22357 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -91686,7 +95053,7 @@ i32.and if $if_2 local.get $8 - i32.const 22241 + i32.const 22367 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $8 @@ -91708,7 +95075,7 @@ $block ;; default end ;; $block_1 local.get $9 - i32.const 22426 + i32.const 22552 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $9 @@ -91720,7 +95087,7 @@ br $block end ;; $block_0 local.get $3 - i32.const 22429 + i32.const 22555 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -91808,7 +95175,7 @@ i32.add local.set $3 local.get $2 - i32.const 22765 + i32.const 22891 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -91940,7 +95307,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 22861 + i32.const 22987 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -91979,7 +95346,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 22886 + i32.const 23012 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -92018,7 +95385,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 22906 + i32.const 23032 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -92057,7 +95424,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 22928 + i32.const 23054 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -92096,7 +95463,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 22946 + i32.const 23072 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -92164,7 +95531,7 @@ i32.const 8 i32.add local.tee $4 - i32.const 22987 + i32.const 23113 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -92178,7 +95545,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $2 - i32.const 23012 + i32.const 23138 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -92216,7 +95583,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 23075 + i32.const 23201 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -92255,7 +95622,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 23102 + i32.const 23228 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -92294,7 +95661,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 23121 + i32.const 23247 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -92333,7 +95700,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 23135 + i32.const 23261 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -92372,7 +95739,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 23144 + i32.const 23270 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -94214,5 +97581,5 @@ call_indirect $28 (type $9) ) ;; User section "emscripten_metadata": - ;; "\00\01\00\03\80\02\bf\03\80\08\80\d0\c1\02\e0\cf\01\f0\cf\01" + ;; "\00\02\00\04\00\80\02\bf\03\80\08\80\d1\c1\02\e0\d0\01\f0\d0\01" ) \ No newline at end of file diff --git a/source/extensions/common/wasm/BUILD b/source/extensions/common/wasm/BUILD index 51d963737b5ae..814a0a45f10a5 100644 --- a/source/extensions/common/wasm/BUILD +++ b/source/extensions/common/wasm/BUILD @@ -66,6 +66,7 @@ envoy_cc_library( ":wasm_hdr", ":wasm_vm_lib", "//api/wasm/cpp:shared_lib", + "//external:abseil_base", "//external:abseil_node_hash_map", "//source/common/buffer:buffer_lib", "//source/common/common:enum_to_int", @@ -74,5 +75,9 @@ envoy_cc_library( "//source/common/http:utility_lib", "//source/common/tracing:http_tracer_lib", "//source/extensions/common/wasm/null:null_lib", + "//source/extensions/filters/common/expr:context_lib", + "@com_google_cel_cpp//eval/eval:field_access", + "@com_google_cel_cpp//eval/eval:field_backed_list_impl", + "@com_google_cel_cpp//eval/eval:field_backed_map_impl", ], ) diff --git a/source/extensions/common/wasm/null/BUILD b/source/extensions/common/wasm/null/BUILD index 3e339c3f203e2..44fba5e547422 100644 --- a/source/extensions/common/wasm/null/BUILD +++ b/source/extensions/common/wasm/null/BUILD @@ -56,6 +56,7 @@ envoy_cc_library( ":null_vm_plugin_interface", "//api/wasm/cpp:api_lib", "//api/wasm/cpp:shared_lib", + "//external:abseil_base", "//external:abseil_node_hash_map", "//source/common/common:assert_lib", "//source/common/protobuf", diff --git a/source/extensions/common/wasm/null/null_plugin.h b/source/extensions/common/wasm/null/null_plugin.h index d1dc63e9978a2..f7581aa1e8e67 100644 --- a/source/extensions/common/wasm/null/null_plugin.h +++ b/source/extensions/common/wasm/null/null_plugin.h @@ -19,6 +19,7 @@ using FilterDataStatus = Http::FilterDataStatus; using GrpcStatus = Envoy::Grpc::Status::GrpcStatus; using MetricType = Envoy::Extensions::Common::Wasm::Context::MetricType; using StringView = absl::string_view; +template using Optional = absl::optional; } // namespace Plugin } // namespace Null } // namespace Wasm diff --git a/source/extensions/common/wasm/null/sample_plugin/plugin.cc b/source/extensions/common/wasm/null/sample_plugin/plugin.cc index c5d629c15e142..391a7ecca872e 100644 --- a/source/extensions/common/wasm/null/sample_plugin/plugin.cc +++ b/source/extensions/common/wasm/null/sample_plugin/plugin.cc @@ -6,6 +6,7 @@ #else #include "extensions/common/wasm/null/null_plugin.h" +#include "absl/base/casts.h" namespace Envoy { namespace Extensions { @@ -45,7 +46,24 @@ FilterDataStatus PluginContext::onRequestBody(size_t body_buffer_length, bool /* void PluginContext::onLog() { auto path = getRequestHeader(":path"); - logWarn("onLog " + std::to_string(id()) + " " + std::string(path->view())); + if (path->view() == "/test_context") { + logWarn("request.path: " + getSelectorExpression({"request", "path"}).value()->toString()); + logWarn("node.metadata: " + + getSelectorExpression({"node", "metadata", "istio.io/metadata"}).value()->toString()); + logWarn("metadata: " + getSelectorExpression({"metadata", "filter_metadata", "envoy.wasm", + "wasm_request_get_key"}) + .value() + ->toString()); + auto responseCode = getSelectorExpression({"response", "code"}).value(); + if (responseCode->size() == sizeof(int64_t)) { + char buf[sizeof(int64_t)]; + responseCode->view().copy(buf, sizeof(int64_t), 0); + int64_t code = absl::bit_cast(buf); + logWarn("response.code: " + absl::StrCat(code)); + } + } else { + logWarn("onLog " + std::to_string(id()) + " " + std::string(path->view())); + } } void PluginContext::onDone() { logWarn("onDone " + std::to_string(id())); } diff --git a/source/extensions/common/wasm/null/wasm_api_impl.h b/source/extensions/common/wasm/null/wasm_api_impl.h index 2f5073eadf53f..eb805281ac12f 100644 --- a/source/extensions/common/wasm/null/wasm_api_impl.h +++ b/source/extensions/common/wasm/null/wasm_api_impl.h @@ -62,6 +62,13 @@ inline WasmResult proxy_setMetadataStruct(MetadataType type, const char* name_pt WS(name_size), WR(value_ptr), WS(value_size))); } +// Generic selector +inline WasmResult proxy_getSelectorExpression(const char* path_ptr, size_t path_size, + const char** value_ptr_ptr, size_t* value_size_ptr) { + return wordToWasmResult(getSelectorExpressionHandler( + current_context_, WR(path_ptr), WS(path_size), WR(value_ptr_ptr), WR(value_size_ptr))); +} + // Continue inline WasmResult proxy_continueRequest() { return wordToWasmResult(continueRequestHandler(current_context_)); diff --git a/source/extensions/common/wasm/v8/v8.cc b/source/extensions/common/wasm/v8/v8.cc index 8af9048080331..66a0dba49e0d8 100644 --- a/source/extensions/common/wasm/v8/v8.cc +++ b/source/extensions/common/wasm/v8/v8.cc @@ -27,7 +27,7 @@ struct FuncData { FuncData(std::string name) : name(name) {} std::string name; - wasm::own callback; + wasm::own callback; void* raw_func; }; @@ -112,15 +112,15 @@ class V8 : public WasmVm { std::function* function); wasm::vec source_ = wasm::vec::invalid(); - wasm::own store_; - wasm::own module_; - wasm::own instance_; - wasm::own memory_; - wasm::own table_; + wasm::own store_; + wasm::own module_; + wasm::own instance_; + wasm::own memory_; + wasm::own table_; - absl::flat_hash_map> host_globals_; + absl::flat_hash_map> host_globals_; absl::flat_hash_map host_functions_; - absl::flat_hash_map> module_functions_; + absl::flat_hash_map> module_functions_; uint32_t memory_stack_base_; uint32_t memory_heap_base_; @@ -150,7 +150,7 @@ static const char* printValKind(wasm::ValKind kind) { } } -static std::string printValTypes(const wasm::vec& types) { +static std::string printValTypes(const wasm::ownvec& types) { if (types.size() == 0) { return "void"; } @@ -166,8 +166,8 @@ static std::string printValTypes(const wasm::vec& types) { return s; } -static bool equalValTypes(const wasm::vec& left, - const wasm::vec& right) { +static bool equalValTypes(const wasm::ownvec& left, + const wasm::ownvec& right) { if (left.size() != right.size()) { return false; } @@ -222,7 +222,7 @@ template struct V8ProxyForGlobal : Global { template constexpr auto convertArgsTupleToValTypesImpl(absl::index_sequence) { - return wasm::vec::make( + return wasm::ownvec::make( wasm::ValType::make(convertArgToValKind::type>())...); } @@ -396,7 +396,7 @@ void V8::link(absl::string_view debug_name, bool needs_emscripten) { for (size_t i = 0; i < export_types.size(); i++) { absl::string_view name(export_types[i]->name().get(), export_types[i]->name().size()); auto export_type = export_types[i]->type(); - auto export_item = exports[i]; + auto export_item = exports[i].get(); ASSERT(export_type->kind() == export_item->kind()); switch (export_type->kind()) { @@ -556,7 +556,7 @@ void V8::registerHostFunctionImpl(absl::string_view moduleName, absl::string_vie convertArgsTupleToValTypes>()); auto func = wasm::Func::make( store_.get(), type.get(), - [](void* data, const wasm::Val params[], wasm::Val[]) -> wasm::own { + [](void* data, const wasm::Val params[], wasm::Val[]) -> wasm::own { auto func_data = reinterpret_cast(data); ENVOY_LOG(trace, "[wasm] callHostFunction(\"{}\")", func_data->name); auto args_tuple = convertValTypesToArgsTuple>(params); @@ -580,7 +580,7 @@ void V8::registerHostFunctionImpl(absl::string_view moduleName, absl::string_vie convertArgsTupleToValTypes>()); auto func = wasm::Func::make( store_.get(), type.get(), - [](void* data, const wasm::Val params[], wasm::Val results[]) -> wasm::own { + [](void* data, const wasm::Val params[], wasm::Val results[]) -> wasm::own { auto func_data = reinterpret_cast(data); ENVOY_LOG(trace, "[wasm] callHostFunction(\"{}\")", func_data->name); auto args_tuple = convertValTypesToArgsTuple>(params); diff --git a/source/extensions/common/wasm/wasm.cc b/source/extensions/common/wasm/wasm.cc index dc689647692fd..3339f47eba585 100644 --- a/source/extensions/common/wasm/wasm.cc +++ b/source/extensions/common/wasm/wasm.cc @@ -26,10 +26,15 @@ #include "common/tracing/http_tracer_impl.h" #include "extensions/common/wasm/well_known_names.h" +#include "extensions/filters/common/expr/context.h" +#include "absl/base/casts.h" #include "absl/container/flat_hash_map.h" #include "absl/container/node_hash_map.h" #include "absl/synchronization/mutex.h" +#include "eval/eval/field_access.h" +#include "eval/eval/field_backed_list_impl.h" +#include "eval/eval/field_backed_map_impl.h" namespace Envoy { namespace Extensions { @@ -462,6 +467,25 @@ Word setMetadataStructHandler(void* raw_context, Word type, Word name_ptr, Word name.value(), value.value()))); } +// Generic selector +Word getSelectorExpressionHandler(void* raw_context, Word path_ptr, Word path_size, + Word value_ptr_ptr, Word value_size_ptr) { + auto context = WASM_CONTEXT(raw_context); + auto path = context->wasmVm()->getMemory(path_ptr, path_size); + if (!path.has_value()) { + return wasmResultToWord(WasmResult::InvalidMemoryAccess); + } + std::string value; + auto result = context->getSelectorExpression(path.value(), &value); + if (result != WasmResult::Ok) { + return wasmResultToWord(result); + } + if (!context->wasm()->copyToPointerSize(value, value_ptr_ptr, value_size_ptr)) { + return wasmResultToWord(WasmResult::InvalidMemoryAccess); + } + return wasmResultToWord(WasmResult::Ok); +} + // Continue/Reply/Route Word continueRequestHandler(void* raw_context) { auto context = WASM_CONTEXT(raw_context); @@ -1016,6 +1040,153 @@ uint64_t Context::getCurrentTimeNanoseconds() { .count(); } +WasmResult serializeValue(Filters::Common::Expr::CelValue value, std::string* result) { + using Filters::Common::Expr::CelValue; + switch (value.type()) { + case CelValue::Type::kMessage: + if (value.MessageOrDie() != nullptr && value.MessageOrDie()->SerializeToString(result)) { + return WasmResult::Ok; + } + return WasmResult::SerializationFailure; + case CelValue::Type::kString: + result->assign(value.StringOrDie().value().data(), value.StringOrDie().value().size()); + return WasmResult::Ok; + case CelValue::Type::kBytes: + result->assign(value.BytesOrDie().value().data(), value.BytesOrDie().value().size()); + return WasmResult::Ok; + case CelValue::Type::kInt64: { + auto out = value.Int64OrDie(); + result->assign(reinterpret_cast(&out), sizeof(int64_t)); + return WasmResult::Ok; + } + case CelValue::Type::kUint64: { + auto out = value.Uint64OrDie(); + result->assign(reinterpret_cast(&out), sizeof(uint64_t)); + return WasmResult::Ok; + } + case CelValue::Type::kDouble: { + auto out = value.DoubleOrDie(); + result->assign(reinterpret_cast(&out), sizeof(double)); + return WasmResult::Ok; + } + case CelValue::Type::kBool: { + auto out = value.BoolOrDie(); + result->assign(reinterpret_cast(&out), sizeof(bool)); + return WasmResult::Ok; + } + case CelValue::Type::kDuration: { + auto out = value.DurationOrDie(); + result->assign(reinterpret_cast(&out), sizeof(absl::Duration)); + return WasmResult::Ok; + } + case CelValue::Type::kTimestamp: { + auto out = value.TimestampOrDie(); + result->assign(reinterpret_cast(&out), sizeof(absl::Time)); + return WasmResult::Ok; + } + default: + // TODO: lists and maps + break; + } + + return WasmResult::SerializationFailure; +} + +WasmResult Context::getSelectorExpression(absl::string_view path, std::string* result) { + using Filters::Common::Expr::CelValue; + using google::api::expr::runtime::FieldBackedListImpl; + using google::api::expr::runtime::FieldBackedMapImpl; + + bool first = true; + CelValue value; + Protobuf::Arena arena; + const StreamInfo::StreamInfo& info = decoder_callbacks_->streamInfo(); + const auto request_headers = request_headers_ ? request_headers_ : access_log_request_headers_; + const auto response_headers = + response_headers_ ? response_headers_ : access_log_response_headers_; + const auto response_trailers = + response_trailers_ ? response_trailers_ : access_log_response_trailers_; + + size_t start = 0; + while (true) { + if (start >= path.size()) { + break; + } + + size_t end = path.find('\0', start); + if (end == absl::string_view::npos) { + // this should not happen unless the input string is not null-terminated in the view + return WasmResult::ParseFailure; + } + auto part = path.substr(start, end - start); + start = end + 1; + + // top-level ident + if (first) { + first = false; + if (part == "metadata") { + value = CelValue::CreateMessage(&info.dynamicMetadata(), &arena); + } else if (part == "request") { + value = CelValue::CreateMap(Protobuf::Arena::Create( + &arena, request_headers, info)); + } else if (part == "response") { + value = CelValue::CreateMap(Protobuf::Arena::Create( + &arena, response_headers, response_trailers, info)); + } else if (part == "connection") { + value = CelValue::CreateMap( + Protobuf::Arena::Create(&arena, info)); + } else if (part == "node") { + value = CelValue::CreateMessage(&wasm_->local_info_.node(), &arena); + } else if (part == "source") { + value = CelValue::CreateMap( + Protobuf::Arena::Create(&arena, info, false)); + } else if (part == "destination") { + value = CelValue::CreateMap( + Protobuf::Arena::Create(&arena, info, true)); + } else { + return WasmResult::NotFound; + } + continue; + } + + if (value.IsMap()) { + auto& map = *value.MapOrDie(); + auto field = map[CelValue::CreateString(part)]; + if (field.has_value()) { + value = field.value(); + } else { + return {}; + } + } else if (value.IsMessage()) { + auto msg = value.MessageOrDie(); + if (msg == nullptr) { + return {}; + } + const Protobuf::Descriptor* desc = msg->GetDescriptor(); + const Protobuf::FieldDescriptor* field_desc = desc->FindFieldByName(std::string(part)); + if (field_desc == nullptr) { + return {}; + } else if (field_desc->is_map()) { + value = CelValue::CreateMap( + Protobuf::Arena::Create(&arena, msg, field_desc, &arena)); + } else if (field_desc->is_repeated()) { + value = CelValue::CreateList( + Protobuf::Arena::Create(&arena, msg, field_desc, &arena)); + } else { + auto status = + google::api::expr::runtime::CreateValueFromSingleField(msg, field_desc, &arena, &value); + if (!status.ok()) { + return {}; + } + } + } else { + return {}; + } + } + + return serializeValue(value, result); +} + // Shared Data WasmResult Context::getSharedData(absl::string_view key, std::pair* data) { return global_shared_data.get(wasm_->id(), key, data); @@ -2223,6 +2394,11 @@ bool Wasm::initialize(const std::string& code, absl::string_view name, bool allo start = decodeVarint(start, end, &emscripten_metadata_minor_version_); start = decodeVarint(start, end, &emscripten_abi_major_version_); start = decodeVarint(start, end, &emscripten_abi_minor_version_); + if (emscripten_metadata_major_version_ > 0 || emscripten_metadata_minor_version_ > 1) { + // metadata 0.2 - added: wasm_backend. + uint32_t temp; + start = decodeVarint(start, end, &temp); + } start = decodeVarint(start, end, &emscripten_memory_size_); start = decodeVarint(start, end, &emscripten_table_size_); if (emscripten_metadata_major_version_ > 0 || emscripten_metadata_minor_version_ > 0) { @@ -2638,11 +2814,9 @@ static std::shared_ptr createWasmInternal( if (!wasm->initialize(code, vm_id, vm_config.allow_precompiled())) { throw WasmException(fmt::format("Failed to initialize WASM code from {}", path)); } - Context* context; if (!root_context_for_testing) { - context = wasm->start(root_id, vm_config.configuration()); + wasm->start(root_id, vm_config.configuration()); } else { - context = root_context_for_testing.get(); wasm->startForTesting(std::move(root_context_for_testing)); } return wasm; diff --git a/source/extensions/common/wasm/wasm.h b/source/extensions/common/wasm/wasm.h index 7ed9ec3f693d2..e77902270f0e5 100644 --- a/source/extensions/common/wasm/wasm.h +++ b/source/extensions/common/wasm/wasm.h @@ -51,6 +51,8 @@ Word getMetadataStructHandler(void* raw_context, Word type, Word name_ptr, Word Word value_ptr_ptr, Word value_size_ptr); Word setMetadataStructHandler(void* raw_context, Word type, Word name_ptr, Word name_size, Word value_ptr, Word value_size); +Word getSelectorExpressionHandler(void* raw_context, Word path_ptr, Word path_size, + Word value_ptr_ptr, Word value_size_ptr); Word continueRequestHandler(void* raw_context); Word continueResponseHandler(void* raw_context); Word sendLocalResponseHandler(void* raw_context, Word response_code, Word response_code_details_ptr, @@ -254,6 +256,9 @@ class Context : public Http::StreamFilter, virtual std::string getTlsVersion(StreamType type); virtual absl::optional peerCertificatePresented(StreamType type); + // Generic resolver producing a serialized value + virtual WasmResult getSelectorExpression(absl::string_view path, std::string* result); + // Metadata // When used with MetadataType::Request/Response refers to metadata with name "envoy.wasm": the // values are serialized ProtobufWkt::Struct Value diff --git a/test/extensions/access_loggers/wasm/test_data/logging.wasm b/test/extensions/access_loggers/wasm/test_data/logging.wasm index dfbfe37b17556..75dc0b5cdeb41 100644 Binary files a/test/extensions/access_loggers/wasm/test_data/logging.wasm and b/test/extensions/access_loggers/wasm/test_data/logging.wasm differ diff --git a/test/extensions/access_loggers/wasm/test_data/logging.wat b/test/extensions/access_loggers/wasm/test_data/logging.wat index 56009cade99d6..13be8bf98cd1b 100644 --- a/test/extensions/access_loggers/wasm/test_data/logging.wat +++ b/test/extensions/access_loggers/wasm/test_data/logging.wat @@ -169,7 +169,7 @@ $__ZNSt3__210__function16__policy_invokerIFNS_10unique_ptrI11RootContextNS_14default_deleteIS3_EEEEjNS_17basic_string_viewIcNS_11char_traitsIcEEEEEE12__call_emptyEPKNS0_16__policy_storageEjOSA_ $__ZNSt3__210__function16__policy_invokerIFNS_10unique_ptrI11RootContextNS_14default_deleteIS3_EEEEjNS_17basic_string_viewIcNS_11char_traitsIcEEEEEE12__call_emptyEPKNS0_16__policy_storageEjOSA_ $b11 $__ZN11RootContext18onHttpCallResponseEjNSt3__210unique_ptrI8WasmDataNS0_14default_deleteIS2_EEEES5_S5_ $__ZNK10__cxxabiv117__class_type_info16search_below_dstEPNS_19__dynamic_cast_infoEPKvib $__ZNK10__cxxabiv120__si_class_type_info16search_below_dstEPNS_19__dynamic_cast_infoEPKvib $__ZNK10__cxxabiv121__vmi_class_type_info16search_below_dstEPNS_19__dynamic_cast_infoEPKvib $b11 $b11 $b11 $b12 $__ZNK10__cxxabiv117__class_type_info16search_above_dstEPNS_19__dynamic_cast_infoEPKvS4_ib $__ZNK10__cxxabiv120__si_class_type_info16search_above_dstEPNS_19__dynamic_cast_infoEPKvS4_ib $__ZNK10__cxxabiv121__vmi_class_type_info16search_above_dstEPNS_19__dynamic_cast_infoEPKvS4_ib $b13) (data $35 $29 (i32.const 1024) - "\c69\00\00\cb9\00\00\d39\00\00\d99") + "\c89\00\00\cd9\00\00\d59\00\00\db9") (data $36 $29 (i32.const 1168) "\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0" "\f0\f0\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\02\03\03\03\03\03\03\03\03\03\03\03\03\07\03\03\04\05\05\05\06\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0" @@ -244,11 +244,11 @@ "\00\00\00g\00\00\00k\00\00\00m\00\00\00q\00\00\00y\00\00\00\7f\00\00\00\83\00\00\00\89\00\00\00\8b\00\00\00\8f\00\00\00\95\00\00\00\97\00\00\00\9d\00\00\00\a3\00\00\00\a7\00\00\00\a9" "\00\00\00\ad\00\00\00\b3\00\00\00\b5\00\00\00\bb\00\00\00\bf\00\00\00\c1\00\00\00\c5\00\00\00\c7\00\00\00\d1\00\00\00<\1e\00\00(+\00\00d\1e\00\00\1f+\00\00p\11\00\00\00\00\00\00d" "\1e\00\00\0e+\00\00x\11\00\00\00\00\00\00<\1e\00\006+\00\00<\1e\00\00;+\00\00\80*\00\00=,\00\00\00\00\00\00\01\00\00\00\c0\11\00\00\00\00\00\00<\1e\00\00|,\00\00d" - "\1e\00\00_6\00\00\88\12\00\00\00\00\00\00d\1e\00\00A5\00\00\e8\11\00\00\00\00\00\00d\1e\00\00\fe.\00\00\f8\11\00\00\00\00\00\00d\1e\00\00./\00\00\08\12\00\00\00\00\00\00d" - "\1e\00\00\f4/\00\00\88\12\00\00\00\00\00\00d\1e\00\00\0e5\00\00\88\12\00\00\00\00\00\00\80*\00\00\cc3\00\00\00\00\00\00\01\00\00\00@\12\00\00\00\00\00\00<\1e\00\0094\00\00d" - "\1e\00\00(5\00\00\88\12\00\00\00\00\00\00d\1e\00\00\926\00\00p\11\00\00\00\00\00\00d\1e\00\00\c16\00\00x\14\00\00\00\00\00\00\ff\ff\ff\ff\ff\ff\ff\ff") + "\1e\00\00a6\00\00\88\12\00\00\00\00\00\00d\1e\00\00C5\00\00\e8\11\00\00\00\00\00\00d\1e\00\00\00/\00\00\f8\11\00\00\00\00\00\00d\1e\00\000/\00\00\08\12\00\00\00\00\00\00d" + "\1e\00\00\f6/\00\00\88\12\00\00\00\00\00\00d\1e\00\00\105\00\00\88\12\00\00\00\00\00\00\80*\00\00\ce3\00\00\00\00\00\00\01\00\00\00@\12\00\00\00\00\00\00<\1e\00\00;4\00\00d" + "\1e\00\00*5\00\00\88\12\00\00\00\00\00\00d\1e\00\00\946\00\00p\11\00\00\00\00\00\00d\1e\00\00\c36\00\00x\14\00\00\00\00\00\00\ff\ff\ff\ff\ff\ff\ff\ff") (data $53 $29 (i32.const 4744) - "<\1e\00\00\c2;\00\00d\1e\00\00\93?\00\00\b0\12\00\00\00\00\00\00d\1e\00\00O@\00\00\b0\12\00\00\00\00\00\00<\1e\00\00\1bA\00\00\05") + "<\1e\00\00\c4;\00\00d\1e\00\00\95?\00\00\b0\12\00\00\00\00\00\00d\1e\00\00Q@\00\00\b0\12\00\00\00\00\00\00<\1e\00\00\1dA\00\00\05") (data $54 $29 (i32.const 4804) "-") (data $55 $29 (i32.const 4828) @@ -272,26 +272,26 @@ (data $64 $29 (i32.const 5155) "\ff\ff\ff\ff\ff") (data $65 $29 (i32.const 5224) - "d\1e\00\00\92A\00\00x\14\00\00\00\00\00\00<\1e\00\00TB\00\00d\1e\00\00\b4B\00\00\90\14\00\00\00\00\00\00d\1e\00\00aB\00\00\a0\14\00\00\00\00\00\00<\1e\00\00\82B\00\00" - "d\1e\00\00\8fB\00\00\80\14\00\00\00\00\00\00d\1e\00\00DD\00\00\c8\14\00\00\00\00\00\00<\1e\00\00sD\00\00d\1e\00\00'E\00\00\c8\14\00\00\00\00\00\00d\1e\00\00jE\00\00" - "\c8\14\00\00\00\00\00\00d\1e\00\00\b7E\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\fdE\00\00\c8\14\00\00\00\00\00\00d\1e\00\00-F\00\00\c8\14\00\00\00\00\00\00d\1e\00\00kF\00\00" - "\c8\14\00\00\00\00\00\00d\1e\00\00\9cF\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\ecF\00\00\c8\14\00\00\00\00\00\00d\1e\00\00%G\00\00\c8\14\00\00\00\00\00\00d\1e\00\00`G\00\00" - "\c8\14\00\00\00\00\00\00d\1e\00\00\9cG\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\dfG\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\0dH\00\00\c8\14\00\00\00\00\00\00d\1e\00\00@H\00\00" - "\c8\14\00\00\00\00\00\00d\1e\00\00\fcH\00\00\c8\14\00\00\00\00\00\00d\1e\00\00)I\00\00\c8\14\00\00\00\00\00\00d\1e\00\00ZI\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\98I\00\00" - "\c8\14\00\00\00\00\00\00d\1e\00\00\10J\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\d5I\00\00\c8\14\00\00\00\00\00\00d\1e\00\00WJ\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\a0J\00\00" - "\c8\14\00\00\00\00\00\00d\1e\00\00\fbJ\00\00\c8\14\00\00\00\00\00\00d\1e\00\00&K\00\00\c8\14\00\00\00\00\00\00d\1e\00\00`K\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\94K\00\00" - "\c8\14\00\00\00\00\00\00d\1e\00\00\e4K\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\13L\00\00\c8\14\00\00\00\00\00\00d\1e\00\00LL\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\85L\00\00" - "\c8\14\00\00\00\00\00\00d\1e\00\00\aaN\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\f8N\00\00\c8\14\00\00\00\00\00\00d\1e\00\003O\00\00\c8\14\00\00\00\00\00\00d\1e\00\00_O\00\00" - "\c8\14\00\00\00\00\00\00d\1e\00\00\a9O\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\deO\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\11P\00\00\c8\14\00\00\00\00\00\00d\1e\00\00HP\00\00" - "\c8\14\00\00\00\00\00\00d\1e\00\00}P\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\13Q\00\00\c8\14\00\00\00\00\00\00d\1e\00\00EQ\00\00\c8\14\00\00\00\00\00\00d\1e\00\00wQ\00\00" - "\c8\14\00\00\00\00\00\00d\1e\00\00\cfQ\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\17R\00\00\c8\14\00\00\00\00\00\00d\1e\00\00OR\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\9dR\00\00" - "\c8\14\00\00\00\00\00\00d\1e\00\00\dcR\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\1fS\00\00\c8\14\00\00\00\00\00\00d\1e\00\00PS\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\8aT\00\00" - "\c8\14\00\00\00\00\00\00d\1e\00\00\caT\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\fdT\00\00\c8\14\00\00\00\00\00\00d\1e\00\007U\00\00\c8\14\00\00\00\00\00\00d\1e\00\00pU\00\00" - "\c8\14\00\00\00\00\00\00d\1e\00\00\adU\00\00\c8\14\00\00\00\00\00\00d\1e\00\00*V\00\00\c8\14\00\00\00\00\00\00d\1e\00\00VV\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\8cV\00\00" - "\c8\14\00\00\00\00\00\00d\1e\00\00\e0V\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\18W\00\00\c8\14\00\00\00\00\00\00d\1e\00\00[W\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\8cW\00\00" - "\c8\14\00\00\00\00\00\00d\1e\00\00\bcW\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\f7W\00\00\c8\14\00\00\00\00\00\00d\1e\00\009X\00\00\c8\14\00\00\00\00\00\00d\1e\00\00(Y\00\00" - "\c8\14\00\00\00\00\00\00d\1e\00\00\b3Y\00\00x\14\00\00\00\00\00\00d\1e\00\00\c3Y\00\00\f0\18\00\00\00\00\00\00d\1e\00\00\d4Y\00\00\90\14\00\00\00\00\00\00d\1e\00\00\f6Y\00\00" - "\10\19\00\00\00\00\00\00d\1e\00\00\1aZ\00\00\90\14\00\00\00\00\00\00d*\00\00BZ\00\00d*\00\00DZ\00\00d*\00\00FZ\00\00d\1e\00\00HZ\00\00\80\14") + "d\1e\00\00\94A\00\00x\14\00\00\00\00\00\00<\1e\00\00VB\00\00d\1e\00\00\b6B\00\00\90\14\00\00\00\00\00\00d\1e\00\00cB\00\00\a0\14\00\00\00\00\00\00<\1e\00\00\84B\00\00" + "d\1e\00\00\91B\00\00\80\14\00\00\00\00\00\00d\1e\00\00FD\00\00\c8\14\00\00\00\00\00\00<\1e\00\00uD\00\00d\1e\00\00)E\00\00\c8\14\00\00\00\00\00\00d\1e\00\00lE\00\00" + "\c8\14\00\00\00\00\00\00d\1e\00\00\b9E\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\ffE\00\00\c8\14\00\00\00\00\00\00d\1e\00\00/F\00\00\c8\14\00\00\00\00\00\00d\1e\00\00mF\00\00" + "\c8\14\00\00\00\00\00\00d\1e\00\00\9eF\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\eeF\00\00\c8\14\00\00\00\00\00\00d\1e\00\00'G\00\00\c8\14\00\00\00\00\00\00d\1e\00\00bG\00\00" + "\c8\14\00\00\00\00\00\00d\1e\00\00\9eG\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\e1G\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\0fH\00\00\c8\14\00\00\00\00\00\00d\1e\00\00BH\00\00" + "\c8\14\00\00\00\00\00\00d\1e\00\00\feH\00\00\c8\14\00\00\00\00\00\00d\1e\00\00+I\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\\I\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\9aI\00\00" + "\c8\14\00\00\00\00\00\00d\1e\00\00\12J\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\d7I\00\00\c8\14\00\00\00\00\00\00d\1e\00\00YJ\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\a2J\00\00" + "\c8\14\00\00\00\00\00\00d\1e\00\00\fdJ\00\00\c8\14\00\00\00\00\00\00d\1e\00\00(K\00\00\c8\14\00\00\00\00\00\00d\1e\00\00bK\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\96K\00\00" + "\c8\14\00\00\00\00\00\00d\1e\00\00\e6K\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\15L\00\00\c8\14\00\00\00\00\00\00d\1e\00\00NL\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\87L\00\00" + "\c8\14\00\00\00\00\00\00d\1e\00\00\acN\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\faN\00\00\c8\14\00\00\00\00\00\00d\1e\00\005O\00\00\c8\14\00\00\00\00\00\00d\1e\00\00aO\00\00" + "\c8\14\00\00\00\00\00\00d\1e\00\00\abO\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\e0O\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\13P\00\00\c8\14\00\00\00\00\00\00d\1e\00\00JP\00\00" + "\c8\14\00\00\00\00\00\00d\1e\00\00\7fP\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\15Q\00\00\c8\14\00\00\00\00\00\00d\1e\00\00GQ\00\00\c8\14\00\00\00\00\00\00d\1e\00\00yQ\00\00" + "\c8\14\00\00\00\00\00\00d\1e\00\00\d1Q\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\19R\00\00\c8\14\00\00\00\00\00\00d\1e\00\00QR\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\9fR\00\00" + "\c8\14\00\00\00\00\00\00d\1e\00\00\deR\00\00\c8\14\00\00\00\00\00\00d\1e\00\00!S\00\00\c8\14\00\00\00\00\00\00d\1e\00\00RS\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\8cT\00\00" + "\c8\14\00\00\00\00\00\00d\1e\00\00\ccT\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\ffT\00\00\c8\14\00\00\00\00\00\00d\1e\00\009U\00\00\c8\14\00\00\00\00\00\00d\1e\00\00rU\00\00" + "\c8\14\00\00\00\00\00\00d\1e\00\00\afU\00\00\c8\14\00\00\00\00\00\00d\1e\00\00,V\00\00\c8\14\00\00\00\00\00\00d\1e\00\00XV\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\8eV\00\00" + "\c8\14\00\00\00\00\00\00d\1e\00\00\e2V\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\1aW\00\00\c8\14\00\00\00\00\00\00d\1e\00\00]W\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\8eW\00\00" + "\c8\14\00\00\00\00\00\00d\1e\00\00\beW\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\f9W\00\00\c8\14\00\00\00\00\00\00d\1e\00\00;X\00\00\c8\14\00\00\00\00\00\00d\1e\00\00*Y\00\00" + "\c8\14\00\00\00\00\00\00d\1e\00\00\b5Y\00\00x\14\00\00\00\00\00\00d\1e\00\00\c5Y\00\00\f0\18\00\00\00\00\00\00d\1e\00\00\d6Y\00\00\90\14\00\00\00\00\00\00d\1e\00\00\f8Y\00\00" + "\10\19\00\00\00\00\00\00d\1e\00\00\1cZ\00\00\90\14\00\00\00\00\00\00d*\00\00DZ\00\00d*\00\00FZ\00\00d*\00\00HZ\00\00d\1e\00\00JZ\00\00\80\14") (data $66 $29 (i32.const 6508) "\88\11\00\00\01\00\00\00\02\00\00\00\01\00\00\00\02\00\00\00\01\00\00\00\02\00\00\00\03\00\00\00\03\00\00\00\04\00\00\00\01\00\00\00\05\00\00\00\06\00\00\00\07\00\00\00\02\00\00\00\08\00\00\00" "\04\00\00\00\05\00\00\00\06\00\00\00\00\00\00\00p\11\00\00\01\00\00\00\07\00\00\00\09\00\00\00\n\00\00\00\01\00\00\00\02") @@ -380,190 +380,190 @@ "thArenaLiteEE9ContainerE\00/usr/local/include/google/protobuf/aren" "astring.h\00CHECK failed: initial_value != NULL: \00NSt3__212basic_s" "tringIcNS_11char_traitsIcEENS_9allocatorIcEEEE\00NSt3__221__basic_" - "string_commonILb1EEE\00/home/jplev_google_com/envoy/api/wasm/cpp/s" - "truct_lite.pb.cc\00/usr/local/include/google/protobuf/repeated_fie" - "ld.h\00CHECK failed: (index) >= (0): \00CHECK failed: (index) < (cur" - "rent_size_): \00/usr/local/include/google/protobuf/map.h\00CHECK fai" - "led: (bucket_index_ & 1) == (0): \00CHECK failed: m_->index_of_fir" - "st_non_null_ == m_->num_buckets_ || m_->table_[m_->index_of_firs" - "t_non_null_] != NULL: \00CHECK failed: !tree->empty(): \00CHECK fail" - "ed: node_ != NULL && m_ != NULL: \00google.protobuf.Value.string_v" - "alue\00google.protobuf.Struct.FieldsEntry.key\00CHECK failed: (&from" - ") != (this): \00CHECK failed: (&other) != (this): \00N6google8protob" - "uf27Struct_FieldsEntry_DoNotUseE\00N6google8protobuf8internal12Map" - "EntryLiteINS0_27Struct_FieldsEntry_DoNotUseENSt3__212basic_strin" - "gIcNS4_11char_traitsIcEENS4_9allocatorIcEEEENS0_5ValueELNS1_14Wi" - "reFormatLite9FieldTypeE9ELSD_11ELi0EEE\00N6google8protobuf8interna" - "l12MapEntryImplINS0_27Struct_FieldsEntry_DoNotUseENS0_11MessageL" - "iteENSt3__212basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIc" - "EEEENS0_5ValueELNS1_14WireFormatLite9FieldTypeE9ELSE_11ELi0EEE\00C" - "HECK failed: (it.m_) == (this): \00CHECK failed: TableEntryIsNonEm" - "ptyList(b): \00CHECK failed: TableEntryIsTree(b): \00CHECK failed: G" - "etArenaNoVirtual() == NULL: \00CHECK failed: index_of_first_non_nu" - "ll_ == num_buckets_ || table_[index_of_first_non_null_] != NULL:" - " \00CHECK failed: find(*KeyPtrFromNodePtr(node)) == end(): \00CHECK " - "failed: (count) <= (kMaxLength): \00CHECK failed: (result.bucket_i" - "ndex_) == (b & ~static_cast(1)): \00CHECK failed: (tabl" - "e_[b]) == (table_[b ^ 1]): \00CHECK failed: !TableEntryIsTree(b) &" - "& !TableEntryIsTree(b ^ 1): \00CHECK failed: (count) == (tree->siz" - "e()): \00CHECK failed: (new_num_buckets) >= (kMinTableSize): \00CHEC" - "K failed: n >= kMinTableSize: \00CHECK failed: (n & (n - 1)) == (0" - "): \00CHECK failed: table_[b] == table_[b + 1] && (b & 1) == 0: \00N" - "6google8protobuf3MapINSt3__212basic_stringIcNS2_11char_traitsIcE" - "ENS2_9allocatorIcEEEENS0_5ValueEE8InnerMapE\00N6google8protobuf4ha" - "shINSt3__212basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcE" - "EEEEE\00f == NULL || dynamic_cast(f) != NULL\00/usr/local/includ" - "e/google/protobuf/stubs/casts.h\00down_cast\00google.protobuf.Struct" - "\00N6google8protobuf6StructE\00N6google8protobuf5ValueE\00N6google8pro" - "tobuf8internal12MapEntryImplINS0_27Struct_FieldsEntry_DoNotUseEN" - "S0_11MessageLiteENSt3__212basic_stringIcNS5_11char_traitsIcEENS5" - "_9allocatorIcEEEENS0_5ValueELNS1_14WireFormatLite9FieldTypeE9ELS" - "E_11ELi0EE15MapEntryWrapperE\00CHECK failed: (n) >= (0): \00google.p" - "rotobuf.ListValue\00N6google8protobuf9ListValueE\00google.protobuf.V" - "alue\0011RootContext\00no context factory for root_id: \00N6google8pro" - "tobuf14FatalExceptionE\00google/protobuf/stubs/common.cc\00This prog" - "ram requires version \00%d.%d.%d\00 of the Protocol Buffer runtime l" - "ibrary, but the installed version is \00. Please update your libr" - "ary. If you compiled the program yourself, make sure that your " - "headers are from the same version of Protocol Buffers as your li" - "nk-time library. (Version verification failed in \"\00\".)\00This pro" - "gram was compiled against version \00 of the Protocol Buffer runti" - "me library, which is not compatible with the installed version (" - "\00). Contact the program author for an update. If you compiled " - "the program yourself, make sure that your headers are from the s" - "ame version of Protocol Buffers as your link-time library. (Ver" - "sion verification failed in \"\00[libprotobuf %s %s:%d] %s\n\00INFO\00WA" - "RNING\00ERROR\00FATAL\00allocator::allocate(size_t n) 'n' exceeds m" - "aximum supported size\00%d\00google/protobuf/arena.cc\00CHECK failed: " - "(min_bytes) <= (std::numeric_limits::max() - kBlockHeade" - "rSize): \00google/protobuf/generated_message_util.cc\00Not implement" - "ed field number \00 with type \00CHECK failed: (scc->visit_status.lo" - "ad(std::memory_order_relaxed)) == (SCCInfoBase::kRunning): \00goog" - "le/protobuf/message_lite.cc\00CHECK failed: !coded_out.HadError():" - " \00(cannot determine missing fields for lite message)\00N6google8pr" - "otobuf11MessageLiteE\00google/protobuf/repeated_field.cc\00CHECK fai" - "led: (new_size) <= ((std::numeric_limits::max() - kRepHe" - "aderSize) / sizeof(old_rep->elements[0])): \00Requested size is to" - "o large to fit into size_t.\00google/protobuf/wire_format_lite.cc\00" - "CHECK failed: (value.size()) <= (kint32max): \00serializing\00parsin" - "g\00 '%s'\00String field\00 contains invalid \00UTF-8 data when \00 a prot" - "ocol \00buffer. Use the 'bytes' type if you intend to send raw \00by" - "tes. \00google/protobuf/io/coded_stream.cc\00CHECK failed: (buffer_s" - "ize) >= (0): \00A protocol message was rejected because it was too" - " big (more than \00 bytes). To increase the limit (or to disable " - "these warnings), see CodedInputStream::SetTotalBytesLimit() in g" - "oogle/protobuf/io/coded_stream.h.\00google/protobuf/io/zero_copy_s" - "tream_impl_lite.cc\00CHECK failed: (count) >= (0): \00CHECK failed: " - "(last_returned_size_) > (0): \00BackUp() can only be called after " - "a successful Next().\00CHECK failed: (count) <= (last_returned_siz" - "e_): \00N6google8protobuf2io17ArrayOutputStreamE\00CHECK failed: tar" - "get_ != NULL: \00CHECK failed: (count) <= (target_->size()): \00Cann" - "ot allocate buffer larger than kint32max for \00StringOutputStream" - ".\00N6google8protobuf2io18StringOutputStreamE\00google/protobuf/io/z" - "ero_copy_stream.cc\00This ZeroCopyOutputStream doesn't support ali" - "asing. Reaching here usually means a ZeroCopyOutputStream implem" - "entation bug.\00N6google8protobuf2io20ZeroCopyOutputStreamE\00-+ 0" - "X0x\00(null)\00-0X+0X 0X-0x+0x 0x\00inf\00INF\00nan\00NAN\00std::bad_function_" - "call\00NSt3__217bad_function_callE\00mutex lock failed\00%u\00terminatin" - "g with %s exception of type %s: %s\00terminating with %s exception" - " of type %s\00terminating with %s foreign exception\00terminating\00un" - "caught\00St9exception\00N10__cxxabiv116__shim_type_infoE\00St9type_inf" - "o\00N10__cxxabiv120__si_class_type_infoE\00N10__cxxabiv117__class_ty" - "pe_infoE\00terminate_handler unexpectedly returned\00_Z\00___Z\00_block_" - "invoke\00invocation function for block in \00void\00bool\00char\00signed c" - "har\00unsigned char\00short\00unsigned short\00int\00unsigned int\00long\00uns" - "igned long\00long long\00__int128\00unsigned __int128\00float\00long doubl" - "e\00__float128\00...\00decimal64\00decimal128\00decimal32\00decimal16\00char32" - "_t\00char16_t\00auto\00decltype(auto)\00std::nullptr_t\00[abi:\00]\00N12_GLOBA" - "L__N_116itanium_demangle10AbiTagAttrE\00N12_GLOBAL__N_116itanium_d" - "emangle4NodeE\00allocator\00basic_string\00string\00istream\00ostream\00iost" - "ream\00std::allocator\00std::basic_string\00std::string\00std::istream\00s" - "td::ostream\00std::iostream\00N12_GLOBAL__N_116itanium_demangle19Spe" - "cialSubstitutionE\00 imaginary\00N12_GLOBAL__N_116itanium_demangle20" - "PostfixQualifiedTypeE\00 complex\00)\00 \00(\00&\00&&\00N12_GLOBAL__N_116itani" - "um_demangle13ReferenceTypeE\00objc_object\00*\00id<\00>\00N12_GLOBAL__N_11" - "6itanium_demangle11PointerTypeE\00N12_GLOBAL__N_116itanium_demangl" - "e20NameWithTemplateArgsE\00<\00, \00N12_GLOBAL__N_116itanium_demangle1" - "2TemplateArgsE\00N12_GLOBAL__N_116itanium_demangle13ParameterPackE" - "\00wchar_t\00b0E\00b1E\00u\00l\00ul\00ll\00ull\00N12_GLOBAL__N_116itanium_demangle" - "15IntegerCastExprE\00%LaL\00N12_GLOBAL__N_116itanium_demangle16Float" - "LiteralImplIeEE\00%a\00N12_GLOBAL__N_116itanium_demangle16FloatLiter" - "alImplIdEE\00%af\00N12_GLOBAL__N_116itanium_demangle16FloatLiteralIm" - "plIfEE\00true\00false\00N12_GLOBAL__N_116itanium_demangle8BoolExprE\00-\00" - "N12_GLOBAL__N_116itanium_demangle14IntegerLiteralE\00N12_GLOBAL__N" - "_116itanium_demangle20TemplateArgumentPackE\00gs\00&=\00=\00alignof (\00,\00" - "~\00.*\00/\00/=\00^\00^=\00==\00>=\00<=\00<<\00<<=\00-=\00*=\00--\00!=\00!\00||\00|\00|=\00->*\00+\00+=\00++" - "\00->\00%\00%=\00>>\00>>=\00sizeof (\00typeid (\00throw\00throw \00N12_GLOBAL__N_116" - "itanium_demangle9ThrowExprE\00N12_GLOBAL__N_116itanium_demangle12I" - "nitListExprE\00N12_GLOBAL__N_116itanium_demangle13NodeArrayNodeE\00s" - "izeof... (\00N12_GLOBAL__N_116itanium_demangle13EnclosingExprE\00siz" - "eof...(\00N12_GLOBAL__N_116itanium_demangle22ParameterPackExpansio" - "nE\00N12_GLOBAL__N_116itanium_demangle19SizeofParamPackExprE\00stati" - "c_cast\00>(\00N12_GLOBAL__N_116itanium_demangle8CastExprE\00reinterpre" - "t_cast\00) ? (\00) : (\00N12_GLOBAL__N_116itanium_demangle15Conditiona" - "lExprE\00noexcept (\00nw\00na\00pi\00::operator \00new\00[]\00N12_GLOBAL__N_116i" - "tanium_demangle7NewExprE\00N12_GLOBAL__N_116itanium_demangle11Post" - "fixExprE\00 ... \00 = \00N12_GLOBAL__N_116itanium_demangle15BracedRang" - "eExprE\00N12_GLOBAL__N_116itanium_demangle10BracedExprE\00_GLOBAL__N" - "\00(anonymous namespace)\00N12_GLOBAL__N_116itanium_demangle8NameTyp" - "eE\00)[\00N12_GLOBAL__N_116itanium_demangle18ArraySubscriptExprE\00.\00N" - "12_GLOBAL__N_116itanium_demangle10MemberExprE\00srN\00sr\00::\00N12_GLOB" - "AL__N_116itanium_demangle19GlobalQualifiedNameE\00dn\00on\00operator&&" - "\00operator&\00operator&=\00operator=\00operator()\00operator,\00operator~\00o" - "perator delete[]\00operator*\00operator/\00operator/=\00operator^\00operat" - "or^=\00operator==\00operator>=\00operator>\00operator[]\00operator<=\00opera" - "tor<<\00operator<<=\00operator<\00operator-\00operator-=\00operator*=\00oper" - "ator--\00operator new[]\00operator!=\00operator!\00operator new\00operator" - "||\00operator|\00operator|=\00operator->*\00operator+\00operator+=\00operato" - "r++\00operator->\00operator?\00operator%\00operator%=\00operator>>\00operato" - "r>>=\00operator<=>\00operator\"\" \00N12_GLOBAL__N_116itanium_demangle15" - "LiteralOperatorE\00operator delete\00operator \00N12_GLOBAL__N_116itan" - "ium_demangle22ConversionOperatorTypeE\00N12_GLOBAL__N_116itanium_d" - "emangle8DtorNameE\00N12_GLOBAL__N_116itanium_demangle13QualifiedNa" - "meE\00dynamic_cast\00delete\00[] \00N12_GLOBAL__N_116itanium_demangle10D" - "eleteExprE\00cv\00)(\00N12_GLOBAL__N_116itanium_demangle14ConversionEx" - "prE\00N12_GLOBAL__N_116itanium_demangle8CallExprE\00const_cast\00N12_G" - "LOBAL__N_116itanium_demangle10PrefixExprE\00) \00 (\00N12_GLOBAL__N_11" - "6itanium_demangle10BinaryExprE\00aa\00an\00aN\00aS\00cm\00ds\00dv\00dV\00eo\00eO\00eq\00" - "ge\00gt\00le\00ls\00lS\00lt\00mi\00mI\00ml\00mL\00ne\00oo\00or\00oR\00pl\00pL\00rm\00rM\00rs\00rS\00... " - "\00 ...\00N12_GLOBAL__N_116itanium_demangle8FoldExprE\00fp\00fL\00N12_GLOB" - "AL__N_116itanium_demangle13FunctionParamE\00N12_GLOBAL__N_116itani" - "um_demangle24ForwardTemplateReferenceE\00Ts\00struct\00Tu\00union\00Te\00enu" - "m\00N12_GLOBAL__N_116itanium_demangle22ElaboratedTypeSpefTypeE\00StL" - "\00St\00std::\00N12_GLOBAL__N_116itanium_demangle16StdQualifiedNameE\00D" - "C\00N12_GLOBAL__N_116itanium_demangle21StructuredBindingNameE\00Ut\00U" - "l\00vE\00'lambda\00'(\00N12_GLOBAL__N_116itanium_demangle15ClosureTypeNa" - "meE\00'unnamed\00'\00N12_GLOBAL__N_116itanium_demangle15UnnamedTypeNam" - "eE\00string literal\00N12_GLOBAL__N_116itanium_demangle9LocalNameE\00s" - "td\00N12_GLOBAL__N_116itanium_demangle12CtorDtorNameE\00basic_istrea" - "m\00basic_ostream\00basic_iostream\00std::basic_string, std::allocator >\00std::basic_istream >\00std::basic_ostream >\00std::basic_iostream >\00N12" - "_GLOBAL__N_116itanium_demangle27ExpandedSpecialSubstitutionE\00N12" - "_GLOBAL__N_116itanium_demangle10NestedNameE\00::*\00N12_GLOBAL__N_11" - "6itanium_demangle19PointerToMemberTypeE\00[\00N12_GLOBAL__N_116itani" - "um_demangle9ArrayTypeE\00Dv\00 vector[\00N12_GLOBAL__N_116itanium_dema" - "ngle10VectorTypeE\00pixel vector[\00N12_GLOBAL__N_116itanium_demangl" - "e15PixelVectorTypeE\00decltype(\00double\00unsigned long long\00objcprot" - "o\00 const\00 volatile\00 restrict\00N12_GLOBAL__N_116itanium_demangle8Q" - "ualTypeE\00N12_GLOBAL__N_116itanium_demangle17VendorExtQualTypeE\00N" - "12_GLOBAL__N_116itanium_demangle13ObjCProtoNameE\00Do\00noexcept\00DO\00" - "Dw\00Dx\00RE\00OE\00 &\00 &&\00N12_GLOBAL__N_116itanium_demangle12FunctionTy" - "peE\00throw(\00N12_GLOBAL__N_116itanium_demangle20DynamicExceptionSp" - "ecE\00noexcept(\00N12_GLOBAL__N_116itanium_demangle12NoexceptSpecE\00N" - "12_GLOBAL__N_116itanium_demangle11SpecialNameE\00N12_GLOBAL__N_116" - "itanium_demangle9DotSuffixE\00Ua9enable_ifI\00N12_GLOBAL__N_116itani" - "um_demangle16FunctionEncodingE\00 [enable_if:\00N12_GLOBAL__N_116ita" - "nium_demangle12EnableIfAttrE\00thread-local wrapper routine for \00r" - "eference temporary for \00guard variable for \00non-virtual thunk to" - " \00virtual thunk to \00thread-local initialization routine for \00con" - "struction vtable for \00-in-\00N12_GLOBAL__N_116itanium_demangle21Ct" - "orVtableSpecialNameE\00covariant return thunk to \00typeinfo name fo" - "r \00typeinfo for \00VTT for \00vtable for \00St11logic_error\00St12length" - "_error\00N10__cxxabiv117__pbase_type_infoE\00N10__cxxabiv119__pointe" - "r_type_infoE\00N10__cxxabiv123__fundamental_type_infoE\00v\00c\00h\00N10__" - "cxxabiv121__vmi_class_type_infoE") + "string_commonILb1EEE\00/home/piotrsikora/Google/envoy/api/wasm/cpp" + "/struct_lite.pb.cc\00/usr/local/include/google/protobuf/repeated_f" + "ield.h\00CHECK failed: (index) >= (0): \00CHECK failed: (index) < (c" + "urrent_size_): \00/usr/local/include/google/protobuf/map.h\00CHECK f" + "ailed: (bucket_index_ & 1) == (0): \00CHECK failed: m_->index_of_f" + "irst_non_null_ == m_->num_buckets_ || m_->table_[m_->index_of_fi" + "rst_non_null_] != NULL: \00CHECK failed: !tree->empty(): \00CHECK fa" + "iled: node_ != NULL && m_ != NULL: \00google.protobuf.Value.string" + "_value\00google.protobuf.Struct.FieldsEntry.key\00CHECK failed: (&fr" + "om) != (this): \00CHECK failed: (&other) != (this): \00N6google8prot" + "obuf27Struct_FieldsEntry_DoNotUseE\00N6google8protobuf8internal12M" + "apEntryLiteINS0_27Struct_FieldsEntry_DoNotUseENSt3__212basic_str" + "ingIcNS4_11char_traitsIcEENS4_9allocatorIcEEEENS0_5ValueELNS1_14" + "WireFormatLite9FieldTypeE9ELSD_11ELi0EEE\00N6google8protobuf8inter" + "nal12MapEntryImplINS0_27Struct_FieldsEntry_DoNotUseENS0_11Messag" + "eLiteENSt3__212basic_stringIcNS5_11char_traitsIcEENS5_9allocator" + "IcEEEENS0_5ValueELNS1_14WireFormatLite9FieldTypeE9ELSE_11ELi0EEE" + "\00CHECK failed: (it.m_) == (this): \00CHECK failed: TableEntryIsNon" + "EmptyList(b): \00CHECK failed: TableEntryIsTree(b): \00CHECK failed:" + " GetArenaNoVirtual() == NULL: \00CHECK failed: index_of_first_non_" + "null_ == num_buckets_ || table_[index_of_first_non_null_] != NUL" + "L: \00CHECK failed: find(*KeyPtrFromNodePtr(node)) == end(): \00CHEC" + "K failed: (count) <= (kMaxLength): \00CHECK failed: (result.bucket" + "_index_) == (b & ~static_cast(1)): \00CHECK failed: (ta" + "ble_[b]) == (table_[b ^ 1]): \00CHECK failed: !TableEntryIsTree(b)" + " && !TableEntryIsTree(b ^ 1): \00CHECK failed: (count) == (tree->s" + "ize()): \00CHECK failed: (new_num_buckets) >= (kMinTableSize): \00CH" + "ECK failed: n >= kMinTableSize: \00CHECK failed: (n & (n - 1)) == " + "(0): \00CHECK failed: table_[b] == table_[b + 1] && (b & 1) == 0: " + "\00N6google8protobuf3MapINSt3__212basic_stringIcNS2_11char_traitsI" + "cEENS2_9allocatorIcEEEENS0_5ValueEE8InnerMapE\00N6google8protobuf4" + "hashINSt3__212basic_stringIcNS2_11char_traitsIcEENS2_9allocatorI" + "cEEEEEE\00f == NULL || dynamic_cast(f) != NULL\00/usr/local/incl" + "ude/google/protobuf/stubs/casts.h\00down_cast\00google.protobuf.Stru" + "ct\00N6google8protobuf6StructE\00N6google8protobuf5ValueE\00N6google8p" + "rotobuf8internal12MapEntryImplINS0_27Struct_FieldsEntry_DoNotUse" + "ENS0_11MessageLiteENSt3__212basic_stringIcNS5_11char_traitsIcEEN" + "S5_9allocatorIcEEEENS0_5ValueELNS1_14WireFormatLite9FieldTypeE9E" + "LSE_11ELi0EE15MapEntryWrapperE\00CHECK failed: (n) >= (0): \00google" + ".protobuf.ListValue\00N6google8protobuf9ListValueE\00google.protobuf" + ".Value\0011RootContext\00no context factory for root_id: \00N6google8p" + "rotobuf14FatalExceptionE\00google/protobuf/stubs/common.cc\00This pr" + "ogram requires version \00%d.%d.%d\00 of the Protocol Buffer runtime" + " library, but the installed version is \00. Please update your li" + "brary. If you compiled the program yourself, make sure that you" + "r headers are from the same version of Protocol Buffers as your " + "link-time library. (Version verification failed in \"\00\".)\00This p" + "rogram was compiled against version \00 of the Protocol Buffer run" + "time library, which is not compatible with the installed version" + " (\00). Contact the program author for an update. If you compile" + "d the program yourself, make sure that your headers are from the" + " same version of Protocol Buffers as your link-time library. (V" + "ersion verification failed in \"\00[libprotobuf %s %s:%d] %s\n\00INFO\00" + "WARNING\00ERROR\00FATAL\00allocator::allocate(size_t n) 'n' exceeds" + " maximum supported size\00%d\00google/protobuf/arena.cc\00CHECK failed" + ": (min_bytes) <= (std::numeric_limits::max() - kBlockHea" + "derSize): \00google/protobuf/generated_message_util.cc\00Not impleme" + "nted field number \00 with type \00CHECK failed: (scc->visit_status." + "load(std::memory_order_relaxed)) == (SCCInfoBase::kRunning): \00go" + "ogle/protobuf/message_lite.cc\00CHECK failed: !coded_out.HadError(" + "): \00(cannot determine missing fields for lite message)\00N6google8" + "protobuf11MessageLiteE\00google/protobuf/repeated_field.cc\00CHECK f" + "ailed: (new_size) <= ((std::numeric_limits::max() - kRep" + "HeaderSize) / sizeof(old_rep->elements[0])): \00Requested size is " + "too large to fit into size_t.\00google/protobuf/wire_format_lite.c" + "c\00CHECK failed: (value.size()) <= (kint32max): \00serializing\00pars" + "ing\00 '%s'\00String field\00 contains invalid \00UTF-8 data when \00 a pr" + "otocol \00buffer. Use the 'bytes' type if you intend to send raw \00" + "bytes. \00google/protobuf/io/coded_stream.cc\00CHECK failed: (buffer" + "_size) >= (0): \00A protocol message was rejected because it was t" + "oo big (more than \00 bytes). To increase the limit (or to disabl" + "e these warnings), see CodedInputStream::SetTotalBytesLimit() in" + " google/protobuf/io/coded_stream.h.\00google/protobuf/io/zero_copy" + "_stream_impl_lite.cc\00CHECK failed: (count) >= (0): \00CHECK failed" + ": (last_returned_size_) > (0): \00BackUp() can only be called afte" + "r a successful Next().\00CHECK failed: (count) <= (last_returned_s" + "ize_): \00N6google8protobuf2io17ArrayOutputStreamE\00CHECK failed: t" + "arget_ != NULL: \00CHECK failed: (count) <= (target_->size()): \00Ca" + "nnot allocate buffer larger than kint32max for \00StringOutputStre" + "am.\00N6google8protobuf2io18StringOutputStreamE\00google/protobuf/io" + "/zero_copy_stream.cc\00This ZeroCopyOutputStream doesn't support a" + "liasing. Reaching here usually means a ZeroCopyOutputStream impl" + "ementation bug.\00N6google8protobuf2io20ZeroCopyOutputStreamE\00-+ " + " 0X0x\00(null)\00-0X+0X 0X-0x+0x 0x\00inf\00INF\00nan\00NAN\00std::bad_functio" + "n_call\00NSt3__217bad_function_callE\00mutex lock failed\00%u\00terminat" + "ing with %s exception of type %s: %s\00terminating with %s excepti" + "on of type %s\00terminating with %s foreign exception\00terminating\00" + "uncaught\00St9exception\00N10__cxxabiv116__shim_type_infoE\00St9type_i" + "nfo\00N10__cxxabiv120__si_class_type_infoE\00N10__cxxabiv117__class_" + "type_infoE\00terminate_handler unexpectedly returned\00_Z\00___Z\00_bloc" + "k_invoke\00invocation function for block in \00void\00bool\00char\00signed" + " char\00unsigned char\00short\00unsigned short\00int\00unsigned int\00long\00u" + "nsigned long\00long long\00__int128\00unsigned __int128\00float\00long dou" + "ble\00__float128\00...\00decimal64\00decimal128\00decimal32\00decimal16\00char" + "32_t\00char16_t\00auto\00decltype(auto)\00std::nullptr_t\00[abi:\00]\00N12_GLO" + "BAL__N_116itanium_demangle10AbiTagAttrE\00N12_GLOBAL__N_116itanium" + "_demangle4NodeE\00allocator\00basic_string\00string\00istream\00ostream\00io" + "stream\00std::allocator\00std::basic_string\00std::string\00std::istream" + "\00std::ostream\00std::iostream\00N12_GLOBAL__N_116itanium_demangle19S" + "pecialSubstitutionE\00 imaginary\00N12_GLOBAL__N_116itanium_demangle" + "20PostfixQualifiedTypeE\00 complex\00)\00 \00(\00&\00&&\00N12_GLOBAL__N_116ita" + "nium_demangle13ReferenceTypeE\00objc_object\00*\00id<\00>\00N12_GLOBAL__N_" + "116itanium_demangle11PointerTypeE\00N12_GLOBAL__N_116itanium_deman" + "gle20NameWithTemplateArgsE\00<\00, \00N12_GLOBAL__N_116itanium_demangl" + "e12TemplateArgsE\00N12_GLOBAL__N_116itanium_demangle13ParameterPac" + "kE\00wchar_t\00b0E\00b1E\00u\00l\00ul\00ll\00ull\00N12_GLOBAL__N_116itanium_demang" + "le15IntegerCastExprE\00%LaL\00N12_GLOBAL__N_116itanium_demangle16Flo" + "atLiteralImplIeEE\00%a\00N12_GLOBAL__N_116itanium_demangle16FloatLit" + "eralImplIdEE\00%af\00N12_GLOBAL__N_116itanium_demangle16FloatLiteral" + "ImplIfEE\00true\00false\00N12_GLOBAL__N_116itanium_demangle8BoolExprE\00" + "-\00N12_GLOBAL__N_116itanium_demangle14IntegerLiteralE\00N12_GLOBAL_" + "_N_116itanium_demangle20TemplateArgumentPackE\00gs\00&=\00=\00alignof (\00" + ",\00~\00.*\00/\00/=\00^\00^=\00==\00>=\00<=\00<<\00<<=\00-=\00*=\00--\00!=\00!\00||\00|\00|=\00->*\00+\00+=\00" + "++\00->\00%\00%=\00>>\00>>=\00sizeof (\00typeid (\00throw\00throw \00N12_GLOBAL__N_1" + "16itanium_demangle9ThrowExprE\00N12_GLOBAL__N_116itanium_demangle1" + "2InitListExprE\00N12_GLOBAL__N_116itanium_demangle13NodeArrayNodeE" + "\00sizeof... (\00N12_GLOBAL__N_116itanium_demangle13EnclosingExprE\00s" + "izeof...(\00N12_GLOBAL__N_116itanium_demangle22ParameterPackExpans" + "ionE\00N12_GLOBAL__N_116itanium_demangle19SizeofParamPackExprE\00sta" + "tic_cast\00>(\00N12_GLOBAL__N_116itanium_demangle8CastExprE\00reinterp" + "ret_cast\00) ? (\00) : (\00N12_GLOBAL__N_116itanium_demangle15Conditio" + "nalExprE\00noexcept (\00nw\00na\00pi\00::operator \00new\00[]\00N12_GLOBAL__N_11" + "6itanium_demangle7NewExprE\00N12_GLOBAL__N_116itanium_demangle11Po" + "stfixExprE\00 ... \00 = \00N12_GLOBAL__N_116itanium_demangle15BracedRa" + "ngeExprE\00N12_GLOBAL__N_116itanium_demangle10BracedExprE\00_GLOBAL_" + "_N\00(anonymous namespace)\00N12_GLOBAL__N_116itanium_demangle8NameT" + "ypeE\00)[\00N12_GLOBAL__N_116itanium_demangle18ArraySubscriptExprE\00." + "\00N12_GLOBAL__N_116itanium_demangle10MemberExprE\00srN\00sr\00::\00N12_GL" + "OBAL__N_116itanium_demangle19GlobalQualifiedNameE\00dn\00on\00operator" + "&&\00operator&\00operator&=\00operator=\00operator()\00operator,\00operator~" + "\00operator delete[]\00operator*\00operator/\00operator/=\00operator^\00oper" + "ator^=\00operator==\00operator>=\00operator>\00operator[]\00operator<=\00ope" + "rator<<\00operator<<=\00operator<\00operator-\00operator-=\00operator*=\00op" + "erator--\00operator new[]\00operator!=\00operator!\00operator new\00operat" + "or||\00operator|\00operator|=\00operator->*\00operator+\00operator+=\00opera" + "tor++\00operator->\00operator?\00operator%\00operator%=\00operator>>\00opera" + "tor>>=\00operator<=>\00operator\"\" \00N12_GLOBAL__N_116itanium_demangle" + "15LiteralOperatorE\00operator delete\00operator \00N12_GLOBAL__N_116it" + "anium_demangle22ConversionOperatorTypeE\00N12_GLOBAL__N_116itanium" + "_demangle8DtorNameE\00N12_GLOBAL__N_116itanium_demangle13Qualified" + "NameE\00dynamic_cast\00delete\00[] \00N12_GLOBAL__N_116itanium_demangle1" + "0DeleteExprE\00cv\00)(\00N12_GLOBAL__N_116itanium_demangle14Conversion" + "ExprE\00N12_GLOBAL__N_116itanium_demangle8CallExprE\00const_cast\00N12" + "_GLOBAL__N_116itanium_demangle10PrefixExprE\00) \00 (\00N12_GLOBAL__N_" + "116itanium_demangle10BinaryExprE\00aa\00an\00aN\00aS\00cm\00ds\00dv\00dV\00eo\00eO\00e" + "q\00ge\00gt\00le\00ls\00lS\00lt\00mi\00mI\00ml\00mL\00ne\00oo\00or\00oR\00pl\00pL\00rm\00rM\00rs\00rS\00.." + ". \00 ...\00N12_GLOBAL__N_116itanium_demangle8FoldExprE\00fp\00fL\00N12_GL" + "OBAL__N_116itanium_demangle13FunctionParamE\00N12_GLOBAL__N_116ita" + "nium_demangle24ForwardTemplateReferenceE\00Ts\00struct\00Tu\00union\00Te\00e" + "num\00N12_GLOBAL__N_116itanium_demangle22ElaboratedTypeSpefTypeE\00S" + "tL\00St\00std::\00N12_GLOBAL__N_116itanium_demangle16StdQualifiedNameE" + "\00DC\00N12_GLOBAL__N_116itanium_demangle21StructuredBindingNameE\00Ut" + "\00Ul\00vE\00'lambda\00'(\00N12_GLOBAL__N_116itanium_demangle15ClosureType" + "NameE\00'unnamed\00'\00N12_GLOBAL__N_116itanium_demangle15UnnamedTypeN" + "ameE\00string literal\00N12_GLOBAL__N_116itanium_demangle9LocalNameE" + "\00std\00N12_GLOBAL__N_116itanium_demangle12CtorDtorNameE\00basic_istr" + "eam\00basic_ostream\00basic_iostream\00std::basic_string, std::allocator >\00std::basic_istream >\00std::basic_ostream >\00std::basic_iostream >\00N" + "12_GLOBAL__N_116itanium_demangle27ExpandedSpecialSubstitutionE\00N" + "12_GLOBAL__N_116itanium_demangle10NestedNameE\00::*\00N12_GLOBAL__N_" + "116itanium_demangle19PointerToMemberTypeE\00[\00N12_GLOBAL__N_116ita" + "nium_demangle9ArrayTypeE\00Dv\00 vector[\00N12_GLOBAL__N_116itanium_de" + "mangle10VectorTypeE\00pixel vector[\00N12_GLOBAL__N_116itanium_deman" + "gle15PixelVectorTypeE\00decltype(\00double\00unsigned long long\00objcpr" + "oto\00 const\00 volatile\00 restrict\00N12_GLOBAL__N_116itanium_demangle" + "8QualTypeE\00N12_GLOBAL__N_116itanium_demangle17VendorExtQualTypeE" + "\00N12_GLOBAL__N_116itanium_demangle13ObjCProtoNameE\00Do\00noexcept\00D" + "O\00Dw\00Dx\00RE\00OE\00 &\00 &&\00N12_GLOBAL__N_116itanium_demangle12Function" + "TypeE\00throw(\00N12_GLOBAL__N_116itanium_demangle20DynamicException" + "SpecE\00noexcept(\00N12_GLOBAL__N_116itanium_demangle12NoexceptSpecE" + "\00N12_GLOBAL__N_116itanium_demangle11SpecialNameE\00N12_GLOBAL__N_1" + "16itanium_demangle9DotSuffixE\00Ua9enable_ifI\00N12_GLOBAL__N_116ita" + "nium_demangle16FunctionEncodingE\00 [enable_if:\00N12_GLOBAL__N_116i" + "tanium_demangle12EnableIfAttrE\00thread-local wrapper routine for " + "\00reference temporary for \00guard variable for \00non-virtual thunk " + "to \00virtual thunk to \00thread-local initialization routine for \00c" + "onstruction vtable for \00-in-\00N12_GLOBAL__N_116itanium_demangle21" + "CtorVtableSpecialNameE\00covariant return thunk to \00typeinfo name " + "for \00typeinfo for \00VTT for \00vtable for \00St11logic_error\00St12leng" + "th_error\00N10__cxxabiv117__pbase_type_infoE\00N10__cxxabiv119__poin" + "ter_type_infoE\00N10__cxxabiv123__fundamental_type_infoE\00v\00c\00h\00N10" + "__cxxabiv121__vmi_class_type_infoE") (func $globalCtors (type $8) call $__GLOBAL__sub_I_logging_cc @@ -1353,7 +1353,7 @@ i32.store offset=8 local.get $5 local.get $6 - i32.const 17838 + i32.const 17840 call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc local.tee $0 i64.load align=4 @@ -2328,7 +2328,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 12606 + i32.const 12608 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -2462,19 +2462,19 @@ i32.const 25 i32.store offset=4 local.get $1 - i32.const 13893 + i32.const 13895 i64.load align=1 i64.store align=1 local.get $1 - i32.const 13901 + i32.const 13903 i64.load align=1 i64.store offset=8 align=1 local.get $1 - i32.const 13909 + i32.const 13911 i64.load align=1 i64.store offset=16 align=1 local.get $1 - i32.const 13917 + i32.const 13919 i32.load8_s i32.store8 offset=24 local.get $1 @@ -2586,10 +2586,10 @@ local.get $1 call $__ZN6google8protobuf9ListValue9MergeFromERKS1_ else - i32.const 13459 - i32.const 13500 + i32.const 13461 + i32.const 13502 i32.const 92 - i32.const 13549 + i32.const 13551 call $___assert_fail end ;; $if ) @@ -3188,7 +3188,7 @@ i32.const 3 i32.store local.get $3 - i32.const 11486 + i32.const 11488 i32.store offset=4 local.get $3 i32.const 1505 @@ -3200,7 +3200,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 11538 + i32.const 11540 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -3230,7 +3230,7 @@ i32.const 3 i32.store local.get $2 - i32.const 11486 + i32.const 11488 i32.store offset=4 local.get $2 i32.const 1506 @@ -3242,7 +3242,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 11569 + i32.const 11571 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -3900,7 +3900,7 @@ i32.const 3 i32.store local.get $3 - i32.const 11611 + i32.const 11613 i32.store offset=4 local.get $3 i32.const 418 @@ -3912,7 +3912,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 11695 + i32.const 11697 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -3998,7 +3998,7 @@ i32.const 3 i32.store local.get $2 - i32.const 11611 + i32.const 11613 i32.store offset=4 local.get $2 i32.const 427 @@ -4010,7 +4010,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 11812 + i32.const 11814 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -4081,7 +4081,7 @@ i32.const 3 i32.store local.get $2 - i32.const 11611 + i32.const 11613 i32.store offset=4 local.get $2 i32.const 451 @@ -4093,7 +4093,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 11652 + i32.const 11654 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -4229,7 +4229,7 @@ i32.const 3 i32.store local.get $3 - i32.const 11611 + i32.const 11613 i32.store offset=4 local.get $3 i32.const 476 @@ -4241,7 +4241,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 11843 + i32.const 11845 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -5131,10 +5131,10 @@ local.get $1 call $__ZN6google8protobuf8internal12MapEntryImplINS0_27Struct_FieldsEntry_DoNotUseENS0_11MessageLiteENSt3__212basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEENS0_5ValueELNS1_14WireFormatLite9FieldTypeE9ELSE_11ELi0EE17MergeFromInternalERKSF_ else - i32.const 13459 - i32.const 13500 + i32.const 13461 + i32.const 13502 i32.const 92 - i32.const 13549 + i32.const 13551 call $___assert_fail end ;; $if ) @@ -6148,7 +6148,7 @@ i32.and end ;; $if_11 i32.const 0 - i32.const 11887 + i32.const 11889 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ br_if $loop i32.const 0 @@ -6888,7 +6888,7 @@ local.get $6 select i32.const 0 - i32.const 11922 + i32.const 11924 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ select br $block_4 @@ -8352,7 +8352,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 11961 + i32.const 11963 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -8686,7 +8686,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 11961 + i32.const 11963 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -8881,7 +8881,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 11961 + i32.const 11963 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -8978,7 +8978,7 @@ i32.const 3 i32.store local.get $2 - i32.const 11486 + i32.const 11488 i32.store offset=4 local.get $2 i32.const 1586 @@ -8990,7 +8990,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 11995 + i32.const 11997 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -9218,7 +9218,7 @@ i32.const 3 i32.store local.get $2 - i32.const 11611 + i32.const 11613 i32.store offset=4 local.get $2 i32.const 601 @@ -9230,7 +9230,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 12492 + i32.const 12494 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -9292,7 +9292,7 @@ i32.const 3 i32.store local.get $2 - i32.const 11611 + i32.const 11613 i32.store offset=4 local.get $2 i32.const 607 @@ -9304,7 +9304,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 12526 + i32.const 12528 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -9347,7 +9347,7 @@ i32.const 3 i32.store local.get $3 - i32.const 11611 + i32.const 11613 i32.store offset=4 local.get $3 i32.const 612 @@ -9359,7 +9359,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 12570 + i32.const 12572 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -10440,7 +10440,7 @@ i32.const 0 i32.store offset=20 local.get $1 - i32.const 12606 + i32.const 12608 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $1 @@ -10797,7 +10797,7 @@ i32.const 3 i32.store local.get $2 - i32.const 11611 + i32.const 11613 i32.store offset=4 local.get $2 i32.const 765 @@ -10809,7 +10809,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 13076 + i32.const 13078 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -10998,7 +10998,7 @@ i32.const 3 i32.store local.get $4 - i32.const 11611 + i32.const 11613 i32.store offset=4 local.get $4 i32.const 672 @@ -11010,7 +11010,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 12650 + i32.const 12652 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -11036,7 +11036,7 @@ i32.const 3 i32.store local.get $4 - i32.const 11611 + i32.const 11613 i32.store offset=4 local.get $4 i32.const 678 @@ -11048,7 +11048,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 12751 + i32.const 12753 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -11130,7 +11130,7 @@ i32.const 3 i32.store local.get $6 - i32.const 11611 + i32.const 11613 i32.store offset=4 local.get $6 i32.const 878 @@ -11142,7 +11142,7 @@ i32.const 0 i32.store offset=20 local.get $6 - i32.const 12807 + i32.const 12809 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $6 @@ -11174,7 +11174,7 @@ i32.const 3 i32.store local.get $5 - i32.const 11611 + i32.const 11613 i32.store offset=4 local.get $5 i32.const 685 @@ -11186,7 +11186,7 @@ i32.const 0 i32.store offset=20 local.get $5 - i32.const 12847 + i32.const 12849 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $5 @@ -11303,7 +11303,7 @@ i32.const 3 i32.store local.get $2 - i32.const 11611 + i32.const 11613 i32.store offset=4 local.get $2 i32.const 837 @@ -11315,7 +11315,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 12969 + i32.const 12971 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -11587,7 +11587,7 @@ i32.const 3 i32.store local.get $2 - i32.const 11611 + i32.const 11613 i32.store offset=4 local.get $2 i32.const 848 @@ -11599,7 +11599,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 13034 + i32.const 13036 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -11661,7 +11661,7 @@ i32.const 3 i32.store local.get $4 - i32.const 11611 + i32.const 11613 i32.store offset=4 local.get $4 i32.const 713 @@ -11673,7 +11673,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 12922 + i32.const 12924 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -12958,7 +12958,7 @@ i32.const 3 i32.store local.get $2 - i32.const 11611 + i32.const 11613 i32.store offset=4 local.get $2 i32.const 926 @@ -12970,7 +12970,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 13129 + i32.const 13131 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -12986,7 +12986,7 @@ i32.const 3 i32.store local.get $3 - i32.const 11611 + i32.const 11613 i32.store offset=4 local.get $3 i32.const 927 @@ -12998,7 +12998,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 13164 + i32.const 13166 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -13579,7 +13579,7 @@ i32.const 3 i32.store local.get $5 - i32.const 11611 + i32.const 11613 i32.store offset=4 local.get $5 i32.const 527 @@ -13591,7 +13591,7 @@ i32.const 0 i32.store offset=20 local.get $5 - i32.const 13201 + i32.const 13203 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $5 @@ -13867,7 +13867,7 @@ i32.const 0 i32.store offset=20 local.get $1 - i32.const 12606 + i32.const 12608 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $1 @@ -13949,19 +13949,19 @@ i32.const 22 i32.store offset=4 local.get $1 - i32.const 13559 + i32.const 13561 i64.load align=1 i64.store align=1 local.get $1 - i32.const 13567 + i32.const 13569 i64.load align=1 i64.store offset=8 align=1 local.get $1 - i32.const 13575 + i32.const 13577 i32.load align=1 i32.store offset=16 align=1 local.get $1 - i32.const 13579 + i32.const 13581 i32.load16_s align=1 i32.store16 offset=20 align=1 local.get $1 @@ -14039,10 +14039,10 @@ local.get $1 call $__ZN6google8protobuf6Struct9MergeFromERKS1_ else - i32.const 13459 - i32.const 13500 + i32.const 13461 + i32.const 13502 i32.const 92 - i32.const 13549 + i32.const 13551 call $___assert_fail end ;; $if ) @@ -14221,7 +14221,7 @@ local.get $2 local.get $4 i32.const 1 - i32.const 11922 + i32.const 11924 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ drop local.get $5 @@ -14429,7 +14429,7 @@ local.get $2 local.get $4 i32.const 1 - i32.const 11922 + i32.const 11924 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ drop local.get $8 @@ -17642,7 +17642,7 @@ i32.const 3 i32.store local.get $1 - i32.const 11486 + i32.const 11488 i32.store offset=4 local.get $1 i32.const 1567 @@ -17654,7 +17654,7 @@ i32.const 0 i32.store offset=20 local.get $1 - i32.const 13866 + i32.const 13868 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $1 @@ -17858,19 +17858,19 @@ i32.const 21 i32.store offset=4 local.get $1 - i32.const 13948 + i32.const 13950 i64.load align=1 i64.store align=1 local.get $1 - i32.const 13956 + i32.const 13958 i64.load align=1 i64.store offset=8 align=1 local.get $1 - i32.const 13964 + i32.const 13966 i32.load align=1 i32.store offset=16 align=1 local.get $1 - i32.const 13968 + i32.const 13970 i32.load8_s i32.store8 offset=20 local.get $1 @@ -17946,10 +17946,10 @@ local.get $1 call $__ZN6google8protobuf5Value9MergeFromERKS1_ else - i32.const 13459 - i32.const 13500 + i32.const 13461 + i32.const 13502 i32.const 92 - i32.const 13549 + i32.const 13551 call $___assert_fail end ;; $if ) @@ -18012,7 +18012,7 @@ local.get $2 local.get $3 i32.const 1 - i32.const 11887 + i32.const 11889 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ drop local.get $0 @@ -29964,7 +29964,7 @@ i32.store local.get $2 i32.const 128 - i32.const 14883 + i32.const 14885 local.get $3 call $_snprintf drop @@ -30002,7 +30002,7 @@ i32.store local.get $2 i32.const 128 - i32.const 16832 + i32.const 16834 local.get $3 call $_snprintf drop @@ -30291,7 +30291,7 @@ i32.const 3 i32.store local.get $3 - i32.const 14886 + i32.const 14888 i32.store offset=4 local.get $3 i32.const 116 @@ -30303,7 +30303,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 14911 + i32.const 14913 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -41167,7 +41167,7 @@ i32.const 3 i32.store local.get $11 - i32.const 14998 + i32.const 15000 i32.store offset=4 local.get $11 i32.const 571 @@ -41179,7 +41179,7 @@ i32.const 0 i32.store offset=20 local.get $11 - i32.const 15040 + i32.const 15042 call $__ZN6google8protobuf8internal10LogMessagelsEPKc local.get $4 call $__ZN6google8protobuf8internal10LogMessagelsEi @@ -41216,7 +41216,7 @@ i32.const 3 i32.store local.get $1 - i32.const 14998 + i32.const 15000 i32.store offset=4 local.get $1 i32.const 534 @@ -41228,12 +41228,12 @@ i32.const 0 i32.store offset=20 local.get $1 - i32.const 15040 + i32.const 15042 call $__ZN6google8protobuf8internal10LogMessagelsEPKc local.get $0 i32.load offset=4 call $__ZN6google8protobuf8internal10LogMessagelsEj - i32.const 15070 + i32.const 15072 call $__ZN6google8protobuf8internal10LogMessagelsEPKc local.get $0 i32.load offset=12 @@ -41293,7 +41293,7 @@ i32.const 3 i32.store local.get $0 - i32.const 14998 + i32.const 15000 i32.store offset=4 local.get $0 i32.const 801 @@ -41305,7 +41305,7 @@ i32.const 0 i32.store offset=20 local.get $0 - i32.const 15082 + i32.const 15084 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $0 @@ -41442,31 +41442,31 @@ i32.const 50 i32.store offset=4 local.get $1 - i32.const 15247 + i32.const 15249 i64.load align=1 i64.store align=1 local.get $1 - i32.const 15255 + i32.const 15257 i64.load align=1 i64.store offset=8 align=1 local.get $1 - i32.const 15263 + i32.const 15265 i64.load align=1 i64.store offset=16 align=1 local.get $1 - i32.const 15271 + i32.const 15273 i64.load align=1 i64.store offset=24 align=1 local.get $1 - i32.const 15279 + i32.const 15281 i64.load align=1 i64.store offset=32 align=1 local.get $1 - i32.const 15287 + i32.const 15289 i64.load align=1 i64.store offset=40 align=1 local.get $1 - i32.const 15295 + i32.const 15297 i32.load16_s align=1 i32.store16 offset=48 align=1 local.get $1 @@ -41603,7 +41603,7 @@ i32.const 3 i32.store local.get $4 - i32.const 15177 + i32.const 15179 i32.store offset=4 local.get $4 i32.const 373 @@ -41615,7 +41615,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 15209 + i32.const 15211 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -41698,7 +41698,7 @@ i32.const 3 i32.store local.get $3 - i32.const 15330 + i32.const 15332 i32.store offset=4 local.get $3 i32.const 59 @@ -41710,9 +41710,9 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 15364 + i32.const 15366 call $__ZN6google8protobuf8internal10LogMessagelsEPKc - i32.const 15481 + i32.const 15483 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -43395,7 +43395,7 @@ i32.const 3 i32.store local.get $4 - i32.const 15529 + i32.const 15531 i32.store offset=4 local.get $4 i32.const 507 @@ -43407,7 +43407,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 15565 + i32.const 15567 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -43607,7 +43607,7 @@ i32.const 3 i32.store local.get $4 - i32.const 15529 + i32.const 15531 i32.store offset=4 local.get $4 i32.const 516 @@ -43619,7 +43619,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 15565 + i32.const 15567 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -44298,13 +44298,13 @@ i32.load offset=8 i32.store offset=8 end ;; $if_0 - i32.const 15611 + i32.const 15613 i32.const 0 local.get $2 i32.const 1 i32.eq select - i32.const 15623 + i32.const 15625 local.get $2 select local.set $3 @@ -44316,7 +44316,7 @@ i32.const 2 i32.store local.get $1 - i32.const 15529 + i32.const 15531 i32.store offset=4 local.get $1 i32.const 626 @@ -44328,21 +44328,21 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 15637 + i32.const 15639 call $__ZN6google8protobuf8internal10LogMessagelsEPKc local.get $0 call $__ZN6google8protobuf8internal10LogMessagelsERKNSt3__212basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEE - i32.const 15650 + i32.const 15652 call $__ZN6google8protobuf8internal10LogMessagelsEPKc - i32.const 15669 + i32.const 15671 call $__ZN6google8protobuf8internal10LogMessagelsEPKc local.get $3 call $__ZN6google8protobuf8internal10LogMessagelsEPKc - i32.const 15686 + i32.const 15688 call $__ZN6google8protobuf8internal10LogMessagelsEPKc - i32.const 15699 + i32.const 15701 call $__ZN6google8protobuf8internal10LogMessagelsEPKc - i32.const 15755 + i32.const 15757 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -45112,7 +45112,7 @@ i32.const 3 i32.store local.get $2 - i32.const 15763 + i32.const 15765 i32.store offset=4 local.get $2 i32.const 591 @@ -45124,7 +45124,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 15798 + i32.const 15800 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -45267,7 +45267,7 @@ i32.const 2 i32.store local.get $1 - i32.const 15763 + i32.const 15765 i32.store offset=4 local.get $1 i32.const 190 @@ -45279,12 +45279,12 @@ i32.const 0 i32.store offset=20 local.get $1 - i32.const 15835 + i32.const 15837 call $__ZN6google8protobuf8internal10LogMessagelsEPKc local.get $0 i32.load offset=36 call $__ZN6google8protobuf8internal10LogMessagelsEi - i32.const 15902 + i32.const 15904 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $1 @@ -47748,7 +47748,7 @@ i32.const 3 i32.store local.get $2 - i32.const 16047 + i32.const 16049 i32.store offset=4 local.get $2 i32.const 132 @@ -47760,9 +47760,9 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 16127 + i32.const 16129 call $__ZN6google8protobuf8internal10LogMessagelsEPKc - i32.const 16171 + i32.const 16173 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -47783,7 +47783,7 @@ i32.const 3 i32.store local.get $2 - i32.const 16047 + i32.const 16049 i32.store offset=4 local.get $2 i32.const 134 @@ -47795,7 +47795,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 16226 + i32.const 16228 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -47822,7 +47822,7 @@ i32.const 3 i32.store local.get $3 - i32.const 16047 + i32.const 16049 i32.store offset=4 local.get $3 i32.const 135 @@ -47834,7 +47834,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 16096 + i32.const 16098 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -47890,7 +47890,7 @@ i32.const 3 i32.store local.get $3 - i32.const 16047 + i32.const 16049 i32.store offset=4 local.get $3 i32.const 151 @@ -47902,7 +47902,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 16316 + i32.const 16318 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -47976,7 +47976,7 @@ i32.const 2 i32.store local.get $5 - i32.const 16047 + i32.const 16049 i32.store offset=4 local.get $5 i32.const 164 @@ -47988,9 +47988,9 @@ i32.const 0 i32.store offset=20 local.get $5 - i32.const 16393 + i32.const 16395 call $__ZN6google8protobuf8internal10LogMessagelsEPKc - i32.const 16443 + i32.const 16445 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $5 @@ -48065,7 +48065,7 @@ i32.const 3 i32.store local.get $2 - i32.const 16047 + i32.const 16049 i32.store offset=4 local.get $2 i32.const 182 @@ -48077,7 +48077,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 16096 + i32.const 16098 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -48098,7 +48098,7 @@ i32.const 3 i32.store local.get $2 - i32.const 16047 + i32.const 16049 i32.store offset=4 local.get $2 i32.const 183 @@ -48110,7 +48110,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 16316 + i32.const 16318 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -48140,7 +48140,7 @@ i32.const 3 i32.store local.get $3 - i32.const 16047 + i32.const 16049 i32.store offset=4 local.get $3 i32.const 184 @@ -48152,7 +48152,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 16348 + i32.const 16350 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -48213,7 +48213,7 @@ i32.const 3 i32.store local.get $1 - i32.const 16047 + i32.const 16049 i32.store offset=4 local.get $1 i32.const 189 @@ -48225,7 +48225,7 @@ i32.const 0 i32.store offset=20 local.get $1 - i32.const 16316 + i32.const 16318 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $1 @@ -48280,7 +48280,7 @@ i32.add local.tee $3 i32.const 1024 - i32.const 15631 + i32.const 15633 local.get $2 call $_vsnprintf local.tee $4 @@ -48313,7 +48313,7 @@ i32.store local.get $3 local.get $5 - i32.const 15631 + i32.const 15633 local.get $2 call $_vsnprintf local.tee $1 @@ -48860,7 +48860,7 @@ i32.const 3 i32.store local.get $0 - i32.const 16505 + i32.const 16507 i32.store offset=4 local.get $0 i32.const 47 @@ -48872,7 +48872,7 @@ i32.const 0 i32.store offset=20 local.get $0 - i32.const 16544 + i32.const 16546 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $0 @@ -49841,13 +49841,13 @@ local.tee $1 i64.reinterpret_f64 local.set $25 - i32.const 16728 + i32.const 16730 local.set $18 i32.const 1 else + i32.const 16733 + i32.const 16736 i32.const 16731 - i32.const 16734 - i32.const 16729 local.get $4 i32.const 1 i32.and @@ -49870,8 +49870,8 @@ i64.const 9218868437227405312 i64.eq if $if_0 (result i32) - i32.const 16755 - i32.const 16759 + i32.const 16757 + i32.const 16761 local.get $5 i32.const 32 i32.and @@ -49879,8 +49879,8 @@ i32.ne local.tee $3 select - i32.const 16747 - i32.const 16751 + i32.const 16749 + i32.const 16753 local.get $3 select local.get $1 @@ -51228,7 +51228,7 @@ i32.eqz if $if_54 local.get $0 - i32.const 19530 + i32.const 19532 i32.const 1 call $_out end ;; $if_54 @@ -51387,7 +51387,7 @@ br $block_4 end ;; $if_61 local.get $0 - i32.const 19530 + i32.const 19532 i32.const 1 call $_out local.get $6 @@ -52477,7 +52477,7 @@ local.set $1 i32.const 0 local.set $12 - i32.const 16711 + i32.const 16713 local.set $8 br $block_14 end ;; $block_25 @@ -52493,13 +52493,13 @@ i64.sub local.tee $25 i64.store - i32.const 16711 + i32.const 16713 local.set $8 i32.const 1 else - i32.const 16712 + i32.const 16714 + i32.const 16715 i32.const 16713 - i32.const 16711 local.get $7 i32.const 1 i32.and @@ -52523,7 +52523,7 @@ local.set $25 i32.const 0 local.set $12 - i32.const 16711 + i32.const 16713 local.set $8 br $block_16 end ;; $block_23 @@ -52539,7 +52539,7 @@ local.set $5 i32.const 0 local.set $12 - i32.const 16711 + i32.const 16713 local.set $8 local.get $18 local.set $1 @@ -52548,7 +52548,7 @@ local.get $10 i32.load local.tee $5 - i32.const 16721 + i32.const 16723 local.get $5 select local.tee $6 @@ -52568,7 +52568,7 @@ local.set $5 i32.const 0 local.set $12 - i32.const 16711 + i32.const 16713 local.set $8 local.get $1 local.get $6 @@ -52629,7 +52629,7 @@ local.set $5 i32.const 0 local.set $12 - i32.const 16711 + i32.const 16713 local.set $8 local.get $18 local.set $1 @@ -52657,11 +52657,11 @@ local.tee $8 select local.set $12 - i32.const 16711 + i32.const 16713 local.get $6 i32.const 4 i32.shr_u - i32.const 16711 + i32.const 16713 i32.add local.get $8 select @@ -53846,7 +53846,7 @@ local.get $1 i32.store local.get $0 - i32.const 14763 + i32.const 14765 local.get $2 call $_vfprintf drop @@ -61038,7 +61038,7 @@ (func $__ZNKSt3__217bad_function_call4whatEv (type $1) (param $0 i32) (result i32) - i32.const 16763 + i32.const 16765 ) (func $__ZNSt3__212__next_primeEm (type $1) @@ -62975,7 +62975,7 @@ (param $0 i32) (local $1 i32) (local $2 i32) - i32.const 14815 + i32.const 14817 call $_strlen local.tee $2 i32.const 13 @@ -62994,7 +62994,7 @@ i32.const 12 i32.add local.tee $1 - i32.const 14815 + i32.const 14817 local.get $2 i32.const 1 i32.add @@ -64130,7 +64130,7 @@ local.set $0 end ;; $if_0 local.get $0 - i32.const 13984 + i32.const 13986 local.get $1 call $__ZNSt3__211char_traitsIcE4copyEPcPKcm local.get $3 @@ -64177,7 +64177,7 @@ end ;; $if end ;; $loop local.get $0 - i32.const 13984 + i32.const 13986 call $_strlen local.tee $2 local.get $2 @@ -64338,7 +64338,7 @@ local.get $4 i32.const 1 i32.add - i32.const 16832 + i32.const 16834 local.get $5 call $_snprintf local.tee $3 @@ -64452,9 +64452,9 @@ i64.ne if $if_0 local.get $1 - i32.const 16971 + i32.const 16973 i32.store - i32.const 16921 + i32.const 16923 local.get $1 call $_abort_message end ;; $if_0 @@ -64519,7 +64519,7 @@ call_indirect $28 (type $1) local.set $0 local.get $4 - i32.const 16971 + i32.const 16973 i32.store local.get $4 local.get $1 @@ -64527,22 +64527,22 @@ local.get $4 local.get $0 i32.store offset=8 - i32.const 16835 + i32.const 16837 local.get $4 call $_abort_message else local.get $3 - i32.const 16971 + i32.const 16973 i32.store local.get $3 local.get $1 i32.store offset=4 - i32.const 16880 + i32.const 16882 local.get $3 call $_abort_message end ;; $if_3 end ;; $if - i32.const 16959 + i32.const 16961 local.get $2 i32.const 1056 i32.add @@ -65507,7 +65507,7 @@ local.get $3 i32.const 24 i32.add - i32.const 17150 + i32.const 17152 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $3 @@ -65581,7 +65581,7 @@ else block $block (result i32) local.get $2 - i32.const 17153 + i32.const 17155 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $2 @@ -65611,7 +65611,7 @@ local.get $2 if $if_4 (result i32) local.get $4 - i32.const 17158 + i32.const 17160 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $4 @@ -65672,7 +65672,7 @@ i32.const 0 else local.get $0 - i32.const 17172 + i32.const 17174 local.get $3 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_11SpecialNameEJRA34_KcRPNS0_4NodeEEEESC_DpOT0_ end ;; $if_9 @@ -65904,7 +65904,7 @@ i32.const 152 i32.add call_indirect $28 (type $8) - i32.const 17110 + i32.const 17112 local.get $1 call $_abort_message ) @@ -66141,7 +66141,7 @@ i32.const 0 i32.store local.get $5 - i32.const 22505 + i32.const 22507 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -66661,7 +66661,7 @@ i32.add i32.store local.get $0 - i32.const 17206 + i32.const 17208 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_35 @@ -66684,7 +66684,7 @@ i32.add i32.store local.get $0 - i32.const 17211 + i32.const 17213 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_33 @@ -66695,7 +66695,7 @@ i32.add i32.store local.get $0 - i32.const 17216 + i32.const 17218 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_32 @@ -66706,7 +66706,7 @@ i32.add i32.store local.get $0 - i32.const 17221 + i32.const 17223 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_31 @@ -66717,7 +66717,7 @@ i32.add i32.store local.get $0 - i32.const 17233 + i32.const 17235 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_30 @@ -66728,7 +66728,7 @@ i32.add i32.store local.get $0 - i32.const 17247 + i32.const 17249 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_29 @@ -66739,7 +66739,7 @@ i32.add i32.store local.get $0 - i32.const 17253 + i32.const 17255 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_28 @@ -66750,7 +66750,7 @@ i32.add i32.store local.get $0 - i32.const 17268 + i32.const 17270 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_27 @@ -66761,7 +66761,7 @@ i32.add i32.store local.get $0 - i32.const 17272 + i32.const 17274 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_26 @@ -66772,7 +66772,7 @@ i32.add i32.store local.get $0 - i32.const 17285 + i32.const 17287 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_25 @@ -66783,7 +66783,7 @@ i32.add i32.store local.get $0 - i32.const 17290 + i32.const 17292 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_24 @@ -66794,7 +66794,7 @@ i32.add i32.store local.get $0 - i32.const 17304 + i32.const 17306 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_23 @@ -66817,7 +66817,7 @@ i32.add i32.store local.get $0 - i32.const 17314 + i32.const 17316 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_21 @@ -66828,7 +66828,7 @@ i32.add i32.store local.get $0 - i32.const 17323 + i32.const 17325 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_20 @@ -66839,7 +66839,7 @@ i32.add i32.store local.get $0 - i32.const 17341 + i32.const 17343 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_19 @@ -66862,7 +66862,7 @@ i32.add i32.store local.get $0 - i32.const 17347 + i32.const 17349 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_17 @@ -66873,7 +66873,7 @@ i32.add i32.store local.get $0 - i32.const 17359 + i32.const 17361 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_16 @@ -66884,7 +66884,7 @@ i32.add i32.store local.get $0 - i32.const 17370 + i32.const 17372 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_15 @@ -66958,7 +66958,7 @@ i32.add i32.store local.get $0 - i32.const 17374 + i32.const 17376 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_53 @@ -66969,7 +66969,7 @@ i32.add i32.store local.get $0 - i32.const 17384 + i32.const 17386 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_52 @@ -66980,7 +66980,7 @@ i32.add i32.store local.get $0 - i32.const 17395 + i32.const 17397 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_51 @@ -66991,7 +66991,7 @@ i32.add i32.store local.get $0 - i32.const 17405 + i32.const 17407 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_50 @@ -67002,7 +67002,7 @@ i32.add i32.store local.get $0 - i32.const 17415 + i32.const 17417 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_49 @@ -67013,7 +67013,7 @@ i32.add i32.store local.get $0 - i32.const 17424 + i32.const 17426 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_48 @@ -67024,7 +67024,7 @@ i32.add i32.store local.get $0 - i32.const 17433 + i32.const 17435 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_47 @@ -67035,7 +67035,7 @@ i32.add i32.store local.get $0 - i32.const 17438 + i32.const 17440 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_46 @@ -67046,7 +67046,7 @@ i32.add i32.store local.get $0 - i32.const 17453 + i32.const 17455 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_45 @@ -67521,7 +67521,7 @@ i32.const 0 i32.store local.get $3 - i32.const 22206 + i32.const 22208 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $3 @@ -67535,14 +67535,14 @@ if $if (result i32) local.get $6 local.get $0 - i32.const 22209 + i32.const 22211 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ i32.store br $block_0 else block $block_1 (result i32) local.get $4 - i32.const 22218 + i32.const 22220 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $4 @@ -67579,7 +67579,7 @@ br $block_0 end ;; $if_0 local.get $5 - i32.const 22221 + i32.const 22223 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $5 @@ -67642,7 +67642,7 @@ br $block end ;; $block_0 local.get $8 - i32.const 22224 + i32.const 22226 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $8 @@ -67698,7 +67698,7 @@ i32.eqz if $if_4 local.get $9 - i32.const 22227 + i32.const 22229 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $9 @@ -67709,7 +67709,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE br_if $block_7 local.get $10 - i32.const 22230 + i32.const 22232 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $10 @@ -67821,7 +67821,7 @@ else block $block (result i32) local.get $5 - i32.const 22021 + i32.const 22023 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -68116,7 +68116,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfEc if $if_2 (result i32) local.get $0 - i32.const 21985 + i32.const 21987 local.get $1 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_13EnclosingExprEJRA10_KcRPNS0_4NodeERA2_S8_EEESC_DpOT0_ else @@ -68154,7 +68154,7 @@ local.get $1 i32.const 8 i32.add - i32.const 21860 + i32.const 21862 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -68543,7 +68543,7 @@ i32.const 24 i32.add local.tee $5 - i32.const 20916 + i32.const 20918 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -68554,12 +68554,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if local.get $1 - i32.const 20919 + i32.const 20921 call $__ZN12_GLOBAL__N_110StringViewC2EPKc else block $block local.get $3 - i32.const 20926 + i32.const 20928 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -68570,12 +68570,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_0 local.get $1 - i32.const 20929 + i32.const 20931 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $if_0 local.get $4 - i32.const 20935 + i32.const 20937 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -68586,7 +68586,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_1 local.get $1 - i32.const 20938 + i32.const 20940 call $__ZN12_GLOBAL__N_110StringViewC2EPKc end ;; $if_1 end ;; $block @@ -68679,7 +68679,7 @@ i32.load8_s offset=362 if $if_2 local.get $0 - i32.const 17433 + i32.const 17435 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $if_2 @@ -69702,7 +69702,7 @@ i32.add call_indirect $28 (type $4) local.get $4 - i32.const 17468 + i32.const 17470 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -69723,7 +69723,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $5 - i32.const 17474 + i32.const 17476 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -69935,7 +69935,7 @@ $block ;; default end ;; $block_5 local.get $4 - i32.const 17618 + i32.const 17620 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -69947,7 +69947,7 @@ br $block end ;; $block_4 local.get $5 - i32.const 17633 + i32.const 17635 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -69959,7 +69959,7 @@ br $block end ;; $block_3 local.get $6 - i32.const 17651 + i32.const 17653 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -69971,7 +69971,7 @@ br $block end ;; $block_2 local.get $7 - i32.const 17663 + i32.const 17665 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -69983,7 +69983,7 @@ br $block end ;; $block_1 local.get $8 - i32.const 17676 + i32.const 17678 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $8 @@ -69995,7 +69995,7 @@ br $block end ;; $block_0 local.get $3 - i32.const 17689 + i32.const 17691 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -70026,32 +70026,32 @@ $block ;; default end ;; $block_5 local.get $0 - i32.const 17563 + i32.const 17565 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_4 local.get $0 - i32.const 17573 + i32.const 17575 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_3 local.get $0 - i32.const 17586 + i32.const 17588 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_2 local.get $0 - i32.const 17593 + i32.const 17595 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_1 local.get $0 - i32.const 17601 + i32.const 17603 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_0 local.get $0 - i32.const 17609 + i32.const 17611 call $__ZN12_GLOBAL__N_110StringViewC2EPKc end ;; $block ) @@ -70080,7 +70080,7 @@ i32.load local.set $1 local.get $2 - i32.const 17759 + i32.const 17761 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -70196,7 +70196,7 @@ i32.load local.set $1 local.get $2 - i32.const 17827 + i32.const 17829 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -70337,7 +70337,7 @@ call $__ZNK12_GLOBAL__N_116itanium_demangle4Node8hasArrayERNS_12OutputStreamE if $if_0 local.get $7 - i32.const 17838 + i32.const 17840 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $7 @@ -70360,7 +70360,7 @@ br $block end ;; $block_0 local.get $8 - i32.const 17840 + i32.const 17842 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $8 @@ -70371,8 +70371,8 @@ call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE end ;; $block local.get $2 + i32.const 17846 i32.const 17844 - i32.const 17842 local.get $6 i32.load select @@ -70463,7 +70463,7 @@ br $block end ;; $block_0 local.get $2 - i32.const 17836 + i32.const 17838 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $5 local.get $2 @@ -70736,7 +70736,7 @@ i32.load offset=8 local.set $0 local.get $8 - i32.const 17911 + i32.const 17913 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $8 @@ -70757,7 +70757,7 @@ local.get $2 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $9 - i32.const 17915 + i32.const 17917 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $9 @@ -70790,7 +70790,7 @@ call $__ZNK12_GLOBAL__N_116itanium_demangle4Node8hasArrayERNS_12OutputStreamE if $if_0 local.get $5 - i32.const 17838 + i32.const 17840 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -70815,7 +70815,7 @@ br $block_1 end ;; $block_2 local.get $6 - i32.const 17840 + i32.const 17842 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -70826,7 +70826,7 @@ call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE end ;; $block_1 local.get $7 - i32.const 17909 + i32.const 17911 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -70890,7 +70890,7 @@ br $block_1 end ;; $block_2 local.get $3 - i32.const 17836 + i32.const 17838 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $4 local.get $3 @@ -70946,7 +70946,7 @@ i64.load offset=8 align=4 i64.store align=4 local.get $1 - i32.const 17897 + i32.const 17899 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -71588,7 +71588,7 @@ local.get $2 i32.const 16 i32.add - i32.const 18022 + i32.const 18024 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -71622,7 +71622,7 @@ i32.eq if $if_0 local.get $4 - i32.const 17838 + i32.const 17840 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -71633,7 +71633,7 @@ call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE end ;; $if_0 local.get $2 - i32.const 17915 + i32.const 17917 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -71680,7 +71680,7 @@ i32.eqz if $if_0 local.get $2 - i32.const 18024 + i32.const 18026 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $4 local.get $2 @@ -72432,7 +72432,7 @@ local.get $3 i32.const 328 i32.add - i32.const 18553 + i32.const 18555 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -72584,7 +72584,7 @@ i32.add i32.store local.get $6 - i32.const 17844 + i32.const 17846 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -72601,7 +72601,7 @@ i32.add i32.store local.get $7 - i32.const 17842 + i32.const 17844 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -72618,7 +72618,7 @@ i32.add i32.store local.get $8 - i32.const 17842 + i32.const 17844 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $8 @@ -72635,7 +72635,7 @@ i32.add i32.store local.get $9 - i32.const 18556 + i32.const 18558 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $9 @@ -72652,7 +72652,7 @@ i32.add i32.store local.get $10 - i32.const 18559 + i32.const 18561 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $10 @@ -72676,7 +72676,7 @@ local.get $1 if $if_2 (result i32) local.get $0 - i32.const 18561 + i32.const 18563 local.get $2 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_13EnclosingExprEJRA10_KcRPNS0_4NodeERA2_S8_EEESC_DpOT0_ else @@ -72697,7 +72697,7 @@ local.get $1 if $if_3 (result i32) local.get $0 - i32.const 18561 + i32.const 18563 local.get $2 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_13EnclosingExprEJRA10_KcRPNS0_4NodeERA2_S8_EEESC_DpOT0_ else @@ -72827,7 +72827,7 @@ i32.add i32.store local.get $11 - i32.const 18571 + i32.const 18573 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $11 @@ -72844,7 +72844,7 @@ i32.add i32.store local.get $12 - i32.const 18573 + i32.const 18575 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $12 @@ -72946,7 +72946,7 @@ i32.add i32.store local.get $13 - i32.const 17909 + i32.const 17911 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $13 @@ -73007,7 +73007,7 @@ if $if_12 (result i32) local.get $0 local.get $2 - i32.const 18575 + i32.const 18577 local.get $4 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_10MemberExprEJRPNS0_4NodeERA3_KcSA_EEES9_DpOT0_ else @@ -73057,7 +73057,7 @@ i32.add i32.store local.get $14 - i32.const 18578 + i32.const 18580 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $14 @@ -73074,7 +73074,7 @@ i32.add i32.store local.get $15 - i32.const 18580 + i32.const 18582 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $15 @@ -73108,7 +73108,7 @@ i32.add i32.store local.get $16 - i32.const 18583 + i32.const 18585 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $16 @@ -73125,7 +73125,7 @@ i32.add i32.store local.get $17 - i32.const 18585 + i32.const 18587 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $17 @@ -73142,7 +73142,7 @@ i32.add i32.store local.get $18 - i32.const 18588 + i32.const 18590 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $18 @@ -73173,7 +73173,7 @@ i32.add i32.store local.get $19 - i32.const 18591 + i32.const 18593 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $19 @@ -73190,7 +73190,7 @@ i32.add i32.store local.get $20 - i32.const 17915 + i32.const 17917 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $20 @@ -73330,7 +73330,7 @@ i32.add i32.store local.get $21 - i32.const 18594 + i32.const 18596 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $21 @@ -73347,7 +73347,7 @@ i32.add i32.store local.get $22 - i32.const 18597 + i32.const 18599 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $22 @@ -73364,7 +73364,7 @@ i32.add i32.store local.get $23 - i32.const 18600 + i32.const 18602 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $23 @@ -73381,7 +73381,7 @@ i32.add i32.store local.get $24 - i32.const 18022 + i32.const 18024 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $24 @@ -73417,7 +73417,7 @@ i32.add i32.store local.get $25 - i32.const 18443 + i32.const 18445 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $25 @@ -73434,7 +73434,7 @@ i32.add i32.store local.get $26 - i32.const 18604 + i32.const 18606 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $26 @@ -73451,7 +73451,7 @@ i32.add i32.store local.get $27 - i32.const 17909 + i32.const 17911 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $27 @@ -73468,7 +73468,7 @@ i32.add i32.store local.get $28 - i32.const 18607 + i32.const 18609 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $28 @@ -73489,7 +73489,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfEc if $if_17 local.get $29 - i32.const 18610 + i32.const 18612 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $29 @@ -73509,7 +73509,7 @@ if $if_18 (result i32) local.get $0 local.get $2 - i32.const 18610 + i32.const 18612 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_11PostfixExprEJRPNS0_4NodeERA3_KcEEES9_DpOT0_ else i32.const 0 @@ -73544,7 +73544,7 @@ i32.add i32.store local.get $30 - i32.const 18613 + i32.const 18615 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $30 @@ -73561,7 +73561,7 @@ i32.add i32.store local.get $31 - i32.const 18443 + i32.const 18445 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $31 @@ -73578,7 +73578,7 @@ i32.add i32.store local.get $32 - i32.const 18616 + i32.const 18618 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $32 @@ -73639,7 +73639,7 @@ i32.add i32.store local.get $33 - i32.const 18618 + i32.const 18620 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $33 @@ -73656,7 +73656,7 @@ i32.add i32.store local.get $34 - i32.const 18621 + i32.const 18623 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $34 @@ -73673,7 +73673,7 @@ i32.add i32.store local.get $35 - i32.const 18623 + i32.const 18625 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $35 @@ -73710,7 +73710,7 @@ i32.add i32.store local.get $36 - i32.const 18626 + i32.const 18628 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $36 @@ -73727,7 +73727,7 @@ i32.add i32.store local.get $37 - i32.const 18630 + i32.const 18632 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $37 @@ -73744,7 +73744,7 @@ i32.add i32.store local.get $38 - i32.const 18632 + i32.const 18634 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $38 @@ -73765,7 +73765,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfEc if $if_20 local.get $39 - i32.const 18635 + i32.const 18637 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $39 @@ -73785,7 +73785,7 @@ if $if_21 (result i32) local.get $0 local.get $2 - i32.const 18635 + i32.const 18637 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_11PostfixExprEJRPNS0_4NodeERA3_KcEEES9_DpOT0_ else i32.const 0 @@ -73798,7 +73798,7 @@ i32.add i32.store local.get $40 - i32.const 18630 + i32.const 18632 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $40 @@ -73830,7 +73830,7 @@ if $if_23 (result i32) local.get $0 local.get $2 - i32.const 18638 + i32.const 18640 local.get $4 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_10MemberExprEJRPNS0_4NodeERA3_KcSA_EEES9_DpOT0_ else @@ -73957,7 +73957,7 @@ i32.add i32.store local.get $41 - i32.const 18641 + i32.const 18643 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $41 @@ -73974,7 +73974,7 @@ i32.add i32.store local.get $42 - i32.const 18643 + i32.const 18645 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $42 @@ -73991,7 +73991,7 @@ i32.add i32.store local.get $43 - i32.const 18646 + i32.const 18648 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $43 @@ -74008,7 +74008,7 @@ i32.add i32.store local.get $44 - i32.const 18649 + i32.const 18651 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $44 @@ -74110,7 +74110,7 @@ local.get $1 if $if_32 (result i32) local.get $0 - i32.const 18653 + i32.const 18655 local.get $2 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_13EnclosingExprEJRA10_KcRPNS0_4NodeERA2_S8_EEESC_DpOT0_ else @@ -74131,7 +74131,7 @@ local.get $1 if $if_33 (result i32) local.get $0 - i32.const 18653 + i32.const 18655 local.get $2 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_13EnclosingExprEJRA10_KcRPNS0_4NodeERA2_S8_EEESC_DpOT0_ else @@ -74295,7 +74295,7 @@ local.get $1 if $if_37 (result i32) local.get $0 - i32.const 18662 + i32.const 18664 local.get $2 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_13EnclosingExprEJRA10_KcRPNS0_4NodeERA2_S8_EEESC_DpOT0_ else @@ -74316,7 +74316,7 @@ local.get $1 if $if_38 (result i32) local.get $0 - i32.const 18662 + i32.const 18664 local.get $2 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_13EnclosingExprEJRA10_KcRPNS0_4NodeERA2_S8_EEESC_DpOT0_ else @@ -74395,7 +74395,7 @@ i32.add i32.store local.get $0 - i32.const 18671 + i32.const 18673 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_111 @@ -74600,7 +74600,7 @@ i32.add i32.store local.get $3 - i32.const 18126 + i32.const 18128 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $3 @@ -74612,7 +74612,7 @@ br $block end ;; $block_18 local.get $4 - i32.const 18134 + i32.const 18136 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $4 @@ -74631,7 +74631,7 @@ br $block end ;; $if_1 local.get $5 - i32.const 18138 + i32.const 18140 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $5 @@ -74659,7 +74659,7 @@ i32.add i32.store local.get $6 - i32.const 17216 + i32.const 17218 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $6 @@ -74677,7 +74677,7 @@ i32.add i32.store local.get $7 - i32.const 17221 + i32.const 17223 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $7 @@ -74695,7 +74695,7 @@ i32.add i32.store local.get $8 - i32.const 17233 + i32.const 17235 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $8 @@ -74713,7 +74713,7 @@ i32.add i32.store local.get $9 - i32.const 17247 + i32.const 17249 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $9 @@ -74731,7 +74731,7 @@ i32.add i32.store local.get $10 - i32.const 17253 + i32.const 17255 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $10 @@ -74767,7 +74767,7 @@ i32.add i32.store local.get $12 - i32.const 18142 + i32.const 18144 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $12 @@ -74785,7 +74785,7 @@ i32.add i32.store local.get $13 - i32.const 18144 + i32.const 18146 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $13 @@ -74803,7 +74803,7 @@ i32.add i32.store local.get $14 - i32.const 18146 + i32.const 18148 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $14 @@ -74821,7 +74821,7 @@ i32.add i32.store local.get $15 - i32.const 18149 + i32.const 18151 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $15 @@ -74839,7 +74839,7 @@ i32.add i32.store local.get $16 - i32.const 18152 + i32.const 18154 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $16 @@ -74857,7 +74857,7 @@ i32.add i32.store local.get $17 - i32.const 17314 + i32.const 17316 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $17 @@ -74875,7 +74875,7 @@ i32.add i32.store local.get $18 - i32.const 17323 + i32.const 17325 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $18 @@ -74917,7 +74917,7 @@ br $block end ;; $block_1 local.get $19 - i32.const 17150 + i32.const 17152 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $19 @@ -75461,7 +75461,7 @@ i32.const 16 i32.add local.tee $5 - i32.const 17840 + i32.const 17842 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -75475,7 +75475,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 17836 + i32.const 17838 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -75702,7 +75702,7 @@ f64.store local.get $2 i32.const 40 - i32.const 18208 + i32.const 18210 local.get $5 call $_snprintf local.get $2 @@ -75924,7 +75924,7 @@ f64.store local.get $2 i32.const 32 - i32.const 18269 + i32.const 18271 local.get $4 call $_snprintf local.get $2 @@ -76144,7 +76144,7 @@ f64.store local.get $2 i32.const 24 - i32.const 18328 + i32.const 18330 local.get $4 call $_snprintf local.get $2 @@ -76210,11 +76210,11 @@ i32.load8_s offset=8 if $if local.get $2 - i32.const 18388 + i32.const 18390 call $__ZN12_GLOBAL__N_110StringViewC2EPKc else local.get $2 - i32.const 18393 + i32.const 18395 call $__ZN12_GLOBAL__N_110StringViewC2EPKc end ;; $if local.get $2 @@ -76349,7 +76349,7 @@ i32.gt_u if $if local.get $4 - i32.const 17840 + i32.const 17842 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -76370,7 +76370,7 @@ local.get $2 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $5 - i32.const 17836 + i32.const 17838 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -76398,7 +76398,7 @@ i32.eq if $if_0 local.get $4 - i32.const 18443 + i32.const 18445 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -76561,7 +76561,7 @@ local.get $2 i32.const 8 i32.add - i32.const 20799 + i32.const 20801 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $2 @@ -76590,7 +76590,7 @@ end ;; $if_0 else local.get $2 - i32.const 20802 + i32.const 20804 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $2 @@ -76888,7 +76888,7 @@ i32.const 0 i32.store offset=4 local.get $3 - i32.const 20652 + i32.const 20654 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $3 @@ -76901,13 +76901,13 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_1 local.get $1 - i32.const 17844 + i32.const 17846 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 else block $block_5 local.get $4 - i32.const 20655 + i32.const 20657 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $4 @@ -76918,12 +76918,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_2 local.get $1 - i32.const 17842 + i32.const 17844 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_2 local.get $8 - i32.const 20658 + i32.const 20660 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $8 @@ -76934,12 +76934,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_3 local.get $1 - i32.const 18556 + i32.const 18558 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_3 local.get $9 - i32.const 20661 + i32.const 20663 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $9 @@ -76950,12 +76950,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_4 local.get $1 - i32.const 18559 + i32.const 18561 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_4 local.get $10 - i32.const 20664 + i32.const 20666 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $10 @@ -76966,12 +76966,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_5 local.get $1 - i32.const 18571 + i32.const 18573 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_5 local.get $11 - i32.const 20667 + i32.const 20669 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $11 @@ -76982,12 +76982,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_6 local.get $1 - i32.const 18575 + i32.const 18577 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_6 local.get $12 - i32.const 20670 + i32.const 20672 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $12 @@ -76998,12 +76998,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_7 local.get $1 - i32.const 18578 + i32.const 18580 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_7 local.get $13 - i32.const 20673 + i32.const 20675 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $13 @@ -77014,12 +77014,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_8 local.get $1 - i32.const 18580 + i32.const 18582 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_8 local.get $14 - i32.const 20676 + i32.const 20678 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $14 @@ -77030,12 +77030,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_9 local.get $1 - i32.const 18583 + i32.const 18585 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_9 local.get $15 - i32.const 20679 + i32.const 20681 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $15 @@ -77046,12 +77046,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_10 local.get $1 - i32.const 18585 + i32.const 18587 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_10 local.get $16 - i32.const 20682 + i32.const 20684 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $16 @@ -77062,12 +77062,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_11 local.get $1 - i32.const 18588 + i32.const 18590 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_11 local.get $17 - i32.const 20685 + i32.const 20687 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $17 @@ -77078,12 +77078,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_12 local.get $1 - i32.const 18591 + i32.const 18593 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_12 local.get $18 - i32.const 20688 + i32.const 20690 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $18 @@ -77094,12 +77094,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_13 local.get $1 - i32.const 17915 + i32.const 17917 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_13 local.get $19 - i32.const 20691 + i32.const 20693 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $19 @@ -77110,12 +77110,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_14 local.get $1 - i32.const 18594 + i32.const 18596 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_14 local.get $20 - i32.const 20694 + i32.const 20696 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $20 @@ -77126,12 +77126,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_15 local.get $1 - i32.const 18597 + i32.const 18599 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_15 local.get $21 - i32.const 20697 + i32.const 20699 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $21 @@ -77142,12 +77142,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_16 local.get $1 - i32.const 18600 + i32.const 18602 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_16 local.get $22 - i32.const 20700 + i32.const 20702 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $22 @@ -77158,12 +77158,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_17 local.get $1 - i32.const 18022 + i32.const 18024 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_17 local.get $23 - i32.const 20703 + i32.const 20705 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $23 @@ -77174,12 +77174,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_18 local.get $1 - i32.const 18443 + i32.const 18445 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_18 local.get $24 - i32.const 20706 + i32.const 20708 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $24 @@ -77190,12 +77190,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_19 local.get $1 - i32.const 18604 + i32.const 18606 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_19 local.get $25 - i32.const 20709 + i32.const 20711 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $25 @@ -77206,12 +77206,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_20 local.get $1 - i32.const 17909 + i32.const 17911 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_20 local.get $26 - i32.const 20712 + i32.const 20714 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $26 @@ -77222,12 +77222,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_21 local.get $1 - i32.const 18607 + i32.const 18609 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_21 local.get $27 - i32.const 20715 + i32.const 20717 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $27 @@ -77238,12 +77238,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_22 local.get $1 - i32.const 18613 + i32.const 18615 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_22 local.get $28 - i32.const 20718 + i32.const 20720 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $28 @@ -77254,12 +77254,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_23 local.get $1 - i32.const 18618 + i32.const 18620 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_23 local.get $29 - i32.const 20721 + i32.const 20723 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $29 @@ -77270,12 +77270,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_24 local.get $1 - i32.const 18621 + i32.const 18623 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_24 local.get $30 - i32.const 20724 + i32.const 20726 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $30 @@ -77286,12 +77286,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_25 local.get $1 - i32.const 18623 + i32.const 18625 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_25 local.get $31 - i32.const 20727 + i32.const 20729 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $31 @@ -77302,12 +77302,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_26 local.get $1 - i32.const 18630 + i32.const 18632 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_26 local.get $32 - i32.const 20730 + i32.const 20732 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $32 @@ -77318,12 +77318,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_27 local.get $1 - i32.const 18632 + i32.const 18634 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_27 local.get $33 - i32.const 20733 + i32.const 20735 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $33 @@ -77334,12 +77334,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_28 local.get $1 - i32.const 18641 + i32.const 18643 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_28 local.get $34 - i32.const 20736 + i32.const 20738 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $34 @@ -77350,12 +77350,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_29 local.get $1 - i32.const 18643 + i32.const 18645 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_29 local.get $35 - i32.const 20739 + i32.const 20741 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $35 @@ -77366,12 +77366,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_30 local.get $1 - i32.const 18646 + i32.const 18648 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_30 local.get $36 - i32.const 20742 + i32.const 20744 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $36 @@ -77387,7 +77387,7 @@ br $block_5 end ;; $if_31 local.get $1 - i32.const 18649 + i32.const 18651 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $block_5 @@ -77588,7 +77588,7 @@ local.get $2 i32.const 16 i32.add - i32.const 20440 + i32.const 20442 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -77766,7 +77766,7 @@ local.get $4 i32.const 24 i32.add - i32.const 19579 + i32.const 19581 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -77873,7 +77873,7 @@ end ;; $if_0 else local.get $1 - i32.const 18553 + i32.const 18555 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -77884,7 +77884,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE local.set $5 local.get $4 - i32.const 19583 + i32.const 19585 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -78348,7 +78348,7 @@ local.get $2 i32.const 40 i32.add - i32.const 18553 + i32.const 18555 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $2 @@ -78382,7 +78382,7 @@ i32.eq i32.store8 local.get $4 - i32.const 19167 + i32.const 19169 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $4 @@ -78395,7 +78395,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE br_if $block_0 local.get $3 - i32.const 19170 + i32.const 19172 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $3 @@ -78460,7 +78460,7 @@ if $if_1 (result i32) block $block_3 (result i32) local.get $5 - i32.const 19173 + i32.const 19175 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $5 @@ -78615,7 +78615,7 @@ i32.add local.set $3 local.get $2 - i32.const 18677 + i32.const 18679 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -78810,13 +78810,13 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $5 - i32.const 18828 + i32.const 18830 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load local.set $1 local.get $2 - i32.const 17836 + i32.const 17838 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $4 local.get $5 @@ -78978,7 +78978,7 @@ i32.const 24 i32.add local.tee $5 - i32.const 18890 + i32.const 18892 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -78995,7 +78995,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle22ParameterPackExpansion9printLeftERNS_12OutputStreamE local.get $2 - i32.const 17836 + i32.const 17838 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -79117,7 +79117,7 @@ $block_0 ;; default end ;; $block_2 local.get $8 - i32.const 17370 + i32.const 17372 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $5 local.get $8 @@ -79141,7 +79141,7 @@ i32.ge_u br_if $block local.get $2 - i32.const 18024 + i32.const 18026 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $5 local.get $2 @@ -79226,7 +79226,7 @@ i32.load local.set $1 local.get $3 - i32.const 17836 + i32.const 17838 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $5 local.get $6 @@ -79268,7 +79268,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $3 - i32.const 19016 + i32.const 19018 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -79367,7 +79367,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $4 - i32.const 18022 + i32.const 18024 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -79391,7 +79391,7 @@ i32.add call_indirect $28 (type $4) local.get $5 - i32.const 19028 + i32.const 19030 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -79415,7 +79415,7 @@ i32.add call_indirect $28 (type $4) local.get $6 - i32.const 17836 + i32.const 17838 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $6 @@ -79450,7 +79450,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $3 - i32.const 19075 + i32.const 19077 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -79536,7 +79536,7 @@ i32.const 24 i32.add local.tee $6 - i32.const 17840 + i32.const 17842 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -79550,7 +79550,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 19092 + i32.const 19094 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -79564,7 +79564,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $5 - i32.const 19098 + i32.const 19100 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -79578,7 +79578,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $3 - i32.const 17836 + i32.const 17838 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -79622,13 +79622,13 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $5 - i32.const 19156 + i32.const 19158 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load local.set $1 local.get $2 - i32.const 17836 + i32.const 17838 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $4 local.get $5 @@ -79793,7 +79793,7 @@ i32.load8_s offset=28 if $if local.get $4 - i32.const 19176 + i32.const 19178 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -79822,7 +79822,7 @@ local.get $3 i32.const 40 i32.add - i32.const 19188 + i32.const 19190 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -79835,7 +79835,7 @@ i32.load8_s offset=29 if $if_0 local.get $4 - i32.const 19192 + i32.const 19194 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -79855,7 +79855,7 @@ i32.load offset=4 if $if_1 local.get $5 - i32.const 17840 + i32.const 17842 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -79868,7 +79868,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle9NodeArray14printWithCommaERNS_12OutputStreamE local.get $6 - i32.const 17836 + i32.const 17838 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -79889,7 +79889,7 @@ i32.load offset=4 if $if_2 local.get $7 - i32.const 17840 + i32.const 17842 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -79902,7 +79902,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle9NodeArray14printWithCommaERNS_12OutputStreamE local.get $3 - i32.const 17836 + i32.const 17838 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -80087,7 +80087,7 @@ i32.add i32.store local.get $1 - i32.const 19395 + i32.const 19397 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $4 local.get $1 @@ -80202,7 +80202,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 19286 + i32.const 19288 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -80234,7 +80234,7 @@ i32.ge_s if $if (result i32) local.get $2 - i32.const 19292 + i32.const 19294 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -80344,7 +80344,7 @@ i32.ge_s if $if_0 (result i32) local.get $2 - i32.const 19292 + i32.const 19294 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -80547,7 +80547,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $1 - i32.const 19406 + i32.const 19408 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -80680,7 +80680,7 @@ i32.const 16 i32.add local.tee $5 - i32.const 17840 + i32.const 17842 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -80694,7 +80694,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 19472 + i32.const 19474 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -80708,7 +80708,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $2 - i32.const 17474 + i32.const 17476 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -80746,7 +80746,7 @@ i32.load local.set $1 local.get $3 - i32.const 19530 + i32.const 19532 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 i32.load @@ -81110,7 +81110,7 @@ else block $block (result i32) local.get $1 - i32.const 19645 + i32.const 19647 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $1 @@ -81125,7 +81125,7 @@ br $block end ;; $if_1 local.get $4 - i32.const 19648 + i32.const 19650 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -81249,7 +81249,7 @@ i32.add local.set $3 local.get $2 - i32.const 19586 + i32.const 19588 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -81429,7 +81429,7 @@ i32.add i32.store local.get $0 - i32.const 19651 + i32.const 19653 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81441,7 +81441,7 @@ i32.add i32.store local.get $0 - i32.const 19662 + i32.const 19664 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81453,7 +81453,7 @@ i32.add i32.store local.get $0 - i32.const 19672 + i32.const 19674 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81465,7 +81465,7 @@ i32.add i32.store local.get $0 - i32.const 19683 + i32.const 19685 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81510,7 +81510,7 @@ i32.add i32.store local.get $0 - i32.const 19693 + i32.const 19695 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81522,7 +81522,7 @@ i32.add i32.store local.get $0 - i32.const 19704 + i32.const 19706 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81534,7 +81534,7 @@ i32.add i32.store local.get $0 - i32.const 19714 + i32.const 19716 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81669,7 +81669,7 @@ i32.add i32.store local.get $0 - i32.const 19724 + i32.const 19726 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81681,7 +81681,7 @@ i32.add i32.store local.get $0 - i32.const 19742 + i32.const 19744 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81706,7 +81706,7 @@ i32.add i32.store local.get $0 - i32.const 19752 + i32.const 19754 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81718,7 +81718,7 @@ i32.add i32.store local.get $0 - i32.const 19762 + i32.const 19764 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81764,7 +81764,7 @@ i32.add i32.store local.get $0 - i32.const 19773 + i32.const 19775 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81776,7 +81776,7 @@ i32.add i32.store local.get $0 - i32.const 19783 + i32.const 19785 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81788,7 +81788,7 @@ i32.add i32.store local.get $0 - i32.const 19794 + i32.const 19796 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81831,7 +81831,7 @@ i32.add i32.store local.get $0 - i32.const 19805 + i32.const 19807 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81843,7 +81843,7 @@ i32.add i32.store local.get $0 - i32.const 19816 + i32.const 19818 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81878,7 +81878,7 @@ i32.add i32.store local.get $0 - i32.const 19826 + i32.const 19828 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ else i32.const 0 @@ -81925,7 +81925,7 @@ i32.add i32.store local.get $0 - i32.const 19837 + i32.const 19839 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81961,7 +81961,7 @@ i32.add i32.store local.get $0 - i32.const 19848 + i32.const 19850 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81973,7 +81973,7 @@ i32.add i32.store local.get $0 - i32.const 19859 + i32.const 19861 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81985,7 +81985,7 @@ i32.add i32.store local.get $0 - i32.const 19871 + i32.const 19873 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82033,7 +82033,7 @@ i32.add i32.store local.get $0 - i32.const 19881 + i32.const 19883 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82045,7 +82045,7 @@ i32.add i32.store local.get $0 - i32.const 19891 + i32.const 19893 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82057,7 +82057,7 @@ i32.add i32.store local.get $0 - i32.const 19742 + i32.const 19744 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82069,7 +82069,7 @@ i32.add i32.store local.get $0 - i32.const 19902 + i32.const 19904 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82081,7 +82081,7 @@ i32.add i32.store local.get $0 - i32.const 19913 + i32.const 19915 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82128,7 +82128,7 @@ i32.add i32.store local.get $0 - i32.const 19924 + i32.const 19926 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82140,7 +82140,7 @@ i32.add i32.store local.get $0 - i32.const 19939 + i32.const 19941 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82152,7 +82152,7 @@ i32.add i32.store local.get $0 - i32.const 19881 + i32.const 19883 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82164,7 +82164,7 @@ i32.add i32.store local.get $0 - i32.const 19950 + i32.const 19952 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82176,7 +82176,7 @@ i32.add i32.store local.get $0 - i32.const 19960 + i32.const 19962 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82222,7 +82222,7 @@ i32.add i32.store local.get $0 - i32.const 19973 + i32.const 19975 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82234,7 +82234,7 @@ i32.add i32.store local.get $0 - i32.const 19984 + i32.const 19986 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82246,7 +82246,7 @@ i32.add i32.store local.get $0 - i32.const 19994 + i32.const 19996 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82295,7 +82295,7 @@ i32.add i32.store local.get $0 - i32.const 20005 + i32.const 20007 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82307,7 +82307,7 @@ i32.add i32.store local.get $0 - i32.const 20017 + i32.const 20019 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82319,7 +82319,7 @@ i32.add i32.store local.get $0 - i32.const 20027 + i32.const 20029 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82331,7 +82331,7 @@ i32.add i32.store local.get $0 - i32.const 20038 + i32.const 20040 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82343,7 +82343,7 @@ i32.add i32.store local.get $0 - i32.const 20017 + i32.const 20019 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82355,7 +82355,7 @@ i32.add i32.store local.get $0 - i32.const 20049 + i32.const 20051 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82390,7 +82390,7 @@ i32.add i32.store local.get $0 - i32.const 20060 + i32.const 20062 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ else i32.const 0 @@ -82436,7 +82436,7 @@ i32.add i32.store local.get $0 - i32.const 20070 + i32.const 20072 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82448,7 +82448,7 @@ i32.add i32.store local.get $0 - i32.const 20080 + i32.const 20082 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82460,7 +82460,7 @@ i32.add i32.store local.get $0 - i32.const 20091 + i32.const 20093 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82472,7 +82472,7 @@ i32.add i32.store local.get $0 - i32.const 20102 + i32.const 20104 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82507,7 +82507,7 @@ i32.add i32.store local.get $0 - i32.const 20114 + i32.const 20116 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ else i32.const 0 @@ -82640,7 +82640,7 @@ i32.add local.set $3 local.get $2 - i32.const 20126 + i32.const 20128 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -82677,7 +82677,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $1 - i32.const 20190 + i32.const 20192 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -82733,7 +82733,7 @@ i32.add local.set $3 local.get $2 - i32.const 20206 + i32.const 20208 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -82803,7 +82803,7 @@ i32.add local.set $3 local.get $2 - i32.const 18573 + i32.const 18575 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -82880,7 +82880,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $2 - i32.const 19586 + i32.const 19588 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -82939,7 +82939,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $3 - i32.const 20369 + i32.const 20371 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -83047,7 +83047,7 @@ i32.load8_s offset=12 if $if local.get $4 - i32.const 19586 + i32.const 19588 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -83061,7 +83061,7 @@ i32.const 8 i32.add local.tee $4 - i32.const 20382 + i32.const 20384 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -83074,7 +83074,7 @@ i32.load8_s offset=13 if $if_0 local.get $2 - i32.const 20389 + i32.const 20391 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -83189,7 +83189,7 @@ i32.const 16 i32.add local.tee $5 - i32.const 17840 + i32.const 17842 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -83203,7 +83203,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 20443 + i32.const 20445 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -83218,7 +83218,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle9NodeArray14printWithCommaERNS_12OutputStreamE local.get $2 - i32.const 17836 + i32.const 17838 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -83328,7 +83328,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 17840 + i32.const 17842 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -83343,7 +83343,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle9NodeArray14printWithCommaERNS_12OutputStreamE local.get $2 - i32.const 17836 + i32.const 17838 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -83378,7 +83378,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $3 - i32.const 20541 + i32.const 20543 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -83508,7 +83508,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $4 - i32.const 17840 + i32.const 17842 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -83522,7 +83522,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $5 - i32.const 17836 + i32.const 17838 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -83666,14 +83666,14 @@ i32.const 56 i32.add local.tee $2 - i32.const 17915 + i32.const 17917 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $4 local.get $2 call $__ZN12_GLOBAL__N_1eqERKNS_10StringViewES2_ if $if local.get $5 - i32.const 17840 + i32.const 17842 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -83684,7 +83684,7 @@ call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE end ;; $if local.get $6 - i32.const 17840 + i32.const 17842 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -83698,7 +83698,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $7 - i32.const 20599 + i32.const 20601 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -83719,7 +83719,7 @@ local.get $2 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $8 - i32.const 20602 + i32.const 20604 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $8 @@ -83733,7 +83733,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $9 - i32.const 17836 + i32.const 17838 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $9 @@ -83743,14 +83743,14 @@ local.get $2 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $2 - i32.const 17915 + i32.const 17917 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $4 local.get $2 call $__ZN12_GLOBAL__N_1eqERKNS_10StringViewES2_ if $if_0 local.get $10 - i32.const 17836 + i32.const 17838 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $10 @@ -83933,7 +83933,7 @@ local.set $0 end ;; $if_0 local.get $6 - i32.const 20745 + i32.const 20747 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $6 @@ -83976,7 +83976,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $4 - i32.const 20750 + i32.const 20752 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -84186,7 +84186,7 @@ i32.const 8 i32.add local.tee $4 - i32.const 20799 + i32.const 20801 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -85003,7 +85003,7 @@ local.get $8 i32.store offset=8 local.get $4 - i32.const 21006 + i32.const 21008 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $6 local.get $4 @@ -85015,7 +85015,7 @@ if $if_4 local.get $2 local.get $0 - i32.const 21324 + i32.const 21326 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ i32.store end ;; $if_4 @@ -85335,7 +85335,7 @@ i32.store local.get $2 local.get $0 - i32.const 21264 + i32.const 21266 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ i32.store local.get $0 @@ -85434,7 +85434,7 @@ local.get $2 i32.const 8 i32.add - i32.const 21002 + i32.const 21004 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -85447,7 +85447,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE br_if $block_0 local.get $2 - i32.const 21006 + i32.const 21008 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -85550,7 +85550,7 @@ br $block_1 end ;; $if_1 local.get $4 - i32.const 21068 + i32.const 21070 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -85690,7 +85690,7 @@ i32.add local.set $3 local.get $2 - i32.const 21009 + i32.const 21011 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -85741,7 +85741,7 @@ local.get $2 i32.const 32 i32.add - i32.const 21129 + i32.const 21131 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $2 @@ -85770,7 +85770,7 @@ local.set $0 else local.get $5 - i32.const 21132 + i32.const 21134 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $5 @@ -85802,7 +85802,7 @@ i32.const 1 i32.store8 offset=362 local.get $4 - i32.const 21135 + i32.const 21137 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $4 @@ -86071,7 +86071,7 @@ i32.const 24 i32.add local.tee $6 - i32.const 21138 + i32.const 21140 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -86092,7 +86092,7 @@ local.get $2 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $4 - i32.const 21146 + i32.const 21148 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -86107,7 +86107,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle9NodeArray14printWithCommaERNS_12OutputStreamE local.get $5 - i32.const 17836 + i32.const 17838 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -86195,7 +86195,7 @@ i32.const 16 i32.add local.tee $5 - i32.const 21201 + i32.const 21203 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -86216,7 +86216,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $4 - i32.const 21210 + i32.const 21212 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -86760,7 +86760,7 @@ i32.load8_s offset=12 if $if local.get $4 - i32.const 18573 + i32.const 18575 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -86886,7 +86886,7 @@ $block ;; default end ;; $block_5 local.get $4 - i32.const 17618 + i32.const 17620 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -86898,7 +86898,7 @@ br $block end ;; $block_4 local.get $5 - i32.const 17633 + i32.const 17635 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -86910,7 +86910,7 @@ br $block end ;; $block_3 local.get $6 - i32.const 21420 + i32.const 21422 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -86922,7 +86922,7 @@ br $block end ;; $block_2 local.get $7 - i32.const 21491 + i32.const 21493 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -86934,7 +86934,7 @@ br $block end ;; $block_1 local.get $8 - i32.const 21541 + i32.const 21543 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $8 @@ -86946,7 +86946,7 @@ br $block end ;; $block_0 local.get $3 - i32.const 21591 + i32.const 21593 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -86977,32 +86977,32 @@ $block ;; default end ;; $block_5 local.get $0 - i32.const 17563 + i32.const 17565 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_4 local.get $0 - i32.const 17573 + i32.const 17575 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_3 local.get $0 - i32.const 17573 + i32.const 17575 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_2 local.get $0 - i32.const 21377 + i32.const 21379 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_1 local.get $0 - i32.const 21391 + i32.const 21393 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_0 local.get $0 - i32.const 21405 + i32.const 21407 call $__ZN12_GLOBAL__N_110StringViewC2EPKc end ;; $block ) @@ -87135,7 +87135,7 @@ call $__ZNK12_GLOBAL__N_116itanium_demangle4Node11hasFunctionERNS_12OutputStreamE br_if $block_0 local.get $5 - i32.const 17838 + i32.const 17840 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -87147,7 +87147,7 @@ br $block end ;; $block_0 local.get $4 - i32.const 17840 + i32.const 17842 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -87162,7 +87162,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $2 - i32.const 21753 + i32.const 21755 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -87205,7 +87205,7 @@ br $block end ;; $block_0 local.get $2 - i32.const 17836 + i32.const 17838 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -87402,7 +87402,7 @@ i32.ne if $if_0 local.get $4 - i32.const 17838 + i32.const 17840 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -87419,7 +87419,7 @@ local.get $3 i32.const 16 i32.add - i32.const 21813 + i32.const 21815 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -87476,7 +87476,7 @@ end ;; $if_4 end ;; $if_2 local.get $3 - i32.const 17474 + i32.const 17476 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -87617,7 +87617,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 21863 + i32.const 21865 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -87674,7 +87674,7 @@ end ;; $if_2 end ;; $if_0 local.get $2 - i32.const 17474 + i32.const 17476 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -87822,7 +87822,7 @@ local.get $2 i32.const 16 i32.add - i32.const 21919 + i32.const 21921 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -87849,7 +87849,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $2 - i32.const 17474 + i32.const 17476 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -87953,7 +87953,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $1 - i32.const 21995 + i32.const 21997 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -87987,7 +87987,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $1 - i32.const 22002 + i32.const 22004 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -88021,7 +88021,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $1 - i32.const 18126 + i32.const 18128 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -88169,7 +88169,7 @@ i32.and if $if local.get $4 - i32.const 22031 + i32.const 22033 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -88191,7 +88191,7 @@ i32.and if $if_0 local.get $4 - i32.const 22038 + i32.const 22040 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -88209,7 +88209,7 @@ i32.and if $if_1 local.get $2 - i32.const 22048 + i32.const 22050 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -88320,7 +88320,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 17838 + i32.const 17840 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -88446,7 +88446,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 18022 + i32.const 18024 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -88467,7 +88467,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $5 - i32.const 17915 + i32.const 17917 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -88610,7 +88610,7 @@ i32.add call_indirect $28 (type $4) local.get $2 - i32.const 17838 + i32.const 17840 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -88668,7 +88668,7 @@ i32.const 48 i32.add local.tee $4 - i32.const 17840 + i32.const 17842 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -88683,7 +88683,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle9NodeArray14printWithCommaERNS_12OutputStreamE local.get $5 - i32.const 17836 + i32.const 17838 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -88713,7 +88713,7 @@ i32.and if $if local.get $6 - i32.const 22031 + i32.const 22033 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -88731,7 +88731,7 @@ i32.and if $if_0 local.get $7 - i32.const 22038 + i32.const 22040 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -88749,7 +88749,7 @@ i32.and if $if_1 local.get $8 - i32.const 22048 + i32.const 22050 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $8 @@ -88771,7 +88771,7 @@ $block ;; default end ;; $block_1 local.get $9 - i32.const 22233 + i32.const 22235 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $9 @@ -88783,7 +88783,7 @@ br $block end ;; $block_0 local.get $3 - i32.const 22236 + i32.const 22238 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -88874,7 +88874,7 @@ i32.add local.set $3 local.get $2 - i32.const 22289 + i32.const 22291 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -88952,7 +88952,7 @@ i32.const 8 i32.add local.tee $4 - i32.const 22353 + i32.const 22355 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -88966,7 +88966,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $2 - i32.const 17836 + i32.const 17838 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -89185,7 +89185,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 20602 + i32.const 20604 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -89206,7 +89206,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $5 - i32.const 17836 + i32.const 17838 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -89500,7 +89500,7 @@ local.get $1 if $if_9 (result i32) local.get $0 - i32.const 22634 + i32.const 22636 local.get $2 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_11SpecialNameEJRA34_KcRPNS0_4NodeEEEESC_DpOT0_ else @@ -90017,7 +90017,7 @@ i32.eqz if $if_0 local.get $2 - i32.const 17838 + i32.const 17840 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -90081,7 +90081,7 @@ i32.const 48 i32.add local.tee $4 - i32.const 17840 + i32.const 17842 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -90096,7 +90096,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle9NodeArray14printWithCommaERNS_12OutputStreamE local.get $5 - i32.const 17836 + i32.const 17838 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -90129,7 +90129,7 @@ i32.and if $if_0 local.get $6 - i32.const 22031 + i32.const 22033 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -90147,7 +90147,7 @@ i32.and if $if_1 local.get $7 - i32.const 22038 + i32.const 22040 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -90165,7 +90165,7 @@ i32.and if $if_2 local.get $8 - i32.const 22048 + i32.const 22050 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $8 @@ -90187,7 +90187,7 @@ $block ;; default end ;; $block_1 local.get $9 - i32.const 22233 + i32.const 22235 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $9 @@ -90199,7 +90199,7 @@ br $block end ;; $block_0 local.get $3 - i32.const 22236 + i32.const 22238 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -90287,7 +90287,7 @@ i32.add local.set $3 local.get $2 - i32.const 22572 + i32.const 22574 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -90419,7 +90419,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 22668 + i32.const 22670 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -90458,7 +90458,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 22693 + i32.const 22695 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -90497,7 +90497,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 22713 + i32.const 22715 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -90536,7 +90536,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 22735 + i32.const 22737 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -90575,7 +90575,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 22753 + i32.const 22755 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -90643,7 +90643,7 @@ i32.const 8 i32.add local.tee $4 - i32.const 22794 + i32.const 22796 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -90657,7 +90657,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $2 - i32.const 22819 + i32.const 22821 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -90695,7 +90695,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 22882 + i32.const 22884 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -90734,7 +90734,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 22909 + i32.const 22911 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -90773,7 +90773,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 22928 + i32.const 22930 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -90812,7 +90812,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 22942 + i32.const 22944 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -90851,7 +90851,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 22951 + i32.const 22953 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -92693,5 +92693,5 @@ call_indirect $28 (type $9) ) ;; User section "emscripten_metadata": - ;; "\00\01\00\03\80\02\b7\03\80\08\c0\ce\c1\02\a0\ce\01\b0\ce\01" + ;; "\00\02\00\04\00\80\02\b7\03\80\08\c0\ce\c1\02\a0\ce\01\b0\ce\01" ) \ No newline at end of file diff --git a/test/extensions/filters/http/wasm/test_data/async_call_cpp.wasm b/test/extensions/filters/http/wasm/test_data/async_call_cpp.wasm index 7382ed2d16dd1..4967a39977234 100644 Binary files a/test/extensions/filters/http/wasm/test_data/async_call_cpp.wasm and b/test/extensions/filters/http/wasm/test_data/async_call_cpp.wasm differ diff --git a/test/extensions/filters/http/wasm/test_data/async_call_cpp.wat b/test/extensions/filters/http/wasm/test_data/async_call_cpp.wat index ada347a8a3a52..79c8e82c8e4bf 100644 --- a/test/extensions/filters/http/wasm/test_data/async_call_cpp.wat +++ b/test/extensions/filters/http/wasm/test_data/async_call_cpp.wat @@ -109,8 +109,8 @@ (export "stackAlloc" (func $stackAlloc)) (export "stackRestore" (func $stackRestore)) (export "stackSave" (func $stackSave)) - (global $33 (mut i32) (i32.const 26448)) - (global $34 (mut i32) (i32.const 5269328)) + (global $33 (mut i32) (i32.const 26464)) + (global $34 (mut i32) (i32.const 5269344)) (elem $35 $29 (global.get $31) $b0 $__ZN7Context6asRootEv $__ZN7Context9asContextEv $__ZN14ExampleContext16onRequestHeadersEv $__ZN7Context6asRootEv $__ZN7Context6asRootEv $__ZN7Context6asRootEv $__ZN7Context6asRootEv $__ZN7Context6asRootEv $__ZN7Context6asRootEv $__ZN7Context6asRootEv $__ZNK6google8protobuf8internal12MapEntryImplINS0_27Struct_FieldsEntry_DoNotUseENS0_11MessageLiteENSt3__212basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEENS0_5ValueELNS1_14WireFormatLite9FieldTypeE9ELSE_11ELi0EE3NewEv $__ZNK6google8protobuf8internal12MapEntryImplINS0_27Struct_FieldsEntry_DoNotUseENS0_11MessageLiteENSt3__212basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEENS0_5ValueELNS1_14WireFormatLite9FieldTypeE9ELSE_11ELi0EE8GetArenaEv $__ZNK6google8protobuf11MessageLite20GetMaybeArenaPointerEv $__ZNK6google8protobuf9ListValue13IsInitializedEv $__ZNK6google8protobuf8internal12MapEntryImplINS0_27Struct_FieldsEntry_DoNotUseENS0_11MessageLiteENSt3__212basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEENS0_5ValueELNS1_14WireFormatLite9FieldTypeE9ELSE_11ELi0EE12ByteSizeLongEv @@ -169,7 +169,7 @@ $b10 $b10 $b11 $__ZN11RootContext18onHttpCallResponseEjNSt3__210unique_ptrI8WasmDataNS0_14default_deleteIS2_EEEES5_S5_ $__ZNK10__cxxabiv117__class_type_info16search_below_dstEPNS_19__dynamic_cast_infoEPKvib $__ZNK10__cxxabiv120__si_class_type_info16search_below_dstEPNS_19__dynamic_cast_infoEPKvib $__ZNK10__cxxabiv121__vmi_class_type_info16search_below_dstEPNS_19__dynamic_cast_infoEPKvib $b11 $b11 $b11 $b12 $__ZNK10__cxxabiv117__class_type_info16search_above_dstEPNS_19__dynamic_cast_infoEPKvS4_ib $__ZNK10__cxxabiv120__si_class_type_info16search_above_dstEPNS_19__dynamic_cast_infoEPKvS4_ib $__ZNK10__cxxabiv121__vmi_class_type_info16search_above_dstEPNS_19__dynamic_cast_infoEPKvS4_ib $b13) (data $36 $30 (i32.const 1024) - "\d79\00\00\dc9\00\00\e49\00\00\ea9") + "\d99\00\00\de9\00\00\e69\00\00\ec9") (data $37 $30 (i32.const 1168) "\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0" "\f0\f0\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\02\03\03\03\03\03\03\03\03\03\03\03\03\07\03\03\04\05\05\05\06\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0" @@ -244,15 +244,15 @@ "\00\00\00g\00\00\00k\00\00\00m\00\00\00q\00\00\00y\00\00\00\7f\00\00\00\83\00\00\00\89\00\00\00\8b\00\00\00\8f\00\00\00\95\00\00\00\97\00\00\00\9d\00\00\00\a3\00\00\00\a7\00\00\00\a9" "\00\00\00\ad\00\00\00\b3\00\00\00\b5\00\00\00\bb\00\00\00\bf\00\00\00\c1\00\00\00\c5\00\00\00\c7\00\00\00\d1\00\00\00T\1e\00\00\0d+\00\00|\1e\00\00\04+\00\00p\11\00\00\00\00\00\00|" "\1e\00\00\f3*\00\00x\11\00\00\00\00\00\00T\1e\00\00\1b+\00\00T\1e\00\00 +\00\00T\1e\00\00L+\00\00\98*\00\00N,\00\00\00\00\00\00\01\00\00\00\c8\11\00\00\00\00\00\00T" - "\1e\00\00\8d,\00\00|\1e\00\00p6\00\00\90\12\00\00\00\00\00\00|\1e\00\00R5\00\00\f0\11\00\00\00\00\00\00|\1e\00\00\0f/\00\00\00\12\00\00\00\00\00\00|\1e\00\00?/\00\00\10" - "\12\00\00\00\00\00\00|\1e\00\00\050\00\00\90\12\00\00\00\00\00\00|\1e\00\00\1f5\00\00\90\12\00\00\00\00\00\00\98*\00\00\dd3\00\00\00\00\00\00\01\00\00\00H\12\00\00\00\00\00\00T" - "\1e\00\00J4\00\00|\1e\00\0095\00\00\90\12\00\00\00\00\00\00|\1e\00\00\a36\00\00p\11\00\00\00\00\00\00|\1e\00\00\d26\00\00\80\14\00\00\00\00\00\00\ff\ff\ff\ff\ff\ff\ff\ff") + "\1e\00\00\8d,\00\00|\1e\00\00r6\00\00\90\12\00\00\00\00\00\00|\1e\00\00T5\00\00\f0\11\00\00\00\00\00\00|\1e\00\00\11/\00\00\00\12\00\00\00\00\00\00|\1e\00\00A/\00\00\10" + "\12\00\00\00\00\00\00|\1e\00\00\070\00\00\90\12\00\00\00\00\00\00|\1e\00\00!5\00\00\90\12\00\00\00\00\00\00\98*\00\00\df3\00\00\00\00\00\00\01\00\00\00H\12\00\00\00\00\00\00T" + "\1e\00\00L4\00\00|\1e\00\00;5\00\00\90\12\00\00\00\00\00\00|\1e\00\00\a56\00\00p\11\00\00\00\00\00\00|\1e\00\00\d46\00\00\80\14\00\00\00\00\00\00\ff\ff\ff\ff\ff\ff\ff\ff") (data $54 $30 (i32.const 4752) - "T\1e\00\00\d6;\00\00|\1e\00\00\a7?\00\00\b8\12\00\00\00\00\00\00|\1e\00\00c@\00\00\b8\12\00\00\00\00\00\00T\1e\00\00/A\00\00\05") + "T\1e\00\00\d8;\00\00|\1e\00\00\a9?\00\00\b8\12\00\00\00\00\00\00|\1e\00\00e@\00\00\b8\12\00\00\00\00\00\00T\1e\00\001A\00\00\05") (data $55 $30 (i32.const 4812) "-") (data $56 $30 (i32.const 4836) - "\08\00\00\00\01\00\00\00\88Z\00\00\00\04") + "\08\00\00\00\01\00\00\00\98Z\00\00\00\04") (data $57 $30 (i32.const 4860) "\01") (data $58 $30 (i32.const 4875) @@ -262,7 +262,7 @@ (data $60 $30 (i32.const 4956) "-") (data $61 $30 (i32.const 4980) - "\09\00\00\00\01\00\00\00vb") + "\09\00\00\00\01\00\00\00\86b") (data $62 $30 (i32.const 5004) "\02") (data $63 $30 (i32.const 5019) @@ -272,26 +272,26 @@ (data $65 $30 (i32.const 5163) "\ff\ff\ff\ff\ff") (data $66 $30 (i32.const 5232) - "|\1e\00\00\a6A\00\00\80\14\00\00\00\00\00\00T\1e\00\00eB\00\00|\1e\00\00\c5B\00\00\98\14\00\00\00\00\00\00|\1e\00\00rB\00\00\a8\14\00\00\00\00\00\00T\1e\00\00\93B\00\00" - "|\1e\00\00\a0B\00\00\88\14\00\00\00\00\00\00|\1e\00\00UD\00\00\d0\14\00\00\00\00\00\00T\1e\00\00\84D\00\00|\1e\00\008E\00\00\d0\14\00\00\00\00\00\00|\1e\00\00{E\00\00" - "\d0\14\00\00\00\00\00\00|\1e\00\00\c8E\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\0eF\00\00\d0\14\00\00\00\00\00\00|\1e\00\00>F\00\00\d0\14\00\00\00\00\00\00|\1e\00\00|F\00\00" - "\d0\14\00\00\00\00\00\00|\1e\00\00\adF\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\fdF\00\00\d0\14\00\00\00\00\00\00|\1e\00\006G\00\00\d0\14\00\00\00\00\00\00|\1e\00\00qG\00\00" - "\d0\14\00\00\00\00\00\00|\1e\00\00\adG\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\f0G\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\1eH\00\00\d0\14\00\00\00\00\00\00|\1e\00\00QH\00\00" - "\d0\14\00\00\00\00\00\00|\1e\00\00\0dI\00\00\d0\14\00\00\00\00\00\00|\1e\00\00:I\00\00\d0\14\00\00\00\00\00\00|\1e\00\00kI\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\a9I\00\00" - "\d0\14\00\00\00\00\00\00|\1e\00\00!J\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\e6I\00\00\d0\14\00\00\00\00\00\00|\1e\00\00hJ\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\b1J\00\00" - "\d0\14\00\00\00\00\00\00|\1e\00\00\0cK\00\00\d0\14\00\00\00\00\00\00|\1e\00\007K\00\00\d0\14\00\00\00\00\00\00|\1e\00\00qK\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\a5K\00\00" - "\d0\14\00\00\00\00\00\00|\1e\00\00\f5K\00\00\d0\14\00\00\00\00\00\00|\1e\00\00$L\00\00\d0\14\00\00\00\00\00\00|\1e\00\00]L\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\96L\00\00" - "\d0\14\00\00\00\00\00\00|\1e\00\00\bbN\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\09O\00\00\d0\14\00\00\00\00\00\00|\1e\00\00DO\00\00\d0\14\00\00\00\00\00\00|\1e\00\00pO\00\00" - "\d0\14\00\00\00\00\00\00|\1e\00\00\baO\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\efO\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\"P\00\00\d0\14\00\00\00\00\00\00|\1e\00\00YP\00\00" - "\d0\14\00\00\00\00\00\00|\1e\00\00\8eP\00\00\d0\14\00\00\00\00\00\00|\1e\00\00$Q\00\00\d0\14\00\00\00\00\00\00|\1e\00\00VQ\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\88Q\00\00" - "\d0\14\00\00\00\00\00\00|\1e\00\00\e0Q\00\00\d0\14\00\00\00\00\00\00|\1e\00\00(R\00\00\d0\14\00\00\00\00\00\00|\1e\00\00`R\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\aeR\00\00" - "\d0\14\00\00\00\00\00\00|\1e\00\00\edR\00\00\d0\14\00\00\00\00\00\00|\1e\00\000S\00\00\d0\14\00\00\00\00\00\00|\1e\00\00aS\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\9bT\00\00" - "\d0\14\00\00\00\00\00\00|\1e\00\00\dbT\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\0eU\00\00\d0\14\00\00\00\00\00\00|\1e\00\00HU\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\81U\00\00" - "\d0\14\00\00\00\00\00\00|\1e\00\00\beU\00\00\d0\14\00\00\00\00\00\00|\1e\00\00;V\00\00\d0\14\00\00\00\00\00\00|\1e\00\00gV\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\9dV\00\00" - "\d0\14\00\00\00\00\00\00|\1e\00\00\f1V\00\00\d0\14\00\00\00\00\00\00|\1e\00\00)W\00\00\d0\14\00\00\00\00\00\00|\1e\00\00lW\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\9dW\00\00" - "\d0\14\00\00\00\00\00\00|\1e\00\00\cdW\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\08X\00\00\d0\14\00\00\00\00\00\00|\1e\00\00JX\00\00\d0\14\00\00\00\00\00\00|\1e\00\009Y\00\00" - "\d0\14\00\00\00\00\00\00|\1e\00\00\c4Y\00\00\80\14\00\00\00\00\00\00|\1e\00\00\d4Y\00\00\f8\18\00\00\00\00\00\00|\1e\00\00\e5Y\00\00\98\14\00\00\00\00\00\00|\1e\00\00\07Z\00\00" - "\18\19\00\00\00\00\00\00|\1e\00\00+Z\00\00\98\14\00\00\00\00\00\00|*\00\00SZ\00\00|*\00\00UZ\00\00|*\00\00WZ\00\00|\1e\00\00YZ\00\00\88\14") + "|\1e\00\00\a8A\00\00\80\14\00\00\00\00\00\00T\1e\00\00gB\00\00|\1e\00\00\c7B\00\00\98\14\00\00\00\00\00\00|\1e\00\00tB\00\00\a8\14\00\00\00\00\00\00T\1e\00\00\95B\00\00" + "|\1e\00\00\a2B\00\00\88\14\00\00\00\00\00\00|\1e\00\00WD\00\00\d0\14\00\00\00\00\00\00T\1e\00\00\86D\00\00|\1e\00\00:E\00\00\d0\14\00\00\00\00\00\00|\1e\00\00}E\00\00" + "\d0\14\00\00\00\00\00\00|\1e\00\00\caE\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\10F\00\00\d0\14\00\00\00\00\00\00|\1e\00\00@F\00\00\d0\14\00\00\00\00\00\00|\1e\00\00~F\00\00" + "\d0\14\00\00\00\00\00\00|\1e\00\00\afF\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\ffF\00\00\d0\14\00\00\00\00\00\00|\1e\00\008G\00\00\d0\14\00\00\00\00\00\00|\1e\00\00sG\00\00" + "\d0\14\00\00\00\00\00\00|\1e\00\00\afG\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\f2G\00\00\d0\14\00\00\00\00\00\00|\1e\00\00 H\00\00\d0\14\00\00\00\00\00\00|\1e\00\00SH\00\00" + "\d0\14\00\00\00\00\00\00|\1e\00\00\0fI\00\00\d0\14\00\00\00\00\00\00|\1e\00\00= " - "(0): \00CHECK failed: (index) < (current_size_): \00/usr/local/inclu" - "de/google/protobuf/map.h\00CHECK failed: (bucket_index_ & 1) == (0" - "): \00CHECK failed: m_->index_of_first_non_null_ == m_->num_bucket" - "s_ || m_->table_[m_->index_of_first_non_null_] != NULL: \00CHECK f" - "ailed: !tree->empty(): \00CHECK failed: node_ != NULL && m_ != NUL" - "L: \00google.protobuf.Value.string_value\00google.protobuf.Struct.Fi" - "eldsEntry.key\00CHECK failed: (&from) != (this): \00CHECK failed: (&" - "other) != (this): \00N6google8protobuf27Struct_FieldsEntry_DoNotUs" - "eE\00N6google8protobuf8internal12MapEntryLiteINS0_27Struct_FieldsE" - "ntry_DoNotUseENSt3__212basic_stringIcNS4_11char_traitsIcEENS4_9a" - "llocatorIcEEEENS0_5ValueELNS1_14WireFormatLite9FieldTypeE9ELSD_1" - "1ELi0EEE\00N6google8protobuf8internal12MapEntryImplINS0_27Struct_F" - "ieldsEntry_DoNotUseENS0_11MessageLiteENSt3__212basic_stringIcNS5" - "_11char_traitsIcEENS5_9allocatorIcEEEENS0_5ValueELNS1_14WireForm" - "atLite9FieldTypeE9ELSE_11ELi0EEE\00CHECK failed: (it.m_) == (this)" - ": \00CHECK failed: TableEntryIsNonEmptyList(b): \00CHECK failed: Tab" - "leEntryIsTree(b): \00CHECK failed: GetArenaNoVirtual() == NULL: \00C" - "HECK failed: index_of_first_non_null_ == num_buckets_ || table_[" - "index_of_first_non_null_] != NULL: \00CHECK failed: find(*KeyPtrFr" - "omNodePtr(node)) == end(): \00CHECK failed: (count) <= (kMaxLength" - "): \00CHECK failed: (result.bucket_index_) == (b & ~static_cast(1)): \00CHECK failed: (table_[b]) == (table_[b ^ 1]): \00CH" - "ECK failed: !TableEntryIsTree(b) && !TableEntryIsTree(b ^ 1): \00C" - "HECK failed: (count) == (tree->size()): \00CHECK failed: (new_num_" - "buckets) >= (kMinTableSize): \00CHECK failed: n >= kMinTableSize: " - "\00CHECK failed: (n & (n - 1)) == (0): \00CHECK failed: table_[b] ==" - " table_[b + 1] && (b & 1) == 0: \00N6google8protobuf3MapINSt3__212" - "basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEENS0_5Valu" - "eEE8InnerMapE\00N6google8protobuf4hashINSt3__212basic_stringIcNS2_" - "11char_traitsIcEENS2_9allocatorIcEEEEEE\00f == NULL || dynamic_cas" - "t(f) != NULL\00/usr/local/include/google/protobuf/stubs/casts." - "h\00down_cast\00google.protobuf.Struct\00N6google8protobuf6StructE\00N6g" - "oogle8protobuf5ValueE\00N6google8protobuf8internal12MapEntryImplIN" - "S0_27Struct_FieldsEntry_DoNotUseENS0_11MessageLiteENSt3__212basi" - "c_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEENS0_5ValueELN" - "S1_14WireFormatLite9FieldTypeE9ELSE_11ELi0EE15MapEntryWrapperE\00C" - "HECK failed: (n) >= (0): \00google.protobuf.ListValue\00N6google8pro" - "tobuf9ListValueE\00google.protobuf.Value\0011RootContext\00no context " - "factory for root_id: \00N6google8protobuf14FatalExceptionE\00google/" - "protobuf/stubs/common.cc\00This program requires version \00%d.%d.%d" - "\00 of the Protocol Buffer runtime library, but the installed vers" - "ion is \00. Please update your library. If you compiled the prog" - "ram yourself, make sure that your headers are from the same vers" - "ion of Protocol Buffers as your link-time library. (Version ver" - "ification failed in \"\00\".)\00This program was compiled against vers" - "ion \00 of the Protocol Buffer runtime library, which is not compa" - "tible with the installed version (\00). Contact the program autho" - "r for an update. If you compiled the program yourself, make sur" - "e that your headers are from the same version of Protocol Buffer" - "s as your link-time library. (Version verification failed in \"\00" - "[libprotobuf %s %s:%d] %s\n\00INFO\00WARNING\00ERROR\00FATAL\00allocator" - "::allocate(size_t n) 'n' exceeds maximum supported size\00%d\00%u\00go" - "ogle/protobuf/arena.cc\00CHECK failed: (min_bytes) <= (std::numeri" - "c_limits::max() - kBlockHeaderSize): \00google/protobuf/ge" - "nerated_message_util.cc\00Not implemented field number \00 with type" - " \00CHECK failed: (scc->visit_status.load(std::memory_order_relaxe" - "d)) == (SCCInfoBase::kRunning): \00google/protobuf/message_lite.cc" - "\00CHECK failed: !coded_out.HadError(): \00(cannot determine missing" - " fields for lite message)\00N6google8protobuf11MessageLiteE\00google" - "/protobuf/repeated_field.cc\00CHECK failed: (new_size) <= ((std::n" - "umeric_limits::max() - kRepHeaderSize) / sizeof(old_rep-" - ">elements[0])): \00Requested size is too large to fit into size_t." - "\00google/protobuf/wire_format_lite.cc\00CHECK failed: (value.size()" - ") <= (kint32max): \00serializing\00parsing\00 '%s'\00String field\00 conta" - "ins invalid \00UTF-8 data when \00 a protocol \00buffer. Use the 'byte" - "s' type if you intend to send raw \00bytes. \00google/protobuf/io/co" - "ded_stream.cc\00CHECK failed: (buffer_size) >= (0): \00A protocol me" - "ssage was rejected because it was too big (more than \00 bytes). " - "To increase the limit (or to disable these warnings), see CodedI" - "nputStream::SetTotalBytesLimit() in google/protobuf/io/coded_str" - "eam.h.\00google/protobuf/io/zero_copy_stream_impl_lite.cc\00CHECK fa" - "iled: (count) >= (0): \00CHECK failed: (last_returned_size_) > (0)" - ": \00BackUp() can only be called after a successful Next().\00CHECK " - "failed: (count) <= (last_returned_size_): \00N6google8protobuf2io1" - "7ArrayOutputStreamE\00CHECK failed: target_ != NULL: \00CHECK failed" - ": (count) <= (target_->size()): \00Cannot allocate buffer larger t" - "han kint32max for \00StringOutputStream.\00N6google8protobuf2io18Str" - "ingOutputStreamE\00google/protobuf/io/zero_copy_stream.cc\00This Zer" - "oCopyOutputStream doesn't support aliasing. Reaching here usuall" - "y means a ZeroCopyOutputStream implementation bug.\00N6google8prot" - "obuf2io20ZeroCopyOutputStreamE\00-+ 0X0x\00(null)\00-0X+0X 0X-0x+0x " - "0x\00inf\00INF\00nan\00NAN\00std::bad_function_call\00NSt3__217bad_function_" - "callE\00mutex lock failed\00terminating with %s exception of type %s" - ": %s\00terminating with %s exception of type %s\00terminating with %" - "s foreign exception\00terminating\00uncaught\00St9exception\00N10__cxxab" - "iv116__shim_type_infoE\00St9type_info\00N10__cxxabiv120__si_class_ty" - "pe_infoE\00N10__cxxabiv117__class_type_infoE\00terminate_handler une" - "xpectedly returned\00_Z\00___Z\00_block_invoke\00invocation function for" - " block in \00void\00bool\00char\00signed char\00unsigned char\00short\00unsign" - "ed short\00int\00unsigned int\00long\00unsigned long\00long long\00__int128\00" - "unsigned __int128\00float\00long double\00__float128\00...\00decimal64\00dec" - "imal128\00decimal32\00decimal16\00char32_t\00char16_t\00auto\00decltype(auto" - ")\00std::nullptr_t\00[abi:\00]\00N12_GLOBAL__N_116itanium_demangle10AbiT" - "agAttrE\00N12_GLOBAL__N_116itanium_demangle4NodeE\00allocator\00basic_" - "string\00string\00istream\00ostream\00iostream\00std::allocator\00std::basic" - "_string\00std::string\00std::istream\00std::ostream\00std::iostream\00N12_" - "GLOBAL__N_116itanium_demangle19SpecialSubstitutionE\00 imaginary\00N" - "12_GLOBAL__N_116itanium_demangle20PostfixQualifiedTypeE\00 complex" - "\00)\00 \00(\00&\00&&\00N12_GLOBAL__N_116itanium_demangle13ReferenceTypeE\00ob" - "jc_object\00*\00id<\00>\00N12_GLOBAL__N_116itanium_demangle11PointerType" - "E\00N12_GLOBAL__N_116itanium_demangle20NameWithTemplateArgsE\00<\00, \00" - "N12_GLOBAL__N_116itanium_demangle12TemplateArgsE\00N12_GLOBAL__N_1" - "16itanium_demangle13ParameterPackE\00wchar_t\00b0E\00b1E\00u\00l\00ul\00ll\00ull" - "\00N12_GLOBAL__N_116itanium_demangle15IntegerCastExprE\00%LaL\00N12_GL" - "OBAL__N_116itanium_demangle16FloatLiteralImplIeEE\00%a\00N12_GLOBAL_" - "_N_116itanium_demangle16FloatLiteralImplIdEE\00%af\00N12_GLOBAL__N_1" - "16itanium_demangle16FloatLiteralImplIfEE\00true\00false\00N12_GLOBAL__" - "N_116itanium_demangle8BoolExprE\00-\00N12_GLOBAL__N_116itanium_deman" - "gle14IntegerLiteralE\00N12_GLOBAL__N_116itanium_demangle20Template" - "ArgumentPackE\00gs\00&=\00=\00alignof (\00,\00~\00.*\00/\00/=\00^\00^=\00==\00>=\00<=\00<<\00<<=" - "\00-=\00*=\00--\00!=\00!\00||\00|\00|=\00->*\00+\00+=\00++\00->\00%\00%=\00>>\00>>=\00sizeof (\00typei" - "d (\00throw\00throw \00N12_GLOBAL__N_116itanium_demangle9ThrowExprE\00N1" - "2_GLOBAL__N_116itanium_demangle12InitListExprE\00N12_GLOBAL__N_116" - "itanium_demangle13NodeArrayNodeE\00sizeof... (\00N12_GLOBAL__N_116it" - "anium_demangle13EnclosingExprE\00sizeof...(\00N12_GLOBAL__N_116itani" - "um_demangle22ParameterPackExpansionE\00N12_GLOBAL__N_116itanium_de" - "mangle19SizeofParamPackExprE\00static_cast\00>(\00N12_GLOBAL__N_116ita" - "nium_demangle8CastExprE\00reinterpret_cast\00) ? (\00) : (\00N12_GLOBAL_" - "_N_116itanium_demangle15ConditionalExprE\00noexcept (\00nw\00na\00pi\00::o" - "perator \00new\00[]\00N12_GLOBAL__N_116itanium_demangle7NewExprE\00N12_G" - "LOBAL__N_116itanium_demangle11PostfixExprE\00 ... \00 = \00N12_GLOBAL_" - "_N_116itanium_demangle15BracedRangeExprE\00N12_GLOBAL__N_116itaniu" - "m_demangle10BracedExprE\00_GLOBAL__N\00(anonymous namespace)\00N12_GLO" - "BAL__N_116itanium_demangle8NameTypeE\00)[\00N12_GLOBAL__N_116itanium" - "_demangle18ArraySubscriptExprE\00.\00N12_GLOBAL__N_116itanium_demang" - "le10MemberExprE\00srN\00sr\00::\00N12_GLOBAL__N_116itanium_demangle19Glo" - "balQualifiedNameE\00dn\00on\00operator&&\00operator&\00operator&=\00operator" - "=\00operator()\00operator,\00operator~\00operator delete[]\00operator*\00ope" - "rator/\00operator/=\00operator^\00operator^=\00operator==\00operator>=\00ope" - "rator>\00operator[]\00operator<=\00operator<<\00operator<<=\00operator<\00op" - "erator-\00operator-=\00operator*=\00operator--\00operator new[]\00operator" - "!=\00operator!\00operator new\00operator||\00operator|\00operator|=\00operat" - "or->*\00operator+\00operator+=\00operator++\00operator->\00operator?\00opera" - "tor%\00operator%=\00operator>>\00operator>>=\00operator<=>\00operator\"\" \00N" - "12_GLOBAL__N_116itanium_demangle15LiteralOperatorE\00operator dele" - "te\00operator \00N12_GLOBAL__N_116itanium_demangle22ConversionOperat" - "orTypeE\00N12_GLOBAL__N_116itanium_demangle8DtorNameE\00N12_GLOBAL__" - "N_116itanium_demangle13QualifiedNameE\00dynamic_cast\00delete\00[] \00N1" - "2_GLOBAL__N_116itanium_demangle10DeleteExprE\00cv\00)(\00N12_GLOBAL__N" - "_116itanium_demangle14ConversionExprE\00N12_GLOBAL__N_116itanium_d" - "emangle8CallExprE\00const_cast\00N12_GLOBAL__N_116itanium_demangle10" - "PrefixExprE\00) \00 (\00N12_GLOBAL__N_116itanium_demangle10BinaryExprE" - "\00aa\00an\00aN\00aS\00cm\00ds\00dv\00dV\00eo\00eO\00eq\00ge\00gt\00le\00ls\00lS\00lt\00mi\00mI\00ml\00mL\00" - "ne\00oo\00or\00oR\00pl\00pL\00rm\00rM\00rs\00rS\00... \00 ...\00N12_GLOBAL__N_116itanium" - "_demangle8FoldExprE\00fp\00fL\00N12_GLOBAL__N_116itanium_demangle13Fun" - "ctionParamE\00N12_GLOBAL__N_116itanium_demangle24ForwardTemplateRe" - "ferenceE\00Ts\00struct\00Tu\00union\00Te\00enum\00N12_GLOBAL__N_116itanium_dem" - "angle22ElaboratedTypeSpefTypeE\00StL\00St\00std::\00N12_GLOBAL__N_116ita" - "nium_demangle16StdQualifiedNameE\00DC\00N12_GLOBAL__N_116itanium_dem" - "angle21StructuredBindingNameE\00Ut\00Ul\00vE\00'lambda\00'(\00N12_GLOBAL__N_" - "116itanium_demangle15ClosureTypeNameE\00'unnamed\00'\00N12_GLOBAL__N_1" - "16itanium_demangle15UnnamedTypeNameE\00string literal\00N12_GLOBAL__" - "N_116itanium_demangle9LocalNameE\00std\00N12_GLOBAL__N_116itanium_de" - "mangle12CtorDtorNameE\00basic_istream\00basic_ostream\00basic_iostream" - "\00std::basic_string, std::allocator<" - "char> >\00std::basic_istream >\00std::b" - "asic_ostream >\00std::basic_iostream<" - "char, std::char_traits >\00N12_GLOBAL__N_116itanium_demangle" - "27ExpandedSpecialSubstitutionE\00N12_GLOBAL__N_116itanium_demangle" - "10NestedNameE\00::*\00N12_GLOBAL__N_116itanium_demangle19PointerToMe" - "mberTypeE\00[\00N12_GLOBAL__N_116itanium_demangle9ArrayTypeE\00Dv\00 vec" - "tor[\00N12_GLOBAL__N_116itanium_demangle10VectorTypeE\00pixel vector" - "[\00N12_GLOBAL__N_116itanium_demangle15PixelVectorTypeE\00decltype(\00" - "double\00unsigned long long\00objcproto\00 const\00 volatile\00 restrict\00N" - "12_GLOBAL__N_116itanium_demangle8QualTypeE\00N12_GLOBAL__N_116itan" - "ium_demangle17VendorExtQualTypeE\00N12_GLOBAL__N_116itanium_demang" - "le13ObjCProtoNameE\00Do\00noexcept\00DO\00Dw\00Dx\00RE\00OE\00 &\00 &&\00N12_GLOBAL_" - "_N_116itanium_demangle12FunctionTypeE\00throw(\00N12_GLOBAL__N_116it" - "anium_demangle20DynamicExceptionSpecE\00noexcept(\00N12_GLOBAL__N_11" - "6itanium_demangle12NoexceptSpecE\00N12_GLOBAL__N_116itanium_demang" - "le11SpecialNameE\00N12_GLOBAL__N_116itanium_demangle9DotSuffixE\00Ua" - "9enable_ifI\00N12_GLOBAL__N_116itanium_demangle16FunctionEncodingE" - "\00 [enable_if:\00N12_GLOBAL__N_116itanium_demangle12EnableIfAttrE\00t" - "hread-local wrapper routine for \00reference temporary for \00guard " - "variable for \00non-virtual thunk to \00virtual thunk to \00thread-loc" - "al initialization routine for \00construction vtable for \00-in-\00N12" - "_GLOBAL__N_116itanium_demangle21CtorVtableSpecialNameE\00covariant" - " return thunk to \00typeinfo name for \00typeinfo for \00VTT for \00vtab" - "le for \00St11logic_error\00St12length_error\00N10__cxxabiv117__pbase_" - "type_infoE\00N10__cxxabiv119__pointer_type_infoE\00N10__cxxabiv123__" - "fundamental_type_infoE\00v\00c\00h\00N10__cxxabiv121__vmi_class_type_inf" - "oE") + "9allocatorIcEEEE\00NSt3__221__basic_string_commonILb1EEE\00/home/pio" + "trsikora/Google/envoy/api/wasm/cpp/struct_lite.pb.cc\00/usr/local/" + "include/google/protobuf/repeated_field.h\00CHECK failed: (index) >" + "= (0): \00CHECK failed: (index) < (current_size_): \00/usr/local/inc" + "lude/google/protobuf/map.h\00CHECK failed: (bucket_index_ & 1) == " + "(0): \00CHECK failed: m_->index_of_first_non_null_ == m_->num_buck" + "ets_ || m_->table_[m_->index_of_first_non_null_] != NULL: \00CHECK" + " failed: !tree->empty(): \00CHECK failed: node_ != NULL && m_ != N" + "ULL: \00google.protobuf.Value.string_value\00google.protobuf.Struct." + "FieldsEntry.key\00CHECK failed: (&from) != (this): \00CHECK failed: " + "(&other) != (this): \00N6google8protobuf27Struct_FieldsEntry_DoNot" + "UseE\00N6google8protobuf8internal12MapEntryLiteINS0_27Struct_Field" + "sEntry_DoNotUseENSt3__212basic_stringIcNS4_11char_traitsIcEENS4_" + "9allocatorIcEEEENS0_5ValueELNS1_14WireFormatLite9FieldTypeE9ELSD" + "_11ELi0EEE\00N6google8protobuf8internal12MapEntryImplINS0_27Struct" + "_FieldsEntry_DoNotUseENS0_11MessageLiteENSt3__212basic_stringIcN" + "S5_11char_traitsIcEENS5_9allocatorIcEEEENS0_5ValueELNS1_14WireFo" + "rmatLite9FieldTypeE9ELSE_11ELi0EEE\00CHECK failed: (it.m_) == (thi" + "s): \00CHECK failed: TableEntryIsNonEmptyList(b): \00CHECK failed: T" + "ableEntryIsTree(b): \00CHECK failed: GetArenaNoVirtual() == NULL: " + "\00CHECK failed: index_of_first_non_null_ == num_buckets_ || table" + "_[index_of_first_non_null_] != NULL: \00CHECK failed: find(*KeyPtr" + "FromNodePtr(node)) == end(): \00CHECK failed: (count) <= (kMaxLeng" + "th): \00CHECK failed: (result.bucket_index_) == (b & ~static_cast<" + "size_type>(1)): \00CHECK failed: (table_[b]) == (table_[b ^ 1]): \00" + "CHECK failed: !TableEntryIsTree(b) && !TableEntryIsTree(b ^ 1): " + "\00CHECK failed: (count) == (tree->size()): \00CHECK failed: (new_nu" + "m_buckets) >= (kMinTableSize): \00CHECK failed: n >= kMinTableSize" + ": \00CHECK failed: (n & (n - 1)) == (0): \00CHECK failed: table_[b] " + "== table_[b + 1] && (b & 1) == 0: \00N6google8protobuf3MapINSt3__2" + "12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEENS0_5Va" + "lueEE8InnerMapE\00N6google8protobuf4hashINSt3__212basic_stringIcNS" + "2_11char_traitsIcEENS2_9allocatorIcEEEEEE\00f == NULL || dynamic_c" + "ast(f) != NULL\00/usr/local/include/google/protobuf/stubs/cast" + "s.h\00down_cast\00google.protobuf.Struct\00N6google8protobuf6StructE\00N" + "6google8protobuf5ValueE\00N6google8protobuf8internal12MapEntryImpl" + "INS0_27Struct_FieldsEntry_DoNotUseENS0_11MessageLiteENSt3__212ba" + "sic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEENS0_5ValueE" + "LNS1_14WireFormatLite9FieldTypeE9ELSE_11ELi0EE15MapEntryWrapperE" + "\00CHECK failed: (n) >= (0): \00google.protobuf.ListValue\00N6google8p" + "rotobuf9ListValueE\00google.protobuf.Value\0011RootContext\00no contex" + "t factory for root_id: \00N6google8protobuf14FatalExceptionE\00googl" + "e/protobuf/stubs/common.cc\00This program requires version \00%d.%d." + "%d\00 of the Protocol Buffer runtime library, but the installed ve" + "rsion is \00. Please update your library. If you compiled the pr" + "ogram yourself, make sure that your headers are from the same ve" + "rsion of Protocol Buffers as your link-time library. (Version v" + "erification failed in \"\00\".)\00This program was compiled against ve" + "rsion \00 of the Protocol Buffer runtime library, which is not com" + "patible with the installed version (\00). Contact the program aut" + "hor for an update. If you compiled the program yourself, make s" + "ure that your headers are from the same version of Protocol Buff" + "ers as your link-time library. (Version verification failed in " + "\"\00[libprotobuf %s %s:%d] %s\n\00INFO\00WARNING\00ERROR\00FATAL\00allocator<" + "T>::allocate(size_t n) 'n' exceeds maximum supported size\00%d\00%u\00" + "google/protobuf/arena.cc\00CHECK failed: (min_bytes) <= (std::nume" + "ric_limits::max() - kBlockHeaderSize): \00google/protobuf/" + "generated_message_util.cc\00Not implemented field number \00 with ty" + "pe \00CHECK failed: (scc->visit_status.load(std::memory_order_rela" + "xed)) == (SCCInfoBase::kRunning): \00google/protobuf/message_lite." + "cc\00CHECK failed: !coded_out.HadError(): \00(cannot determine missi" + "ng fields for lite message)\00N6google8protobuf11MessageLiteE\00goog" + "le/protobuf/repeated_field.cc\00CHECK failed: (new_size) <= ((std:" + ":numeric_limits::max() - kRepHeaderSize) / sizeof(old_re" + "p->elements[0])): \00Requested size is too large to fit into size_" + "t.\00google/protobuf/wire_format_lite.cc\00CHECK failed: (value.size" + "()) <= (kint32max): \00serializing\00parsing\00 '%s'\00String field\00 con" + "tains invalid \00UTF-8 data when \00 a protocol \00buffer. Use the 'by" + "tes' type if you intend to send raw \00bytes. \00google/protobuf/io/" + "coded_stream.cc\00CHECK failed: (buffer_size) >= (0): \00A protocol " + "message was rejected because it was too big (more than \00 bytes)." + " To increase the limit (or to disable these warnings), see Code" + "dInputStream::SetTotalBytesLimit() in google/protobuf/io/coded_s" + "tream.h.\00google/protobuf/io/zero_copy_stream_impl_lite.cc\00CHECK " + "failed: (count) >= (0): \00CHECK failed: (last_returned_size_) > (" + "0): \00BackUp() can only be called after a successful Next().\00CHEC" + "K failed: (count) <= (last_returned_size_): \00N6google8protobuf2i" + "o17ArrayOutputStreamE\00CHECK failed: target_ != NULL: \00CHECK fail" + "ed: (count) <= (target_->size()): \00Cannot allocate buffer larger" + " than kint32max for \00StringOutputStream.\00N6google8protobuf2io18S" + "tringOutputStreamE\00google/protobuf/io/zero_copy_stream.cc\00This Z" + "eroCopyOutputStream doesn't support aliasing. Reaching here usua" + "lly means a ZeroCopyOutputStream implementation bug.\00N6google8pr" + "otobuf2io20ZeroCopyOutputStreamE\00-+ 0X0x\00(null)\00-0X+0X 0X-0x+0" + "x 0x\00inf\00INF\00nan\00NAN\00std::bad_function_call\00NSt3__217bad_functio" + "n_callE\00mutex lock failed\00terminating with %s exception of type " + "%s: %s\00terminating with %s exception of type %s\00terminating with" + " %s foreign exception\00terminating\00uncaught\00St9exception\00N10__cxx" + "abiv116__shim_type_infoE\00St9type_info\00N10__cxxabiv120__si_class_" + "type_infoE\00N10__cxxabiv117__class_type_infoE\00terminate_handler u" + "nexpectedly returned\00_Z\00___Z\00_block_invoke\00invocation function f" + "or block in \00void\00bool\00char\00signed char\00unsigned char\00short\00unsi" + "gned short\00int\00unsigned int\00long\00unsigned long\00long long\00__int12" + "8\00unsigned __int128\00float\00long double\00__float128\00...\00decimal64\00d" + "ecimal128\00decimal32\00decimal16\00char32_t\00char16_t\00auto\00decltype(au" + "to)\00std::nullptr_t\00[abi:\00]\00N12_GLOBAL__N_116itanium_demangle10Ab" + "iTagAttrE\00N12_GLOBAL__N_116itanium_demangle4NodeE\00allocator\00basi" + "c_string\00string\00istream\00ostream\00iostream\00std::allocator\00std::bas" + "ic_string\00std::string\00std::istream\00std::ostream\00std::iostream\00N1" + "2_GLOBAL__N_116itanium_demangle19SpecialSubstitutionE\00 imaginary" + "\00N12_GLOBAL__N_116itanium_demangle20PostfixQualifiedTypeE\00 compl" + "ex\00)\00 \00(\00&\00&&\00N12_GLOBAL__N_116itanium_demangle13ReferenceTypeE\00" + "objc_object\00*\00id<\00>\00N12_GLOBAL__N_116itanium_demangle11PointerTy" + "peE\00N12_GLOBAL__N_116itanium_demangle20NameWithTemplateArgsE\00<\00," + " \00N12_GLOBAL__N_116itanium_demangle12TemplateArgsE\00N12_GLOBAL__N" + "_116itanium_demangle13ParameterPackE\00wchar_t\00b0E\00b1E\00u\00l\00ul\00ll\00u" + "ll\00N12_GLOBAL__N_116itanium_demangle15IntegerCastExprE\00%LaL\00N12_" + "GLOBAL__N_116itanium_demangle16FloatLiteralImplIeEE\00%a\00N12_GLOBA" + "L__N_116itanium_demangle16FloatLiteralImplIdEE\00%af\00N12_GLOBAL__N" + "_116itanium_demangle16FloatLiteralImplIfEE\00true\00false\00N12_GLOBAL" + "__N_116itanium_demangle8BoolExprE\00-\00N12_GLOBAL__N_116itanium_dem" + "angle14IntegerLiteralE\00N12_GLOBAL__N_116itanium_demangle20Templa" + "teArgumentPackE\00gs\00&=\00=\00alignof (\00,\00~\00.*\00/\00/=\00^\00^=\00==\00>=\00<=\00<<\00<" + "<=\00-=\00*=\00--\00!=\00!\00||\00|\00|=\00->*\00+\00+=\00++\00->\00%\00%=\00>>\00>>=\00sizeof (\00typ" + "eid (\00throw\00throw \00N12_GLOBAL__N_116itanium_demangle9ThrowExprE\00" + "N12_GLOBAL__N_116itanium_demangle12InitListExprE\00N12_GLOBAL__N_1" + "16itanium_demangle13NodeArrayNodeE\00sizeof... (\00N12_GLOBAL__N_116" + "itanium_demangle13EnclosingExprE\00sizeof...(\00N12_GLOBAL__N_116ita" + "nium_demangle22ParameterPackExpansionE\00N12_GLOBAL__N_116itanium_" + "demangle19SizeofParamPackExprE\00static_cast\00>(\00N12_GLOBAL__N_116i" + "tanium_demangle8CastExprE\00reinterpret_cast\00) ? (\00) : (\00N12_GLOBA" + "L__N_116itanium_demangle15ConditionalExprE\00noexcept (\00nw\00na\00pi\00:" + ":operator \00new\00[]\00N12_GLOBAL__N_116itanium_demangle7NewExprE\00N12" + "_GLOBAL__N_116itanium_demangle11PostfixExprE\00 ... \00 = \00N12_GLOBA" + "L__N_116itanium_demangle15BracedRangeExprE\00N12_GLOBAL__N_116itan" + "ium_demangle10BracedExprE\00_GLOBAL__N\00(anonymous namespace)\00N12_G" + "LOBAL__N_116itanium_demangle8NameTypeE\00)[\00N12_GLOBAL__N_116itani" + "um_demangle18ArraySubscriptExprE\00.\00N12_GLOBAL__N_116itanium_dema" + "ngle10MemberExprE\00srN\00sr\00::\00N12_GLOBAL__N_116itanium_demangle19G" + "lobalQualifiedNameE\00dn\00on\00operator&&\00operator&\00operator&=\00operat" + "or=\00operator()\00operator,\00operator~\00operator delete[]\00operator*\00o" + "perator/\00operator/=\00operator^\00operator^=\00operator==\00operator>=\00o" + "perator>\00operator[]\00operator<=\00operator<<\00operator<<=\00operator<\00" + "operator-\00operator-=\00operator*=\00operator--\00operator new[]\00operat" + "or!=\00operator!\00operator new\00operator||\00operator|\00operator|=\00oper" + "ator->*\00operator+\00operator+=\00operator++\00operator->\00operator?\00ope" + "rator%\00operator%=\00operator>>\00operator>>=\00operator<=>\00operator\"\" " + "\00N12_GLOBAL__N_116itanium_demangle15LiteralOperatorE\00operator de" + "lete\00operator \00N12_GLOBAL__N_116itanium_demangle22ConversionOper" + "atorTypeE\00N12_GLOBAL__N_116itanium_demangle8DtorNameE\00N12_GLOBAL" + "__N_116itanium_demangle13QualifiedNameE\00dynamic_cast\00delete\00[] \00" + "N12_GLOBAL__N_116itanium_demangle10DeleteExprE\00cv\00)(\00N12_GLOBAL_" + "_N_116itanium_demangle14ConversionExprE\00N12_GLOBAL__N_116itanium" + "_demangle8CallExprE\00const_cast\00N12_GLOBAL__N_116itanium_demangle" + "10PrefixExprE\00) \00 (\00N12_GLOBAL__N_116itanium_demangle10BinaryExp" + "rE\00aa\00an\00aN\00aS\00cm\00ds\00dv\00dV\00eo\00eO\00eq\00ge\00gt\00le\00ls\00lS\00lt\00mi\00mI\00ml\00m" + "L\00ne\00oo\00or\00oR\00pl\00pL\00rm\00rM\00rs\00rS\00... \00 ...\00N12_GLOBAL__N_116itani" + "um_demangle8FoldExprE\00fp\00fL\00N12_GLOBAL__N_116itanium_demangle13F" + "unctionParamE\00N12_GLOBAL__N_116itanium_demangle24ForwardTemplate" + "ReferenceE\00Ts\00struct\00Tu\00union\00Te\00enum\00N12_GLOBAL__N_116itanium_d" + "emangle22ElaboratedTypeSpefTypeE\00StL\00St\00std::\00N12_GLOBAL__N_116i" + "tanium_demangle16StdQualifiedNameE\00DC\00N12_GLOBAL__N_116itanium_d" + "emangle21StructuredBindingNameE\00Ut\00Ul\00vE\00'lambda\00'(\00N12_GLOBAL__" + "N_116itanium_demangle15ClosureTypeNameE\00'unnamed\00'\00N12_GLOBAL__N" + "_116itanium_demangle15UnnamedTypeNameE\00string literal\00N12_GLOBAL" + "__N_116itanium_demangle9LocalNameE\00std\00N12_GLOBAL__N_116itanium_" + "demangle12CtorDtorNameE\00basic_istream\00basic_ostream\00basic_iostre" + "am\00std::basic_string, std::allocato" + "r >\00std::basic_istream >\00std:" + ":basic_ostream >\00std::basic_iostrea" + "m >\00N12_GLOBAL__N_116itanium_demang" + "le27ExpandedSpecialSubstitutionE\00N12_GLOBAL__N_116itanium_demang" + "le10NestedNameE\00::*\00N12_GLOBAL__N_116itanium_demangle19PointerTo" + "MemberTypeE\00[\00N12_GLOBAL__N_116itanium_demangle9ArrayTypeE\00Dv\00 v" + "ector[\00N12_GLOBAL__N_116itanium_demangle10VectorTypeE\00pixel vect" + "or[\00N12_GLOBAL__N_116itanium_demangle15PixelVectorTypeE\00decltype" + "(\00double\00unsigned long long\00objcproto\00 const\00 volatile\00 restrict" + "\00N12_GLOBAL__N_116itanium_demangle8QualTypeE\00N12_GLOBAL__N_116it" + "anium_demangle17VendorExtQualTypeE\00N12_GLOBAL__N_116itanium_dema" + "ngle13ObjCProtoNameE\00Do\00noexcept\00DO\00Dw\00Dx\00RE\00OE\00 &\00 &&\00N12_GLOBA" + "L__N_116itanium_demangle12FunctionTypeE\00throw(\00N12_GLOBAL__N_116" + "itanium_demangle20DynamicExceptionSpecE\00noexcept(\00N12_GLOBAL__N_" + "116itanium_demangle12NoexceptSpecE\00N12_GLOBAL__N_116itanium_dema" + "ngle11SpecialNameE\00N12_GLOBAL__N_116itanium_demangle9DotSuffixE\00" + "Ua9enable_ifI\00N12_GLOBAL__N_116itanium_demangle16FunctionEncodin" + "gE\00 [enable_if:\00N12_GLOBAL__N_116itanium_demangle12EnableIfAttrE" + "\00thread-local wrapper routine for \00reference temporary for \00guar" + "d variable for \00non-virtual thunk to \00virtual thunk to \00thread-l" + "ocal initialization routine for \00construction vtable for \00-in-\00N" + "12_GLOBAL__N_116itanium_demangle21CtorVtableSpecialNameE\00covaria" + "nt return thunk to \00typeinfo name for \00typeinfo for \00VTT for \00vt" + "able for \00St11logic_error\00St12length_error\00N10__cxxabiv117__pbas" + "e_type_infoE\00N10__cxxabiv119__pointer_type_infoE\00N10__cxxabiv123" + "__fundamental_type_infoE\00v\00c\00h\00N10__cxxabiv121__vmi_class_type_i" + "nfoE") (func $globalCtors (type $8) call $__GLOBAL__sub_I_async_call_cpp_cc - i32.const 24392 + i32.const 24408 i64.const 0 i64.store align=4 - i32.const 24400 + i32.const 24416 i64.const 0 i64.store align=4 - i32.const 24408 + i32.const 24424 i32.const 1065353216 i32.store - i32.const 24412 + i32.const 24428 i64.const 0 i64.store align=4 - i32.const 24420 + i32.const 24436 i64.const 0 i64.store align=4 - i32.const 24428 + i32.const 24444 i32.const 1065353216 i32.store call $__GLOBAL__sub_I_status_cc @@ -4060,7 +4060,7 @@ i32.const 6592 i32.store offset=12 local.get $0 - i32.const 25206 + i32.const 25222 i32.store local.get $0 i32.const 0 @@ -4308,33 +4308,33 @@ global.set $33 local.get $0 global.set $33 - i32.const 24220 + i32.const 24236 i32.const 0 i32.store - i32.const 24212 - i32.const 24360 + i32.const 24228 + i32.const 24376 i32.store - i32.const 24216 + i32.const 24232 i32.const 0 i32.store - i32.const 24224 + i32.const 24240 i32.const 0 i32.store - i32.const 24208 + i32.const 24224 i32.const 6696 i32.store - i32.const 24232 + i32.const 24248 call $__ZN6google8protobuf6StructC2Ev i32.const 114 - i32.const 24232 + i32.const 24248 call $__ZN6google8protobuf8internal13OnShutdownRunEPFvPKvES3_ - i32.const 24264 + i32.const 24280 i32.const 6784 i32.store - i32.const 24268 + i32.const 24284 i32.const 0 i32.store - i32.const 24280 + i32.const 24296 i32.const 0 i32.store i32.const 6672 @@ -4342,19 +4342,19 @@ if $if call $__ZN6google8protobuf8internal11InitSCCImplEPNS1_11SCCInfoBaseE end ;; $if - i32.const 24284 + i32.const 24300 i32.const 0 i32.store i32.const 114 - i32.const 24264 + i32.const 24280 call $__ZN6google8protobuf8internal13OnShutdownRunEPFvPKvES3_ - i32.const 24320 + i32.const 24336 call $__ZN6google8protobuf9ListValueC2Ev i32.const 114 - i32.const 24320 + i32.const 24336 call $__ZN6google8protobuf8internal13OnShutdownRunEPFvPKvES3_ - i32.const 24216 - i32.const 24264 + i32.const 24232 + i32.const 24280 i32.store ) @@ -4462,7 +4462,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 12623 + i32.const 12625 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -4596,19 +4596,19 @@ i32.const 25 i32.store offset=4 local.get $1 - i32.const 13910 + i32.const 13912 i64.load align=1 i64.store align=1 local.get $1 - i32.const 13918 + i32.const 13920 i64.load align=1 i64.store offset=8 align=1 local.get $1 - i32.const 13926 + i32.const 13928 i64.load align=1 i64.store offset=16 align=1 local.get $1 - i32.const 13934 + i32.const 13936 i32.load8_s i32.store8 offset=24 local.get $1 @@ -4720,10 +4720,10 @@ local.get $1 call $__ZN6google8protobuf9ListValue9MergeFromERKS1_ else - i32.const 13476 - i32.const 13517 + i32.const 13478 + i32.const 13519 i32.const 92 - i32.const 13566 + i32.const 13568 call $___assert_fail end ;; $if ) @@ -5137,7 +5137,7 @@ local.tee $1 i32.const -2 i32.and - i32.const 24360 + i32.const 24376 local.get $1 i32.const 1 i32.and @@ -5246,7 +5246,7 @@ local.tee $2 i32.const -2 i32.and - i32.const 24360 + i32.const 24376 local.get $2 i32.const 1 i32.and @@ -5265,7 +5265,7 @@ local.tee $0 i32.const -2 i32.and - i32.const 24360 + i32.const 24376 local.get $0 i32.const 1 i32.and @@ -5322,7 +5322,7 @@ i32.const 3 i32.store local.get $3 - i32.const 11503 + i32.const 11505 i32.store offset=4 local.get $3 i32.const 1505 @@ -5334,7 +5334,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 11555 + i32.const 11557 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -5364,7 +5364,7 @@ i32.const 3 i32.store local.get $2 - i32.const 11503 + i32.const 11505 i32.store offset=4 local.get $2 i32.const 1506 @@ -5376,7 +5376,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 11586 + i32.const 11588 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -5411,7 +5411,7 @@ local.tee $1 i32.const -2 i32.and - i32.const 24360 + i32.const 24376 local.get $1 i32.const 1 i32.and @@ -5562,7 +5562,7 @@ local.tee $1 i32.const -2 i32.and - i32.const 24360 + i32.const 24376 local.get $1 i32.const 1 i32.and @@ -5683,7 +5683,7 @@ local.tee $1 i32.const -2 i32.and - i32.const 24360 + i32.const 24376 local.get $1 i32.const 1 i32.and @@ -5800,7 +5800,7 @@ i32.store offset=12 end ;; $if_1 local.get $1 - i32.const 24360 + i32.const 24376 i32.store offset=4 local.get $1 i32.const 0 @@ -6034,7 +6034,7 @@ i32.const 3 i32.store local.get $3 - i32.const 11628 + i32.const 11630 i32.store offset=4 local.get $3 i32.const 418 @@ -6046,7 +6046,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 11712 + i32.const 11714 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -6132,7 +6132,7 @@ i32.const 3 i32.store local.get $2 - i32.const 11628 + i32.const 11630 i32.store offset=4 local.get $2 i32.const 427 @@ -6144,7 +6144,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 11829 + i32.const 11831 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -6215,7 +6215,7 @@ i32.const 3 i32.store local.get $2 - i32.const 11628 + i32.const 11630 i32.store offset=4 local.get $2 i32.const 451 @@ -6227,7 +6227,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 11669 + i32.const 11671 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -6363,7 +6363,7 @@ i32.const 3 i32.store local.get $3 - i32.const 11628 + i32.const 11630 i32.store offset=4 local.get $3 i32.const 476 @@ -6375,7 +6375,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 11860 + i32.const 11862 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -7032,7 +7032,7 @@ local.get $0 i32.load offset=4 local.tee $1 - i32.const 24360 + i32.const 24376 i32.eq local.get $1 i32.eqz @@ -7085,7 +7085,7 @@ local.get $0 i32.load offset=4 local.tee $1 - i32.const 24360 + i32.const 24376 i32.eq local.get $1 i32.eqz @@ -7146,7 +7146,7 @@ i32.const 0 i32.store offset=12 local.get $0 - i32.const 24360 + i32.const 24376 i32.store offset=4 local.get $0 i32.const 0 @@ -7182,7 +7182,7 @@ local.get $0 i32.load offset=4 local.tee $1 - i32.const 24360 + i32.const 24376 i32.ne if $if local.get $1 @@ -7265,10 +7265,10 @@ local.get $1 call $__ZN6google8protobuf8internal12MapEntryImplINS0_27Struct_FieldsEntry_DoNotUseENS0_11MessageLiteENSt3__212basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEENS0_5ValueELNS1_14WireFormatLite9FieldTypeE9ELSE_11ELi0EE17MergeFromInternalERKSF_ else - i32.const 13476 - i32.const 13517 + i32.const 13478 + i32.const 13519 i32.const 92 - i32.const 13566 + i32.const 13568 call $___assert_fail end ;; $if ) @@ -7358,13 +7358,13 @@ local.get $5 i32.load local.tee $2 - i32.const 24360 + i32.const 24376 i32.eq if $if_0 local.get $5 local.get $0 i32.load offset=12 - i32.const 24360 + i32.const 24376 call $__ZN6google8protobuf8internal14ArenaStringPtr14CreateInstanceEPNS0_5ArenaEPKNSt3__212basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEE local.get $5 i32.load @@ -8198,7 +8198,7 @@ i32.const 3 i32.store offset=20 local.get $5 - i32.const 24360 + i32.const 24376 i32.store end ;; $if_5 local.get $0 @@ -8220,12 +8220,12 @@ local.get $5 i32.load local.tee $3 - i32.const 24360 + i32.const 24376 i32.eq if $if_7 (result i32) local.get $5 local.get $2 - i32.const 24360 + i32.const 24376 call $__ZN6google8protobuf8internal14ArenaStringPtr14CreateInstanceEPNS0_5ArenaEPKNSt3__212basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEE local.get $5 i32.load @@ -8246,9 +8246,9 @@ i32.load local.tee $2 else - i32.const 24360 + i32.const 24376 local.set $2 - i32.const 24360 + i32.const 24376 end ;; $if_8 i32.load8_s offset=11 i32.const 0 @@ -8265,9 +8265,9 @@ i32.load local.tee $3 else - i32.const 24360 + i32.const 24376 local.set $3 - i32.const 24360 + i32.const 24376 end ;; $if_10 i32.load8_s offset=11 local.tee $2 @@ -8282,7 +8282,7 @@ i32.and end ;; $if_11 i32.const 0 - i32.const 11904 + i32.const 11906 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ br_if $loop i32.const 0 @@ -8679,7 +8679,7 @@ local.get $0 i32.load offset=8 local.tee $1 - i32.const 24360 + i32.const 24376 i32.eq local.get $1 i32.eqz @@ -9022,7 +9022,7 @@ local.get $6 select i32.const 0 - i32.const 11939 + i32.const 11941 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ select br $block_4 @@ -9527,7 +9527,7 @@ i32.const 0 i32.store offset=12 local.get $2 - i32.const 24360 + i32.const 24376 i32.store offset=4 local.get $2 i32.const 0 @@ -9572,13 +9572,13 @@ local.tee $3 i32.load local.tee $5 - i32.const 24360 + i32.const 24376 i32.eq if $if_14 (result i32) local.get $3 local.get $2 i32.load offset=12 - i32.const 24360 + i32.const 24376 call $__ZN6google8protobuf8internal14ArenaStringPtr14CreateInstanceEPNS0_5ArenaEPKNSt3__212basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEE local.get $3 i32.load @@ -9854,7 +9854,7 @@ i32.const 0 i32.store offset=12 local.get $2 - i32.const 24360 + i32.const 24376 i32.store offset=4 local.get $2 i32.const 0 @@ -9935,13 +9935,13 @@ local.tee $3 i32.load local.tee $2 - i32.const 24360 + i32.const 24376 i32.eq if $if_2 local.get $3 local.get $4 i32.load offset=12 - i32.const 24360 + i32.const 24376 call $__ZN6google8protobuf8internal14ArenaStringPtr14CreateInstanceEPNS0_5ArenaEPKNSt3__212basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEE local.get $3 i32.load @@ -10114,7 +10114,7 @@ i32.store offset=12 end ;; $if local.get $0 - i32.const 24360 + i32.const 24376 i32.store offset=4 local.get $0 i32.const 0 @@ -10486,7 +10486,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 11978 + i32.const 11980 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -10615,7 +10615,7 @@ i32.const 8 i32.add local.tee $0 - i32.const 24360 + i32.const 24376 i32.store end ;; $if_4 local.get $2 @@ -10635,7 +10635,7 @@ local.get $0 i32.load local.tee $2 - i32.const 24360 + i32.const 24376 i32.eq if $if_6 local.get $0 @@ -10711,7 +10711,7 @@ i32.const 5 i32.eq br_if $block_8 - i32.const 24232 + i32.const 24248 end ;; $if_8 br $block_7 end ;; $block_8 @@ -10765,7 +10765,7 @@ i32.const 6 i32.eq br_if $block_10 - i32.const 24320 + i32.const 24336 end ;; $if_10 br $block_9 end ;; $block_10 @@ -10820,7 +10820,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 11978 + i32.const 11980 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -11015,7 +11015,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 11978 + i32.const 11980 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -11112,7 +11112,7 @@ i32.const 3 i32.store local.get $2 - i32.const 11503 + i32.const 11505 i32.store offset=4 local.get $2 i32.const 1586 @@ -11124,7 +11124,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 12012 + i32.const 12014 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -11352,7 +11352,7 @@ i32.const 3 i32.store local.get $2 - i32.const 11628 + i32.const 11630 i32.store offset=4 local.get $2 i32.const 601 @@ -11364,7 +11364,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 12509 + i32.const 12511 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -11426,7 +11426,7 @@ i32.const 3 i32.store local.get $2 - i32.const 11628 + i32.const 11630 i32.store offset=4 local.get $2 i32.const 607 @@ -11438,7 +11438,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 12543 + i32.const 12545 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -11481,7 +11481,7 @@ i32.const 3 i32.store local.get $3 - i32.const 11628 + i32.const 11630 i32.store offset=4 local.get $3 i32.const 612 @@ -11493,7 +11493,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 12587 + i32.const 12589 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -12574,7 +12574,7 @@ i32.const 0 i32.store offset=20 local.get $1 - i32.const 12623 + i32.const 12625 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $1 @@ -12931,7 +12931,7 @@ i32.const 3 i32.store local.get $2 - i32.const 11628 + i32.const 11630 i32.store offset=4 local.get $2 i32.const 765 @@ -12943,7 +12943,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 13093 + i32.const 13095 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -13132,7 +13132,7 @@ i32.const 3 i32.store local.get $4 - i32.const 11628 + i32.const 11630 i32.store offset=4 local.get $4 i32.const 672 @@ -13144,7 +13144,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 12667 + i32.const 12669 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -13170,7 +13170,7 @@ i32.const 3 i32.store local.get $4 - i32.const 11628 + i32.const 11630 i32.store offset=4 local.get $4 i32.const 678 @@ -13182,7 +13182,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 12768 + i32.const 12770 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -13264,7 +13264,7 @@ i32.const 3 i32.store local.get $6 - i32.const 11628 + i32.const 11630 i32.store offset=4 local.get $6 i32.const 878 @@ -13276,7 +13276,7 @@ i32.const 0 i32.store offset=20 local.get $6 - i32.const 12824 + i32.const 12826 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $6 @@ -13308,7 +13308,7 @@ i32.const 3 i32.store local.get $5 - i32.const 11628 + i32.const 11630 i32.store offset=4 local.get $5 i32.const 685 @@ -13320,7 +13320,7 @@ i32.const 0 i32.store offset=20 local.get $5 - i32.const 12864 + i32.const 12866 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $5 @@ -13437,7 +13437,7 @@ i32.const 3 i32.store local.get $2 - i32.const 11628 + i32.const 11630 i32.store offset=4 local.get $2 i32.const 837 @@ -13449,7 +13449,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 12986 + i32.const 12988 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -13721,7 +13721,7 @@ i32.const 3 i32.store local.get $2 - i32.const 11628 + i32.const 11630 i32.store offset=4 local.get $2 i32.const 848 @@ -13733,7 +13733,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 13051 + i32.const 13053 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -13795,7 +13795,7 @@ i32.const 3 i32.store local.get $4 - i32.const 11628 + i32.const 11630 i32.store offset=4 local.get $4 i32.const 713 @@ -13807,7 +13807,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 12939 + i32.const 12941 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -15092,7 +15092,7 @@ i32.const 3 i32.store local.get $2 - i32.const 11628 + i32.const 11630 i32.store offset=4 local.get $2 i32.const 926 @@ -15104,7 +15104,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 13146 + i32.const 13148 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -15120,7 +15120,7 @@ i32.const 3 i32.store local.get $3 - i32.const 11628 + i32.const 11630 i32.store offset=4 local.get $3 i32.const 927 @@ -15132,7 +15132,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 13181 + i32.const 13183 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -15713,7 +15713,7 @@ i32.const 3 i32.store local.get $5 - i32.const 11628 + i32.const 11630 i32.store offset=4 local.get $5 i32.const 527 @@ -15725,7 +15725,7 @@ i32.const 0 i32.store offset=20 local.get $5 - i32.const 13218 + i32.const 13220 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $5 @@ -16001,7 +16001,7 @@ i32.const 0 i32.store offset=20 local.get $1 - i32.const 12623 + i32.const 12625 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $1 @@ -16083,19 +16083,19 @@ i32.const 22 i32.store offset=4 local.get $1 - i32.const 13576 + i32.const 13578 i64.load align=1 i64.store align=1 local.get $1 - i32.const 13584 + i32.const 13586 i64.load align=1 i64.store offset=8 align=1 local.get $1 - i32.const 13592 + i32.const 13594 i32.load align=1 i32.store offset=16 align=1 local.get $1 - i32.const 13596 + i32.const 13598 i32.load16_s align=1 i32.store16 offset=20 align=1 local.get $1 @@ -16173,10 +16173,10 @@ local.get $1 call $__ZN6google8protobuf6Struct9MergeFromERKS1_ else - i32.const 13476 - i32.const 13517 + i32.const 13478 + i32.const 13519 i32.const 92 - i32.const 13566 + i32.const 13568 call $___assert_fail end ;; $if ) @@ -16285,7 +16285,7 @@ i32.store offset=12 end ;; $if_1 local.get $2 - i32.const 24360 + i32.const 24376 i32.store offset=4 local.get $2 i32.const 0 @@ -16355,7 +16355,7 @@ local.get $2 local.get $4 i32.const 1 - i32.const 11939 + i32.const 11941 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ drop local.get $5 @@ -16494,7 +16494,7 @@ i32.store offset=12 end ;; $if_8 local.get $2 - i32.const 24360 + i32.const 24376 i32.store offset=4 local.get $2 i32.const 0 @@ -16563,7 +16563,7 @@ local.get $2 local.get $4 i32.const 1 - i32.const 11939 + i32.const 11941 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ drop local.get $8 @@ -16596,7 +16596,7 @@ local.tee $2 i32.const -2 i32.and - i32.const 24360 + i32.const 24376 local.get $2 i32.const 1 i32.and @@ -16615,7 +16615,7 @@ local.tee $0 i32.const -2 i32.and - i32.const 24360 + i32.const 24376 local.get $0 i32.const 1 i32.and @@ -19656,13 +19656,13 @@ i32.add local.tee $2 i32.load - i32.const 24360 + i32.const 24376 i32.eq if $if_1 local.get $2 local.get $0 i32.load offset=12 - i32.const 24360 + i32.const 24376 call $__ZN6google8protobuf8internal14ArenaStringPtr14CreateInstanceEPNS0_5ArenaEPKNSt3__212basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEE end ;; $if_1 local.get $1 @@ -19678,7 +19678,7 @@ local.get $2 i32.load local.tee $4 - i32.const 24360 + i32.const 24376 i32.eq if $if_2 local.get $2 @@ -19746,7 +19746,7 @@ local.get $0 i32.load offset=8 local.tee $0 - i32.const 24216 + i32.const 24232 i32.load local.get $0 select @@ -19776,7 +19776,7 @@ i32.const 3 i32.store local.get $1 - i32.const 11503 + i32.const 11505 i32.store offset=4 local.get $1 i32.const 1567 @@ -19788,7 +19788,7 @@ i32.const 0 i32.store offset=20 local.get $1 - i32.const 13883 + i32.const 13885 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $1 @@ -19992,19 +19992,19 @@ i32.const 21 i32.store offset=4 local.get $1 - i32.const 13965 + i32.const 13967 i64.load align=1 i64.store align=1 local.get $1 - i32.const 13973 + i32.const 13975 i64.load align=1 i64.store offset=8 align=1 local.get $1 - i32.const 13981 + i32.const 13983 i32.load align=1 i32.store offset=16 align=1 local.get $1 - i32.const 13985 + i32.const 13987 i32.load8_s i32.store8 offset=20 local.get $1 @@ -20080,10 +20080,10 @@ local.get $1 call $__ZN6google8protobuf5Value9MergeFromERKS1_ else - i32.const 13476 - i32.const 13517 + i32.const 13478 + i32.const 13519 i32.const 92 - i32.const 13566 + i32.const 13568 call $___assert_fail end ;; $if ) @@ -20146,7 +20146,7 @@ local.get $2 local.get $3 i32.const 1 - i32.const 11904 + i32.const 11906 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ drop local.get $0 @@ -20157,7 +20157,7 @@ local.get $0 i32.load offset=8 else - i32.const 24360 + i32.const 24376 end ;; $if_3 local.get $1 call $__ZN6google8protobuf8internal14WireFormatLite23WriteStringMaybeAliasedEiRKNSt3__212basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEPNS0_2io17CodedOutputStreamE @@ -20207,7 +20207,7 @@ local.tee $2 i32.const -2 i32.and - i32.const 24360 + i32.const 24376 local.get $2 i32.const 1 i32.and @@ -20226,7 +20226,7 @@ local.tee $0 i32.const -2 i32.and - i32.const 24360 + i32.const 24376 local.get $0 i32.const 1 i32.and @@ -20366,13 +20366,13 @@ i32.store offset=4 block $block block $block_0 - i32.const 24396 + i32.const 24412 i32.load local.tee $3 i32.eqz local.tee $11 br_if $block_0 - i32.const 24392 + i32.const 24408 i32.load local.get $3 local.get $3 @@ -20483,13 +20483,13 @@ br $block end ;; $block_0 local.get $11 - i32.const 24408 + i32.const 24424 f32.load local.tee $14 local.get $3 f32.convert_i32_u f32.mul - i32.const 24404 + i32.const 24420 i32.load i32.const 1 i32.add @@ -20548,7 +20548,7 @@ i32.lt_u select call $__ZNSt3__212__hash_tableINS_17__hash_value_typeIiNS_10unique_ptrI11ContextBaseNS_14default_deleteIS3_EEEEEENS_22__unordered_map_hasherIiS7_NS_4hashIiEELb1EEENS_21__unordered_map_equalIiS7_NS_8equal_toIiEELb1EEENS_9allocatorIS7_EEE6rehashEm - i32.const 24396 + i32.const 24412 i32.load local.set $3 local.get $4 @@ -20559,7 +20559,7 @@ local.set $2 block $block_2 block $block_3 - i32.const 24392 + i32.const 24408 i32.load local.get $3 local.get $3 @@ -20604,14 +20604,14 @@ br $block_3 else local.get $4 - i32.const 24400 + i32.const 24416 i32.load i32.store - i32.const 24400 + i32.const 24416 local.get $4 i32.store local.get $11 - i32.const 24400 + i32.const 24416 i32.store local.get $4 i32.load @@ -20620,7 +20620,7 @@ local.get $2 i32.load offset=4 local.set $2 - i32.const 24392 + i32.const 24408 i32.load local.get $10 if $if_14 (result i32) @@ -20657,8 +20657,8 @@ local.get $4 i32.store end ;; $block_2 - i32.const 24404 - i32.const 24404 + i32.const 24420 + i32.const 24420 i32.load i32.const 1 i32.add @@ -20782,7 +20782,7 @@ i32.add i32.const 0 i32.store8 - i32.const 24436 + i32.const 24452 i32.load local.tee $1 if $if_21 @@ -21627,12 +21627,12 @@ local.set $12 block $block block $block_0 - i32.const 24396 + i32.const 24412 i32.load local.tee $5 i32.eqz br_if $block_0 - i32.const 24392 + i32.const 24408 i32.load local.get $5 local.get $5 @@ -21768,7 +21768,7 @@ local.set $0 br $block end ;; $block_0 - i32.const 24432 + i32.const 24448 i32.load i32.eqz if $if_7 @@ -21996,7 +21996,7 @@ i32.add i32.const 0 i32.store8 - i32.const 24432 + i32.const 24448 i32.load local.get $7 call $__ZNSt3__212__hash_tableINS_17__hash_value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEENS_8functionIFNS_10unique_ptrI11RootContextNS_14default_deleteISA_EEEEjNS_17basic_string_viewIcS4_EEEEEEENS_22__unordered_map_hasherIS7_SI_NS_4hashIS7_EELb1EEENS_21__unordered_map_equalIS7_SI_NS_8equal_toIS7_EELb1EEENS5_ISI_EEE4findIS7_EENS_15__hash_iteratorIPNS_11__hash_nodeISI_PvEEEERKT_ @@ -22347,7 +22347,7 @@ (local $3 i32) (local $4 i32) (local $5 i32) - i32.const 24396 + i32.const 24412 i32.load local.tee $1 i32.eqz @@ -22355,7 +22355,7 @@ i32.const 0 return end ;; $if - i32.const 24392 + i32.const 24408 i32.load local.get $1 local.get $1 @@ -22523,7 +22523,7 @@ local.get $0 i32.load local.set $4 - i32.const 24396 + i32.const 24412 i32.load local.tee $2 i32.eqz @@ -22532,7 +22532,7 @@ i32.const 0 local.set $0 else - i32.const 24392 + i32.const 24408 i32.load local.get $2 local.get $2 @@ -22671,13 +22671,13 @@ i32.const 0 i32.store local.get $6 - i32.const 24408 + i32.const 24424 f32.load local.tee $8 local.get $2 f32.convert_i32_u f32.mul - i32.const 24404 + i32.const 24420 i32.load i32.const 1 i32.add @@ -22737,7 +22737,7 @@ i32.lt_u select call $__ZNSt3__212__hash_tableINS_17__hash_value_typeIiNS_10unique_ptrI11ContextBaseNS_14default_deleteIS3_EEEEEENS_22__unordered_map_hasherIiS7_NS_4hashIiEELb1EEENS_21__unordered_map_equalIiS7_NS_8equal_toIiEELb1EEENS_9allocatorIS7_EEE6rehashEm - i32.const 24396 + i32.const 24412 i32.load local.tee $1 i32.const -1 @@ -22774,7 +22774,7 @@ end ;; $if_9 block $block_3 block $block_4 - i32.const 24392 + i32.const 24408 i32.load local.get $0 i32.const 2 @@ -22791,14 +22791,14 @@ br $block_4 else local.get $3 - i32.const 24400 + i32.const 24416 i32.load i32.store - i32.const 24400 + i32.const 24416 local.get $3 i32.store local.get $2 - i32.const 24400 + i32.const 24416 i32.store local.get $3 i32.load @@ -22807,7 +22807,7 @@ local.get $0 i32.load offset=4 local.set $0 - i32.const 24392 + i32.const 24408 i32.load local.get $1 local.get $1 @@ -22849,8 +22849,8 @@ local.get $3 i32.store end ;; $block_3 - i32.const 24404 - i32.const 24404 + i32.const 24420 + i32.const 24420 i32.load i32.const 1 i32.add @@ -23426,7 +23426,7 @@ i32.xor local.set $6 block $block_3 - i32.const 24416 + i32.const 24432 i32.load local.tee $2 i32.eqz @@ -23435,7 +23435,7 @@ i32.const 0 local.set $5 else - i32.const 24412 + i32.const 24428 i32.load local.get $2 local.get $2 @@ -23783,13 +23783,13 @@ i32.const 0 i32.store local.get $12 - i32.const 24428 + i32.const 24444 f32.load local.tee $13 local.get $2 f32.convert_i32_u f32.mul - i32.const 24424 + i32.const 24440 i32.load i32.const 1 i32.add @@ -23849,7 +23849,7 @@ i32.lt_u select call $__ZNSt3__212__hash_tableINS_17__hash_value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEP11RootContextEENS_22__unordered_map_hasherIS7_SA_NS_4hashIS7_EELb1EEENS_21__unordered_map_equalIS7_SA_NS_8equal_toIS7_EELb1EEENS5_ISA_EEE6rehashEm - i32.const 24416 + i32.const 24432 i32.load local.tee $0 i32.const -1 @@ -23886,7 +23886,7 @@ end ;; $if_21 block $block_12 block $block_13 - i32.const 24412 + i32.const 24428 i32.load local.get $5 i32.const 2 @@ -23905,14 +23905,14 @@ br $block_13 else local.get $4 - i32.const 24420 + i32.const 24436 i32.load i32.store - i32.const 24420 + i32.const 24436 local.get $4 i32.store local.get $2 - i32.const 24420 + i32.const 24436 i32.store local.get $4 i32.load @@ -23921,7 +23921,7 @@ local.get $1 i32.load offset=4 local.set $1 - i32.const 24412 + i32.const 24428 i32.load local.get $0 local.get $0 @@ -23963,8 +23963,8 @@ local.get $4 i32.store end ;; $block_12 - i32.const 24424 - i32.const 24424 + i32.const 24440 + i32.const 24440 i32.load i32.const 1 i32.add @@ -24004,7 +24004,7 @@ end ;; $if_0 end ;; $if local.tee $1 - i32.const 24416 + i32.const 24432 i32.load local.tee $0 i32.gt_u @@ -24030,10 +24030,10 @@ i32.gt_u i32.and local.set $3 - i32.const 24424 + i32.const 24440 i32.load f32.convert_i32_u - i32.const 24428 + i32.const 24444 f32.load f32.div f32.ceil @@ -24115,10 +24115,10 @@ local.get $0 i32.eqz if $if - i32.const 24412 + i32.const 24428 i32.load local.set $0 - i32.const 24412 + i32.const 24428 i32.const 0 i32.store local.get $0 @@ -24126,7 +24126,7 @@ local.get $0 call $_free end ;; $if_0 - i32.const 24416 + i32.const 24432 i32.const 0 i32.store return @@ -24152,10 +24152,10 @@ i32.shl call $__Znwm local.set $2 - i32.const 24412 + i32.const 24428 i32.load local.set $1 - i32.const 24412 + i32.const 24428 local.get $2 i32.store local.get $1 @@ -24163,13 +24163,13 @@ local.get $1 call $_free end ;; $if_2 - i32.const 24416 + i32.const 24432 local.get $0 i32.store i32.const 0 local.set $1 loop $loop - i32.const 24412 + i32.const 24428 i32.load local.get $1 i32.const 2 @@ -24185,7 +24185,7 @@ i32.ne br_if $loop end ;; $loop - i32.const 24420 + i32.const 24436 i32.load local.tee $6 i32.eqz @@ -24195,7 +24195,7 @@ local.get $6 i32.load offset=4 local.set $1 - i32.const 24412 + i32.const 24428 i32.load local.get $0 local.get $0 @@ -24230,7 +24230,7 @@ i32.const 2 i32.shl i32.add - i32.const 24420 + i32.const 24436 i32.store local.get $6 i32.load @@ -24272,7 +24272,7 @@ local.get $4 else block $block (result i32) - i32.const 24412 + i32.const 24428 i32.load local.get $8 i32.const 2 @@ -24500,7 +24500,7 @@ i32.load i32.store local.get $1 - i32.const 24412 + i32.const 24428 i32.load local.get $8 i32.const 2 @@ -24509,7 +24509,7 @@ i32.load i32.load i32.store - i32.const 24412 + i32.const 24428 i32.load local.get $8 i32.const 2 @@ -24557,7 +24557,7 @@ end ;; $if_0 end ;; $if local.tee $1 - i32.const 24396 + i32.const 24412 i32.load local.tee $0 i32.gt_u @@ -24583,10 +24583,10 @@ i32.gt_u i32.and local.set $3 - i32.const 24404 + i32.const 24420 i32.load f32.convert_i32_u - i32.const 24408 + i32.const 24424 f32.load f32.div f32.ceil @@ -24662,10 +24662,10 @@ local.get $0 i32.eqz if $if - i32.const 24392 + i32.const 24408 i32.load local.set $0 - i32.const 24392 + i32.const 24408 i32.const 0 i32.store local.get $0 @@ -24673,7 +24673,7 @@ local.get $0 call $_free end ;; $if_0 - i32.const 24396 + i32.const 24412 i32.const 0 i32.store return @@ -24699,10 +24699,10 @@ i32.shl call $__Znwm local.set $2 - i32.const 24392 + i32.const 24408 i32.load local.set $1 - i32.const 24392 + i32.const 24408 local.get $2 i32.store local.get $1 @@ -24710,13 +24710,13 @@ local.get $1 call $_free end ;; $if_2 - i32.const 24396 + i32.const 24412 local.get $0 i32.store i32.const 0 local.set $1 loop $loop - i32.const 24392 + i32.const 24408 i32.load local.get $1 i32.const 2 @@ -24732,7 +24732,7 @@ i32.ne br_if $loop end ;; $loop - i32.const 24400 + i32.const 24416 i32.load local.tee $4 i32.eqz @@ -24742,7 +24742,7 @@ local.get $4 i32.load offset=4 local.set $1 - i32.const 24392 + i32.const 24408 i32.load local.get $0 local.get $0 @@ -24777,7 +24777,7 @@ i32.const 2 i32.shl i32.add - i32.const 24400 + i32.const 24416 i32.store local.get $4 i32.load @@ -24804,7 +24804,7 @@ local.get $0 else block $block (result i32) - i32.const 24392 + i32.const 24408 i32.load local.get $3 i32.const 2 @@ -24863,7 +24863,7 @@ i32.load i32.store local.get $1 - i32.const 24392 + i32.const 24408 i32.load local.get $3 i32.const 2 @@ -24872,7 +24872,7 @@ i32.load i32.load i32.store - i32.const 24392 + i32.const 24408 i32.load local.get $3 i32.const 2 @@ -24919,7 +24919,7 @@ local.get $1 else block $block_2 (result i32) - i32.const 24392 + i32.const 24408 i32.load local.get $3 i32.const 2 @@ -24978,7 +24978,7 @@ i32.load i32.store local.get $2 - i32.const 24392 + i32.const 24408 i32.load local.get $3 i32.const 2 @@ -24987,7 +24987,7 @@ i32.load i32.load i32.store - i32.const 24392 + i32.const 24408 i32.load local.get $3 i32.const 2 @@ -28712,7 +28712,7 @@ (local $3 i32) (local $4 i32) (local $5 i32) - i32.const 24396 + i32.const 24412 i32.load local.tee $1 i32.eqz @@ -28720,7 +28720,7 @@ i32.const 0 return end ;; $if - i32.const 24392 + i32.const 24408 i32.load local.get $1 local.get $1 @@ -28887,14 +28887,14 @@ local.get $0 i32.load local.set $3 - i32.const 24396 + i32.const 24412 i32.load local.tee $2 i32.eqz if $if return end ;; $if - i32.const 24392 + i32.const 24408 i32.load local.tee $4 local.get $2 @@ -29062,7 +29062,7 @@ block $block_1 (result i32) block $block_2 local.get $3 - i32.const 24400 + i32.const 24416 i32.eq br_if $block_2 local.get $3 @@ -29172,7 +29172,7 @@ local.tee $2 i32.ne if $if_26 (result i32) - i32.const 24392 + i32.const 24408 i32.load local.get $2 i32.const 2 @@ -29192,8 +29192,8 @@ local.get $8 i32.const 0 i32.store - i32.const 24404 - i32.const 24404 + i32.const 24420 + i32.const 24420 i32.load i32.const -1 i32.add @@ -29242,7 +29242,7 @@ i32.const 16 i32.add global.set $33 - i32.const 24432 + i32.const 24448 i32.load i32.eqz if $if @@ -29257,7 +29257,7 @@ local.get $3 i32.const 1065353216 i32.store offset=16 - i32.const 24432 + i32.const 24448 local.get $3 i32.store i32.const 20 @@ -29271,7 +29271,7 @@ local.get $3 i32.const 1065353216 i32.store offset=16 - i32.const 24436 + i32.const 24452 local.get $3 i32.store end ;; $if @@ -29282,7 +29282,7 @@ i32.load8_s offset=8 i32.eqz if $if_0 - i32.const 24436 + i32.const 24452 i32.load local.set $6 local.get $3 @@ -29428,7 +29428,7 @@ global.set $33 return end ;; $if_7 - i32.const 24432 + i32.const 24448 i32.load local.set $5 local.get $3 @@ -31636,7 +31636,7 @@ local.get $1 i32.const 3 i32.store - i32.const 24440 + i32.const 24456 i32.load i32.const -1 i32.ne @@ -31650,7 +31650,7 @@ local.get $2 call $__ZNSt3__211__call_onceERVmPvPFvS2_E end ;; $if_0 - i32.const 24444 + i32.const 24460 i32.load drop local.get $0 @@ -31721,7 +31721,7 @@ local.get $0 i32.const 0 i32.store offset=24 - i32.const 24444 + i32.const 24460 local.get $0 i32.store i32.const 117 @@ -31806,14 +31806,14 @@ (func $__ZN6google8protobuf8internal22DeleteLogSilencerCountEv (type $8) (local $0 i32) - i32.const 24444 + i32.const 24460 i32.load local.tee $0 if $if local.get $0 call $_free end ;; $if - i32.const 24444 + i32.const 24460 i32.const 0 i32.store ) @@ -31839,11 +31839,11 @@ i32.const 16 i32.add global.set $33 - i32.const 24352 + i32.const 24368 i32.load8_s i32.eqz if $if - i32.const 24352 + i32.const 24368 i32.load8_s i32.const 0 i32.ne @@ -31867,21 +31867,21 @@ local.get $2 i64.const 0 i64.store offset=32 align=4 - i32.const 24448 + i32.const 24464 local.get $2 i32.store - i32.const 24352 + i32.const 24368 i32.const 0 i32.store - i32.const 24352 - i32.const 24352 + i32.const 24368 + i32.const 24368 i32.load i32.const 1 i32.or i32.store end ;; $if_0 end ;; $if - i32.const 24448 + i32.const 24464 i32.load local.set $2 local.get $3 @@ -32097,7 +32097,7 @@ i32.store local.get $2 i32.const 128 - i32.const 14900 + i32.const 14902 local.get $3 call $_snprintf drop @@ -32134,7 +32134,7 @@ i32.store local.get $2 i32.const 128 - i32.const 14903 + i32.const 14905 local.get $3 call $_snprintf drop @@ -32174,14 +32174,14 @@ i32.const 16 i32.add global.set $33 - i32.const 24452 + i32.const 24468 i64.const 0 i64.store align=4 - i32.const 24460 + i32.const 24476 i64.const 0 i64.store align=4 local.get $0 - i32.const 25206 + i32.const 25222 i32.store local.get $0 i32.const 0 @@ -32193,12 +32193,12 @@ local.get $0 i64.load align=4 i64.store align=4 - i32.const 24468 + i32.const 24484 i32.const 1 local.get $1 call $__ZN6google8protobuf4util6StatusC2ENS1_5error4CodeENS0_11StringPieceE local.get $0 - i32.const 25206 + i32.const 25222 i32.store local.get $0 i32.const 0 @@ -32207,7 +32207,7 @@ local.get $0 i64.load align=4 i64.store align=4 - i32.const 24484 + i32.const 24500 i32.const 2 local.get $1 call $__ZN6google8protobuf4util6StatusC2ENS1_5error4CodeENS0_11StringPieceE @@ -32422,7 +32422,7 @@ i32.const 3 i32.store local.get $3 - i32.const 14906 + i32.const 14908 i32.store offset=4 local.get $3 i32.const 116 @@ -32434,7 +32434,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 14931 + i32.const 14933 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -43298,7 +43298,7 @@ i32.const 3 i32.store local.get $11 - i32.const 15018 + i32.const 15020 i32.store offset=4 local.get $11 i32.const 571 @@ -43310,7 +43310,7 @@ i32.const 0 i32.store offset=20 local.get $11 - i32.const 15060 + i32.const 15062 call $__ZN6google8protobuf8internal10LogMessagelsEPKc local.get $4 call $__ZN6google8protobuf8internal10LogMessagelsEi @@ -43347,7 +43347,7 @@ i32.const 3 i32.store local.get $1 - i32.const 15018 + i32.const 15020 i32.store offset=4 local.get $1 i32.const 534 @@ -43359,12 +43359,12 @@ i32.const 0 i32.store offset=20 local.get $1 - i32.const 15060 + i32.const 15062 call $__ZN6google8protobuf8internal10LogMessagelsEPKc local.get $0 i32.load offset=4 call $__ZN6google8protobuf8internal10LogMessagelsEj - i32.const 15090 + i32.const 15092 call $__ZN6google8protobuf8internal10LogMessagelsEPKc local.get $0 i32.load offset=12 @@ -43384,29 +43384,29 @@ i32.const 32 i32.add global.set $33 - i32.const 24384 + i32.const 24400 i32.load8_s i32.eqz if $if - i32.const 24384 + i32.const 24400 i32.load8_s i32.const 0 i32.ne i32.const 1 i32.xor if $if_0 - i32.const 24384 + i32.const 24400 i32.const 0 i32.store - i32.const 24384 - i32.const 24384 + i32.const 24400 + i32.const 24400 i32.load i32.const 1 i32.or i32.store end ;; $if_0 end ;; $if - i32.const 24528 + i32.const 24544 i32.load i32.const 7492 call $_pthread_equal @@ -43424,7 +43424,7 @@ i32.const 3 i32.store local.get $0 - i32.const 15018 + i32.const 15020 i32.store offset=4 local.get $0 i32.const 801 @@ -43436,7 +43436,7 @@ i32.const 0 i32.store offset=20 local.get $0 - i32.const 15102 + i32.const 15104 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $0 @@ -43445,43 +43445,43 @@ global.set $33 return end ;; $if_1 - i32.const 24376 + i32.const 24392 i32.load8_s i32.eqz if $if_3 - i32.const 24376 + i32.const 24392 i32.load8_s i32.const 0 i32.ne i32.const 1 i32.xor if $if_4 - i32.const 24360 + i32.const 24376 i64.const 0 i64.store - i32.const 24368 + i32.const 24384 i32.const 0 i32.store i32.const 118 - i32.const 24360 - call $__ZN6google8protobuf8internal13OnShutdownRunEPFvPKvES3_ i32.const 24376 + call $__ZN6google8protobuf8internal13OnShutdownRunEPFvPKvES3_ + i32.const 24392 i32.const 0 i32.store - i32.const 24376 - i32.const 24376 + i32.const 24392 + i32.const 24392 i32.load i32.const 1 i32.or i32.store end ;; $if_4 end ;; $if_3 - i32.const 24528 + i32.const 24544 i32.const 7492 i32.store i32.const 6672 call $__ZN6google8protobuf8internal12_GLOBAL__N_111InitSCC_DFSEPNS1_11SCCInfoBaseE - i32.const 24528 + i32.const 24544 i32.const 0 i32.store local.get $0 @@ -43573,31 +43573,31 @@ i32.const 50 i32.store offset=4 local.get $1 - i32.const 15267 + i32.const 15269 i64.load align=1 i64.store align=1 local.get $1 - i32.const 15275 + i32.const 15277 i64.load align=1 i64.store offset=8 align=1 local.get $1 - i32.const 15283 + i32.const 15285 i64.load align=1 i64.store offset=16 align=1 local.get $1 - i32.const 15291 + i32.const 15293 i64.load align=1 i64.store offset=24 align=1 local.get $1 - i32.const 15299 + i32.const 15301 i64.load align=1 i64.store offset=32 align=1 local.get $1 - i32.const 15307 + i32.const 15309 i64.load align=1 i64.store offset=40 align=1 local.get $1 - i32.const 15315 + i32.const 15317 i32.load16_s align=1 i32.store16 offset=48 align=1 local.get $1 @@ -43617,7 +43617,7 @@ i32.load local.set $2 local.get $0 - i32.const 25197 + i32.const 25213 i32.load8_s i32.const 1 i32.and @@ -43734,7 +43734,7 @@ i32.const 3 i32.store local.get $4 - i32.const 15197 + i32.const 15199 i32.store offset=4 local.get $4 i32.const 373 @@ -43746,7 +43746,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 15229 + i32.const 15231 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -43829,7 +43829,7 @@ i32.const 3 i32.store local.get $3 - i32.const 15350 + i32.const 15352 i32.store offset=4 local.get $3 i32.const 59 @@ -43841,9 +43841,9 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 15384 + i32.const 15386 call $__ZN6google8protobuf8internal10LogMessagelsEPKc - i32.const 15501 + i32.const 15503 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -45526,7 +45526,7 @@ i32.const 3 i32.store local.get $4 - i32.const 15549 + i32.const 15551 i32.store offset=4 local.get $4 i32.const 507 @@ -45538,7 +45538,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 15585 + i32.const 15587 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -45738,7 +45738,7 @@ i32.const 3 i32.store local.get $4 - i32.const 15549 + i32.const 15551 i32.store offset=4 local.get $4 i32.const 516 @@ -45750,7 +45750,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 15585 + i32.const 15587 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -46429,13 +46429,13 @@ i32.load offset=8 i32.store offset=8 end ;; $if_0 - i32.const 15631 + i32.const 15633 i32.const 0 local.get $2 i32.const 1 i32.eq select - i32.const 15643 + i32.const 15645 local.get $2 select local.set $3 @@ -46447,7 +46447,7 @@ i32.const 2 i32.store local.get $1 - i32.const 15549 + i32.const 15551 i32.store offset=4 local.get $1 i32.const 626 @@ -46459,21 +46459,21 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 15657 + i32.const 15659 call $__ZN6google8protobuf8internal10LogMessagelsEPKc local.get $0 call $__ZN6google8protobuf8internal10LogMessagelsERKNSt3__212basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEE - i32.const 15670 + i32.const 15672 call $__ZN6google8protobuf8internal10LogMessagelsEPKc - i32.const 15689 + i32.const 15691 call $__ZN6google8protobuf8internal10LogMessagelsEPKc local.get $3 call $__ZN6google8protobuf8internal10LogMessagelsEPKc - i32.const 15706 + i32.const 15708 call $__ZN6google8protobuf8internal10LogMessagelsEPKc - i32.const 15719 + i32.const 15721 call $__ZN6google8protobuf8internal10LogMessagelsEPKc - i32.const 15775 + i32.const 15777 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -47243,7 +47243,7 @@ i32.const 3 i32.store local.get $2 - i32.const 15783 + i32.const 15785 i32.store offset=4 local.get $2 i32.const 591 @@ -47255,7 +47255,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 15818 + i32.const 15820 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -47398,7 +47398,7 @@ i32.const 2 i32.store local.get $1 - i32.const 15783 + i32.const 15785 i32.store offset=4 local.get $1 i32.const 190 @@ -47410,12 +47410,12 @@ i32.const 0 i32.store offset=20 local.get $1 - i32.const 15855 + i32.const 15857 call $__ZN6google8protobuf8internal10LogMessagelsEPKc local.get $0 i32.load offset=36 call $__ZN6google8protobuf8internal10LogMessagelsEi - i32.const 15922 + i32.const 15924 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $1 @@ -49879,7 +49879,7 @@ i32.const 3 i32.store local.get $2 - i32.const 16067 + i32.const 16069 i32.store offset=4 local.get $2 i32.const 132 @@ -49891,9 +49891,9 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 16147 + i32.const 16149 call $__ZN6google8protobuf8internal10LogMessagelsEPKc - i32.const 16191 + i32.const 16193 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -49914,7 +49914,7 @@ i32.const 3 i32.store local.get $2 - i32.const 16067 + i32.const 16069 i32.store offset=4 local.get $2 i32.const 134 @@ -49926,7 +49926,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 16246 + i32.const 16248 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -49953,7 +49953,7 @@ i32.const 3 i32.store local.get $3 - i32.const 16067 + i32.const 16069 i32.store offset=4 local.get $3 i32.const 135 @@ -49965,7 +49965,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 16116 + i32.const 16118 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -50021,7 +50021,7 @@ i32.const 3 i32.store local.get $3 - i32.const 16067 + i32.const 16069 i32.store offset=4 local.get $3 i32.const 151 @@ -50033,7 +50033,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 16336 + i32.const 16338 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -50107,7 +50107,7 @@ i32.const 2 i32.store local.get $5 - i32.const 16067 + i32.const 16069 i32.store offset=4 local.get $5 i32.const 164 @@ -50119,9 +50119,9 @@ i32.const 0 i32.store offset=20 local.get $5 - i32.const 16413 + i32.const 16415 call $__ZN6google8protobuf8internal10LogMessagelsEPKc - i32.const 16463 + i32.const 16465 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $5 @@ -50196,7 +50196,7 @@ i32.const 3 i32.store local.get $2 - i32.const 16067 + i32.const 16069 i32.store offset=4 local.get $2 i32.const 182 @@ -50208,7 +50208,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 16116 + i32.const 16118 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -50229,7 +50229,7 @@ i32.const 3 i32.store local.get $2 - i32.const 16067 + i32.const 16069 i32.store offset=4 local.get $2 i32.const 183 @@ -50241,7 +50241,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 16336 + i32.const 16338 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -50271,7 +50271,7 @@ i32.const 3 i32.store local.get $3 - i32.const 16067 + i32.const 16069 i32.store offset=4 local.get $3 i32.const 184 @@ -50283,7 +50283,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 16368 + i32.const 16370 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -50344,7 +50344,7 @@ i32.const 3 i32.store local.get $1 - i32.const 16067 + i32.const 16069 i32.store offset=4 local.get $1 i32.const 189 @@ -50356,7 +50356,7 @@ i32.const 0 i32.store offset=20 local.get $1 - i32.const 16336 + i32.const 16338 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $1 @@ -50411,7 +50411,7 @@ i32.add local.tee $3 i32.const 1024 - i32.const 15651 + i32.const 15653 local.get $2 call $_vsnprintf local.tee $4 @@ -50444,7 +50444,7 @@ i32.store local.get $3 local.get $5 - i32.const 15651 + i32.const 15653 local.get $2 call $_vsnprintf local.tee $1 @@ -50991,7 +50991,7 @@ i32.const 3 i32.store local.get $0 - i32.const 16525 + i32.const 16527 i32.store offset=4 local.get $0 i32.const 47 @@ -51003,7 +51003,7 @@ i32.const 0 i32.store offset=20 local.get $0 - i32.const 16564 + i32.const 16566 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $0 @@ -51034,7 +51034,7 @@ i32.const -4096 i32.gt_u if $if - i32.const 24596 + i32.const 24612 i32.const 0 local.get $0 i32.sub @@ -51143,7 +51143,7 @@ i32.const -4096 i32.gt_u if $if (result i32) - i32.const 24596 + i32.const 24612 i32.const 0 local.get $0 i32.sub @@ -51171,7 +51171,7 @@ (func $___errno_location (type $14) (result i32) - i32.const 24596 + i32.const 24612 ) (func $___stdio_write (type $2) @@ -51242,7 +51242,7 @@ i32.const -4096 i32.gt_u if $if - i32.const 24596 + i32.const 24612 i32.const 0 local.get $1 i32.sub @@ -51319,7 +51319,7 @@ i32.const -4096 i32.gt_u if $if_1 - i32.const 24596 + i32.const 24612 i32.const 0 local.get $1 i32.sub @@ -51824,7 +51824,7 @@ br_if $block_0 local.get $1 if $if (result i32) - i32.const 24596 + i32.const 24612 i32.const 75 i32.store i32.const -1 @@ -51972,13 +51972,13 @@ local.tee $1 i64.reinterpret_f64 local.set $25 - i32.const 16748 + i32.const 16750 local.set $18 i32.const 1 else + i32.const 16753 + i32.const 16756 i32.const 16751 - i32.const 16754 - i32.const 16749 local.get $4 i32.const 1 i32.and @@ -52001,8 +52001,8 @@ i64.const 9218868437227405312 i64.eq if $if_0 (result i32) - i32.const 16775 - i32.const 16779 + i32.const 16777 + i32.const 16781 local.get $5 i32.const 32 i32.and @@ -52010,8 +52010,8 @@ i32.ne local.tee $3 select - i32.const 16767 - i32.const 16771 + i32.const 16769 + i32.const 16773 local.get $3 select local.get $1 @@ -53359,7 +53359,7 @@ i32.eqz if $if_54 local.get $0 - i32.const 19547 + i32.const 19549 i32.const 1 call $_out end ;; $if_54 @@ -53518,7 +53518,7 @@ br $block_4 end ;; $if_61 local.get $0 - i32.const 19547 + i32.const 19549 i32.const 1 call $_out local.get $6 @@ -53892,7 +53892,7 @@ i32.sub i32.gt_s if $if_0 (result i32) - i32.const 24596 + i32.const 24612 i32.const 75 i32.store i32.const -1 @@ -54608,7 +54608,7 @@ local.set $1 i32.const 0 local.set $12 - i32.const 16731 + i32.const 16733 local.set $8 br $block_14 end ;; $block_25 @@ -54624,13 +54624,13 @@ i64.sub local.tee $25 i64.store - i32.const 16731 + i32.const 16733 local.set $8 i32.const 1 else - i32.const 16732 + i32.const 16734 + i32.const 16735 i32.const 16733 - i32.const 16731 local.get $7 i32.const 1 i32.and @@ -54654,7 +54654,7 @@ local.set $25 i32.const 0 local.set $12 - i32.const 16731 + i32.const 16733 local.set $8 br $block_16 end ;; $block_23 @@ -54670,7 +54670,7 @@ local.set $5 i32.const 0 local.set $12 - i32.const 16731 + i32.const 16733 local.set $8 local.get $18 local.set $1 @@ -54679,7 +54679,7 @@ local.get $10 i32.load local.tee $5 - i32.const 16741 + i32.const 16743 local.get $5 select local.tee $6 @@ -54699,7 +54699,7 @@ local.set $5 i32.const 0 local.set $12 - i32.const 16731 + i32.const 16733 local.set $8 local.get $1 local.get $6 @@ -54760,7 +54760,7 @@ local.set $5 i32.const 0 local.set $12 - i32.const 16731 + i32.const 16733 local.set $8 local.get $18 local.set $1 @@ -54788,11 +54788,11 @@ local.tee $8 select local.set $12 - i32.const 16731 + i32.const 16733 local.get $6 i32.const 4 i32.shr_u - i32.const 16731 + i32.const 16733 i32.add local.get $8 select @@ -55644,7 +55644,7 @@ i32.const 1 br $block else - i32.const 24596 + i32.const 24612 i32.const 84 i32.store i32.const -1 @@ -55749,7 +55749,7 @@ i32.store8 offset=3 i32.const 4 else - i32.const 24596 + i32.const 24612 i32.const 84 i32.store i32.const -1 @@ -55977,7 +55977,7 @@ local.get $1 i32.store local.get $0 - i32.const 14780 + i32.const 14782 local.get $2 call $_vfprintf drop @@ -56094,9 +56094,9 @@ end ;; $if_1 local.set $0 block $block_0 (result i32) - i32.const 24600 + i32.const 24616 call $___lock - i32.const 24608 + i32.const 24624 i32.load local.tee $1 end ;; $block_0 @@ -56130,7 +56130,7 @@ br_if $loop end ;; $loop end ;; $if_2 - i32.const 24600 + i32.const 24616 call $___unlock end ;; $if local.get $0 @@ -56312,7 +56312,7 @@ i32.const 245 i32.lt_u if $if (result i32) - i32.const 24612 + i32.const 24628 i32.load local.tee $6 i32.const 16 @@ -56344,7 +56344,7 @@ local.tee $0 i32.const 3 i32.shl - i32.const 24652 + i32.const 24668 i32.add local.tee $3 i32.load offset=8 @@ -56357,7 +56357,7 @@ local.get $3 i32.eq if $if_1 - i32.const 24612 + i32.const 24628 local.get $6 i32.const 1 local.get $0 @@ -56367,7 +56367,7 @@ i32.and i32.store else - i32.const 24628 + i32.const 24644 i32.load local.get $4 i32.gt_u @@ -56412,7 +56412,7 @@ return end ;; $if_0 local.get $14 - i32.const 24620 + i32.const 24636 i32.load local.tee $13 i32.gt_u @@ -56491,7 +56491,7 @@ local.tee $0 i32.const 3 i32.shl - i32.const 24652 + i32.const 24668 i32.add local.tee $1 i32.load offset=8 @@ -56504,7 +56504,7 @@ local.get $1 i32.eq if $if_6 - i32.const 24612 + i32.const 24628 local.get $6 i32.const 1 local.get $0 @@ -56515,7 +56515,7 @@ local.tee $8 i32.store else - i32.const 24628 + i32.const 24644 i32.load local.get $2 i32.gt_u @@ -56565,7 +56565,7 @@ i32.store local.get $13 if $if_9 - i32.const 24632 + i32.const 24648 i32.load local.set $10 local.get $13 @@ -56574,7 +56574,7 @@ local.tee $0 i32.const 3 i32.shl - i32.const 24652 + i32.const 24668 i32.add local.set $2 local.get $8 @@ -56584,7 +56584,7 @@ local.tee $0 i32.and if $if_10 - i32.const 24628 + i32.const 24644 i32.load local.get $2 i32.const 8 @@ -56602,7 +56602,7 @@ local.set $4 end ;; $if_11 else - i32.const 24612 + i32.const 24628 local.get $0 local.get $8 i32.or @@ -56627,10 +56627,10 @@ local.get $2 i32.store offset=12 end ;; $if_9 - i32.const 24620 + i32.const 24636 local.get $6 i32.store - i32.const 24632 + i32.const 24648 local.get $3 i32.store local.get $17 @@ -56638,7 +56638,7 @@ local.get $9 return end ;; $if_5 - i32.const 24616 + i32.const 24632 i32.load local.tee $11 if $if_12 (result i32) @@ -56701,7 +56701,7 @@ i32.add i32.const 2 i32.shl - i32.const 24916 + i32.const 24932 i32.add i32.load local.tee $0 @@ -56751,7 +56751,7 @@ br $loop end ;; $block end ;; $loop - i32.const 24628 + i32.const 24644 i32.load local.tee $7 local.get $9 @@ -56875,7 +56875,7 @@ local.tee $1 i32.const 2 i32.shl - i32.const 24916 + i32.const 24932 i32.add local.tee $0 i32.load @@ -56888,7 +56888,7 @@ local.get $3 i32.eqz if $if_25 - i32.const 24616 + i32.const 24632 local.get $11 i32.const 1 local.get $1 @@ -56900,7 +56900,7 @@ br $block_2 end ;; $if_25 else - i32.const 24628 + i32.const 24644 i32.load local.get $18 i32.gt_u @@ -56925,7 +56925,7 @@ br_if $block_2 end ;; $if_26 end ;; $if_24 - i32.const 24628 + i32.const 24644 i32.load local.tee $0 local.get $3 @@ -56958,7 +56958,7 @@ i32.load offset=20 local.tee $0 if $if_30 - i32.const 24628 + i32.const 24644 i32.load local.get $0 i32.gt_u @@ -57014,7 +57014,7 @@ i32.store local.get $13 if $if_33 - i32.const 24632 + i32.const 24648 i32.load local.set $4 local.get $13 @@ -57023,7 +57023,7 @@ local.tee $0 i32.const 3 i32.shl - i32.const 24652 + i32.const 24668 i32.add local.set $3 local.get $6 @@ -57033,7 +57033,7 @@ local.tee $0 i32.and if $if_34 - i32.const 24628 + i32.const 24644 i32.load local.get $3 i32.const 8 @@ -57051,7 +57051,7 @@ local.set $12 end ;; $if_35 else - i32.const 24612 + i32.const 24628 local.get $0 local.get $6 i32.or @@ -57076,10 +57076,10 @@ local.get $3 i32.store offset=12 end ;; $if_33 - i32.const 24620 + i32.const 24636 local.get $10 i32.store - i32.const 24632 + i32.const 24648 local.get $5 i32.store end ;; $if_32 @@ -57110,7 +57110,7 @@ i32.const -8 i32.and local.set $15 - i32.const 24616 + i32.const 24632 i32.load local.tee $4 if $if_37 (result i32) @@ -57190,7 +57190,7 @@ local.tee $19 i32.const 2 i32.shl - i32.const 24916 + i32.const 24932 i32.add i32.load local.tee $0 @@ -57355,7 +57355,7 @@ i32.add i32.const 2 i32.shl - i32.const 24916 + i32.const 24932 i32.add i32.load local.set $0 @@ -57418,13 +57418,13 @@ local.get $2 if $if_47 (result i32) local.get $7 - i32.const 24620 + i32.const 24636 i32.load local.get $15 i32.sub i32.lt_u if $if_48 (result i32) - i32.const 24628 + i32.const 24644 i32.load local.tee $12 local.get $2 @@ -57548,7 +57548,7 @@ local.tee $3 i32.const 2 i32.shl - i32.const 24916 + i32.const 24932 i32.add local.tee $0 i32.load @@ -57561,7 +57561,7 @@ local.get $13 i32.eqz if $if_60 - i32.const 24616 + i32.const 24632 local.get $4 i32.const 1 local.get $3 @@ -57574,7 +57574,7 @@ br $block_9 end ;; $if_60 else - i32.const 24628 + i32.const 24644 i32.load local.get $8 i32.gt_u @@ -57603,7 +57603,7 @@ end ;; $if_62 end ;; $if_61 end ;; $if_59 - i32.const 24628 + i32.const 24644 i32.load local.tee $0 local.get $13 @@ -57636,7 +57636,7 @@ i32.load offset=20 local.tee $0 if $if_66 - i32.const 24628 + i32.const 24644 i32.load local.get $0 i32.gt_u @@ -57710,10 +57710,10 @@ local.get $0 i32.const 3 i32.shl - i32.const 24652 + i32.const 24668 i32.add local.set $3 - i32.const 24612 + i32.const 24628 i32.load local.tee $1 i32.const 1 @@ -57722,7 +57722,7 @@ local.tee $0 i32.and if $if_70 - i32.const 24628 + i32.const 24644 i32.load local.get $3 i32.const 8 @@ -57740,7 +57740,7 @@ local.set $11 end ;; $if_71 else - i32.const 24612 + i32.const 24628 local.get $0 local.get $1 i32.or @@ -57836,7 +57836,7 @@ local.tee $4 i32.const 2 i32.shl - i32.const 24916 + i32.const 24932 i32.add local.set $3 local.get $5 @@ -57856,7 +57856,7 @@ i32.and i32.eqz if $if_74 - i32.const 24616 + i32.const 24632 local.get $0 local.get $1 i32.or @@ -57937,7 +57937,7 @@ unreachable end ;; $if_76 end ;; $loop_4 - i32.const 24628 + i32.const 24644 i32.load local.get $4 i32.gt_u @@ -57960,7 +57960,7 @@ end ;; $if_78 end ;; $block_11 end ;; $if_75 - i32.const 24628 + i32.const 24644 i32.load local.tee $0 local.get $6 @@ -58013,13 +58013,13 @@ local.set $11 block $block_12 block $block_13 - i32.const 24620 + i32.const 24636 i32.load local.tee $3 local.get $11 i32.ge_u if $if_80 - i32.const 24632 + i32.const 24648 i32.load local.set $0 local.get $3 @@ -58029,13 +58029,13 @@ i32.const 15 i32.gt_u if $if_81 - i32.const 24632 + i32.const 24648 local.get $0 local.get $11 i32.add local.tee $1 i32.store - i32.const 24620 + i32.const 24636 local.get $2 i32.store local.get $1 @@ -58054,10 +58054,10 @@ i32.or i32.store offset=4 else - i32.const 24620 + i32.const 24636 i32.const 0 i32.store - i32.const 24632 + i32.const 24648 i32.const 0 i32.store local.get $0 @@ -58078,13 +58078,13 @@ br $block_13 end ;; $if_80 block $block_14 - i32.const 24624 + i32.const 24640 i32.load local.tee $12 local.get $11 i32.gt_u if $if_82 - i32.const 24624 + i32.const 24640 local.get $12 local.get $11 i32.sub @@ -58092,31 +58092,31 @@ i32.store br $block_14 end ;; $if_82 - i32.const 25084 + i32.const 25100 i32.load if $if_83 (result i32) - i32.const 25092 + i32.const 25108 i32.load else - i32.const 25092 + i32.const 25108 i32.const 4096 i32.store - i32.const 25088 + i32.const 25104 i32.const 4096 i32.store - i32.const 25096 + i32.const 25112 i32.const -1 i32.store - i32.const 25100 + i32.const 25116 i32.const -1 i32.store - i32.const 25104 + i32.const 25120 i32.const 0 i32.store - i32.const 25056 + i32.const 25072 i32.const 0 i32.store - i32.const 25084 + i32.const 25100 local.get $17 i32.const -16 i32.and @@ -58143,11 +58143,11 @@ if $if_84 br $block_12 end ;; $if_84 - i32.const 25052 + i32.const 25068 i32.load local.tee $2 if $if_85 - i32.const 25044 + i32.const 25060 i32.load local.tee $1 local.get $8 @@ -58169,7 +58169,7 @@ local.set $7 block $block_15 block $block_16 - i32.const 25056 + i32.const 25072 i32.load i32.const 4 i32.and @@ -58180,12 +58180,12 @@ block $block_17 block $block_18 block $block_19 - i32.const 24636 + i32.const 24652 i32.load local.tee $1 i32.eqz br_if $block_19 - i32.const 25060 + i32.const 25076 local.set $2 loop $loop_5 block $block_20 @@ -58248,11 +58248,11 @@ if $if_90 (result i32) i32.const 0 else - i32.const 25044 + i32.const 25060 i32.load local.tee $4 local.get $0 - i32.const 25088 + i32.const 25104 i32.load local.tee $2 i32.const -1 @@ -58283,7 +58283,7 @@ i32.gt_u i32.and if $if_91 (result i32) - i32.const 25052 + i32.const 25068 i32.load local.tee $1 if $if_92 @@ -58341,7 +58341,7 @@ end ;; $if_95 unreachable end ;; $if_94 - i32.const 25092 + i32.const 25108 i32.load local.tee $1 local.get $6 @@ -58378,8 +58378,8 @@ end ;; $if_96 local.set $3 end ;; $block_17 - i32.const 25056 - i32.const 25056 + i32.const 25072 + i32.const 25072 i32.load i32.const 4 i32.or @@ -58434,28 +58434,28 @@ end ;; $if_97 br $block_15 end ;; $block_16 - i32.const 25044 - i32.const 25044 + i32.const 25060 + i32.const 25060 i32.load local.get $3 i32.add local.tee $1 i32.store local.get $1 - i32.const 25048 + i32.const 25064 i32.load i32.gt_u if $if_98 - i32.const 25048 + i32.const 25064 local.get $1 i32.store end ;; $if_98 - i32.const 24636 + i32.const 24652 i32.load local.tee $6 if $if_99 block $block_21 - i32.const 25060 + i32.const 25076 local.set $2 block $block_22 block $block_23 @@ -58513,7 +58513,7 @@ local.tee $1 i32.add local.set $2 - i32.const 24624 + i32.const 24640 i32.load local.get $3 i32.add @@ -58521,10 +58521,10 @@ local.get $1 i32.sub local.set $1 - i32.const 24636 + i32.const 24652 local.get $2 i32.store - i32.const 24624 + i32.const 24640 local.get $1 i32.store local.get $2 @@ -58537,8 +58537,8 @@ i32.add i32.const 40 i32.store offset=4 - i32.const 24640 - i32.const 25100 + i32.const 24656 + i32.const 25116 i32.load i32.store br $block_21 @@ -58546,12 +58546,12 @@ end ;; $if_100 end ;; $block_22 local.get $0 - i32.const 24628 + i32.const 24644 i32.load local.tee $2 i32.lt_u if $if_102 - i32.const 24628 + i32.const 24644 local.get $0 i32.store local.get $0 @@ -58561,7 +58561,7 @@ local.get $3 i32.add local.set $1 - i32.const 25060 + i32.const 25076 local.set $8 block $block_24 block $block_25 @@ -58642,14 +58642,14 @@ local.get $6 i32.eq if $if_104 - i32.const 24624 - i32.const 24624 + i32.const 24640 + i32.const 24640 i32.load local.get $7 i32.add local.tee $0 i32.store - i32.const 24636 + i32.const 24652 local.get $5 i32.store local.get $5 @@ -58659,19 +58659,19 @@ i32.store offset=4 else block $block_26 - i32.const 24632 + i32.const 24648 i32.load local.get $3 i32.eq if $if_105 - i32.const 24620 - i32.const 24620 + i32.const 24636 + i32.const 24636 i32.load local.get $7 i32.add local.tee $0 i32.store - i32.const 24632 + i32.const 24648 local.get $5 i32.store local.get $5 @@ -58716,7 +58716,7 @@ local.get $1 i32.const 3 i32.shl - i32.const 24652 + i32.const 24668 i32.add local.tee $0 i32.ne @@ -58740,8 +58740,8 @@ local.get $6 i32.eq if $if_110 - i32.const 24612 - i32.const 24612 + i32.const 24628 + i32.const 24628 i32.load i32.const 1 local.get $1 @@ -58899,7 +58899,7 @@ local.tee $1 i32.const 2 i32.shl - i32.const 24916 + i32.const 24932 i32.add local.tee $0 i32.load @@ -58912,8 +58912,8 @@ i32.store local.get $16 br_if $block_32 - i32.const 24616 - i32.const 24616 + i32.const 24632 + i32.const 24632 i32.load i32.const 1 local.get $1 @@ -58925,7 +58925,7 @@ br $block_27 end ;; $block_32 else - i32.const 24628 + i32.const 24644 i32.load local.get $8 i32.gt_u @@ -58950,7 +58950,7 @@ br_if $block_27 end ;; $if_122 end ;; $if_121 - i32.const 24628 + i32.const 24644 i32.load local.tee $0 local.get $16 @@ -58984,7 +58984,7 @@ local.tee $0 i32.eqz br_if $block_27 - i32.const 24628 + i32.const 24644 i32.load local.get $0 i32.gt_u @@ -59036,10 +59036,10 @@ local.get $0 i32.const 3 i32.shl - i32.const 24652 + i32.const 24668 i32.add local.set $2 - i32.const 24612 + i32.const 24628 i32.load local.tee $1 i32.const 1 @@ -59049,7 +59049,7 @@ i32.and if $if_128 block $block_33 - i32.const 24628 + i32.const 24644 i32.load local.get $2 i32.const 8 @@ -59068,7 +59068,7 @@ call $_abort end ;; $block_33 else - i32.const 24612 + i32.const 24628 local.get $0 local.get $1 i32.or @@ -59164,7 +59164,7 @@ local.tee $3 i32.const 2 i32.shl - i32.const 24916 + i32.const 24932 i32.add local.set $2 local.get $5 @@ -59176,7 +59176,7 @@ local.get $5 i32.const 0 i32.store offset=16 - i32.const 24616 + i32.const 24632 i32.load local.tee $1 i32.const 1 @@ -59186,7 +59186,7 @@ i32.and i32.eqz if $if_132 - i32.const 24616 + i32.const 24632 local.get $0 local.get $1 i32.or @@ -59267,7 +59267,7 @@ unreachable end ;; $if_134 end ;; $loop_9 - i32.const 24628 + i32.const 24644 i32.load local.get $2 i32.gt_u @@ -59290,7 +59290,7 @@ end ;; $if_136 end ;; $block_34 end ;; $if_133 - i32.const 24628 + i32.const 24644 i32.load local.tee $0 local.get $9 @@ -59330,7 +59330,7 @@ return end ;; $if_103 end ;; $block_24 - i32.const 25060 + i32.const 25076 local.set $2 loop $loop_10 block $block_35 @@ -59355,7 +59355,7 @@ br $loop_10 end ;; $block_35 end ;; $loop_10 - i32.const 24636 + i32.const 24652 i32.const 0 local.get $0 i32.const 8 @@ -59374,7 +59374,7 @@ i32.add local.tee $4 i32.store - i32.const 24624 + i32.const 24640 local.get $3 i32.const -40 i32.add @@ -59393,8 +59393,8 @@ i32.add i32.const 40 i32.store offset=4 - i32.const 24640 - i32.const 25100 + i32.const 24656 + i32.const 25116 i32.load i32.store local.get $6 @@ -59427,23 +59427,23 @@ i32.const 27 i32.store offset=4 local.get $2 - i32.const 25060 + i32.const 25076 i64.load align=4 i64.store offset=8 align=4 local.get $2 - i32.const 25068 + i32.const 25084 i64.load align=4 i64.store offset=16 align=4 - i32.const 25060 + i32.const 25076 local.get $0 i32.store - i32.const 25064 + i32.const 25080 local.get $3 i32.store - i32.const 25072 + i32.const 25088 i32.const 0 i32.store - i32.const 25068 + i32.const 25084 local.get $2 i32.const 8 i32.add @@ -59502,10 +59502,10 @@ local.get $0 i32.const 3 i32.shl - i32.const 24652 + i32.const 24668 i32.add local.set $2 - i32.const 24612 + i32.const 24628 i32.load local.tee $1 i32.const 1 @@ -59514,7 +59514,7 @@ local.tee $0 i32.and if $if_142 - i32.const 24628 + i32.const 24644 i32.load local.get $2 i32.const 8 @@ -59532,7 +59532,7 @@ local.set $5 end ;; $if_143 else - i32.const 24612 + i32.const 24628 local.get $0 local.get $1 i32.or @@ -59628,7 +59628,7 @@ local.tee $3 i32.const 2 i32.shl - i32.const 24916 + i32.const 24932 i32.add local.set $2 local.get $6 @@ -59640,7 +59640,7 @@ local.get $6 i32.const 0 i32.store offset=16 - i32.const 24616 + i32.const 24632 i32.load local.tee $1 i32.const 1 @@ -59650,7 +59650,7 @@ i32.and i32.eqz if $if_146 - i32.const 24616 + i32.const 24632 local.get $0 local.get $1 i32.or @@ -59731,7 +59731,7 @@ unreachable end ;; $if_148 end ;; $loop_12 - i32.const 24628 + i32.const 24644 i32.load local.get $3 i32.gt_u @@ -59754,7 +59754,7 @@ end ;; $if_150 end ;; $block_36 end ;; $if_147 - i32.const 24628 + i32.const 24644 i32.load local.tee $0 local.get $10 @@ -59787,7 +59787,7 @@ end ;; $if_140 end ;; $block_21 else - i32.const 24628 + i32.const 24644 i32.load local.tee $1 i32.eqz @@ -59796,37 +59796,25 @@ i32.lt_u i32.or if $if_152 - i32.const 24628 + i32.const 24644 local.get $0 i32.store end ;; $if_152 - i32.const 25060 + i32.const 25076 local.get $0 i32.store - i32.const 25064 + i32.const 25080 local.get $3 i32.store - i32.const 25072 + i32.const 25088 i32.const 0 i32.store - i32.const 24648 - i32.const 25084 - i32.load - i32.store - i32.const 24644 - i32.const -1 - i32.store i32.const 24664 - i32.const 24652 - i32.store - i32.const 24660 - i32.const 24652 - i32.store - i32.const 24672 - i32.const 24660 + i32.const 25100 + i32.load i32.store - i32.const 24668 i32.const 24660 + i32.const -1 i32.store i32.const 24680 i32.const 24668 @@ -60008,7 +59996,19 @@ i32.const 24908 i32.const 24900 i32.store - i32.const 24636 + i32.const 24920 + i32.const 24908 + i32.store + i32.const 24916 + i32.const 24908 + i32.store + i32.const 24928 + i32.const 24916 + i32.store + i32.const 24924 + i32.const 24916 + i32.store + i32.const 24652 i32.const 0 local.get $0 i32.const 8 @@ -60027,7 +60027,7 @@ i32.add local.tee $4 i32.store - i32.const 24624 + i32.const 24640 local.get $3 i32.const -40 i32.add @@ -60046,18 +60046,18 @@ i32.add i32.const 40 i32.store offset=4 - i32.const 24640 - i32.const 25100 + i32.const 24656 + i32.const 25116 i32.load i32.store end ;; $if_99 - i32.const 24624 + i32.const 24640 i32.load local.tee $0 local.get $11 i32.gt_u if $if_153 - i32.const 24624 + i32.const 24640 local.get $0 local.get $11 i32.sub @@ -60066,13 +60066,13 @@ br $block_14 end ;; $if_153 end ;; $block_15 - i32.const 24596 + i32.const 24612 i32.const 12 i32.store br $block_12 end ;; $block_14 - i32.const 24636 - i32.const 24636 + i32.const 24652 + i32.const 24652 i32.load local.tee $0 local.get $11 @@ -60130,7 +60130,7 @@ i32.const -8 i32.add local.tee $5 - i32.const 24628 + i32.const 24644 i32.load local.tee $11 i32.lt_u @@ -60189,7 +60189,7 @@ local.get $10 i32.add local.set $5 - i32.const 24632 + i32.const 24648 i32.load local.get $0 i32.eq @@ -60209,7 +60209,7 @@ local.set $1 br $block end ;; $if_6 - i32.const 24620 + i32.const 24636 local.get $5 i32.store local.get $7 @@ -60246,7 +60246,7 @@ local.get $2 i32.const 3 i32.shl - i32.const 24652 + i32.const 24668 i32.add local.tee $4 i32.ne @@ -60269,8 +60269,8 @@ local.get $3 i32.eq if $if_11 - i32.const 24612 - i32.const 24612 + i32.const 24628 + i32.const 24628 i32.load i32.const 1 local.get $2 @@ -60436,7 +60436,7 @@ local.tee $2 i32.const 2 i32.shl - i32.const 24916 + i32.const 24932 i32.add local.tee $6 i32.load @@ -60449,8 +60449,8 @@ local.get $8 i32.eqz if $if_24 - i32.const 24616 - i32.const 24616 + i32.const 24632 + i32.const 24632 i32.load i32.const 1 local.get $2 @@ -60467,7 +60467,7 @@ br $block end ;; $if_24 else - i32.const 24628 + i32.const 24644 i32.load local.get $13 i32.gt_u @@ -60500,7 +60500,7 @@ end ;; $if_26 end ;; $if_25 end ;; $if_23 - i32.const 24628 + i32.const 24644 i32.load local.tee $6 local.get $8 @@ -60533,7 +60533,7 @@ i32.load offset=20 local.tee $2 if $if_30 - i32.const 24628 + i32.const 24644 i32.load local.get $2 i32.gt_u @@ -60603,19 +60603,19 @@ local.get $1 i32.store else - i32.const 24636 + i32.const 24652 i32.load local.get $7 i32.eq if $if_35 - i32.const 24624 - i32.const 24624 + i32.const 24640 + i32.const 24640 i32.load local.get $1 i32.add local.tee $0 i32.store - i32.const 24636 + i32.const 24652 local.get $3 i32.store local.get $3 @@ -60624,33 +60624,33 @@ i32.or i32.store offset=4 local.get $3 - i32.const 24632 + i32.const 24648 i32.load i32.ne if $if_36 return end ;; $if_36 - i32.const 24632 + i32.const 24648 i32.const 0 i32.store - i32.const 24620 + i32.const 24636 i32.const 0 i32.store return end ;; $if_35 - i32.const 24632 + i32.const 24648 i32.load local.get $7 i32.eq if $if_37 - i32.const 24620 - i32.const 24620 + i32.const 24636 + i32.const 24636 i32.load local.get $1 i32.add local.tee $0 i32.store - i32.const 24632 + i32.const 24648 local.get $4 i32.store local.get $3 @@ -60689,12 +60689,12 @@ local.get $6 i32.const 3 i32.shl - i32.const 24652 + i32.const 24668 i32.add local.tee $0 i32.ne if $if_39 - i32.const 24628 + i32.const 24644 i32.load local.get $2 i32.gt_u @@ -60713,8 +60713,8 @@ local.get $2 i32.eq if $if_42 - i32.const 24612 - i32.const 24612 + i32.const 24628 + i32.const 24628 i32.load i32.const 1 local.get $6 @@ -60734,7 +60734,7 @@ i32.add local.set $16 else - i32.const 24628 + i32.const 24644 i32.load local.get $1 i32.gt_u @@ -60817,7 +60817,7 @@ br $loop_0 end ;; $block_4 end ;; $loop_0 - i32.const 24628 + i32.const 24644 i32.load local.get $1 i32.gt_u @@ -60832,7 +60832,7 @@ end ;; $if_49 end ;; $block_3 else - i32.const 24628 + i32.const 24644 i32.load local.get $7 i32.load offset=8 @@ -60872,7 +60872,7 @@ local.tee $0 i32.const 2 i32.shl - i32.const 24916 + i32.const 24932 i32.add local.tee $1 i32.load @@ -60885,8 +60885,8 @@ local.get $9 i32.eqz if $if_55 - i32.const 24616 - i32.const 24616 + i32.const 24632 + i32.const 24632 i32.load i32.const 1 local.get $0 @@ -60898,7 +60898,7 @@ br $block_2 end ;; $if_55 else - i32.const 24628 + i32.const 24644 i32.load local.get $8 i32.gt_u @@ -60924,7 +60924,7 @@ br_if $block_2 end ;; $if_56 end ;; $if_54 - i32.const 24628 + i32.const 24644 i32.load local.tee $1 local.get $9 @@ -60957,7 +60957,7 @@ i32.load offset=20 local.tee $0 if $if_60 - i32.const 24628 + i32.const 24644 i32.load local.get $0 i32.gt_u @@ -60985,12 +60985,12 @@ i32.add local.get $5 i32.store - i32.const 24632 + i32.const 24648 i32.load local.get $3 i32.eq if $if_62 (result i32) - i32.const 24620 + i32.const 24636 local.get $5 i32.store return @@ -61010,10 +61010,10 @@ local.get $4 i32.const 3 i32.shl - i32.const 24652 + i32.const 24668 i32.add local.set $0 - i32.const 24612 + i32.const 24628 i32.load local.tee $1 i32.const 1 @@ -61022,7 +61022,7 @@ local.tee $4 i32.and if $if_64 - i32.const 24628 + i32.const 24644 i32.load local.get $0 i32.const 8 @@ -61040,7 +61040,7 @@ local.set $15 end ;; $if_65 else - i32.const 24612 + i32.const 24628 local.get $1 local.get $4 i32.or @@ -61137,7 +61137,7 @@ local.tee $4 i32.const 2 i32.shl - i32.const 24916 + i32.const 24932 i32.add local.set $0 local.get $3 @@ -61149,7 +61149,7 @@ local.get $3 i32.const 0 i32.store offset=16 - i32.const 24616 + i32.const 24632 i32.load local.tee $5 i32.const 1 @@ -61221,7 +61221,7 @@ unreachable end ;; $if_70 end ;; $loop_1 - i32.const 24628 + i32.const 24644 i32.load local.get $2 i32.gt_u @@ -61244,7 +61244,7 @@ end ;; $if_72 end ;; $block_6 end ;; $if_69 - i32.const 24628 + i32.const 24644 i32.load local.tee $0 local.get $14 @@ -61276,7 +61276,7 @@ end ;; $if_73 end ;; $block_5 else - i32.const 24616 + i32.const 24632 local.get $2 local.get $5 i32.or @@ -61294,8 +61294,8 @@ local.get $3 i32.store offset=8 end ;; $if_68 - i32.const 24644 - i32.const 24644 + i32.const 24660 + i32.const 24660 i32.load i32.const -1 i32.add @@ -61305,7 +61305,7 @@ if $if_74 return end ;; $if_74 - i32.const 25068 + i32.const 25084 local.set $0 loop $loop_2 local.get $0 @@ -61317,7 +61317,7 @@ local.get $4 br_if $loop_2 end ;; $loop_2 - i32.const 24644 + i32.const 24660 i32.const -1 i32.store ) @@ -61339,7 +61339,7 @@ i32.const -65 i32.gt_u if $if_0 - i32.const 24596 + i32.const 24612 i32.const 12 i32.store i32.const 0 @@ -61435,7 +61435,7 @@ local.tee $8 i32.const 1 i32.ne - i32.const 24628 + i32.const 24644 i32.load local.tee $10 local.get $0 @@ -61472,7 +61472,7 @@ local.get $2 local.get $1 i32.sub - i32.const 25092 + i32.const 25108 i32.load i32.const 1 i32.shl @@ -61527,12 +61527,12 @@ local.get $0 return end ;; $if_4 - i32.const 24636 + i32.const 24652 i32.load local.get $4 i32.eq if $if_6 - i32.const 24624 + i32.const 24640 i32.load local.get $2 i32.add @@ -61560,21 +61560,21 @@ i32.const 1 i32.or i32.store offset=4 - i32.const 24636 + i32.const 24652 local.get $2 i32.store - i32.const 24624 + i32.const 24640 local.get $1 i32.store local.get $0 return end ;; $if_6 - i32.const 24632 + i32.const 24648 i32.load local.get $4 i32.eq if $if_7 - i32.const 24620 + i32.const 24636 i32.load local.get $2 i32.add @@ -61642,10 +61642,10 @@ i32.const 0 local.set $3 end ;; $if_8 - i32.const 24620 + i32.const 24636 local.get $3 i32.store - i32.const 24632 + i32.const 24648 local.get $1 i32.store local.get $0 @@ -61686,7 +61686,7 @@ local.get $2 i32.const 3 i32.shl - i32.const 24652 + i32.const 24668 i32.add local.tee $8 i32.ne @@ -61709,8 +61709,8 @@ local.get $6 i32.eq if $if_13 - i32.const 24612 - i32.const 24612 + i32.const 24628 + i32.const 24628 i32.load i32.const 1 local.get $2 @@ -61865,7 +61865,7 @@ local.tee $3 i32.const 2 i32.shl - i32.const 24916 + i32.const 24932 i32.add local.tee $2 i32.load @@ -61878,8 +61878,8 @@ local.get $5 i32.eqz if $if_26 - i32.const 24616 - i32.const 24616 + i32.const 24632 + i32.const 24632 i32.load i32.const 1 local.get $3 @@ -61891,7 +61891,7 @@ br $block_0 end ;; $if_26 else - i32.const 24628 + i32.const 24644 i32.load local.get $9 i32.gt_u @@ -61917,7 +61917,7 @@ br_if $block_0 end ;; $if_27 end ;; $if_25 - i32.const 24628 + i32.const 24644 i32.load local.tee $2 local.get $5 @@ -61950,7 +61950,7 @@ i32.load offset=20 local.tee $3 if $if_31 - i32.const 24628 + i32.const 24644 i32.load local.get $3 i32.gt_u @@ -62074,7 +62074,7 @@ local.get $4 i32.sub local.tee $0 - i32.const 24628 + i32.const 24644 i32.load local.tee $11 i32.lt_u @@ -62085,7 +62085,7 @@ local.get $4 i32.add local.set $1 - i32.const 24632 + i32.const 24648 i32.load local.get $0 i32.eq @@ -62104,7 +62104,7 @@ local.set $5 br $block end ;; $if_3 - i32.const 24620 + i32.const 24636 local.get $1 i32.store local.get $6 @@ -62139,7 +62139,7 @@ local.get $8 i32.const 3 i32.shl - i32.const 24652 + i32.const 24668 i32.add local.tee $5 i32.ne @@ -62162,8 +62162,8 @@ local.get $4 i32.eq if $if_8 - i32.const 24612 - i32.const 24612 + i32.const 24628 + i32.const 24628 i32.load i32.const 1 local.get $8 @@ -62327,7 +62327,7 @@ local.tee $3 i32.const 2 i32.shl - i32.const 24916 + i32.const 24932 i32.add local.tee $4 i32.load @@ -62340,8 +62340,8 @@ local.get $7 i32.eqz if $if_21 - i32.const 24616 - i32.const 24616 + i32.const 24632 + i32.const 24632 i32.load i32.const 1 local.get $3 @@ -62357,7 +62357,7 @@ br $block end ;; $if_21 else - i32.const 24628 + i32.const 24644 i32.load local.get $10 i32.gt_u @@ -62389,7 +62389,7 @@ end ;; $if_23 end ;; $if_22 end ;; $if_20 - i32.const 24628 + i32.const 24644 i32.load local.tee $4 local.get $7 @@ -62422,7 +62422,7 @@ i32.load offset=20 local.tee $3 if $if_27 - i32.const 24628 + i32.const 24644 i32.load local.get $3 i32.gt_u @@ -62455,7 +62455,7 @@ end ;; $block end ;; $if local.get $6 - i32.const 24628 + i32.const 24644 i32.load local.tee $8 i32.lt_u @@ -62484,19 +62484,19 @@ local.get $5 i32.store else - i32.const 24636 + i32.const 24652 i32.load local.get $6 i32.eq if $if_31 - i32.const 24624 - i32.const 24624 + i32.const 24640 + i32.const 24640 i32.load local.get $5 i32.add local.tee $0 i32.store - i32.const 24636 + i32.const 24652 local.get $2 i32.store local.get $2 @@ -62505,33 +62505,33 @@ i32.or i32.store offset=4 local.get $2 - i32.const 24632 + i32.const 24648 i32.load i32.ne if $if_32 return end ;; $if_32 - i32.const 24632 + i32.const 24648 i32.const 0 i32.store - i32.const 24620 + i32.const 24636 i32.const 0 i32.store return end ;; $if_31 - i32.const 24632 + i32.const 24648 i32.load local.get $6 i32.eq if $if_33 - i32.const 24620 - i32.const 24620 + i32.const 24636 + i32.const 24636 i32.load local.get $5 i32.add local.tee $0 i32.store - i32.const 24632 + i32.const 24648 local.get $2 i32.store local.get $2 @@ -62570,7 +62570,7 @@ local.get $4 i32.const 3 i32.shl - i32.const 24652 + i32.const 24668 i32.add local.tee $0 i32.ne @@ -62593,8 +62593,8 @@ local.get $3 i32.eq if $if_38 - i32.const 24612 - i32.const 24612 + i32.const 24628 + i32.const 24628 i32.load i32.const 1 local.get $4 @@ -62749,7 +62749,7 @@ local.tee $0 i32.const 2 i32.shl - i32.const 24916 + i32.const 24932 i32.add local.tee $1 i32.load @@ -62762,8 +62762,8 @@ local.get $9 i32.eqz if $if_51 - i32.const 24616 - i32.const 24616 + i32.const 24632 + i32.const 24632 i32.load i32.const 1 local.get $0 @@ -62775,7 +62775,7 @@ br $block_2 end ;; $if_51 else - i32.const 24628 + i32.const 24644 i32.load local.get $7 i32.gt_u @@ -62801,7 +62801,7 @@ br_if $block_2 end ;; $if_52 end ;; $if_50 - i32.const 24628 + i32.const 24644 i32.load local.tee $1 local.get $9 @@ -62834,7 +62834,7 @@ i32.load offset=20 local.tee $0 if $if_56 - i32.const 24628 + i32.const 24644 i32.load local.get $0 i32.gt_u @@ -62862,12 +62862,12 @@ i32.add local.get $5 i32.store - i32.const 24632 + i32.const 24648 i32.load local.get $2 i32.eq if $if_58 - i32.const 24620 + i32.const 24636 local.get $5 i32.store return @@ -62884,10 +62884,10 @@ local.get $1 i32.const 3 i32.shl - i32.const 24652 + i32.const 24668 i32.add local.set $0 - i32.const 24612 + i32.const 24628 i32.load local.tee $5 i32.const 1 @@ -62896,7 +62896,7 @@ local.tee $1 i32.and if $if_60 - i32.const 24628 + i32.const 24644 i32.load local.get $0 i32.const 8 @@ -62914,7 +62914,7 @@ local.set $13 end ;; $if_61 else - i32.const 24612 + i32.const 24628 local.get $1 local.get $5 i32.or @@ -63011,7 +63011,7 @@ local.tee $1 i32.const 2 i32.shl - i32.const 24916 + i32.const 24932 i32.add local.set $0 local.get $2 @@ -63024,7 +63024,7 @@ i32.const 0 i32.store offset=16 block $block_5 - i32.const 24616 + i32.const 24632 i32.load local.tee $3 i32.const 1 @@ -63034,7 +63034,7 @@ i32.and i32.eqz if $if_64 - i32.const 24616 + i32.const 24632 local.get $3 local.get $4 i32.or @@ -63103,7 +63103,7 @@ unreachable end ;; $if_66 end ;; $loop_1 - i32.const 24628 + i32.const 24644 i32.load local.get $4 i32.gt_u @@ -63116,7 +63116,7 @@ br $block_5 end ;; $block_6 end ;; $if_65 - i32.const 24628 + i32.const 24644 i32.load local.tee $1 local.get $0 @@ -63169,7 +63169,7 @@ (func $__ZNKSt3__217bad_function_call4whatEv (type $1) (param $0 i32) (result i32) - i32.const 16783 + i32.const 16785 ) (func $__ZNSt3__212__next_primeEm (type $1) @@ -65056,29 +65056,29 @@ (func $__ZNSt3__211__call_onceERVmPvPFvS2_E (type $0) (param $0 i32) loop $loop - i32.const 24440 + i32.const 24456 i32.load i32.const 1 i32.eq if $if - i32.const 25136 - i32.const 25108 + i32.const 25152 + i32.const 25124 call $_pthread_cond_wait drop br $loop end ;; $if end ;; $loop - i32.const 24440 + i32.const 24456 i32.load i32.eqz if $if_0 - i32.const 24440 + i32.const 24456 i32.const 1 i32.store local.get $0 i32.const 276 call_indirect $29 (type $0) - i32.const 24440 + i32.const 24456 i32.const -1 i32.store end ;; $if_0 @@ -65106,7 +65106,7 @@ (param $0 i32) (local $1 i32) (local $2 i32) - i32.const 14832 + i32.const 14834 call $_strlen local.tee $2 i32.const 13 @@ -65125,7 +65125,7 @@ i32.const 12 i32.add local.tee $1 - i32.const 14832 + i32.const 14834 local.get $2 i32.const 1 i32.add @@ -66104,7 +66104,7 @@ local.set $0 end ;; $if_0 local.get $0 - i32.const 14001 + i32.const 14003 local.get $1 call $__ZNSt3__211char_traitsIcE4copyEPcPKcm local.get $3 @@ -66151,7 +66151,7 @@ end ;; $if end ;; $loop local.get $0 - i32.const 14001 + i32.const 14003 call $_strlen local.tee $2 local.get $2 @@ -66222,7 +66222,7 @@ i32.const 1060 i32.add local.set $7 - i32.const 25184 + i32.const 25200 i32.load local.tee $0 if $if @@ -66234,9 +66234,9 @@ i64.ne if $if_0 local.get $1 - i32.const 16988 + i32.const 16990 i32.store - i32.const 16938 + i32.const 16940 local.get $1 call $_abort_message end ;; $if_0 @@ -66301,7 +66301,7 @@ call_indirect $29 (type $1) local.set $0 local.get $4 - i32.const 16988 + i32.const 16990 i32.store local.get $4 local.get $1 @@ -66309,22 +66309,22 @@ local.get $4 local.get $0 i32.store offset=8 - i32.const 16852 + i32.const 16854 local.get $4 call $_abort_message else local.get $3 - i32.const 16988 + i32.const 16990 i32.store local.get $3 local.get $1 i32.store offset=4 - i32.const 16897 + i32.const 16899 local.get $3 call $_abort_message end ;; $if_3 end ;; $if - i32.const 16976 + i32.const 16978 local.get $2 i32.const 1056 i32.add @@ -67289,7 +67289,7 @@ local.get $3 i32.const 24 i32.add - i32.const 17167 + i32.const 17169 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $3 @@ -67363,7 +67363,7 @@ else block $block (result i32) local.get $2 - i32.const 17170 + i32.const 17172 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $2 @@ -67393,7 +67393,7 @@ local.get $2 if $if_4 (result i32) local.get $4 - i32.const 17175 + i32.const 17177 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $4 @@ -67454,7 +67454,7 @@ i32.const 0 else local.get $0 - i32.const 17189 + i32.const 17191 local.get $3 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_11SpecialNameEJRA34_KcRPNS0_4NodeEEEESC_DpOT0_ end ;; $if_9 @@ -67651,7 +67651,7 @@ (func $__ZSt9terminatev (type $8) (local $0 i32) - i32.const 25184 + i32.const 25200 i32.load local.tee $0 if $if @@ -67686,7 +67686,7 @@ i32.const 152 i32.add call_indirect $29 (type $8) - i32.const 17127 + i32.const 17129 local.get $1 call $_abort_message ) @@ -67923,7 +67923,7 @@ i32.const 0 i32.store local.get $5 - i32.const 22522 + i32.const 22524 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -68443,7 +68443,7 @@ i32.add i32.store local.get $0 - i32.const 17223 + i32.const 17225 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_35 @@ -68466,7 +68466,7 @@ i32.add i32.store local.get $0 - i32.const 17228 + i32.const 17230 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_33 @@ -68477,7 +68477,7 @@ i32.add i32.store local.get $0 - i32.const 17233 + i32.const 17235 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_32 @@ -68488,7 +68488,7 @@ i32.add i32.store local.get $0 - i32.const 17238 + i32.const 17240 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_31 @@ -68499,7 +68499,7 @@ i32.add i32.store local.get $0 - i32.const 17250 + i32.const 17252 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_30 @@ -68510,7 +68510,7 @@ i32.add i32.store local.get $0 - i32.const 17264 + i32.const 17266 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_29 @@ -68521,7 +68521,7 @@ i32.add i32.store local.get $0 - i32.const 17270 + i32.const 17272 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_28 @@ -68532,7 +68532,7 @@ i32.add i32.store local.get $0 - i32.const 17285 + i32.const 17287 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_27 @@ -68543,7 +68543,7 @@ i32.add i32.store local.get $0 - i32.const 17289 + i32.const 17291 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_26 @@ -68554,7 +68554,7 @@ i32.add i32.store local.get $0 - i32.const 17302 + i32.const 17304 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_25 @@ -68565,7 +68565,7 @@ i32.add i32.store local.get $0 - i32.const 17307 + i32.const 17309 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_24 @@ -68576,7 +68576,7 @@ i32.add i32.store local.get $0 - i32.const 17321 + i32.const 17323 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_23 @@ -68599,7 +68599,7 @@ i32.add i32.store local.get $0 - i32.const 17331 + i32.const 17333 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_21 @@ -68610,7 +68610,7 @@ i32.add i32.store local.get $0 - i32.const 17340 + i32.const 17342 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_20 @@ -68621,7 +68621,7 @@ i32.add i32.store local.get $0 - i32.const 17358 + i32.const 17360 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_19 @@ -68644,7 +68644,7 @@ i32.add i32.store local.get $0 - i32.const 17364 + i32.const 17366 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_17 @@ -68655,7 +68655,7 @@ i32.add i32.store local.get $0 - i32.const 17376 + i32.const 17378 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_16 @@ -68666,7 +68666,7 @@ i32.add i32.store local.get $0 - i32.const 17387 + i32.const 17389 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_15 @@ -68740,7 +68740,7 @@ i32.add i32.store local.get $0 - i32.const 17391 + i32.const 17393 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_53 @@ -68751,7 +68751,7 @@ i32.add i32.store local.get $0 - i32.const 17401 + i32.const 17403 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_52 @@ -68762,7 +68762,7 @@ i32.add i32.store local.get $0 - i32.const 17412 + i32.const 17414 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_51 @@ -68773,7 +68773,7 @@ i32.add i32.store local.get $0 - i32.const 17422 + i32.const 17424 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_50 @@ -68784,7 +68784,7 @@ i32.add i32.store local.get $0 - i32.const 17432 + i32.const 17434 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_49 @@ -68795,7 +68795,7 @@ i32.add i32.store local.get $0 - i32.const 17441 + i32.const 17443 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_48 @@ -68806,7 +68806,7 @@ i32.add i32.store local.get $0 - i32.const 17450 + i32.const 17452 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_47 @@ -68817,7 +68817,7 @@ i32.add i32.store local.get $0 - i32.const 17455 + i32.const 17457 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_46 @@ -68828,7 +68828,7 @@ i32.add i32.store local.get $0 - i32.const 17470 + i32.const 17472 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_45 @@ -69303,7 +69303,7 @@ i32.const 0 i32.store local.get $3 - i32.const 22223 + i32.const 22225 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $3 @@ -69317,14 +69317,14 @@ if $if (result i32) local.get $6 local.get $0 - i32.const 22226 + i32.const 22228 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ i32.store br $block_0 else block $block_1 (result i32) local.get $4 - i32.const 22235 + i32.const 22237 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $4 @@ -69361,7 +69361,7 @@ br $block_0 end ;; $if_0 local.get $5 - i32.const 22238 + i32.const 22240 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $5 @@ -69424,7 +69424,7 @@ br $block end ;; $block_0 local.get $8 - i32.const 22241 + i32.const 22243 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $8 @@ -69480,7 +69480,7 @@ i32.eqz if $if_4 local.get $9 - i32.const 22244 + i32.const 22246 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $9 @@ -69491,7 +69491,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE br_if $block_7 local.get $10 - i32.const 22247 + i32.const 22249 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $10 @@ -69603,7 +69603,7 @@ else block $block (result i32) local.get $5 - i32.const 22038 + i32.const 22040 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -69898,7 +69898,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfEc if $if_2 (result i32) local.get $0 - i32.const 22002 + i32.const 22004 local.get $1 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_13EnclosingExprEJRA10_KcRPNS0_4NodeERA2_S8_EEESC_DpOT0_ else @@ -69936,7 +69936,7 @@ local.get $1 i32.const 8 i32.add - i32.const 21877 + i32.const 21879 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -70325,7 +70325,7 @@ i32.const 24 i32.add local.tee $5 - i32.const 20933 + i32.const 20935 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -70336,12 +70336,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if local.get $1 - i32.const 20936 + i32.const 20938 call $__ZN12_GLOBAL__N_110StringViewC2EPKc else block $block local.get $3 - i32.const 20943 + i32.const 20945 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -70352,12 +70352,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_0 local.get $1 - i32.const 20946 + i32.const 20948 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $if_0 local.get $4 - i32.const 20952 + i32.const 20954 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -70368,7 +70368,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_1 local.get $1 - i32.const 20955 + i32.const 20957 call $__ZN12_GLOBAL__N_110StringViewC2EPKc end ;; $if_1 end ;; $block @@ -70461,7 +70461,7 @@ i32.load8_s offset=362 if $if_2 local.get $0 - i32.const 17450 + i32.const 17452 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $if_2 @@ -71484,7 +71484,7 @@ i32.add call_indirect $29 (type $4) local.get $4 - i32.const 17485 + i32.const 17487 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -71505,7 +71505,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $5 - i32.const 17491 + i32.const 17493 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -71717,7 +71717,7 @@ $block ;; default end ;; $block_5 local.get $4 - i32.const 17635 + i32.const 17637 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -71729,7 +71729,7 @@ br $block end ;; $block_4 local.get $5 - i32.const 17650 + i32.const 17652 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -71741,7 +71741,7 @@ br $block end ;; $block_3 local.get $6 - i32.const 17668 + i32.const 17670 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -71753,7 +71753,7 @@ br $block end ;; $block_2 local.get $7 - i32.const 17680 + i32.const 17682 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -71765,7 +71765,7 @@ br $block end ;; $block_1 local.get $8 - i32.const 17693 + i32.const 17695 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $8 @@ -71777,7 +71777,7 @@ br $block end ;; $block_0 local.get $3 - i32.const 17706 + i32.const 17708 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -71808,32 +71808,32 @@ $block ;; default end ;; $block_5 local.get $0 - i32.const 17580 + i32.const 17582 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_4 local.get $0 - i32.const 17590 + i32.const 17592 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_3 local.get $0 - i32.const 17603 + i32.const 17605 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_2 local.get $0 - i32.const 17610 + i32.const 17612 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_1 local.get $0 - i32.const 17618 + i32.const 17620 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_0 local.get $0 - i32.const 17626 + i32.const 17628 call $__ZN12_GLOBAL__N_110StringViewC2EPKc end ;; $block ) @@ -71862,7 +71862,7 @@ i32.load local.set $1 local.get $2 - i32.const 17776 + i32.const 17778 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -71978,7 +71978,7 @@ i32.load local.set $1 local.get $2 - i32.const 17844 + i32.const 17846 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -72119,7 +72119,7 @@ call $__ZNK12_GLOBAL__N_116itanium_demangle4Node8hasArrayERNS_12OutputStreamE if $if_0 local.get $7 - i32.const 17855 + i32.const 17857 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $7 @@ -72142,7 +72142,7 @@ br $block end ;; $block_0 local.get $8 - i32.const 17857 + i32.const 17859 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $8 @@ -72153,8 +72153,8 @@ call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE end ;; $block local.get $2 + i32.const 17863 i32.const 17861 - i32.const 17859 local.get $6 i32.load select @@ -72245,7 +72245,7 @@ br $block end ;; $block_0 local.get $2 - i32.const 17853 + i32.const 17855 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $5 local.get $2 @@ -72518,7 +72518,7 @@ i32.load offset=8 local.set $0 local.get $8 - i32.const 17928 + i32.const 17930 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $8 @@ -72539,7 +72539,7 @@ local.get $2 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $9 - i32.const 17932 + i32.const 17934 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $9 @@ -72572,7 +72572,7 @@ call $__ZNK12_GLOBAL__N_116itanium_demangle4Node8hasArrayERNS_12OutputStreamE if $if_0 local.get $5 - i32.const 17855 + i32.const 17857 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -72597,7 +72597,7 @@ br $block_1 end ;; $block_2 local.get $6 - i32.const 17857 + i32.const 17859 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -72608,7 +72608,7 @@ call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE end ;; $block_1 local.get $7 - i32.const 17926 + i32.const 17928 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -72672,7 +72672,7 @@ br $block_1 end ;; $block_2 local.get $3 - i32.const 17853 + i32.const 17855 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $4 local.get $3 @@ -72728,7 +72728,7 @@ i64.load offset=8 align=4 i64.store align=4 local.get $1 - i32.const 17914 + i32.const 17916 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -73370,7 +73370,7 @@ local.get $2 i32.const 16 i32.add - i32.const 18039 + i32.const 18041 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -73404,7 +73404,7 @@ i32.eq if $if_0 local.get $4 - i32.const 17855 + i32.const 17857 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -73415,7 +73415,7 @@ call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE end ;; $if_0 local.get $2 - i32.const 17932 + i32.const 17934 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -73462,7 +73462,7 @@ i32.eqz if $if_0 local.get $2 - i32.const 18041 + i32.const 18043 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $4 local.get $2 @@ -74214,7 +74214,7 @@ local.get $3 i32.const 328 i32.add - i32.const 18570 + i32.const 18572 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -74366,7 +74366,7 @@ i32.add i32.store local.get $6 - i32.const 17861 + i32.const 17863 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -74383,7 +74383,7 @@ i32.add i32.store local.get $7 - i32.const 17859 + i32.const 17861 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -74400,7 +74400,7 @@ i32.add i32.store local.get $8 - i32.const 17859 + i32.const 17861 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $8 @@ -74417,7 +74417,7 @@ i32.add i32.store local.get $9 - i32.const 18573 + i32.const 18575 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $9 @@ -74434,7 +74434,7 @@ i32.add i32.store local.get $10 - i32.const 18576 + i32.const 18578 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $10 @@ -74458,7 +74458,7 @@ local.get $1 if $if_2 (result i32) local.get $0 - i32.const 18578 + i32.const 18580 local.get $2 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_13EnclosingExprEJRA10_KcRPNS0_4NodeERA2_S8_EEESC_DpOT0_ else @@ -74479,7 +74479,7 @@ local.get $1 if $if_3 (result i32) local.get $0 - i32.const 18578 + i32.const 18580 local.get $2 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_13EnclosingExprEJRA10_KcRPNS0_4NodeERA2_S8_EEESC_DpOT0_ else @@ -74609,7 +74609,7 @@ i32.add i32.store local.get $11 - i32.const 18588 + i32.const 18590 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $11 @@ -74626,7 +74626,7 @@ i32.add i32.store local.get $12 - i32.const 18590 + i32.const 18592 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $12 @@ -74728,7 +74728,7 @@ i32.add i32.store local.get $13 - i32.const 17926 + i32.const 17928 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $13 @@ -74789,7 +74789,7 @@ if $if_12 (result i32) local.get $0 local.get $2 - i32.const 18592 + i32.const 18594 local.get $4 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_10MemberExprEJRPNS0_4NodeERA3_KcSA_EEES9_DpOT0_ else @@ -74839,7 +74839,7 @@ i32.add i32.store local.get $14 - i32.const 18595 + i32.const 18597 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $14 @@ -74856,7 +74856,7 @@ i32.add i32.store local.get $15 - i32.const 18597 + i32.const 18599 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $15 @@ -74890,7 +74890,7 @@ i32.add i32.store local.get $16 - i32.const 18600 + i32.const 18602 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $16 @@ -74907,7 +74907,7 @@ i32.add i32.store local.get $17 - i32.const 18602 + i32.const 18604 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $17 @@ -74924,7 +74924,7 @@ i32.add i32.store local.get $18 - i32.const 18605 + i32.const 18607 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $18 @@ -74955,7 +74955,7 @@ i32.add i32.store local.get $19 - i32.const 18608 + i32.const 18610 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $19 @@ -74972,7 +74972,7 @@ i32.add i32.store local.get $20 - i32.const 17932 + i32.const 17934 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $20 @@ -75112,7 +75112,7 @@ i32.add i32.store local.get $21 - i32.const 18611 + i32.const 18613 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $21 @@ -75129,7 +75129,7 @@ i32.add i32.store local.get $22 - i32.const 18614 + i32.const 18616 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $22 @@ -75146,7 +75146,7 @@ i32.add i32.store local.get $23 - i32.const 18617 + i32.const 18619 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $23 @@ -75163,7 +75163,7 @@ i32.add i32.store local.get $24 - i32.const 18039 + i32.const 18041 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $24 @@ -75199,7 +75199,7 @@ i32.add i32.store local.get $25 - i32.const 18460 + i32.const 18462 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $25 @@ -75216,7 +75216,7 @@ i32.add i32.store local.get $26 - i32.const 18621 + i32.const 18623 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $26 @@ -75233,7 +75233,7 @@ i32.add i32.store local.get $27 - i32.const 17926 + i32.const 17928 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $27 @@ -75250,7 +75250,7 @@ i32.add i32.store local.get $28 - i32.const 18624 + i32.const 18626 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $28 @@ -75271,7 +75271,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfEc if $if_17 local.get $29 - i32.const 18627 + i32.const 18629 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $29 @@ -75291,7 +75291,7 @@ if $if_18 (result i32) local.get $0 local.get $2 - i32.const 18627 + i32.const 18629 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_11PostfixExprEJRPNS0_4NodeERA3_KcEEES9_DpOT0_ else i32.const 0 @@ -75326,7 +75326,7 @@ i32.add i32.store local.get $30 - i32.const 18630 + i32.const 18632 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $30 @@ -75343,7 +75343,7 @@ i32.add i32.store local.get $31 - i32.const 18460 + i32.const 18462 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $31 @@ -75360,7 +75360,7 @@ i32.add i32.store local.get $32 - i32.const 18633 + i32.const 18635 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $32 @@ -75421,7 +75421,7 @@ i32.add i32.store local.get $33 - i32.const 18635 + i32.const 18637 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $33 @@ -75438,7 +75438,7 @@ i32.add i32.store local.get $34 - i32.const 18638 + i32.const 18640 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $34 @@ -75455,7 +75455,7 @@ i32.add i32.store local.get $35 - i32.const 18640 + i32.const 18642 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $35 @@ -75492,7 +75492,7 @@ i32.add i32.store local.get $36 - i32.const 18643 + i32.const 18645 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $36 @@ -75509,7 +75509,7 @@ i32.add i32.store local.get $37 - i32.const 18647 + i32.const 18649 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $37 @@ -75526,7 +75526,7 @@ i32.add i32.store local.get $38 - i32.const 18649 + i32.const 18651 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $38 @@ -75547,7 +75547,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfEc if $if_20 local.get $39 - i32.const 18652 + i32.const 18654 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $39 @@ -75567,7 +75567,7 @@ if $if_21 (result i32) local.get $0 local.get $2 - i32.const 18652 + i32.const 18654 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_11PostfixExprEJRPNS0_4NodeERA3_KcEEES9_DpOT0_ else i32.const 0 @@ -75580,7 +75580,7 @@ i32.add i32.store local.get $40 - i32.const 18647 + i32.const 18649 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $40 @@ -75612,7 +75612,7 @@ if $if_23 (result i32) local.get $0 local.get $2 - i32.const 18655 + i32.const 18657 local.get $4 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_10MemberExprEJRPNS0_4NodeERA3_KcSA_EEES9_DpOT0_ else @@ -75739,7 +75739,7 @@ i32.add i32.store local.get $41 - i32.const 18658 + i32.const 18660 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $41 @@ -75756,7 +75756,7 @@ i32.add i32.store local.get $42 - i32.const 18660 + i32.const 18662 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $42 @@ -75773,7 +75773,7 @@ i32.add i32.store local.get $43 - i32.const 18663 + i32.const 18665 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $43 @@ -75790,7 +75790,7 @@ i32.add i32.store local.get $44 - i32.const 18666 + i32.const 18668 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $44 @@ -75892,7 +75892,7 @@ local.get $1 if $if_32 (result i32) local.get $0 - i32.const 18670 + i32.const 18672 local.get $2 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_13EnclosingExprEJRA10_KcRPNS0_4NodeERA2_S8_EEESC_DpOT0_ else @@ -75913,7 +75913,7 @@ local.get $1 if $if_33 (result i32) local.get $0 - i32.const 18670 + i32.const 18672 local.get $2 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_13EnclosingExprEJRA10_KcRPNS0_4NodeERA2_S8_EEESC_DpOT0_ else @@ -76077,7 +76077,7 @@ local.get $1 if $if_37 (result i32) local.get $0 - i32.const 18679 + i32.const 18681 local.get $2 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_13EnclosingExprEJRA10_KcRPNS0_4NodeERA2_S8_EEESC_DpOT0_ else @@ -76098,7 +76098,7 @@ local.get $1 if $if_38 (result i32) local.get $0 - i32.const 18679 + i32.const 18681 local.get $2 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_13EnclosingExprEJRA10_KcRPNS0_4NodeERA2_S8_EEESC_DpOT0_ else @@ -76177,7 +76177,7 @@ i32.add i32.store local.get $0 - i32.const 18688 + i32.const 18690 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_111 @@ -76382,7 +76382,7 @@ i32.add i32.store local.get $3 - i32.const 18143 + i32.const 18145 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $3 @@ -76394,7 +76394,7 @@ br $block end ;; $block_18 local.get $4 - i32.const 18151 + i32.const 18153 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $4 @@ -76413,7 +76413,7 @@ br $block end ;; $if_1 local.get $5 - i32.const 18155 + i32.const 18157 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $5 @@ -76441,7 +76441,7 @@ i32.add i32.store local.get $6 - i32.const 17233 + i32.const 17235 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $6 @@ -76459,7 +76459,7 @@ i32.add i32.store local.get $7 - i32.const 17238 + i32.const 17240 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $7 @@ -76477,7 +76477,7 @@ i32.add i32.store local.get $8 - i32.const 17250 + i32.const 17252 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $8 @@ -76495,7 +76495,7 @@ i32.add i32.store local.get $9 - i32.const 17264 + i32.const 17266 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $9 @@ -76513,7 +76513,7 @@ i32.add i32.store local.get $10 - i32.const 17270 + i32.const 17272 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $10 @@ -76531,7 +76531,7 @@ i32.add i32.store local.get $11 - i32.const 25206 + i32.const 25222 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $11 @@ -76549,7 +76549,7 @@ i32.add i32.store local.get $12 - i32.const 18159 + i32.const 18161 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $12 @@ -76567,7 +76567,7 @@ i32.add i32.store local.get $13 - i32.const 18161 + i32.const 18163 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $13 @@ -76585,7 +76585,7 @@ i32.add i32.store local.get $14 - i32.const 18163 + i32.const 18165 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $14 @@ -76603,7 +76603,7 @@ i32.add i32.store local.get $15 - i32.const 18166 + i32.const 18168 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $15 @@ -76621,7 +76621,7 @@ i32.add i32.store local.get $16 - i32.const 18169 + i32.const 18171 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $16 @@ -76639,7 +76639,7 @@ i32.add i32.store local.get $17 - i32.const 17331 + i32.const 17333 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $17 @@ -76657,7 +76657,7 @@ i32.add i32.store local.get $18 - i32.const 17340 + i32.const 17342 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $18 @@ -76699,7 +76699,7 @@ br $block end ;; $block_1 local.get $19 - i32.const 17167 + i32.const 17169 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $19 @@ -77243,7 +77243,7 @@ i32.const 16 i32.add local.tee $5 - i32.const 17857 + i32.const 17859 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -77257,7 +77257,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 17853 + i32.const 17855 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -77484,7 +77484,7 @@ f64.store local.get $2 i32.const 40 - i32.const 18225 + i32.const 18227 local.get $5 call $_snprintf local.get $2 @@ -77706,7 +77706,7 @@ f64.store local.get $2 i32.const 32 - i32.const 18286 + i32.const 18288 local.get $4 call $_snprintf local.get $2 @@ -77926,7 +77926,7 @@ f64.store local.get $2 i32.const 24 - i32.const 18345 + i32.const 18347 local.get $4 call $_snprintf local.get $2 @@ -77992,11 +77992,11 @@ i32.load8_s offset=8 if $if local.get $2 - i32.const 18405 + i32.const 18407 call $__ZN12_GLOBAL__N_110StringViewC2EPKc else local.get $2 - i32.const 18410 + i32.const 18412 call $__ZN12_GLOBAL__N_110StringViewC2EPKc end ;; $if local.get $2 @@ -78131,7 +78131,7 @@ i32.gt_u if $if local.get $4 - i32.const 17857 + i32.const 17859 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -78152,7 +78152,7 @@ local.get $2 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $5 - i32.const 17853 + i32.const 17855 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -78180,7 +78180,7 @@ i32.eq if $if_0 local.get $4 - i32.const 18460 + i32.const 18462 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -78343,7 +78343,7 @@ local.get $2 i32.const 8 i32.add - i32.const 20816 + i32.const 20818 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $2 @@ -78372,7 +78372,7 @@ end ;; $if_0 else local.get $2 - i32.const 20819 + i32.const 20821 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $2 @@ -78670,7 +78670,7 @@ i32.const 0 i32.store offset=4 local.get $3 - i32.const 20669 + i32.const 20671 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $3 @@ -78683,13 +78683,13 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_1 local.get $1 - i32.const 17861 + i32.const 17863 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 else block $block_5 local.get $4 - i32.const 20672 + i32.const 20674 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $4 @@ -78700,12 +78700,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_2 local.get $1 - i32.const 17859 + i32.const 17861 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_2 local.get $8 - i32.const 20675 + i32.const 20677 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $8 @@ -78716,12 +78716,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_3 local.get $1 - i32.const 18573 + i32.const 18575 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_3 local.get $9 - i32.const 20678 + i32.const 20680 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $9 @@ -78732,12 +78732,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_4 local.get $1 - i32.const 18576 + i32.const 18578 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_4 local.get $10 - i32.const 20681 + i32.const 20683 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $10 @@ -78748,12 +78748,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_5 local.get $1 - i32.const 18588 + i32.const 18590 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_5 local.get $11 - i32.const 20684 + i32.const 20686 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $11 @@ -78764,12 +78764,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_6 local.get $1 - i32.const 18592 + i32.const 18594 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_6 local.get $12 - i32.const 20687 + i32.const 20689 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $12 @@ -78780,12 +78780,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_7 local.get $1 - i32.const 18595 + i32.const 18597 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_7 local.get $13 - i32.const 20690 + i32.const 20692 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $13 @@ -78796,12 +78796,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_8 local.get $1 - i32.const 18597 + i32.const 18599 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_8 local.get $14 - i32.const 20693 + i32.const 20695 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $14 @@ -78812,12 +78812,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_9 local.get $1 - i32.const 18600 + i32.const 18602 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_9 local.get $15 - i32.const 20696 + i32.const 20698 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $15 @@ -78828,12 +78828,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_10 local.get $1 - i32.const 18602 + i32.const 18604 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_10 local.get $16 - i32.const 20699 + i32.const 20701 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $16 @@ -78844,12 +78844,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_11 local.get $1 - i32.const 18605 + i32.const 18607 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_11 local.get $17 - i32.const 20702 + i32.const 20704 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $17 @@ -78860,12 +78860,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_12 local.get $1 - i32.const 18608 + i32.const 18610 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_12 local.get $18 - i32.const 20705 + i32.const 20707 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $18 @@ -78876,12 +78876,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_13 local.get $1 - i32.const 17932 + i32.const 17934 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_13 local.get $19 - i32.const 20708 + i32.const 20710 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $19 @@ -78892,12 +78892,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_14 local.get $1 - i32.const 18611 + i32.const 18613 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_14 local.get $20 - i32.const 20711 + i32.const 20713 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $20 @@ -78908,12 +78908,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_15 local.get $1 - i32.const 18614 + i32.const 18616 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_15 local.get $21 - i32.const 20714 + i32.const 20716 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $21 @@ -78924,12 +78924,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_16 local.get $1 - i32.const 18617 + i32.const 18619 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_16 local.get $22 - i32.const 20717 + i32.const 20719 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $22 @@ -78940,12 +78940,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_17 local.get $1 - i32.const 18039 + i32.const 18041 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_17 local.get $23 - i32.const 20720 + i32.const 20722 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $23 @@ -78956,12 +78956,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_18 local.get $1 - i32.const 18460 + i32.const 18462 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_18 local.get $24 - i32.const 20723 + i32.const 20725 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $24 @@ -78972,12 +78972,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_19 local.get $1 - i32.const 18621 + i32.const 18623 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_19 local.get $25 - i32.const 20726 + i32.const 20728 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $25 @@ -78988,12 +78988,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_20 local.get $1 - i32.const 17926 + i32.const 17928 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_20 local.get $26 - i32.const 20729 + i32.const 20731 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $26 @@ -79004,12 +79004,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_21 local.get $1 - i32.const 18624 + i32.const 18626 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_21 local.get $27 - i32.const 20732 + i32.const 20734 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $27 @@ -79020,12 +79020,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_22 local.get $1 - i32.const 18630 + i32.const 18632 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_22 local.get $28 - i32.const 20735 + i32.const 20737 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $28 @@ -79036,12 +79036,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_23 local.get $1 - i32.const 18635 + i32.const 18637 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_23 local.get $29 - i32.const 20738 + i32.const 20740 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $29 @@ -79052,12 +79052,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_24 local.get $1 - i32.const 18638 + i32.const 18640 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_24 local.get $30 - i32.const 20741 + i32.const 20743 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $30 @@ -79068,12 +79068,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_25 local.get $1 - i32.const 18640 + i32.const 18642 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_25 local.get $31 - i32.const 20744 + i32.const 20746 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $31 @@ -79084,12 +79084,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_26 local.get $1 - i32.const 18647 + i32.const 18649 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_26 local.get $32 - i32.const 20747 + i32.const 20749 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $32 @@ -79100,12 +79100,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_27 local.get $1 - i32.const 18649 + i32.const 18651 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_27 local.get $33 - i32.const 20750 + i32.const 20752 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $33 @@ -79116,12 +79116,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_28 local.get $1 - i32.const 18658 + i32.const 18660 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_28 local.get $34 - i32.const 20753 + i32.const 20755 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $34 @@ -79132,12 +79132,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_29 local.get $1 - i32.const 18660 + i32.const 18662 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_29 local.get $35 - i32.const 20756 + i32.const 20758 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $35 @@ -79148,12 +79148,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_30 local.get $1 - i32.const 18663 + i32.const 18665 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_30 local.get $36 - i32.const 20759 + i32.const 20761 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $36 @@ -79169,7 +79169,7 @@ br $block_5 end ;; $if_31 local.get $1 - i32.const 18666 + i32.const 18668 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $block_5 @@ -79370,7 +79370,7 @@ local.get $2 i32.const 16 i32.add - i32.const 20457 + i32.const 20459 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -79548,7 +79548,7 @@ local.get $4 i32.const 24 i32.add - i32.const 19596 + i32.const 19598 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -79655,7 +79655,7 @@ end ;; $if_0 else local.get $1 - i32.const 18570 + i32.const 18572 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -79666,7 +79666,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE local.set $5 local.get $4 - i32.const 19600 + i32.const 19602 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -80130,7 +80130,7 @@ local.get $2 i32.const 40 i32.add - i32.const 18570 + i32.const 18572 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $2 @@ -80164,7 +80164,7 @@ i32.eq i32.store8 local.get $4 - i32.const 19184 + i32.const 19186 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $4 @@ -80177,7 +80177,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE br_if $block_0 local.get $3 - i32.const 19187 + i32.const 19189 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $3 @@ -80242,7 +80242,7 @@ if $if_1 (result i32) block $block_3 (result i32) local.get $5 - i32.const 19190 + i32.const 19192 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $5 @@ -80397,7 +80397,7 @@ i32.add local.set $3 local.get $2 - i32.const 18694 + i32.const 18696 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -80592,13 +80592,13 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $5 - i32.const 18845 + i32.const 18847 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load local.set $1 local.get $2 - i32.const 17853 + i32.const 17855 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $4 local.get $5 @@ -80760,7 +80760,7 @@ i32.const 24 i32.add local.tee $5 - i32.const 18907 + i32.const 18909 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -80777,7 +80777,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle22ParameterPackExpansion9printLeftERNS_12OutputStreamE local.get $2 - i32.const 17853 + i32.const 17855 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -80899,7 +80899,7 @@ $block_0 ;; default end ;; $block_2 local.get $8 - i32.const 17387 + i32.const 17389 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $5 local.get $8 @@ -80923,7 +80923,7 @@ i32.ge_u br_if $block local.get $2 - i32.const 18041 + i32.const 18043 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $5 local.get $2 @@ -81008,7 +81008,7 @@ i32.load local.set $1 local.get $3 - i32.const 17853 + i32.const 17855 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $5 local.get $6 @@ -81050,7 +81050,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $3 - i32.const 19033 + i32.const 19035 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -81149,7 +81149,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $4 - i32.const 18039 + i32.const 18041 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -81173,7 +81173,7 @@ i32.add call_indirect $29 (type $4) local.get $5 - i32.const 19045 + i32.const 19047 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -81197,7 +81197,7 @@ i32.add call_indirect $29 (type $4) local.get $6 - i32.const 17853 + i32.const 17855 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $6 @@ -81232,7 +81232,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $3 - i32.const 19092 + i32.const 19094 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -81318,7 +81318,7 @@ i32.const 24 i32.add local.tee $6 - i32.const 17857 + i32.const 17859 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -81332,7 +81332,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 19109 + i32.const 19111 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -81346,7 +81346,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $5 - i32.const 19115 + i32.const 19117 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -81360,7 +81360,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $3 - i32.const 17853 + i32.const 17855 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -81404,13 +81404,13 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $5 - i32.const 19173 + i32.const 19175 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load local.set $1 local.get $2 - i32.const 17853 + i32.const 17855 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $4 local.get $5 @@ -81575,7 +81575,7 @@ i32.load8_s offset=28 if $if local.get $4 - i32.const 19193 + i32.const 19195 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -81604,7 +81604,7 @@ local.get $3 i32.const 40 i32.add - i32.const 19205 + i32.const 19207 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -81617,7 +81617,7 @@ i32.load8_s offset=29 if $if_0 local.get $4 - i32.const 19209 + i32.const 19211 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -81637,7 +81637,7 @@ i32.load offset=4 if $if_1 local.get $5 - i32.const 17857 + i32.const 17859 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -81650,7 +81650,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle9NodeArray14printWithCommaERNS_12OutputStreamE local.get $6 - i32.const 17853 + i32.const 17855 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -81671,7 +81671,7 @@ i32.load offset=4 if $if_2 local.get $7 - i32.const 17857 + i32.const 17859 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -81684,7 +81684,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle9NodeArray14printWithCommaERNS_12OutputStreamE local.get $3 - i32.const 17853 + i32.const 17855 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -81869,7 +81869,7 @@ i32.add i32.store local.get $1 - i32.const 19412 + i32.const 19414 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $4 local.get $1 @@ -81984,7 +81984,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 19303 + i32.const 19305 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -82016,7 +82016,7 @@ i32.ge_s if $if (result i32) local.get $2 - i32.const 19309 + i32.const 19311 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -82126,7 +82126,7 @@ i32.ge_s if $if_0 (result i32) local.get $2 - i32.const 19309 + i32.const 19311 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -82329,7 +82329,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $1 - i32.const 19423 + i32.const 19425 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -82462,7 +82462,7 @@ i32.const 16 i32.add local.tee $5 - i32.const 17857 + i32.const 17859 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -82476,7 +82476,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 19489 + i32.const 19491 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -82490,7 +82490,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $2 - i32.const 17491 + i32.const 17493 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -82528,7 +82528,7 @@ i32.load local.set $1 local.get $3 - i32.const 19547 + i32.const 19549 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 i32.load @@ -82892,7 +82892,7 @@ else block $block (result i32) local.get $1 - i32.const 19662 + i32.const 19664 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $1 @@ -82907,7 +82907,7 @@ br $block end ;; $if_1 local.get $4 - i32.const 19665 + i32.const 19667 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -83031,7 +83031,7 @@ i32.add local.set $3 local.get $2 - i32.const 19603 + i32.const 19605 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -83211,7 +83211,7 @@ i32.add i32.store local.get $0 - i32.const 19668 + i32.const 19670 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83223,7 +83223,7 @@ i32.add i32.store local.get $0 - i32.const 19679 + i32.const 19681 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83235,7 +83235,7 @@ i32.add i32.store local.get $0 - i32.const 19689 + i32.const 19691 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83247,7 +83247,7 @@ i32.add i32.store local.get $0 - i32.const 19700 + i32.const 19702 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83292,7 +83292,7 @@ i32.add i32.store local.get $0 - i32.const 19710 + i32.const 19712 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83304,7 +83304,7 @@ i32.add i32.store local.get $0 - i32.const 19721 + i32.const 19723 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83316,7 +83316,7 @@ i32.add i32.store local.get $0 - i32.const 19731 + i32.const 19733 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83451,7 +83451,7 @@ i32.add i32.store local.get $0 - i32.const 19741 + i32.const 19743 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83463,7 +83463,7 @@ i32.add i32.store local.get $0 - i32.const 19759 + i32.const 19761 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83488,7 +83488,7 @@ i32.add i32.store local.get $0 - i32.const 19769 + i32.const 19771 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83500,7 +83500,7 @@ i32.add i32.store local.get $0 - i32.const 19779 + i32.const 19781 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83546,7 +83546,7 @@ i32.add i32.store local.get $0 - i32.const 19790 + i32.const 19792 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83558,7 +83558,7 @@ i32.add i32.store local.get $0 - i32.const 19800 + i32.const 19802 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83570,7 +83570,7 @@ i32.add i32.store local.get $0 - i32.const 19811 + i32.const 19813 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83613,7 +83613,7 @@ i32.add i32.store local.get $0 - i32.const 19822 + i32.const 19824 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83625,7 +83625,7 @@ i32.add i32.store local.get $0 - i32.const 19833 + i32.const 19835 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83660,7 +83660,7 @@ i32.add i32.store local.get $0 - i32.const 19843 + i32.const 19845 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ else i32.const 0 @@ -83707,7 +83707,7 @@ i32.add i32.store local.get $0 - i32.const 19854 + i32.const 19856 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83743,7 +83743,7 @@ i32.add i32.store local.get $0 - i32.const 19865 + i32.const 19867 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83755,7 +83755,7 @@ i32.add i32.store local.get $0 - i32.const 19876 + i32.const 19878 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83767,7 +83767,7 @@ i32.add i32.store local.get $0 - i32.const 19888 + i32.const 19890 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83815,7 +83815,7 @@ i32.add i32.store local.get $0 - i32.const 19898 + i32.const 19900 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83827,7 +83827,7 @@ i32.add i32.store local.get $0 - i32.const 19908 + i32.const 19910 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83839,7 +83839,7 @@ i32.add i32.store local.get $0 - i32.const 19759 + i32.const 19761 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83851,7 +83851,7 @@ i32.add i32.store local.get $0 - i32.const 19919 + i32.const 19921 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83863,7 +83863,7 @@ i32.add i32.store local.get $0 - i32.const 19930 + i32.const 19932 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83910,7 +83910,7 @@ i32.add i32.store local.get $0 - i32.const 19941 + i32.const 19943 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83922,7 +83922,7 @@ i32.add i32.store local.get $0 - i32.const 19956 + i32.const 19958 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83934,7 +83934,7 @@ i32.add i32.store local.get $0 - i32.const 19898 + i32.const 19900 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83946,7 +83946,7 @@ i32.add i32.store local.get $0 - i32.const 19967 + i32.const 19969 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83958,7 +83958,7 @@ i32.add i32.store local.get $0 - i32.const 19977 + i32.const 19979 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -84004,7 +84004,7 @@ i32.add i32.store local.get $0 - i32.const 19990 + i32.const 19992 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -84016,7 +84016,7 @@ i32.add i32.store local.get $0 - i32.const 20001 + i32.const 20003 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -84028,7 +84028,7 @@ i32.add i32.store local.get $0 - i32.const 20011 + i32.const 20013 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -84077,7 +84077,7 @@ i32.add i32.store local.get $0 - i32.const 20022 + i32.const 20024 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -84089,7 +84089,7 @@ i32.add i32.store local.get $0 - i32.const 20034 + i32.const 20036 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -84101,7 +84101,7 @@ i32.add i32.store local.get $0 - i32.const 20044 + i32.const 20046 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -84113,7 +84113,7 @@ i32.add i32.store local.get $0 - i32.const 20055 + i32.const 20057 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -84125,7 +84125,7 @@ i32.add i32.store local.get $0 - i32.const 20034 + i32.const 20036 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -84137,7 +84137,7 @@ i32.add i32.store local.get $0 - i32.const 20066 + i32.const 20068 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -84172,7 +84172,7 @@ i32.add i32.store local.get $0 - i32.const 20077 + i32.const 20079 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ else i32.const 0 @@ -84218,7 +84218,7 @@ i32.add i32.store local.get $0 - i32.const 20087 + i32.const 20089 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -84230,7 +84230,7 @@ i32.add i32.store local.get $0 - i32.const 20097 + i32.const 20099 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -84242,7 +84242,7 @@ i32.add i32.store local.get $0 - i32.const 20108 + i32.const 20110 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -84254,7 +84254,7 @@ i32.add i32.store local.get $0 - i32.const 20119 + i32.const 20121 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -84289,7 +84289,7 @@ i32.add i32.store local.get $0 - i32.const 20131 + i32.const 20133 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ else i32.const 0 @@ -84422,7 +84422,7 @@ i32.add local.set $3 local.get $2 - i32.const 20143 + i32.const 20145 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -84459,7 +84459,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $1 - i32.const 20207 + i32.const 20209 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -84515,7 +84515,7 @@ i32.add local.set $3 local.get $2 - i32.const 20223 + i32.const 20225 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -84585,7 +84585,7 @@ i32.add local.set $3 local.get $2 - i32.const 18590 + i32.const 18592 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -84662,7 +84662,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $2 - i32.const 19603 + i32.const 19605 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -84721,7 +84721,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $3 - i32.const 20386 + i32.const 20388 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -84829,7 +84829,7 @@ i32.load8_s offset=12 if $if local.get $4 - i32.const 19603 + i32.const 19605 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -84843,7 +84843,7 @@ i32.const 8 i32.add local.tee $4 - i32.const 20399 + i32.const 20401 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -84856,7 +84856,7 @@ i32.load8_s offset=13 if $if_0 local.get $2 - i32.const 20406 + i32.const 20408 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -84971,7 +84971,7 @@ i32.const 16 i32.add local.tee $5 - i32.const 17857 + i32.const 17859 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -84985,7 +84985,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 20460 + i32.const 20462 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -85000,7 +85000,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle9NodeArray14printWithCommaERNS_12OutputStreamE local.get $2 - i32.const 17853 + i32.const 17855 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -85110,7 +85110,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 17857 + i32.const 17859 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -85125,7 +85125,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle9NodeArray14printWithCommaERNS_12OutputStreamE local.get $2 - i32.const 17853 + i32.const 17855 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -85160,7 +85160,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $3 - i32.const 20558 + i32.const 20560 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -85290,7 +85290,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $4 - i32.const 17857 + i32.const 17859 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -85304,7 +85304,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $5 - i32.const 17853 + i32.const 17855 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -85448,14 +85448,14 @@ i32.const 56 i32.add local.tee $2 - i32.const 17932 + i32.const 17934 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $4 local.get $2 call $__ZN12_GLOBAL__N_1eqERKNS_10StringViewES2_ if $if local.get $5 - i32.const 17857 + i32.const 17859 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -85466,7 +85466,7 @@ call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE end ;; $if local.get $6 - i32.const 17857 + i32.const 17859 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -85480,7 +85480,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $7 - i32.const 20616 + i32.const 20618 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -85501,7 +85501,7 @@ local.get $2 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $8 - i32.const 20619 + i32.const 20621 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $8 @@ -85515,7 +85515,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $9 - i32.const 17853 + i32.const 17855 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $9 @@ -85525,14 +85525,14 @@ local.get $2 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $2 - i32.const 17932 + i32.const 17934 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $4 local.get $2 call $__ZN12_GLOBAL__N_1eqERKNS_10StringViewES2_ if $if_0 local.get $10 - i32.const 17853 + i32.const 17855 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $10 @@ -85715,7 +85715,7 @@ local.set $0 end ;; $if_0 local.get $6 - i32.const 20762 + i32.const 20764 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $6 @@ -85758,7 +85758,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $4 - i32.const 20767 + i32.const 20769 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -85968,7 +85968,7 @@ i32.const 8 i32.add local.tee $4 - i32.const 20816 + i32.const 20818 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -86785,7 +86785,7 @@ local.get $8 i32.store offset=8 local.get $4 - i32.const 21023 + i32.const 21025 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $6 local.get $4 @@ -86797,7 +86797,7 @@ if $if_4 local.get $2 local.get $0 - i32.const 21341 + i32.const 21343 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ i32.store end ;; $if_4 @@ -87117,7 +87117,7 @@ i32.store local.get $2 local.get $0 - i32.const 21281 + i32.const 21283 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ i32.store local.get $0 @@ -87216,7 +87216,7 @@ local.get $2 i32.const 8 i32.add - i32.const 21019 + i32.const 21021 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -87229,7 +87229,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE br_if $block_0 local.get $2 - i32.const 21023 + i32.const 21025 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -87332,7 +87332,7 @@ br $block_1 end ;; $if_1 local.get $4 - i32.const 21085 + i32.const 21087 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -87472,7 +87472,7 @@ i32.add local.set $3 local.get $2 - i32.const 21026 + i32.const 21028 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -87523,7 +87523,7 @@ local.get $2 i32.const 32 i32.add - i32.const 21146 + i32.const 21148 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $2 @@ -87552,7 +87552,7 @@ local.set $0 else local.get $5 - i32.const 21149 + i32.const 21151 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $5 @@ -87584,7 +87584,7 @@ i32.const 1 i32.store8 offset=362 local.get $4 - i32.const 21152 + i32.const 21154 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $4 @@ -87853,7 +87853,7 @@ i32.const 24 i32.add local.tee $6 - i32.const 21155 + i32.const 21157 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -87874,7 +87874,7 @@ local.get $2 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $4 - i32.const 21163 + i32.const 21165 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -87889,7 +87889,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle9NodeArray14printWithCommaERNS_12OutputStreamE local.get $5 - i32.const 17853 + i32.const 17855 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -87977,7 +87977,7 @@ i32.const 16 i32.add local.tee $5 - i32.const 21218 + i32.const 21220 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -87998,7 +87998,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $4 - i32.const 21227 + i32.const 21229 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -88542,7 +88542,7 @@ i32.load8_s offset=12 if $if local.get $4 - i32.const 18590 + i32.const 18592 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -88668,7 +88668,7 @@ $block ;; default end ;; $block_5 local.get $4 - i32.const 17635 + i32.const 17637 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -88680,7 +88680,7 @@ br $block end ;; $block_4 local.get $5 - i32.const 17650 + i32.const 17652 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -88692,7 +88692,7 @@ br $block end ;; $block_3 local.get $6 - i32.const 21437 + i32.const 21439 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -88704,7 +88704,7 @@ br $block end ;; $block_2 local.get $7 - i32.const 21508 + i32.const 21510 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -88716,7 +88716,7 @@ br $block end ;; $block_1 local.get $8 - i32.const 21558 + i32.const 21560 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $8 @@ -88728,7 +88728,7 @@ br $block end ;; $block_0 local.get $3 - i32.const 21608 + i32.const 21610 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -88759,32 +88759,32 @@ $block ;; default end ;; $block_5 local.get $0 - i32.const 17580 + i32.const 17582 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_4 local.get $0 - i32.const 17590 + i32.const 17592 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_3 local.get $0 - i32.const 17590 + i32.const 17592 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_2 local.get $0 - i32.const 21394 + i32.const 21396 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_1 local.get $0 - i32.const 21408 + i32.const 21410 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_0 local.get $0 - i32.const 21422 + i32.const 21424 call $__ZN12_GLOBAL__N_110StringViewC2EPKc end ;; $block ) @@ -88917,7 +88917,7 @@ call $__ZNK12_GLOBAL__N_116itanium_demangle4Node11hasFunctionERNS_12OutputStreamE br_if $block_0 local.get $5 - i32.const 17855 + i32.const 17857 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -88929,7 +88929,7 @@ br $block end ;; $block_0 local.get $4 - i32.const 17857 + i32.const 17859 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -88944,7 +88944,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $2 - i32.const 21770 + i32.const 21772 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -88987,7 +88987,7 @@ br $block end ;; $block_0 local.get $2 - i32.const 17853 + i32.const 17855 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -89184,7 +89184,7 @@ i32.ne if $if_0 local.get $4 - i32.const 17855 + i32.const 17857 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -89201,7 +89201,7 @@ local.get $3 i32.const 16 i32.add - i32.const 21830 + i32.const 21832 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -89258,7 +89258,7 @@ end ;; $if_4 end ;; $if_2 local.get $3 - i32.const 17491 + i32.const 17493 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -89399,7 +89399,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 21880 + i32.const 21882 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -89456,7 +89456,7 @@ end ;; $if_2 end ;; $if_0 local.get $2 - i32.const 17491 + i32.const 17493 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -89604,7 +89604,7 @@ local.get $2 i32.const 16 i32.add - i32.const 21936 + i32.const 21938 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -89631,7 +89631,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $2 - i32.const 17491 + i32.const 17493 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -89735,7 +89735,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $1 - i32.const 22012 + i32.const 22014 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -89769,7 +89769,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $1 - i32.const 22019 + i32.const 22021 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -89803,7 +89803,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $1 - i32.const 18143 + i32.const 18145 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -89951,7 +89951,7 @@ i32.and if $if local.get $4 - i32.const 22048 + i32.const 22050 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -89973,7 +89973,7 @@ i32.and if $if_0 local.get $4 - i32.const 22055 + i32.const 22057 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -89991,7 +89991,7 @@ i32.and if $if_1 local.get $2 - i32.const 22065 + i32.const 22067 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -90102,7 +90102,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 17855 + i32.const 17857 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -90228,7 +90228,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 18039 + i32.const 18041 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -90249,7 +90249,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $5 - i32.const 17932 + i32.const 17934 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -90392,7 +90392,7 @@ i32.add call_indirect $29 (type $4) local.get $2 - i32.const 17855 + i32.const 17857 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -90450,7 +90450,7 @@ i32.const 48 i32.add local.tee $4 - i32.const 17857 + i32.const 17859 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -90465,7 +90465,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle9NodeArray14printWithCommaERNS_12OutputStreamE local.get $5 - i32.const 17853 + i32.const 17855 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -90495,7 +90495,7 @@ i32.and if $if local.get $6 - i32.const 22048 + i32.const 22050 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -90513,7 +90513,7 @@ i32.and if $if_0 local.get $7 - i32.const 22055 + i32.const 22057 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -90531,7 +90531,7 @@ i32.and if $if_1 local.get $8 - i32.const 22065 + i32.const 22067 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $8 @@ -90553,7 +90553,7 @@ $block ;; default end ;; $block_1 local.get $9 - i32.const 22250 + i32.const 22252 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $9 @@ -90565,7 +90565,7 @@ br $block end ;; $block_0 local.get $3 - i32.const 22253 + i32.const 22255 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -90656,7 +90656,7 @@ i32.add local.set $3 local.get $2 - i32.const 22306 + i32.const 22308 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -90734,7 +90734,7 @@ i32.const 8 i32.add local.tee $4 - i32.const 22370 + i32.const 22372 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -90748,7 +90748,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $2 - i32.const 17853 + i32.const 17855 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -90967,7 +90967,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 20619 + i32.const 20621 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -90988,7 +90988,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $5 - i32.const 17853 + i32.const 17855 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -91282,7 +91282,7 @@ local.get $1 if $if_9 (result i32) local.get $0 - i32.const 22651 + i32.const 22653 local.get $2 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_11SpecialNameEJRA34_KcRPNS0_4NodeEEEESC_DpOT0_ else @@ -91799,7 +91799,7 @@ i32.eqz if $if_0 local.get $2 - i32.const 17855 + i32.const 17857 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -91863,7 +91863,7 @@ i32.const 48 i32.add local.tee $4 - i32.const 17857 + i32.const 17859 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -91878,7 +91878,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle9NodeArray14printWithCommaERNS_12OutputStreamE local.get $5 - i32.const 17853 + i32.const 17855 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -91911,7 +91911,7 @@ i32.and if $if_0 local.get $6 - i32.const 22048 + i32.const 22050 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -91929,7 +91929,7 @@ i32.and if $if_1 local.get $7 - i32.const 22055 + i32.const 22057 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -91947,7 +91947,7 @@ i32.and if $if_2 local.get $8 - i32.const 22065 + i32.const 22067 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $8 @@ -91969,7 +91969,7 @@ $block ;; default end ;; $block_1 local.get $9 - i32.const 22250 + i32.const 22252 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $9 @@ -91981,7 +91981,7 @@ br $block end ;; $block_0 local.get $3 - i32.const 22253 + i32.const 22255 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -92069,7 +92069,7 @@ i32.add local.set $3 local.get $2 - i32.const 22589 + i32.const 22591 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -92201,7 +92201,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 22685 + i32.const 22687 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -92240,7 +92240,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 22710 + i32.const 22712 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -92279,7 +92279,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 22730 + i32.const 22732 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -92318,7 +92318,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 22752 + i32.const 22754 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -92357,7 +92357,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 22770 + i32.const 22772 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -92425,7 +92425,7 @@ i32.const 8 i32.add local.tee $4 - i32.const 22811 + i32.const 22813 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -92439,7 +92439,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $2 - i32.const 22836 + i32.const 22838 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -92477,7 +92477,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 22899 + i32.const 22901 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -92516,7 +92516,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 22926 + i32.const 22928 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -92555,7 +92555,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 22945 + i32.const 22947 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -92594,7 +92594,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 22959 + i32.const 22961 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -92633,7 +92633,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 22968 + i32.const 22970 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -94475,5 +94475,5 @@ call_indirect $29 (type $9) ) ;; User section "emscripten_metadata": - ;; "\00\01\00\03\80\02\bf\03\80\08\d0\ce\c1\02\b0\ce\01\c0\ce\01" + ;; "\00\02\00\04\00\80\02\bf\03\80\08\e0\ce\c1\02\c0\ce\01\d0\ce\01" ) \ No newline at end of file diff --git a/test/extensions/filters/http/wasm/test_data/grpc_call_cpp.wasm b/test/extensions/filters/http/wasm/test_data/grpc_call_cpp.wasm index bf2b065367183..c58d0a8fd983b 100644 Binary files a/test/extensions/filters/http/wasm/test_data/grpc_call_cpp.wasm and b/test/extensions/filters/http/wasm/test_data/grpc_call_cpp.wasm differ diff --git a/test/extensions/filters/http/wasm/test_data/grpc_call_cpp.wat b/test/extensions/filters/http/wasm/test_data/grpc_call_cpp.wat index cb7b41b7ad0c1..3a50dcd5bab47 100644 --- a/test/extensions/filters/http/wasm/test_data/grpc_call_cpp.wat +++ b/test/extensions/filters/http/wasm/test_data/grpc_call_cpp.wat @@ -211,8 +211,8 @@ $__ZNK10__cxxabiv121__vmi_class_type_info27has_unambiguous_public_baseEPNS_19__dynamic_cast_infoEPvi $__ZNSt3__210__function16__policy_invokerIFNS_10unique_ptrI7ContextNS_14default_deleteIS3_EEEEjP11RootContextEE11__call_implINS0_12__alloc_funcI3__0NS_9allocatorISD_EES9_EEEES6_PKNS0_16__policy_storageEjS8_ $__ZNSt3__210__function16__policy_invokerIFNS_10unique_ptrI11RootContextNS_14default_deleteIS3_EEEEjNS_17basic_string_viewIcNS_11char_traitsIcEEEEEE12__call_emptyEPKNS0_16__policy_storageEjOSA_ $__ZNSt3__210__function16__policy_invokerIFNS_10unique_ptrI11RootContextNS_14default_deleteIS3_EEEEjNS_17basic_string_viewIcNS_11char_traitsIcEEEEEE12__call_emptyEPKNS0_16__policy_storageEjOSA_ $b11 $__ZN11RootContext18onHttpCallResponseEjNSt3__210unique_ptrI8WasmDataNS0_14default_deleteIS2_EEEES5_S5_ $__ZNK10__cxxabiv117__class_type_info16search_below_dstEPNS_19__dynamic_cast_infoEPKvib $__ZNK10__cxxabiv120__si_class_type_info16search_below_dstEPNS_19__dynamic_cast_infoEPKvib $__ZNK10__cxxabiv121__vmi_class_type_info16search_below_dstEPNS_19__dynamic_cast_infoEPKvib $b11 $b11 $b11 $b12 $__ZNK10__cxxabiv117__class_type_info16search_above_dstEPNS_19__dynamic_cast_infoEPKvS4_ib $__ZNK10__cxxabiv120__si_class_type_info16search_above_dstEPNS_19__dynamic_cast_infoEPKvS4_ib $__ZNK10__cxxabiv121__vmi_class_type_info16search_above_dstEPNS_19__dynamic_cast_infoEPKvS4_ib $b13) - (data $37 $31 (i32.const 1024) - "\f8G\00\00\fdG\00\00\05H\00\00\0bH") + (data $37 $31 (i32.const 1025) + "H\00\00\05H\00\00\0dH\00\00\13H") (data $38 $31 (i32.const 1168) "\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0" "\f0\f0\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\02\03\03\03\03\03\03\03\03\03\03\03\03\07\03\03\04\05\05\05\06\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0" @@ -286,16 +286,16 @@ "\00\00\00\1f\00\00\00%\00\00\00)\00\00\00+\00\00\00/\00\00\005\00\00\00;\00\00\00=\00\00\00C\00\00\00G\00\00\00I\00\00\00O\00\00\00S\00\00\00Y\00\00\00a\00\00\00e" "\00\00\00g\00\00\00k\00\00\00m\00\00\00q\00\00\00y\00\00\00\7f\00\00\00\83\00\00\00\89\00\00\00\8b\00\00\00\8f\00\00\00\95\00\00\00\97\00\00\00\9d\00\00\00\a3\00\00\00\a7\00\00\00\a9" "\00\00\00\ad\00\00\00\b3\00\00\00\b5\00\00\00\bb\00\00\00\bf\00\00\00\c1\00\00\00\c5\00\00\00\c7\00\00\00\d1\00\00\00\cc$\00\00i1\00\00\f4$\00\00`1\00\00p\11\00\00\00\00\00\00\f4" - "$\00\00O1\00\00x\11\00\00\00\00\00\00\cc$\00\00Y2\00\00\101\00\00\1a2\00\00\00\00\00\00\01\00\00\00\98\11\00\00\00\00\00\00\cc$\00\00\bf2\00\00\f4$\00\00\932\00\00\b8" - "\11\00\00\00\00\00\00\f4$\00\00\7f2\00\00\c0\11\00\00\00\00\00\00\cc$\00\00\d52\00\00\cc$\00\00%3\00\00\f4$\00\00_4\00\00\90\13\00\00\00\00\00\00\f4$\00\00}4\00\00\90" - "\13\00\00\00\00\00\00\f4$\00\00\bb4\00\00\90\13\00\00\00\00\00\00\f4$\00\00\f94\00\00\90\13\00\00\00\00\00\00\f4$\00\00O5\00\00\90\13\00\00\00\00\00\00\f4$\00\00\9c5\00\00\90" - "\13\00\00\00\00\00\00\f4$\00\00\e55\00\00\90\13\00\00\00\00\00\00\f4$\00\00\ae6\00\00\90\13\00\00\00\00\00\00\f4$\00\00\d57\00\00\90\13\00\00\00\00\00\00\f4$\00\00\a28\00\00\90" - "\13\00\00\00\00\00\00\f4$\00\00\809\00\00\90\13\00\00\00\00\00\00\f4$\00\005:\00\00\90\13\00\00\00\00\00\00\f4$\00\00\a0:\00\00\90\13\00\00\00\00\00\00\f4$\00\00\c6:\00\00\90" - "\13\00\00\00\00\00\00\f4$\00\00\91D\00\00\90\13\00\00\00\00\00\00\f4$\00\00sC\00\00\f0\12\00\00\00\00\00\00\f4$\00\000=\00\00\00\13\00\00\00\00\00\00\f4$\00\00`=\00\00\10" - "\13\00\00\00\00\00\00\f4$\00\00&>\00\00\90\13\00\00\00\00\00\00\f4$\00\00@C\00\00\90\13\00\00\00\00\00\00\101\00\00\feA\00\00\00\00\00\00\01\00\00\00H\13\00\00\00\00\00\00\cc" - "$\00\00kB\00\00\f4$\00\00ZC\00\00\90\13\00\00\00\00\00\00\f4$\00\00\c4D\00\00p\11\00\00\00\00\00\00\f4$\00\00\f3D\00\00\80\15\00\00\00\00\00\00\ff\ff\ff\ff\ff\ff\ff\ff") + "$\00\00O1\00\00x\11\00\00\00\00\00\00\cc$\00\00]2\00\00\101\00\00\1e2\00\00\00\00\00\00\01\00\00\00\98\11\00\00\00\00\00\00\cc$\00\00\c32\00\00\f4$\00\00\972\00\00\b8" + "\11\00\00\00\00\00\00\f4$\00\00\832\00\00\c0\11\00\00\00\00\00\00\cc$\00\00\d92\00\00\cc$\00\00+3\00\00\f4$\00\00e4\00\00\90\13\00\00\00\00\00\00\f4$\00\00\834\00\00\90" + "\13\00\00\00\00\00\00\f4$\00\00\c14\00\00\90\13\00\00\00\00\00\00\f4$\00\00\ff4\00\00\90\13\00\00\00\00\00\00\f4$\00\00U5\00\00\90\13\00\00\00\00\00\00\f4$\00\00\a25\00\00\90" + "\13\00\00\00\00\00\00\f4$\00\00\eb5\00\00\90\13\00\00\00\00\00\00\f4$\00\00\b46\00\00\90\13\00\00\00\00\00\00\f4$\00\00\db7\00\00\90\13\00\00\00\00\00\00\f4$\00\00\a88\00\00\90" + "\13\00\00\00\00\00\00\f4$\00\00\869\00\00\90\13\00\00\00\00\00\00\f4$\00\00;:\00\00\90\13\00\00\00\00\00\00\f4$\00\00\a6:\00\00\90\13\00\00\00\00\00\00\f4$\00\00\cc:\00\00\90" + "\13\00\00\00\00\00\00\f4$\00\00\99D\00\00\90\13\00\00\00\00\00\00\f4$\00\00{C\00\00\f0\12\00\00\00\00\00\00\f4$\00\008=\00\00\00\13\00\00\00\00\00\00\f4$\00\00h=\00\00\10" + "\13\00\00\00\00\00\00\f4$\00\00.>\00\00\90\13\00\00\00\00\00\00\f4$\00\00HC\00\00\90\13\00\00\00\00\00\00\101\00\00\06B\00\00\00\00\00\00\01\00\00\00H\13\00\00\00\00\00\00\cc" + "$\00\00sB\00\00\f4$\00\00bC\00\00\90\13\00\00\00\00\00\00\f4$\00\00\ccD\00\00p\11\00\00\00\00\00\00\f4$\00\00\fbD\00\00\80\15\00\00\00\00\00\00\ff\ff\ff\ff\ff\ff\ff\ff") (data $55 $31 (i32.const 5008) - "\cc$\00\00\f8I\00\00\f4$\00\00\e6O\00\00\b8\13\00\00\00\00\00\00\f4$\00\00\a2P\00\00\b8\13\00\00\00\00\00\00\cc$\00\00nQ\00\00\05") + "\cc$\00\00\00J\00\00\f4$\00\00\eeO\00\00\b8\13\00\00\00\00\00\00\f4$\00\00\aaP\00\00\b8\13\00\00\00\00\00\00\cc$\00\00vQ\00\00\05") (data $56 $31 (i32.const 5068) "f") (data $57 $31 (i32.const 5092) @@ -319,26 +319,26 @@ (data $66 $31 (i32.const 5419) "\ff\ff\ff\ff\ff") (data $67 $31 (i32.const 5488) - "\f4$\00\00\e5Q\00\00\80\15\00\00\00\00\00\00\cc$\00\00\a7R\00\00\f4$\00\00\07S\00\00\98\15\00\00\00\00\00\00\f4$\00\00\b4R\00\00\a8\15\00\00\00\00\00\00\cc$\00\00\d5R\00\00" - "\f4$\00\00\e2R\00\00\88\15\00\00\00\00\00\00\f4$\00\00\97T\00\00\d0\15\00\00\00\00\00\00\cc$\00\00\c6T\00\00\f4$\00\00zU\00\00\d0\15\00\00\00\00\00\00\f4$\00\00\bdU\00\00" - "\d0\15\00\00\00\00\00\00\f4$\00\00\nV\00\00\d0\15\00\00\00\00\00\00\f4$\00\00PV\00\00\d0\15\00\00\00\00\00\00\f4$\00\00\80V\00\00\d0\15\00\00\00\00\00\00\f4$\00\00\beV\00\00" - "\d0\15\00\00\00\00\00\00\f4$\00\00\efV\00\00\d0\15\00\00\00\00\00\00\f4$\00\00?W\00\00\d0\15\00\00\00\00\00\00\f4$\00\00xW\00\00\d0\15\00\00\00\00\00\00\f4$\00\00\b3W\00\00" - "\d0\15\00\00\00\00\00\00\f4$\00\00\efW\00\00\d0\15\00\00\00\00\00\00\f4$\00\002X\00\00\d0\15\00\00\00\00\00\00\f4$\00\00`X\00\00\d0\15\00\00\00\00\00\00\f4$\00\00\93X\00\00" - "\d0\15\00\00\00\00\00\00\f4$\00\00OY\00\00\d0\15\00\00\00\00\00\00\f4$\00\00|Y\00\00\d0\15\00\00\00\00\00\00\f4$\00\00\adY\00\00\d0\15\00\00\00\00\00\00\f4$\00\00\ebY\00\00" - "\d0\15\00\00\00\00\00\00\f4$\00\00cZ\00\00\d0\15\00\00\00\00\00\00\f4$\00\00(Z\00\00\d0\15\00\00\00\00\00\00\f4$\00\00\aaZ\00\00\d0\15\00\00\00\00\00\00\f4$\00\00\f3Z\00\00" - "\d0\15\00\00\00\00\00\00\f4$\00\00N[\00\00\d0\15\00\00\00\00\00\00\f4$\00\00y[\00\00\d0\15\00\00\00\00\00\00\f4$\00\00\b3[\00\00\d0\15\00\00\00\00\00\00\f4$\00\00\e7[\00\00" - "\d0\15\00\00\00\00\00\00\f4$\00\007\\\00\00\d0\15\00\00\00\00\00\00\f4$\00\00f\\\00\00\d0\15\00\00\00\00\00\00\f4$\00\00\9f\\\00\00\d0\15\00\00\00\00\00\00\f4$\00\00\d8\\\00\00" - "\d0\15\00\00\00\00\00\00\f4$\00\00\fd^\00\00\d0\15\00\00\00\00\00\00\f4$\00\00K_\00\00\d0\15\00\00\00\00\00\00\f4$\00\00\86_\00\00\d0\15\00\00\00\00\00\00\f4$\00\00\b2_\00\00" - "\d0\15\00\00\00\00\00\00\f4$\00\00\fc_\00\00\d0\15\00\00\00\00\00\00\f4$\00\001`\00\00\d0\15\00\00\00\00\00\00\f4$\00\00d`\00\00\d0\15\00\00\00\00\00\00\f4$\00\00\9b`\00\00" - "\d0\15\00\00\00\00\00\00\f4$\00\00\d0`\00\00\d0\15\00\00\00\00\00\00\f4$\00\00fa\00\00\d0\15\00\00\00\00\00\00\f4$\00\00\98a\00\00\d0\15\00\00\00\00\00\00\f4$\00\00\caa\00\00" - "\d0\15\00\00\00\00\00\00\f4$\00\00\"b\00\00\d0\15\00\00\00\00\00\00\f4$\00\00jb\00\00\d0\15\00\00\00\00\00\00\f4$\00\00\a2b\00\00\d0\15\00\00\00\00\00\00\f4$\00\00\f0b\00\00" - "\d0\15\00\00\00\00\00\00\f4$\00\00/c\00\00\d0\15\00\00\00\00\00\00\f4$\00\00rc\00\00\d0\15\00\00\00\00\00\00\f4$\00\00\a3c\00\00\d0\15\00\00\00\00\00\00\f4$\00\00\ddd\00\00" - "\d0\15\00\00\00\00\00\00\f4$\00\00\1de\00\00\d0\15\00\00\00\00\00\00\f4$\00\00Pe\00\00\d0\15\00\00\00\00\00\00\f4$\00\00\8ae\00\00\d0\15\00\00\00\00\00\00\f4$\00\00\c3e\00\00" - "\d0\15\00\00\00\00\00\00\f4$\00\00\00f\00\00\d0\15\00\00\00\00\00\00\f4$\00\00}f\00\00\d0\15\00\00\00\00\00\00\f4$\00\00\a9f\00\00\d0\15\00\00\00\00\00\00\f4$\00\00\dff\00\00" - "\d0\15\00\00\00\00\00\00\f4$\00\003g\00\00\d0\15\00\00\00\00\00\00\f4$\00\00kg\00\00\d0\15\00\00\00\00\00\00\f4$\00\00\aeg\00\00\d0\15\00\00\00\00\00\00\f4$\00\00\dfg\00\00" - "\d0\15\00\00\00\00\00\00\f4$\00\00\0fh\00\00\d0\15\00\00\00\00\00\00\f4$\00\00Jh\00\00\d0\15\00\00\00\00\00\00\f4$\00\00\8ch\00\00\d0\15\00\00\00\00\00\00\f4$\00\00{i\00\00" - "\d0\15\00\00\00\00\00\00\f4$\00\00\06j\00\00\80\15\00\00\00\00\00\00\f4$\00\00\16j\00\00\f8\19\00\00\00\00\00\00\f4$\00\00'j\00\00\98\15\00\00\00\00\00\00\f4$\00\00Ij\00\00" - "\18\1a\00\00\00\00\00\00\f4$\00\00mj\00\00\98\15\00\00\00\00\00\00\f40\00\00\95j\00\00\f40\00\00\97j\00\00\f40\00\00\99j\00\00\f4$\00\00\9bj\00\00\88\15") + "\f4$\00\00\edQ\00\00\80\15\00\00\00\00\00\00\cc$\00\00\afR\00\00\f4$\00\00\0fS\00\00\98\15\00\00\00\00\00\00\f4$\00\00\bcR\00\00\a8\15\00\00\00\00\00\00\cc$\00\00\ddR\00\00" + "\f4$\00\00\eaR\00\00\88\15\00\00\00\00\00\00\f4$\00\00\9fT\00\00\d0\15\00\00\00\00\00\00\cc$\00\00\ceT\00\00\f4$\00\00\82U\00\00\d0\15\00\00\00\00\00\00\f4$\00\00\c5U\00\00" + "\d0\15\00\00\00\00\00\00\f4$\00\00\12V\00\00\d0\15\00\00\00\00\00\00\f4$\00\00XV\00\00\d0\15\00\00\00\00\00\00\f4$\00\00\88V\00\00\d0\15\00\00\00\00\00\00\f4$\00\00\c6V\00\00" + "\d0\15\00\00\00\00\00\00\f4$\00\00\f7V\00\00\d0\15\00\00\00\00\00\00\f4$\00\00GW\00\00\d0\15\00\00\00\00\00\00\f4$\00\00\80W\00\00\d0\15\00\00\00\00\00\00\f4$\00\00\bbW\00\00" + "\d0\15\00\00\00\00\00\00\f4$\00\00\f7W\00\00\d0\15\00\00\00\00\00\00\f4$\00\00:X\00\00\d0\15\00\00\00\00\00\00\f4$\00\00hX\00\00\d0\15\00\00\00\00\00\00\f4$\00\00\9bX\00\00" + "\d0\15\00\00\00\00\00\00\f4$\00\00WY\00\00\d0\15\00\00\00\00\00\00\f4$\00\00\84Y\00\00\d0\15\00\00\00\00\00\00\f4$\00\00\b5Y\00\00\d0\15\00\00\00\00\00\00\f4$\00\00\f3Y\00\00" + "\d0\15\00\00\00\00\00\00\f4$\00\00kZ\00\00\d0\15\00\00\00\00\00\00\f4$\00\000Z\00\00\d0\15\00\00\00\00\00\00\f4$\00\00\b2Z\00\00\d0\15\00\00\00\00\00\00\f4$\00\00\fbZ\00\00" + "\d0\15\00\00\00\00\00\00\f4$\00\00V[\00\00\d0\15\00\00\00\00\00\00\f4$\00\00\81[\00\00\d0\15\00\00\00\00\00\00\f4$\00\00\bb[\00\00\d0\15\00\00\00\00\00\00\f4$\00\00\ef[\00\00" + "\d0\15\00\00\00\00\00\00\f4$\00\00?\\\00\00\d0\15\00\00\00\00\00\00\f4$\00\00n\\\00\00\d0\15\00\00\00\00\00\00\f4$\00\00\a7\\\00\00\d0\15\00\00\00\00\00\00\f4$\00\00\e0\\\00\00" + "\d0\15\00\00\00\00\00\00\f4$\00\00\05_\00\00\d0\15\00\00\00\00\00\00\f4$\00\00S_\00\00\d0\15\00\00\00\00\00\00\f4$\00\00\8e_\00\00\d0\15\00\00\00\00\00\00\f4$\00\00\ba_\00\00" + "\d0\15\00\00\00\00\00\00\f4$\00\00\04`\00\00\d0\15\00\00\00\00\00\00\f4$\00\009`\00\00\d0\15\00\00\00\00\00\00\f4$\00\00l`\00\00\d0\15\00\00\00\00\00\00\f4$\00\00\a3`\00\00" + "\d0\15\00\00\00\00\00\00\f4$\00\00\d8`\00\00\d0\15\00\00\00\00\00\00\f4$\00\00na\00\00\d0\15\00\00\00\00\00\00\f4$\00\00\a0a\00\00\d0\15\00\00\00\00\00\00\f4$\00\00\d2a\00\00" + "\d0\15\00\00\00\00\00\00\f4$\00\00*b\00\00\d0\15\00\00\00\00\00\00\f4$\00\00rb\00\00\d0\15\00\00\00\00\00\00\f4$\00\00\aab\00\00\d0\15\00\00\00\00\00\00\f4$\00\00\f8b\00\00" + "\d0\15\00\00\00\00\00\00\f4$\00\007c\00\00\d0\15\00\00\00\00\00\00\f4$\00\00zc\00\00\d0\15\00\00\00\00\00\00\f4$\00\00\abc\00\00\d0\15\00\00\00\00\00\00\f4$\00\00\e5d\00\00" + "\d0\15\00\00\00\00\00\00\f4$\00\00%e\00\00\d0\15\00\00\00\00\00\00\f4$\00\00Xe\00\00\d0\15\00\00\00\00\00\00\f4$\00\00\92e\00\00\d0\15\00\00\00\00\00\00\f4$\00\00\cbe\00\00" + "\d0\15\00\00\00\00\00\00\f4$\00\00\08f\00\00\d0\15\00\00\00\00\00\00\f4$\00\00\85f\00\00\d0\15\00\00\00\00\00\00\f4$\00\00\b1f\00\00\d0\15\00\00\00\00\00\00\f4$\00\00\e7f\00\00" + "\d0\15\00\00\00\00\00\00\f4$\00\00;g\00\00\d0\15\00\00\00\00\00\00\f4$\00\00sg\00\00\d0\15\00\00\00\00\00\00\f4$\00\00\b6g\00\00\d0\15\00\00\00\00\00\00\f4$\00\00\e7g\00\00" + "\d0\15\00\00\00\00\00\00\f4$\00\00\17h\00\00\d0\15\00\00\00\00\00\00\f4$\00\00Rh\00\00\d0\15\00\00\00\00\00\00\f4$\00\00\94h\00\00\d0\15\00\00\00\00\00\00\f4$\00\00\83i\00\00" + "\d0\15\00\00\00\00\00\00\f4$\00\00\0ej\00\00\80\15\00\00\00\00\00\00\f4$\00\00\1ej\00\00\f8\19\00\00\00\00\00\00\f4$\00\00/j\00\00\98\15\00\00\00\00\00\00\f4$\00\00Qj\00\00" + "\18\1a\00\00\00\00\00\00\f4$\00\00uj\00\00\98\15\00\00\00\00\00\00\f40\00\00\9dj\00\00\f40\00\00\9fj\00\00\f40\00\00\a1j\00\00\f4$\00\00\a3j\00\00\88\15") (data $68 $31 (i32.const 6772) "\88\11\00\00\01\00\00\00\02\00\00\00\01\00\00\00\02\00\00\00\01\00\00\00\02\00\00\00\03\00\00\00\03\00\00\00\04\00\00\00\01\00\00\00\05\00\00\00\06\00\00\00\07\00\00\00\02\00\00\00\08\00\00\00" "\04\00\00\00\05\00\00\00\06\00\00\00\00\00\00\00\d0\11\00\00\07\00\00\00\08\00\00\00\09\00\00\00\01\00\00\00\01\00\00\00\02\00\00\00\00\00\00\00p\11\00\00\01\00\00\00\n\00\00\00\09\00\00\00" @@ -448,236 +448,236 @@ "C\00\00\00D\00\00\00S\00\00\00\97\00\00\00\00\00\00\00\f8\19\00\00\98\00\00\00\99\00\00\00h\00\00\00\00\00\00\00\08\1a\00\00\98\00\00\00\9a\00\00\00h\00\00\00\00\00\00\008\1a\00\00" "N\00\00\00\9b\00\00\00P\00\00\00Q\00\00\00\0c\00\00\00\00\00\00\00`\1a\00\00N\00\00\00\9c\00\00\00P\00\00\00Q\00\00\00\0b\00\00\00\03\00\00\00\04\00\00\00\04\00\00\00clus" "ter\00request\00service\00method\0014ExampleContext\007Context\0011ContextBa" - "se\00/home/jplev_google_com/envoy/api/wasm/cpp/proxy_wasm_intrinsi" - "cs_lite.pb.h\00CHECK failed: value != NULL: \00/home/jplev_google_co" - "m/envoy/api/wasm/cpp/struct_lite.pb.h\00NSt3__212basic_stringIcNS_" - "11char_traitsIcEENS_9allocatorIcEEEE\00NSt3__221__basic_string_com" - "monILb1EEE\0017MyGrpcCallHandler\0015GrpcCallHandlerIN6google8protob" - "uf5ValueEE\0019GrpcCallHandlerBase\003$_0\00/home/jplev_google_com/env" - "oy/api/wasm/cpp/proxy_wasm_intrinsics_lite.pb.cc\00N6google8protob" - "uf8internal29InternalMetadataWithArenaBaseINSt3__212basic_string" - "IcNS3_11char_traitsIcEENS3_9allocatorIcEEEENS1_29InternalMetadat" - "aWithArenaLiteEE9ContainerE\00DataSource.filename\00DataSource.inlin" - "e_string\00/usr/local/include/google/protobuf/arenastring.h\00CHECK " - "failed: initial_value != NULL: \00DataSource\0010DataSource\00Any.type" - "_url\00Any\003Any\00GrpcService.EnvoyGrpc.cluster_name\00GrpcService.Env" - "oyGrpc\0021GrpcService_EnvoyGrpc\00GrpcService.GoogleGrpc.SslCredent" - "ials\0037GrpcService_GoogleGrpc_SslCredentials\00GrpcService.GoogleG" - "rpc.GoogleLocalCredentials\0045GrpcService_GoogleGrpc_GoogleLocalC" - "redentials\00GrpcService.GoogleGrpc.Empty\0028GrpcService_GoogleGrpc" - "_Empty\00GrpcService.GoogleGrpc.ChannelCredentials\0041GrpcService_G" - "oogleGrpc_ChannelCredentials\00GrpcService.GoogleGrpc.CallCredenti" - "als.ServiceAccountJWTAccessCredentials.json_key\00GrpcService.Goog" - "leGrpc.CallCredentials.ServiceAccountJWTAccessCredentials\0073Grpc" - "Service_GoogleGrpc_CallCredentials_ServiceAccountJWTAccessCreden" - "tials\00GrpcService.GoogleGrpc.CallCredentials.GoogleIAMCredential" - "s.authorization_token\00GrpcService.GoogleGrpc.CallCredentials.Goo" - "gleIAMCredentials.authority_selector\00GrpcService.GoogleGrpc.Call" - "Credentials.GoogleIAMCredentials\0059GrpcService_GoogleGrpc_CallCr" - "edentials_GoogleIAMCredentials\00GrpcService.GoogleGrpc.CallCreden" - "tials.MetadataCredentialsFromPlugin.name\00GrpcService.GoogleGrpc." - "CallCredentials.MetadataCredentialsFromPlugin\0068GrpcService_Goog" - "leGrpc_CallCredentials_MetadataCredentialsFromPlugin\00GrpcService" - ".GoogleGrpc.CallCredentials.access_token\00GrpcService.GoogleGrpc." - "CallCredentials.google_refresh_token\00GrpcService.GoogleGrpc.Call" - "Credentials\0038GrpcService_GoogleGrpc_CallCredentials\00GrpcService" - ".GoogleGrpc.target_uri\00GrpcService.GoogleGrpc.stat_prefix\00GrpcSe" - "rvice.GoogleGrpc.credentials_factory_name\00GrpcService.GoogleGrpc" - "\0022GrpcService_GoogleGrpc\00GrpcService.HeaderValue.key\00GrpcServic" - "e.HeaderValue.value\00GrpcService.HeaderValue\0023GrpcService_Header" - "Value\00GrpcService\0011GrpcService\00/home/jplev_google_com/envoy/api" - "/wasm/cpp/struct_lite.pb.cc\00/usr/local/include/google/protobuf/r" - "epeated_field.h\00CHECK failed: (index) >= (0): \00CHECK failed: (in" - "dex) < (current_size_): \00/usr/local/include/google/protobuf/map." - "h\00CHECK failed: (bucket_index_ & 1) == (0): \00CHECK failed: m_->i" - "ndex_of_first_non_null_ == m_->num_buckets_ || m_->table_[m_->in" - "dex_of_first_non_null_] != NULL: \00CHECK failed: !tree->empty(): " - "\00CHECK failed: node_ != NULL && m_ != NULL: \00google.protobuf.Val" - "ue.string_value\00google.protobuf.Struct.FieldsEntry.key\00CHECK fai" - "led: (&from) != (this): \00CHECK failed: (&other) != (this): \00N6go" - "ogle8protobuf27Struct_FieldsEntry_DoNotUseE\00N6google8protobuf8in" - "ternal12MapEntryLiteINS0_27Struct_FieldsEntry_DoNotUseENSt3__212" - "basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEENS0_5Valu" - "eELNS1_14WireFormatLite9FieldTypeE9ELSD_11ELi0EEE\00N6google8proto" - "buf8internal12MapEntryImplINS0_27Struct_FieldsEntry_DoNotUseENS0" - "_11MessageLiteENSt3__212basic_stringIcNS5_11char_traitsIcEENS5_9" - "allocatorIcEEEENS0_5ValueELNS1_14WireFormatLite9FieldTypeE9ELSE_" - "11ELi0EEE\00CHECK failed: (it.m_) == (this): \00CHECK failed: TableE" - "ntryIsNonEmptyList(b): \00CHECK failed: TableEntryIsTree(b): \00CHEC" - "K failed: GetArenaNoVirtual() == NULL: \00CHECK failed: index_of_f" - "irst_non_null_ == num_buckets_ || table_[index_of_first_non_null" - "_] != NULL: \00CHECK failed: find(*KeyPtrFromNodePtr(node)) == end" - "(): \00CHECK failed: (count) <= (kMaxLength): \00CHECK failed: (resu" - "lt.bucket_index_) == (b & ~static_cast(1)): \00CHECK fa" - "iled: (table_[b]) == (table_[b ^ 1]): \00CHECK failed: !TableEntry" - "IsTree(b) && !TableEntryIsTree(b ^ 1): \00CHECK failed: (count) ==" - " (tree->size()): \00CHECK failed: (new_num_buckets) >= (kMinTableS" - "ize): \00CHECK failed: n >= kMinTableSize: \00CHECK failed: (n & (n " - "- 1)) == (0): \00CHECK failed: table_[b] == table_[b + 1] && (b & " - "1) == 0: \00N6google8protobuf3MapINSt3__212basic_stringIcNS2_11cha" - "r_traitsIcEENS2_9allocatorIcEEEENS0_5ValueEE8InnerMapE\00N6google8" - "protobuf4hashINSt3__212basic_stringIcNS2_11char_traitsIcEENS2_9a" - "llocatorIcEEEEEE\00f == NULL || dynamic_cast(f) != NULL\00/usr/l" - "ocal/include/google/protobuf/stubs/casts.h\00down_cast\00google.prot" - "obuf.Struct\00N6google8protobuf6StructE\00N6google8protobuf5ValueE\00N" - "6google8protobuf8internal12MapEntryImplINS0_27Struct_FieldsEntry" - "_DoNotUseENS0_11MessageLiteENSt3__212basic_stringIcNS5_11char_tr" - "aitsIcEENS5_9allocatorIcEEEENS0_5ValueELNS1_14WireFormatLite9Fie" - "ldTypeE9ELSE_11ELi0EE15MapEntryWrapperE\00CHECK failed: (n) >= (0)" - ": \00google.protobuf.ListValue\00N6google8protobuf9ListValueE\00google" - ".protobuf.Value\0011RootContext\00no context factory for root_id: \00N" - "6google8protobuf14FatalExceptionE\00google/protobuf/stubs/common.c" - "c\00This program requires version \00%d.%d.%d\00 of the Protocol Buffe" - "r runtime library, but the installed version is \00. Please updat" - "e your library. If you compiled the program yourself, make sure" - " that your headers are from the same version of Protocol Buffers" - " as your link-time library. (Version verification failed in \"\00\"" - ".)\00This program was compiled against version \00 of the Protocol B" - "uffer runtime library, which is not compatible with the installe" - "d version (\00). Contact the program author for an update. If yo" - "u compiled the program yourself, make sure that your headers are" - " from the same version of Protocol Buffers as your link-time lib" - "rary. (Version verification failed in \"\00[libprotobuf %s %s:%d] " - "%s\n\00INFO\00WARNING\00ERROR\00FATAL\00allocator::allocate(size_t n) 'n" - "' exceeds maximum supported size\00%u\00%lu\00google/protobuf/arena.cc" - "\00CHECK failed: (min_bytes) <= (std::numeric_limits::max(" - ") - kBlockHeaderSize): \00google/protobuf/generated_message_util.c" - "c\00Not implemented field number \00 with type \00CHECK failed: (scc->" - "visit_status.load(std::memory_order_relaxed)) == (SCCInfoBase::k" - "Running): \00google/protobuf/message_lite.cc\00CHECK failed: !coded_" - "out.HadError(): \00(cannot determine missing fields for lite messa" - "ge)\00N6google8protobuf11MessageLiteE\00parse\00Can't \00 message of typ" - "e \"\00\" because it is missing required fields: \00Exceeded maximum p" - "rotobuf size of 2GB: \00CHECK failed: (byte_size_before_serializat" - "ion) == (byte_size_after_serialization): \00 was modified concurre" - "ntly during serialization.\00CHECK failed: (bytes_produced_by_seri" - "alization) == (byte_size_before_serialization): \00Byte size calcu" - "lation and serialization were inconsistent. This may indicate a" - " bug in protocol buffers or it may be caused by concurrent modif" - "ication of \00This shouldn't be called if all the sizes are equal." - "\00google/protobuf/repeated_field.cc\00CHECK failed: (new_size) <= (" - "(std::numeric_limits::max() - kRepHeaderSize) / sizeof(o" - "ld_rep->elements[0])): \00Requested size is too large to fit into " - "size_t.\00google/protobuf/wire_format_lite.cc\00CHECK failed: (value" - ".size()) <= (kint32max): \00serializing\00parsing\00 '%s'\00String field" - "\00 contains invalid \00UTF-8 data when \00 a protocol \00buffer. Use th" - "e 'bytes' type if you intend to send raw \00bytes. \00google/protobu" - "f/io/coded_stream.cc\00CHECK failed: (buffer_size) >= (0): \00A prot" - "ocol message was rejected because it was too big (more than \00 by" - "tes). To increase the limit (or to disable these warnings), see" - " CodedInputStream::SetTotalBytesLimit() in google/protobuf/io/co" - "ded_stream.h.\00google/protobuf/io/zero_copy_stream_impl_lite.cc\00C" - "HECK failed: (count) >= (0): \00CHECK failed: (last_returned_size_" - ") > (0): \00BackUp() can only be called after a successful Next()." - "\00CHECK failed: (count) <= (last_returned_size_): \00N6google8proto" - "buf2io17ArrayOutputStreamE\00CHECK failed: target_ != NULL: \00CHECK" - " failed: (count) <= (target_->size()): \00Cannot allocate buffer l" - "arger than kint32max for \00StringOutputStream.\00N6google8protobuf2" - "io18StringOutputStreamE\00google/protobuf/io/zero_copy_stream.cc\00T" - "his ZeroCopyOutputStream doesn't support aliasing. Reaching here" - " usually means a ZeroCopyOutputStream implementation bug.\00N6goog" - "le8protobuf2io20ZeroCopyOutputStreamE\00-+ 0X0x\00(null)\00-0X+0X 0X" - "-0x+0x 0x\00inf\00INF\00nan\00NAN\00std::bad_function_call\00NSt3__217bad_fu" - "nction_callE\00mutex lock failed\00%d\00terminating with %s exception " - "of type %s: %s\00terminating with %s exception of type %s\00terminat" - "ing with %s foreign exception\00terminating\00uncaught\00St9exception\00" - "N10__cxxabiv116__shim_type_infoE\00St9type_info\00N10__cxxabiv120__s" - "i_class_type_infoE\00N10__cxxabiv117__class_type_infoE\00terminate_h" - "andler unexpectedly returned\00_Z\00___Z\00_block_invoke\00invocation fu" - "nction for block in \00void\00bool\00char\00signed char\00unsigned char\00sh" - "ort\00unsigned short\00int\00unsigned int\00long\00unsigned long\00long long" - "\00__int128\00unsigned __int128\00float\00long double\00__float128\00...\00dec" - "imal64\00decimal128\00decimal32\00decimal16\00char32_t\00char16_t\00auto\00dec" - "ltype(auto)\00std::nullptr_t\00[abi:\00]\00N12_GLOBAL__N_116itanium_dema" - "ngle10AbiTagAttrE\00N12_GLOBAL__N_116itanium_demangle4NodeE\00alloca" - "tor\00basic_string\00string\00istream\00ostream\00iostream\00std::allocator\00" - "std::basic_string\00std::string\00std::istream\00std::ostream\00std::ios" - "tream\00N12_GLOBAL__N_116itanium_demangle19SpecialSubstitutionE\00 i" - "maginary\00N12_GLOBAL__N_116itanium_demangle20PostfixQualifiedType" - "E\00 complex\00)\00 \00(\00&\00&&\00N12_GLOBAL__N_116itanium_demangle13Referen" - "ceTypeE\00objc_object\00*\00id<\00>\00N12_GLOBAL__N_116itanium_demangle11P" - "ointerTypeE\00N12_GLOBAL__N_116itanium_demangle20NameWithTemplateA" - "rgsE\00<\00, \00N12_GLOBAL__N_116itanium_demangle12TemplateArgsE\00N12_G" - "LOBAL__N_116itanium_demangle13ParameterPackE\00wchar_t\00b0E\00b1E\00u\00l" - "\00ul\00ll\00ull\00N12_GLOBAL__N_116itanium_demangle15IntegerCastExprE\00%" - "LaL\00N12_GLOBAL__N_116itanium_demangle16FloatLiteralImplIeEE\00%a\00N" - "12_GLOBAL__N_116itanium_demangle16FloatLiteralImplIdEE\00%af\00N12_G" - "LOBAL__N_116itanium_demangle16FloatLiteralImplIfEE\00true\00false\00N1" - "2_GLOBAL__N_116itanium_demangle8BoolExprE\00-\00N12_GLOBAL__N_116ita" - "nium_demangle14IntegerLiteralE\00N12_GLOBAL__N_116itanium_demangle" - "20TemplateArgumentPackE\00gs\00&=\00=\00alignof (\00,\00~\00.*\00/\00/=\00^\00^=\00==\00>=" - "\00<=\00<<\00<<=\00-=\00*=\00--\00!=\00!\00||\00|\00|=\00->*\00+\00+=\00++\00->\00%\00%=\00>>\00>>=\00size" - "of (\00typeid (\00throw\00throw \00N12_GLOBAL__N_116itanium_demangle9Thr" - "owExprE\00N12_GLOBAL__N_116itanium_demangle12InitListExprE\00N12_GLO" - "BAL__N_116itanium_demangle13NodeArrayNodeE\00sizeof... (\00N12_GLOBA" - "L__N_116itanium_demangle13EnclosingExprE\00sizeof...(\00N12_GLOBAL__" - "N_116itanium_demangle22ParameterPackExpansionE\00N12_GLOBAL__N_116" - "itanium_demangle19SizeofParamPackExprE\00static_cast\00>(\00N12_GLOBAL" - "__N_116itanium_demangle8CastExprE\00reinterpret_cast\00) ? (\00) : (\00N" - "12_GLOBAL__N_116itanium_demangle15ConditionalExprE\00noexcept (\00nw" - "\00na\00pi\00::operator \00new\00[]\00N12_GLOBAL__N_116itanium_demangle7NewE" - "xprE\00N12_GLOBAL__N_116itanium_demangle11PostfixExprE\00 ... \00 = \00N" - "12_GLOBAL__N_116itanium_demangle15BracedRangeExprE\00N12_GLOBAL__N" - "_116itanium_demangle10BracedExprE\00_GLOBAL__N\00(anonymous namespac" - "e)\00N12_GLOBAL__N_116itanium_demangle8NameTypeE\00)[\00N12_GLOBAL__N_" - "116itanium_demangle18ArraySubscriptExprE\00.\00N12_GLOBAL__N_116itan" - "ium_demangle10MemberExprE\00srN\00sr\00::\00N12_GLOBAL__N_116itanium_dem" - "angle19GlobalQualifiedNameE\00dn\00on\00operator&&\00operator&\00operator&" - "=\00operator=\00operator()\00operator,\00operator~\00operator delete[]\00ope" - "rator*\00operator/\00operator/=\00operator^\00operator^=\00operator==\00oper" - "ator>=\00operator>\00operator[]\00operator<=\00operator<<\00operator<<=\00op" - "erator<\00operator-\00operator-=\00operator*=\00operator--\00operator new[" - "]\00operator!=\00operator!\00operator new\00operator||\00operator|\00operato" - "r|=\00operator->*\00operator+\00operator+=\00operator++\00operator->\00opera" - "tor?\00operator%\00operator%=\00operator>>\00operator>>=\00operator<=>\00ope" - "rator\"\" \00N12_GLOBAL__N_116itanium_demangle15LiteralOperatorE\00ope" - "rator delete\00operator \00N12_GLOBAL__N_116itanium_demangle22Conver" - "sionOperatorTypeE\00N12_GLOBAL__N_116itanium_demangle8DtorNameE\00N1" - "2_GLOBAL__N_116itanium_demangle13QualifiedNameE\00dynamic_cast\00del" - "ete\00[] \00N12_GLOBAL__N_116itanium_demangle10DeleteExprE\00cv\00)(\00N12" - "_GLOBAL__N_116itanium_demangle14ConversionExprE\00N12_GLOBAL__N_11" - "6itanium_demangle8CallExprE\00const_cast\00N12_GLOBAL__N_116itanium_" - "demangle10PrefixExprE\00) \00 (\00N12_GLOBAL__N_116itanium_demangle10B" - "inaryExprE\00aa\00an\00aN\00aS\00cm\00ds\00dv\00dV\00eo\00eO\00eq\00ge\00gt\00le\00ls\00lS\00lt\00mi" - "\00mI\00ml\00mL\00ne\00oo\00or\00oR\00pl\00pL\00rm\00rM\00rs\00rS\00... \00 ...\00N12_GLOBAL__N_" - "116itanium_demangle8FoldExprE\00fp\00fL\00N12_GLOBAL__N_116itanium_dem" - "angle13FunctionParamE\00N12_GLOBAL__N_116itanium_demangle24Forward" - "TemplateReferenceE\00Ts\00struct\00Tu\00union\00Te\00enum\00N12_GLOBAL__N_116i" - "tanium_demangle22ElaboratedTypeSpefTypeE\00StL\00St\00std::\00N12_GLOBAL" - "__N_116itanium_demangle16StdQualifiedNameE\00DC\00N12_GLOBAL__N_116i" - "tanium_demangle21StructuredBindingNameE\00Ut\00Ul\00vE\00'lambda\00'(\00N12_" - "GLOBAL__N_116itanium_demangle15ClosureTypeNameE\00'unnamed\00'\00N12_G" - "LOBAL__N_116itanium_demangle15UnnamedTypeNameE\00string literal\00N1" - "2_GLOBAL__N_116itanium_demangle9LocalNameE\00std\00N12_GLOBAL__N_116" - "itanium_demangle12CtorDtorNameE\00basic_istream\00basic_ostream\00basi" - "c_iostream\00std::basic_string, std::" - "allocator >\00std::basic_istream >\00std::basic_ostream >\00std::basic" - "_iostream >\00N12_GLOBAL__N_116itaniu" - "m_demangle27ExpandedSpecialSubstitutionE\00N12_GLOBAL__N_116itaniu" - "m_demangle10NestedNameE\00::*\00N12_GLOBAL__N_116itanium_demangle19P" - "ointerToMemberTypeE\00[\00N12_GLOBAL__N_116itanium_demangle9ArrayTyp" - "eE\00Dv\00 vector[\00N12_GLOBAL__N_116itanium_demangle10VectorTypeE\00pi" - "xel vector[\00N12_GLOBAL__N_116itanium_demangle15PixelVectorTypeE\00" - "decltype(\00double\00unsigned long long\00objcproto\00 const\00 volatile\00 " - "restrict\00N12_GLOBAL__N_116itanium_demangle8QualTypeE\00N12_GLOBAL_" - "_N_116itanium_demangle17VendorExtQualTypeE\00N12_GLOBAL__N_116itan" - "ium_demangle13ObjCProtoNameE\00Do\00noexcept\00DO\00Dw\00Dx\00RE\00OE\00 &\00 &&\00N" - "12_GLOBAL__N_116itanium_demangle12FunctionTypeE\00throw(\00N12_GLOBA" - "L__N_116itanium_demangle20DynamicExceptionSpecE\00noexcept(\00N12_GL" - "OBAL__N_116itanium_demangle12NoexceptSpecE\00N12_GLOBAL__N_116itan" - "ium_demangle11SpecialNameE\00N12_GLOBAL__N_116itanium_demangle9Dot" - "SuffixE\00Ua9enable_ifI\00N12_GLOBAL__N_116itanium_demangle16Functio" - "nEncodingE\00 [enable_if:\00N12_GLOBAL__N_116itanium_demangle12Enabl" - "eIfAttrE\00thread-local wrapper routine for \00reference temporary f" - "or \00guard variable for \00non-virtual thunk to \00virtual thunk to \00" - "thread-local initialization routine for \00construction vtable for" - " \00-in-\00N12_GLOBAL__N_116itanium_demangle21CtorVtableSpecialNameE" - "\00covariant return thunk to \00typeinfo name for \00typeinfo for \00VTT" - " for \00vtable for \00St11logic_error\00St12length_error\00N10__cxxabiv1" - "17__pbase_type_infoE\00N10__cxxabiv119__pointer_type_infoE\00N10__cx" - "xabiv123__fundamental_type_infoE\00v\00c\00h\00N10__cxxabiv121__vmi_clas" - "s_type_infoE") + "se\00/home/piotrsikora/Google/envoy/api/wasm/cpp/proxy_wasm_intrin" + "sics_lite.pb.h\00CHECK failed: value != NULL: \00/home/piotrsikora/G" + "oogle/envoy/api/wasm/cpp/struct_lite.pb.h\00NSt3__212basic_stringI" + "cNS_11char_traitsIcEENS_9allocatorIcEEEE\00NSt3__221__basic_string" + "_commonILb1EEE\0017MyGrpcCallHandler\0015GrpcCallHandlerIN6google8pr" + "otobuf5ValueEE\0019GrpcCallHandlerBase\003$_0\00/home/piotrsikora/Goog" + "le/envoy/api/wasm/cpp/proxy_wasm_intrinsics_lite.pb.cc\00N6google8" + "protobuf8internal29InternalMetadataWithArenaBaseINSt3__212basic_" + "stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEENS1_29InternalM" + "etadataWithArenaLiteEE9ContainerE\00DataSource.filename\00DataSource" + ".inline_string\00/usr/local/include/google/protobuf/arenastring.h\00" + "CHECK failed: initial_value != NULL: \00DataSource\0010DataSource\00An" + "y.type_url\00Any\003Any\00GrpcService.EnvoyGrpc.cluster_name\00GrpcServi" + "ce.EnvoyGrpc\0021GrpcService_EnvoyGrpc\00GrpcService.GoogleGrpc.SslC" + "redentials\0037GrpcService_GoogleGrpc_SslCredentials\00GrpcService.G" + "oogleGrpc.GoogleLocalCredentials\0045GrpcService_GoogleGrpc_Google" + "LocalCredentials\00GrpcService.GoogleGrpc.Empty\0028GrpcService_Goog" + "leGrpc_Empty\00GrpcService.GoogleGrpc.ChannelCredentials\0041GrpcSer" + "vice_GoogleGrpc_ChannelCredentials\00GrpcService.GoogleGrpc.CallCr" + "edentials.ServiceAccountJWTAccessCredentials.json_key\00GrpcServic" + "e.GoogleGrpc.CallCredentials.ServiceAccountJWTAccessCredentials\00" + "73GrpcService_GoogleGrpc_CallCredentials_ServiceAccountJWTAccess" + "Credentials\00GrpcService.GoogleGrpc.CallCredentials.GoogleIAMCred" + "entials.authorization_token\00GrpcService.GoogleGrpc.CallCredentia" + "ls.GoogleIAMCredentials.authority_selector\00GrpcService.GoogleGrp" + "c.CallCredentials.GoogleIAMCredentials\0059GrpcService_GoogleGrpc_" + "CallCredentials_GoogleIAMCredentials\00GrpcService.GoogleGrpc.Call" + "Credentials.MetadataCredentialsFromPlugin.name\00GrpcService.Googl" + "eGrpc.CallCredentials.MetadataCredentialsFromPlugin\0068GrpcServic" + "e_GoogleGrpc_CallCredentials_MetadataCredentialsFromPlugin\00GrpcS" + "ervice.GoogleGrpc.CallCredentials.access_token\00GrpcService.Googl" + "eGrpc.CallCredentials.google_refresh_token\00GrpcService.GoogleGrp" + "c.CallCredentials\0038GrpcService_GoogleGrpc_CallCredentials\00GrpcS" + "ervice.GoogleGrpc.target_uri\00GrpcService.GoogleGrpc.stat_prefix\00" + "GrpcService.GoogleGrpc.credentials_factory_name\00GrpcService.Goog" + "leGrpc\0022GrpcService_GoogleGrpc\00GrpcService.HeaderValue.key\00Grpc" + "Service.HeaderValue.value\00GrpcService.HeaderValue\0023GrpcService_" + "HeaderValue\00GrpcService\0011GrpcService\00/home/piotrsikora/Google/e" + "nvoy/api/wasm/cpp/struct_lite.pb.cc\00/usr/local/include/google/pr" + "otobuf/repeated_field.h\00CHECK failed: (index) >= (0): \00CHECK fai" + "led: (index) < (current_size_): \00/usr/local/include/google/proto" + "buf/map.h\00CHECK failed: (bucket_index_ & 1) == (0): \00CHECK faile" + "d: m_->index_of_first_non_null_ == m_->num_buckets_ || m_->table" + "_[m_->index_of_first_non_null_] != NULL: \00CHECK failed: !tree->e" + "mpty(): \00CHECK failed: node_ != NULL && m_ != NULL: \00google.prot" + "obuf.Value.string_value\00google.protobuf.Struct.FieldsEntry.key\00C" + "HECK failed: (&from) != (this): \00CHECK failed: (&other) != (this" + "): \00N6google8protobuf27Struct_FieldsEntry_DoNotUseE\00N6google8pro" + "tobuf8internal12MapEntryLiteINS0_27Struct_FieldsEntry_DoNotUseEN" + "St3__212basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEN" + "S0_5ValueELNS1_14WireFormatLite9FieldTypeE9ELSD_11ELi0EEE\00N6goog" + "le8protobuf8internal12MapEntryImplINS0_27Struct_FieldsEntry_DoNo" + "tUseENS0_11MessageLiteENSt3__212basic_stringIcNS5_11char_traitsI" + "cEENS5_9allocatorIcEEEENS0_5ValueELNS1_14WireFormatLite9FieldTyp" + "eE9ELSE_11ELi0EEE\00CHECK failed: (it.m_) == (this): \00CHECK failed" + ": TableEntryIsNonEmptyList(b): \00CHECK failed: TableEntryIsTree(b" + "): \00CHECK failed: GetArenaNoVirtual() == NULL: \00CHECK failed: in" + "dex_of_first_non_null_ == num_buckets_ || table_[index_of_first_" + "non_null_] != NULL: \00CHECK failed: find(*KeyPtrFromNodePtr(node)" + ") == end(): \00CHECK failed: (count) <= (kMaxLength): \00CHECK faile" + "d: (result.bucket_index_) == (b & ~static_cast(1)): \00" + "CHECK failed: (table_[b]) == (table_[b ^ 1]): \00CHECK failed: !Ta" + "bleEntryIsTree(b) && !TableEntryIsTree(b ^ 1): \00CHECK failed: (c" + "ount) == (tree->size()): \00CHECK failed: (new_num_buckets) >= (kM" + "inTableSize): \00CHECK failed: n >= kMinTableSize: \00CHECK failed: " + "(n & (n - 1)) == (0): \00CHECK failed: table_[b] == table_[b + 1] " + "&& (b & 1) == 0: \00N6google8protobuf3MapINSt3__212basic_stringIcN" + "S2_11char_traitsIcEENS2_9allocatorIcEEEENS0_5ValueEE8InnerMapE\00N" + "6google8protobuf4hashINSt3__212basic_stringIcNS2_11char_traitsIc" + "EENS2_9allocatorIcEEEEEE\00f == NULL || dynamic_cast(f) != NUL" + "L\00/usr/local/include/google/protobuf/stubs/casts.h\00down_cast\00goo" + "gle.protobuf.Struct\00N6google8protobuf6StructE\00N6google8protobuf5" + "ValueE\00N6google8protobuf8internal12MapEntryImplINS0_27Struct_Fie" + "ldsEntry_DoNotUseENS0_11MessageLiteENSt3__212basic_stringIcNS5_1" + "1char_traitsIcEENS5_9allocatorIcEEEENS0_5ValueELNS1_14WireFormat" + "Lite9FieldTypeE9ELSE_11ELi0EE15MapEntryWrapperE\00CHECK failed: (n" + ") >= (0): \00google.protobuf.ListValue\00N6google8protobuf9ListValue" + "E\00google.protobuf.Value\0011RootContext\00no context factory for roo" + "t_id: \00N6google8protobuf14FatalExceptionE\00google/protobuf/stubs/" + "common.cc\00This program requires version \00%d.%d.%d\00 of the Protoc" + "ol Buffer runtime library, but the installed version is \00. Plea" + "se update your library. If you compiled the program yourself, m" + "ake sure that your headers are from the same version of Protocol" + " Buffers as your link-time library. (Version verification faile" + "d in \"\00\".)\00This program was compiled against version \00 of the Pr" + "otocol Buffer runtime library, which is not compatible with the " + "installed version (\00). Contact the program author for an update" + ". If you compiled the program yourself, make sure that your hea" + "ders are from the same version of Protocol Buffers as your link-" + "time library. (Version verification failed in \"\00[libprotobuf %s" + " %s:%d] %s\n\00INFO\00WARNING\00ERROR\00FATAL\00allocator::allocate(size" + "_t n) 'n' exceeds maximum supported size\00%u\00%lu\00google/protobuf/" + "arena.cc\00CHECK failed: (min_bytes) <= (std::numeric_limits::max() - kBlockHeaderSize): \00google/protobuf/generated_messag" + "e_util.cc\00Not implemented field number \00 with type \00CHECK failed" + ": (scc->visit_status.load(std::memory_order_relaxed)) == (SCCInf" + "oBase::kRunning): \00google/protobuf/message_lite.cc\00CHECK failed:" + " !coded_out.HadError(): \00(cannot determine missing fields for li" + "te message)\00N6google8protobuf11MessageLiteE\00parse\00Can't \00 messag" + "e of type \"\00\" because it is missing required fields: \00Exceeded m" + "aximum protobuf size of 2GB: \00CHECK failed: (byte_size_before_se" + "rialization) == (byte_size_after_serialization): \00 was modified " + "concurrently during serialization.\00CHECK failed: (bytes_produced" + "_by_serialization) == (byte_size_before_serialization): \00Byte si" + "ze calculation and serialization were inconsistent. This may in" + "dicate a bug in protocol buffers or it may be caused by concurre" + "nt modification of \00This shouldn't be called if all the sizes ar" + "e equal.\00google/protobuf/repeated_field.cc\00CHECK failed: (new_si" + "ze) <= ((std::numeric_limits::max() - kRepHeaderSize) / " + "sizeof(old_rep->elements[0])): \00Requested size is too large to f" + "it into size_t.\00google/protobuf/wire_format_lite.cc\00CHECK failed" + ": (value.size()) <= (kint32max): \00serializing\00parsing\00 '%s'\00Stri" + "ng field\00 contains invalid \00UTF-8 data when \00 a protocol \00buffer" + ". Use the 'bytes' type if you intend to send raw \00bytes. \00google" + "/protobuf/io/coded_stream.cc\00CHECK failed: (buffer_size) >= (0):" + " \00A protocol message was rejected because it was too big (more t" + "han \00 bytes). To increase the limit (or to disable these warnin" + "gs), see CodedInputStream::SetTotalBytesLimit() in google/protob" + "uf/io/coded_stream.h.\00google/protobuf/io/zero_copy_stream_impl_l" + "ite.cc\00CHECK failed: (count) >= (0): \00CHECK failed: (last_return" + "ed_size_) > (0): \00BackUp() can only be called after a successful" + " Next().\00CHECK failed: (count) <= (last_returned_size_): \00N6goog" + "le8protobuf2io17ArrayOutputStreamE\00CHECK failed: target_ != NULL" + ": \00CHECK failed: (count) <= (target_->size()): \00Cannot allocate " + "buffer larger than kint32max for \00StringOutputStream.\00N6google8p" + "rotobuf2io18StringOutputStreamE\00google/protobuf/io/zero_copy_str" + "eam.cc\00This ZeroCopyOutputStream doesn't support aliasing. Reach" + "ing here usually means a ZeroCopyOutputStream implementation bug" + ".\00N6google8protobuf2io20ZeroCopyOutputStreamE\00-+ 0X0x\00(null)\00-" + "0X+0X 0X-0x+0x 0x\00inf\00INF\00nan\00NAN\00std::bad_function_call\00NSt3__2" + "17bad_function_callE\00mutex lock failed\00%d\00terminating with %s ex" + "ception of type %s: %s\00terminating with %s exception of type %s\00" + "terminating with %s foreign exception\00terminating\00uncaught\00St9ex" + "ception\00N10__cxxabiv116__shim_type_infoE\00St9type_info\00N10__cxxab" + "iv120__si_class_type_infoE\00N10__cxxabiv117__class_type_infoE\00ter" + "minate_handler unexpectedly returned\00_Z\00___Z\00_block_invoke\00invoc" + "ation function for block in \00void\00bool\00char\00signed char\00unsigned" + " char\00short\00unsigned short\00int\00unsigned int\00long\00unsigned long\00l" + "ong long\00__int128\00unsigned __int128\00float\00long double\00__float128" + "\00...\00decimal64\00decimal128\00decimal32\00decimal16\00char32_t\00char16_t\00" + "auto\00decltype(auto)\00std::nullptr_t\00[abi:\00]\00N12_GLOBAL__N_116itan" + "ium_demangle10AbiTagAttrE\00N12_GLOBAL__N_116itanium_demangle4Node" + "E\00allocator\00basic_string\00string\00istream\00ostream\00iostream\00std::al" + "locator\00std::basic_string\00std::string\00std::istream\00std::ostream\00" + "std::iostream\00N12_GLOBAL__N_116itanium_demangle19SpecialSubstitu" + "tionE\00 imaginary\00N12_GLOBAL__N_116itanium_demangle20PostfixQuali" + "fiedTypeE\00 complex\00)\00 \00(\00&\00&&\00N12_GLOBAL__N_116itanium_demangle1" + "3ReferenceTypeE\00objc_object\00*\00id<\00>\00N12_GLOBAL__N_116itanium_dem" + "angle11PointerTypeE\00N12_GLOBAL__N_116itanium_demangle20NameWithT" + "emplateArgsE\00<\00, \00N12_GLOBAL__N_116itanium_demangle12TemplateArg" + "sE\00N12_GLOBAL__N_116itanium_demangle13ParameterPackE\00wchar_t\00b0E" + "\00b1E\00u\00l\00ul\00ll\00ull\00N12_GLOBAL__N_116itanium_demangle15IntegerCas" + "tExprE\00%LaL\00N12_GLOBAL__N_116itanium_demangle16FloatLiteralImplI" + "eEE\00%a\00N12_GLOBAL__N_116itanium_demangle16FloatLiteralImplIdEE\00%" + "af\00N12_GLOBAL__N_116itanium_demangle16FloatLiteralImplIfEE\00true\00" + "false\00N12_GLOBAL__N_116itanium_demangle8BoolExprE\00-\00N12_GLOBAL__" + "N_116itanium_demangle14IntegerLiteralE\00N12_GLOBAL__N_116itanium_" + "demangle20TemplateArgumentPackE\00gs\00&=\00=\00alignof (\00,\00~\00.*\00/\00/=\00^\00" + "^=\00==\00>=\00<=\00<<\00<<=\00-=\00*=\00--\00!=\00!\00||\00|\00|=\00->*\00+\00+=\00++\00->\00%\00%=\00>>\00" + ">>=\00sizeof (\00typeid (\00throw\00throw \00N12_GLOBAL__N_116itanium_dema" + "ngle9ThrowExprE\00N12_GLOBAL__N_116itanium_demangle12InitListExprE" + "\00N12_GLOBAL__N_116itanium_demangle13NodeArrayNodeE\00sizeof... (\00N" + "12_GLOBAL__N_116itanium_demangle13EnclosingExprE\00sizeof...(\00N12_" + "GLOBAL__N_116itanium_demangle22ParameterPackExpansionE\00N12_GLOBA" + "L__N_116itanium_demangle19SizeofParamPackExprE\00static_cast\00>(\00N1" + "2_GLOBAL__N_116itanium_demangle8CastExprE\00reinterpret_cast\00) ? (" + "\00) : (\00N12_GLOBAL__N_116itanium_demangle15ConditionalExprE\00noexc" + "ept (\00nw\00na\00pi\00::operator \00new\00[]\00N12_GLOBAL__N_116itanium_deman" + "gle7NewExprE\00N12_GLOBAL__N_116itanium_demangle11PostfixExprE\00 .." + ". \00 = \00N12_GLOBAL__N_116itanium_demangle15BracedRangeExprE\00N12_G" + "LOBAL__N_116itanium_demangle10BracedExprE\00_GLOBAL__N\00(anonymous " + "namespace)\00N12_GLOBAL__N_116itanium_demangle8NameTypeE\00)[\00N12_GL" + "OBAL__N_116itanium_demangle18ArraySubscriptExprE\00.\00N12_GLOBAL__N" + "_116itanium_demangle10MemberExprE\00srN\00sr\00::\00N12_GLOBAL__N_116ita" + "nium_demangle19GlobalQualifiedNameE\00dn\00on\00operator&&\00operator&\00o" + "perator&=\00operator=\00operator()\00operator,\00operator~\00operator dele" + "te[]\00operator*\00operator/\00operator/=\00operator^\00operator^=\00operato" + "r==\00operator>=\00operator>\00operator[]\00operator<=\00operator<<\00operat" + "or<<=\00operator<\00operator-\00operator-=\00operator*=\00operator--\00opera" + "tor new[]\00operator!=\00operator!\00operator new\00operator||\00operator|" + "\00operator|=\00operator->*\00operator+\00operator+=\00operator++\00operator" + "->\00operator?\00operator%\00operator%=\00operator>>\00operator>>=\00operato" + "r<=>\00operator\"\" \00N12_GLOBAL__N_116itanium_demangle15LiteralOpera" + "torE\00operator delete\00operator \00N12_GLOBAL__N_116itanium_demangle" + "22ConversionOperatorTypeE\00N12_GLOBAL__N_116itanium_demangle8Dtor" + "NameE\00N12_GLOBAL__N_116itanium_demangle13QualifiedNameE\00dynamic_" + "cast\00delete\00[] \00N12_GLOBAL__N_116itanium_demangle10DeleteExprE\00c" + "v\00)(\00N12_GLOBAL__N_116itanium_demangle14ConversionExprE\00N12_GLOB" + "AL__N_116itanium_demangle8CallExprE\00const_cast\00N12_GLOBAL__N_116" + "itanium_demangle10PrefixExprE\00) \00 (\00N12_GLOBAL__N_116itanium_dem" + "angle10BinaryExprE\00aa\00an\00aN\00aS\00cm\00ds\00dv\00dV\00eo\00eO\00eq\00ge\00gt\00le\00ls\00" + "lS\00lt\00mi\00mI\00ml\00mL\00ne\00oo\00or\00oR\00pl\00pL\00rm\00rM\00rs\00rS\00... \00 ...\00N12_GL" + "OBAL__N_116itanium_demangle8FoldExprE\00fp\00fL\00N12_GLOBAL__N_116ita" + "nium_demangle13FunctionParamE\00N12_GLOBAL__N_116itanium_demangle2" + "4ForwardTemplateReferenceE\00Ts\00struct\00Tu\00union\00Te\00enum\00N12_GLOBAL" + "__N_116itanium_demangle22ElaboratedTypeSpefTypeE\00StL\00St\00std::\00N1" + "2_GLOBAL__N_116itanium_demangle16StdQualifiedNameE\00DC\00N12_GLOBAL" + "__N_116itanium_demangle21StructuredBindingNameE\00Ut\00Ul\00vE\00'lambda" + "\00'(\00N12_GLOBAL__N_116itanium_demangle15ClosureTypeNameE\00'unnamed" + "\00'\00N12_GLOBAL__N_116itanium_demangle15UnnamedTypeNameE\00string li" + "teral\00N12_GLOBAL__N_116itanium_demangle9LocalNameE\00std\00N12_GLOBA" + "L__N_116itanium_demangle12CtorDtorNameE\00basic_istream\00basic_ostr" + "eam\00basic_iostream\00std::basic_string, std::allocator >\00std::basic_istream >\00std::basic_ostream >\00st" + "d::basic_iostream >\00N12_GLOBAL__N_1" + "16itanium_demangle27ExpandedSpecialSubstitutionE\00N12_GLOBAL__N_1" + "16itanium_demangle10NestedNameE\00::*\00N12_GLOBAL__N_116itanium_dem" + "angle19PointerToMemberTypeE\00[\00N12_GLOBAL__N_116itanium_demangle9" + "ArrayTypeE\00Dv\00 vector[\00N12_GLOBAL__N_116itanium_demangle10Vector" + "TypeE\00pixel vector[\00N12_GLOBAL__N_116itanium_demangle15PixelVect" + "orTypeE\00decltype(\00double\00unsigned long long\00objcproto\00 const\00 vo" + "latile\00 restrict\00N12_GLOBAL__N_116itanium_demangle8QualTypeE\00N12" + "_GLOBAL__N_116itanium_demangle17VendorExtQualTypeE\00N12_GLOBAL__N" + "_116itanium_demangle13ObjCProtoNameE\00Do\00noexcept\00DO\00Dw\00Dx\00RE\00OE\00" + " &\00 &&\00N12_GLOBAL__N_116itanium_demangle12FunctionTypeE\00throw(\00N" + "12_GLOBAL__N_116itanium_demangle20DynamicExceptionSpecE\00noexcept" + "(\00N12_GLOBAL__N_116itanium_demangle12NoexceptSpecE\00N12_GLOBAL__N" + "_116itanium_demangle11SpecialNameE\00N12_GLOBAL__N_116itanium_dema" + "ngle9DotSuffixE\00Ua9enable_ifI\00N12_GLOBAL__N_116itanium_demangle1" + "6FunctionEncodingE\00 [enable_if:\00N12_GLOBAL__N_116itanium_demangl" + "e12EnableIfAttrE\00thread-local wrapper routine for \00reference tem" + "porary for \00guard variable for \00non-virtual thunk to \00virtual th" + "unk to \00thread-local initialization routine for \00construction vt" + "able for \00-in-\00N12_GLOBAL__N_116itanium_demangle21CtorVtableSpec" + "ialNameE\00covariant return thunk to \00typeinfo name for \00typeinfo " + "for \00VTT for \00vtable for \00St11logic_error\00St12length_error\00N10__" + "cxxabiv117__pbase_type_infoE\00N10__cxxabiv119__pointer_type_infoE" + "\00N10__cxxabiv123__fundamental_type_infoE\00v\00c\00h\00N10__cxxabiv121__" + "vmi_class_type_infoE") (func $globalCtors (type $8) call $__GLOBAL__sub_I_grpc_call_cpp_cc @@ -1582,7 +1582,7 @@ i32.const 3 i32.store local.get $3 - i32.const 13309 + i32.const 13315 i32.store offset=4 local.get $3 i32.const 370 @@ -1594,7 +1594,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 13358 + i32.const 13364 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -3582,11 +3582,11 @@ i32.const 10 i32.store8 offset=11 local.get $0 - i32.const 13396 + i32.const 13402 i64.load align=1 i64.store align=1 local.get $0 - i32.const 13404 + i32.const 13410 i32.load16_s align=1 i32.store16 offset=8 align=1 local.get $0 @@ -3668,10 +3668,10 @@ local.get $1 call $__ZN10DataSource9MergeFromERKS_ else - i32.const 17093 - i32.const 17134 + i32.const 17101 + i32.const 17142 i32.const 92 - i32.const 17183 + i32.const 17191 call $___assert_fail end ;; $if ) @@ -3908,7 +3908,7 @@ i32.and end ;; $if_6 i32.const 0 - i32.const 13264 + i32.const 13270 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ br_if $loop i32.const 0 @@ -4052,7 +4052,7 @@ i32.and end ;; $if_12 i32.const 0 - i32.const 13284 + i32.const 13290 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ br_if $loop i32.const 0 @@ -4269,7 +4269,7 @@ local.get $2 local.get $3 i32.const 1 - i32.const 13264 + i32.const 13270 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ drop i32.const 1 @@ -4328,7 +4328,7 @@ local.get $2 local.get $3 i32.const 1 - i32.const 13284 + i32.const 13290 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ drop i32.const 3 @@ -4468,7 +4468,7 @@ i32.const 3 i32.store local.get $2 - i32.const 13309 + i32.const 13315 i32.store offset=4 local.get $2 i32.const 376 @@ -4480,7 +4480,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 13358 + i32.const 13364 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -4519,7 +4519,7 @@ i32.const 3 i32.store local.get $3 - i32.const 13018 + i32.const 13022 i32.store offset=4 local.get $3 i32.const 832 @@ -4531,7 +4531,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 15595 + i32.const 15603 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -4930,11 +4930,11 @@ i32.const 3 i32.store8 offset=11 local.get $0 - i32.const 13433 + i32.const 13439 i32.load16_s align=1 i32.store16 align=1 local.get $0 - i32.const 13435 + i32.const 13441 i32.load8_s i32.store8 offset=2 local.get $0 @@ -5062,10 +5062,10 @@ local.get $1 call $__ZN3Any9MergeFromERKS_ else - i32.const 17093 - i32.const 17134 + i32.const 17101 + i32.const 17142 i32.const 92 - i32.const 17183 + i32.const 17191 call $___assert_fail end ;; $if ) @@ -5289,7 +5289,7 @@ local.get $2 local.get $5 i32.const 0 - i32.const 13420 + i32.const 13426 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ i32.eqz br_if $block @@ -5558,7 +5558,7 @@ local.get $2 local.get $3 i32.const 1 - i32.const 13420 + i32.const 13426 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ drop i32.const 1 @@ -5665,7 +5665,7 @@ i32.const 3 i32.store local.get $3 - i32.const 13018 + i32.const 13022 i32.store offset=4 local.get $3 i32.const 1072 @@ -5677,7 +5677,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 15595 + i32.const 15603 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -6068,19 +6068,19 @@ i32.const 21 i32.store offset=4 local.get $1 - i32.const 13477 + i32.const 13483 i64.load align=1 i64.store align=1 local.get $1 - i32.const 13485 + i32.const 13491 i64.load align=1 i64.store offset=8 align=1 local.get $1 - i32.const 13493 + i32.const 13499 i32.load align=1 i32.store offset=16 align=1 local.get $1 - i32.const 13497 + i32.const 13503 i32.load8_s i32.store8 offset=20 local.get $1 @@ -6181,10 +6181,10 @@ local.get $1 call $__ZN21GrpcService_EnvoyGrpc9MergeFromERKS_ else - i32.const 17093 - i32.const 17134 + i32.const 17101 + i32.const 17142 i32.const 92 - i32.const 17183 + i32.const 17191 call $___assert_fail end ;; $if ) @@ -6364,7 +6364,7 @@ local.get $2 local.get $5 i32.const 0 - i32.const 13442 + i32.const 13448 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ i32.eqz br_if $block @@ -6589,7 +6589,7 @@ local.get $2 local.get $3 i32.const 1 - i32.const 13442 + i32.const 13448 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ drop i32.const 1 @@ -6669,7 +6669,7 @@ i32.const 3 i32.store local.get $3 - i32.const 13018 + i32.const 13022 i32.store offset=4 local.get $3 i32.const 1272 @@ -6681,7 +6681,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 15595 + i32.const 15603 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -7092,27 +7092,27 @@ i32.const 37 i32.store offset=4 local.get $1 - i32.const 13523 + i32.const 13529 i64.load align=1 i64.store align=1 local.get $1 - i32.const 13531 + i32.const 13537 i64.load align=1 i64.store offset=8 align=1 local.get $1 - i32.const 13539 + i32.const 13545 i64.load align=1 i64.store offset=16 align=1 local.get $1 - i32.const 13547 + i32.const 13553 i64.load align=1 i64.store offset=24 align=1 local.get $1 - i32.const 13555 + i32.const 13561 i32.load align=1 i32.store offset=32 align=1 local.get $1 - i32.const 13559 + i32.const 13565 i32.load8_s i32.store8 offset=36 local.get $1 @@ -7244,10 +7244,10 @@ local.get $1 call $__ZN37GrpcService_GoogleGrpc_SslCredentials9MergeFromERKS_ else - i32.const 17093 - i32.const 17134 + i32.const 17101 + i32.const 17142 i32.const 92 - i32.const 17183 + i32.const 17191 call $___assert_fail end ;; $if ) @@ -7963,7 +7963,7 @@ i32.const 3 i32.store local.get $4 - i32.const 13018 + i32.const 13022 i32.store offset=4 local.get $4 i32.const 1542 @@ -7975,7 +7975,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 15595 + i32.const 15603 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -8343,31 +8343,31 @@ i32.const 45 i32.store offset=4 local.get $1 - i32.const 13601 + i32.const 13607 i64.load align=1 i64.store align=1 local.get $1 - i32.const 13609 + i32.const 13615 i64.load align=1 i64.store offset=8 align=1 local.get $1 - i32.const 13617 + i32.const 13623 i64.load align=1 i64.store offset=16 align=1 local.get $1 - i32.const 13625 + i32.const 13631 i64.load align=1 i64.store offset=24 align=1 local.get $1 - i32.const 13633 + i32.const 13639 i64.load align=1 i64.store offset=32 align=1 local.get $1 - i32.const 13641 + i32.const 13647 i32.load align=1 i32.store offset=40 align=1 local.get $1 - i32.const 13645 + i32.const 13651 i32.load8_s i32.store8 offset=44 local.get $1 @@ -8441,10 +8441,10 @@ local.get $1 call $__ZN45GrpcService_GoogleGrpc_GoogleLocalCredentials9MergeFromERKS_ else - i32.const 17093 - i32.const 17134 + i32.const 17101 + i32.const 17142 i32.const 92 - i32.const 17183 + i32.const 17191 call $___assert_fail end ;; $if ) @@ -8776,7 +8776,7 @@ i32.const 3 i32.store local.get $2 - i32.const 13018 + i32.const 13022 i32.store offset=4 local.get $2 i32.const 1696 @@ -8788,7 +8788,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 15595 + i32.const 15603 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -9064,19 +9064,19 @@ i32.const 28 i32.store offset=4 local.get $1 - i32.const 13695 + i32.const 13701 i64.load align=1 i64.store align=1 local.get $1 - i32.const 13703 + i32.const 13709 i64.load align=1 i64.store offset=8 align=1 local.get $1 - i32.const 13711 + i32.const 13717 i64.load align=1 i64.store offset=16 align=1 local.get $1 - i32.const 13719 + i32.const 13725 i32.load align=1 i32.store offset=24 align=1 local.get $1 @@ -9111,10 +9111,10 @@ local.get $1 call $__ZN28GrpcService_GoogleGrpc_Empty9MergeFromERKS_ else - i32.const 17093 - i32.const 17134 + i32.const 17101 + i32.const 17142 i32.const 92 - i32.const 17183 + i32.const 17191 call $___assert_fail end ;; $if ) @@ -9138,7 +9138,7 @@ i32.const 3 i32.store local.get $2 - i32.const 13018 + i32.const 13022 i32.store offset=4 local.get $2 i32.const 1838 @@ -9150,7 +9150,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 15595 + i32.const 15603 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -9452,27 +9452,27 @@ i32.const 41 i32.store offset=4 local.get $1 - i32.const 13755 + i32.const 13761 i64.load align=1 i64.store align=1 local.get $1 - i32.const 13763 + i32.const 13769 i64.load align=1 i64.store offset=8 align=1 local.get $1 - i32.const 13771 + i32.const 13777 i64.load align=1 i64.store offset=16 align=1 local.get $1 - i32.const 13779 + i32.const 13785 i64.load align=1 i64.store offset=24 align=1 local.get $1 - i32.const 13787 + i32.const 13793 i64.load align=1 i64.store offset=32 align=1 local.get $1 - i32.const 13795 + i32.const 13801 i32.load8_s i32.store8 offset=40 local.get $1 @@ -9615,10 +9615,10 @@ local.get $1 call $__ZN41GrpcService_GoogleGrpc_ChannelCredentials9MergeFromERKS_ else - i32.const 17093 - i32.const 17134 + i32.const 17101 + i32.const 17142 i32.const 92 - i32.const 17183 + i32.const 17191 call $___assert_fail end ;; $if ) @@ -10474,7 +10474,7 @@ i32.const 3 i32.store local.get $3 - i32.const 13018 + i32.const 13022 i32.store offset=4 local.get $3 i32.const 2156 @@ -10486,7 +10486,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 15595 + i32.const 15603 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -11044,45 +11044,45 @@ i32.const 73 i32.store offset=4 local.get $1 - i32.const 13924 + i32.const 13930 i64.load align=1 i64.store align=1 local.get $1 - i32.const 13932 + i32.const 13938 i64.load align=1 i64.store offset=8 align=1 local.get $1 - i32.const 13940 + i32.const 13946 i64.load align=1 i64.store offset=16 align=1 local.get $1 - i32.const 13948 + i32.const 13954 i64.load align=1 i64.store offset=24 align=1 local.get $1 - i32.const 13956 + i32.const 13962 i64.load align=1 i64.store offset=32 align=1 local.get $1 - i32.const 13964 + i32.const 13970 i64.load align=1 i64.store offset=40 align=1 local.get $1 - i32.const 13972 + i32.const 13978 i64.load align=1 i64.store offset=48 align=1 local.get $1 - i32.const 13980 + i32.const 13986 i64.load align=1 i64.store offset=56 align=1 local.get $1 i32.const -64 i32.sub - i32.const 13988 + i32.const 13994 i64.load align=1 i64.store align=1 local.get $1 - i32.const 13996 + i32.const 14002 i32.load8_s i32.store8 offset=72 local.get $1 @@ -11186,10 +11186,10 @@ local.get $1 call $__ZN73GrpcService_GoogleGrpc_CallCredentials_ServiceAccountJWTAccessCredentials9MergeFromERKS_ else - i32.const 17093 - i32.const 17134 + i32.const 17101 + i32.const 17142 i32.const 92 - i32.const 17183 + i32.const 17191 call $___assert_fail end ;; $if ) @@ -11432,7 +11432,7 @@ local.get $2 local.get $5 i32.const 0 - i32.const 13841 + i32.const 13847 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ i32.eqz br_if $block @@ -11683,7 +11683,7 @@ local.get $2 local.get $3 i32.const 1 - i32.const 13841 + i32.const 13847 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ drop i32.const 1 @@ -11781,7 +11781,7 @@ i32.const 3 i32.store local.get $3 - i32.const 13018 + i32.const 13022 i32.store offset=4 local.get $3 i32.const 2393 @@ -11793,7 +11793,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 15595 + i32.const 15603 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -12115,39 +12115,39 @@ i32.const 59 i32.store offset=4 local.get $1 - i32.const 14233 + i32.const 14239 i64.load align=1 i64.store align=1 local.get $1 - i32.const 14241 + i32.const 14247 i64.load align=1 i64.store offset=8 align=1 local.get $1 - i32.const 14249 + i32.const 14255 i64.load align=1 i64.store offset=16 align=1 local.get $1 - i32.const 14257 + i32.const 14263 i64.load align=1 i64.store offset=24 align=1 local.get $1 - i32.const 14265 + i32.const 14271 i64.load align=1 i64.store offset=32 align=1 local.get $1 - i32.const 14273 + i32.const 14279 i64.load align=1 i64.store offset=40 align=1 local.get $1 - i32.const 14281 + i32.const 14287 i64.load align=1 i64.store offset=48 align=1 local.get $1 - i32.const 14289 + i32.const 14295 i32.load16_s align=1 i32.store16 offset=56 align=1 local.get $1 - i32.const 14291 + i32.const 14297 i32.load8_s i32.store8 offset=58 local.get $1 @@ -12182,10 +12182,10 @@ local.get $1 call $__ZN59GrpcService_GoogleGrpc_CallCredentials_GoogleIAMCredentials9MergeFromERKS_ else - i32.const 17093 - i32.const 17134 + i32.const 17101 + i32.const 17142 i32.const 92 - i32.const 17183 + i32.const 17191 call $___assert_fail end ;; $if ) @@ -12384,7 +12384,7 @@ local.get $2 local.get $4 i32.const 0 - i32.const 14074 + i32.const 14080 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ br_if $loop i32.const 0 @@ -12440,7 +12440,7 @@ local.get $2 local.get $4 i32.const 0 - i32.const 14154 + i32.const 14160 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ br_if $loop i32.const 0 @@ -12579,7 +12579,7 @@ local.get $2 local.get $3 i32.const 1 - i32.const 14074 + i32.const 14080 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ drop i32.const 1 @@ -12622,7 +12622,7 @@ local.get $2 local.get $3 i32.const 1 - i32.const 14154 + i32.const 14160 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ drop i32.const 2 @@ -12702,7 +12702,7 @@ i32.const 3 i32.store local.get $3 - i32.const 13018 + i32.const 13022 i32.store offset=4 local.get $3 i32.const 2632 @@ -12714,7 +12714,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 15595 + i32.const 15603 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -13092,41 +13092,41 @@ i32.const 68 i32.store offset=4 local.get $1 - i32.const 14429 + i32.const 14435 i64.load align=1 i64.store align=1 local.get $1 - i32.const 14437 + i32.const 14443 i64.load align=1 i64.store offset=8 align=1 local.get $1 - i32.const 14445 + i32.const 14451 i64.load align=1 i64.store offset=16 align=1 local.get $1 - i32.const 14453 + i32.const 14459 i64.load align=1 i64.store offset=24 align=1 local.get $1 - i32.const 14461 + i32.const 14467 i64.load align=1 i64.store offset=32 align=1 local.get $1 - i32.const 14469 + i32.const 14475 i64.load align=1 i64.store offset=40 align=1 local.get $1 - i32.const 14477 + i32.const 14483 i64.load align=1 i64.store offset=48 align=1 local.get $1 - i32.const 14485 + i32.const 14491 i64.load align=1 i64.store offset=56 align=1 local.get $1 i32.const -64 i32.sub - i32.const 14493 + i32.const 14499 i32.load align=1 i32.store align=1 local.get $1 @@ -13277,10 +13277,10 @@ local.get $1 call $__ZN68GrpcService_GoogleGrpc_CallCredentials_MetadataCredentialsFromPlugin9MergeFromERKS_ else - i32.const 17093 - i32.const 17134 + i32.const 17101 + i32.const 17142 i32.const 92 - i32.const 17183 + i32.const 17191 call $___assert_fail end ;; $if ) @@ -13482,7 +13482,7 @@ local.get $2 local.get $3 i32.const 0 - i32.const 14355 + i32.const 14361 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ br_if $loop i32.const 0 @@ -14098,7 +14098,7 @@ local.get $2 local.get $3 i32.const 1 - i32.const 14355 + i32.const 14361 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ drop i32.const 1 @@ -14203,7 +14203,7 @@ i32.const 3 i32.store local.get $3 - i32.const 13018 + i32.const 13022 i32.store offset=4 local.get $3 i32.const 2962 @@ -14215,7 +14215,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 15595 + i32.const 15603 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -14665,27 +14665,27 @@ i32.const 38 i32.store offset=4 local.get $1 - i32.const 14681 + i32.const 14687 i64.load align=1 i64.store align=1 local.get $1 - i32.const 14689 + i32.const 14695 i64.load align=1 i64.store offset=8 align=1 local.get $1 - i32.const 14697 + i32.const 14703 i64.load align=1 i64.store offset=16 align=1 local.get $1 - i32.const 14705 + i32.const 14711 i64.load align=1 i64.store offset=24 align=1 local.get $1 - i32.const 14713 + i32.const 14719 i32.load align=1 i32.store offset=32 align=1 local.get $1 - i32.const 14717 + i32.const 14723 i32.load16_s align=1 i32.store16 offset=36 align=1 local.get $1 @@ -14761,10 +14761,10 @@ local.get $1 call $__ZN38GrpcService_GoogleGrpc_CallCredentials9MergeFromERKS_ else - i32.const 17093 - i32.const 17134 + i32.const 17101 + i32.const 17142 i32.const 92 - i32.const 17183 + i32.const 17191 call $___assert_fail end ;; $if ) @@ -15013,7 +15013,7 @@ i32.and end ;; $if_6 i32.const 0 - i32.const 14569 + i32.const 14575 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ br_if $loop i32.const 0 @@ -15194,7 +15194,7 @@ i32.and end ;; $if_12 i32.const 0 - i32.const 14621 + i32.const 14627 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ br_if $loop i32.const 0 @@ -15983,7 +15983,7 @@ local.get $2 local.get $3 i32.const 1 - i32.const 14569 + i32.const 14575 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ drop i32.const 1 @@ -16043,7 +16043,7 @@ local.get $2 local.get $3 i32.const 1 - i32.const 14621 + i32.const 14627 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ drop i32.const 3 @@ -16304,7 +16304,7 @@ i32.const 3 i32.store local.get $3 - i32.const 13018 + i32.const 13022 i32.store offset=4 local.get $3 i32.const 3433 @@ -16316,7 +16316,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 15595 + i32.const 15603 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -16878,19 +16878,19 @@ i32.const 22 i32.store offset=4 local.get $1 - i32.const 14878 + i32.const 14884 i64.load align=1 i64.store align=1 local.get $1 - i32.const 14886 + i32.const 14892 i64.load align=1 i64.store offset=8 align=1 local.get $1 - i32.const 14894 + i32.const 14900 i32.load align=1 i32.store offset=16 align=1 local.get $1 - i32.const 14898 + i32.const 14904 i32.load16_s align=1 i32.store16 offset=20 align=1 local.get $1 @@ -17088,10 +17088,10 @@ local.get $1 call $__ZN22GrpcService_GoogleGrpc9MergeFromERKS_ else - i32.const 17093 - i32.const 17134 + i32.const 17101 + i32.const 17142 i32.const 92 - i32.const 17183 + i32.const 17191 call $___assert_fail end ;; $if ) @@ -17312,7 +17312,7 @@ local.get $3 local.get $2 i32.const 0 - i32.const 14761 + i32.const 14767 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ br_if $loop i32.const 0 @@ -17598,7 +17598,7 @@ local.get $3 local.get $2 i32.const 0 - i32.const 14795 + i32.const 14801 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ br_if $loop i32.const 0 @@ -17654,7 +17654,7 @@ local.get $3 local.get $2 i32.const 0 - i32.const 14830 + i32.const 14836 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ br_if $loop i32.const 0 @@ -18159,7 +18159,7 @@ local.get $3 local.get $2 i32.const 1 - i32.const 14761 + i32.const 14767 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ drop i32.const 1 @@ -18244,7 +18244,7 @@ local.get $2 local.get $3 i32.const 1 - i32.const 14795 + i32.const 14801 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ drop i32.const 4 @@ -18287,7 +18287,7 @@ local.get $2 local.get $3 i32.const 1 - i32.const 14830 + i32.const 14836 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ drop i32.const 5 @@ -18390,7 +18390,7 @@ i32.const 3 i32.store local.get $3 - i32.const 15120 + i32.const 15128 i32.store offset=4 local.get $3 i32.const 1505 @@ -18402,7 +18402,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 15172 + i32.const 15180 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -18432,7 +18432,7 @@ i32.const 3 i32.store local.get $2 - i32.const 15120 + i32.const 15128 i32.store offset=4 local.get $2 i32.const 1506 @@ -18444,7 +18444,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 15203 + i32.const 15211 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -18485,7 +18485,7 @@ i32.const 3 i32.store local.get $4 - i32.const 13018 + i32.const 13022 i32.store offset=4 local.get $4 i32.const 3854 @@ -18497,7 +18497,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 15595 + i32.const 15603 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -18765,7 +18765,7 @@ i32.const 3 i32.store local.get $2 - i32.const 15120 + i32.const 15128 i32.store offset=4 local.get $2 i32.const 1586 @@ -18777,7 +18777,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 15629 + i32.const 15637 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -18939,7 +18939,7 @@ i32.const 3 i32.store local.get $1 - i32.const 15120 + i32.const 15128 i32.store offset=4 local.get $1 i32.const 1567 @@ -18951,7 +18951,7 @@ i32.const 0 i32.store offset=20 local.get $1 - i32.const 17500 + i32.const 17508 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $1 @@ -19335,23 +19335,23 @@ i32.const 23 i32.store offset=4 local.get $1 - i32.const 14984 + i32.const 14990 i64.load align=1 i64.store align=1 local.get $1 - i32.const 14992 + i32.const 14998 i64.load align=1 i64.store offset=8 align=1 local.get $1 - i32.const 15000 + i32.const 15006 i32.load align=1 i32.store offset=16 align=1 local.get $1 - i32.const 15004 + i32.const 15010 i32.load16_s align=1 i32.store16 offset=20 align=1 local.get $1 - i32.const 15006 + i32.const 15012 i32.load8_s i32.store8 offset=22 local.get $1 @@ -19386,10 +19386,10 @@ local.get $1 call $__ZN23GrpcService_HeaderValue9MergeFromERKS_ else - i32.const 17093 - i32.const 17134 + i32.const 17101 + i32.const 17142 i32.const 92 - i32.const 17183 + i32.const 17191 call $___assert_fail end ;; $if ) @@ -19588,7 +19588,7 @@ local.get $2 local.get $4 i32.const 0 - i32.const 14926 + i32.const 14932 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ br_if $loop i32.const 0 @@ -19644,7 +19644,7 @@ local.get $2 local.get $4 i32.const 0 - i32.const 14954 + i32.const 14960 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ br_if $loop i32.const 0 @@ -19783,7 +19783,7 @@ local.get $2 local.get $3 i32.const 1 - i32.const 14926 + i32.const 14932 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ drop i32.const 1 @@ -19826,7 +19826,7 @@ local.get $2 local.get $3 i32.const 1 - i32.const 14954 + i32.const 14960 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ drop i32.const 2 @@ -19906,7 +19906,7 @@ i32.const 3 i32.store local.get $3 - i32.const 13018 + i32.const 13022 i32.store offset=4 local.get $3 i32.const 4111 @@ -19918,7 +19918,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 15595 + i32.const 15603 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -20344,15 +20344,15 @@ i32.const 11 i32.store offset=4 local.get $1 - i32.const 15034 + i32.const 15040 i64.load align=1 i64.store align=1 local.get $1 - i32.const 15042 + i32.const 15048 i32.load16_s align=1 i32.store16 offset=8 align=1 local.get $1 - i32.const 15044 + i32.const 15050 i32.load8_s i32.store8 offset=10 local.get $1 @@ -20480,10 +20480,10 @@ local.get $1 call $__ZN11GrpcService9MergeFromERKS_ else - i32.const 17093 - i32.const 17134 + i32.const 17101 + i32.const 17142 i32.const 92 - i32.const 17183 + i32.const 17191 call $___assert_fail end ;; $if ) @@ -21570,7 +21570,7 @@ i32.const 3 i32.store local.get $3 - i32.const 13018 + i32.const 13022 i32.store offset=4 local.get $3 i32.const 4428 @@ -21582,7 +21582,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 15595 + i32.const 15603 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -21806,7 +21806,7 @@ i32.const 3 i32.store local.get $2 - i32.const 15120 + i32.const 15128 i32.store offset=4 local.get $2 i32.const 1586 @@ -21818,7 +21818,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 15629 + i32.const 15637 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -21980,7 +21980,7 @@ i32.const 3 i32.store local.get $2 - i32.const 15120 + i32.const 15128 i32.store offset=4 local.get $2 i32.const 1567 @@ -21992,7 +21992,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 17500 + i32.const 17508 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -22367,7 +22367,7 @@ i32.const 3 i32.store local.get $2 - i32.const 15060 + i32.const 15066 i32.store offset=4 local.get $2 i32.const 915 @@ -22379,7 +22379,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 16240 + i32.const 16248 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -22513,19 +22513,19 @@ i32.const 25 i32.store offset=4 local.get $1 - i32.const 17527 + i32.const 17535 i64.load align=1 i64.store align=1 local.get $1 - i32.const 17535 + i32.const 17543 i64.load align=1 i64.store offset=8 align=1 local.get $1 - i32.const 17543 + i32.const 17551 i64.load align=1 i64.store offset=16 align=1 local.get $1 - i32.const 17551 + i32.const 17559 i32.load8_s i32.store8 offset=24 local.get $1 @@ -22631,10 +22631,10 @@ local.get $1 call $__ZN6google8protobuf9ListValue9MergeFromERKS1_ else - i32.const 17093 - i32.const 17134 + i32.const 17101 + i32.const 17142 i32.const 92 - i32.const 17183 + i32.const 17191 call $___assert_fail end ;; $if ) @@ -23829,7 +23829,7 @@ i32.const 3 i32.store local.get $3 - i32.const 15245 + i32.const 15253 i32.store offset=4 local.get $3 i32.const 418 @@ -23841,7 +23841,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 15329 + i32.const 15337 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -23927,7 +23927,7 @@ i32.const 3 i32.store local.get $2 - i32.const 15245 + i32.const 15253 i32.store offset=4 local.get $2 i32.const 427 @@ -23939,7 +23939,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 15446 + i32.const 15454 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -24010,7 +24010,7 @@ i32.const 3 i32.store local.get $2 - i32.const 15245 + i32.const 15253 i32.store offset=4 local.get $2 i32.const 451 @@ -24022,7 +24022,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 15286 + i32.const 15294 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -24158,7 +24158,7 @@ i32.const 3 i32.store local.get $3 - i32.const 15245 + i32.const 15253 i32.store offset=4 local.get $3 i32.const 476 @@ -24170,7 +24170,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 15477 + i32.const 15485 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -25053,10 +25053,10 @@ local.get $1 call $__ZN6google8protobuf8internal12MapEntryImplINS0_27Struct_FieldsEntry_DoNotUseENS0_11MessageLiteENSt3__212basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEENS0_5ValueELNS1_14WireFormatLite9FieldTypeE9ELSE_11ELi0EE17MergeFromInternalERKSF_ else - i32.const 17093 - i32.const 17134 + i32.const 17101 + i32.const 17142 i32.const 92 - i32.const 17183 + i32.const 17191 call $___assert_fail end ;; $if ) @@ -26065,7 +26065,7 @@ i32.and end ;; $if_11 i32.const 0 - i32.const 15521 + i32.const 15529 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ br_if $loop i32.const 0 @@ -26805,7 +26805,7 @@ local.get $6 select i32.const 0 - i32.const 15556 + i32.const 15564 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ select br $block_4 @@ -28258,7 +28258,7 @@ i32.const 3 i32.store local.get $4 - i32.const 15060 + i32.const 15066 i32.store offset=4 local.get $4 i32.const 796 @@ -28270,7 +28270,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 15595 + i32.const 15603 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -28592,7 +28592,7 @@ i32.const 3 i32.store local.get $3 - i32.const 15060 + i32.const 15066 i32.store offset=4 local.get $3 i32.const 341 @@ -28604,7 +28604,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 15595 + i32.const 15603 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -28787,7 +28787,7 @@ i32.const 3 i32.store local.get $2 - i32.const 15060 + i32.const 15066 i32.store offset=4 local.get $2 i32.const 1040 @@ -28799,7 +28799,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 15595 + i32.const 15603 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -28896,7 +28896,7 @@ i32.const 3 i32.store local.get $2 - i32.const 15120 + i32.const 15128 i32.store offset=4 local.get $2 i32.const 1586 @@ -28908,7 +28908,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 15629 + i32.const 15637 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -29136,7 +29136,7 @@ i32.const 3 i32.store local.get $2 - i32.const 15245 + i32.const 15253 i32.store offset=4 local.get $2 i32.const 601 @@ -29148,7 +29148,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 16126 + i32.const 16134 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -29210,7 +29210,7 @@ i32.const 3 i32.store local.get $2 - i32.const 15245 + i32.const 15253 i32.store offset=4 local.get $2 i32.const 607 @@ -29222,7 +29222,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 16160 + i32.const 16168 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -29265,7 +29265,7 @@ i32.const 3 i32.store local.get $3 - i32.const 15245 + i32.const 15253 i32.store offset=4 local.get $3 i32.const 612 @@ -29277,7 +29277,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 16204 + i32.const 16212 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -30346,7 +30346,7 @@ i32.const 3 i32.store local.get $1 - i32.const 15060 + i32.const 15066 i32.store offset=4 local.get $1 i32.const 495 @@ -30358,7 +30358,7 @@ i32.const 0 i32.store offset=20 local.get $1 - i32.const 16240 + i32.const 16248 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $1 @@ -30717,7 +30717,7 @@ i32.const 3 i32.store local.get $2 - i32.const 15245 + i32.const 15253 i32.store offset=4 local.get $2 i32.const 765 @@ -30729,7 +30729,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 16710 + i32.const 16718 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -30918,7 +30918,7 @@ i32.const 3 i32.store local.get $4 - i32.const 15245 + i32.const 15253 i32.store offset=4 local.get $4 i32.const 672 @@ -30930,7 +30930,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 16284 + i32.const 16292 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -30956,7 +30956,7 @@ i32.const 3 i32.store local.get $4 - i32.const 15245 + i32.const 15253 i32.store offset=4 local.get $4 i32.const 678 @@ -30968,7 +30968,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 16385 + i32.const 16393 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -31050,7 +31050,7 @@ i32.const 3 i32.store local.get $6 - i32.const 15245 + i32.const 15253 i32.store offset=4 local.get $6 i32.const 878 @@ -31062,7 +31062,7 @@ i32.const 0 i32.store offset=20 local.get $6 - i32.const 16441 + i32.const 16449 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $6 @@ -31094,7 +31094,7 @@ i32.const 3 i32.store local.get $5 - i32.const 15245 + i32.const 15253 i32.store offset=4 local.get $5 i32.const 685 @@ -31106,7 +31106,7 @@ i32.const 0 i32.store offset=20 local.get $5 - i32.const 16481 + i32.const 16489 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $5 @@ -31223,7 +31223,7 @@ i32.const 3 i32.store local.get $2 - i32.const 15245 + i32.const 15253 i32.store offset=4 local.get $2 i32.const 837 @@ -31235,7 +31235,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 16603 + i32.const 16611 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -31507,7 +31507,7 @@ i32.const 3 i32.store local.get $2 - i32.const 15245 + i32.const 15253 i32.store offset=4 local.get $2 i32.const 848 @@ -31519,7 +31519,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 16668 + i32.const 16676 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -31581,7 +31581,7 @@ i32.const 3 i32.store local.get $4 - i32.const 15245 + i32.const 15253 i32.store offset=4 local.get $4 i32.const 713 @@ -31593,7 +31593,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 16556 + i32.const 16564 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -32878,7 +32878,7 @@ i32.const 3 i32.store local.get $2 - i32.const 15245 + i32.const 15253 i32.store offset=4 local.get $2 i32.const 926 @@ -32890,7 +32890,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 16763 + i32.const 16771 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -32906,7 +32906,7 @@ i32.const 3 i32.store local.get $3 - i32.const 15245 + i32.const 15253 i32.store offset=4 local.get $3 i32.const 927 @@ -32918,7 +32918,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 16798 + i32.const 16806 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -33500,7 +33500,7 @@ i32.const 3 i32.store local.get $5 - i32.const 15245 + i32.const 15253 i32.store offset=4 local.get $5 i32.const 527 @@ -33512,7 +33512,7 @@ i32.const 0 i32.store offset=20 local.get $5 - i32.const 16835 + i32.const 16843 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $5 @@ -33776,7 +33776,7 @@ i32.const 3 i32.store local.get $1 - i32.const 15060 + i32.const 15066 i32.store offset=4 local.get $1 i32.const 150 @@ -33788,7 +33788,7 @@ i32.const 0 i32.store offset=20 local.get $1 - i32.const 16240 + i32.const 16248 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $1 @@ -33870,19 +33870,19 @@ i32.const 22 i32.store offset=4 local.get $1 - i32.const 17193 + i32.const 17201 i64.load align=1 i64.store align=1 local.get $1 - i32.const 17201 + i32.const 17209 i64.load align=1 i64.store offset=8 align=1 local.get $1 - i32.const 17209 + i32.const 17217 i32.load align=1 i32.store offset=16 align=1 local.get $1 - i32.const 17213 + i32.const 17221 i32.load16_s align=1 i32.store16 offset=20 align=1 local.get $1 @@ -33960,10 +33960,10 @@ local.get $1 call $__ZN6google8protobuf6Struct9MergeFromERKS1_ else - i32.const 17093 - i32.const 17134 + i32.const 17101 + i32.const 17142 i32.const 92 - i32.const 17183 + i32.const 17191 call $___assert_fail end ;; $if ) @@ -34142,7 +34142,7 @@ local.get $2 local.get $4 i32.const 1 - i32.const 15556 + i32.const 15564 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ drop local.get $5 @@ -34350,7 +34350,7 @@ local.get $2 local.get $4 i32.const 1 - i32.const 15556 + i32.const 15564 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ drop local.get $8 @@ -37563,7 +37563,7 @@ i32.const 3 i32.store local.get $1 - i32.const 15120 + i32.const 15128 i32.store offset=4 local.get $1 i32.const 1567 @@ -37575,7 +37575,7 @@ i32.const 0 i32.store offset=20 local.get $1 - i32.const 17500 + i32.const 17508 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $1 @@ -37779,19 +37779,19 @@ i32.const 21 i32.store offset=4 local.get $1 - i32.const 17582 + i32.const 17590 i64.load align=1 i64.store align=1 local.get $1 - i32.const 17590 + i32.const 17598 i64.load align=1 i64.store offset=8 align=1 local.get $1 - i32.const 17598 + i32.const 17606 i32.load align=1 i32.store offset=16 align=1 local.get $1 - i32.const 17602 + i32.const 17610 i32.load8_s i32.store8 offset=20 local.get $1 @@ -37867,10 +37867,10 @@ local.get $1 call $__ZN6google8protobuf5Value9MergeFromERKS1_ else - i32.const 17093 - i32.const 17134 + i32.const 17101 + i32.const 17142 i32.const 92 - i32.const 17183 + i32.const 17191 call $___assert_fail end ;; $if ) @@ -37933,7 +37933,7 @@ local.get $2 local.get $3 i32.const 1 - i32.const 15521 + i32.const 15529 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ drop i32.const 3 @@ -49546,7 +49546,7 @@ i32.store local.get $2 i32.const 128 - i32.const 21011 + i32.const 21019 local.get $3 call $_snprintf drop @@ -49583,7 +49583,7 @@ i32.store local.get $2 i32.const 128 - i32.const 18517 + i32.const 18525 local.get $3 call $_snprintf drop @@ -49620,7 +49620,7 @@ i32.store local.get $2 i32.const 128 - i32.const 18520 + i32.const 18528 local.get $3 call $_snprintf drop @@ -49908,7 +49908,7 @@ i32.const 3 i32.store local.get $3 - i32.const 18524 + i32.const 18532 i32.store offset=4 local.get $3 i32.const 116 @@ -49920,7 +49920,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 18549 + i32.const 18557 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -60768,7 +60768,7 @@ i32.const 3 i32.store local.get $11 - i32.const 18636 + i32.const 18644 i32.store offset=4 local.get $11 i32.const 571 @@ -60780,7 +60780,7 @@ i32.const 0 i32.store offset=20 local.get $11 - i32.const 18678 + i32.const 18686 call $__ZN6google8protobuf8internal10LogMessagelsEPKc local.get $4 call $__ZN6google8protobuf8internal10LogMessagelsEi @@ -60817,7 +60817,7 @@ i32.const 3 i32.store local.get $1 - i32.const 18636 + i32.const 18644 i32.store offset=4 local.get $1 i32.const 534 @@ -60829,12 +60829,12 @@ i32.const 0 i32.store offset=20 local.get $1 - i32.const 18678 + i32.const 18686 call $__ZN6google8protobuf8internal10LogMessagelsEPKc local.get $0 i32.load offset=4 call $__ZN6google8protobuf8internal10LogMessagelsEj - i32.const 18708 + i32.const 18716 call $__ZN6google8protobuf8internal10LogMessagelsEPKc local.get $0 i32.load offset=12 @@ -60895,7 +60895,7 @@ i32.const 3 i32.store local.get $1 - i32.const 18636 + i32.const 18644 i32.store offset=4 local.get $1 i32.const 801 @@ -60907,7 +60907,7 @@ i32.const 0 i32.store offset=20 local.get $1 - i32.const 18720 + i32.const 18728 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $1 @@ -61044,31 +61044,31 @@ i32.const 50 i32.store offset=4 local.get $1 - i32.const 18885 + i32.const 18893 i64.load align=1 i64.store align=1 local.get $1 - i32.const 18893 + i32.const 18901 i64.load align=1 i64.store offset=8 align=1 local.get $1 - i32.const 18901 + i32.const 18909 i64.load align=1 i64.store offset=16 align=1 local.get $1 - i32.const 18909 + i32.const 18917 i64.load align=1 i64.store offset=24 align=1 local.get $1 - i32.const 18917 + i32.const 18925 i64.load align=1 i64.store offset=32 align=1 local.get $1 - i32.const 18925 + i32.const 18933 i64.load align=1 i64.store offset=40 align=1 local.get $1 - i32.const 18933 + i32.const 18941 i32.load16_s align=1 i32.store16 offset=48 align=1 local.get $1 @@ -61205,7 +61205,7 @@ i32.const 3 i32.store local.get $4 - i32.const 18815 + i32.const 18823 i32.store offset=4 local.get $4 i32.const 373 @@ -61217,7 +61217,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 18847 + i32.const 18855 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -61342,7 +61342,7 @@ i32.const 2 i32.store local.get $6 - i32.const 18815 + i32.const 18823 i32.store offset=4 local.get $6 i32.const 121 @@ -61360,13 +61360,13 @@ i32.const 0 i32.store offset=8 local.get $5 - i32.const 18974 + i32.const 18982 call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc local.get $5 - i32.const 18968 + i32.const 18976 call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc local.get $5 - i32.const 18981 + i32.const 18989 call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc local.get $4 local.get $0 @@ -61408,7 +61408,7 @@ call $_free end ;; $if_1 local.get $5 - i32.const 19000 + i32.const 19008 call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc local.get $4 local.get $0 @@ -61501,7 +61501,7 @@ i32.const 3 i32.store local.get $6 - i32.const 18815 + i32.const 18823 i32.store offset=4 local.get $6 i32.const 68 @@ -61513,7 +61513,7 @@ i32.const 0 i32.store offset=20 local.get $6 - i32.const 19082 + i32.const 19090 call $__ZN6google8protobuf8internal10LogMessagelsEPKc local.set $1 local.get $5 @@ -61529,7 +61529,7 @@ local.get $1 local.get $5 call $__ZN6google8protobuf8internal10LogMessagelsERKNSt3__212basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEE - i32.const 19166 + i32.const 19174 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $5 @@ -61552,7 +61552,7 @@ i32.const 3 i32.store local.get $4 - i32.const 18815 + i32.const 18823 i32.store offset=4 local.get $4 i32.const 75 @@ -61564,7 +61564,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 19456 + i32.const 19464 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -61581,7 +61581,7 @@ i32.const 3 i32.store local.get $0 - i32.const 18815 + i32.const 18823 i32.store offset=4 local.get $0 i32.const 71 @@ -61593,9 +61593,9 @@ i32.const 0 i32.store offset=20 local.get $1 - i32.const 19215 + i32.const 19223 call $__ZN6google8protobuf8internal10LogMessagelsEPKc - i32.const 19301 + i32.const 19309 call $__ZN6google8protobuf8internal10LogMessagelsEPKc local.set $0 local.get $5 @@ -61611,7 +61611,7 @@ local.get $0 local.get $5 call $__ZN6google8protobuf8internal10LogMessagelsERKNSt3__212basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEE - i32.const 23709 + i32.const 23717 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $5 @@ -61629,7 +61629,7 @@ i32.const 3 i32.store local.get $4 - i32.const 18815 + i32.const 18823 i32.store offset=4 local.get $4 i32.const 75 @@ -61641,7 +61641,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 19456 + i32.const 19464 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -61691,7 +61691,7 @@ i32.const 2 i32.store local.get $2 - i32.const 18815 + i32.const 18823 i32.store offset=4 local.get $2 i32.const 289 @@ -61703,7 +61703,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 19042 + i32.const 19050 call $__ZN6google8protobuf8internal10LogMessagelsEPKc local.get $3 call $__ZN6google8protobuf8internal10LogMessagelsEm @@ -61860,7 +61860,7 @@ i32.const 3 i32.store local.get $3 - i32.const 19509 + i32.const 19517 i32.store offset=4 local.get $3 i32.const 59 @@ -61872,9 +61872,9 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 19543 + i32.const 19551 call $__ZN6google8protobuf8internal10LogMessagelsEPKc - i32.const 19660 + i32.const 19668 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -63698,7 +63698,7 @@ i32.const 3 i32.store local.get $4 - i32.const 19708 + i32.const 19716 i32.store offset=4 local.get $4 i32.const 507 @@ -63710,7 +63710,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 19744 + i32.const 19752 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -63953,7 +63953,7 @@ i32.const 3 i32.store local.get $5 - i32.const 19708 + i32.const 19716 i32.store offset=4 local.get $5 i32.const 516 @@ -63965,7 +63965,7 @@ i32.const 0 i32.store offset=20 local.get $5 - i32.const 19744 + i32.const 19752 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $5 @@ -64157,7 +64157,7 @@ i32.const 3 i32.store local.get $4 - i32.const 19708 + i32.const 19716 i32.store offset=4 local.get $4 i32.const 531 @@ -64169,7 +64169,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 19744 + i32.const 19752 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -64848,13 +64848,13 @@ i32.load offset=8 i32.store offset=8 end ;; $if_0 - i32.const 19790 + i32.const 19798 i32.const 0 local.get $2 i32.const 1 i32.eq select - i32.const 19802 + i32.const 19810 local.get $2 select local.set $3 @@ -64866,7 +64866,7 @@ i32.const 2 i32.store local.get $1 - i32.const 19708 + i32.const 19716 i32.store offset=4 local.get $1 i32.const 626 @@ -64878,21 +64878,21 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 19816 + i32.const 19824 call $__ZN6google8protobuf8internal10LogMessagelsEPKc local.get $0 call $__ZN6google8protobuf8internal10LogMessagelsERKNSt3__212basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEE - i32.const 19829 + i32.const 19837 call $__ZN6google8protobuf8internal10LogMessagelsEPKc - i32.const 19848 + i32.const 19856 call $__ZN6google8protobuf8internal10LogMessagelsEPKc local.get $3 call $__ZN6google8protobuf8internal10LogMessagelsEPKc - i32.const 19865 + i32.const 19873 call $__ZN6google8protobuf8internal10LogMessagelsEPKc - i32.const 19878 + i32.const 19886 call $__ZN6google8protobuf8internal10LogMessagelsEPKc - i32.const 19934 + i32.const 19942 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -65728,7 +65728,7 @@ i32.const 3 i32.store local.get $2 - i32.const 19942 + i32.const 19950 i32.store offset=4 local.get $2 i32.const 591 @@ -65740,7 +65740,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 19977 + i32.const 19985 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -65883,7 +65883,7 @@ i32.const 2 i32.store local.get $1 - i32.const 19942 + i32.const 19950 i32.store offset=4 local.get $1 i32.const 190 @@ -65895,12 +65895,12 @@ i32.const 0 i32.store offset=20 local.get $1 - i32.const 20014 + i32.const 20022 call $__ZN6google8protobuf8internal10LogMessagelsEPKc local.get $0 i32.load offset=36 call $__ZN6google8protobuf8internal10LogMessagelsEi - i32.const 20081 + i32.const 20089 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $1 @@ -68358,7 +68358,7 @@ i32.const 3 i32.store local.get $2 - i32.const 20226 + i32.const 20234 i32.store offset=4 local.get $2 i32.const 132 @@ -68370,9 +68370,9 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 20306 + i32.const 20314 call $__ZN6google8protobuf8internal10LogMessagelsEPKc - i32.const 20350 + i32.const 20358 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -68393,7 +68393,7 @@ i32.const 3 i32.store local.get $2 - i32.const 20226 + i32.const 20234 i32.store offset=4 local.get $2 i32.const 134 @@ -68405,7 +68405,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 20405 + i32.const 20413 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -68432,7 +68432,7 @@ i32.const 3 i32.store local.get $3 - i32.const 20226 + i32.const 20234 i32.store offset=4 local.get $3 i32.const 135 @@ -68444,7 +68444,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 20275 + i32.const 20283 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -68500,7 +68500,7 @@ i32.const 3 i32.store local.get $3 - i32.const 20226 + i32.const 20234 i32.store offset=4 local.get $3 i32.const 151 @@ -68512,7 +68512,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 20495 + i32.const 20503 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -68586,7 +68586,7 @@ i32.const 2 i32.store local.get $5 - i32.const 20226 + i32.const 20234 i32.store offset=4 local.get $5 i32.const 164 @@ -68598,9 +68598,9 @@ i32.const 0 i32.store offset=20 local.get $5 - i32.const 20572 + i32.const 20580 call $__ZN6google8protobuf8internal10LogMessagelsEPKc - i32.const 20622 + i32.const 20630 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $5 @@ -68675,7 +68675,7 @@ i32.const 3 i32.store local.get $2 - i32.const 20226 + i32.const 20234 i32.store offset=4 local.get $2 i32.const 182 @@ -68687,7 +68687,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 20275 + i32.const 20283 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -68708,7 +68708,7 @@ i32.const 3 i32.store local.get $2 - i32.const 20226 + i32.const 20234 i32.store offset=4 local.get $2 i32.const 183 @@ -68720,7 +68720,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 20495 + i32.const 20503 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -68750,7 +68750,7 @@ i32.const 3 i32.store local.get $3 - i32.const 20226 + i32.const 20234 i32.store offset=4 local.get $3 i32.const 184 @@ -68762,7 +68762,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 20527 + i32.const 20535 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -68823,7 +68823,7 @@ i32.const 3 i32.store local.get $1 - i32.const 20226 + i32.const 20234 i32.store offset=4 local.get $1 i32.const 189 @@ -68835,7 +68835,7 @@ i32.const 0 i32.store offset=20 local.get $1 - i32.const 20495 + i32.const 20503 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $1 @@ -68890,7 +68890,7 @@ i32.add local.tee $3 i32.const 1024 - i32.const 19810 + i32.const 19818 local.get $2 call $_vsnprintf local.tee $4 @@ -68923,7 +68923,7 @@ i32.store local.get $3 local.get $5 - i32.const 19810 + i32.const 19818 local.get $2 call $_vsnprintf local.tee $1 @@ -69470,7 +69470,7 @@ i32.const 3 i32.store local.get $0 - i32.const 20684 + i32.const 20692 i32.store offset=4 local.get $0 i32.const 47 @@ -69482,7 +69482,7 @@ i32.const 0 i32.store offset=20 local.get $0 - i32.const 20723 + i32.const 20731 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $0 @@ -70451,13 +70451,13 @@ local.tee $1 i64.reinterpret_f64 local.set $25 - i32.const 20907 + i32.const 20915 local.set $18 i32.const 1 else - i32.const 20910 - i32.const 20913 - i32.const 20908 + i32.const 20918 + i32.const 20921 + i32.const 20916 local.get $4 i32.const 1 i32.and @@ -70480,8 +70480,8 @@ i64.const 9218868437227405312 i64.eq if $if_0 (result i32) - i32.const 20934 - i32.const 20938 + i32.const 20942 + i32.const 20946 local.get $5 i32.const 32 i32.and @@ -70489,8 +70489,8 @@ i32.ne local.tee $3 select - i32.const 20926 - i32.const 20930 + i32.const 20934 + i32.const 20938 local.get $3 select local.get $1 @@ -71838,7 +71838,7 @@ i32.eqz if $if_54 local.get $0 - i32.const 23709 + i32.const 23717 i32.const 1 call $_out end ;; $if_54 @@ -71997,7 +71997,7 @@ br $block_4 end ;; $if_61 local.get $0 - i32.const 23709 + i32.const 23717 i32.const 1 call $_out local.get $6 @@ -73087,7 +73087,7 @@ local.set $1 i32.const 0 local.set $12 - i32.const 20890 + i32.const 20898 local.set $8 br $block_14 end ;; $block_25 @@ -73103,13 +73103,13 @@ i64.sub local.tee $25 i64.store - i32.const 20890 + i32.const 20898 local.set $8 i32.const 1 else - i32.const 20891 - i32.const 20892 - i32.const 20890 + i32.const 20899 + i32.const 20900 + i32.const 20898 local.get $7 i32.const 1 i32.and @@ -73133,7 +73133,7 @@ local.set $25 i32.const 0 local.set $12 - i32.const 20890 + i32.const 20898 local.set $8 br $block_16 end ;; $block_23 @@ -73149,7 +73149,7 @@ local.set $5 i32.const 0 local.set $12 - i32.const 20890 + i32.const 20898 local.set $8 local.get $18 local.set $1 @@ -73158,7 +73158,7 @@ local.get $10 i32.load local.tee $5 - i32.const 20900 + i32.const 20908 local.get $5 select local.tee $6 @@ -73178,7 +73178,7 @@ local.set $5 i32.const 0 local.set $12 - i32.const 20890 + i32.const 20898 local.set $8 local.get $1 local.get $6 @@ -73239,7 +73239,7 @@ local.set $5 i32.const 0 local.set $12 - i32.const 20890 + i32.const 20898 local.set $8 local.get $18 local.set $1 @@ -73267,11 +73267,11 @@ local.tee $8 select local.set $12 - i32.const 20890 + i32.const 20898 local.get $6 i32.const 4 i32.shr_u - i32.const 20890 + i32.const 20898 i32.add local.get $8 select @@ -74456,7 +74456,7 @@ local.get $1 i32.store local.get $0 - i32.const 18397 + i32.const 18405 local.get $2 call $_vfprintf drop @@ -81648,7 +81648,7 @@ (func $__ZNKSt3__217bad_function_call4whatEv (type $2) (param $0 i32) (result i32) - i32.const 20942 + i32.const 20950 ) (func $__ZNSt3__212__next_primeEm (type $2) @@ -83585,7 +83585,7 @@ (param $0 i32) (local $1 i32) (local $2 i32) - i32.const 18449 + i32.const 18457 call $_strlen local.tee $2 i32.const 13 @@ -83604,7 +83604,7 @@ i32.const 12 i32.add local.tee $1 - i32.const 18449 + i32.const 18457 local.get $2 i32.const 1 i32.add @@ -84583,7 +84583,7 @@ local.set $0 end ;; $if_0 local.get $0 - i32.const 17618 + i32.const 17626 local.get $1 call $__ZNSt3__211char_traitsIcE4copyEPcPKcm local.get $3 @@ -84630,7 +84630,7 @@ end ;; $if end ;; $loop local.get $0 - i32.const 17618 + i32.const 17626 call $_strlen local.tee $2 local.get $2 @@ -84791,7 +84791,7 @@ local.get $4 i32.const 1 i32.add - i32.const 21011 + i32.const 21019 local.get $5 call $_snprintf local.tee $3 @@ -84905,9 +84905,9 @@ i64.ne if $if_0 local.get $1 - i32.const 21150 + i32.const 21158 i32.store - i32.const 21100 + i32.const 21108 local.get $1 call $_abort_message end ;; $if_0 @@ -84972,7 +84972,7 @@ call_indirect $30 (type $2) local.set $0 local.get $4 - i32.const 21150 + i32.const 21158 i32.store local.get $4 local.get $1 @@ -84980,22 +84980,22 @@ local.get $4 local.get $0 i32.store offset=8 - i32.const 21014 + i32.const 21022 local.get $4 call $_abort_message else local.get $3 - i32.const 21150 + i32.const 21158 i32.store local.get $3 local.get $1 i32.store offset=4 - i32.const 21059 + i32.const 21067 local.get $3 call $_abort_message end ;; $if_3 end ;; $if - i32.const 21138 + i32.const 21146 local.get $2 i32.const 1056 i32.add @@ -85960,7 +85960,7 @@ local.get $3 i32.const 24 i32.add - i32.const 21329 + i32.const 21337 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $3 @@ -86034,7 +86034,7 @@ else block $block (result i32) local.get $2 - i32.const 21332 + i32.const 21340 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $2 @@ -86064,7 +86064,7 @@ local.get $2 if $if_4 (result i32) local.get $4 - i32.const 21337 + i32.const 21345 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $4 @@ -86125,7 +86125,7 @@ i32.const 0 else local.get $0 - i32.const 21351 + i32.const 21359 local.get $3 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_11SpecialNameEJRA34_KcRPNS0_4NodeEEEESC_DpOT0_ end ;; $if_9 @@ -86357,7 +86357,7 @@ i32.const 216 i32.add call_indirect $30 (type $8) - i32.const 21289 + i32.const 21297 local.get $1 call $_abort_message ) @@ -86594,7 +86594,7 @@ i32.const 0 i32.store local.get $5 - i32.const 26684 + i32.const 26692 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -87114,7 +87114,7 @@ i32.add i32.store local.get $0 - i32.const 21385 + i32.const 21393 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_35 @@ -87137,7 +87137,7 @@ i32.add i32.store local.get $0 - i32.const 21390 + i32.const 21398 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_33 @@ -87148,7 +87148,7 @@ i32.add i32.store local.get $0 - i32.const 21395 + i32.const 21403 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_32 @@ -87159,7 +87159,7 @@ i32.add i32.store local.get $0 - i32.const 21400 + i32.const 21408 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_31 @@ -87170,7 +87170,7 @@ i32.add i32.store local.get $0 - i32.const 21412 + i32.const 21420 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_30 @@ -87181,7 +87181,7 @@ i32.add i32.store local.get $0 - i32.const 21426 + i32.const 21434 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_29 @@ -87192,7 +87192,7 @@ i32.add i32.store local.get $0 - i32.const 21432 + i32.const 21440 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_28 @@ -87203,7 +87203,7 @@ i32.add i32.store local.get $0 - i32.const 21447 + i32.const 21455 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_27 @@ -87214,7 +87214,7 @@ i32.add i32.store local.get $0 - i32.const 21451 + i32.const 21459 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_26 @@ -87225,7 +87225,7 @@ i32.add i32.store local.get $0 - i32.const 21464 + i32.const 21472 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_25 @@ -87236,7 +87236,7 @@ i32.add i32.store local.get $0 - i32.const 21469 + i32.const 21477 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_24 @@ -87247,7 +87247,7 @@ i32.add i32.store local.get $0 - i32.const 21483 + i32.const 21491 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_23 @@ -87270,7 +87270,7 @@ i32.add i32.store local.get $0 - i32.const 21493 + i32.const 21501 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_21 @@ -87281,7 +87281,7 @@ i32.add i32.store local.get $0 - i32.const 21502 + i32.const 21510 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_20 @@ -87292,7 +87292,7 @@ i32.add i32.store local.get $0 - i32.const 21520 + i32.const 21528 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_19 @@ -87315,7 +87315,7 @@ i32.add i32.store local.get $0 - i32.const 21526 + i32.const 21534 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_17 @@ -87326,7 +87326,7 @@ i32.add i32.store local.get $0 - i32.const 21538 + i32.const 21546 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_16 @@ -87337,7 +87337,7 @@ i32.add i32.store local.get $0 - i32.const 21549 + i32.const 21557 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_15 @@ -87411,7 +87411,7 @@ i32.add i32.store local.get $0 - i32.const 21553 + i32.const 21561 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_53 @@ -87422,7 +87422,7 @@ i32.add i32.store local.get $0 - i32.const 21563 + i32.const 21571 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_52 @@ -87433,7 +87433,7 @@ i32.add i32.store local.get $0 - i32.const 21574 + i32.const 21582 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_51 @@ -87444,7 +87444,7 @@ i32.add i32.store local.get $0 - i32.const 21584 + i32.const 21592 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_50 @@ -87455,7 +87455,7 @@ i32.add i32.store local.get $0 - i32.const 21594 + i32.const 21602 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_49 @@ -87466,7 +87466,7 @@ i32.add i32.store local.get $0 - i32.const 21603 + i32.const 21611 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_48 @@ -87477,7 +87477,7 @@ i32.add i32.store local.get $0 - i32.const 21612 + i32.const 21620 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_47 @@ -87488,7 +87488,7 @@ i32.add i32.store local.get $0 - i32.const 21617 + i32.const 21625 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_46 @@ -87499,7 +87499,7 @@ i32.add i32.store local.get $0 - i32.const 21632 + i32.const 21640 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_45 @@ -87974,7 +87974,7 @@ i32.const 0 i32.store local.get $3 - i32.const 26385 + i32.const 26393 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $3 @@ -87988,14 +87988,14 @@ if $if (result i32) local.get $6 local.get $0 - i32.const 26388 + i32.const 26396 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ i32.store br $block_0 else block $block_1 (result i32) local.get $4 - i32.const 26397 + i32.const 26405 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $4 @@ -88032,7 +88032,7 @@ br $block_0 end ;; $if_0 local.get $5 - i32.const 26400 + i32.const 26408 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $5 @@ -88095,7 +88095,7 @@ br $block end ;; $block_0 local.get $8 - i32.const 26403 + i32.const 26411 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $8 @@ -88151,7 +88151,7 @@ i32.eqz if $if_4 local.get $9 - i32.const 26406 + i32.const 26414 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $9 @@ -88162,7 +88162,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE br_if $block_7 local.get $10 - i32.const 26409 + i32.const 26417 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $10 @@ -88274,7 +88274,7 @@ else block $block (result i32) local.get $5 - i32.const 26200 + i32.const 26208 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -88569,7 +88569,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfEc if $if_2 (result i32) local.get $0 - i32.const 26164 + i32.const 26172 local.get $1 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_13EnclosingExprEJRA10_KcRPNS0_4NodeERA2_S8_EEESC_DpOT0_ else @@ -88607,7 +88607,7 @@ local.get $1 i32.const 8 i32.add - i32.const 26039 + i32.const 26047 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -88996,7 +88996,7 @@ i32.const 24 i32.add local.tee $5 - i32.const 25095 + i32.const 25103 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -89007,12 +89007,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if local.get $1 - i32.const 25098 + i32.const 25106 call $__ZN12_GLOBAL__N_110StringViewC2EPKc else block $block local.get $3 - i32.const 25105 + i32.const 25113 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -89023,12 +89023,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_0 local.get $1 - i32.const 25108 + i32.const 25116 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $if_0 local.get $4 - i32.const 25114 + i32.const 25122 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -89039,7 +89039,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_1 local.get $1 - i32.const 25117 + i32.const 25125 call $__ZN12_GLOBAL__N_110StringViewC2EPKc end ;; $if_1 end ;; $block @@ -89132,7 +89132,7 @@ i32.load8_s offset=362 if $if_2 local.get $0 - i32.const 21612 + i32.const 21620 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $if_2 @@ -90155,7 +90155,7 @@ i32.add call_indirect $30 (type $1) local.get $4 - i32.const 21647 + i32.const 21655 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -90176,7 +90176,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $5 - i32.const 21653 + i32.const 21661 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -90388,7 +90388,7 @@ $block ;; default end ;; $block_5 local.get $4 - i32.const 21797 + i32.const 21805 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -90400,7 +90400,7 @@ br $block end ;; $block_4 local.get $5 - i32.const 21812 + i32.const 21820 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -90412,7 +90412,7 @@ br $block end ;; $block_3 local.get $6 - i32.const 21830 + i32.const 21838 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -90424,7 +90424,7 @@ br $block end ;; $block_2 local.get $7 - i32.const 21842 + i32.const 21850 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -90436,7 +90436,7 @@ br $block end ;; $block_1 local.get $8 - i32.const 21855 + i32.const 21863 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $8 @@ -90448,7 +90448,7 @@ br $block end ;; $block_0 local.get $3 - i32.const 21868 + i32.const 21876 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -90479,32 +90479,32 @@ $block ;; default end ;; $block_5 local.get $0 - i32.const 21742 + i32.const 21750 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_4 local.get $0 - i32.const 21752 + i32.const 21760 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_3 local.get $0 - i32.const 21765 + i32.const 21773 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_2 local.get $0 - i32.const 21772 + i32.const 21780 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_1 local.get $0 - i32.const 21780 + i32.const 21788 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_0 local.get $0 - i32.const 21788 + i32.const 21796 call $__ZN12_GLOBAL__N_110StringViewC2EPKc end ;; $block ) @@ -90533,7 +90533,7 @@ i32.load local.set $1 local.get $2 - i32.const 21938 + i32.const 21946 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -90649,7 +90649,7 @@ i32.load local.set $1 local.get $2 - i32.const 22006 + i32.const 22014 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -90790,7 +90790,7 @@ call $__ZNK12_GLOBAL__N_116itanium_demangle4Node8hasArrayERNS_12OutputStreamE if $if_0 local.get $7 - i32.const 22017 + i32.const 22025 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $7 @@ -90813,7 +90813,7 @@ br $block end ;; $block_0 local.get $8 - i32.const 22019 + i32.const 22027 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $8 @@ -90824,8 +90824,8 @@ call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE end ;; $block local.get $2 - i32.const 22023 - i32.const 22021 + i32.const 22031 + i32.const 22029 local.get $6 i32.load select @@ -90916,7 +90916,7 @@ br $block end ;; $block_0 local.get $2 - i32.const 22015 + i32.const 22023 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $5 local.get $2 @@ -91189,7 +91189,7 @@ i32.load offset=8 local.set $0 local.get $8 - i32.const 22090 + i32.const 22098 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $8 @@ -91210,7 +91210,7 @@ local.get $2 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $9 - i32.const 22094 + i32.const 22102 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $9 @@ -91243,7 +91243,7 @@ call $__ZNK12_GLOBAL__N_116itanium_demangle4Node8hasArrayERNS_12OutputStreamE if $if_0 local.get $5 - i32.const 22017 + i32.const 22025 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -91268,7 +91268,7 @@ br $block_1 end ;; $block_2 local.get $6 - i32.const 22019 + i32.const 22027 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -91279,7 +91279,7 @@ call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE end ;; $block_1 local.get $7 - i32.const 22088 + i32.const 22096 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -91343,7 +91343,7 @@ br $block_1 end ;; $block_2 local.get $3 - i32.const 22015 + i32.const 22023 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $4 local.get $3 @@ -91399,7 +91399,7 @@ i64.load offset=8 align=4 i64.store align=4 local.get $1 - i32.const 22076 + i32.const 22084 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -92041,7 +92041,7 @@ local.get $2 i32.const 16 i32.add - i32.const 22201 + i32.const 22209 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -92075,7 +92075,7 @@ i32.eq if $if_0 local.get $4 - i32.const 22017 + i32.const 22025 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -92086,7 +92086,7 @@ call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE end ;; $if_0 local.get $2 - i32.const 22094 + i32.const 22102 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -92133,7 +92133,7 @@ i32.eqz if $if_0 local.get $2 - i32.const 22203 + i32.const 22211 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $4 local.get $2 @@ -92885,7 +92885,7 @@ local.get $3 i32.const 328 i32.add - i32.const 22732 + i32.const 22740 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -93037,7 +93037,7 @@ i32.add i32.store local.get $6 - i32.const 22023 + i32.const 22031 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -93054,7 +93054,7 @@ i32.add i32.store local.get $7 - i32.const 22021 + i32.const 22029 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -93071,7 +93071,7 @@ i32.add i32.store local.get $8 - i32.const 22021 + i32.const 22029 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $8 @@ -93088,7 +93088,7 @@ i32.add i32.store local.get $9 - i32.const 22735 + i32.const 22743 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $9 @@ -93105,7 +93105,7 @@ i32.add i32.store local.get $10 - i32.const 22738 + i32.const 22746 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $10 @@ -93129,7 +93129,7 @@ local.get $1 if $if_2 (result i32) local.get $0 - i32.const 22740 + i32.const 22748 local.get $2 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_13EnclosingExprEJRA10_KcRPNS0_4NodeERA2_S8_EEESC_DpOT0_ else @@ -93150,7 +93150,7 @@ local.get $1 if $if_3 (result i32) local.get $0 - i32.const 22740 + i32.const 22748 local.get $2 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_13EnclosingExprEJRA10_KcRPNS0_4NodeERA2_S8_EEESC_DpOT0_ else @@ -93280,7 +93280,7 @@ i32.add i32.store local.get $11 - i32.const 22750 + i32.const 22758 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $11 @@ -93297,7 +93297,7 @@ i32.add i32.store local.get $12 - i32.const 22752 + i32.const 22760 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $12 @@ -93399,7 +93399,7 @@ i32.add i32.store local.get $13 - i32.const 22088 + i32.const 22096 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $13 @@ -93460,7 +93460,7 @@ if $if_12 (result i32) local.get $0 local.get $2 - i32.const 22754 + i32.const 22762 local.get $4 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_10MemberExprEJRPNS0_4NodeERA3_KcSA_EEES9_DpOT0_ else @@ -93510,7 +93510,7 @@ i32.add i32.store local.get $14 - i32.const 22757 + i32.const 22765 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $14 @@ -93527,7 +93527,7 @@ i32.add i32.store local.get $15 - i32.const 22759 + i32.const 22767 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $15 @@ -93561,7 +93561,7 @@ i32.add i32.store local.get $16 - i32.const 22762 + i32.const 22770 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $16 @@ -93578,7 +93578,7 @@ i32.add i32.store local.get $17 - i32.const 22764 + i32.const 22772 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $17 @@ -93595,7 +93595,7 @@ i32.add i32.store local.get $18 - i32.const 22767 + i32.const 22775 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $18 @@ -93626,7 +93626,7 @@ i32.add i32.store local.get $19 - i32.const 22770 + i32.const 22778 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $19 @@ -93643,7 +93643,7 @@ i32.add i32.store local.get $20 - i32.const 22094 + i32.const 22102 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $20 @@ -93783,7 +93783,7 @@ i32.add i32.store local.get $21 - i32.const 22773 + i32.const 22781 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $21 @@ -93800,7 +93800,7 @@ i32.add i32.store local.get $22 - i32.const 22776 + i32.const 22784 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $22 @@ -93817,7 +93817,7 @@ i32.add i32.store local.get $23 - i32.const 22779 + i32.const 22787 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $23 @@ -93834,7 +93834,7 @@ i32.add i32.store local.get $24 - i32.const 22201 + i32.const 22209 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $24 @@ -93870,7 +93870,7 @@ i32.add i32.store local.get $25 - i32.const 22622 + i32.const 22630 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $25 @@ -93887,7 +93887,7 @@ i32.add i32.store local.get $26 - i32.const 22783 + i32.const 22791 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $26 @@ -93904,7 +93904,7 @@ i32.add i32.store local.get $27 - i32.const 22088 + i32.const 22096 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $27 @@ -93921,7 +93921,7 @@ i32.add i32.store local.get $28 - i32.const 22786 + i32.const 22794 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $28 @@ -93942,7 +93942,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfEc if $if_17 local.get $29 - i32.const 22789 + i32.const 22797 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $29 @@ -93962,7 +93962,7 @@ if $if_18 (result i32) local.get $0 local.get $2 - i32.const 22789 + i32.const 22797 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_11PostfixExprEJRPNS0_4NodeERA3_KcEEES9_DpOT0_ else i32.const 0 @@ -93997,7 +93997,7 @@ i32.add i32.store local.get $30 - i32.const 22792 + i32.const 22800 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $30 @@ -94014,7 +94014,7 @@ i32.add i32.store local.get $31 - i32.const 22622 + i32.const 22630 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $31 @@ -94031,7 +94031,7 @@ i32.add i32.store local.get $32 - i32.const 22795 + i32.const 22803 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $32 @@ -94092,7 +94092,7 @@ i32.add i32.store local.get $33 - i32.const 22797 + i32.const 22805 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $33 @@ -94109,7 +94109,7 @@ i32.add i32.store local.get $34 - i32.const 22800 + i32.const 22808 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $34 @@ -94126,7 +94126,7 @@ i32.add i32.store local.get $35 - i32.const 22802 + i32.const 22810 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $35 @@ -94163,7 +94163,7 @@ i32.add i32.store local.get $36 - i32.const 22805 + i32.const 22813 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $36 @@ -94180,7 +94180,7 @@ i32.add i32.store local.get $37 - i32.const 22809 + i32.const 22817 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $37 @@ -94197,7 +94197,7 @@ i32.add i32.store local.get $38 - i32.const 22811 + i32.const 22819 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $38 @@ -94218,7 +94218,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfEc if $if_20 local.get $39 - i32.const 22814 + i32.const 22822 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $39 @@ -94238,7 +94238,7 @@ if $if_21 (result i32) local.get $0 local.get $2 - i32.const 22814 + i32.const 22822 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_11PostfixExprEJRPNS0_4NodeERA3_KcEEES9_DpOT0_ else i32.const 0 @@ -94251,7 +94251,7 @@ i32.add i32.store local.get $40 - i32.const 22809 + i32.const 22817 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $40 @@ -94283,7 +94283,7 @@ if $if_23 (result i32) local.get $0 local.get $2 - i32.const 22817 + i32.const 22825 local.get $4 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_10MemberExprEJRPNS0_4NodeERA3_KcSA_EEES9_DpOT0_ else @@ -94410,7 +94410,7 @@ i32.add i32.store local.get $41 - i32.const 22820 + i32.const 22828 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $41 @@ -94427,7 +94427,7 @@ i32.add i32.store local.get $42 - i32.const 22822 + i32.const 22830 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $42 @@ -94444,7 +94444,7 @@ i32.add i32.store local.get $43 - i32.const 22825 + i32.const 22833 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $43 @@ -94461,7 +94461,7 @@ i32.add i32.store local.get $44 - i32.const 22828 + i32.const 22836 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $44 @@ -94563,7 +94563,7 @@ local.get $1 if $if_32 (result i32) local.get $0 - i32.const 22832 + i32.const 22840 local.get $2 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_13EnclosingExprEJRA10_KcRPNS0_4NodeERA2_S8_EEESC_DpOT0_ else @@ -94584,7 +94584,7 @@ local.get $1 if $if_33 (result i32) local.get $0 - i32.const 22832 + i32.const 22840 local.get $2 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_13EnclosingExprEJRA10_KcRPNS0_4NodeERA2_S8_EEESC_DpOT0_ else @@ -94748,7 +94748,7 @@ local.get $1 if $if_37 (result i32) local.get $0 - i32.const 22841 + i32.const 22849 local.get $2 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_13EnclosingExprEJRA10_KcRPNS0_4NodeERA2_S8_EEESC_DpOT0_ else @@ -94769,7 +94769,7 @@ local.get $1 if $if_38 (result i32) local.get $0 - i32.const 22841 + i32.const 22849 local.get $2 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_13EnclosingExprEJRA10_KcRPNS0_4NodeERA2_S8_EEESC_DpOT0_ else @@ -94848,7 +94848,7 @@ i32.add i32.store local.get $0 - i32.const 22850 + i32.const 22858 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_111 @@ -95053,7 +95053,7 @@ i32.add i32.store local.get $3 - i32.const 22305 + i32.const 22313 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $3 @@ -95065,7 +95065,7 @@ br $block end ;; $block_18 local.get $4 - i32.const 22313 + i32.const 22321 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $4 @@ -95084,7 +95084,7 @@ br $block end ;; $if_1 local.get $5 - i32.const 22317 + i32.const 22325 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $5 @@ -95112,7 +95112,7 @@ i32.add i32.store local.get $6 - i32.const 21395 + i32.const 21403 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $6 @@ -95130,7 +95130,7 @@ i32.add i32.store local.get $7 - i32.const 21400 + i32.const 21408 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $7 @@ -95148,7 +95148,7 @@ i32.add i32.store local.get $8 - i32.const 21412 + i32.const 21420 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $8 @@ -95166,7 +95166,7 @@ i32.add i32.store local.get $9 - i32.const 21426 + i32.const 21434 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $9 @@ -95184,7 +95184,7 @@ i32.add i32.store local.get $10 - i32.const 21432 + i32.const 21440 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $10 @@ -95220,7 +95220,7 @@ i32.add i32.store local.get $12 - i32.const 22321 + i32.const 22329 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $12 @@ -95238,7 +95238,7 @@ i32.add i32.store local.get $13 - i32.const 22323 + i32.const 22331 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $13 @@ -95256,7 +95256,7 @@ i32.add i32.store local.get $14 - i32.const 22325 + i32.const 22333 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $14 @@ -95274,7 +95274,7 @@ i32.add i32.store local.get $15 - i32.const 22328 + i32.const 22336 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $15 @@ -95292,7 +95292,7 @@ i32.add i32.store local.get $16 - i32.const 22331 + i32.const 22339 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $16 @@ -95310,7 +95310,7 @@ i32.add i32.store local.get $17 - i32.const 21493 + i32.const 21501 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $17 @@ -95328,7 +95328,7 @@ i32.add i32.store local.get $18 - i32.const 21502 + i32.const 21510 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $18 @@ -95370,7 +95370,7 @@ br $block end ;; $block_1 local.get $19 - i32.const 21329 + i32.const 21337 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $19 @@ -95914,7 +95914,7 @@ i32.const 16 i32.add local.tee $5 - i32.const 22019 + i32.const 22027 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -95928,7 +95928,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 22015 + i32.const 22023 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -96155,7 +96155,7 @@ f64.store local.get $2 i32.const 40 - i32.const 22387 + i32.const 22395 local.get $5 call $_snprintf local.get $2 @@ -96377,7 +96377,7 @@ f64.store local.get $2 i32.const 32 - i32.const 22448 + i32.const 22456 local.get $4 call $_snprintf local.get $2 @@ -96597,7 +96597,7 @@ f64.store local.get $2 i32.const 24 - i32.const 22507 + i32.const 22515 local.get $4 call $_snprintf local.get $2 @@ -96663,11 +96663,11 @@ i32.load8_s offset=8 if $if local.get $2 - i32.const 22567 + i32.const 22575 call $__ZN12_GLOBAL__N_110StringViewC2EPKc else local.get $2 - i32.const 22572 + i32.const 22580 call $__ZN12_GLOBAL__N_110StringViewC2EPKc end ;; $if local.get $2 @@ -96802,7 +96802,7 @@ i32.gt_u if $if local.get $4 - i32.const 22019 + i32.const 22027 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -96823,7 +96823,7 @@ local.get $2 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $5 - i32.const 22015 + i32.const 22023 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -96851,7 +96851,7 @@ i32.eq if $if_0 local.get $4 - i32.const 22622 + i32.const 22630 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -97014,7 +97014,7 @@ local.get $2 i32.const 8 i32.add - i32.const 24978 + i32.const 24986 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $2 @@ -97043,7 +97043,7 @@ end ;; $if_0 else local.get $2 - i32.const 24981 + i32.const 24989 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $2 @@ -97341,7 +97341,7 @@ i32.const 0 i32.store offset=4 local.get $3 - i32.const 24831 + i32.const 24839 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $3 @@ -97354,13 +97354,13 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_1 local.get $1 - i32.const 22023 + i32.const 22031 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 else block $block_5 local.get $4 - i32.const 24834 + i32.const 24842 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $4 @@ -97371,12 +97371,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_2 local.get $1 - i32.const 22021 + i32.const 22029 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_2 local.get $8 - i32.const 24837 + i32.const 24845 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $8 @@ -97387,12 +97387,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_3 local.get $1 - i32.const 22735 + i32.const 22743 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_3 local.get $9 - i32.const 24840 + i32.const 24848 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $9 @@ -97403,12 +97403,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_4 local.get $1 - i32.const 22738 + i32.const 22746 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_4 local.get $10 - i32.const 24843 + i32.const 24851 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $10 @@ -97419,12 +97419,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_5 local.get $1 - i32.const 22750 + i32.const 22758 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_5 local.get $11 - i32.const 24846 + i32.const 24854 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $11 @@ -97435,12 +97435,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_6 local.get $1 - i32.const 22754 + i32.const 22762 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_6 local.get $12 - i32.const 24849 + i32.const 24857 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $12 @@ -97451,12 +97451,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_7 local.get $1 - i32.const 22757 + i32.const 22765 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_7 local.get $13 - i32.const 24852 + i32.const 24860 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $13 @@ -97467,12 +97467,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_8 local.get $1 - i32.const 22759 + i32.const 22767 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_8 local.get $14 - i32.const 24855 + i32.const 24863 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $14 @@ -97483,12 +97483,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_9 local.get $1 - i32.const 22762 + i32.const 22770 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_9 local.get $15 - i32.const 24858 + i32.const 24866 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $15 @@ -97499,12 +97499,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_10 local.get $1 - i32.const 22764 + i32.const 22772 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_10 local.get $16 - i32.const 24861 + i32.const 24869 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $16 @@ -97515,12 +97515,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_11 local.get $1 - i32.const 22767 + i32.const 22775 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_11 local.get $17 - i32.const 24864 + i32.const 24872 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $17 @@ -97531,12 +97531,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_12 local.get $1 - i32.const 22770 + i32.const 22778 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_12 local.get $18 - i32.const 24867 + i32.const 24875 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $18 @@ -97547,12 +97547,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_13 local.get $1 - i32.const 22094 + i32.const 22102 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_13 local.get $19 - i32.const 24870 + i32.const 24878 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $19 @@ -97563,12 +97563,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_14 local.get $1 - i32.const 22773 + i32.const 22781 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_14 local.get $20 - i32.const 24873 + i32.const 24881 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $20 @@ -97579,12 +97579,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_15 local.get $1 - i32.const 22776 + i32.const 22784 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_15 local.get $21 - i32.const 24876 + i32.const 24884 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $21 @@ -97595,12 +97595,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_16 local.get $1 - i32.const 22779 + i32.const 22787 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_16 local.get $22 - i32.const 24879 + i32.const 24887 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $22 @@ -97611,12 +97611,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_17 local.get $1 - i32.const 22201 + i32.const 22209 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_17 local.get $23 - i32.const 24882 + i32.const 24890 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $23 @@ -97627,12 +97627,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_18 local.get $1 - i32.const 22622 + i32.const 22630 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_18 local.get $24 - i32.const 24885 + i32.const 24893 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $24 @@ -97643,12 +97643,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_19 local.get $1 - i32.const 22783 + i32.const 22791 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_19 local.get $25 - i32.const 24888 + i32.const 24896 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $25 @@ -97659,12 +97659,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_20 local.get $1 - i32.const 22088 + i32.const 22096 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_20 local.get $26 - i32.const 24891 + i32.const 24899 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $26 @@ -97675,12 +97675,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_21 local.get $1 - i32.const 22786 + i32.const 22794 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_21 local.get $27 - i32.const 24894 + i32.const 24902 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $27 @@ -97691,12 +97691,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_22 local.get $1 - i32.const 22792 + i32.const 22800 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_22 local.get $28 - i32.const 24897 + i32.const 24905 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $28 @@ -97707,12 +97707,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_23 local.get $1 - i32.const 22797 + i32.const 22805 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_23 local.get $29 - i32.const 24900 + i32.const 24908 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $29 @@ -97723,12 +97723,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_24 local.get $1 - i32.const 22800 + i32.const 22808 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_24 local.get $30 - i32.const 24903 + i32.const 24911 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $30 @@ -97739,12 +97739,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_25 local.get $1 - i32.const 22802 + i32.const 22810 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_25 local.get $31 - i32.const 24906 + i32.const 24914 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $31 @@ -97755,12 +97755,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_26 local.get $1 - i32.const 22809 + i32.const 22817 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_26 local.get $32 - i32.const 24909 + i32.const 24917 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $32 @@ -97771,12 +97771,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_27 local.get $1 - i32.const 22811 + i32.const 22819 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_27 local.get $33 - i32.const 24912 + i32.const 24920 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $33 @@ -97787,12 +97787,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_28 local.get $1 - i32.const 22820 + i32.const 22828 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_28 local.get $34 - i32.const 24915 + i32.const 24923 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $34 @@ -97803,12 +97803,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_29 local.get $1 - i32.const 22822 + i32.const 22830 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_29 local.get $35 - i32.const 24918 + i32.const 24926 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $35 @@ -97819,12 +97819,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_30 local.get $1 - i32.const 22825 + i32.const 22833 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_30 local.get $36 - i32.const 24921 + i32.const 24929 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $36 @@ -97840,7 +97840,7 @@ br $block_5 end ;; $if_31 local.get $1 - i32.const 22828 + i32.const 22836 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $block_5 @@ -98041,7 +98041,7 @@ local.get $2 i32.const 16 i32.add - i32.const 24619 + i32.const 24627 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -98219,7 +98219,7 @@ local.get $4 i32.const 24 i32.add - i32.const 23758 + i32.const 23766 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -98326,7 +98326,7 @@ end ;; $if_0 else local.get $1 - i32.const 22732 + i32.const 22740 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -98337,7 +98337,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE local.set $5 local.get $4 - i32.const 23762 + i32.const 23770 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -98801,7 +98801,7 @@ local.get $2 i32.const 40 i32.add - i32.const 22732 + i32.const 22740 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $2 @@ -98835,7 +98835,7 @@ i32.eq i32.store8 local.get $4 - i32.const 23346 + i32.const 23354 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $4 @@ -98848,7 +98848,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE br_if $block_0 local.get $3 - i32.const 23349 + i32.const 23357 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $3 @@ -98913,7 +98913,7 @@ if $if_1 (result i32) block $block_3 (result i32) local.get $5 - i32.const 23352 + i32.const 23360 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $5 @@ -99068,7 +99068,7 @@ i32.add local.set $3 local.get $2 - i32.const 22856 + i32.const 22864 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -99263,13 +99263,13 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $5 - i32.const 23007 + i32.const 23015 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load local.set $1 local.get $2 - i32.const 22015 + i32.const 22023 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $4 local.get $5 @@ -99431,7 +99431,7 @@ i32.const 24 i32.add local.tee $5 - i32.const 23069 + i32.const 23077 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -99448,7 +99448,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle22ParameterPackExpansion9printLeftERNS_12OutputStreamE local.get $2 - i32.const 22015 + i32.const 22023 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -99570,7 +99570,7 @@ $block_0 ;; default end ;; $block_2 local.get $8 - i32.const 21549 + i32.const 21557 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $5 local.get $8 @@ -99594,7 +99594,7 @@ i32.ge_u br_if $block local.get $2 - i32.const 22203 + i32.const 22211 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $5 local.get $2 @@ -99679,7 +99679,7 @@ i32.load local.set $1 local.get $3 - i32.const 22015 + i32.const 22023 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $5 local.get $6 @@ -99721,7 +99721,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $3 - i32.const 23195 + i32.const 23203 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -99820,7 +99820,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $4 - i32.const 22201 + i32.const 22209 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -99844,7 +99844,7 @@ i32.add call_indirect $30 (type $1) local.get $5 - i32.const 23207 + i32.const 23215 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -99868,7 +99868,7 @@ i32.add call_indirect $30 (type $1) local.get $6 - i32.const 22015 + i32.const 22023 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $6 @@ -99903,7 +99903,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $3 - i32.const 23254 + i32.const 23262 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -99989,7 +99989,7 @@ i32.const 24 i32.add local.tee $6 - i32.const 22019 + i32.const 22027 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -100003,7 +100003,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 23271 + i32.const 23279 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -100017,7 +100017,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $5 - i32.const 23277 + i32.const 23285 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -100031,7 +100031,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $3 - i32.const 22015 + i32.const 22023 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -100075,13 +100075,13 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $5 - i32.const 23335 + i32.const 23343 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load local.set $1 local.get $2 - i32.const 22015 + i32.const 22023 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $4 local.get $5 @@ -100246,7 +100246,7 @@ i32.load8_s offset=28 if $if local.get $4 - i32.const 23355 + i32.const 23363 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -100275,7 +100275,7 @@ local.get $3 i32.const 40 i32.add - i32.const 23367 + i32.const 23375 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -100288,7 +100288,7 @@ i32.load8_s offset=29 if $if_0 local.get $4 - i32.const 23371 + i32.const 23379 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -100308,7 +100308,7 @@ i32.load offset=4 if $if_1 local.get $5 - i32.const 22019 + i32.const 22027 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -100321,7 +100321,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle9NodeArray14printWithCommaERNS_12OutputStreamE local.get $6 - i32.const 22015 + i32.const 22023 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -100342,7 +100342,7 @@ i32.load offset=4 if $if_2 local.get $7 - i32.const 22019 + i32.const 22027 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -100355,7 +100355,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle9NodeArray14printWithCommaERNS_12OutputStreamE local.get $3 - i32.const 22015 + i32.const 22023 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -100540,7 +100540,7 @@ i32.add i32.store local.get $1 - i32.const 23574 + i32.const 23582 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $4 local.get $1 @@ -100655,7 +100655,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 23465 + i32.const 23473 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -100687,7 +100687,7 @@ i32.ge_s if $if (result i32) local.get $2 - i32.const 23471 + i32.const 23479 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -100797,7 +100797,7 @@ i32.ge_s if $if_0 (result i32) local.get $2 - i32.const 23471 + i32.const 23479 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -101000,7 +101000,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $1 - i32.const 23585 + i32.const 23593 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -101133,7 +101133,7 @@ i32.const 16 i32.add local.tee $5 - i32.const 22019 + i32.const 22027 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -101147,7 +101147,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 23651 + i32.const 23659 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -101161,7 +101161,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $2 - i32.const 21653 + i32.const 21661 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -101199,7 +101199,7 @@ i32.load local.set $1 local.get $3 - i32.const 23709 + i32.const 23717 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 i32.load @@ -101563,7 +101563,7 @@ else block $block (result i32) local.get $1 - i32.const 23824 + i32.const 23832 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $1 @@ -101578,7 +101578,7 @@ br $block end ;; $if_1 local.get $4 - i32.const 23827 + i32.const 23835 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -101702,7 +101702,7 @@ i32.add local.set $3 local.get $2 - i32.const 23765 + i32.const 23773 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -101882,7 +101882,7 @@ i32.add i32.store local.get $0 - i32.const 23830 + i32.const 23838 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -101894,7 +101894,7 @@ i32.add i32.store local.get $0 - i32.const 23841 + i32.const 23849 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -101906,7 +101906,7 @@ i32.add i32.store local.get $0 - i32.const 23851 + i32.const 23859 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -101918,7 +101918,7 @@ i32.add i32.store local.get $0 - i32.const 23862 + i32.const 23870 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -101963,7 +101963,7 @@ i32.add i32.store local.get $0 - i32.const 23872 + i32.const 23880 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -101975,7 +101975,7 @@ i32.add i32.store local.get $0 - i32.const 23883 + i32.const 23891 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -101987,7 +101987,7 @@ i32.add i32.store local.get $0 - i32.const 23893 + i32.const 23901 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -102122,7 +102122,7 @@ i32.add i32.store local.get $0 - i32.const 23903 + i32.const 23911 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -102134,7 +102134,7 @@ i32.add i32.store local.get $0 - i32.const 23921 + i32.const 23929 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -102159,7 +102159,7 @@ i32.add i32.store local.get $0 - i32.const 23931 + i32.const 23939 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -102171,7 +102171,7 @@ i32.add i32.store local.get $0 - i32.const 23941 + i32.const 23949 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -102217,7 +102217,7 @@ i32.add i32.store local.get $0 - i32.const 23952 + i32.const 23960 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -102229,7 +102229,7 @@ i32.add i32.store local.get $0 - i32.const 23962 + i32.const 23970 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -102241,7 +102241,7 @@ i32.add i32.store local.get $0 - i32.const 23973 + i32.const 23981 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -102284,7 +102284,7 @@ i32.add i32.store local.get $0 - i32.const 23984 + i32.const 23992 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -102296,7 +102296,7 @@ i32.add i32.store local.get $0 - i32.const 23995 + i32.const 24003 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -102331,7 +102331,7 @@ i32.add i32.store local.get $0 - i32.const 24005 + i32.const 24013 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ else i32.const 0 @@ -102378,7 +102378,7 @@ i32.add i32.store local.get $0 - i32.const 24016 + i32.const 24024 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -102414,7 +102414,7 @@ i32.add i32.store local.get $0 - i32.const 24027 + i32.const 24035 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -102426,7 +102426,7 @@ i32.add i32.store local.get $0 - i32.const 24038 + i32.const 24046 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -102438,7 +102438,7 @@ i32.add i32.store local.get $0 - i32.const 24050 + i32.const 24058 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -102486,7 +102486,7 @@ i32.add i32.store local.get $0 - i32.const 24060 + i32.const 24068 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -102498,7 +102498,7 @@ i32.add i32.store local.get $0 - i32.const 24070 + i32.const 24078 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -102510,7 +102510,7 @@ i32.add i32.store local.get $0 - i32.const 23921 + i32.const 23929 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -102522,7 +102522,7 @@ i32.add i32.store local.get $0 - i32.const 24081 + i32.const 24089 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -102534,7 +102534,7 @@ i32.add i32.store local.get $0 - i32.const 24092 + i32.const 24100 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -102581,7 +102581,7 @@ i32.add i32.store local.get $0 - i32.const 24103 + i32.const 24111 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -102593,7 +102593,7 @@ i32.add i32.store local.get $0 - i32.const 24118 + i32.const 24126 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -102605,7 +102605,7 @@ i32.add i32.store local.get $0 - i32.const 24060 + i32.const 24068 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -102617,7 +102617,7 @@ i32.add i32.store local.get $0 - i32.const 24129 + i32.const 24137 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -102629,7 +102629,7 @@ i32.add i32.store local.get $0 - i32.const 24139 + i32.const 24147 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -102675,7 +102675,7 @@ i32.add i32.store local.get $0 - i32.const 24152 + i32.const 24160 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -102687,7 +102687,7 @@ i32.add i32.store local.get $0 - i32.const 24163 + i32.const 24171 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -102699,7 +102699,7 @@ i32.add i32.store local.get $0 - i32.const 24173 + i32.const 24181 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -102748,7 +102748,7 @@ i32.add i32.store local.get $0 - i32.const 24184 + i32.const 24192 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -102760,7 +102760,7 @@ i32.add i32.store local.get $0 - i32.const 24196 + i32.const 24204 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -102772,7 +102772,7 @@ i32.add i32.store local.get $0 - i32.const 24206 + i32.const 24214 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -102784,7 +102784,7 @@ i32.add i32.store local.get $0 - i32.const 24217 + i32.const 24225 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -102796,7 +102796,7 @@ i32.add i32.store local.get $0 - i32.const 24196 + i32.const 24204 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -102808,7 +102808,7 @@ i32.add i32.store local.get $0 - i32.const 24228 + i32.const 24236 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -102843,7 +102843,7 @@ i32.add i32.store local.get $0 - i32.const 24239 + i32.const 24247 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ else i32.const 0 @@ -102889,7 +102889,7 @@ i32.add i32.store local.get $0 - i32.const 24249 + i32.const 24257 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -102901,7 +102901,7 @@ i32.add i32.store local.get $0 - i32.const 24259 + i32.const 24267 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -102913,7 +102913,7 @@ i32.add i32.store local.get $0 - i32.const 24270 + i32.const 24278 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -102925,7 +102925,7 @@ i32.add i32.store local.get $0 - i32.const 24281 + i32.const 24289 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -102960,7 +102960,7 @@ i32.add i32.store local.get $0 - i32.const 24293 + i32.const 24301 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ else i32.const 0 @@ -103093,7 +103093,7 @@ i32.add local.set $3 local.get $2 - i32.const 24305 + i32.const 24313 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -103130,7 +103130,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $1 - i32.const 24369 + i32.const 24377 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -103186,7 +103186,7 @@ i32.add local.set $3 local.get $2 - i32.const 24385 + i32.const 24393 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -103256,7 +103256,7 @@ i32.add local.set $3 local.get $2 - i32.const 22752 + i32.const 22760 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -103333,7 +103333,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $2 - i32.const 23765 + i32.const 23773 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -103392,7 +103392,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $3 - i32.const 24548 + i32.const 24556 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -103500,7 +103500,7 @@ i32.load8_s offset=12 if $if local.get $4 - i32.const 23765 + i32.const 23773 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -103514,7 +103514,7 @@ i32.const 8 i32.add local.tee $4 - i32.const 24561 + i32.const 24569 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -103527,7 +103527,7 @@ i32.load8_s offset=13 if $if_0 local.get $2 - i32.const 24568 + i32.const 24576 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -103642,7 +103642,7 @@ i32.const 16 i32.add local.tee $5 - i32.const 22019 + i32.const 22027 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -103656,7 +103656,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 24622 + i32.const 24630 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -103671,7 +103671,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle9NodeArray14printWithCommaERNS_12OutputStreamE local.get $2 - i32.const 22015 + i32.const 22023 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -103781,7 +103781,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 22019 + i32.const 22027 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -103796,7 +103796,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle9NodeArray14printWithCommaERNS_12OutputStreamE local.get $2 - i32.const 22015 + i32.const 22023 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -103831,7 +103831,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $3 - i32.const 24720 + i32.const 24728 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -103961,7 +103961,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $4 - i32.const 22019 + i32.const 22027 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -103975,7 +103975,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $5 - i32.const 22015 + i32.const 22023 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -104119,14 +104119,14 @@ i32.const 56 i32.add local.tee $2 - i32.const 22094 + i32.const 22102 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $4 local.get $2 call $__ZN12_GLOBAL__N_1eqERKNS_10StringViewES2_ if $if local.get $5 - i32.const 22019 + i32.const 22027 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -104137,7 +104137,7 @@ call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE end ;; $if local.get $6 - i32.const 22019 + i32.const 22027 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -104151,7 +104151,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $7 - i32.const 24778 + i32.const 24786 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -104172,7 +104172,7 @@ local.get $2 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $8 - i32.const 24781 + i32.const 24789 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $8 @@ -104186,7 +104186,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $9 - i32.const 22015 + i32.const 22023 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $9 @@ -104196,14 +104196,14 @@ local.get $2 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $2 - i32.const 22094 + i32.const 22102 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $4 local.get $2 call $__ZN12_GLOBAL__N_1eqERKNS_10StringViewES2_ if $if_0 local.get $10 - i32.const 22015 + i32.const 22023 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $10 @@ -104386,7 +104386,7 @@ local.set $0 end ;; $if_0 local.get $6 - i32.const 24924 + i32.const 24932 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $6 @@ -104429,7 +104429,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $4 - i32.const 24929 + i32.const 24937 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -104639,7 +104639,7 @@ i32.const 8 i32.add local.tee $4 - i32.const 24978 + i32.const 24986 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -105456,7 +105456,7 @@ local.get $8 i32.store offset=8 local.get $4 - i32.const 25185 + i32.const 25193 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $6 local.get $4 @@ -105468,7 +105468,7 @@ if $if_4 local.get $2 local.get $0 - i32.const 25503 + i32.const 25511 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ i32.store end ;; $if_4 @@ -105788,7 +105788,7 @@ i32.store local.get $2 local.get $0 - i32.const 25443 + i32.const 25451 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ i32.store local.get $0 @@ -105887,7 +105887,7 @@ local.get $2 i32.const 8 i32.add - i32.const 25181 + i32.const 25189 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -105900,7 +105900,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE br_if $block_0 local.get $2 - i32.const 25185 + i32.const 25193 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -106003,7 +106003,7 @@ br $block_1 end ;; $if_1 local.get $4 - i32.const 25247 + i32.const 25255 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -106143,7 +106143,7 @@ i32.add local.set $3 local.get $2 - i32.const 25188 + i32.const 25196 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -106194,7 +106194,7 @@ local.get $2 i32.const 32 i32.add - i32.const 25308 + i32.const 25316 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $2 @@ -106223,7 +106223,7 @@ local.set $0 else local.get $5 - i32.const 25311 + i32.const 25319 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $5 @@ -106255,7 +106255,7 @@ i32.const 1 i32.store8 offset=362 local.get $4 - i32.const 25314 + i32.const 25322 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $4 @@ -106524,7 +106524,7 @@ i32.const 24 i32.add local.tee $6 - i32.const 25317 + i32.const 25325 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -106545,7 +106545,7 @@ local.get $2 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $4 - i32.const 25325 + i32.const 25333 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -106560,7 +106560,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle9NodeArray14printWithCommaERNS_12OutputStreamE local.get $5 - i32.const 22015 + i32.const 22023 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -106648,7 +106648,7 @@ i32.const 16 i32.add local.tee $5 - i32.const 25380 + i32.const 25388 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -106669,7 +106669,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $4 - i32.const 25389 + i32.const 25397 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -107213,7 +107213,7 @@ i32.load8_s offset=12 if $if local.get $4 - i32.const 22752 + i32.const 22760 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -107339,7 +107339,7 @@ $block ;; default end ;; $block_5 local.get $4 - i32.const 21797 + i32.const 21805 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -107351,7 +107351,7 @@ br $block end ;; $block_4 local.get $5 - i32.const 21812 + i32.const 21820 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -107363,7 +107363,7 @@ br $block end ;; $block_3 local.get $6 - i32.const 25599 + i32.const 25607 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -107375,7 +107375,7 @@ br $block end ;; $block_2 local.get $7 - i32.const 25670 + i32.const 25678 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -107387,7 +107387,7 @@ br $block end ;; $block_1 local.get $8 - i32.const 25720 + i32.const 25728 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $8 @@ -107399,7 +107399,7 @@ br $block end ;; $block_0 local.get $3 - i32.const 25770 + i32.const 25778 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -107430,32 +107430,32 @@ $block ;; default end ;; $block_5 local.get $0 - i32.const 21742 + i32.const 21750 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_4 local.get $0 - i32.const 21752 + i32.const 21760 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_3 local.get $0 - i32.const 21752 + i32.const 21760 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_2 local.get $0 - i32.const 25556 + i32.const 25564 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_1 local.get $0 - i32.const 25570 + i32.const 25578 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_0 local.get $0 - i32.const 25584 + i32.const 25592 call $__ZN12_GLOBAL__N_110StringViewC2EPKc end ;; $block ) @@ -107588,7 +107588,7 @@ call $__ZNK12_GLOBAL__N_116itanium_demangle4Node11hasFunctionERNS_12OutputStreamE br_if $block_0 local.get $5 - i32.const 22017 + i32.const 22025 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -107600,7 +107600,7 @@ br $block end ;; $block_0 local.get $4 - i32.const 22019 + i32.const 22027 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -107615,7 +107615,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $2 - i32.const 25932 + i32.const 25940 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -107658,7 +107658,7 @@ br $block end ;; $block_0 local.get $2 - i32.const 22015 + i32.const 22023 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -107855,7 +107855,7 @@ i32.ne if $if_0 local.get $4 - i32.const 22017 + i32.const 22025 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -107872,7 +107872,7 @@ local.get $3 i32.const 16 i32.add - i32.const 25992 + i32.const 26000 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -107929,7 +107929,7 @@ end ;; $if_4 end ;; $if_2 local.get $3 - i32.const 21653 + i32.const 21661 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -108070,7 +108070,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 26042 + i32.const 26050 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -108127,7 +108127,7 @@ end ;; $if_2 end ;; $if_0 local.get $2 - i32.const 21653 + i32.const 21661 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -108275,7 +108275,7 @@ local.get $2 i32.const 16 i32.add - i32.const 26098 + i32.const 26106 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -108302,7 +108302,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $2 - i32.const 21653 + i32.const 21661 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -108406,7 +108406,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $1 - i32.const 26174 + i32.const 26182 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -108440,7 +108440,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $1 - i32.const 26181 + i32.const 26189 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -108474,7 +108474,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $1 - i32.const 22305 + i32.const 22313 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -108622,7 +108622,7 @@ i32.and if $if local.get $4 - i32.const 26210 + i32.const 26218 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -108644,7 +108644,7 @@ i32.and if $if_0 local.get $4 - i32.const 26217 + i32.const 26225 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -108662,7 +108662,7 @@ i32.and if $if_1 local.get $2 - i32.const 26227 + i32.const 26235 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -108773,7 +108773,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 22017 + i32.const 22025 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -108899,7 +108899,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 22201 + i32.const 22209 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -108920,7 +108920,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $5 - i32.const 22094 + i32.const 22102 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -109063,7 +109063,7 @@ i32.add call_indirect $30 (type $1) local.get $2 - i32.const 22017 + i32.const 22025 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -109121,7 +109121,7 @@ i32.const 48 i32.add local.tee $4 - i32.const 22019 + i32.const 22027 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -109136,7 +109136,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle9NodeArray14printWithCommaERNS_12OutputStreamE local.get $5 - i32.const 22015 + i32.const 22023 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -109166,7 +109166,7 @@ i32.and if $if local.get $6 - i32.const 26210 + i32.const 26218 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -109184,7 +109184,7 @@ i32.and if $if_0 local.get $7 - i32.const 26217 + i32.const 26225 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -109202,7 +109202,7 @@ i32.and if $if_1 local.get $8 - i32.const 26227 + i32.const 26235 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $8 @@ -109224,7 +109224,7 @@ $block ;; default end ;; $block_1 local.get $9 - i32.const 26412 + i32.const 26420 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $9 @@ -109236,7 +109236,7 @@ br $block end ;; $block_0 local.get $3 - i32.const 26415 + i32.const 26423 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -109327,7 +109327,7 @@ i32.add local.set $3 local.get $2 - i32.const 26468 + i32.const 26476 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -109405,7 +109405,7 @@ i32.const 8 i32.add local.tee $4 - i32.const 26532 + i32.const 26540 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -109419,7 +109419,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $2 - i32.const 22015 + i32.const 22023 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -109638,7 +109638,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 24781 + i32.const 24789 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -109659,7 +109659,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $5 - i32.const 22015 + i32.const 22023 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -109953,7 +109953,7 @@ local.get $1 if $if_9 (result i32) local.get $0 - i32.const 26813 + i32.const 26821 local.get $2 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_11SpecialNameEJRA34_KcRPNS0_4NodeEEEESC_DpOT0_ else @@ -110470,7 +110470,7 @@ i32.eqz if $if_0 local.get $2 - i32.const 22017 + i32.const 22025 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -110534,7 +110534,7 @@ i32.const 48 i32.add local.tee $4 - i32.const 22019 + i32.const 22027 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -110549,7 +110549,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle9NodeArray14printWithCommaERNS_12OutputStreamE local.get $5 - i32.const 22015 + i32.const 22023 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -110582,7 +110582,7 @@ i32.and if $if_0 local.get $6 - i32.const 26210 + i32.const 26218 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -110600,7 +110600,7 @@ i32.and if $if_1 local.get $7 - i32.const 26217 + i32.const 26225 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -110618,7 +110618,7 @@ i32.and if $if_2 local.get $8 - i32.const 26227 + i32.const 26235 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $8 @@ -110640,7 +110640,7 @@ $block ;; default end ;; $block_1 local.get $9 - i32.const 26412 + i32.const 26420 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $9 @@ -110652,7 +110652,7 @@ br $block end ;; $block_0 local.get $3 - i32.const 26415 + i32.const 26423 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -110740,7 +110740,7 @@ i32.add local.set $3 local.get $2 - i32.const 26751 + i32.const 26759 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -110872,7 +110872,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 26847 + i32.const 26855 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -110911,7 +110911,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 26872 + i32.const 26880 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -110950,7 +110950,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 26892 + i32.const 26900 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -110989,7 +110989,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 26914 + i32.const 26922 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -111028,7 +111028,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 26932 + i32.const 26940 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -111096,7 +111096,7 @@ i32.const 8 i32.add local.tee $4 - i32.const 26973 + i32.const 26981 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -111110,7 +111110,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $2 - i32.const 26998 + i32.const 27006 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -111148,7 +111148,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 27061 + i32.const 27069 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -111187,7 +111187,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 27088 + i32.const 27096 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -111226,7 +111226,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 27107 + i32.const 27115 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -111265,7 +111265,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 27121 + i32.const 27129 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -111304,7 +111304,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 27130 + i32.const 27138 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -113146,5 +113146,5 @@ call_indirect $30 (type $9) ) ;; User section "emscripten_metadata": - ;; "\00\01\00\03\80\02\91\06\80\08\d0\f2\c1\02\b0\f2\01\c0\f2\01" + ;; "\00\02\00\04\00\80\02\91\06\80\08\d0\f2\c1\02\b0\f2\01\c0\f2\01" ) \ No newline at end of file diff --git a/test/extensions/filters/http/wasm/test_data/grpc_callout_cpp.wasm b/test/extensions/filters/http/wasm/test_data/grpc_callout_cpp.wasm index 5723a0287e687..9e85fb9c468da 100644 Binary files a/test/extensions/filters/http/wasm/test_data/grpc_callout_cpp.wasm and b/test/extensions/filters/http/wasm/test_data/grpc_callout_cpp.wasm differ diff --git a/test/extensions/filters/http/wasm/test_data/grpc_callout_cpp.wat b/test/extensions/filters/http/wasm/test_data/grpc_callout_cpp.wat index f376bc9fbb333..884a7264de82a 100644 --- a/test/extensions/filters/http/wasm/test_data/grpc_callout_cpp.wat +++ b/test/extensions/filters/http/wasm/test_data/grpc_callout_cpp.wat @@ -116,8 +116,8 @@ (export "stackAlloc" (func $stackAlloc)) (export "stackRestore" (func $stackRestore)) (export "stackSave" (func $stackSave)) - (global $36 (mut i32) (i32.const 31408)) - (global $37 (mut i32) (i32.const 5274288)) + (global $36 (mut i32) (i32.const 31424)) + (global $37 (mut i32) (i32.const 5274304)) (elem $38 $32 (global.get $34) $b0 $__ZN7Context6asRootEv $__ZN7Context9asContextEv $__ZN14RequestContext16onRequestHeadersEv $__ZN7Context6asRootEv $__ZN7Context6asRootEv $__ZN7Context6asRootEv $__ZN7Context6asRootEv $__ZN7Context6asRootEv $__ZN7Context6asRootEv $__ZN7Context6asRootEv $__ZN7Context9asContextEv $__ZN7Context6asRootEv $__ZNK10DataSource3NewEv $__ZN7Context6asRootEv $__ZNK6google8protobuf11MessageLite20GetMaybeArenaPointerEv @@ -220,7 +220,7 @@ $__ZNK10__cxxabiv121__vmi_class_type_info16search_below_dstEPNS_19__dynamic_cast_infoEPKvib $b11 $b11 $b11 $b12 $__ZNK10__cxxabiv117__class_type_info16search_above_dstEPNS_19__dynamic_cast_infoEPKvS4_ib $__ZNK10__cxxabiv120__si_class_type_info16search_above_dstEPNS_19__dynamic_cast_infoEPKvS4_ib $__ZNK10__cxxabiv121__vmi_class_type_info16search_above_dstEPNS_19__dynamic_cast_infoEPKvS4_ib $b13) (data $39 $33 (i32.const 1024) - "eI\00\00jI\00\00rI\00\00xI") + "mI\00\00rI\00\00zI\00\00\80I") (data $40 $33 (i32.const 1168) "\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0" "\f0\f0\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\02\03\03\03\03\03\03\03\03\03\03\03\03\07\03\03\04\05\05\05\06\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0" @@ -294,21 +294,21 @@ "\00\00\00\1f\00\00\00%\00\00\00)\00\00\00+\00\00\00/\00\00\005\00\00\00;\00\00\00=\00\00\00C\00\00\00G\00\00\00I\00\00\00O\00\00\00S\00\00\00Y\00\00\00a\00\00\00e" "\00\00\00g\00\00\00k\00\00\00m\00\00\00q\00\00\00y\00\00\00\7f\00\00\00\83\00\00\00\89\00\00\00\8b\00\00\00\8f\00\00\00\95\00\00\00\97\00\00\00\9d\00\00\00\a3\00\00\00\a7\00\00\00\a9" "\00\00\00\ad\00\00\00\b3\00\00\00\b5\00\00\00\bb\00\00\00\bf\00\00\00\c1\00\00\00\c5\00\00\00\c7\00\00\00\d1\00\00\00<%\00\00\e11\00\00d%\00\00\d81\00\00p\11\00\00\00\00\00\00d" - "%\00\00\c71\00\00x\11\00\00\00\00\00\00<%\00\00\d12\00\00\801\00\00\922\00\00\00\00\00\00\01\00\00\00\98\11\00\00\00\00\00\00<%\00\00<3\00\00d%\00\00\103\00\00\b8" - "\11\00\00\00\00\00\00d%\00\00\f72\00\00\c0\11\00\00\00\00\00\00<%\00\00R3\00\00d%\00\00h3\00\00p\11\00\00\00\00\00\00d%\00\00W3\00\00\e8\11\00\00\00\00\00\00<" - "%\00\00P4\00\00<%\00\00\a04\00\00d%\00\00\da5\00\00\a8\13\00\00\00\00\00\00d%\00\00\f85\00\00\a8\13\00\00\00\00\00\00d%\00\0066\00\00\a8\13\00\00\00\00\00\00d" - "%\00\00t6\00\00\a8\13\00\00\00\00\00\00d%\00\00\ca6\00\00\a8\13\00\00\00\00\00\00d%\00\00\177\00\00\a8\13\00\00\00\00\00\00d%\00\00`7\00\00\a8\13\00\00\00\00\00\00d" - "%\00\00)8\00\00\a8\13\00\00\00\00\00\00d%\00\00P9\00\00\a8\13\00\00\00\00\00\00d%\00\00\1d:\00\00\a8\13\00\00\00\00\00\00d%\00\00\fb:\00\00\a8\13\00\00\00\00\00\00d" - "%\00\00\b0;\00\00\a8\13\00\00\00\00\00\00d%\00\00\1b<\00\00\a8\13\00\00\00\00\00\00d%\00\00A<\00\00\a8\13\00\00\00\00\00\00d%\00\00\0cF\00\00\a8\13\00\00\00\00\00\00d" - "%\00\00\eeD\00\00\18\13\00\00\00\00\00\00d%\00\00\ab>\00\00(\13\00\00\00\00\00\00d%\00\00\db>\00\008\13\00\00\00\00\00\00d%\00\00\a1?\00\00\a8\13\00\00\00\00\00\00d" - "%\00\00\bbD\00\00\a8\13\00\00\00\00\00\00\801\00\00yC\00\00\00\00\00\00\01\00\00\00p\13\00\00\00\00\00\00<%\00\00\e6C\00\00d%\00\00\d5D\00\00\a8\13\00\00\00\00\00\00d" - "%\00\00`F\00\00\98\15\00\00\00\00\00\00\ff\ff\ff\ff\ff\ff\ff\ff") + "%\00\00\c71\00\00x\11\00\00\00\00\00\00<%\00\00\d52\00\00\801\00\00\962\00\00\00\00\00\00\01\00\00\00\98\11\00\00\00\00\00\00<%\00\00@3\00\00d%\00\00\143\00\00\b8" + "\11\00\00\00\00\00\00d%\00\00\fb2\00\00\c0\11\00\00\00\00\00\00<%\00\00V3\00\00d%\00\00l3\00\00p\11\00\00\00\00\00\00d%\00\00[3\00\00\e8\11\00\00\00\00\00\00<" + "%\00\00T4\00\00<%\00\00\a64\00\00d%\00\00\e05\00\00\a8\13\00\00\00\00\00\00d%\00\00\fe5\00\00\a8\13\00\00\00\00\00\00d%\00\00<6\00\00\a8\13\00\00\00\00\00\00d" + "%\00\00z6\00\00\a8\13\00\00\00\00\00\00d%\00\00\d06\00\00\a8\13\00\00\00\00\00\00d%\00\00\1d7\00\00\a8\13\00\00\00\00\00\00d%\00\00f7\00\00\a8\13\00\00\00\00\00\00d" + "%\00\00/8\00\00\a8\13\00\00\00\00\00\00d%\00\00V9\00\00\a8\13\00\00\00\00\00\00d%\00\00#:\00\00\a8\13\00\00\00\00\00\00d%\00\00\01;\00\00\a8\13\00\00\00\00\00\00d" + "%\00\00\b6;\00\00\a8\13\00\00\00\00\00\00d%\00\00!<\00\00\a8\13\00\00\00\00\00\00d%\00\00G<\00\00\a8\13\00\00\00\00\00\00d%\00\00\14F\00\00\a8\13\00\00\00\00\00\00d" + "%\00\00\f6D\00\00\18\13\00\00\00\00\00\00d%\00\00\b3>\00\00(\13\00\00\00\00\00\00d%\00\00\e3>\00\008\13\00\00\00\00\00\00d%\00\00\a9?\00\00\a8\13\00\00\00\00\00\00d" + "%\00\00\c3D\00\00\a8\13\00\00\00\00\00\00\801\00\00\81C\00\00\00\00\00\00\01\00\00\00p\13\00\00\00\00\00\00<%\00\00\eeC\00\00d%\00\00\ddD\00\00\a8\13\00\00\00\00\00\00d" + "%\00\00hF\00\00\98\15\00\00\00\00\00\00\ff\ff\ff\ff\ff\ff\ff\ff") (data $57 $33 (i32.const 5032) - "<%\00\00eK\00\00d%\00\00SQ\00\00\d0\13\00\00\00\00\00\00d%\00\00\0fR\00\00\d0\13\00\00\00\00\00\00<%\00\00\dbR\00\00\05") + "<%\00\00mK\00\00d%\00\00[Q\00\00\d0\13\00\00\00\00\00\00d%\00\00\17R\00\00\d0\13\00\00\00\00\00\00<%\00\00\e3R\00\00\05") (data $58 $33 (i32.const 5092) "f") (data $59 $33 (i32.const 5116) - "\08\00\00\00\01\00\00\008l\00\00\00\04") + "\08\00\00\00\01\00\00\00Hl\00\00\00\04") (data $60 $33 (i32.const 5140) "\01") (data $61 $33 (i32.const 5155) @@ -318,7 +318,7 @@ (data $63 $33 (i32.const 5236) "f") (data $64 $33 (i32.const 5260) - "\09\00\00\00\01\00\00\00\d6u") + "\09\00\00\00\01\00\00\00\e6u") (data $65 $33 (i32.const 5284) "\02") (data $66 $33 (i32.const 5299) @@ -328,26 +328,26 @@ (data $68 $33 (i32.const 5443) "\ff\ff\ff\ff\ff") (data $69 $33 (i32.const 5512) - "d%\00\00RS\00\00\98\15\00\00\00\00\00\00<%\00\00\14T\00\00d%\00\00tT\00\00\b0\15\00\00\00\00\00\00d%\00\00!T\00\00\c0\15\00\00\00\00\00\00<%\00\00BT\00\00" - "d%\00\00OT\00\00\a0\15\00\00\00\00\00\00d%\00\00\04V\00\00\e8\15\00\00\00\00\00\00<%\00\003V\00\00d%\00\00\e7V\00\00\e8\15\00\00\00\00\00\00d%\00\00*W\00\00" - "\e8\15\00\00\00\00\00\00d%\00\00wW\00\00\e8\15\00\00\00\00\00\00d%\00\00\bdW\00\00\e8\15\00\00\00\00\00\00d%\00\00\edW\00\00\e8\15\00\00\00\00\00\00d%\00\00+X\00\00" - "\e8\15\00\00\00\00\00\00d%\00\00\\X\00\00\e8\15\00\00\00\00\00\00d%\00\00\acX\00\00\e8\15\00\00\00\00\00\00d%\00\00\e5X\00\00\e8\15\00\00\00\00\00\00d%\00\00 Y\00\00" - "\e8\15\00\00\00\00\00\00d%\00\00\\Y\00\00\e8\15\00\00\00\00\00\00d%\00\00\9fY\00\00\e8\15\00\00\00\00\00\00d%\00\00\cdY\00\00\e8\15\00\00\00\00\00\00d%\00\00\00Z\00\00" - "\e8\15\00\00\00\00\00\00d%\00\00\bcZ\00\00\e8\15\00\00\00\00\00\00d%\00\00\e9Z\00\00\e8\15\00\00\00\00\00\00d%\00\00\1a[\00\00\e8\15\00\00\00\00\00\00d%\00\00X[\00\00" - "\e8\15\00\00\00\00\00\00d%\00\00\d0[\00\00\e8\15\00\00\00\00\00\00d%\00\00\95[\00\00\e8\15\00\00\00\00\00\00d%\00\00\17\\\00\00\e8\15\00\00\00\00\00\00d%\00\00`\\\00\00" - "\e8\15\00\00\00\00\00\00d%\00\00\bb\\\00\00\e8\15\00\00\00\00\00\00d%\00\00\e6\\\00\00\e8\15\00\00\00\00\00\00d%\00\00 ]\00\00\e8\15\00\00\00\00\00\00d%\00\00T]\00\00" - "\e8\15\00\00\00\00\00\00d%\00\00\a4]\00\00\e8\15\00\00\00\00\00\00d%\00\00\d3]\00\00\e8\15\00\00\00\00\00\00d%\00\00\0c^\00\00\e8\15\00\00\00\00\00\00d%\00\00E^\00\00" - "\e8\15\00\00\00\00\00\00d%\00\00j`\00\00\e8\15\00\00\00\00\00\00d%\00\00\b8`\00\00\e8\15\00\00\00\00\00\00d%\00\00\f3`\00\00\e8\15\00\00\00\00\00\00d%\00\00\1fa\00\00" - "\e8\15\00\00\00\00\00\00d%\00\00ia\00\00\e8\15\00\00\00\00\00\00d%\00\00\9ea\00\00\e8\15\00\00\00\00\00\00d%\00\00\d1a\00\00\e8\15\00\00\00\00\00\00d%\00\00\08b\00\00" - "\e8\15\00\00\00\00\00\00d%\00\00=b\00\00\e8\15\00\00\00\00\00\00d%\00\00\d3b\00\00\e8\15\00\00\00\00\00\00d%\00\00\05c\00\00\e8\15\00\00\00\00\00\00d%\00\007c\00\00" - "\e8\15\00\00\00\00\00\00d%\00\00\8fc\00\00\e8\15\00\00\00\00\00\00d%\00\00\d7c\00\00\e8\15\00\00\00\00\00\00d%\00\00\0fd\00\00\e8\15\00\00\00\00\00\00d%\00\00]d\00\00" - "\e8\15\00\00\00\00\00\00d%\00\00\9cd\00\00\e8\15\00\00\00\00\00\00d%\00\00\dfd\00\00\e8\15\00\00\00\00\00\00d%\00\00\10e\00\00\e8\15\00\00\00\00\00\00d%\00\00Jf\00\00" - "\e8\15\00\00\00\00\00\00d%\00\00\8af\00\00\e8\15\00\00\00\00\00\00d%\00\00\bdf\00\00\e8\15\00\00\00\00\00\00d%\00\00\f7f\00\00\e8\15\00\00\00\00\00\00d%\00\000g\00\00" - "\e8\15\00\00\00\00\00\00d%\00\00mg\00\00\e8\15\00\00\00\00\00\00d%\00\00\eag\00\00\e8\15\00\00\00\00\00\00d%\00\00\16h\00\00\e8\15\00\00\00\00\00\00d%\00\00Lh\00\00" - "\e8\15\00\00\00\00\00\00d%\00\00\a0h\00\00\e8\15\00\00\00\00\00\00d%\00\00\d8h\00\00\e8\15\00\00\00\00\00\00d%\00\00\1bi\00\00\e8\15\00\00\00\00\00\00d%\00\00Li\00\00" - "\e8\15\00\00\00\00\00\00d%\00\00|i\00\00\e8\15\00\00\00\00\00\00d%\00\00\b7i\00\00\e8\15\00\00\00\00\00\00d%\00\00\f9i\00\00\e8\15\00\00\00\00\00\00d%\00\00\e8j\00\00" - "\e8\15\00\00\00\00\00\00d%\00\00sk\00\00\98\15\00\00\00\00\00\00d%\00\00\83k\00\00\10\1a\00\00\00\00\00\00d%\00\00\94k\00\00\b0\15\00\00\00\00\00\00d%\00\00\b6k\00\00" - "0\1a\00\00\00\00\00\00d%\00\00\dak\00\00\b0\15\00\00\00\00\00\00d1\00\00\02l\00\00d1\00\00\04l\00\00d1\00\00\06l\00\00d%\00\00\08l\00\00\a0\15") + "d%\00\00ZS\00\00\98\15\00\00\00\00\00\00<%\00\00\1cT\00\00d%\00\00|T\00\00\b0\15\00\00\00\00\00\00d%\00\00)T\00\00\c0\15\00\00\00\00\00\00<%\00\00JT\00\00" + "d%\00\00WT\00\00\a0\15\00\00\00\00\00\00d%\00\00\0cV\00\00\e8\15\00\00\00\00\00\00<%\00\00;V\00\00d%\00\00\efV\00\00\e8\15\00\00\00\00\00\00d%\00\002W\00\00" + "\e8\15\00\00\00\00\00\00d%\00\00\7fW\00\00\e8\15\00\00\00\00\00\00d%\00\00\c5W\00\00\e8\15\00\00\00\00\00\00d%\00\00\f5W\00\00\e8\15\00\00\00\00\00\00d%\00\003X\00\00" + "\e8\15\00\00\00\00\00\00d%\00\00dX\00\00\e8\15\00\00\00\00\00\00d%\00\00\b4X\00\00\e8\15\00\00\00\00\00\00d%\00\00\edX\00\00\e8\15\00\00\00\00\00\00d%\00\00(Y\00\00" + "\e8\15\00\00\00\00\00\00d%\00\00dY\00\00\e8\15\00\00\00\00\00\00d%\00\00\a7Y\00\00\e8\15\00\00\00\00\00\00d%\00\00\d5Y\00\00\e8\15\00\00\00\00\00\00d%\00\00\08Z\00\00" + "\e8\15\00\00\00\00\00\00d%\00\00\c4Z\00\00\e8\15\00\00\00\00\00\00d%\00\00\f1Z\00\00\e8\15\00\00\00\00\00\00d%\00\00\"[\00\00\e8\15\00\00\00\00\00\00d%\00\00`[\00\00" + "\e8\15\00\00\00\00\00\00d%\00\00\d8[\00\00\e8\15\00\00\00\00\00\00d%\00\00\9d[\00\00\e8\15\00\00\00\00\00\00d%\00\00\1f\\\00\00\e8\15\00\00\00\00\00\00d%\00\00h\\\00\00" + "\e8\15\00\00\00\00\00\00d%\00\00\c3\\\00\00\e8\15\00\00\00\00\00\00d%\00\00\ee\\\00\00\e8\15\00\00\00\00\00\00d%\00\00(]\00\00\e8\15\00\00\00\00\00\00d%\00\00\\]\00\00" + "\e8\15\00\00\00\00\00\00d%\00\00\ac]\00\00\e8\15\00\00\00\00\00\00d%\00\00\db]\00\00\e8\15\00\00\00\00\00\00d%\00\00\14^\00\00\e8\15\00\00\00\00\00\00d%\00\00M^\00\00" + "\e8\15\00\00\00\00\00\00d%\00\00r`\00\00\e8\15\00\00\00\00\00\00d%\00\00\c0`\00\00\e8\15\00\00\00\00\00\00d%\00\00\fb`\00\00\e8\15\00\00\00\00\00\00d%\00\00'a\00\00" + "\e8\15\00\00\00\00\00\00d%\00\00qa\00\00\e8\15\00\00\00\00\00\00d%\00\00\a6a\00\00\e8\15\00\00\00\00\00\00d%\00\00\d9a\00\00\e8\15\00\00\00\00\00\00d%\00\00\10b\00\00" + "\e8\15\00\00\00\00\00\00d%\00\00Eb\00\00\e8\15\00\00\00\00\00\00d%\00\00\dbb\00\00\e8\15\00\00\00\00\00\00d%\00\00\0dc\00\00\e8\15\00\00\00\00\00\00d%\00\00?c\00\00" + "\e8\15\00\00\00\00\00\00d%\00\00\97c\00\00\e8\15\00\00\00\00\00\00d%\00\00\dfc\00\00\e8\15\00\00\00\00\00\00d%\00\00\17d\00\00\e8\15\00\00\00\00\00\00d%\00\00ed\00\00" + "\e8\15\00\00\00\00\00\00d%\00\00\a4d\00\00\e8\15\00\00\00\00\00\00d%\00\00\e7d\00\00\e8\15\00\00\00\00\00\00d%\00\00\18e\00\00\e8\15\00\00\00\00\00\00d%\00\00Rf\00\00" + "\e8\15\00\00\00\00\00\00d%\00\00\92f\00\00\e8\15\00\00\00\00\00\00d%\00\00\c5f\00\00\e8\15\00\00\00\00\00\00d%\00\00\fff\00\00\e8\15\00\00\00\00\00\00d%\00\008g\00\00" + "\e8\15\00\00\00\00\00\00d%\00\00ug\00\00\e8\15\00\00\00\00\00\00d%\00\00\f2g\00\00\e8\15\00\00\00\00\00\00d%\00\00\1eh\00\00\e8\15\00\00\00\00\00\00d%\00\00Th\00\00" + "\e8\15\00\00\00\00\00\00d%\00\00\a8h\00\00\e8\15\00\00\00\00\00\00d%\00\00\e0h\00\00\e8\15\00\00\00\00\00\00d%\00\00#i\00\00\e8\15\00\00\00\00\00\00d%\00\00Ti\00\00" + "\e8\15\00\00\00\00\00\00d%\00\00\84i\00\00\e8\15\00\00\00\00\00\00d%\00\00\bfi\00\00\e8\15\00\00\00\00\00\00d%\00\00\01j\00\00\e8\15\00\00\00\00\00\00d%\00\00\f0j\00\00" + "\e8\15\00\00\00\00\00\00d%\00\00{k\00\00\98\15\00\00\00\00\00\00d%\00\00\8bk\00\00\10\1a\00\00\00\00\00\00d%\00\00\9ck\00\00\b0\15\00\00\00\00\00\00d%\00\00\bek\00\00" + "0\1a\00\00\00\00\00\00d%\00\00\e2k\00\00\b0\15\00\00\00\00\00\00d1\00\00\nl\00\00d1\00\00\0cl\00\00d1\00\00\0el\00\00d%\00\00\10l\00\00\a0\15") (data $70 $33 (i32.const 6796) "\88\11\00\00\01\00\00\00\02\00\00\00\01\00\00\00\02\00\00\00\01\00\00\00\02\00\00\00\03\00\00\00\03\00\00\00\04\00\00\00\01\00\00\00\05\00\00\00\06\00\00\00\07\00\00\00\02\00\00\00\08\00\00\00" "\04\00\00\00\05\00\00\00\06\00\00\00\00\00\00\00\d0\11\00\00\07\00\00\00\08\00\00\00\09\00\00\00\01\00\00\00\01\00\00\00\02\00\00\00\00\00\00\00p\11\00\00\01\00\00\00\n\00\00\00\09\00\00\00" @@ -405,9 +405,9 @@ "\01\00\00\00`\1a\00\00\00\00\00\00\88\13\00\00H\00\00\00I\00\00\00d\00\00\00\00\00\00\00\b0\13\00\00J\00\00\00K\00\00\00\05\00\00\00A\00\00\00\01\00\00\00\06\00\00\00e\00\00\00" "\00\00\00\00\c0\13\00\00J\00\00\00L\00\00\00\07\00\00\00B\00\00\00\02\00\00\00\06\00\00\00e") (data $83 $33 (i32.const 9209) - "\01\00\00\00\09\00\00\00\00\00\00\08\00\00\00\01\00\00\00 \00\00\00\00\10\04\00\00\c8u\00\00\d6u\00\00\10\0d\00\00\d8\13\00\00h\14") + "\01\00\00\00\09\00\00\00\00\00\00\08\00\00\00\01\00\00\00 \00\00\00\00\10\04\00\00\d8u\00\00\e6u\00\00\10\0d\00\00\d8\13\00\00h\14") (data $84 $33 (i32.const 9448) - "\\s") + "ls") (data $85 $33 (i32.const 9508) "\88\15\00\00M\00\00\00N\00\00\00g\00\00\00\00\00\00\00\a0\15\00\00O\00\00\00P\00\00\00Q\00\00\00R\00\00\00\0b\00\00\00\01\00\00\00\02\00\00\00\02\00\00\00\00\00\00\00\c8\15\00\00" "O\00\00\00S\00\00\00Q\00\00\00R\00\00\00\0b\00\00\00\02\00\00\00\03\00\00\00\03\00\00\00\00\00\00\00\d8\15\00\00(\00\00\00)\00\00\00*\00\00\00+\00\00\00C\00\00\00D\00\00\00" @@ -465,259 +465,259 @@ "\1a\00\00(\00\00\00)\00\00\00*\00\00\00+\00\00\00\98\00\00\00D\00\00\00E\00\00\00T\00\00\00\98\00\00\00\00\00\00\00\10\1a\00\00\99\00\00\00\9a\00\00\00h\00\00\00\00\00\00\00 " "\1a\00\00\99\00\00\00\9b\00\00\00h\00\00\00\00\00\00\00P\1a\00\00O\00\00\00\9c\00\00\00Q\00\00\00R\00\00\00\0c\00\00\00\00\00\00\00x\1a\00\00O\00\00\00\9d\00\00\00Q\00\00\00R" "\00\00\00\0b\00\00\00\03\00\00\00\04\00\00\00\04\00\00\00callout_cluster\00request\00service\00method\0014Requ" - "estContext\007Context\0011ContextBase\00/home/jplev_google_com/envoy/a" - "pi/wasm/cpp/proxy_wasm_intrinsics_lite.pb.h\00CHECK failed: value " - "!= NULL: \00/home/jplev_google_com/envoy/api/wasm/cpp/struct_lite." - "pb.h\00NSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcE" - "EEE\00NSt3__221__basic_string_commonILb1EEE\0022CalloutResponseHandl" - "er\0015GrpcCallHandlerIN6google8protobuf5ValueEE\0019GrpcCallHandler" - "Base\003$_0\0014ServiceContext\0011RootContext\00test_callout_successes\00" - "defineMetric(MetricType::Counter, \"test_callout_successes\", &cal" - "lout_success_counter_)\00test_callout_failures\00defineMetric(Metric" - "Type::Counter, \"test_callout_failures\", &callout_failure_counter" - "_)\003$_1\00/home/jplev_google_com/envoy/api/wasm/cpp/proxy_wasm_int" - "rinsics_lite.pb.cc\00N6google8protobuf8internal29InternalMetadataW" - "ithArenaBaseINSt3__212basic_stringIcNS3_11char_traitsIcEENS3_9al" - "locatorIcEEEENS1_29InternalMetadataWithArenaLiteEE9ContainerE\00Da" - "taSource.filename\00DataSource.inline_string\00/usr/local/include/go" - "ogle/protobuf/arenastring.h\00CHECK failed: initial_value != NULL:" - " \00DataSource\0010DataSource\00Any.type_url\00Any\003Any\00GrpcService.Envo" - "yGrpc.cluster_name\00GrpcService.EnvoyGrpc\0021GrpcService_EnvoyGrpc" - "\00GrpcService.GoogleGrpc.SslCredentials\0037GrpcService_GoogleGrpc_" - "SslCredentials\00GrpcService.GoogleGrpc.GoogleLocalCredentials\0045G" - "rpcService_GoogleGrpc_GoogleLocalCredentials\00GrpcService.GoogleG" - "rpc.Empty\0028GrpcService_GoogleGrpc_Empty\00GrpcService.GoogleGrpc." - "ChannelCredentials\0041GrpcService_GoogleGrpc_ChannelCredentials\00G" - "rpcService.GoogleGrpc.CallCredentials.ServiceAccountJWTAccessCre" - "dentials.json_key\00GrpcService.GoogleGrpc.CallCredentials.Service" - "AccountJWTAccessCredentials\0073GrpcService_GoogleGrpc_CallCredent" - "ials_ServiceAccountJWTAccessCredentials\00GrpcService.GoogleGrpc.C" - "allCredentials.GoogleIAMCredentials.authorization_token\00GrpcServ" - "ice.GoogleGrpc.CallCredentials.GoogleIAMCredentials.authority_se" - "lector\00GrpcService.GoogleGrpc.CallCredentials.GoogleIAMCredentia" - "ls\0059GrpcService_GoogleGrpc_CallCredentials_GoogleIAMCredentials" - "\00GrpcService.GoogleGrpc.CallCredentials.MetadataCredentialsFromP" - "lugin.name\00GrpcService.GoogleGrpc.CallCredentials.MetadataCreden" - "tialsFromPlugin\0068GrpcService_GoogleGrpc_CallCredentials_Metadat" - "aCredentialsFromPlugin\00GrpcService.GoogleGrpc.CallCredentials.ac" - "cess_token\00GrpcService.GoogleGrpc.CallCredentials.google_refresh" - "_token\00GrpcService.GoogleGrpc.CallCredentials\0038GrpcService_Goog" - "leGrpc_CallCredentials\00GrpcService.GoogleGrpc.target_uri\00GrpcSer" - "vice.GoogleGrpc.stat_prefix\00GrpcService.GoogleGrpc.credentials_f" - "actory_name\00GrpcService.GoogleGrpc\0022GrpcService_GoogleGrpc\00Grpc" - "Service.HeaderValue.key\00GrpcService.HeaderValue.value\00GrpcServic" - "e.HeaderValue\0023GrpcService_HeaderValue\00GrpcService\0011GrpcServic" - "e\00/home/jplev_google_com/envoy/api/wasm/cpp/struct_lite.pb.cc\00/u" - "sr/local/include/google/protobuf/repeated_field.h\00CHECK failed: " - "(index) >= (0): \00CHECK failed: (index) < (current_size_): \00/usr/" - "local/include/google/protobuf/map.h\00CHECK failed: (bucket_index_" - " & 1) == (0): \00CHECK failed: m_->index_of_first_non_null_ == m_-" - ">num_buckets_ || m_->table_[m_->index_of_first_non_null_] != NUL" - "L: \00CHECK failed: !tree->empty(): \00CHECK failed: node_ != NULL &" - "& m_ != NULL: \00google.protobuf.Value.string_value\00google.protobu" - "f.Struct.FieldsEntry.key\00CHECK failed: (&from) != (this): \00CHECK" - " failed: (&other) != (this): \00N6google8protobuf27Struct_FieldsEn" - "try_DoNotUseE\00N6google8protobuf8internal12MapEntryLiteINS0_27Str" - "uct_FieldsEntry_DoNotUseENSt3__212basic_stringIcNS4_11char_trait" - "sIcEENS4_9allocatorIcEEEENS0_5ValueELNS1_14WireFormatLite9FieldT" - "ypeE9ELSD_11ELi0EEE\00N6google8protobuf8internal12MapEntryImplINS0" - "_27Struct_FieldsEntry_DoNotUseENS0_11MessageLiteENSt3__212basic_" - "stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEENS0_5ValueELNS1" - "_14WireFormatLite9FieldTypeE9ELSE_11ELi0EEE\00CHECK failed: (it.m_" - ") == (this): \00CHECK failed: TableEntryIsNonEmptyList(b): \00CHECK " - "failed: TableEntryIsTree(b): \00CHECK failed: GetArenaNoVirtual() " - "== NULL: \00CHECK failed: index_of_first_non_null_ == num_buckets_" - " || table_[index_of_first_non_null_] != NULL: \00CHECK failed: fin" - "d(*KeyPtrFromNodePtr(node)) == end(): \00CHECK failed: (count) <= " - "(kMaxLength): \00CHECK failed: (result.bucket_index_) == (b & ~sta" - "tic_cast(1)): \00CHECK failed: (table_[b]) == (table_[b" - " ^ 1]): \00CHECK failed: !TableEntryIsTree(b) && !TableEntryIsTree" - "(b ^ 1): \00CHECK failed: (count) == (tree->size()): \00CHECK failed" - ": (new_num_buckets) >= (kMinTableSize): \00CHECK failed: n >= kMin" - "TableSize: \00CHECK failed: (n & (n - 1)) == (0): \00CHECK failed: t" - "able_[b] == table_[b + 1] && (b & 1) == 0: \00N6google8protobuf3Ma" - "pINSt3__212basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEE" - "EENS0_5ValueEE8InnerMapE\00N6google8protobuf4hashINSt3__212basic_s" - "tringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEE\00f == NULL || " - "dynamic_cast(f) != NULL\00/usr/local/include/google/protobuf/s" - "tubs/casts.h\00down_cast\00google.protobuf.Struct\00N6google8protobuf6" - "StructE\00N6google8protobuf5ValueE\00N6google8protobuf8internal12Map" - "EntryImplINS0_27Struct_FieldsEntry_DoNotUseENS0_11MessageLiteENS" - "t3__212basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEENS" - "0_5ValueELNS1_14WireFormatLite9FieldTypeE9ELSE_11ELi0EE15MapEntr" - "yWrapperE\00CHECK failed: (n) >= (0): \00google.protobuf.ListValue\00N" - "6google8protobuf9ListValueE\00google.protobuf.Value\00no context fac" - "tory for root_id: \00N6google8protobuf14FatalExceptionE\00google/pro" - "tobuf/stubs/common.cc\00This program requires version \00%d.%d.%d\00 o" - "f the Protocol Buffer runtime library, but the installed version" - " is \00. Please update your library. If you compiled the program" - " yourself, make sure that your headers are from the same version" - " of Protocol Buffers as your link-time library. (Version verifi" - "cation failed in \"\00\".)\00This program was compiled against version" - " \00 of the Protocol Buffer runtime library, which is not compatib" - "le with the installed version (\00). Contact the program author f" - "or an update. If you compiled the program yourself, make sure t" - "hat your headers are from the same version of Protocol Buffers a" - "s your link-time library. (Version verification failed in \"\00[li" - "bprotobuf %s %s:%d] %s\n\00INFO\00WARNING\00ERROR\00FATAL\00allocator::a" - "llocate(size_t n) 'n' exceeds maximum supported size\00%u\00%lu\00goog" - "le/protobuf/arena.cc\00CHECK failed: (min_bytes) <= (std::numeric_" - "limits::max() - kBlockHeaderSize): \00google/protobuf/gene" - "rated_message_util.cc\00Not implemented field number \00 with type \00" - "CHECK failed: (scc->visit_status.load(std::memory_order_relaxed)" - ") == (SCCInfoBase::kRunning): \00google/protobuf/message_lite.cc\00C" - "HECK failed: !coded_out.HadError(): \00(cannot determine missing f" - "ields for lite message)\00N6google8protobuf11MessageLiteE\00parse\00Ca" - "n't \00 message of type \"\00\" because it is missing required fields:" - " \00Exceeded maximum protobuf size of 2GB: \00CHECK failed: (byte_si" - "ze_before_serialization) == (byte_size_after_serialization): \00 w" - "as modified concurrently during serialization.\00CHECK failed: (by" - "tes_produced_by_serialization) == (byte_size_before_serializatio" - "n): \00Byte size calculation and serialization were inconsistent. " - " This may indicate a bug in protocol buffers or it may be caused" - " by concurrent modification of \00This shouldn't be called if all " - "the sizes are equal.\00google/protobuf/repeated_field.cc\00CHECK fai" - "led: (new_size) <= ((std::numeric_limits::max() - kRepHe" - "aderSize) / sizeof(old_rep->elements[0])): \00Requested size is to" - "o large to fit into size_t.\00google/protobuf/wire_format_lite.cc\00" - "CHECK failed: (value.size()) <= (kint32max): \00serializing\00parsin" - "g\00 '%s'\00String field\00 contains invalid \00UTF-8 data when \00 a prot" - "ocol \00buffer. Use the 'bytes' type if you intend to send raw \00by" - "tes. \00google/protobuf/io/coded_stream.cc\00CHECK failed: (buffer_s" - "ize) >= (0): \00A protocol message was rejected because it was too" - " big (more than \00 bytes). To increase the limit (or to disable " - "these warnings), see CodedInputStream::SetTotalBytesLimit() in g" - "oogle/protobuf/io/coded_stream.h.\00google/protobuf/io/zero_copy_s" - "tream_impl_lite.cc\00CHECK failed: (count) >= (0): \00CHECK failed: " - "(last_returned_size_) > (0): \00BackUp() can only be called after " - "a successful Next().\00CHECK failed: (count) <= (last_returned_siz" - "e_): \00N6google8protobuf2io17ArrayOutputStreamE\00CHECK failed: tar" - "get_ != NULL: \00CHECK failed: (count) <= (target_->size()): \00Cann" - "ot allocate buffer larger than kint32max for \00StringOutputStream" - ".\00N6google8protobuf2io18StringOutputStreamE\00google/protobuf/io/z" - "ero_copy_stream.cc\00This ZeroCopyOutputStream doesn't support ali" - "asing. Reaching here usually means a ZeroCopyOutputStream implem" - "entation bug.\00N6google8protobuf2io20ZeroCopyOutputStreamE\00-+ 0" - "X0x\00(null)\00-0X+0X 0X-0x+0x 0x\00inf\00INF\00nan\00NAN\00std::bad_function_" - "call\00NSt3__217bad_function_callE\00mutex lock failed\00%d\00terminatin" - "g with %s exception of type %s: %s\00terminating with %s exception" - " of type %s\00terminating with %s foreign exception\00terminating\00un" - "caught\00St9exception\00N10__cxxabiv116__shim_type_infoE\00St9type_inf" - "o\00N10__cxxabiv120__si_class_type_infoE\00N10__cxxabiv117__class_ty" - "pe_infoE\00terminate_handler unexpectedly returned\00_Z\00___Z\00_block_" - "invoke\00invocation function for block in \00void\00bool\00char\00signed c" - "har\00unsigned char\00short\00unsigned short\00int\00unsigned int\00long\00uns" - "igned long\00long long\00__int128\00unsigned __int128\00float\00long doubl" - "e\00__float128\00...\00decimal64\00decimal128\00decimal32\00decimal16\00char32" - "_t\00char16_t\00auto\00decltype(auto)\00std::nullptr_t\00[abi:\00]\00N12_GLOBA" - "L__N_116itanium_demangle10AbiTagAttrE\00N12_GLOBAL__N_116itanium_d" - "emangle4NodeE\00allocator\00basic_string\00string\00istream\00ostream\00iost" - "ream\00std::allocator\00std::basic_string\00std::string\00std::istream\00s" - "td::ostream\00std::iostream\00N12_GLOBAL__N_116itanium_demangle19Spe" - "cialSubstitutionE\00 imaginary\00N12_GLOBAL__N_116itanium_demangle20" - "PostfixQualifiedTypeE\00 complex\00)\00 \00(\00&\00&&\00N12_GLOBAL__N_116itani" - "um_demangle13ReferenceTypeE\00objc_object\00*\00id<\00>\00N12_GLOBAL__N_11" - "6itanium_demangle11PointerTypeE\00N12_GLOBAL__N_116itanium_demangl" - "e20NameWithTemplateArgsE\00<\00, \00N12_GLOBAL__N_116itanium_demangle1" - "2TemplateArgsE\00N12_GLOBAL__N_116itanium_demangle13ParameterPackE" - "\00wchar_t\00b0E\00b1E\00u\00l\00ul\00ll\00ull\00N12_GLOBAL__N_116itanium_demangle" - "15IntegerCastExprE\00%LaL\00N12_GLOBAL__N_116itanium_demangle16Float" - "LiteralImplIeEE\00%a\00N12_GLOBAL__N_116itanium_demangle16FloatLiter" - "alImplIdEE\00%af\00N12_GLOBAL__N_116itanium_demangle16FloatLiteralIm" - "plIfEE\00true\00false\00N12_GLOBAL__N_116itanium_demangle8BoolExprE\00-\00" - "N12_GLOBAL__N_116itanium_demangle14IntegerLiteralE\00N12_GLOBAL__N" - "_116itanium_demangle20TemplateArgumentPackE\00gs\00&=\00=\00alignof (\00,\00" - "~\00.*\00/\00/=\00^\00^=\00==\00>=\00<=\00<<\00<<=\00-=\00*=\00--\00!=\00!\00||\00|\00|=\00->*\00+\00+=\00++" - "\00->\00%\00%=\00>>\00>>=\00sizeof (\00typeid (\00throw\00throw \00N12_GLOBAL__N_116" - "itanium_demangle9ThrowExprE\00N12_GLOBAL__N_116itanium_demangle12I" - "nitListExprE\00N12_GLOBAL__N_116itanium_demangle13NodeArrayNodeE\00s" - "izeof... (\00N12_GLOBAL__N_116itanium_demangle13EnclosingExprE\00siz" - "eof...(\00N12_GLOBAL__N_116itanium_demangle22ParameterPackExpansio" - "nE\00N12_GLOBAL__N_116itanium_demangle19SizeofParamPackExprE\00stati" - "c_cast\00>(\00N12_GLOBAL__N_116itanium_demangle8CastExprE\00reinterpre" - "t_cast\00) ? (\00) : (\00N12_GLOBAL__N_116itanium_demangle15Conditiona" - "lExprE\00noexcept (\00nw\00na\00pi\00::operator \00new\00[]\00N12_GLOBAL__N_116i" - "tanium_demangle7NewExprE\00N12_GLOBAL__N_116itanium_demangle11Post" - "fixExprE\00 ... \00 = \00N12_GLOBAL__N_116itanium_demangle15BracedRang" - "eExprE\00N12_GLOBAL__N_116itanium_demangle10BracedExprE\00_GLOBAL__N" - "\00(anonymous namespace)\00N12_GLOBAL__N_116itanium_demangle8NameTyp" - "eE\00)[\00N12_GLOBAL__N_116itanium_demangle18ArraySubscriptExprE\00.\00N" - "12_GLOBAL__N_116itanium_demangle10MemberExprE\00srN\00sr\00::\00N12_GLOB" - "AL__N_116itanium_demangle19GlobalQualifiedNameE\00dn\00on\00operator&&" - "\00operator&\00operator&=\00operator=\00operator()\00operator,\00operator~\00o" - "perator delete[]\00operator*\00operator/\00operator/=\00operator^\00operat" - "or^=\00operator==\00operator>=\00operator>\00operator[]\00operator<=\00opera" - "tor<<\00operator<<=\00operator<\00operator-\00operator-=\00operator*=\00oper" - "ator--\00operator new[]\00operator!=\00operator!\00operator new\00operator" - "||\00operator|\00operator|=\00operator->*\00operator+\00operator+=\00operato" - "r++\00operator->\00operator?\00operator%\00operator%=\00operator>>\00operato" - "r>>=\00operator<=>\00operator\"\" \00N12_GLOBAL__N_116itanium_demangle15" - "LiteralOperatorE\00operator delete\00operator \00N12_GLOBAL__N_116itan" - "ium_demangle22ConversionOperatorTypeE\00N12_GLOBAL__N_116itanium_d" - "emangle8DtorNameE\00N12_GLOBAL__N_116itanium_demangle13QualifiedNa" - "meE\00dynamic_cast\00delete\00[] \00N12_GLOBAL__N_116itanium_demangle10D" - "eleteExprE\00cv\00)(\00N12_GLOBAL__N_116itanium_demangle14ConversionEx" - "prE\00N12_GLOBAL__N_116itanium_demangle8CallExprE\00const_cast\00N12_G" - "LOBAL__N_116itanium_demangle10PrefixExprE\00) \00 (\00N12_GLOBAL__N_11" - "6itanium_demangle10BinaryExprE\00aa\00an\00aN\00aS\00cm\00ds\00dv\00dV\00eo\00eO\00eq\00" - "ge\00gt\00le\00ls\00lS\00lt\00mi\00mI\00ml\00mL\00ne\00oo\00or\00oR\00pl\00pL\00rm\00rM\00rs\00rS\00... " - "\00 ...\00N12_GLOBAL__N_116itanium_demangle8FoldExprE\00fp\00fL\00N12_GLOB" - "AL__N_116itanium_demangle13FunctionParamE\00N12_GLOBAL__N_116itani" - "um_demangle24ForwardTemplateReferenceE\00Ts\00struct\00Tu\00union\00Te\00enu" - "m\00N12_GLOBAL__N_116itanium_demangle22ElaboratedTypeSpefTypeE\00StL" - "\00St\00std::\00N12_GLOBAL__N_116itanium_demangle16StdQualifiedNameE\00D" - "C\00N12_GLOBAL__N_116itanium_demangle21StructuredBindingNameE\00Ut\00U" - "l\00vE\00'lambda\00'(\00N12_GLOBAL__N_116itanium_demangle15ClosureTypeNa" - "meE\00'unnamed\00'\00N12_GLOBAL__N_116itanium_demangle15UnnamedTypeNam" - "eE\00string literal\00N12_GLOBAL__N_116itanium_demangle9LocalNameE\00s" - "td\00N12_GLOBAL__N_116itanium_demangle12CtorDtorNameE\00basic_istrea" - "m\00basic_ostream\00basic_iostream\00std::basic_string, std::allocator >\00std::basic_istream >\00std::basic_ostream >\00std::basic_iostream >\00N12" - "_GLOBAL__N_116itanium_demangle27ExpandedSpecialSubstitutionE\00N12" - "_GLOBAL__N_116itanium_demangle10NestedNameE\00::*\00N12_GLOBAL__N_11" - "6itanium_demangle19PointerToMemberTypeE\00[\00N12_GLOBAL__N_116itani" - "um_demangle9ArrayTypeE\00Dv\00 vector[\00N12_GLOBAL__N_116itanium_dema" - "ngle10VectorTypeE\00pixel vector[\00N12_GLOBAL__N_116itanium_demangl" - "e15PixelVectorTypeE\00decltype(\00double\00unsigned long long\00objcprot" - "o\00 const\00 volatile\00 restrict\00N12_GLOBAL__N_116itanium_demangle8Q" - "ualTypeE\00N12_GLOBAL__N_116itanium_demangle17VendorExtQualTypeE\00N" - "12_GLOBAL__N_116itanium_demangle13ObjCProtoNameE\00Do\00noexcept\00DO\00" - "Dw\00Dx\00RE\00OE\00 &\00 &&\00N12_GLOBAL__N_116itanium_demangle12FunctionTy" - "peE\00throw(\00N12_GLOBAL__N_116itanium_demangle20DynamicExceptionSp" - "ecE\00noexcept(\00N12_GLOBAL__N_116itanium_demangle12NoexceptSpecE\00N" - "12_GLOBAL__N_116itanium_demangle11SpecialNameE\00N12_GLOBAL__N_116" - "itanium_demangle9DotSuffixE\00Ua9enable_ifI\00N12_GLOBAL__N_116itani" - "um_demangle16FunctionEncodingE\00 [enable_if:\00N12_GLOBAL__N_116ita" - "nium_demangle12EnableIfAttrE\00thread-local wrapper routine for \00r" - "eference temporary for \00guard variable for \00non-virtual thunk to" - " \00virtual thunk to \00thread-local initialization routine for \00con" - "struction vtable for \00-in-\00N12_GLOBAL__N_116itanium_demangle21Ct" - "orVtableSpecialNameE\00covariant return thunk to \00typeinfo name fo" - "r \00typeinfo for \00VTT for \00vtable for \00St11logic_error\00St12length" - "_error\00N10__cxxabiv117__pbase_type_infoE\00N10__cxxabiv119__pointe" - "r_type_infoE\00N10__cxxabiv123__fundamental_type_infoE\00v\00c\00h\00N10__" - "cxxabiv121__vmi_class_type_infoE") + "estContext\007Context\0011ContextBase\00/home/piotrsikora/Google/envoy" + "/api/wasm/cpp/proxy_wasm_intrinsics_lite.pb.h\00CHECK failed: valu" + "e != NULL: \00/home/piotrsikora/Google/envoy/api/wasm/cpp/struct_l" + "ite.pb.h\00NSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocato" + "rIcEEEE\00NSt3__221__basic_string_commonILb1EEE\0022CalloutResponseH" + "andler\0015GrpcCallHandlerIN6google8protobuf5ValueEE\0019GrpcCallHan" + "dlerBase\003$_0\0014ServiceContext\0011RootContext\00test_callout_succes" + "ses\00defineMetric(MetricType::Counter, \"test_callout_successes\", " + "&callout_success_counter_)\00test_callout_failures\00defineMetric(Me" + "tricType::Counter, \"test_callout_failures\", &callout_failure_cou" + "nter_)\003$_1\00/home/piotrsikora/Google/envoy/api/wasm/cpp/proxy_wa" + "sm_intrinsics_lite.pb.cc\00N6google8protobuf8internal29InternalMet" + "adataWithArenaBaseINSt3__212basic_stringIcNS3_11char_traitsIcEEN" + "S3_9allocatorIcEEEENS1_29InternalMetadataWithArenaLiteEE9Contain" + "erE\00DataSource.filename\00DataSource.inline_string\00/usr/local/incl" + "ude/google/protobuf/arenastring.h\00CHECK failed: initial_value !=" + " NULL: \00DataSource\0010DataSource\00Any.type_url\00Any\003Any\00GrpcServic" + "e.EnvoyGrpc.cluster_name\00GrpcService.EnvoyGrpc\0021GrpcService_Env" + "oyGrpc\00GrpcService.GoogleGrpc.SslCredentials\0037GrpcService_Googl" + "eGrpc_SslCredentials\00GrpcService.GoogleGrpc.GoogleLocalCredentia" + "ls\0045GrpcService_GoogleGrpc_GoogleLocalCredentials\00GrpcService.G" + "oogleGrpc.Empty\0028GrpcService_GoogleGrpc_Empty\00GrpcService.Googl" + "eGrpc.ChannelCredentials\0041GrpcService_GoogleGrpc_ChannelCredent" + "ials\00GrpcService.GoogleGrpc.CallCredentials.ServiceAccountJWTAcc" + "essCredentials.json_key\00GrpcService.GoogleGrpc.CallCredentials.S" + "erviceAccountJWTAccessCredentials\0073GrpcService_GoogleGrpc_CallC" + "redentials_ServiceAccountJWTAccessCredentials\00GrpcService.Google" + "Grpc.CallCredentials.GoogleIAMCredentials.authorization_token\00Gr" + "pcService.GoogleGrpc.CallCredentials.GoogleIAMCredentials.author" + "ity_selector\00GrpcService.GoogleGrpc.CallCredentials.GoogleIAMCre" + "dentials\0059GrpcService_GoogleGrpc_CallCredentials_GoogleIAMCrede" + "ntials\00GrpcService.GoogleGrpc.CallCredentials.MetadataCredential" + "sFromPlugin.name\00GrpcService.GoogleGrpc.CallCredentials.Metadata" + "CredentialsFromPlugin\0068GrpcService_GoogleGrpc_CallCredentials_M" + "etadataCredentialsFromPlugin\00GrpcService.GoogleGrpc.CallCredenti" + "als.access_token\00GrpcService.GoogleGrpc.CallCredentials.google_r" + "efresh_token\00GrpcService.GoogleGrpc.CallCredentials\0038GrpcServic" + "e_GoogleGrpc_CallCredentials\00GrpcService.GoogleGrpc.target_uri\00G" + "rpcService.GoogleGrpc.stat_prefix\00GrpcService.GoogleGrpc.credent" + "ials_factory_name\00GrpcService.GoogleGrpc\0022GrpcService_GoogleGrp" + "c\00GrpcService.HeaderValue.key\00GrpcService.HeaderValue.value\00Grpc" + "Service.HeaderValue\0023GrpcService_HeaderValue\00GrpcService\0011Grpc" + "Service\00/home/piotrsikora/Google/envoy/api/wasm/cpp/struct_lite." + "pb.cc\00/usr/local/include/google/protobuf/repeated_field.h\00CHECK " + "failed: (index) >= (0): \00CHECK failed: (index) < (current_size_)" + ": \00/usr/local/include/google/protobuf/map.h\00CHECK failed: (bucke" + "t_index_ & 1) == (0): \00CHECK failed: m_->index_of_first_non_null" + "_ == m_->num_buckets_ || m_->table_[m_->index_of_first_non_null_" + "] != NULL: \00CHECK failed: !tree->empty(): \00CHECK failed: node_ !" + "= NULL && m_ != NULL: \00google.protobuf.Value.string_value\00google" + ".protobuf.Struct.FieldsEntry.key\00CHECK failed: (&from) != (this)" + ": \00CHECK failed: (&other) != (this): \00N6google8protobuf27Struct_" + "FieldsEntry_DoNotUseE\00N6google8protobuf8internal12MapEntryLiteIN" + "S0_27Struct_FieldsEntry_DoNotUseENSt3__212basic_stringIcNS4_11ch" + "ar_traitsIcEENS4_9allocatorIcEEEENS0_5ValueELNS1_14WireFormatLit" + "e9FieldTypeE9ELSD_11ELi0EEE\00N6google8protobuf8internal12MapEntry" + "ImplINS0_27Struct_FieldsEntry_DoNotUseENS0_11MessageLiteENSt3__2" + "12basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEENS0_5Va" + "lueELNS1_14WireFormatLite9FieldTypeE9ELSE_11ELi0EEE\00CHECK failed" + ": (it.m_) == (this): \00CHECK failed: TableEntryIsNonEmptyList(b):" + " \00CHECK failed: TableEntryIsTree(b): \00CHECK failed: GetArenaNoVi" + "rtual() == NULL: \00CHECK failed: index_of_first_non_null_ == num_" + "buckets_ || table_[index_of_first_non_null_] != NULL: \00CHECK fai" + "led: find(*KeyPtrFromNodePtr(node)) == end(): \00CHECK failed: (co" + "unt) <= (kMaxLength): \00CHECK failed: (result.bucket_index_) == (" + "b & ~static_cast(1)): \00CHECK failed: (table_[b]) == (" + "table_[b ^ 1]): \00CHECK failed: !TableEntryIsTree(b) && !TableEnt" + "ryIsTree(b ^ 1): \00CHECK failed: (count) == (tree->size()): \00CHEC" + "K failed: (new_num_buckets) >= (kMinTableSize): \00CHECK failed: n" + " >= kMinTableSize: \00CHECK failed: (n & (n - 1)) == (0): \00CHECK f" + "ailed: table_[b] == table_[b + 1] && (b & 1) == 0: \00N6google8pro" + "tobuf3MapINSt3__212basic_stringIcNS2_11char_traitsIcEENS2_9alloc" + "atorIcEEEENS0_5ValueEE8InnerMapE\00N6google8protobuf4hashINSt3__21" + "2basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEE\00f == " + "NULL || dynamic_cast(f) != NULL\00/usr/local/include/google/pr" + "otobuf/stubs/casts.h\00down_cast\00google.protobuf.Struct\00N6google8p" + "rotobuf6StructE\00N6google8protobuf5ValueE\00N6google8protobuf8inter" + "nal12MapEntryImplINS0_27Struct_FieldsEntry_DoNotUseENS0_11Messag" + "eLiteENSt3__212basic_stringIcNS5_11char_traitsIcEENS5_9allocator" + "IcEEEENS0_5ValueELNS1_14WireFormatLite9FieldTypeE9ELSE_11ELi0EE1" + "5MapEntryWrapperE\00CHECK failed: (n) >= (0): \00google.protobuf.Lis" + "tValue\00N6google8protobuf9ListValueE\00google.protobuf.Value\00no con" + "text factory for root_id: \00N6google8protobuf14FatalExceptionE\00go" + "ogle/protobuf/stubs/common.cc\00This program requires version \00%d." + "%d.%d\00 of the Protocol Buffer runtime library, but the installed" + " version is \00. Please update your library. If you compiled the" + " program yourself, make sure that your headers are from the same" + " version of Protocol Buffers as your link-time library. (Versio" + "n verification failed in \"\00\".)\00This program was compiled against" + " version \00 of the Protocol Buffer runtime library, which is not " + "compatible with the installed version (\00). Contact the program " + "author for an update. If you compiled the program yourself, mak" + "e sure that your headers are from the same version of Protocol B" + "uffers as your link-time library. (Version verification failed " + "in \"\00[libprotobuf %s %s:%d] %s\n\00INFO\00WARNING\00ERROR\00FATAL\00allocat" + "or::allocate(size_t n) 'n' exceeds maximum supported size\00%u\00" + "%lu\00google/protobuf/arena.cc\00CHECK failed: (min_bytes) <= (std::" + "numeric_limits::max() - kBlockHeaderSize): \00google/proto" + "buf/generated_message_util.cc\00Not implemented field number \00 wit" + "h type \00CHECK failed: (scc->visit_status.load(std::memory_order_" + "relaxed)) == (SCCInfoBase::kRunning): \00google/protobuf/message_l" + "ite.cc\00CHECK failed: !coded_out.HadError(): \00(cannot determine m" + "issing fields for lite message)\00N6google8protobuf11MessageLiteE\00" + "parse\00Can't \00 message of type \"\00\" because it is missing required" + " fields: \00Exceeded maximum protobuf size of 2GB: \00CHECK failed: " + "(byte_size_before_serialization) == (byte_size_after_serializati" + "on): \00 was modified concurrently during serialization.\00CHECK fai" + "led: (bytes_produced_by_serialization) == (byte_size_before_seri" + "alization): \00Byte size calculation and serialization were incons" + "istent. This may indicate a bug in protocol buffers or it may b" + "e caused by concurrent modification of \00This shouldn't be called" + " if all the sizes are equal.\00google/protobuf/repeated_field.cc\00C" + "HECK failed: (new_size) <= ((std::numeric_limits::max() " + "- kRepHeaderSize) / sizeof(old_rep->elements[0])): \00Requested si" + "ze is too large to fit into size_t.\00google/protobuf/wire_format_" + "lite.cc\00CHECK failed: (value.size()) <= (kint32max): \00serializin" + "g\00parsing\00 '%s'\00String field\00 contains invalid \00UTF-8 data when " + "\00 a protocol \00buffer. Use the 'bytes' type if you intend to send" + " raw \00bytes. \00google/protobuf/io/coded_stream.cc\00CHECK failed: (" + "buffer_size) >= (0): \00A protocol message was rejected because it" + " was too big (more than \00 bytes). To increase the limit (or to " + "disable these warnings), see CodedInputStream::SetTotalBytesLimi" + "t() in google/protobuf/io/coded_stream.h.\00google/protobuf/io/zer" + "o_copy_stream_impl_lite.cc\00CHECK failed: (count) >= (0): \00CHECK " + "failed: (last_returned_size_) > (0): \00BackUp() can only be calle" + "d after a successful Next().\00CHECK failed: (count) <= (last_retu" + "rned_size_): \00N6google8protobuf2io17ArrayOutputStreamE\00CHECK fai" + "led: target_ != NULL: \00CHECK failed: (count) <= (target_->size()" + "): \00Cannot allocate buffer larger than kint32max for \00StringOutp" + "utStream.\00N6google8protobuf2io18StringOutputStreamE\00google/proto" + "buf/io/zero_copy_stream.cc\00This ZeroCopyOutputStream doesn't sup" + "port aliasing. Reaching here usually means a ZeroCopyOutputStrea" + "m implementation bug.\00N6google8protobuf2io20ZeroCopyOutputStream" + "E\00-+ 0X0x\00(null)\00-0X+0X 0X-0x+0x 0x\00inf\00INF\00nan\00NAN\00std::bad_f" + "unction_call\00NSt3__217bad_function_callE\00mutex lock failed\00%d\00te" + "rminating with %s exception of type %s: %s\00terminating with %s e" + "xception of type %s\00terminating with %s foreign exception\00termin" + "ating\00uncaught\00St9exception\00N10__cxxabiv116__shim_type_infoE\00St9" + "type_info\00N10__cxxabiv120__si_class_type_infoE\00N10__cxxabiv117__" + "class_type_infoE\00terminate_handler unexpectedly returned\00_Z\00___Z" + "\00_block_invoke\00invocation function for block in \00void\00bool\00char\00" + "signed char\00unsigned char\00short\00unsigned short\00int\00unsigned int\00" + "long\00unsigned long\00long long\00__int128\00unsigned __int128\00float\00lo" + "ng double\00__float128\00...\00decimal64\00decimal128\00decimal32\00decimal1" + "6\00char32_t\00char16_t\00auto\00decltype(auto)\00std::nullptr_t\00[abi:\00]\00N" + "12_GLOBAL__N_116itanium_demangle10AbiTagAttrE\00N12_GLOBAL__N_116i" + "tanium_demangle4NodeE\00allocator\00basic_string\00string\00istream\00ostr" + "eam\00iostream\00std::allocator\00std::basic_string\00std::string\00std::i" + "stream\00std::ostream\00std::iostream\00N12_GLOBAL__N_116itanium_deman" + "gle19SpecialSubstitutionE\00 imaginary\00N12_GLOBAL__N_116itanium_de" + "mangle20PostfixQualifiedTypeE\00 complex\00)\00 \00(\00&\00&&\00N12_GLOBAL__N_" + "116itanium_demangle13ReferenceTypeE\00objc_object\00*\00id<\00>\00N12_GLOB" + "AL__N_116itanium_demangle11PointerTypeE\00N12_GLOBAL__N_116itanium" + "_demangle20NameWithTemplateArgsE\00<\00, \00N12_GLOBAL__N_116itanium_d" + "emangle12TemplateArgsE\00N12_GLOBAL__N_116itanium_demangle13Parame" + "terPackE\00wchar_t\00b0E\00b1E\00u\00l\00ul\00ll\00ull\00N12_GLOBAL__N_116itanium_" + "demangle15IntegerCastExprE\00%LaL\00N12_GLOBAL__N_116itanium_demangl" + "e16FloatLiteralImplIeEE\00%a\00N12_GLOBAL__N_116itanium_demangle16Fl" + "oatLiteralImplIdEE\00%af\00N12_GLOBAL__N_116itanium_demangle16FloatL" + "iteralImplIfEE\00true\00false\00N12_GLOBAL__N_116itanium_demangle8Bool" + "ExprE\00-\00N12_GLOBAL__N_116itanium_demangle14IntegerLiteralE\00N12_G" + "LOBAL__N_116itanium_demangle20TemplateArgumentPackE\00gs\00&=\00=\00alig" + "nof (\00,\00~\00.*\00/\00/=\00^\00^=\00==\00>=\00<=\00<<\00<<=\00-=\00*=\00--\00!=\00!\00||\00|\00|=\00->*" + "\00+\00+=\00++\00->\00%\00%=\00>>\00>>=\00sizeof (\00typeid (\00throw\00throw \00N12_GLOBA" + "L__N_116itanium_demangle9ThrowExprE\00N12_GLOBAL__N_116itanium_dem" + "angle12InitListExprE\00N12_GLOBAL__N_116itanium_demangle13NodeArra" + "yNodeE\00sizeof... (\00N12_GLOBAL__N_116itanium_demangle13EnclosingE" + "xprE\00sizeof...(\00N12_GLOBAL__N_116itanium_demangle22ParameterPack" + "ExpansionE\00N12_GLOBAL__N_116itanium_demangle19SizeofParamPackExp" + "rE\00static_cast\00>(\00N12_GLOBAL__N_116itanium_demangle8CastExprE\00re" + "interpret_cast\00) ? (\00) : (\00N12_GLOBAL__N_116itanium_demangle15Co" + "nditionalExprE\00noexcept (\00nw\00na\00pi\00::operator \00new\00[]\00N12_GLOBAL" + "__N_116itanium_demangle7NewExprE\00N12_GLOBAL__N_116itanium_demang" + "le11PostfixExprE\00 ... \00 = \00N12_GLOBAL__N_116itanium_demangle15Br" + "acedRangeExprE\00N12_GLOBAL__N_116itanium_demangle10BracedExprE\00_G" + "LOBAL__N\00(anonymous namespace)\00N12_GLOBAL__N_116itanium_demangle" + "8NameTypeE\00)[\00N12_GLOBAL__N_116itanium_demangle18ArraySubscriptE" + "xprE\00.\00N12_GLOBAL__N_116itanium_demangle10MemberExprE\00srN\00sr\00::\00" + "N12_GLOBAL__N_116itanium_demangle19GlobalQualifiedNameE\00dn\00on\00op" + "erator&&\00operator&\00operator&=\00operator=\00operator()\00operator,\00ope" + "rator~\00operator delete[]\00operator*\00operator/\00operator/=\00operator" + "^\00operator^=\00operator==\00operator>=\00operator>\00operator[]\00operator" + "<=\00operator<<\00operator<<=\00operator<\00operator-\00operator-=\00operato" + "r*=\00operator--\00operator new[]\00operator!=\00operator!\00operator new\00" + "operator||\00operator|\00operator|=\00operator->*\00operator+\00operator+=" + "\00operator++\00operator->\00operator?\00operator%\00operator%=\00operator>>" + "\00operator>>=\00operator<=>\00operator\"\" \00N12_GLOBAL__N_116itanium_de" + "mangle15LiteralOperatorE\00operator delete\00operator \00N12_GLOBAL__N" + "_116itanium_demangle22ConversionOperatorTypeE\00N12_GLOBAL__N_116i" + "tanium_demangle8DtorNameE\00N12_GLOBAL__N_116itanium_demangle13Qua" + "lifiedNameE\00dynamic_cast\00delete\00[] \00N12_GLOBAL__N_116itanium_dem" + "angle10DeleteExprE\00cv\00)(\00N12_GLOBAL__N_116itanium_demangle14Conv" + "ersionExprE\00N12_GLOBAL__N_116itanium_demangle8CallExprE\00const_ca" + "st\00N12_GLOBAL__N_116itanium_demangle10PrefixExprE\00) \00 (\00N12_GLOB" + "AL__N_116itanium_demangle10BinaryExprE\00aa\00an\00aN\00aS\00cm\00ds\00dv\00dV\00e" + "o\00eO\00eq\00ge\00gt\00le\00ls\00lS\00lt\00mi\00mI\00ml\00mL\00ne\00oo\00or\00oR\00pl\00pL\00rm\00rM\00rs" + "\00rS\00... \00 ...\00N12_GLOBAL__N_116itanium_demangle8FoldExprE\00fp\00fL\00" + "N12_GLOBAL__N_116itanium_demangle13FunctionParamE\00N12_GLOBAL__N_" + "116itanium_demangle24ForwardTemplateReferenceE\00Ts\00struct\00Tu\00unio" + "n\00Te\00enum\00N12_GLOBAL__N_116itanium_demangle22ElaboratedTypeSpefT" + "ypeE\00StL\00St\00std::\00N12_GLOBAL__N_116itanium_demangle16StdQualifie" + "dNameE\00DC\00N12_GLOBAL__N_116itanium_demangle21StructuredBindingNa" + "meE\00Ut\00Ul\00vE\00'lambda\00'(\00N12_GLOBAL__N_116itanium_demangle15Closu" + "reTypeNameE\00'unnamed\00'\00N12_GLOBAL__N_116itanium_demangle15Unname" + "dTypeNameE\00string literal\00N12_GLOBAL__N_116itanium_demangle9Loca" + "lNameE\00std\00N12_GLOBAL__N_116itanium_demangle12CtorDtorNameE\00basi" + "c_istream\00basic_ostream\00basic_iostream\00std::basic_string, std::allocator >\00std::basic_istream" + " >\00std::basic_ostream >\00std::basic_iostream >\00N12_GLOBAL__N_116itanium_demangle27ExpandedSpecialSubstitut" + "ionE\00N12_GLOBAL__N_116itanium_demangle10NestedNameE\00::*\00N12_GLOB" + "AL__N_116itanium_demangle19PointerToMemberTypeE\00[\00N12_GLOBAL__N_" + "116itanium_demangle9ArrayTypeE\00Dv\00 vector[\00N12_GLOBAL__N_116itan" + "ium_demangle10VectorTypeE\00pixel vector[\00N12_GLOBAL__N_116itanium" + "_demangle15PixelVectorTypeE\00decltype(\00double\00unsigned long long\00" + "objcproto\00 const\00 volatile\00 restrict\00N12_GLOBAL__N_116itanium_de" + "mangle8QualTypeE\00N12_GLOBAL__N_116itanium_demangle17VendorExtQua" + "lTypeE\00N12_GLOBAL__N_116itanium_demangle13ObjCProtoNameE\00Do\00noex" + "cept\00DO\00Dw\00Dx\00RE\00OE\00 &\00 &&\00N12_GLOBAL__N_116itanium_demangle12Fu" + "nctionTypeE\00throw(\00N12_GLOBAL__N_116itanium_demangle20DynamicExc" + "eptionSpecE\00noexcept(\00N12_GLOBAL__N_116itanium_demangle12Noexcep" + "tSpecE\00N12_GLOBAL__N_116itanium_demangle11SpecialNameE\00N12_GLOBA" + "L__N_116itanium_demangle9DotSuffixE\00Ua9enable_ifI\00N12_GLOBAL__N_" + "116itanium_demangle16FunctionEncodingE\00 [enable_if:\00N12_GLOBAL__" + "N_116itanium_demangle12EnableIfAttrE\00thread-local wrapper routin" + "e for \00reference temporary for \00guard variable for \00non-virtual " + "thunk to \00virtual thunk to \00thread-local initialization routine " + "for \00construction vtable for \00-in-\00N12_GLOBAL__N_116itanium_dema" + "ngle21CtorVtableSpecialNameE\00covariant return thunk to \00typeinfo" + " name for \00typeinfo for \00VTT for \00vtable for \00St11logic_error\00St" + "12length_error\00N10__cxxabiv117__pbase_type_infoE\00N10__cxxabiv119" + "__pointer_type_infoE\00N10__cxxabiv123__fundamental_type_infoE\00v\00c" + "\00h\00N10__cxxabiv121__vmi_class_type_infoE") (func $globalCtors (type $8) call $__GLOBAL__sub_I_grpc_callout_cpp_cc - i32.const 29352 + i32.const 29368 i64.const 0 i64.store align=4 - i32.const 29360 + i32.const 29376 i64.const 0 i64.store align=4 - i32.const 29368 + i32.const 29384 i32.const 1065353216 i32.store - i32.const 29372 + i32.const 29388 i64.const 0 i64.store align=4 - i32.const 29380 + i32.const 29396 i64.const 0 i64.store align=4 - i32.const 29388 + i32.const 29404 i32.const 1065353216 i32.store call $__GLOBAL__sub_I_status_cc @@ -1043,7 +1043,7 @@ local.get $0 i32.load offset=8 local.tee $1 - i32.const 29320 + i32.const 29336 i32.eq if $if_2 i32.const 12 @@ -1143,7 +1143,7 @@ i32.const 3 i32.store offset=20 local.get $0 - i32.const 29320 + i32.const 29336 i32.store offset=8 end ;; $if local.get $5 @@ -1235,7 +1235,7 @@ local.tee $2 i32.load local.tee $0 - i32.const 29320 + i32.const 29336 i32.eq if $if_4 local.get $2 @@ -1464,7 +1464,7 @@ i32.const 3 i32.store local.get $3 - i32.const 13688 + i32.const 13694 i32.store offset=4 local.get $3 i32.const 370 @@ -1476,7 +1476,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 13737 + i32.const 13743 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -2520,7 +2520,7 @@ i32.store offset=8 local.get $8 local.get $9 - i32.const 22382 + i32.const 22390 call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc local.tee $4 i64.load align=4 @@ -2740,7 +2740,7 @@ local.get $2 i32.store offset=44 local.get $3 - i32.const 30166 + i32.const 30182 i32.store offset=16 local.get $3 i32.const 0 @@ -2840,7 +2840,7 @@ drop local.get $1 i32.load offset=8 - i32.const 29320 + i32.const 29336 local.get $1 i32.load offset=20 i32.const 3 @@ -3714,7 +3714,7 @@ (param $0 i32) (param $1 i32) i32.const 0 - i32.const 13174 + i32.const 13178 i32.const 22 local.get $0 i32.const 160 @@ -3722,14 +3722,14 @@ call $_proxy_defineMetric if $if i32.const 5 - i32.const 13197 + i32.const 13201 i32.const 86 call $_proxy_log drop call $_abort end ;; $if i32.const 0 - i32.const 13284 + i32.const 13288 i32.const 21 local.get $0 i32.const 164 @@ -3737,7 +3737,7 @@ call $_proxy_defineMetric if $if_0 i32.const 5 - i32.const 13306 + i32.const 13310 i32.const 85 call $_proxy_log drop @@ -7255,7 +7255,7 @@ i32.const 7096 i32.store offset=12 local.get $0 - i32.const 30166 + i32.const 30182 i32.store local.get $0 i32.const 0 @@ -7410,13 +7410,13 @@ global.set $36 local.get $0 global.set $36 - i32.const 28736 + i32.const 28752 i32.const 7136 i32.store - i32.const 28740 + i32.const 28756 i32.const 0 i32.store - i32.const 28748 + i32.const 28764 i32.const 0 i32.store i32.const 7112 @@ -7425,11 +7425,11 @@ i32.const 7112 call $__ZN6google8protobuf8internal11InitSCCImplEPNS1_11SCCInfoBaseE end ;; $if - i32.const 28752 + i32.const 28768 i32.const 0 i32.store i32.const 160 - i32.const 28736 + i32.const 28752 call $__ZN6google8protobuf8internal13OnShutdownRunEPFvPKvES3_ ) @@ -7549,11 +7549,11 @@ i32.const 10 i32.store8 offset=11 local.get $0 - i32.const 13775 + i32.const 13781 i64.load align=1 i64.store align=1 local.get $0 - i32.const 13783 + i32.const 13789 i32.load16_s align=1 i32.store16 offset=8 align=1 local.get $0 @@ -7635,10 +7635,10 @@ local.get $1 call $__ZN10DataSource9MergeFromERKS_ else - i32.const 17472 - i32.const 17513 + i32.const 17480 + i32.const 17521 i32.const 92 - i32.const 17562 + i32.const 17570 call $___assert_fail end ;; $if ) @@ -7799,7 +7799,7 @@ local.get $6 i32.load local.tee $2 - i32.const 29320 + i32.const 29336 i32.eq br_if $block_7 else @@ -7809,14 +7809,14 @@ i32.const 1 i32.store offset=16 local.get $0 - i32.const 29320 + i32.const 29336 i32.store offset=8 br $block_7 end ;; $if_2 br $block_6 end ;; $block_7 local.get $6 - i32.const 29320 + i32.const 29336 call $__ZN6google8protobuf8internal14ArenaStringPtr21CreateInstanceNoArenaEPKNSt3__212basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEE local.get $6 i32.load @@ -7839,9 +7839,9 @@ i32.load offset=8 local.tee $2 else - i32.const 29320 + i32.const 29336 local.set $2 - i32.const 29320 + i32.const 29336 end ;; $if_3 i32.load8_s offset=11 i32.const 0 @@ -7858,9 +7858,9 @@ i32.load offset=8 local.tee $2 else - i32.const 29320 + i32.const 29336 local.set $2 - i32.const 29320 + i32.const 29336 end ;; $if_5 i32.load8_s offset=11 local.tee $5 @@ -7875,7 +7875,7 @@ i32.and end ;; $if_6 i32.const 0 - i32.const 13643 + i32.const 13649 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ br_if $loop i32.const 0 @@ -7897,7 +7897,7 @@ local.get $6 i32.load local.tee $2 - i32.const 29320 + i32.const 29336 i32.eq br_if $block_9 else @@ -7907,14 +7907,14 @@ i32.const 2 i32.store offset=16 local.get $0 - i32.const 29320 + i32.const 29336 i32.store offset=8 br $block_9 end ;; $if_7 br $block_8 end ;; $block_9 local.get $6 - i32.const 29320 + i32.const 29336 call $__ZN6google8protobuf8internal14ArenaStringPtr21CreateInstanceNoArenaEPKNSt3__212basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEE local.get $6 i32.load @@ -7943,7 +7943,7 @@ local.get $6 i32.load local.tee $2 - i32.const 29320 + i32.const 29336 i32.eq br_if $block_11 else @@ -7953,14 +7953,14 @@ i32.const 3 i32.store offset=16 local.get $0 - i32.const 29320 + i32.const 29336 i32.store offset=8 br $block_11 end ;; $if_8 br $block_10 end ;; $block_11 local.get $6 - i32.const 29320 + i32.const 29336 call $__ZN6google8protobuf8internal14ArenaStringPtr21CreateInstanceNoArenaEPKNSt3__212basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEE local.get $6 i32.load @@ -7983,9 +7983,9 @@ i32.load offset=8 local.tee $2 else - i32.const 29320 + i32.const 29336 local.set $2 - i32.const 29320 + i32.const 29336 end ;; $if_9 i32.load8_s offset=11 i32.const 0 @@ -8002,9 +8002,9 @@ i32.load offset=8 local.tee $2 else - i32.const 29320 + i32.const 29336 local.set $2 - i32.const 29320 + i32.const 29336 end ;; $if_11 i32.load8_s offset=11 local.tee $5 @@ -8019,7 +8019,7 @@ i32.and end ;; $if_12 i32.const 0 - i32.const 13663 + i32.const 13669 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ br_if $loop i32.const 0 @@ -8129,7 +8129,7 @@ local.tee $2 i32.const -2 i32.and - i32.const 29320 + i32.const 29336 local.get $2 i32.const 1 i32.and @@ -8236,7 +8236,7 @@ local.get $2 local.get $3 i32.const 1 - i32.const 13643 + i32.const 13649 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ drop i32.const 1 @@ -8248,7 +8248,7 @@ local.get $0 i32.load offset=8 else - i32.const 29320 + i32.const 29336 end ;; $if_1 local.get $1 call $__ZN6google8protobuf8internal14WireFormatLite23WriteStringMaybeAliasedEiRKNSt3__212basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEPNS0_2io17CodedOutputStreamE @@ -8295,7 +8295,7 @@ local.get $2 local.get $3 i32.const 1 - i32.const 13663 + i32.const 13669 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ drop i32.const 3 @@ -8307,7 +8307,7 @@ local.get $0 i32.load offset=8 else - i32.const 29320 + i32.const 29336 end ;; $if_5 local.get $1 call $__ZN6google8protobuf8internal14WireFormatLite23WriteStringMaybeAliasedEiRKNSt3__212basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEPNS0_2io17CodedOutputStreamE @@ -8317,7 +8317,7 @@ local.tee $2 i32.const -2 i32.and - i32.const 29320 + i32.const 29336 local.get $2 i32.const 1 i32.and @@ -8336,7 +8336,7 @@ local.tee $0 i32.const -2 i32.and - i32.const 29320 + i32.const 29336 local.get $0 i32.const 1 i32.and @@ -8390,7 +8390,7 @@ local.get $0 i32.load offset=8 local.tee $1 - i32.const 29320 + i32.const 29336 i32.eq local.get $1 i32.eqz @@ -8435,7 +8435,7 @@ i32.const 3 i32.store local.get $2 - i32.const 13688 + i32.const 13694 i32.store offset=4 local.get $2 i32.const 376 @@ -8447,7 +8447,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 13737 + i32.const 13743 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -8486,7 +8486,7 @@ i32.const 3 i32.store local.get $3 - i32.const 13397 + i32.const 13401 i32.store offset=4 local.get $3 i32.const 832 @@ -8498,7 +8498,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 15974 + i32.const 15982 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -8579,7 +8579,7 @@ local.tee $0 i32.load local.tee $1 - i32.const 29320 + i32.const 29336 i32.ne br_if $block_0 else @@ -8589,7 +8589,7 @@ i32.const 1 i32.store offset=16 local.get $0 - i32.const 29320 + i32.const 29336 i32.store offset=8 local.get $0 i32.const 8 @@ -8612,7 +8612,7 @@ local.tee $0 i32.load local.tee $1 - i32.const 29320 + i32.const 29336 i32.ne br_if $block_0 else @@ -8622,7 +8622,7 @@ i32.const 2 i32.store offset=16 local.get $0 - i32.const 29320 + i32.const 29336 i32.store offset=8 local.get $0 i32.const 8 @@ -8645,7 +8645,7 @@ local.tee $0 i32.load local.tee $1 - i32.const 29320 + i32.const 29336 i32.ne br_if $block_0 else @@ -8655,7 +8655,7 @@ i32.const 3 i32.store offset=16 local.get $0 - i32.const 29320 + i32.const 29336 i32.store offset=8 local.get $0 i32.const 8 @@ -8759,13 +8759,13 @@ global.set $36 local.get $0 global.set $36 - i32.const 28776 + i32.const 28792 i32.const 7232 i32.store - i32.const 28780 + i32.const 28796 i32.const 0 i32.store - i32.const 28792 + i32.const 28808 i32.const 0 i32.store i32.const 7208 @@ -8774,14 +8774,14 @@ i32.const 7208 call $__ZN6google8protobuf8internal11InitSCCImplEPNS1_11SCCInfoBaseE end ;; $if - i32.const 28784 - i32.const 29320 + i32.const 28800 + i32.const 29336 i32.store - i32.const 28788 - i32.const 29320 + i32.const 28804 + i32.const 29336 i32.store i32.const 160 - i32.const 28776 + i32.const 28792 call $__ZN6google8protobuf8internal13OnShutdownRunEPFvPKvES3_ ) @@ -8795,7 +8795,7 @@ local.get $0 i32.load offset=8 local.tee $1 - i32.const 29320 + i32.const 29336 i32.eq local.get $1 i32.eqz @@ -8817,7 +8817,7 @@ local.get $0 i32.load offset=12 local.tee $1 - i32.const 29320 + i32.const 29336 i32.eq local.get $1 i32.eqz @@ -8897,11 +8897,11 @@ i32.const 3 i32.store8 offset=11 local.get $0 - i32.const 13812 + i32.const 13818 i32.load16_s align=1 i32.store16 align=1 local.get $0 - i32.const 13814 + i32.const 13820 i32.load8_s i32.store8 offset=2 local.get $0 @@ -8930,7 +8930,7 @@ local.get $0 i32.load offset=8 local.tee $1 - i32.const 29320 + i32.const 29336 i32.ne if $if local.get $1 @@ -8957,7 +8957,7 @@ local.get $0 i32.load offset=12 local.tee $1 - i32.const 29320 + i32.const 29336 i32.ne if $if_1 local.get $1 @@ -9029,10 +9029,10 @@ local.get $1 call $__ZN3Any9MergeFromERKS_ else - i32.const 17472 - i32.const 17513 + i32.const 17480 + i32.const 17521 i32.const 92 - i32.const 17562 + i32.const 17570 call $___assert_fail end ;; $if ) @@ -9190,11 +9190,11 @@ local.get $8 i32.load local.tee $2 - i32.const 29320 + i32.const 29336 i32.eq if $if_2 (result i32) local.get $8 - i32.const 29320 + i32.const 29336 call $__ZN6google8protobuf8internal14ArenaStringPtr21CreateInstanceNoArenaEPKNSt3__212basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEE local.get $8 i32.load @@ -9217,11 +9217,11 @@ local.get $7 i32.load local.tee $2 - i32.const 29320 + i32.const 29336 i32.eq if $if_3 (result i32) local.get $7 - i32.const 29320 + i32.const 29336 call $__ZN6google8protobuf8internal14ArenaStringPtr21CreateInstanceNoArenaEPKNSt3__212basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEE local.get $7 i32.load @@ -9256,7 +9256,7 @@ local.get $2 local.get $5 i32.const 0 - i32.const 13799 + i32.const 13805 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ i32.eqz br_if $block @@ -9367,7 +9367,7 @@ local.tee $1 i32.const -2 i32.and - i32.const 29320 + i32.const 29336 local.get $1 i32.const 1 i32.and @@ -9525,7 +9525,7 @@ local.get $2 local.get $3 i32.const 1 - i32.const 13799 + i32.const 13805 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ drop i32.const 1 @@ -9559,7 +9559,7 @@ local.tee $2 i32.const -2 i32.and - i32.const 29320 + i32.const 29336 local.get $2 i32.const 1 i32.and @@ -9578,7 +9578,7 @@ local.tee $0 i32.const -2 i32.and - i32.const 29320 + i32.const 29336 local.get $0 i32.const 1 i32.and @@ -9632,7 +9632,7 @@ i32.const 3 i32.store local.get $3 - i32.const 13397 + i32.const 13401 i32.store offset=4 local.get $3 i32.const 1072 @@ -9644,7 +9644,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 15974 + i32.const 15982 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -9723,7 +9723,7 @@ i32.ne if $if_4 local.get $4 - i32.const 29320 + i32.const 29336 i32.eq if $if_5 local.get $5 @@ -9771,7 +9771,7 @@ return end ;; $if_8 local.get $0 - i32.const 29320 + i32.const 29336 i32.eq if $if_9 local.get $2 @@ -9832,10 +9832,10 @@ call $__ZN6google8protobuf8internal11InitSCCImplEPNS1_11SCCInfoBaseE end ;; $if_2 local.get $0 - i32.const 29320 + i32.const 29336 i32.store offset=8 local.get $0 - i32.const 29320 + i32.const 29336 i32.store offset=12 local.get $0 ) @@ -9850,13 +9850,13 @@ global.set $36 local.get $0 global.set $36 - i32.const 28800 + i32.const 28816 i32.const 7328 i32.store - i32.const 28804 + i32.const 28820 i32.const 0 i32.store - i32.const 28812 + i32.const 28828 i32.const 0 i32.store i32.const 7304 @@ -9865,11 +9865,11 @@ i32.const 7304 call $__ZN6google8protobuf8internal11InitSCCImplEPNS1_11SCCInfoBaseE end ;; $if - i32.const 28808 - i32.const 29320 + i32.const 28824 + i32.const 29336 i32.store i32.const 160 - i32.const 28800 + i32.const 28816 call $__ZN6google8protobuf8internal13OnShutdownRunEPFvPKvES3_ ) @@ -9883,7 +9883,7 @@ local.get $0 i32.load offset=8 local.tee $1 - i32.const 29320 + i32.const 29336 i32.eq local.get $1 i32.eqz @@ -9955,7 +9955,7 @@ local.get $0 i32.load offset=8 local.tee $1 - i32.const 29320 + i32.const 29336 i32.eq local.get $1 i32.eqz @@ -10035,19 +10035,19 @@ i32.const 21 i32.store offset=4 local.get $1 - i32.const 13856 + i32.const 13862 i64.load align=1 i64.store align=1 local.get $1 - i32.const 13864 + i32.const 13870 i64.load align=1 i64.store offset=8 align=1 local.get $1 - i32.const 13872 + i32.const 13878 i32.load align=1 i32.store offset=16 align=1 local.get $1 - i32.const 13876 + i32.const 13882 i32.load8_s i32.store8 offset=20 local.get $1 @@ -10076,7 +10076,7 @@ local.get $0 i32.load offset=8 local.tee $1 - i32.const 29320 + i32.const 29336 i32.ne if $if local.get $1 @@ -10148,10 +10148,10 @@ local.get $1 call $__ZN21GrpcService_EnvoyGrpc9MergeFromERKS_ else - i32.const 17472 - i32.const 17513 + i32.const 17480 + i32.const 17521 i32.const 92 - i32.const 17562 + i32.const 17570 call $___assert_fail end ;; $if ) @@ -10292,11 +10292,11 @@ local.get $7 i32.load local.tee $2 - i32.const 29320 + i32.const 29336 i32.eq if $if_2 (result i32) local.get $7 - i32.const 29320 + i32.const 29336 call $__ZN6google8protobuf8internal14ArenaStringPtr21CreateInstanceNoArenaEPKNSt3__212basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEE local.get $7 i32.load @@ -10331,7 +10331,7 @@ local.get $2 local.get $5 i32.const 0 - i32.const 13821 + i32.const 13827 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ i32.eqz br_if $block @@ -10442,7 +10442,7 @@ local.tee $1 i32.const -2 i32.and - i32.const 29320 + i32.const 29336 local.get $1 i32.const 1 i32.and @@ -10556,7 +10556,7 @@ local.get $2 local.get $3 i32.const 1 - i32.const 13821 + i32.const 13827 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ drop i32.const 1 @@ -10570,7 +10570,7 @@ local.tee $2 i32.const -2 i32.and - i32.const 29320 + i32.const 29336 local.get $2 i32.const 1 i32.and @@ -10589,7 +10589,7 @@ local.tee $0 i32.const -2 i32.and - i32.const 29320 + i32.const 29336 local.get $0 i32.const 1 i32.and @@ -10636,7 +10636,7 @@ i32.const 3 i32.store local.get $3 - i32.const 13397 + i32.const 13401 i32.store offset=4 local.get $3 i32.const 1272 @@ -10648,7 +10648,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 15974 + i32.const 15982 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -10736,7 +10736,7 @@ return end ;; $if_4 local.get $0 - i32.const 29320 + i32.const 29336 i32.eq if $if_5 local.get $2 @@ -10797,7 +10797,7 @@ call $__ZN6google8protobuf8internal11InitSCCImplEPNS1_11SCCInfoBaseE end ;; $if_2 local.get $0 - i32.const 29320 + i32.const 29336 i32.store offset=8 local.get $0 ) @@ -10812,13 +10812,13 @@ global.set $36 local.get $0 global.set $36 - i32.const 28816 + i32.const 28832 i32.const 7424 i32.store - i32.const 28820 + i32.const 28836 i32.const 0 i32.store - i32.const 28836 + i32.const 28852 i32.const 0 i32.store i32.const 7400 @@ -10827,23 +10827,23 @@ i32.const 7400 call $__ZN6google8protobuf8internal11InitSCCImplEPNS1_11SCCInfoBaseE end ;; $if - i32.const 28824 + i32.const 28840 i64.const 0 i64.store - i32.const 28832 + i32.const 28848 i32.const 0 i32.store i32.const 160 - i32.const 28816 + i32.const 28832 call $__ZN6google8protobuf8internal13OnShutdownRunEPFvPKvES3_ - i32.const 28824 - i32.const 28736 + i32.const 28840 + i32.const 28752 i32.store - i32.const 28828 - i32.const 28736 + i32.const 28844 + i32.const 28752 i32.store - i32.const 28832 - i32.const 28736 + i32.const 28848 + i32.const 28752 i32.store ) @@ -10855,7 +10855,7 @@ i32.const 7424 i32.store local.get $0 - i32.const 28816 + i32.const 28832 i32.ne if $if local.get $0 @@ -10952,7 +10952,7 @@ i32.const 7424 i32.store local.get $0 - i32.const 28816 + i32.const 28832 i32.ne if $if local.get $0 @@ -11059,27 +11059,27 @@ i32.const 37 i32.store offset=4 local.get $1 - i32.const 13902 + i32.const 13908 i64.load align=1 i64.store align=1 local.get $1 - i32.const 13910 + i32.const 13916 i64.load align=1 i64.store offset=8 align=1 local.get $1 - i32.const 13918 + i32.const 13924 i64.load align=1 i64.store offset=16 align=1 local.get $1 - i32.const 13926 + i32.const 13932 i64.load align=1 i64.store offset=24 align=1 local.get $1 - i32.const 13934 + i32.const 13940 i32.load align=1 i32.store offset=32 align=1 local.get $1 - i32.const 13938 + i32.const 13944 i32.load8_s i32.store8 offset=36 local.get $1 @@ -11211,10 +11211,10 @@ local.get $1 call $__ZN37GrpcService_GoogleGrpc_SslCredentials9MergeFromERKS_ else - i32.const 17472 - i32.const 17513 + i32.const 17480 + i32.const 17521 i32.const 92 - i32.const 17562 + i32.const 17570 call $___assert_fail end ;; $if ) @@ -11697,7 +11697,7 @@ local.tee $1 i32.const -2 i32.and - i32.const 29320 + i32.const 29336 local.get $1 i32.const 1 i32.and @@ -11717,7 +11717,7 @@ end ;; $if local.set $1 local.get $0 - i32.const 28816 + i32.const 28832 i32.eq if $if_0 local.get $0 @@ -11821,7 +11821,7 @@ (local $2 i32) (local $3 i32) local.get $0 - i32.const 28816 + i32.const 28832 i32.ne if $if local.get $0 @@ -11857,7 +11857,7 @@ local.tee $2 i32.const -2 i32.and - i32.const 29320 + i32.const 29336 local.get $2 i32.const 1 i32.and @@ -11876,7 +11876,7 @@ local.tee $0 i32.const -2 i32.and - i32.const 29320 + i32.const 29336 local.get $0 i32.const 1 i32.and @@ -11930,7 +11930,7 @@ i32.const 3 i32.store local.get $4 - i32.const 13397 + i32.const 13401 i32.store offset=4 local.get $4 i32.const 1542 @@ -11942,7 +11942,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 15974 + i32.const 15982 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -11996,7 +11996,7 @@ drop end ;; $if_0 local.get $1 - i32.const 28816 + i32.const 28832 i32.eq if $if_2 local.get $4 @@ -12023,7 +12023,7 @@ end ;; $if_4 local.get $3 local.get $2 - i32.const 28736 + i32.const 28752 local.get $2 select call $__ZN10DataSource9MergeFromERKS_ @@ -12048,7 +12048,7 @@ end ;; $if_6 local.get $3 local.get $2 - i32.const 28736 + i32.const 28752 local.get $2 select call $__ZN10DataSource9MergeFromERKS_ @@ -12080,7 +12080,7 @@ end ;; $if_8 local.get $0 local.get $2 - i32.const 28736 + i32.const 28752 local.get $2 select call $__ZN10DataSource9MergeFromERKS_ @@ -12172,13 +12172,13 @@ global.set $36 local.get $0 global.set $36 - i32.const 28840 + i32.const 28856 i32.const 7520 i32.store - i32.const 28844 + i32.const 28860 i32.const 0 i32.store - i32.const 28848 + i32.const 28864 i32.const 0 i32.store i32.const 7496 @@ -12188,7 +12188,7 @@ call $__ZN6google8protobuf8internal11InitSCCImplEPNS1_11SCCInfoBaseE end ;; $if i32.const 160 - i32.const 28840 + i32.const 28856 call $__ZN6google8protobuf8internal13OnShutdownRunEPFvPKvES3_ ) @@ -12310,31 +12310,31 @@ i32.const 45 i32.store offset=4 local.get $1 - i32.const 13980 + i32.const 13986 i64.load align=1 i64.store align=1 local.get $1 - i32.const 13988 + i32.const 13994 i64.load align=1 i64.store offset=8 align=1 local.get $1 - i32.const 13996 + i32.const 14002 i64.load align=1 i64.store offset=16 align=1 local.get $1 - i32.const 14004 + i32.const 14010 i64.load align=1 i64.store offset=24 align=1 local.get $1 - i32.const 14012 + i32.const 14018 i64.load align=1 i64.store offset=32 align=1 local.get $1 - i32.const 14020 + i32.const 14026 i32.load align=1 i32.store offset=40 align=1 local.get $1 - i32.const 14024 + i32.const 14030 i32.load8_s i32.store8 offset=44 local.get $1 @@ -12408,10 +12408,10 @@ local.get $1 call $__ZN45GrpcService_GoogleGrpc_GoogleLocalCredentials9MergeFromERKS_ else - i32.const 17472 - i32.const 17513 + i32.const 17480 + i32.const 17521 i32.const 92 - i32.const 17562 + i32.const 17570 call $___assert_fail end ;; $if ) @@ -12635,7 +12635,7 @@ local.tee $1 i32.const -2 i32.and - i32.const 29320 + i32.const 29336 local.get $1 i32.const 1 i32.and @@ -12672,7 +12672,7 @@ local.tee $2 i32.const -2 i32.and - i32.const 29320 + i32.const 29336 local.get $2 i32.const 1 i32.and @@ -12691,7 +12691,7 @@ local.tee $0 i32.const -2 i32.and - i32.const 29320 + i32.const 29336 local.get $0 i32.const 1 i32.and @@ -12743,7 +12743,7 @@ i32.const 3 i32.store local.get $2 - i32.const 13397 + i32.const 13401 i32.store offset=4 local.get $2 i32.const 1696 @@ -12755,7 +12755,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 15974 + i32.const 15982 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -12893,13 +12893,13 @@ global.set $36 local.get $0 global.set $36 - i32.const 28856 + i32.const 28872 i32.const 7616 i32.store - i32.const 28860 + i32.const 28876 i32.const 0 i32.store - i32.const 28864 + i32.const 28880 i32.const 0 i32.store i32.const 7592 @@ -12909,7 +12909,7 @@ call $__ZN6google8protobuf8internal11InitSCCImplEPNS1_11SCCInfoBaseE end ;; $if i32.const 160 - i32.const 28856 + i32.const 28872 call $__ZN6google8protobuf8internal13OnShutdownRunEPFvPKvES3_ ) @@ -13031,19 +13031,19 @@ i32.const 28 i32.store offset=4 local.get $1 - i32.const 14074 + i32.const 14080 i64.load align=1 i64.store align=1 local.get $1 - i32.const 14082 + i32.const 14088 i64.load align=1 i64.store offset=8 align=1 local.get $1 - i32.const 14090 + i32.const 14096 i64.load align=1 i64.store offset=16 align=1 local.get $1 - i32.const 14098 + i32.const 14104 i32.load align=1 i32.store offset=24 align=1 local.get $1 @@ -13078,10 +13078,10 @@ local.get $1 call $__ZN28GrpcService_GoogleGrpc_Empty9MergeFromERKS_ else - i32.const 17472 - i32.const 17513 + i32.const 17480 + i32.const 17521 i32.const 92 - i32.const 17562 + i32.const 17570 call $___assert_fail end ;; $if ) @@ -13105,7 +13105,7 @@ i32.const 3 i32.store local.get $2 - i32.const 13397 + i32.const 13401 i32.store offset=4 local.get $2 i32.const 1838 @@ -13117,7 +13117,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 15974 + i32.const 15982 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -13255,13 +13255,13 @@ global.set $36 local.get $0 global.set $36 - i32.const 28872 + i32.const 28888 i32.const 7720 i32.store - i32.const 28876 + i32.const 28892 i32.const 0 i32.store - i32.const 28884 + i32.const 28900 i32.const 0 i32.store i32.const 7688 @@ -13270,11 +13270,11 @@ i32.const 7688 call $__ZN6google8protobuf8internal11InitSCCImplEPNS1_11SCCInfoBaseE end ;; $if - i32.const 28888 + i32.const 28904 i32.const 0 i32.store i32.const 160 - i32.const 28872 + i32.const 28888 call $__ZN6google8protobuf8internal13OnShutdownRunEPFvPKvES3_ ) @@ -13419,27 +13419,27 @@ i32.const 41 i32.store offset=4 local.get $1 - i32.const 14134 + i32.const 14140 i64.load align=1 i64.store align=1 local.get $1 - i32.const 14142 + i32.const 14148 i64.load align=1 i64.store offset=8 align=1 local.get $1 - i32.const 14150 + i32.const 14156 i64.load align=1 i64.store offset=16 align=1 local.get $1 - i32.const 14158 + i32.const 14164 i64.load align=1 i64.store offset=24 align=1 local.get $1 - i32.const 14166 + i32.const 14172 i64.load align=1 i64.store offset=32 align=1 local.get $1 - i32.const 14174 + i32.const 14180 i32.load8_s i32.store8 offset=40 local.get $1 @@ -13582,10 +13582,10 @@ local.get $1 call $__ZN41GrpcService_GoogleGrpc_ChannelCredentials9MergeFromERKS_ else - i32.const 17472 - i32.const 17513 + i32.const 17480 + i32.const 17521 i32.const 92 - i32.const 17562 + i32.const 17570 call $___assert_fail end ;; $if ) @@ -14211,7 +14211,7 @@ local.tee $2 i32.const -2 i32.and - i32.const 29320 + i32.const 29336 local.get $2 i32.const 1 i32.and @@ -14281,7 +14281,7 @@ local.tee $1 i32.const -2 i32.and - i32.const 29320 + i32.const 29336 local.get $1 i32.const 1 i32.and @@ -14375,7 +14375,7 @@ local.tee $2 i32.const -2 i32.and - i32.const 29320 + i32.const 29336 local.get $2 i32.const 1 i32.and @@ -14394,7 +14394,7 @@ local.tee $0 i32.const -2 i32.and - i32.const 29320 + i32.const 29336 local.get $0 i32.const 1 i32.and @@ -14441,7 +14441,7 @@ i32.const 3 i32.store local.get $3 - i32.const 13397 + i32.const 13401 i32.store offset=4 local.get $3 i32.const 2156 @@ -14453,7 +14453,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 15974 + i32.const 15982 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -14583,7 +14583,7 @@ if $if_3 (result i32) br $block_4 else - i32.const 28816 + i32.const 28832 end ;; $if_3 br $block_3 end ;; $block_4 @@ -14663,7 +14663,7 @@ if $if_5 (result i32) br $block_10 else - i32.const 28856 + i32.const 28872 end ;; $if_5 br $block_9 end ;; $block_10 @@ -14743,7 +14743,7 @@ if $if_7 (result i32) br $block_16 else - i32.const 28840 + i32.const 28856 end ;; $if_7 br $block_15 end ;; $block_16 @@ -14823,13 +14823,13 @@ global.set $36 local.get $0 global.set $36 - i32.const 28912 + i32.const 28928 i32.const 7816 i32.store - i32.const 28916 + i32.const 28932 i32.const 0 i32.store - i32.const 28936 + i32.const 28952 i32.const 0 i32.store i32.const 7792 @@ -14838,14 +14838,14 @@ i32.const 7792 call $__ZN6google8protobuf8internal11InitSCCImplEPNS1_11SCCInfoBaseE end ;; $if - i32.const 28920 - i32.const 29320 + i32.const 28936 + i32.const 29336 i32.store - i32.const 28928 + i32.const 28944 i64.const 0 i64.store i32.const 160 - i32.const 28912 + i32.const 28928 call $__ZN6google8protobuf8internal13OnShutdownRunEPFvPKvES3_ ) @@ -14859,7 +14859,7 @@ local.get $0 i32.load offset=8 local.tee $1 - i32.const 29320 + i32.const 29336 i32.eq local.get $1 i32.eqz @@ -14931,7 +14931,7 @@ local.get $0 i32.load offset=8 local.tee $1 - i32.const 29320 + i32.const 29336 i32.eq local.get $1 i32.eqz @@ -15011,45 +15011,45 @@ i32.const 73 i32.store offset=4 local.get $1 - i32.const 14303 + i32.const 14309 i64.load align=1 i64.store align=1 local.get $1 - i32.const 14311 + i32.const 14317 i64.load align=1 i64.store offset=8 align=1 local.get $1 - i32.const 14319 + i32.const 14325 i64.load align=1 i64.store offset=16 align=1 local.get $1 - i32.const 14327 + i32.const 14333 i64.load align=1 i64.store offset=24 align=1 local.get $1 - i32.const 14335 + i32.const 14341 i64.load align=1 i64.store offset=32 align=1 local.get $1 - i32.const 14343 + i32.const 14349 i64.load align=1 i64.store offset=40 align=1 local.get $1 - i32.const 14351 + i32.const 14357 i64.load align=1 i64.store offset=48 align=1 local.get $1 - i32.const 14359 + i32.const 14365 i64.load align=1 i64.store offset=56 align=1 local.get $1 i32.const -64 i32.sub - i32.const 14367 + i32.const 14373 i64.load align=1 i64.store align=1 local.get $1 - i32.const 14375 + i32.const 14381 i32.load8_s i32.store8 offset=72 local.get $1 @@ -15078,7 +15078,7 @@ local.get $0 i32.load offset=8 local.tee $1 - i32.const 29320 + i32.const 29336 i32.ne if $if local.get $1 @@ -15153,10 +15153,10 @@ local.get $1 call $__ZN73GrpcService_GoogleGrpc_CallCredentials_ServiceAccountJWTAccessCredentials9MergeFromERKS_ else - i32.const 17472 - i32.const 17513 + i32.const 17480 + i32.const 17521 i32.const 92 - i32.const 17562 + i32.const 17570 call $___assert_fail end ;; $if ) @@ -15360,11 +15360,11 @@ local.get $6 i32.load local.tee $2 - i32.const 29320 + i32.const 29336 i32.eq if $if_4 (result i32) local.get $6 - i32.const 29320 + i32.const 29336 call $__ZN6google8protobuf8internal14ArenaStringPtr21CreateInstanceNoArenaEPKNSt3__212basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEE local.get $6 i32.load @@ -15399,7 +15399,7 @@ local.get $2 local.get $5 i32.const 0 - i32.const 14220 + i32.const 14226 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ i32.eqz br_if $block @@ -15511,7 +15511,7 @@ local.tee $1 i32.const -2 i32.and - i32.const 29320 + i32.const 29336 local.get $1 i32.const 1 i32.and @@ -15650,7 +15650,7 @@ local.get $2 local.get $3 i32.const 1 - i32.const 14220 + i32.const 14226 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ drop i32.const 1 @@ -15674,7 +15674,7 @@ local.tee $2 i32.const -2 i32.and - i32.const 29320 + i32.const 29336 local.get $2 i32.const 1 i32.and @@ -15693,7 +15693,7 @@ local.tee $0 i32.const -2 i32.and - i32.const 29320 + i32.const 29336 local.get $0 i32.const 1 i32.and @@ -15748,7 +15748,7 @@ i32.const 3 i32.store local.get $3 - i32.const 13397 + i32.const 13401 i32.store offset=4 local.get $3 i32.const 2393 @@ -15760,7 +15760,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 15974 + i32.const 15982 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -15839,7 +15839,7 @@ i32.ne if $if_4 local.get $4 - i32.const 29320 + i32.const 29336 i32.eq if $if_5 local.get $5 @@ -15915,7 +15915,7 @@ call $__ZN6google8protobuf8internal11InitSCCImplEPNS1_11SCCInfoBaseE end ;; $if_2 local.get $0 - i32.const 29320 + i32.const 29336 i32.store offset=8 local.get $0 i64.const 0 @@ -15933,13 +15933,13 @@ global.set $36 local.get $0 global.set $36 - i32.const 28944 + i32.const 28960 i32.const 7912 i32.store - i32.const 28948 + i32.const 28964 i32.const 0 i32.store - i32.const 28960 + i32.const 28976 i32.const 0 i32.store i32.const 7888 @@ -15948,14 +15948,14 @@ i32.const 7888 call $__ZN6google8protobuf8internal11InitSCCImplEPNS1_11SCCInfoBaseE end ;; $if - i32.const 28952 - i32.const 29320 + i32.const 28968 + i32.const 29336 i32.store - i32.const 28956 - i32.const 29320 + i32.const 28972 + i32.const 29336 i32.store i32.const 160 - i32.const 28944 + i32.const 28960 call $__ZN6google8protobuf8internal13OnShutdownRunEPFvPKvES3_ ) @@ -15969,7 +15969,7 @@ local.get $0 i32.load offset=8 local.tee $1 - i32.const 29320 + i32.const 29336 i32.eq local.get $1 i32.eqz @@ -15991,7 +15991,7 @@ local.get $0 i32.load offset=12 local.tee $1 - i32.const 29320 + i32.const 29336 i32.eq local.get $1 i32.eqz @@ -16082,39 +16082,39 @@ i32.const 59 i32.store offset=4 local.get $1 - i32.const 14612 + i32.const 14618 i64.load align=1 i64.store align=1 local.get $1 - i32.const 14620 + i32.const 14626 i64.load align=1 i64.store offset=8 align=1 local.get $1 - i32.const 14628 + i32.const 14634 i64.load align=1 i64.store offset=16 align=1 local.get $1 - i32.const 14636 + i32.const 14642 i64.load align=1 i64.store offset=24 align=1 local.get $1 - i32.const 14644 + i32.const 14650 i64.load align=1 i64.store offset=32 align=1 local.get $1 - i32.const 14652 + i32.const 14658 i64.load align=1 i64.store offset=40 align=1 local.get $1 - i32.const 14660 + i32.const 14666 i64.load align=1 i64.store offset=48 align=1 local.get $1 - i32.const 14668 + i32.const 14674 i32.load16_s align=1 i32.store16 offset=56 align=1 local.get $1 - i32.const 14670 + i32.const 14676 i32.load8_s i32.store8 offset=58 local.get $1 @@ -16149,10 +16149,10 @@ local.get $1 call $__ZN59GrpcService_GoogleGrpc_CallCredentials_GoogleIAMCredentials9MergeFromERKS_ else - i32.const 17472 - i32.const 17513 + i32.const 17480 + i32.const 17521 i32.const 92 - i32.const 17562 + i32.const 17570 call $___assert_fail end ;; $if ) @@ -16312,11 +16312,11 @@ local.get $8 i32.load local.tee $2 - i32.const 29320 + i32.const 29336 i32.eq if $if_2 (result i32) local.get $8 - i32.const 29320 + i32.const 29336 call $__ZN6google8protobuf8internal14ArenaStringPtr21CreateInstanceNoArenaEPKNSt3__212basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEE local.get $8 i32.load @@ -16351,7 +16351,7 @@ local.get $2 local.get $4 i32.const 0 - i32.const 14453 + i32.const 14459 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ br_if $loop i32.const 0 @@ -16368,11 +16368,11 @@ local.get $9 i32.load local.tee $2 - i32.const 29320 + i32.const 29336 i32.eq if $if_4 (result i32) local.get $9 - i32.const 29320 + i32.const 29336 call $__ZN6google8protobuf8internal14ArenaStringPtr21CreateInstanceNoArenaEPKNSt3__212basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEE local.get $9 i32.load @@ -16407,7 +16407,7 @@ local.get $2 local.get $4 i32.const 0 - i32.const 14533 + i32.const 14539 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ br_if $loop i32.const 0 @@ -16546,7 +16546,7 @@ local.get $2 local.get $3 i32.const 1 - i32.const 14453 + i32.const 14459 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ drop i32.const 1 @@ -16589,7 +16589,7 @@ local.get $2 local.get $3 i32.const 1 - i32.const 14533 + i32.const 14539 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ drop i32.const 2 @@ -16603,7 +16603,7 @@ local.tee $2 i32.const -2 i32.and - i32.const 29320 + i32.const 29336 local.get $2 i32.const 1 i32.and @@ -16622,7 +16622,7 @@ local.tee $0 i32.const -2 i32.and - i32.const 29320 + i32.const 29336 local.get $0 i32.const 1 i32.and @@ -16669,7 +16669,7 @@ i32.const 3 i32.store local.get $3 - i32.const 13397 + i32.const 13401 i32.store offset=4 local.get $3 i32.const 2632 @@ -16681,7 +16681,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 15974 + i32.const 15982 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -16760,7 +16760,7 @@ i32.ne if $if_4 local.get $4 - i32.const 29320 + i32.const 29336 i32.eq if $if_5 local.get $5 @@ -16808,7 +16808,7 @@ return end ;; $if_8 local.get $0 - i32.const 29320 + i32.const 29336 i32.eq if $if_9 local.get $2 @@ -16869,10 +16869,10 @@ call $__ZN6google8protobuf8internal11InitSCCImplEPNS1_11SCCInfoBaseE end ;; $if_2 local.get $0 - i32.const 29320 + i32.const 29336 i32.store offset=8 local.get $0 - i32.const 29320 + i32.const 29336 i32.store offset=12 local.get $0 ) @@ -16887,13 +16887,13 @@ global.set $36 local.get $0 global.set $36 - i32.const 28968 + i32.const 28984 i32.const 8012 i32.store - i32.const 28972 + i32.const 28988 i32.const 0 i32.store - i32.const 28984 + i32.const 29000 i32.const 0 i32.store i32.const 7984 @@ -16902,14 +16902,14 @@ i32.const 7984 call $__ZN6google8protobuf8internal11InitSCCImplEPNS1_11SCCInfoBaseE end ;; $if - i32.const 28976 - i32.const 29320 + i32.const 28992 + i32.const 29336 i32.store - i32.const 28988 + i32.const 29004 i32.const 0 i32.store i32.const 160 - i32.const 28968 + i32.const 28984 call $__ZN6google8protobuf8internal13OnShutdownRunEPFvPKvES3_ ) @@ -16923,7 +16923,7 @@ local.get $0 i32.load offset=8 local.tee $1 - i32.const 29320 + i32.const 29336 i32.eq local.get $1 i32.eqz @@ -17059,41 +17059,41 @@ i32.const 68 i32.store offset=4 local.get $1 - i32.const 14808 + i32.const 14814 i64.load align=1 i64.store align=1 local.get $1 - i32.const 14816 + i32.const 14822 i64.load align=1 i64.store offset=8 align=1 local.get $1 - i32.const 14824 + i32.const 14830 i64.load align=1 i64.store offset=16 align=1 local.get $1 - i32.const 14832 + i32.const 14838 i64.load align=1 i64.store offset=24 align=1 local.get $1 - i32.const 14840 + i32.const 14846 i64.load align=1 i64.store offset=32 align=1 local.get $1 - i32.const 14848 + i32.const 14854 i64.load align=1 i64.store offset=40 align=1 local.get $1 - i32.const 14856 + i32.const 14862 i64.load align=1 i64.store offset=48 align=1 local.get $1 - i32.const 14864 + i32.const 14870 i64.load align=1 i64.store offset=56 align=1 local.get $1 i32.const -64 i32.sub - i32.const 14872 + i32.const 14878 i32.load align=1 i32.store align=1 local.get $1 @@ -17123,7 +17123,7 @@ local.get $0 i32.load offset=8 local.tee $1 - i32.const 29320 + i32.const 29336 i32.ne if $if local.get $1 @@ -17244,10 +17244,10 @@ local.get $1 call $__ZN68GrpcService_GoogleGrpc_CallCredentials_MetadataCredentialsFromPlugin9MergeFromERKS_ else - i32.const 17472 - i32.const 17513 + i32.const 17480 + i32.const 17521 i32.const 92 - i32.const 17562 + i32.const 17570 call $___assert_fail end ;; $if ) @@ -17410,11 +17410,11 @@ local.get $8 i32.load local.tee $3 - i32.const 29320 + i32.const 29336 i32.eq if $if_2 (result i32) local.get $8 - i32.const 29320 + i32.const 29336 call $__ZN6google8protobuf8internal14ArenaStringPtr21CreateInstanceNoArenaEPKNSt3__212basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEE local.get $8 i32.load @@ -17449,7 +17449,7 @@ local.get $2 local.get $3 i32.const 0 - i32.const 14734 + i32.const 14740 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ br_if $loop i32.const 0 @@ -17777,7 +17777,7 @@ local.tee $1 i32.const -2 i32.and - i32.const 29320 + i32.const 29336 local.get $1 i32.const 1 i32.and @@ -17885,7 +17885,7 @@ local.tee $1 i32.const -2 i32.and - i32.const 29320 + i32.const 29336 local.get $1 i32.const 1 i32.and @@ -18065,7 +18065,7 @@ local.get $2 local.get $3 i32.const 1 - i32.const 14734 + i32.const 14740 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ drop i32.const 1 @@ -18104,7 +18104,7 @@ local.tee $2 i32.const -2 i32.and - i32.const 29320 + i32.const 29336 local.get $2 i32.const 1 i32.and @@ -18123,7 +18123,7 @@ local.tee $0 i32.const -2 i32.and - i32.const 29320 + i32.const 29336 local.get $0 i32.const 1 i32.and @@ -18170,7 +18170,7 @@ i32.const 3 i32.store local.get $3 - i32.const 13397 + i32.const 13401 i32.store offset=4 local.get $3 i32.const 2962 @@ -18182,7 +18182,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 15974 + i32.const 15982 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -18261,7 +18261,7 @@ i32.ne if $if_4 local.get $4 - i32.const 29320 + i32.const 29336 i32.eq if $if_5 local.get $5 @@ -18333,7 +18333,7 @@ if $if_7 (result i32) br $block_3 else - i32.const 29192 + i32.const 29208 end ;; $if_7 br $block_2 end ;; $block_3 @@ -18396,7 +18396,7 @@ if $if_9 (result i32) br $block_8 else - i32.const 28776 + i32.const 28792 end ;; $if_9 br $block_7 end ;; $block_8 @@ -18461,7 +18461,7 @@ call $__ZN6google8protobuf8internal11InitSCCImplEPNS1_11SCCInfoBaseE end ;; $if_2 local.get $0 - i32.const 29320 + i32.const 29336 i32.store offset=8 local.get $0 i32.const 0 @@ -18479,13 +18479,13 @@ global.set $36 local.get $0 global.set $36 - i32.const 29000 + i32.const 29016 i32.const 8120 i32.store - i32.const 29004 + i32.const 29020 i32.const 0 i32.store - i32.const 29012 + i32.const 29028 i32.const 0 i32.store i32.const 8084 @@ -18494,11 +18494,11 @@ i32.const 8084 call $__ZN6google8protobuf8internal11InitSCCImplEPNS1_11SCCInfoBaseE end ;; $if - i32.const 29016 + i32.const 29032 i32.const 0 i32.store i32.const 160 - i32.const 29000 + i32.const 29016 call $__ZN6google8protobuf8internal13OnShutdownRunEPFvPKvES3_ ) @@ -18632,27 +18632,27 @@ i32.const 38 i32.store offset=4 local.get $1 - i32.const 15060 + i32.const 15066 i64.load align=1 i64.store align=1 local.get $1 - i32.const 15068 + i32.const 15074 i64.load align=1 i64.store offset=8 align=1 local.get $1 - i32.const 15076 + i32.const 15082 i64.load align=1 i64.store offset=16 align=1 local.get $1 - i32.const 15084 + i32.const 15090 i64.load align=1 i64.store offset=24 align=1 local.get $1 - i32.const 15092 + i32.const 15098 i32.load align=1 i32.store offset=32 align=1 local.get $1 - i32.const 15096 + i32.const 15102 i32.load16_s align=1 i32.store16 offset=36 align=1 local.get $1 @@ -18728,10 +18728,10 @@ local.get $1 call $__ZN38GrpcService_GoogleGrpc_CallCredentials9MergeFromERKS_ else - i32.const 17472 - i32.const 17513 + i32.const 17480 + i32.const 17521 i32.const 92 - i32.const 17562 + i32.const 17570 call $___assert_fail end ;; $if ) @@ -18904,7 +18904,7 @@ local.get $7 i32.load local.tee $2 - i32.const 29320 + i32.const 29336 i32.eq br_if $block_15 else @@ -18914,14 +18914,14 @@ i32.const 1 i32.store offset=16 local.get $0 - i32.const 29320 + i32.const 29336 i32.store offset=8 br $block_15 end ;; $if_2 br $block_14 end ;; $block_15 local.get $7 - i32.const 29320 + i32.const 29336 call $__ZN6google8protobuf8internal14ArenaStringPtr21CreateInstanceNoArenaEPKNSt3__212basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEE local.get $7 i32.load @@ -18944,9 +18944,9 @@ i32.load offset=8 local.tee $2 else - i32.const 29320 + i32.const 29336 local.set $2 - i32.const 29320 + i32.const 29336 end ;; $if_3 i32.load8_s offset=11 i32.const 0 @@ -18963,9 +18963,9 @@ i32.load offset=8 local.tee $3 else - i32.const 29320 + i32.const 29336 local.set $3 - i32.const 29320 + i32.const 29336 end ;; $if_5 i32.load8_s offset=11 local.tee $2 @@ -18980,7 +18980,7 @@ i32.and end ;; $if_6 i32.const 0 - i32.const 14948 + i32.const 14954 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ br_if $loop i32.const 0 @@ -19085,7 +19085,7 @@ local.get $7 i32.load local.tee $2 - i32.const 29320 + i32.const 29336 i32.eq br_if $block_19 else @@ -19095,14 +19095,14 @@ i32.const 3 i32.store offset=16 local.get $0 - i32.const 29320 + i32.const 29336 i32.store offset=8 br $block_19 end ;; $if_8 br $block_18 end ;; $block_19 local.get $7 - i32.const 29320 + i32.const 29336 call $__ZN6google8protobuf8internal14ArenaStringPtr21CreateInstanceNoArenaEPKNSt3__212basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEE local.get $7 i32.load @@ -19125,9 +19125,9 @@ i32.load offset=8 local.tee $2 else - i32.const 29320 + i32.const 29336 local.set $2 - i32.const 29320 + i32.const 29336 end ;; $if_9 i32.load8_s offset=11 i32.const 0 @@ -19144,9 +19144,9 @@ i32.load offset=8 local.tee $3 else - i32.const 29320 + i32.const 29336 local.set $3 - i32.const 29320 + i32.const 29336 end ;; $if_11 i32.load8_s offset=11 local.tee $2 @@ -19161,7 +19161,7 @@ i32.and end ;; $if_12 i32.const 0 - i32.const 15000 + i32.const 15006 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ br_if $loop i32.const 0 @@ -19537,7 +19537,7 @@ local.tee $1 i32.const -2 i32.and - i32.const 29320 + i32.const 29336 local.get $1 i32.const 1 i32.and @@ -19578,7 +19578,7 @@ local.tee $1 i32.const -2 i32.and - i32.const 29320 + i32.const 29336 local.get $1 i32.const 1 i32.and @@ -19609,7 +19609,7 @@ local.tee $1 i32.const -2 i32.and - i32.const 29320 + i32.const 29336 local.get $1 i32.const 1 i32.and @@ -19709,7 +19709,7 @@ local.tee $1 i32.const -2 i32.and - i32.const 29320 + i32.const 29336 local.get $1 i32.const 1 i32.and @@ -19950,7 +19950,7 @@ local.get $2 local.get $3 i32.const 1 - i32.const 14948 + i32.const 14954 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ drop i32.const 1 @@ -19962,7 +19962,7 @@ local.get $0 i32.load offset=8 else - i32.const 29320 + i32.const 29336 end ;; $if_1 local.get $1 call $__ZN6google8protobuf8internal14WireFormatLite23WriteStringMaybeAliasedEiRKNSt3__212basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEPNS0_2io17CodedOutputStreamE @@ -20010,7 +20010,7 @@ local.get $2 local.get $3 i32.const 1 - i32.const 15000 + i32.const 15006 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ drop i32.const 3 @@ -20022,7 +20022,7 @@ local.get $0 i32.load offset=8 else - i32.const 29320 + i32.const 29336 end ;; $if_5 local.get $1 call $__ZN6google8protobuf8internal14WireFormatLite23WriteStringMaybeAliasedEiRKNSt3__212basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEPNS0_2io17CodedOutputStreamE @@ -20071,7 +20071,7 @@ local.tee $2 i32.const -2 i32.and - i32.const 29320 + i32.const 29336 local.get $2 i32.const 1 i32.and @@ -20090,7 +20090,7 @@ local.tee $0 i32.const -2 i32.and - i32.const 29320 + i32.const 29336 local.get $0 i32.const 1 i32.and @@ -20137,7 +20137,7 @@ local.get $0 i32.load offset=8 local.tee $1 - i32.const 29320 + i32.const 29336 i32.eq local.get $1 i32.eqz @@ -20177,7 +20177,7 @@ local.get $0 i32.load offset=8 local.tee $1 - i32.const 29320 + i32.const 29336 i32.eq local.get $1 i32.eqz @@ -20271,7 +20271,7 @@ i32.const 3 i32.store local.get $3 - i32.const 13397 + i32.const 13401 i32.store offset=4 local.get $3 i32.const 3433 @@ -20283,7 +20283,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 15974 + i32.const 15982 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -20368,7 +20368,7 @@ local.tee $0 i32.load local.tee $1 - i32.const 29320 + i32.const 29336 i32.ne br_if $block_1 else @@ -20378,7 +20378,7 @@ i32.const 1 i32.store offset=16 local.get $0 - i32.const 29320 + i32.const 29336 i32.store offset=8 local.get $0 i32.const 8 @@ -20414,7 +20414,7 @@ i32.const 2 i32.eq br_if $block_10 - i32.const 28856 + i32.const 28872 end ;; $if_3 br $block_9 end ;; $block_10 @@ -20441,7 +20441,7 @@ local.tee $0 i32.load local.tee $1 - i32.const 29320 + i32.const 29336 i32.ne br_if $block_1 else @@ -20451,7 +20451,7 @@ i32.const 3 i32.store offset=16 local.get $0 - i32.const 29320 + i32.const 29336 i32.store offset=8 local.get $0 i32.const 8 @@ -20487,7 +20487,7 @@ i32.const 4 i32.eq br_if $block_12 - i32.const 28912 + i32.const 28928 end ;; $if_5 br $block_11 end ;; $block_12 @@ -20527,7 +20527,7 @@ i32.const 5 i32.eq br_if $block_14 - i32.const 28944 + i32.const 28960 end ;; $if_6 br $block_13 end ;; $block_14 @@ -20567,7 +20567,7 @@ i32.const 6 i32.eq br_if $block_16 - i32.const 28968 + i32.const 28984 end ;; $if_7 br $block_15 end ;; $block_16 @@ -20658,16 +20658,16 @@ global.set $36 local.get $0 global.set $36 - i32.const 29048 + i32.const 29064 call $__ZN22GrpcService_GoogleGrpcC2Ev i32.const 160 - i32.const 29048 + i32.const 29064 call $__ZN6google8protobuf8internal13OnShutdownRunEPFvPKvES3_ - i32.const 29084 - i32.const 28872 + i32.const 29100 + i32.const 28888 i32.store - i32.const 29088 - i32.const 29192 + i32.const 29104 + i32.const 29208 i32.store ) @@ -20695,13 +20695,13 @@ call $__ZN6google8protobuf8internal11InitSCCImplEPNS1_11SCCInfoBaseE end ;; $if local.get $0 - i32.const 29320 + i32.const 29336 i32.store offset=24 local.get $0 - i32.const 29320 + i32.const 29336 i32.store offset=28 local.get $0 - i32.const 29320 + i32.const 29336 i32.store offset=32 local.get $0 i64.const 0 @@ -20845,19 +20845,19 @@ i32.const 22 i32.store offset=4 local.get $1 - i32.const 15257 + i32.const 15263 i64.load align=1 i64.store align=1 local.get $1 - i32.const 15265 + i32.const 15271 i64.load align=1 i64.store offset=8 align=1 local.get $1 - i32.const 15273 + i32.const 15279 i32.load align=1 i32.store offset=16 align=1 local.get $1 - i32.const 15277 + i32.const 15283 i32.load16_s align=1 i32.store16 offset=20 align=1 local.get $1 @@ -20891,7 +20891,7 @@ local.get $0 i32.load offset=24 local.tee $1 - i32.const 29320 + i32.const 29336 i32.ne if $if local.get $1 @@ -20918,7 +20918,7 @@ local.get $0 i32.load offset=28 local.tee $1 - i32.const 29320 + i32.const 29336 i32.ne if $if_1 local.get $1 @@ -20945,7 +20945,7 @@ local.get $0 i32.load offset=32 local.tee $1 - i32.const 29320 + i32.const 29336 i32.ne if $if_3 local.get $1 @@ -21055,10 +21055,10 @@ local.get $1 call $__ZN22GrpcService_GoogleGrpc9MergeFromERKS_ else - i32.const 17472 - i32.const 17513 + i32.const 17480 + i32.const 17521 i32.const 92 - i32.const 17562 + i32.const 17570 call $___assert_fail end ;; $if ) @@ -21240,11 +21240,11 @@ local.get $8 i32.load local.tee $2 - i32.const 29320 + i32.const 29336 i32.eq if $if_2 (result i32) local.get $8 - i32.const 29320 + i32.const 29336 call $__ZN6google8protobuf8internal14ArenaStringPtr21CreateInstanceNoArenaEPKNSt3__212basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEE local.get $8 i32.load @@ -21279,7 +21279,7 @@ local.get $3 local.get $2 i32.const 0 - i32.const 15140 + i32.const 15146 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ br_if $loop i32.const 0 @@ -21526,11 +21526,11 @@ local.get $9 i32.load local.tee $2 - i32.const 29320 + i32.const 29336 i32.eq if $if_8 (result i32) local.get $9 - i32.const 29320 + i32.const 29336 call $__ZN6google8protobuf8internal14ArenaStringPtr21CreateInstanceNoArenaEPKNSt3__212basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEE local.get $9 i32.load @@ -21565,7 +21565,7 @@ local.get $3 local.get $2 i32.const 0 - i32.const 15174 + i32.const 15180 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ br_if $loop i32.const 0 @@ -21582,11 +21582,11 @@ local.get $10 i32.load local.tee $2 - i32.const 29320 + i32.const 29336 i32.eq if $if_10 (result i32) local.get $10 - i32.const 29320 + i32.const 29336 call $__ZN6google8protobuf8internal14ArenaStringPtr21CreateInstanceNoArenaEPKNSt3__212basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEE local.get $10 i32.load @@ -21621,7 +21621,7 @@ local.get $3 local.get $2 i32.const 0 - i32.const 15209 + i32.const 15215 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ br_if $loop i32.const 0 @@ -21817,7 +21817,7 @@ local.tee $1 i32.const -2 i32.and - i32.const 29320 + i32.const 29336 local.get $1 i32.const 1 i32.and @@ -22012,7 +22012,7 @@ local.set $1 end ;; $if_6 local.get $0 - i32.const 29048 + i32.const 29064 i32.eq if $if_7 local.get $0 @@ -22126,7 +22126,7 @@ local.get $3 local.get $2 i32.const 1 - i32.const 15140 + i32.const 15146 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ drop i32.const 1 @@ -22136,7 +22136,7 @@ call $__ZN6google8protobuf8internal14WireFormatLite23WriteStringMaybeAliasedEiRKNSt3__212basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEPNS0_2io17CodedOutputStreamE end ;; $if_0 local.get $0 - i32.const 29048 + i32.const 29064 i32.eq local.tee $5 i32.eqz @@ -22211,7 +22211,7 @@ local.get $2 local.get $3 i32.const 1 - i32.const 15174 + i32.const 15180 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ drop i32.const 4 @@ -22254,7 +22254,7 @@ local.get $2 local.get $3 i32.const 1 - i32.const 15209 + i32.const 15215 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ drop i32.const 5 @@ -22281,7 +22281,7 @@ local.tee $2 i32.const -2 i32.and - i32.const 29320 + i32.const 29336 local.get $2 i32.const 1 i32.and @@ -22300,7 +22300,7 @@ local.tee $0 i32.const -2 i32.and - i32.const 29320 + i32.const 29336 local.get $0 i32.const 1 i32.and @@ -22357,7 +22357,7 @@ i32.const 3 i32.store local.get $3 - i32.const 15499 + i32.const 15507 i32.store offset=4 local.get $3 i32.const 1505 @@ -22369,7 +22369,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 15551 + i32.const 15559 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -22399,7 +22399,7 @@ i32.const 3 i32.store local.get $2 - i32.const 15499 + i32.const 15507 i32.store offset=4 local.get $2 i32.const 1506 @@ -22411,7 +22411,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 15582 + i32.const 15590 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -22452,7 +22452,7 @@ i32.const 3 i32.store local.get $4 - i32.const 13397 + i32.const 13401 i32.store offset=4 local.get $4 i32.const 3854 @@ -22464,7 +22464,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 15974 + i32.const 15982 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -22550,7 +22550,7 @@ i32.ne if $if_4 local.get $3 - i32.const 29320 + i32.const 29336 i32.eq if $if_5 local.get $5 @@ -22589,7 +22589,7 @@ i32.ne if $if_8 local.get $3 - i32.const 29320 + i32.const 29336 i32.eq if $if_9 local.get $5 @@ -22628,7 +22628,7 @@ i32.ne if $if_12 local.get $3 - i32.const 29320 + i32.const 29336 i32.eq if $if_13 local.get $5 @@ -22642,7 +22642,7 @@ end ;; $if_12 end ;; $if_11 local.get $1 - i32.const 29048 + i32.const 29064 i32.eq if $if_14 local.get $4 @@ -22669,7 +22669,7 @@ end ;; $if_16 local.get $2 local.get $3 - i32.const 28872 + i32.const 28888 local.get $3 select call $__ZN41GrpcService_GoogleGrpc_ChannelCredentials9MergeFromERKS_ @@ -22701,7 +22701,7 @@ end ;; $if_18 local.get $0 local.get $3 - i32.const 29192 + i32.const 29208 local.get $3 select call $__ZN6google8protobuf6Struct9MergeFromERKS1_ @@ -22732,7 +22732,7 @@ i32.const 3 i32.store local.get $2 - i32.const 15499 + i32.const 15507 i32.store offset=4 local.get $2 i32.const 1586 @@ -22744,7 +22744,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 16008 + i32.const 16016 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -22906,7 +22906,7 @@ i32.const 3 i32.store local.get $1 - i32.const 15499 + i32.const 15507 i32.store offset=4 local.get $1 i32.const 1567 @@ -22918,7 +22918,7 @@ i32.const 0 i32.store offset=20 local.get $1 - i32.const 17879 + i32.const 17887 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $1 @@ -23042,7 +23042,7 @@ local.get $0 i32.load offset=24 local.tee $1 - i32.const 29320 + i32.const 29336 i32.eq local.get $1 i32.eqz @@ -23064,7 +23064,7 @@ local.get $0 i32.load offset=28 local.tee $1 - i32.const 29320 + i32.const 29336 i32.eq local.get $1 i32.eqz @@ -23086,7 +23086,7 @@ local.get $0 i32.load offset=32 local.tee $1 - i32.const 29320 + i32.const 29336 i32.eq local.get $1 i32.eqz @@ -23106,7 +23106,7 @@ call $_free end ;; $if_3 local.get $0 - i32.const 29048 + i32.const 29064 i32.eq if $if_5 return @@ -23153,13 +23153,13 @@ global.set $36 local.get $0 global.set $36 - i32.const 29096 + i32.const 29112 i32.const 8320 i32.store - i32.const 29100 + i32.const 29116 i32.const 0 i32.store - i32.const 29112 + i32.const 29128 i32.const 0 i32.store i32.const 8296 @@ -23168,14 +23168,14 @@ i32.const 8296 call $__ZN6google8protobuf8internal11InitSCCImplEPNS1_11SCCInfoBaseE end ;; $if - i32.const 29104 - i32.const 29320 + i32.const 29120 + i32.const 29336 i32.store - i32.const 29108 - i32.const 29320 + i32.const 29124 + i32.const 29336 i32.store i32.const 160 - i32.const 29096 + i32.const 29112 call $__ZN6google8protobuf8internal13OnShutdownRunEPFvPKvES3_ ) @@ -23189,7 +23189,7 @@ local.get $0 i32.load offset=8 local.tee $1 - i32.const 29320 + i32.const 29336 i32.eq local.get $1 i32.eqz @@ -23211,7 +23211,7 @@ local.get $0 i32.load offset=12 local.tee $1 - i32.const 29320 + i32.const 29336 i32.eq local.get $1 i32.eqz @@ -23302,23 +23302,23 @@ i32.const 23 i32.store offset=4 local.get $1 - i32.const 15363 + i32.const 15369 i64.load align=1 i64.store align=1 local.get $1 - i32.const 15371 + i32.const 15377 i64.load align=1 i64.store offset=8 align=1 local.get $1 - i32.const 15379 + i32.const 15385 i32.load align=1 i32.store offset=16 align=1 local.get $1 - i32.const 15383 + i32.const 15389 i32.load16_s align=1 i32.store16 offset=20 align=1 local.get $1 - i32.const 15385 + i32.const 15391 i32.load8_s i32.store8 offset=22 local.get $1 @@ -23353,10 +23353,10 @@ local.get $1 call $__ZN23GrpcService_HeaderValue9MergeFromERKS_ else - i32.const 17472 - i32.const 17513 + i32.const 17480 + i32.const 17521 i32.const 92 - i32.const 17562 + i32.const 17570 call $___assert_fail end ;; $if ) @@ -23516,11 +23516,11 @@ local.get $8 i32.load local.tee $2 - i32.const 29320 + i32.const 29336 i32.eq if $if_2 (result i32) local.get $8 - i32.const 29320 + i32.const 29336 call $__ZN6google8protobuf8internal14ArenaStringPtr21CreateInstanceNoArenaEPKNSt3__212basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEE local.get $8 i32.load @@ -23555,7 +23555,7 @@ local.get $2 local.get $4 i32.const 0 - i32.const 15305 + i32.const 15311 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ br_if $loop i32.const 0 @@ -23572,11 +23572,11 @@ local.get $9 i32.load local.tee $2 - i32.const 29320 + i32.const 29336 i32.eq if $if_4 (result i32) local.get $9 - i32.const 29320 + i32.const 29336 call $__ZN6google8protobuf8internal14ArenaStringPtr21CreateInstanceNoArenaEPKNSt3__212basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEE local.get $9 i32.load @@ -23611,7 +23611,7 @@ local.get $2 local.get $4 i32.const 0 - i32.const 15333 + i32.const 15339 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ br_if $loop i32.const 0 @@ -23750,7 +23750,7 @@ local.get $2 local.get $3 i32.const 1 - i32.const 15305 + i32.const 15311 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ drop i32.const 1 @@ -23793,7 +23793,7 @@ local.get $2 local.get $3 i32.const 1 - i32.const 15333 + i32.const 15339 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ drop i32.const 2 @@ -23807,7 +23807,7 @@ local.tee $2 i32.const -2 i32.and - i32.const 29320 + i32.const 29336 local.get $2 i32.const 1 i32.and @@ -23826,7 +23826,7 @@ local.tee $0 i32.const -2 i32.and - i32.const 29320 + i32.const 29336 local.get $0 i32.const 1 i32.and @@ -23873,7 +23873,7 @@ i32.const 3 i32.store local.get $3 - i32.const 13397 + i32.const 13401 i32.store offset=4 local.get $3 i32.const 4111 @@ -23885,7 +23885,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 15974 + i32.const 15982 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -23964,7 +23964,7 @@ i32.ne if $if_4 local.get $4 - i32.const 29320 + i32.const 29336 i32.eq if $if_5 local.get $5 @@ -24012,7 +24012,7 @@ return end ;; $if_8 local.get $0 - i32.const 29320 + i32.const 29336 i32.eq if $if_9 local.get $2 @@ -24073,10 +24073,10 @@ call $__ZN6google8protobuf8internal11InitSCCImplEPNS1_11SCCInfoBaseE end ;; $if_2 local.get $0 - i32.const 29320 + i32.const 29336 i32.store offset=8 local.get $0 - i32.const 29320 + i32.const 29336 i32.store offset=12 local.get $0 ) @@ -24091,10 +24091,10 @@ global.set $36 local.get $0 global.set $36 - i32.const 29120 + i32.const 29136 call $__ZN11GrpcServiceC2Ev i32.const 160 - i32.const 29120 + i32.const 29136 call $__ZN6google8protobuf8internal13OnShutdownRunEPFvPKvES3_ ) @@ -24311,15 +24311,15 @@ i32.const 11 i32.store offset=4 local.get $1 - i32.const 15413 + i32.const 15419 i64.load align=1 i64.store align=1 local.get $1 - i32.const 15421 + i32.const 15427 i32.load16_s align=1 i32.store16 offset=8 align=1 local.get $1 - i32.const 15423 + i32.const 15429 i32.load8_s i32.store8 offset=10 local.get $1 @@ -24447,10 +24447,10 @@ local.get $1 call $__ZN11GrpcService9MergeFromERKS_ else - i32.const 17472 - i32.const 17513 + i32.const 17480 + i32.const 17521 i32.const 92 - i32.const 17562 + i32.const 17570 call $___assert_fail end ;; $if ) @@ -25087,7 +25087,7 @@ local.tee $2 i32.const -2 i32.and - i32.const 29320 + i32.const 29336 local.get $2 i32.const 1 i32.and @@ -25125,7 +25125,7 @@ local.tee $1 i32.const -2 i32.and - i32.const 29320 + i32.const 29336 local.get $1 i32.const 1 i32.and @@ -25279,7 +25279,7 @@ local.tee $1 i32.const -2 i32.and - i32.const 29320 + i32.const 29336 local.get $1 i32.const 1 i32.and @@ -25464,7 +25464,7 @@ local.tee $2 i32.const -2 i32.and - i32.const 29320 + i32.const 29336 local.get $2 i32.const 1 i32.and @@ -25483,7 +25483,7 @@ local.tee $0 i32.const -2 i32.and - i32.const 29320 + i32.const 29336 local.get $0 i32.const 1 i32.and @@ -25537,7 +25537,7 @@ i32.const 3 i32.store local.get $3 - i32.const 13397 + i32.const 13401 i32.store offset=4 local.get $3 i32.const 4428 @@ -25549,7 +25549,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 15974 + i32.const 15982 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -25668,7 +25668,7 @@ if $if_3 (result i32) br $block_3 else - i32.const 28800 + i32.const 28816 end ;; $if_3 br $block_2 end ;; $block_3 @@ -25731,7 +25731,7 @@ if $if_5 (result i32) br $block_8 else - i32.const 29048 + i32.const 29064 end ;; $if_5 br $block_7 end ;; $block_8 @@ -25773,7 +25773,7 @@ i32.const 3 i32.store local.get $2 - i32.const 15499 + i32.const 15507 i32.store offset=4 local.get $2 i32.const 1586 @@ -25785,7 +25785,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 16008 + i32.const 16016 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -25947,7 +25947,7 @@ i32.const 3 i32.store local.get $2 - i32.const 15499 + i32.const 15507 i32.store offset=4 local.get $2 i32.const 1567 @@ -25959,7 +25959,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 17879 + i32.const 17887 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -25990,7 +25990,7 @@ local.tee $3 i32.load offset=8 local.tee $1 - i32.const 29320 + i32.const 29336 i32.ne if $if_1 local.get $1 @@ -26017,7 +26017,7 @@ local.get $3 i32.load offset=12 local.tee $1 - i32.const 29320 + i32.const 29336 i32.ne if $if_3 local.get $1 @@ -26189,33 +26189,33 @@ global.set $36 local.get $0 global.set $36 - i32.const 29180 + i32.const 29196 i32.const 0 i32.store - i32.const 29172 - i32.const 29320 + i32.const 29188 + i32.const 29336 i32.store - i32.const 29176 + i32.const 29192 i32.const 0 i32.store - i32.const 29184 + i32.const 29200 i32.const 0 i32.store - i32.const 29168 + i32.const 29184 i32.const 8520 i32.store - i32.const 29192 + i32.const 29208 call $__ZN6google8protobuf6StructC2Ev i32.const 160 - i32.const 29192 + i32.const 29208 call $__ZN6google8protobuf8internal13OnShutdownRunEPFvPKvES3_ - i32.const 29224 + i32.const 29240 i32.const 8608 i32.store - i32.const 29228 + i32.const 29244 i32.const 0 i32.store - i32.const 29240 + i32.const 29256 i32.const 0 i32.store i32.const 8496 @@ -26224,19 +26224,19 @@ i32.const 8496 call $__ZN6google8protobuf8internal11InitSCCImplEPNS1_11SCCInfoBaseE end ;; $if - i32.const 29244 + i32.const 29260 i32.const 0 i32.store i32.const 160 - i32.const 29224 + i32.const 29240 call $__ZN6google8protobuf8internal13OnShutdownRunEPFvPKvES3_ - i32.const 29280 + i32.const 29296 call $__ZN6google8protobuf9ListValueC2Ev i32.const 160 - i32.const 29280 + i32.const 29296 call $__ZN6google8protobuf8internal13OnShutdownRunEPFvPKvES3_ - i32.const 29176 - i32.const 29224 + i32.const 29192 + i32.const 29240 i32.store ) @@ -26334,7 +26334,7 @@ i32.const 3 i32.store local.get $2 - i32.const 15439 + i32.const 15445 i32.store offset=4 local.get $2 i32.const 915 @@ -26346,7 +26346,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 16619 + i32.const 16627 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -26480,19 +26480,19 @@ i32.const 25 i32.store offset=4 local.get $1 - i32.const 17906 + i32.const 17914 i64.load align=1 i64.store align=1 local.get $1 - i32.const 17914 + i32.const 17922 i64.load align=1 i64.store offset=8 align=1 local.get $1 - i32.const 17922 + i32.const 17930 i64.load align=1 i64.store offset=16 align=1 local.get $1 - i32.const 17930 + i32.const 17938 i32.load8_s i32.store8 offset=24 local.get $1 @@ -26598,10 +26598,10 @@ local.get $1 call $__ZN6google8protobuf9ListValue9MergeFromERKS1_ else - i32.const 17472 - i32.const 17513 + i32.const 17480 + i32.const 17521 i32.const 92 - i32.const 17562 + i32.const 17570 call $___assert_fail end ;; $if ) @@ -27004,7 +27004,7 @@ local.tee $1 i32.const -2 i32.and - i32.const 29320 + i32.const 29336 local.get $1 i32.const 1 i32.and @@ -27113,7 +27113,7 @@ local.tee $2 i32.const -2 i32.and - i32.const 29320 + i32.const 29336 local.get $2 i32.const 1 i32.and @@ -27132,7 +27132,7 @@ local.tee $0 i32.const -2 i32.and - i32.const 29320 + i32.const 29336 local.get $0 i32.const 1 i32.and @@ -27173,7 +27173,7 @@ local.tee $1 i32.const -2 i32.and - i32.const 29320 + i32.const 29336 local.get $1 i32.const 1 i32.and @@ -27324,7 +27324,7 @@ local.tee $1 i32.const -2 i32.and - i32.const 29320 + i32.const 29336 local.get $1 i32.const 1 i32.and @@ -27445,7 +27445,7 @@ local.tee $1 i32.const -2 i32.and - i32.const 29320 + i32.const 29336 local.get $1 i32.const 1 i32.and @@ -27562,7 +27562,7 @@ i32.store offset=12 end ;; $if_1 local.get $1 - i32.const 29320 + i32.const 29336 i32.store offset=4 local.get $1 i32.const 0 @@ -27796,7 +27796,7 @@ i32.const 3 i32.store local.get $3 - i32.const 15624 + i32.const 15632 i32.store offset=4 local.get $3 i32.const 418 @@ -27808,7 +27808,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 15708 + i32.const 15716 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -27894,7 +27894,7 @@ i32.const 3 i32.store local.get $2 - i32.const 15624 + i32.const 15632 i32.store offset=4 local.get $2 i32.const 427 @@ -27906,7 +27906,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 15825 + i32.const 15833 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -27977,7 +27977,7 @@ i32.const 3 i32.store local.get $2 - i32.const 15624 + i32.const 15632 i32.store offset=4 local.get $2 i32.const 451 @@ -27989,7 +27989,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 15665 + i32.const 15673 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -28125,7 +28125,7 @@ i32.const 3 i32.store local.get $3 - i32.const 15624 + i32.const 15632 i32.store offset=4 local.get $3 i32.const 476 @@ -28137,7 +28137,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 15856 + i32.const 15864 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -28794,7 +28794,7 @@ local.get $0 i32.load offset=4 local.tee $1 - i32.const 29320 + i32.const 29336 i32.eq local.get $1 i32.eqz @@ -28847,7 +28847,7 @@ local.get $0 i32.load offset=4 local.tee $1 - i32.const 29320 + i32.const 29336 i32.eq local.get $1 i32.eqz @@ -28908,7 +28908,7 @@ i32.const 0 i32.store offset=12 local.get $0 - i32.const 29320 + i32.const 29336 i32.store offset=4 local.get $0 i32.const 0 @@ -28937,7 +28937,7 @@ local.get $0 i32.load offset=4 local.tee $1 - i32.const 29320 + i32.const 29336 i32.ne if $if local.get $1 @@ -29020,10 +29020,10 @@ local.get $1 call $__ZN6google8protobuf8internal12MapEntryImplINS0_27Struct_FieldsEntry_DoNotUseENS0_11MessageLiteENSt3__212basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEENS0_5ValueELNS1_14WireFormatLite9FieldTypeE9ELSE_11ELi0EE17MergeFromInternalERKSF_ else - i32.const 17472 - i32.const 17513 + i32.const 17480 + i32.const 17521 i32.const 92 - i32.const 17562 + i32.const 17570 call $___assert_fail end ;; $if ) @@ -29113,13 +29113,13 @@ local.get $5 i32.load local.tee $2 - i32.const 29320 + i32.const 29336 i32.eq if $if_0 local.get $5 local.get $0 i32.load offset=12 - i32.const 29320 + i32.const 29336 call $__ZN6google8protobuf8internal14ArenaStringPtr14CreateInstanceEPNS0_5ArenaEPKNSt3__212basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEE local.get $5 i32.load @@ -29948,7 +29948,7 @@ i32.const 3 i32.store offset=20 local.get $5 - i32.const 29320 + i32.const 29336 i32.store end ;; $if_5 local.get $0 @@ -29970,12 +29970,12 @@ local.get $5 i32.load local.tee $3 - i32.const 29320 + i32.const 29336 i32.eq if $if_7 (result i32) local.get $5 local.get $2 - i32.const 29320 + i32.const 29336 call $__ZN6google8protobuf8internal14ArenaStringPtr14CreateInstanceEPNS0_5ArenaEPKNSt3__212basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEE local.get $5 i32.load @@ -29996,9 +29996,9 @@ i32.load local.tee $2 else - i32.const 29320 + i32.const 29336 local.set $2 - i32.const 29320 + i32.const 29336 end ;; $if_8 i32.load8_s offset=11 i32.const 0 @@ -30015,9 +30015,9 @@ i32.load local.tee $3 else - i32.const 29320 + i32.const 29336 local.set $3 - i32.const 29320 + i32.const 29336 end ;; $if_10 i32.load8_s offset=11 local.tee $2 @@ -30032,7 +30032,7 @@ i32.and end ;; $if_11 i32.const 0 - i32.const 15900 + i32.const 15908 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ br_if $loop i32.const 0 @@ -30429,7 +30429,7 @@ local.get $0 i32.load offset=8 local.tee $1 - i32.const 29320 + i32.const 29336 i32.eq local.get $1 i32.eqz @@ -30772,7 +30772,7 @@ local.get $6 select i32.const 0 - i32.const 15935 + i32.const 15943 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ select br $block_4 @@ -31278,7 +31278,7 @@ i32.const 0 i32.store offset=12 local.get $2 - i32.const 29320 + i32.const 29336 i32.store offset=4 local.get $2 i32.const 0 @@ -31323,13 +31323,13 @@ local.tee $3 i32.load local.tee $5 - i32.const 29320 + i32.const 29336 i32.eq if $if_14 (result i32) local.get $3 local.get $2 i32.load offset=12 - i32.const 29320 + i32.const 29336 call $__ZN6google8protobuf8internal14ArenaStringPtr14CreateInstanceEPNS0_5ArenaEPKNSt3__212basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEE local.get $3 i32.load @@ -31605,7 +31605,7 @@ i32.const 0 i32.store offset=12 local.get $2 - i32.const 29320 + i32.const 29336 i32.store offset=4 local.get $2 i32.const 0 @@ -31686,13 +31686,13 @@ local.tee $3 i32.load local.tee $2 - i32.const 29320 + i32.const 29336 i32.eq if $if_2 local.get $3 local.get $4 i32.load offset=12 - i32.const 29320 + i32.const 29336 call $__ZN6google8protobuf8internal14ArenaStringPtr14CreateInstanceEPNS0_5ArenaEPKNSt3__212basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEE local.get $3 i32.load @@ -31865,7 +31865,7 @@ i32.store offset=12 end ;; $if local.get $0 - i32.const 29320 + i32.const 29336 i32.store offset=4 local.get $0 i32.const 0 @@ -32225,7 +32225,7 @@ i32.const 3 i32.store local.get $4 - i32.const 15439 + i32.const 15445 i32.store offset=4 local.get $4 i32.const 796 @@ -32237,7 +32237,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 15974 + i32.const 15982 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -32366,7 +32366,7 @@ i32.const 8 i32.add local.tee $0 - i32.const 29320 + i32.const 29336 i32.store end ;; $if_4 local.get $2 @@ -32386,7 +32386,7 @@ local.get $0 i32.load local.tee $2 - i32.const 29320 + i32.const 29336 i32.eq if $if_6 local.get $0 @@ -32462,7 +32462,7 @@ i32.const 5 i32.eq br_if $block_8 - i32.const 29192 + i32.const 29208 end ;; $if_8 br $block_7 end ;; $block_8 @@ -32516,7 +32516,7 @@ i32.const 6 i32.eq br_if $block_10 - i32.const 29280 + i32.const 29296 end ;; $if_10 br $block_9 end ;; $block_10 @@ -32559,7 +32559,7 @@ i32.const 3 i32.store local.get $3 - i32.const 15439 + i32.const 15445 i32.store offset=4 local.get $3 i32.const 341 @@ -32571,7 +32571,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 15974 + i32.const 15982 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -32754,7 +32754,7 @@ i32.const 3 i32.store local.get $2 - i32.const 15439 + i32.const 15445 i32.store offset=4 local.get $2 i32.const 1040 @@ -32766,7 +32766,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 15974 + i32.const 15982 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -32863,7 +32863,7 @@ i32.const 3 i32.store local.get $2 - i32.const 15499 + i32.const 15507 i32.store offset=4 local.get $2 i32.const 1586 @@ -32875,7 +32875,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 16008 + i32.const 16016 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -33103,7 +33103,7 @@ i32.const 3 i32.store local.get $2 - i32.const 15624 + i32.const 15632 i32.store offset=4 local.get $2 i32.const 601 @@ -33115,7 +33115,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 16505 + i32.const 16513 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -33177,7 +33177,7 @@ i32.const 3 i32.store local.get $2 - i32.const 15624 + i32.const 15632 i32.store offset=4 local.get $2 i32.const 607 @@ -33189,7 +33189,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 16539 + i32.const 16547 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -33232,7 +33232,7 @@ i32.const 3 i32.store local.get $3 - i32.const 15624 + i32.const 15632 i32.store offset=4 local.get $3 i32.const 612 @@ -33244,7 +33244,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 16583 + i32.const 16591 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -34313,7 +34313,7 @@ i32.const 3 i32.store local.get $1 - i32.const 15439 + i32.const 15445 i32.store offset=4 local.get $1 i32.const 495 @@ -34325,7 +34325,7 @@ i32.const 0 i32.store offset=20 local.get $1 - i32.const 16619 + i32.const 16627 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $1 @@ -34684,7 +34684,7 @@ i32.const 3 i32.store local.get $2 - i32.const 15624 + i32.const 15632 i32.store offset=4 local.get $2 i32.const 765 @@ -34696,7 +34696,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 17089 + i32.const 17097 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -34885,7 +34885,7 @@ i32.const 3 i32.store local.get $4 - i32.const 15624 + i32.const 15632 i32.store offset=4 local.get $4 i32.const 672 @@ -34897,7 +34897,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 16663 + i32.const 16671 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -34923,7 +34923,7 @@ i32.const 3 i32.store local.get $4 - i32.const 15624 + i32.const 15632 i32.store offset=4 local.get $4 i32.const 678 @@ -34935,7 +34935,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 16764 + i32.const 16772 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -35017,7 +35017,7 @@ i32.const 3 i32.store local.get $6 - i32.const 15624 + i32.const 15632 i32.store offset=4 local.get $6 i32.const 878 @@ -35029,7 +35029,7 @@ i32.const 0 i32.store offset=20 local.get $6 - i32.const 16820 + i32.const 16828 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $6 @@ -35061,7 +35061,7 @@ i32.const 3 i32.store local.get $5 - i32.const 15624 + i32.const 15632 i32.store offset=4 local.get $5 i32.const 685 @@ -35073,7 +35073,7 @@ i32.const 0 i32.store offset=20 local.get $5 - i32.const 16860 + i32.const 16868 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $5 @@ -35190,7 +35190,7 @@ i32.const 3 i32.store local.get $2 - i32.const 15624 + i32.const 15632 i32.store offset=4 local.get $2 i32.const 837 @@ -35202,7 +35202,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 16982 + i32.const 16990 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -35474,7 +35474,7 @@ i32.const 3 i32.store local.get $2 - i32.const 15624 + i32.const 15632 i32.store offset=4 local.get $2 i32.const 848 @@ -35486,7 +35486,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 17047 + i32.const 17055 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -35548,7 +35548,7 @@ i32.const 3 i32.store local.get $4 - i32.const 15624 + i32.const 15632 i32.store offset=4 local.get $4 i32.const 713 @@ -35560,7 +35560,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 16935 + i32.const 16943 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -36845,7 +36845,7 @@ i32.const 3 i32.store local.get $2 - i32.const 15624 + i32.const 15632 i32.store offset=4 local.get $2 i32.const 926 @@ -36857,7 +36857,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 17142 + i32.const 17150 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -36873,7 +36873,7 @@ i32.const 3 i32.store local.get $3 - i32.const 15624 + i32.const 15632 i32.store offset=4 local.get $3 i32.const 927 @@ -36885,7 +36885,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 17177 + i32.const 17185 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -37467,7 +37467,7 @@ i32.const 3 i32.store local.get $5 - i32.const 15624 + i32.const 15632 i32.store offset=4 local.get $5 i32.const 527 @@ -37479,7 +37479,7 @@ i32.const 0 i32.store offset=20 local.get $5 - i32.const 17214 + i32.const 17222 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $5 @@ -37743,7 +37743,7 @@ i32.const 3 i32.store local.get $1 - i32.const 15439 + i32.const 15445 i32.store offset=4 local.get $1 i32.const 150 @@ -37755,7 +37755,7 @@ i32.const 0 i32.store offset=20 local.get $1 - i32.const 16619 + i32.const 16627 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $1 @@ -37837,19 +37837,19 @@ i32.const 22 i32.store offset=4 local.get $1 - i32.const 17572 + i32.const 17580 i64.load align=1 i64.store align=1 local.get $1 - i32.const 17580 + i32.const 17588 i64.load align=1 i64.store offset=8 align=1 local.get $1 - i32.const 17588 + i32.const 17596 i32.load align=1 i32.store offset=16 align=1 local.get $1 - i32.const 17592 + i32.const 17600 i32.load16_s align=1 i32.store16 offset=20 align=1 local.get $1 @@ -37927,10 +37927,10 @@ local.get $1 call $__ZN6google8protobuf6Struct9MergeFromERKS1_ else - i32.const 17472 - i32.const 17513 + i32.const 17480 + i32.const 17521 i32.const 92 - i32.const 17562 + i32.const 17570 call $___assert_fail end ;; $if ) @@ -38039,7 +38039,7 @@ i32.store offset=12 end ;; $if_1 local.get $2 - i32.const 29320 + i32.const 29336 i32.store offset=4 local.get $2 i32.const 0 @@ -38109,7 +38109,7 @@ local.get $2 local.get $4 i32.const 1 - i32.const 15935 + i32.const 15943 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ drop local.get $5 @@ -38248,7 +38248,7 @@ i32.store offset=12 end ;; $if_8 local.get $2 - i32.const 29320 + i32.const 29336 i32.store offset=4 local.get $2 i32.const 0 @@ -38317,7 +38317,7 @@ local.get $2 local.get $4 i32.const 1 - i32.const 15935 + i32.const 15943 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ drop local.get $8 @@ -38350,7 +38350,7 @@ local.tee $2 i32.const -2 i32.and - i32.const 29320 + i32.const 29336 local.get $2 i32.const 1 i32.and @@ -38369,7 +38369,7 @@ local.tee $0 i32.const -2 i32.and - i32.const 29320 + i32.const 29336 local.get $0 i32.const 1 i32.and @@ -41410,13 +41410,13 @@ i32.add local.tee $2 i32.load - i32.const 29320 + i32.const 29336 i32.eq if $if_1 local.get $2 local.get $0 i32.load offset=12 - i32.const 29320 + i32.const 29336 call $__ZN6google8protobuf8internal14ArenaStringPtr14CreateInstanceEPNS0_5ArenaEPKNSt3__212basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEE end ;; $if_1 local.get $1 @@ -41432,7 +41432,7 @@ local.get $2 i32.load local.tee $4 - i32.const 29320 + i32.const 29336 i32.eq if $if_2 local.get $2 @@ -41500,7 +41500,7 @@ local.get $0 i32.load offset=8 local.tee $0 - i32.const 29176 + i32.const 29192 i32.load local.get $0 select @@ -41530,7 +41530,7 @@ i32.const 3 i32.store local.get $1 - i32.const 15499 + i32.const 15507 i32.store offset=4 local.get $1 i32.const 1567 @@ -41542,7 +41542,7 @@ i32.const 0 i32.store offset=20 local.get $1 - i32.const 17879 + i32.const 17887 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $1 @@ -41746,19 +41746,19 @@ i32.const 21 i32.store offset=4 local.get $1 - i32.const 17961 + i32.const 17969 i64.load align=1 i64.store align=1 local.get $1 - i32.const 17969 + i32.const 17977 i64.load align=1 i64.store offset=8 align=1 local.get $1 - i32.const 17977 + i32.const 17985 i32.load align=1 i32.store offset=16 align=1 local.get $1 - i32.const 17981 + i32.const 17989 i32.load8_s i32.store8 offset=20 local.get $1 @@ -41834,10 +41834,10 @@ local.get $1 call $__ZN6google8protobuf5Value9MergeFromERKS1_ else - i32.const 17472 - i32.const 17513 + i32.const 17480 + i32.const 17521 i32.const 92 - i32.const 17562 + i32.const 17570 call $___assert_fail end ;; $if ) @@ -41900,7 +41900,7 @@ local.get $2 local.get $3 i32.const 1 - i32.const 15900 + i32.const 15908 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ drop i32.const 3 @@ -41912,7 +41912,7 @@ local.get $0 i32.load offset=8 else - i32.const 29320 + i32.const 29336 end ;; $if_3 local.get $1 call $__ZN6google8protobuf8internal14WireFormatLite23WriteStringMaybeAliasedEiRKNSt3__212basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEPNS0_2io17CodedOutputStreamE @@ -41962,7 +41962,7 @@ local.tee $2 i32.const -2 i32.and - i32.const 29320 + i32.const 29336 local.get $2 i32.const 1 i32.and @@ -41981,7 +41981,7 @@ local.tee $0 i32.const -2 i32.and - i32.const 29320 + i32.const 29336 local.get $0 i32.const 1 i32.and @@ -42136,13 +42136,13 @@ i32.store offset=4 block $block block $block_0 - i32.const 29356 + i32.const 29372 i32.load local.tee $3 i32.eqz local.tee $11 br_if $block_0 - i32.const 29352 + i32.const 29368 i32.load local.get $3 local.get $3 @@ -42253,13 +42253,13 @@ br $block end ;; $block_0 local.get $11 - i32.const 29368 + i32.const 29384 f32.load local.tee $14 local.get $3 f32.convert_i32_u f32.mul - i32.const 29364 + i32.const 29380 i32.load i32.const 1 i32.add @@ -42318,7 +42318,7 @@ i32.lt_u select call $__ZNSt3__212__hash_tableINS_17__hash_value_typeIiNS_10unique_ptrI11ContextBaseNS_14default_deleteIS3_EEEEEENS_22__unordered_map_hasherIiS7_NS_4hashIiEELb1EEENS_21__unordered_map_equalIiS7_NS_8equal_toIiEELb1EEENS_9allocatorIS7_EEE6rehashEm - i32.const 29356 + i32.const 29372 i32.load local.set $3 local.get $4 @@ -42329,7 +42329,7 @@ local.set $2 block $block_2 block $block_3 - i32.const 29352 + i32.const 29368 i32.load local.get $3 local.get $3 @@ -42374,14 +42374,14 @@ br $block_3 else local.get $4 - i32.const 29360 + i32.const 29376 i32.load i32.store - i32.const 29360 + i32.const 29376 local.get $4 i32.store local.get $11 - i32.const 29360 + i32.const 29376 i32.store local.get $4 i32.load @@ -42390,7 +42390,7 @@ local.get $2 i32.load offset=4 local.set $2 - i32.const 29352 + i32.const 29368 i32.load local.get $10 if $if_14 (result i32) @@ -42427,8 +42427,8 @@ local.get $4 i32.store end ;; $block_2 - i32.const 29364 - i32.const 29364 + i32.const 29380 + i32.const 29380 i32.load i32.const 1 i32.add @@ -42552,7 +42552,7 @@ i32.add i32.const 0 i32.store8 - i32.const 29396 + i32.const 29412 i32.load local.tee $1 if $if_21 @@ -43397,12 +43397,12 @@ local.set $12 block $block block $block_0 - i32.const 29356 + i32.const 29372 i32.load local.tee $5 i32.eqz br_if $block_0 - i32.const 29352 + i32.const 29368 i32.load local.get $5 local.get $5 @@ -43538,7 +43538,7 @@ local.set $0 br $block end ;; $block_0 - i32.const 29392 + i32.const 29408 i32.load i32.eqz if $if_7 @@ -43766,7 +43766,7 @@ i32.add i32.const 0 i32.store8 - i32.const 29392 + i32.const 29408 i32.load local.get $7 call $__ZNSt3__212__hash_tableINS_17__hash_value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEENS_8functionIFNS_10unique_ptrI11RootContextNS_14default_deleteISA_EEEEjNS_17basic_string_viewIcS4_EEEEEEENS_22__unordered_map_hasherIS7_SI_NS_4hashIS7_EELb1EEENS_21__unordered_map_equalIS7_SI_NS_8equal_toIS7_EELb1EEENS5_ISI_EEE4findIS7_EENS_15__hash_iteratorIPNS_11__hash_nodeISI_PvEEEERKT_ @@ -44117,7 +44117,7 @@ (local $3 i32) (local $4 i32) (local $5 i32) - i32.const 29356 + i32.const 29372 i32.load local.tee $1 i32.eqz @@ -44125,7 +44125,7 @@ i32.const 0 return end ;; $if - i32.const 29352 + i32.const 29368 i32.load local.get $1 local.get $1 @@ -44293,7 +44293,7 @@ local.get $0 i32.load local.set $4 - i32.const 29356 + i32.const 29372 i32.load local.tee $2 i32.eqz @@ -44302,7 +44302,7 @@ i32.const 0 local.set $0 else - i32.const 29352 + i32.const 29368 i32.load local.get $2 local.get $2 @@ -44441,13 +44441,13 @@ i32.const 0 i32.store local.get $6 - i32.const 29368 + i32.const 29384 f32.load local.tee $8 local.get $2 f32.convert_i32_u f32.mul - i32.const 29364 + i32.const 29380 i32.load i32.const 1 i32.add @@ -44507,7 +44507,7 @@ i32.lt_u select call $__ZNSt3__212__hash_tableINS_17__hash_value_typeIiNS_10unique_ptrI11ContextBaseNS_14default_deleteIS3_EEEEEENS_22__unordered_map_hasherIiS7_NS_4hashIiEELb1EEENS_21__unordered_map_equalIiS7_NS_8equal_toIiEELb1EEENS_9allocatorIS7_EEE6rehashEm - i32.const 29356 + i32.const 29372 i32.load local.tee $1 i32.const -1 @@ -44544,7 +44544,7 @@ end ;; $if_9 block $block_3 block $block_4 - i32.const 29352 + i32.const 29368 i32.load local.get $0 i32.const 2 @@ -44561,14 +44561,14 @@ br $block_4 else local.get $3 - i32.const 29360 + i32.const 29376 i32.load i32.store - i32.const 29360 + i32.const 29376 local.get $3 i32.store local.get $2 - i32.const 29360 + i32.const 29376 i32.store local.get $3 i32.load @@ -44577,7 +44577,7 @@ local.get $0 i32.load offset=4 local.set $0 - i32.const 29352 + i32.const 29368 i32.load local.get $1 local.get $1 @@ -44619,8 +44619,8 @@ local.get $3 i32.store end ;; $block_3 - i32.const 29364 - i32.const 29364 + i32.const 29380 + i32.const 29380 i32.load i32.const 1 i32.add @@ -45196,7 +45196,7 @@ i32.xor local.set $6 block $block_3 - i32.const 29376 + i32.const 29392 i32.load local.tee $2 i32.eqz @@ -45205,7 +45205,7 @@ i32.const 0 local.set $5 else - i32.const 29372 + i32.const 29388 i32.load local.get $2 local.get $2 @@ -45553,13 +45553,13 @@ i32.const 0 i32.store local.get $12 - i32.const 29388 + i32.const 29404 f32.load local.tee $13 local.get $2 f32.convert_i32_u f32.mul - i32.const 29384 + i32.const 29400 i32.load i32.const 1 i32.add @@ -45619,7 +45619,7 @@ i32.lt_u select call $__ZNSt3__212__hash_tableINS_17__hash_value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEP11RootContextEENS_22__unordered_map_hasherIS7_SA_NS_4hashIS7_EELb1EEENS_21__unordered_map_equalIS7_SA_NS_8equal_toIS7_EELb1EEENS5_ISA_EEE6rehashEm - i32.const 29376 + i32.const 29392 i32.load local.tee $0 i32.const -1 @@ -45656,7 +45656,7 @@ end ;; $if_21 block $block_12 block $block_13 - i32.const 29372 + i32.const 29388 i32.load local.get $5 i32.const 2 @@ -45675,14 +45675,14 @@ br $block_13 else local.get $4 - i32.const 29380 + i32.const 29396 i32.load i32.store - i32.const 29380 + i32.const 29396 local.get $4 i32.store local.get $2 - i32.const 29380 + i32.const 29396 i32.store local.get $4 i32.load @@ -45691,7 +45691,7 @@ local.get $1 i32.load offset=4 local.set $1 - i32.const 29372 + i32.const 29388 i32.load local.get $0 local.get $0 @@ -45733,8 +45733,8 @@ local.get $4 i32.store end ;; $block_12 - i32.const 29384 - i32.const 29384 + i32.const 29400 + i32.const 29400 i32.load i32.const 1 i32.add @@ -45774,7 +45774,7 @@ end ;; $if_0 end ;; $if local.tee $1 - i32.const 29376 + i32.const 29392 i32.load local.tee $0 i32.gt_u @@ -45800,10 +45800,10 @@ i32.gt_u i32.and local.set $3 - i32.const 29384 + i32.const 29400 i32.load f32.convert_i32_u - i32.const 29388 + i32.const 29404 f32.load f32.div f32.ceil @@ -45885,10 +45885,10 @@ local.get $0 i32.eqz if $if - i32.const 29372 + i32.const 29388 i32.load local.set $0 - i32.const 29372 + i32.const 29388 i32.const 0 i32.store local.get $0 @@ -45896,7 +45896,7 @@ local.get $0 call $_free end ;; $if_0 - i32.const 29376 + i32.const 29392 i32.const 0 i32.store return @@ -45922,10 +45922,10 @@ i32.shl call $__Znwm local.set $2 - i32.const 29372 + i32.const 29388 i32.load local.set $1 - i32.const 29372 + i32.const 29388 local.get $2 i32.store local.get $1 @@ -45933,13 +45933,13 @@ local.get $1 call $_free end ;; $if_2 - i32.const 29376 + i32.const 29392 local.get $0 i32.store i32.const 0 local.set $1 loop $loop - i32.const 29372 + i32.const 29388 i32.load local.get $1 i32.const 2 @@ -45955,7 +45955,7 @@ i32.ne br_if $loop end ;; $loop - i32.const 29380 + i32.const 29396 i32.load local.tee $6 i32.eqz @@ -45965,7 +45965,7 @@ local.get $6 i32.load offset=4 local.set $1 - i32.const 29372 + i32.const 29388 i32.load local.get $0 local.get $0 @@ -46000,7 +46000,7 @@ i32.const 2 i32.shl i32.add - i32.const 29380 + i32.const 29396 i32.store local.get $6 i32.load @@ -46042,7 +46042,7 @@ local.get $4 else block $block (result i32) - i32.const 29372 + i32.const 29388 i32.load local.get $8 i32.const 2 @@ -46270,7 +46270,7 @@ i32.load i32.store local.get $1 - i32.const 29372 + i32.const 29388 i32.load local.get $8 i32.const 2 @@ -46279,7 +46279,7 @@ i32.load i32.load i32.store - i32.const 29372 + i32.const 29388 i32.load local.get $8 i32.const 2 @@ -46327,7 +46327,7 @@ end ;; $if_0 end ;; $if local.tee $1 - i32.const 29356 + i32.const 29372 i32.load local.tee $0 i32.gt_u @@ -46353,10 +46353,10 @@ i32.gt_u i32.and local.set $3 - i32.const 29364 + i32.const 29380 i32.load f32.convert_i32_u - i32.const 29368 + i32.const 29384 f32.load f32.div f32.ceil @@ -46432,10 +46432,10 @@ local.get $0 i32.eqz if $if - i32.const 29352 + i32.const 29368 i32.load local.set $0 - i32.const 29352 + i32.const 29368 i32.const 0 i32.store local.get $0 @@ -46443,7 +46443,7 @@ local.get $0 call $_free end ;; $if_0 - i32.const 29356 + i32.const 29372 i32.const 0 i32.store return @@ -46469,10 +46469,10 @@ i32.shl call $__Znwm local.set $2 - i32.const 29352 + i32.const 29368 i32.load local.set $1 - i32.const 29352 + i32.const 29368 local.get $2 i32.store local.get $1 @@ -46480,13 +46480,13 @@ local.get $1 call $_free end ;; $if_2 - i32.const 29356 + i32.const 29372 local.get $0 i32.store i32.const 0 local.set $1 loop $loop - i32.const 29352 + i32.const 29368 i32.load local.get $1 i32.const 2 @@ -46502,7 +46502,7 @@ i32.ne br_if $loop end ;; $loop - i32.const 29360 + i32.const 29376 i32.load local.tee $4 i32.eqz @@ -46512,7 +46512,7 @@ local.get $4 i32.load offset=4 local.set $1 - i32.const 29352 + i32.const 29368 i32.load local.get $0 local.get $0 @@ -46547,7 +46547,7 @@ i32.const 2 i32.shl i32.add - i32.const 29360 + i32.const 29376 i32.store local.get $4 i32.load @@ -46574,7 +46574,7 @@ local.get $0 else block $block (result i32) - i32.const 29352 + i32.const 29368 i32.load local.get $3 i32.const 2 @@ -46633,7 +46633,7 @@ i32.load i32.store local.get $1 - i32.const 29352 + i32.const 29368 i32.load local.get $3 i32.const 2 @@ -46642,7 +46642,7 @@ i32.load i32.load i32.store - i32.const 29352 + i32.const 29368 i32.load local.get $3 i32.const 2 @@ -46689,7 +46689,7 @@ local.get $1 else block $block_2 (result i32) - i32.const 29352 + i32.const 29368 i32.load local.get $3 i32.const 2 @@ -46748,7 +46748,7 @@ i32.load i32.store local.get $2 - i32.const 29352 + i32.const 29368 i32.load local.get $3 i32.const 2 @@ -46757,7 +46757,7 @@ i32.load i32.load i32.store - i32.const 29352 + i32.const 29368 i32.load local.get $3 i32.const 2 @@ -46784,7 +46784,7 @@ (local $3 i32) (local $4 i32) (local $5 i32) - i32.const 29356 + i32.const 29372 i32.load local.tee $1 i32.eqz @@ -46792,7 +46792,7 @@ i32.const 0 return end ;; $if - i32.const 29352 + i32.const 29368 i32.load local.get $1 local.get $1 @@ -46959,14 +46959,14 @@ local.get $0 i32.load local.set $3 - i32.const 29356 + i32.const 29372 i32.load local.tee $2 i32.eqz if $if return end ;; $if - i32.const 29352 + i32.const 29368 i32.load local.tee $4 local.get $2 @@ -47134,7 +47134,7 @@ block $block_1 (result i32) block $block_2 local.get $3 - i32.const 29360 + i32.const 29376 i32.eq br_if $block_2 local.get $3 @@ -47244,7 +47244,7 @@ local.tee $2 i32.ne if $if_26 (result i32) - i32.const 29352 + i32.const 29368 i32.load local.get $2 i32.const 2 @@ -47264,8 +47264,8 @@ local.get $8 i32.const 0 i32.store - i32.const 29364 - i32.const 29364 + i32.const 29380 + i32.const 29380 i32.load i32.const -1 i32.add @@ -47314,7 +47314,7 @@ i32.const 16 i32.add global.set $36 - i32.const 29392 + i32.const 29408 i32.load i32.eqz if $if @@ -47329,7 +47329,7 @@ local.get $3 i32.const 1065353216 i32.store offset=16 - i32.const 29392 + i32.const 29408 local.get $3 i32.store i32.const 20 @@ -47343,7 +47343,7 @@ local.get $3 i32.const 1065353216 i32.store offset=16 - i32.const 29396 + i32.const 29412 local.get $3 i32.store end ;; $if @@ -47354,7 +47354,7 @@ i32.load8_s offset=8 i32.eqz if $if_0 - i32.const 29396 + i32.const 29412 i32.load local.set $6 local.get $3 @@ -47500,7 +47500,7 @@ global.set $36 return end ;; $if_7 - i32.const 29392 + i32.const 29408 i32.load local.set $5 local.get $3 @@ -49724,7 +49724,7 @@ local.get $1 i32.const 17 i32.store - i32.const 29400 + i32.const 29416 i32.load i32.const -1 i32.ne @@ -49738,7 +49738,7 @@ local.get $2 call $__ZNSt3__211__call_onceERVmPvPFvS2_E end ;; $if_0 - i32.const 29404 + i32.const 29420 i32.load drop local.get $0 @@ -49809,7 +49809,7 @@ local.get $0 i32.const 0 i32.store offset=24 - i32.const 29404 + i32.const 29420 local.get $0 i32.store i32.const 177 @@ -49894,14 +49894,14 @@ (func $__ZN6google8protobuf8internal22DeleteLogSilencerCountEv (type $8) (local $0 i32) - i32.const 29404 + i32.const 29420 i32.load local.tee $0 if $if local.get $0 call $_free end ;; $if - i32.const 29404 + i32.const 29420 i32.const 0 i32.store ) @@ -49927,11 +49927,11 @@ i32.const 16 i32.add global.set $36 - i32.const 29312 + i32.const 29328 i32.load8_s i32.eqz if $if - i32.const 29312 + i32.const 29328 i32.load8_s i32.const 0 i32.ne @@ -49955,21 +49955,21 @@ local.get $2 i64.const 0 i64.store offset=32 align=4 - i32.const 29408 + i32.const 29424 local.get $2 i32.store - i32.const 29312 + i32.const 29328 i32.const 0 i32.store - i32.const 29312 - i32.const 29312 + i32.const 29328 + i32.const 29328 i32.load i32.const 1 i32.or i32.store end ;; $if_0 end ;; $if - i32.const 29408 + i32.const 29424 i32.load local.set $2 local.get $3 @@ -50186,7 +50186,7 @@ i32.store local.get $2 i32.const 128 - i32.const 21376 + i32.const 21384 local.get $3 call $_snprintf drop @@ -50224,7 +50224,7 @@ i32.store local.get $2 i32.const 128 - i32.const 18882 + i32.const 18890 local.get $3 call $_snprintf drop @@ -50262,7 +50262,7 @@ i32.store local.get $2 i32.const 128 - i32.const 18885 + i32.const 18893 local.get $3 call $_snprintf drop @@ -50303,14 +50303,14 @@ i32.const 16 i32.add global.set $36 - i32.const 29412 + i32.const 29428 i64.const 0 i64.store align=4 - i32.const 29420 + i32.const 29436 i64.const 0 i64.store align=4 local.get $0 - i32.const 30166 + i32.const 30182 i32.store local.get $0 i32.const 0 @@ -50322,12 +50322,12 @@ local.get $0 i64.load align=4 i64.store align=4 - i32.const 29428 + i32.const 29444 i32.const 1 local.get $1 call $__ZN6google8protobuf4util6StatusC2ENS1_5error4CodeENS0_11StringPieceE local.get $0 - i32.const 30166 + i32.const 30182 i32.store local.get $0 i32.const 0 @@ -50336,7 +50336,7 @@ local.get $0 i64.load align=4 i64.store align=4 - i32.const 29444 + i32.const 29460 i32.const 2 local.get $1 call $__ZN6google8protobuf4util6StatusC2ENS1_5error4CodeENS0_11StringPieceE @@ -50551,7 +50551,7 @@ i32.const 3 i32.store local.get $3 - i32.const 18889 + i32.const 18897 i32.store offset=4 local.get $3 i32.const 116 @@ -50563,7 +50563,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 18914 + i32.const 18922 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -61411,7 +61411,7 @@ i32.const 3 i32.store local.get $11 - i32.const 19001 + i32.const 19009 i32.store offset=4 local.get $11 i32.const 571 @@ -61423,7 +61423,7 @@ i32.const 0 i32.store offset=20 local.get $11 - i32.const 19043 + i32.const 19051 call $__ZN6google8protobuf8internal10LogMessagelsEPKc local.get $4 call $__ZN6google8protobuf8internal10LogMessagelsEi @@ -61460,7 +61460,7 @@ i32.const 3 i32.store local.get $1 - i32.const 19001 + i32.const 19009 i32.store offset=4 local.get $1 i32.const 534 @@ -61472,12 +61472,12 @@ i32.const 0 i32.store offset=20 local.get $1 - i32.const 19043 + i32.const 19051 call $__ZN6google8protobuf8internal10LogMessagelsEPKc local.get $0 i32.load offset=4 call $__ZN6google8protobuf8internal10LogMessagelsEj - i32.const 19073 + i32.const 19081 call $__ZN6google8protobuf8internal10LogMessagelsEPKc local.get $0 i32.load offset=12 @@ -61498,29 +61498,29 @@ i32.const 32 i32.add global.set $36 - i32.const 29344 + i32.const 29360 i32.load8_s i32.eqz if $if - i32.const 29344 + i32.const 29360 i32.load8_s i32.const 0 i32.ne i32.const 1 i32.xor if $if_0 - i32.const 29344 + i32.const 29360 i32.const 0 i32.store - i32.const 29344 - i32.const 29344 + i32.const 29360 + i32.const 29360 i32.load i32.const 1 i32.or i32.store end ;; $if_0 end ;; $if - i32.const 29488 + i32.const 29504 i32.load i32.const 9260 call $_pthread_equal @@ -61538,7 +61538,7 @@ i32.const 3 i32.store local.get $1 - i32.const 19001 + i32.const 19009 i32.store offset=4 local.get $1 i32.const 801 @@ -61550,7 +61550,7 @@ i32.const 0 i32.store offset=20 local.get $1 - i32.const 19085 + i32.const 19093 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $1 @@ -61559,43 +61559,43 @@ global.set $36 return end ;; $if_1 - i32.const 29336 + i32.const 29352 i32.load8_s i32.eqz if $if_3 - i32.const 29336 + i32.const 29352 i32.load8_s i32.const 0 i32.ne i32.const 1 i32.xor if $if_4 - i32.const 29320 + i32.const 29336 i64.const 0 i64.store - i32.const 29328 + i32.const 29344 i32.const 0 i32.store i32.const 178 - i32.const 29320 - call $__ZN6google8protobuf8internal13OnShutdownRunEPFvPKvES3_ i32.const 29336 + call $__ZN6google8protobuf8internal13OnShutdownRunEPFvPKvES3_ + i32.const 29352 i32.const 0 i32.store - i32.const 29336 - i32.const 29336 + i32.const 29352 + i32.const 29352 i32.load i32.const 1 i32.or i32.store end ;; $if_4 end ;; $if_3 - i32.const 29488 + i32.const 29504 i32.const 9260 i32.store local.get $0 call $__ZN6google8protobuf8internal12_GLOBAL__N_111InitSCC_DFSEPNS1_11SCCInfoBaseE - i32.const 29488 + i32.const 29504 i32.const 0 i32.store local.get $1 @@ -61687,31 +61687,31 @@ i32.const 50 i32.store offset=4 local.get $1 - i32.const 19250 + i32.const 19258 i64.load align=1 i64.store align=1 local.get $1 - i32.const 19258 + i32.const 19266 i64.load align=1 i64.store offset=8 align=1 local.get $1 - i32.const 19266 + i32.const 19274 i64.load align=1 i64.store offset=16 align=1 local.get $1 - i32.const 19274 + i32.const 19282 i64.load align=1 i64.store offset=24 align=1 local.get $1 - i32.const 19282 + i32.const 19290 i64.load align=1 i64.store offset=32 align=1 local.get $1 - i32.const 19290 + i32.const 19298 i64.load align=1 i64.store offset=40 align=1 local.get $1 - i32.const 19298 + i32.const 19306 i32.load16_s align=1 i32.store16 offset=48 align=1 local.get $1 @@ -61731,7 +61731,7 @@ i32.load local.set $2 local.get $0 - i32.const 30157 + i32.const 30173 i32.load8_s i32.const 1 i32.and @@ -61848,7 +61848,7 @@ i32.const 3 i32.store local.get $4 - i32.const 19180 + i32.const 19188 i32.store offset=4 local.get $4 i32.const 373 @@ -61860,7 +61860,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 19212 + i32.const 19220 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -61985,7 +61985,7 @@ i32.const 2 i32.store local.get $6 - i32.const 19180 + i32.const 19188 i32.store offset=4 local.get $6 i32.const 121 @@ -62003,15 +62003,15 @@ i32.const 0 i32.store offset=8 local.get $5 - i32.const 19339 + i32.const 19347 call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc drop local.get $5 - i32.const 19333 + i32.const 19341 call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc drop local.get $5 - i32.const 19346 + i32.const 19354 call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc drop local.get $4 @@ -62054,7 +62054,7 @@ call $_free end ;; $if_1 local.get $5 - i32.const 19365 + i32.const 19373 call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc drop local.get $4 @@ -62148,7 +62148,7 @@ i32.const 3 i32.store local.get $6 - i32.const 19180 + i32.const 19188 i32.store offset=4 local.get $6 i32.const 68 @@ -62160,7 +62160,7 @@ i32.const 0 i32.store offset=20 local.get $6 - i32.const 19447 + i32.const 19455 call $__ZN6google8protobuf8internal10LogMessagelsEPKc local.set $1 local.get $5 @@ -62176,7 +62176,7 @@ local.get $1 local.get $5 call $__ZN6google8protobuf8internal10LogMessagelsERKNSt3__212basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEE - i32.const 19531 + i32.const 19539 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $5 @@ -62199,7 +62199,7 @@ i32.const 3 i32.store local.get $4 - i32.const 19180 + i32.const 19188 i32.store offset=4 local.get $4 i32.const 75 @@ -62211,7 +62211,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 19821 + i32.const 19829 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -62228,7 +62228,7 @@ i32.const 3 i32.store local.get $0 - i32.const 19180 + i32.const 19188 i32.store offset=4 local.get $0 i32.const 71 @@ -62240,9 +62240,9 @@ i32.const 0 i32.store offset=20 local.get $1 - i32.const 19580 + i32.const 19588 call $__ZN6google8protobuf8internal10LogMessagelsEPKc - i32.const 19666 + i32.const 19674 call $__ZN6google8protobuf8internal10LogMessagelsEPKc local.set $0 local.get $5 @@ -62258,7 +62258,7 @@ local.get $0 local.get $5 call $__ZN6google8protobuf8internal10LogMessagelsERKNSt3__212basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEE - i32.const 24074 + i32.const 24082 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $5 @@ -62276,7 +62276,7 @@ i32.const 3 i32.store local.get $4 - i32.const 19180 + i32.const 19188 i32.store offset=4 local.get $4 i32.const 75 @@ -62288,7 +62288,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 19821 + i32.const 19829 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -62338,7 +62338,7 @@ i32.const 2 i32.store local.get $2 - i32.const 19180 + i32.const 19188 i32.store offset=4 local.get $2 i32.const 289 @@ -62350,7 +62350,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 19407 + i32.const 19415 call $__ZN6google8protobuf8internal10LogMessagelsEPKc local.get $3 call $__ZN6google8protobuf8internal10LogMessagelsEm @@ -62507,7 +62507,7 @@ i32.const 3 i32.store local.get $3 - i32.const 19874 + i32.const 19882 i32.store offset=4 local.get $3 i32.const 59 @@ -62519,9 +62519,9 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 19908 + i32.const 19916 call $__ZN6google8protobuf8internal10LogMessagelsEPKc - i32.const 20025 + i32.const 20033 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -64345,7 +64345,7 @@ i32.const 3 i32.store local.get $4 - i32.const 20073 + i32.const 20081 i32.store offset=4 local.get $4 i32.const 507 @@ -64357,7 +64357,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 20109 + i32.const 20117 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -64600,7 +64600,7 @@ i32.const 3 i32.store local.get $5 - i32.const 20073 + i32.const 20081 i32.store offset=4 local.get $5 i32.const 516 @@ -64612,7 +64612,7 @@ i32.const 0 i32.store offset=20 local.get $5 - i32.const 20109 + i32.const 20117 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $5 @@ -64804,7 +64804,7 @@ i32.const 3 i32.store local.get $4 - i32.const 20073 + i32.const 20081 i32.store offset=4 local.get $4 i32.const 531 @@ -64816,7 +64816,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 20109 + i32.const 20117 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -65495,13 +65495,13 @@ i32.load offset=8 i32.store offset=8 end ;; $if_0 - i32.const 20155 + i32.const 20163 i32.const 0 local.get $2 i32.const 1 i32.eq select - i32.const 20167 + i32.const 20175 local.get $2 select local.set $3 @@ -65513,7 +65513,7 @@ i32.const 2 i32.store local.get $1 - i32.const 20073 + i32.const 20081 i32.store offset=4 local.get $1 i32.const 626 @@ -65525,21 +65525,21 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 20181 + i32.const 20189 call $__ZN6google8protobuf8internal10LogMessagelsEPKc local.get $0 call $__ZN6google8protobuf8internal10LogMessagelsERKNSt3__212basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEE - i32.const 20194 + i32.const 20202 call $__ZN6google8protobuf8internal10LogMessagelsEPKc - i32.const 20213 + i32.const 20221 call $__ZN6google8protobuf8internal10LogMessagelsEPKc local.get $3 call $__ZN6google8protobuf8internal10LogMessagelsEPKc - i32.const 20230 + i32.const 20238 call $__ZN6google8protobuf8internal10LogMessagelsEPKc - i32.const 20243 + i32.const 20251 call $__ZN6google8protobuf8internal10LogMessagelsEPKc - i32.const 20299 + i32.const 20307 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -66375,7 +66375,7 @@ i32.const 3 i32.store local.get $2 - i32.const 20307 + i32.const 20315 i32.store offset=4 local.get $2 i32.const 591 @@ -66387,7 +66387,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 20342 + i32.const 20350 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -66530,7 +66530,7 @@ i32.const 2 i32.store local.get $1 - i32.const 20307 + i32.const 20315 i32.store offset=4 local.get $1 i32.const 190 @@ -66542,12 +66542,12 @@ i32.const 0 i32.store offset=20 local.get $1 - i32.const 20379 + i32.const 20387 call $__ZN6google8protobuf8internal10LogMessagelsEPKc local.get $0 i32.load offset=36 call $__ZN6google8protobuf8internal10LogMessagelsEi - i32.const 20446 + i32.const 20454 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $1 @@ -69005,7 +69005,7 @@ i32.const 3 i32.store local.get $2 - i32.const 20591 + i32.const 20599 i32.store offset=4 local.get $2 i32.const 132 @@ -69017,9 +69017,9 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 20671 + i32.const 20679 call $__ZN6google8protobuf8internal10LogMessagelsEPKc - i32.const 20715 + i32.const 20723 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -69040,7 +69040,7 @@ i32.const 3 i32.store local.get $2 - i32.const 20591 + i32.const 20599 i32.store offset=4 local.get $2 i32.const 134 @@ -69052,7 +69052,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 20770 + i32.const 20778 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -69079,7 +69079,7 @@ i32.const 3 i32.store local.get $3 - i32.const 20591 + i32.const 20599 i32.store offset=4 local.get $3 i32.const 135 @@ -69091,7 +69091,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 20640 + i32.const 20648 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -69147,7 +69147,7 @@ i32.const 3 i32.store local.get $3 - i32.const 20591 + i32.const 20599 i32.store offset=4 local.get $3 i32.const 151 @@ -69159,7 +69159,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 20860 + i32.const 20868 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -69233,7 +69233,7 @@ i32.const 2 i32.store local.get $5 - i32.const 20591 + i32.const 20599 i32.store offset=4 local.get $5 i32.const 164 @@ -69245,9 +69245,9 @@ i32.const 0 i32.store offset=20 local.get $5 - i32.const 20937 + i32.const 20945 call $__ZN6google8protobuf8internal10LogMessagelsEPKc - i32.const 20987 + i32.const 20995 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $5 @@ -69322,7 +69322,7 @@ i32.const 3 i32.store local.get $2 - i32.const 20591 + i32.const 20599 i32.store offset=4 local.get $2 i32.const 182 @@ -69334,7 +69334,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 20640 + i32.const 20648 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -69355,7 +69355,7 @@ i32.const 3 i32.store local.get $2 - i32.const 20591 + i32.const 20599 i32.store offset=4 local.get $2 i32.const 183 @@ -69367,7 +69367,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 20860 + i32.const 20868 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -69397,7 +69397,7 @@ i32.const 3 i32.store local.get $3 - i32.const 20591 + i32.const 20599 i32.store offset=4 local.get $3 i32.const 184 @@ -69409,7 +69409,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 20892 + i32.const 20900 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -69470,7 +69470,7 @@ i32.const 3 i32.store local.get $1 - i32.const 20591 + i32.const 20599 i32.store offset=4 local.get $1 i32.const 189 @@ -69482,7 +69482,7 @@ i32.const 0 i32.store offset=20 local.get $1 - i32.const 20860 + i32.const 20868 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $1 @@ -69537,7 +69537,7 @@ i32.add local.tee $3 i32.const 1024 - i32.const 20175 + i32.const 20183 local.get $2 call $_vsnprintf local.tee $4 @@ -69570,7 +69570,7 @@ i32.store local.get $3 local.get $5 - i32.const 20175 + i32.const 20183 local.get $2 call $_vsnprintf local.tee $1 @@ -70117,7 +70117,7 @@ i32.const 3 i32.store local.get $0 - i32.const 21049 + i32.const 21057 i32.store offset=4 local.get $0 i32.const 47 @@ -70129,7 +70129,7 @@ i32.const 0 i32.store offset=20 local.get $0 - i32.const 21088 + i32.const 21096 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $0 @@ -70160,7 +70160,7 @@ i32.const -4096 i32.gt_u if $if - i32.const 29556 + i32.const 29572 i32.const 0 local.get $0 i32.sub @@ -70269,7 +70269,7 @@ i32.const -4096 i32.gt_u if $if (result i32) - i32.const 29556 + i32.const 29572 i32.const 0 local.get $0 i32.sub @@ -70297,7 +70297,7 @@ (func $___errno_location (type $14) (result i32) - i32.const 29556 + i32.const 29572 ) (func $___stdio_write (type $5) @@ -70368,7 +70368,7 @@ i32.const -4096 i32.gt_u if $if - i32.const 29556 + i32.const 29572 i32.const 0 local.get $1 i32.sub @@ -70445,7 +70445,7 @@ i32.const -4096 i32.gt_u if $if_1 - i32.const 29556 + i32.const 29572 i32.const 0 local.get $1 i32.sub @@ -70950,7 +70950,7 @@ br_if $block_0 local.get $1 if $if (result i32) - i32.const 29556 + i32.const 29572 i32.const 75 i32.store i32.const -1 @@ -71098,13 +71098,13 @@ local.tee $1 i64.reinterpret_f64 local.set $25 - i32.const 21272 + i32.const 21280 local.set $18 i32.const 1 else - i32.const 21275 - i32.const 21278 - i32.const 21273 + i32.const 21283 + i32.const 21286 + i32.const 21281 local.get $4 i32.const 1 i32.and @@ -71127,8 +71127,8 @@ i64.const 9218868437227405312 i64.eq if $if_0 (result i32) - i32.const 21299 - i32.const 21303 + i32.const 21307 + i32.const 21311 local.get $5 i32.const 32 i32.and @@ -71136,8 +71136,8 @@ i32.ne local.tee $3 select - i32.const 21291 - i32.const 21295 + i32.const 21299 + i32.const 21303 local.get $3 select local.get $1 @@ -72485,7 +72485,7 @@ i32.eqz if $if_54 local.get $0 - i32.const 24074 + i32.const 24082 i32.const 1 call $_out end ;; $if_54 @@ -72644,7 +72644,7 @@ br $block_4 end ;; $if_61 local.get $0 - i32.const 24074 + i32.const 24082 i32.const 1 call $_out local.get $6 @@ -73018,7 +73018,7 @@ i32.sub i32.gt_s if $if_0 (result i32) - i32.const 29556 + i32.const 29572 i32.const 75 i32.store i32.const -1 @@ -73734,7 +73734,7 @@ local.set $1 i32.const 0 local.set $12 - i32.const 21255 + i32.const 21263 local.set $8 br $block_14 end ;; $block_25 @@ -73750,13 +73750,13 @@ i64.sub local.tee $25 i64.store - i32.const 21255 + i32.const 21263 local.set $8 i32.const 1 else - i32.const 21256 - i32.const 21257 - i32.const 21255 + i32.const 21264 + i32.const 21265 + i32.const 21263 local.get $7 i32.const 1 i32.and @@ -73780,7 +73780,7 @@ local.set $25 i32.const 0 local.set $12 - i32.const 21255 + i32.const 21263 local.set $8 br $block_16 end ;; $block_23 @@ -73796,7 +73796,7 @@ local.set $5 i32.const 0 local.set $12 - i32.const 21255 + i32.const 21263 local.set $8 local.get $18 local.set $1 @@ -73805,7 +73805,7 @@ local.get $10 i32.load local.tee $5 - i32.const 21265 + i32.const 21273 local.get $5 select local.tee $6 @@ -73825,7 +73825,7 @@ local.set $5 i32.const 0 local.set $12 - i32.const 21255 + i32.const 21263 local.set $8 local.get $1 local.get $6 @@ -73886,7 +73886,7 @@ local.set $5 i32.const 0 local.set $12 - i32.const 21255 + i32.const 21263 local.set $8 local.get $18 local.set $1 @@ -73914,11 +73914,11 @@ local.tee $8 select local.set $12 - i32.const 21255 + i32.const 21263 local.get $6 i32.const 4 i32.shr_u - i32.const 21255 + i32.const 21263 i32.add local.get $8 select @@ -74770,7 +74770,7 @@ i32.const 1 br $block else - i32.const 29556 + i32.const 29572 i32.const 84 i32.store i32.const -1 @@ -74875,7 +74875,7 @@ i32.store8 offset=3 i32.const 4 else - i32.const 29556 + i32.const 29572 i32.const 84 i32.store i32.const -1 @@ -75103,7 +75103,7 @@ local.get $1 i32.store local.get $0 - i32.const 18762 + i32.const 18770 local.get $2 call $_vfprintf drop @@ -75220,9 +75220,9 @@ end ;; $if_1 local.set $0 block $block_0 (result i32) - i32.const 29560 + i32.const 29576 call $___lock - i32.const 29568 + i32.const 29584 i32.load local.tee $1 end ;; $block_0 @@ -75256,7 +75256,7 @@ br_if $loop end ;; $loop end ;; $if_2 - i32.const 29560 + i32.const 29576 call $___unlock end ;; $if local.get $0 @@ -75438,7 +75438,7 @@ i32.const 245 i32.lt_u if $if (result i32) - i32.const 29572 + i32.const 29588 i32.load local.tee $6 i32.const 16 @@ -75470,7 +75470,7 @@ local.tee $0 i32.const 3 i32.shl - i32.const 29612 + i32.const 29628 i32.add local.tee $3 i32.load offset=8 @@ -75483,7 +75483,7 @@ local.get $3 i32.eq if $if_1 - i32.const 29572 + i32.const 29588 local.get $6 i32.const 1 local.get $0 @@ -75493,7 +75493,7 @@ i32.and i32.store else - i32.const 29588 + i32.const 29604 i32.load local.get $4 i32.gt_u @@ -75538,7 +75538,7 @@ return end ;; $if_0 local.get $14 - i32.const 29580 + i32.const 29596 i32.load local.tee $13 i32.gt_u @@ -75617,7 +75617,7 @@ local.tee $0 i32.const 3 i32.shl - i32.const 29612 + i32.const 29628 i32.add local.tee $1 i32.load offset=8 @@ -75630,7 +75630,7 @@ local.get $1 i32.eq if $if_6 - i32.const 29572 + i32.const 29588 local.get $6 i32.const 1 local.get $0 @@ -75641,7 +75641,7 @@ local.tee $8 i32.store else - i32.const 29588 + i32.const 29604 i32.load local.get $2 i32.gt_u @@ -75691,7 +75691,7 @@ i32.store local.get $13 if $if_9 - i32.const 29592 + i32.const 29608 i32.load local.set $10 local.get $13 @@ -75700,7 +75700,7 @@ local.tee $0 i32.const 3 i32.shl - i32.const 29612 + i32.const 29628 i32.add local.set $2 local.get $8 @@ -75710,7 +75710,7 @@ local.tee $0 i32.and if $if_10 - i32.const 29588 + i32.const 29604 i32.load local.get $2 i32.const 8 @@ -75728,7 +75728,7 @@ local.set $4 end ;; $if_11 else - i32.const 29572 + i32.const 29588 local.get $0 local.get $8 i32.or @@ -75753,10 +75753,10 @@ local.get $2 i32.store offset=12 end ;; $if_9 - i32.const 29580 + i32.const 29596 local.get $6 i32.store - i32.const 29592 + i32.const 29608 local.get $3 i32.store local.get $17 @@ -75764,7 +75764,7 @@ local.get $9 return end ;; $if_5 - i32.const 29576 + i32.const 29592 i32.load local.tee $11 if $if_12 (result i32) @@ -75827,7 +75827,7 @@ i32.add i32.const 2 i32.shl - i32.const 29876 + i32.const 29892 i32.add i32.load local.tee $0 @@ -75877,7 +75877,7 @@ br $loop end ;; $block end ;; $loop - i32.const 29588 + i32.const 29604 i32.load local.tee $7 local.get $9 @@ -76001,7 +76001,7 @@ local.tee $1 i32.const 2 i32.shl - i32.const 29876 + i32.const 29892 i32.add local.tee $0 i32.load @@ -76014,7 +76014,7 @@ local.get $3 i32.eqz if $if_25 - i32.const 29576 + i32.const 29592 local.get $11 i32.const 1 local.get $1 @@ -76026,7 +76026,7 @@ br $block_2 end ;; $if_25 else - i32.const 29588 + i32.const 29604 i32.load local.get $18 i32.gt_u @@ -76051,7 +76051,7 @@ br_if $block_2 end ;; $if_26 end ;; $if_24 - i32.const 29588 + i32.const 29604 i32.load local.tee $0 local.get $3 @@ -76084,7 +76084,7 @@ i32.load offset=20 local.tee $0 if $if_30 - i32.const 29588 + i32.const 29604 i32.load local.get $0 i32.gt_u @@ -76140,7 +76140,7 @@ i32.store local.get $13 if $if_33 - i32.const 29592 + i32.const 29608 i32.load local.set $4 local.get $13 @@ -76149,7 +76149,7 @@ local.tee $0 i32.const 3 i32.shl - i32.const 29612 + i32.const 29628 i32.add local.set $3 local.get $6 @@ -76159,7 +76159,7 @@ local.tee $0 i32.and if $if_34 - i32.const 29588 + i32.const 29604 i32.load local.get $3 i32.const 8 @@ -76177,7 +76177,7 @@ local.set $12 end ;; $if_35 else - i32.const 29572 + i32.const 29588 local.get $0 local.get $6 i32.or @@ -76202,10 +76202,10 @@ local.get $3 i32.store offset=12 end ;; $if_33 - i32.const 29580 + i32.const 29596 local.get $10 i32.store - i32.const 29592 + i32.const 29608 local.get $5 i32.store end ;; $if_32 @@ -76236,7 +76236,7 @@ i32.const -8 i32.and local.set $15 - i32.const 29576 + i32.const 29592 i32.load local.tee $4 if $if_37 (result i32) @@ -76316,7 +76316,7 @@ local.tee $19 i32.const 2 i32.shl - i32.const 29876 + i32.const 29892 i32.add i32.load local.tee $0 @@ -76481,7 +76481,7 @@ i32.add i32.const 2 i32.shl - i32.const 29876 + i32.const 29892 i32.add i32.load local.set $0 @@ -76544,13 +76544,13 @@ local.get $2 if $if_47 (result i32) local.get $7 - i32.const 29580 + i32.const 29596 i32.load local.get $15 i32.sub i32.lt_u if $if_48 (result i32) - i32.const 29588 + i32.const 29604 i32.load local.tee $12 local.get $2 @@ -76674,7 +76674,7 @@ local.tee $3 i32.const 2 i32.shl - i32.const 29876 + i32.const 29892 i32.add local.tee $0 i32.load @@ -76687,7 +76687,7 @@ local.get $13 i32.eqz if $if_60 - i32.const 29576 + i32.const 29592 local.get $4 i32.const 1 local.get $3 @@ -76700,7 +76700,7 @@ br $block_9 end ;; $if_60 else - i32.const 29588 + i32.const 29604 i32.load local.get $8 i32.gt_u @@ -76729,7 +76729,7 @@ end ;; $if_62 end ;; $if_61 end ;; $if_59 - i32.const 29588 + i32.const 29604 i32.load local.tee $0 local.get $13 @@ -76762,7 +76762,7 @@ i32.load offset=20 local.tee $0 if $if_66 - i32.const 29588 + i32.const 29604 i32.load local.get $0 i32.gt_u @@ -76836,10 +76836,10 @@ local.get $0 i32.const 3 i32.shl - i32.const 29612 + i32.const 29628 i32.add local.set $3 - i32.const 29572 + i32.const 29588 i32.load local.tee $1 i32.const 1 @@ -76848,7 +76848,7 @@ local.tee $0 i32.and if $if_70 - i32.const 29588 + i32.const 29604 i32.load local.get $3 i32.const 8 @@ -76866,7 +76866,7 @@ local.set $11 end ;; $if_71 else - i32.const 29572 + i32.const 29588 local.get $0 local.get $1 i32.or @@ -76962,7 +76962,7 @@ local.tee $4 i32.const 2 i32.shl - i32.const 29876 + i32.const 29892 i32.add local.set $3 local.get $5 @@ -76982,7 +76982,7 @@ i32.and i32.eqz if $if_74 - i32.const 29576 + i32.const 29592 local.get $0 local.get $1 i32.or @@ -77063,7 +77063,7 @@ unreachable end ;; $if_76 end ;; $loop_4 - i32.const 29588 + i32.const 29604 i32.load local.get $4 i32.gt_u @@ -77086,7 +77086,7 @@ end ;; $if_78 end ;; $block_11 end ;; $if_75 - i32.const 29588 + i32.const 29604 i32.load local.tee $0 local.get $6 @@ -77139,13 +77139,13 @@ local.set $11 block $block_12 block $block_13 - i32.const 29580 + i32.const 29596 i32.load local.tee $3 local.get $11 i32.ge_u if $if_80 - i32.const 29592 + i32.const 29608 i32.load local.set $0 local.get $3 @@ -77155,13 +77155,13 @@ i32.const 15 i32.gt_u if $if_81 - i32.const 29592 + i32.const 29608 local.get $0 local.get $11 i32.add local.tee $1 i32.store - i32.const 29580 + i32.const 29596 local.get $2 i32.store local.get $1 @@ -77180,10 +77180,10 @@ i32.or i32.store offset=4 else - i32.const 29580 + i32.const 29596 i32.const 0 i32.store - i32.const 29592 + i32.const 29608 i32.const 0 i32.store local.get $0 @@ -77204,13 +77204,13 @@ br $block_13 end ;; $if_80 block $block_14 - i32.const 29584 + i32.const 29600 i32.load local.tee $12 local.get $11 i32.gt_u if $if_82 - i32.const 29584 + i32.const 29600 local.get $12 local.get $11 i32.sub @@ -77218,31 +77218,31 @@ i32.store br $block_14 end ;; $if_82 - i32.const 30044 + i32.const 30060 i32.load if $if_83 (result i32) - i32.const 30052 + i32.const 30068 i32.load else - i32.const 30052 + i32.const 30068 i32.const 4096 i32.store - i32.const 30048 + i32.const 30064 i32.const 4096 i32.store - i32.const 30056 + i32.const 30072 i32.const -1 i32.store - i32.const 30060 + i32.const 30076 i32.const -1 i32.store - i32.const 30064 + i32.const 30080 i32.const 0 i32.store - i32.const 30016 + i32.const 30032 i32.const 0 i32.store - i32.const 30044 + i32.const 30060 local.get $17 i32.const -16 i32.and @@ -77269,11 +77269,11 @@ if $if_84 br $block_12 end ;; $if_84 - i32.const 30012 + i32.const 30028 i32.load local.tee $2 if $if_85 - i32.const 30004 + i32.const 30020 i32.load local.tee $1 local.get $8 @@ -77295,7 +77295,7 @@ local.set $7 block $block_15 block $block_16 - i32.const 30016 + i32.const 30032 i32.load i32.const 4 i32.and @@ -77306,12 +77306,12 @@ block $block_17 block $block_18 block $block_19 - i32.const 29596 + i32.const 29612 i32.load local.tee $1 i32.eqz br_if $block_19 - i32.const 30020 + i32.const 30036 local.set $2 loop $loop_5 block $block_20 @@ -77374,11 +77374,11 @@ if $if_90 (result i32) i32.const 0 else - i32.const 30004 + i32.const 30020 i32.load local.tee $4 local.get $0 - i32.const 30048 + i32.const 30064 i32.load local.tee $2 i32.const -1 @@ -77409,7 +77409,7 @@ i32.gt_u i32.and if $if_91 (result i32) - i32.const 30012 + i32.const 30028 i32.load local.tee $1 if $if_92 @@ -77467,7 +77467,7 @@ end ;; $if_95 unreachable end ;; $if_94 - i32.const 30052 + i32.const 30068 i32.load local.tee $1 local.get $6 @@ -77504,8 +77504,8 @@ end ;; $if_96 local.set $3 end ;; $block_17 - i32.const 30016 - i32.const 30016 + i32.const 30032 + i32.const 30032 i32.load i32.const 4 i32.or @@ -77560,28 +77560,28 @@ end ;; $if_97 br $block_15 end ;; $block_16 - i32.const 30004 - i32.const 30004 + i32.const 30020 + i32.const 30020 i32.load local.get $3 i32.add local.tee $1 i32.store local.get $1 - i32.const 30008 + i32.const 30024 i32.load i32.gt_u if $if_98 - i32.const 30008 + i32.const 30024 local.get $1 i32.store end ;; $if_98 - i32.const 29596 + i32.const 29612 i32.load local.tee $6 if $if_99 block $block_21 - i32.const 30020 + i32.const 30036 local.set $2 block $block_22 block $block_23 @@ -77639,7 +77639,7 @@ local.tee $1 i32.add local.set $2 - i32.const 29584 + i32.const 29600 i32.load local.get $3 i32.add @@ -77647,10 +77647,10 @@ local.get $1 i32.sub local.set $1 - i32.const 29596 + i32.const 29612 local.get $2 i32.store - i32.const 29584 + i32.const 29600 local.get $1 i32.store local.get $2 @@ -77663,8 +77663,8 @@ i32.add i32.const 40 i32.store offset=4 - i32.const 29600 - i32.const 30060 + i32.const 29616 + i32.const 30076 i32.load i32.store br $block_21 @@ -77672,12 +77672,12 @@ end ;; $if_100 end ;; $block_22 local.get $0 - i32.const 29588 + i32.const 29604 i32.load local.tee $2 i32.lt_u if $if_102 - i32.const 29588 + i32.const 29604 local.get $0 i32.store local.get $0 @@ -77687,7 +77687,7 @@ local.get $3 i32.add local.set $1 - i32.const 30020 + i32.const 30036 local.set $8 block $block_24 block $block_25 @@ -77768,14 +77768,14 @@ local.get $6 i32.eq if $if_104 - i32.const 29584 - i32.const 29584 + i32.const 29600 + i32.const 29600 i32.load local.get $7 i32.add local.tee $0 i32.store - i32.const 29596 + i32.const 29612 local.get $5 i32.store local.get $5 @@ -77785,19 +77785,19 @@ i32.store offset=4 else block $block_26 - i32.const 29592 + i32.const 29608 i32.load local.get $3 i32.eq if $if_105 - i32.const 29580 - i32.const 29580 + i32.const 29596 + i32.const 29596 i32.load local.get $7 i32.add local.tee $0 i32.store - i32.const 29592 + i32.const 29608 local.get $5 i32.store local.get $5 @@ -77842,7 +77842,7 @@ local.get $1 i32.const 3 i32.shl - i32.const 29612 + i32.const 29628 i32.add local.tee $0 i32.ne @@ -77866,8 +77866,8 @@ local.get $6 i32.eq if $if_110 - i32.const 29572 - i32.const 29572 + i32.const 29588 + i32.const 29588 i32.load i32.const 1 local.get $1 @@ -78025,7 +78025,7 @@ local.tee $1 i32.const 2 i32.shl - i32.const 29876 + i32.const 29892 i32.add local.tee $0 i32.load @@ -78038,8 +78038,8 @@ i32.store local.get $16 br_if $block_32 - i32.const 29576 - i32.const 29576 + i32.const 29592 + i32.const 29592 i32.load i32.const 1 local.get $1 @@ -78051,7 +78051,7 @@ br $block_27 end ;; $block_32 else - i32.const 29588 + i32.const 29604 i32.load local.get $8 i32.gt_u @@ -78076,7 +78076,7 @@ br_if $block_27 end ;; $if_122 end ;; $if_121 - i32.const 29588 + i32.const 29604 i32.load local.tee $0 local.get $16 @@ -78110,7 +78110,7 @@ local.tee $0 i32.eqz br_if $block_27 - i32.const 29588 + i32.const 29604 i32.load local.get $0 i32.gt_u @@ -78162,10 +78162,10 @@ local.get $0 i32.const 3 i32.shl - i32.const 29612 + i32.const 29628 i32.add local.set $2 - i32.const 29572 + i32.const 29588 i32.load local.tee $1 i32.const 1 @@ -78175,7 +78175,7 @@ i32.and if $if_128 block $block_33 - i32.const 29588 + i32.const 29604 i32.load local.get $2 i32.const 8 @@ -78194,7 +78194,7 @@ call $_abort end ;; $block_33 else - i32.const 29572 + i32.const 29588 local.get $0 local.get $1 i32.or @@ -78290,7 +78290,7 @@ local.tee $3 i32.const 2 i32.shl - i32.const 29876 + i32.const 29892 i32.add local.set $2 local.get $5 @@ -78302,7 +78302,7 @@ local.get $5 i32.const 0 i32.store offset=16 - i32.const 29576 + i32.const 29592 i32.load local.tee $1 i32.const 1 @@ -78312,7 +78312,7 @@ i32.and i32.eqz if $if_132 - i32.const 29576 + i32.const 29592 local.get $0 local.get $1 i32.or @@ -78393,7 +78393,7 @@ unreachable end ;; $if_134 end ;; $loop_9 - i32.const 29588 + i32.const 29604 i32.load local.get $2 i32.gt_u @@ -78416,7 +78416,7 @@ end ;; $if_136 end ;; $block_34 end ;; $if_133 - i32.const 29588 + i32.const 29604 i32.load local.tee $0 local.get $9 @@ -78456,7 +78456,7 @@ return end ;; $if_103 end ;; $block_24 - i32.const 30020 + i32.const 30036 local.set $2 loop $loop_10 block $block_35 @@ -78481,7 +78481,7 @@ br $loop_10 end ;; $block_35 end ;; $loop_10 - i32.const 29596 + i32.const 29612 i32.const 0 local.get $0 i32.const 8 @@ -78500,7 +78500,7 @@ i32.add local.tee $4 i32.store - i32.const 29584 + i32.const 29600 local.get $3 i32.const -40 i32.add @@ -78519,8 +78519,8 @@ i32.add i32.const 40 i32.store offset=4 - i32.const 29600 - i32.const 30060 + i32.const 29616 + i32.const 30076 i32.load i32.store local.get $6 @@ -78553,23 +78553,23 @@ i32.const 27 i32.store offset=4 local.get $2 - i32.const 30020 + i32.const 30036 i64.load align=4 i64.store offset=8 align=4 local.get $2 - i32.const 30028 + i32.const 30044 i64.load align=4 i64.store offset=16 align=4 - i32.const 30020 + i32.const 30036 local.get $0 i32.store - i32.const 30024 + i32.const 30040 local.get $3 i32.store - i32.const 30032 + i32.const 30048 i32.const 0 i32.store - i32.const 30028 + i32.const 30044 local.get $2 i32.const 8 i32.add @@ -78628,10 +78628,10 @@ local.get $0 i32.const 3 i32.shl - i32.const 29612 + i32.const 29628 i32.add local.set $2 - i32.const 29572 + i32.const 29588 i32.load local.tee $1 i32.const 1 @@ -78640,7 +78640,7 @@ local.tee $0 i32.and if $if_142 - i32.const 29588 + i32.const 29604 i32.load local.get $2 i32.const 8 @@ -78658,7 +78658,7 @@ local.set $5 end ;; $if_143 else - i32.const 29572 + i32.const 29588 local.get $0 local.get $1 i32.or @@ -78754,7 +78754,7 @@ local.tee $3 i32.const 2 i32.shl - i32.const 29876 + i32.const 29892 i32.add local.set $2 local.get $6 @@ -78766,7 +78766,7 @@ local.get $6 i32.const 0 i32.store offset=16 - i32.const 29576 + i32.const 29592 i32.load local.tee $1 i32.const 1 @@ -78776,7 +78776,7 @@ i32.and i32.eqz if $if_146 - i32.const 29576 + i32.const 29592 local.get $0 local.get $1 i32.or @@ -78857,7 +78857,7 @@ unreachable end ;; $if_148 end ;; $loop_12 - i32.const 29588 + i32.const 29604 i32.load local.get $3 i32.gt_u @@ -78880,7 +78880,7 @@ end ;; $if_150 end ;; $block_36 end ;; $if_147 - i32.const 29588 + i32.const 29604 i32.load local.tee $0 local.get $10 @@ -78913,7 +78913,7 @@ end ;; $if_140 end ;; $block_21 else - i32.const 29588 + i32.const 29604 i32.load local.tee $1 i32.eqz @@ -78922,37 +78922,25 @@ i32.lt_u i32.or if $if_152 - i32.const 29588 + i32.const 29604 local.get $0 i32.store end ;; $if_152 - i32.const 30020 + i32.const 30036 local.get $0 i32.store - i32.const 30024 + i32.const 30040 local.get $3 i32.store - i32.const 30032 + i32.const 30048 i32.const 0 i32.store - i32.const 29608 - i32.const 30044 - i32.load - i32.store - i32.const 29604 - i32.const -1 - i32.store i32.const 29624 - i32.const 29612 - i32.store - i32.const 29620 - i32.const 29612 - i32.store - i32.const 29632 - i32.const 29620 + i32.const 30060 + i32.load i32.store - i32.const 29628 i32.const 29620 + i32.const -1 i32.store i32.const 29640 i32.const 29628 @@ -79134,7 +79122,19 @@ i32.const 29868 i32.const 29860 i32.store - i32.const 29596 + i32.const 29880 + i32.const 29868 + i32.store + i32.const 29876 + i32.const 29868 + i32.store + i32.const 29888 + i32.const 29876 + i32.store + i32.const 29884 + i32.const 29876 + i32.store + i32.const 29612 i32.const 0 local.get $0 i32.const 8 @@ -79153,7 +79153,7 @@ i32.add local.tee $4 i32.store - i32.const 29584 + i32.const 29600 local.get $3 i32.const -40 i32.add @@ -79172,18 +79172,18 @@ i32.add i32.const 40 i32.store offset=4 - i32.const 29600 - i32.const 30060 + i32.const 29616 + i32.const 30076 i32.load i32.store end ;; $if_99 - i32.const 29584 + i32.const 29600 i32.load local.tee $0 local.get $11 i32.gt_u if $if_153 - i32.const 29584 + i32.const 29600 local.get $0 local.get $11 i32.sub @@ -79192,13 +79192,13 @@ br $block_14 end ;; $if_153 end ;; $block_15 - i32.const 29556 + i32.const 29572 i32.const 12 i32.store br $block_12 end ;; $block_14 - i32.const 29596 - i32.const 29596 + i32.const 29612 + i32.const 29612 i32.load local.tee $0 local.get $11 @@ -79256,7 +79256,7 @@ i32.const -8 i32.add local.tee $5 - i32.const 29588 + i32.const 29604 i32.load local.tee $11 i32.lt_u @@ -79315,7 +79315,7 @@ local.get $10 i32.add local.set $5 - i32.const 29592 + i32.const 29608 i32.load local.get $0 i32.eq @@ -79335,7 +79335,7 @@ local.set $1 br $block end ;; $if_6 - i32.const 29580 + i32.const 29596 local.get $5 i32.store local.get $7 @@ -79372,7 +79372,7 @@ local.get $2 i32.const 3 i32.shl - i32.const 29612 + i32.const 29628 i32.add local.tee $4 i32.ne @@ -79395,8 +79395,8 @@ local.get $3 i32.eq if $if_11 - i32.const 29572 - i32.const 29572 + i32.const 29588 + i32.const 29588 i32.load i32.const 1 local.get $2 @@ -79562,7 +79562,7 @@ local.tee $2 i32.const 2 i32.shl - i32.const 29876 + i32.const 29892 i32.add local.tee $6 i32.load @@ -79575,8 +79575,8 @@ local.get $8 i32.eqz if $if_24 - i32.const 29576 - i32.const 29576 + i32.const 29592 + i32.const 29592 i32.load i32.const 1 local.get $2 @@ -79593,7 +79593,7 @@ br $block end ;; $if_24 else - i32.const 29588 + i32.const 29604 i32.load local.get $13 i32.gt_u @@ -79626,7 +79626,7 @@ end ;; $if_26 end ;; $if_25 end ;; $if_23 - i32.const 29588 + i32.const 29604 i32.load local.tee $6 local.get $8 @@ -79659,7 +79659,7 @@ i32.load offset=20 local.tee $2 if $if_30 - i32.const 29588 + i32.const 29604 i32.load local.get $2 i32.gt_u @@ -79729,19 +79729,19 @@ local.get $1 i32.store else - i32.const 29596 + i32.const 29612 i32.load local.get $7 i32.eq if $if_35 - i32.const 29584 - i32.const 29584 + i32.const 29600 + i32.const 29600 i32.load local.get $1 i32.add local.tee $0 i32.store - i32.const 29596 + i32.const 29612 local.get $3 i32.store local.get $3 @@ -79750,33 +79750,33 @@ i32.or i32.store offset=4 local.get $3 - i32.const 29592 + i32.const 29608 i32.load i32.ne if $if_36 return end ;; $if_36 - i32.const 29592 + i32.const 29608 i32.const 0 i32.store - i32.const 29580 + i32.const 29596 i32.const 0 i32.store return end ;; $if_35 - i32.const 29592 + i32.const 29608 i32.load local.get $7 i32.eq if $if_37 - i32.const 29580 - i32.const 29580 + i32.const 29596 + i32.const 29596 i32.load local.get $1 i32.add local.tee $0 i32.store - i32.const 29592 + i32.const 29608 local.get $4 i32.store local.get $3 @@ -79815,12 +79815,12 @@ local.get $6 i32.const 3 i32.shl - i32.const 29612 + i32.const 29628 i32.add local.tee $0 i32.ne if $if_39 - i32.const 29588 + i32.const 29604 i32.load local.get $2 i32.gt_u @@ -79839,8 +79839,8 @@ local.get $2 i32.eq if $if_42 - i32.const 29572 - i32.const 29572 + i32.const 29588 + i32.const 29588 i32.load i32.const 1 local.get $6 @@ -79860,7 +79860,7 @@ i32.add local.set $16 else - i32.const 29588 + i32.const 29604 i32.load local.get $1 i32.gt_u @@ -79943,7 +79943,7 @@ br $loop_0 end ;; $block_4 end ;; $loop_0 - i32.const 29588 + i32.const 29604 i32.load local.get $1 i32.gt_u @@ -79958,7 +79958,7 @@ end ;; $if_49 end ;; $block_3 else - i32.const 29588 + i32.const 29604 i32.load local.get $7 i32.load offset=8 @@ -79998,7 +79998,7 @@ local.tee $0 i32.const 2 i32.shl - i32.const 29876 + i32.const 29892 i32.add local.tee $1 i32.load @@ -80011,8 +80011,8 @@ local.get $9 i32.eqz if $if_55 - i32.const 29576 - i32.const 29576 + i32.const 29592 + i32.const 29592 i32.load i32.const 1 local.get $0 @@ -80024,7 +80024,7 @@ br $block_2 end ;; $if_55 else - i32.const 29588 + i32.const 29604 i32.load local.get $8 i32.gt_u @@ -80050,7 +80050,7 @@ br_if $block_2 end ;; $if_56 end ;; $if_54 - i32.const 29588 + i32.const 29604 i32.load local.tee $1 local.get $9 @@ -80083,7 +80083,7 @@ i32.load offset=20 local.tee $0 if $if_60 - i32.const 29588 + i32.const 29604 i32.load local.get $0 i32.gt_u @@ -80111,12 +80111,12 @@ i32.add local.get $5 i32.store - i32.const 29592 + i32.const 29608 i32.load local.get $3 i32.eq if $if_62 (result i32) - i32.const 29580 + i32.const 29596 local.get $5 i32.store return @@ -80136,10 +80136,10 @@ local.get $4 i32.const 3 i32.shl - i32.const 29612 + i32.const 29628 i32.add local.set $0 - i32.const 29572 + i32.const 29588 i32.load local.tee $1 i32.const 1 @@ -80148,7 +80148,7 @@ local.tee $4 i32.and if $if_64 - i32.const 29588 + i32.const 29604 i32.load local.get $0 i32.const 8 @@ -80166,7 +80166,7 @@ local.set $15 end ;; $if_65 else - i32.const 29572 + i32.const 29588 local.get $1 local.get $4 i32.or @@ -80263,7 +80263,7 @@ local.tee $4 i32.const 2 i32.shl - i32.const 29876 + i32.const 29892 i32.add local.set $0 local.get $3 @@ -80275,7 +80275,7 @@ local.get $3 i32.const 0 i32.store offset=16 - i32.const 29576 + i32.const 29592 i32.load local.tee $5 i32.const 1 @@ -80347,7 +80347,7 @@ unreachable end ;; $if_70 end ;; $loop_1 - i32.const 29588 + i32.const 29604 i32.load local.get $2 i32.gt_u @@ -80370,7 +80370,7 @@ end ;; $if_72 end ;; $block_6 end ;; $if_69 - i32.const 29588 + i32.const 29604 i32.load local.tee $0 local.get $14 @@ -80402,7 +80402,7 @@ end ;; $if_73 end ;; $block_5 else - i32.const 29576 + i32.const 29592 local.get $2 local.get $5 i32.or @@ -80420,8 +80420,8 @@ local.get $3 i32.store offset=8 end ;; $if_68 - i32.const 29604 - i32.const 29604 + i32.const 29620 + i32.const 29620 i32.load i32.const -1 i32.add @@ -80431,7 +80431,7 @@ if $if_74 return end ;; $if_74 - i32.const 30028 + i32.const 30044 local.set $0 loop $loop_2 local.get $0 @@ -80443,7 +80443,7 @@ local.get $4 br_if $loop_2 end ;; $loop_2 - i32.const 29604 + i32.const 29620 i32.const -1 i32.store ) @@ -80465,7 +80465,7 @@ i32.const -65 i32.gt_u if $if_0 - i32.const 29556 + i32.const 29572 i32.const 12 i32.store i32.const 0 @@ -80561,7 +80561,7 @@ local.tee $8 i32.const 1 i32.ne - i32.const 29588 + i32.const 29604 i32.load local.tee $10 local.get $0 @@ -80598,7 +80598,7 @@ local.get $2 local.get $1 i32.sub - i32.const 30052 + i32.const 30068 i32.load i32.const 1 i32.shl @@ -80653,12 +80653,12 @@ local.get $0 return end ;; $if_4 - i32.const 29596 + i32.const 29612 i32.load local.get $4 i32.eq if $if_6 - i32.const 29584 + i32.const 29600 i32.load local.get $2 i32.add @@ -80686,21 +80686,21 @@ i32.const 1 i32.or i32.store offset=4 - i32.const 29596 + i32.const 29612 local.get $2 i32.store - i32.const 29584 + i32.const 29600 local.get $1 i32.store local.get $0 return end ;; $if_6 - i32.const 29592 + i32.const 29608 i32.load local.get $4 i32.eq if $if_7 - i32.const 29580 + i32.const 29596 i32.load local.get $2 i32.add @@ -80768,10 +80768,10 @@ i32.const 0 local.set $3 end ;; $if_8 - i32.const 29580 + i32.const 29596 local.get $3 i32.store - i32.const 29592 + i32.const 29608 local.get $1 i32.store local.get $0 @@ -80812,7 +80812,7 @@ local.get $2 i32.const 3 i32.shl - i32.const 29612 + i32.const 29628 i32.add local.tee $8 i32.ne @@ -80835,8 +80835,8 @@ local.get $6 i32.eq if $if_13 - i32.const 29572 - i32.const 29572 + i32.const 29588 + i32.const 29588 i32.load i32.const 1 local.get $2 @@ -80991,7 +80991,7 @@ local.tee $3 i32.const 2 i32.shl - i32.const 29876 + i32.const 29892 i32.add local.tee $2 i32.load @@ -81004,8 +81004,8 @@ local.get $5 i32.eqz if $if_26 - i32.const 29576 - i32.const 29576 + i32.const 29592 + i32.const 29592 i32.load i32.const 1 local.get $3 @@ -81017,7 +81017,7 @@ br $block_0 end ;; $if_26 else - i32.const 29588 + i32.const 29604 i32.load local.get $9 i32.gt_u @@ -81043,7 +81043,7 @@ br_if $block_0 end ;; $if_27 end ;; $if_25 - i32.const 29588 + i32.const 29604 i32.load local.tee $2 local.get $5 @@ -81076,7 +81076,7 @@ i32.load offset=20 local.tee $3 if $if_31 - i32.const 29588 + i32.const 29604 i32.load local.get $3 i32.gt_u @@ -81200,7 +81200,7 @@ local.get $4 i32.sub local.tee $0 - i32.const 29588 + i32.const 29604 i32.load local.tee $11 i32.lt_u @@ -81211,7 +81211,7 @@ local.get $4 i32.add local.set $1 - i32.const 29592 + i32.const 29608 i32.load local.get $0 i32.eq @@ -81230,7 +81230,7 @@ local.set $5 br $block end ;; $if_3 - i32.const 29580 + i32.const 29596 local.get $1 i32.store local.get $6 @@ -81265,7 +81265,7 @@ local.get $8 i32.const 3 i32.shl - i32.const 29612 + i32.const 29628 i32.add local.tee $5 i32.ne @@ -81288,8 +81288,8 @@ local.get $4 i32.eq if $if_8 - i32.const 29572 - i32.const 29572 + i32.const 29588 + i32.const 29588 i32.load i32.const 1 local.get $8 @@ -81453,7 +81453,7 @@ local.tee $3 i32.const 2 i32.shl - i32.const 29876 + i32.const 29892 i32.add local.tee $4 i32.load @@ -81466,8 +81466,8 @@ local.get $7 i32.eqz if $if_21 - i32.const 29576 - i32.const 29576 + i32.const 29592 + i32.const 29592 i32.load i32.const 1 local.get $3 @@ -81483,7 +81483,7 @@ br $block end ;; $if_21 else - i32.const 29588 + i32.const 29604 i32.load local.get $10 i32.gt_u @@ -81515,7 +81515,7 @@ end ;; $if_23 end ;; $if_22 end ;; $if_20 - i32.const 29588 + i32.const 29604 i32.load local.tee $4 local.get $7 @@ -81548,7 +81548,7 @@ i32.load offset=20 local.tee $3 if $if_27 - i32.const 29588 + i32.const 29604 i32.load local.get $3 i32.gt_u @@ -81581,7 +81581,7 @@ end ;; $block end ;; $if local.get $6 - i32.const 29588 + i32.const 29604 i32.load local.tee $8 i32.lt_u @@ -81610,19 +81610,19 @@ local.get $5 i32.store else - i32.const 29596 + i32.const 29612 i32.load local.get $6 i32.eq if $if_31 - i32.const 29584 - i32.const 29584 + i32.const 29600 + i32.const 29600 i32.load local.get $5 i32.add local.tee $0 i32.store - i32.const 29596 + i32.const 29612 local.get $2 i32.store local.get $2 @@ -81631,33 +81631,33 @@ i32.or i32.store offset=4 local.get $2 - i32.const 29592 + i32.const 29608 i32.load i32.ne if $if_32 return end ;; $if_32 - i32.const 29592 + i32.const 29608 i32.const 0 i32.store - i32.const 29580 + i32.const 29596 i32.const 0 i32.store return end ;; $if_31 - i32.const 29592 + i32.const 29608 i32.load local.get $6 i32.eq if $if_33 - i32.const 29580 - i32.const 29580 + i32.const 29596 + i32.const 29596 i32.load local.get $5 i32.add local.tee $0 i32.store - i32.const 29592 + i32.const 29608 local.get $2 i32.store local.get $2 @@ -81696,7 +81696,7 @@ local.get $4 i32.const 3 i32.shl - i32.const 29612 + i32.const 29628 i32.add local.tee $0 i32.ne @@ -81719,8 +81719,8 @@ local.get $3 i32.eq if $if_38 - i32.const 29572 - i32.const 29572 + i32.const 29588 + i32.const 29588 i32.load i32.const 1 local.get $4 @@ -81875,7 +81875,7 @@ local.tee $0 i32.const 2 i32.shl - i32.const 29876 + i32.const 29892 i32.add local.tee $1 i32.load @@ -81888,8 +81888,8 @@ local.get $9 i32.eqz if $if_51 - i32.const 29576 - i32.const 29576 + i32.const 29592 + i32.const 29592 i32.load i32.const 1 local.get $0 @@ -81901,7 +81901,7 @@ br $block_2 end ;; $if_51 else - i32.const 29588 + i32.const 29604 i32.load local.get $7 i32.gt_u @@ -81927,7 +81927,7 @@ br_if $block_2 end ;; $if_52 end ;; $if_50 - i32.const 29588 + i32.const 29604 i32.load local.tee $1 local.get $9 @@ -81960,7 +81960,7 @@ i32.load offset=20 local.tee $0 if $if_56 - i32.const 29588 + i32.const 29604 i32.load local.get $0 i32.gt_u @@ -81988,12 +81988,12 @@ i32.add local.get $5 i32.store - i32.const 29592 + i32.const 29608 i32.load local.get $2 i32.eq if $if_58 - i32.const 29580 + i32.const 29596 local.get $5 i32.store return @@ -82010,10 +82010,10 @@ local.get $1 i32.const 3 i32.shl - i32.const 29612 + i32.const 29628 i32.add local.set $0 - i32.const 29572 + i32.const 29588 i32.load local.tee $5 i32.const 1 @@ -82022,7 +82022,7 @@ local.tee $1 i32.and if $if_60 - i32.const 29588 + i32.const 29604 i32.load local.get $0 i32.const 8 @@ -82040,7 +82040,7 @@ local.set $13 end ;; $if_61 else - i32.const 29572 + i32.const 29588 local.get $1 local.get $5 i32.or @@ -82137,7 +82137,7 @@ local.tee $1 i32.const 2 i32.shl - i32.const 29876 + i32.const 29892 i32.add local.set $0 local.get $2 @@ -82150,7 +82150,7 @@ i32.const 0 i32.store offset=16 block $block_5 - i32.const 29576 + i32.const 29592 i32.load local.tee $3 i32.const 1 @@ -82160,7 +82160,7 @@ i32.and i32.eqz if $if_64 - i32.const 29576 + i32.const 29592 local.get $3 local.get $4 i32.or @@ -82229,7 +82229,7 @@ unreachable end ;; $if_66 end ;; $loop_1 - i32.const 29588 + i32.const 29604 i32.load local.get $4 i32.gt_u @@ -82242,7 +82242,7 @@ br $block_5 end ;; $block_6 end ;; $if_65 - i32.const 29588 + i32.const 29604 i32.load local.tee $1 local.get $0 @@ -82295,7 +82295,7 @@ (func $__ZNKSt3__217bad_function_call4whatEv (type $4) (param $0 i32) (result i32) - i32.const 21307 + i32.const 21315 ) (func $__ZNSt3__212__next_primeEm (type $4) @@ -84182,29 +84182,29 @@ (func $__ZNSt3__211__call_onceERVmPvPFvS2_E (type $0) (param $0 i32) loop $loop - i32.const 29400 + i32.const 29416 i32.load i32.const 1 i32.eq if $if - i32.const 30096 - i32.const 30068 + i32.const 30112 + i32.const 30084 call $_pthread_cond_wait drop br $loop end ;; $if end ;; $loop - i32.const 29400 + i32.const 29416 i32.load i32.eqz if $if_0 - i32.const 29400 + i32.const 29416 i32.const 1 i32.store local.get $0 i32.const 424 call_indirect $32 (type $0) - i32.const 29400 + i32.const 29416 i32.const -1 i32.store end ;; $if_0 @@ -84232,7 +84232,7 @@ (param $0 i32) (local $1 i32) (local $2 i32) - i32.const 18814 + i32.const 18822 call $_strlen local.tee $2 i32.const 13 @@ -84251,7 +84251,7 @@ i32.const 12 i32.add local.tee $1 - i32.const 18814 + i32.const 18822 local.get $2 i32.const 1 i32.add @@ -85230,7 +85230,7 @@ local.set $0 end ;; $if_0 local.get $0 - i32.const 17983 + i32.const 17991 local.get $1 call $__ZNSt3__211char_traitsIcE4copyEPcPKcm local.get $3 @@ -85277,7 +85277,7 @@ end ;; $if end ;; $loop local.get $0 - i32.const 17983 + i32.const 17991 call $_strlen local.tee $2 local.get $2 @@ -85438,7 +85438,7 @@ local.get $4 i32.const 1 i32.add - i32.const 21376 + i32.const 21384 local.get $5 call $_snprintf local.tee $3 @@ -85540,7 +85540,7 @@ i32.const 1060 i32.add local.set $7 - i32.const 30144 + i32.const 30160 i32.load local.tee $0 if $if @@ -85552,9 +85552,9 @@ i64.ne if $if_0 local.get $1 - i32.const 21515 + i32.const 21523 i32.store - i32.const 21465 + i32.const 21473 local.get $1 call $_abort_message end ;; $if_0 @@ -85619,7 +85619,7 @@ call_indirect $32 (type $4) local.set $0 local.get $4 - i32.const 21515 + i32.const 21523 i32.store local.get $4 local.get $1 @@ -85627,22 +85627,22 @@ local.get $4 local.get $0 i32.store offset=8 - i32.const 21379 + i32.const 21387 local.get $4 call $_abort_message else local.get $3 - i32.const 21515 + i32.const 21523 i32.store local.get $3 local.get $1 i32.store offset=4 - i32.const 21424 + i32.const 21432 local.get $3 call $_abort_message end ;; $if_3 end ;; $if - i32.const 21503 + i32.const 21511 local.get $2 i32.const 1056 i32.add @@ -86607,7 +86607,7 @@ local.get $3 i32.const 24 i32.add - i32.const 21694 + i32.const 21702 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $3 @@ -86681,7 +86681,7 @@ else block $block (result i32) local.get $2 - i32.const 21697 + i32.const 21705 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $2 @@ -86711,7 +86711,7 @@ local.get $2 if $if_4 (result i32) local.get $4 - i32.const 21702 + i32.const 21710 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $4 @@ -86772,7 +86772,7 @@ i32.const 0 else local.get $0 - i32.const 21716 + i32.const 21724 local.get $3 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_11SpecialNameEJRA34_KcRPNS0_4NodeEEEESC_DpOT0_ end ;; $if_9 @@ -86969,7 +86969,7 @@ (func $__ZSt9terminatev (type $8) (local $0 i32) - i32.const 30144 + i32.const 30160 i32.load local.tee $0 if $if @@ -87004,7 +87004,7 @@ i32.const 216 i32.add call_indirect $32 (type $8) - i32.const 21654 + i32.const 21662 local.get $1 call $_abort_message ) @@ -87241,7 +87241,7 @@ i32.const 0 i32.store local.get $5 - i32.const 27049 + i32.const 27057 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -87761,7 +87761,7 @@ i32.add i32.store local.get $0 - i32.const 21750 + i32.const 21758 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_35 @@ -87784,7 +87784,7 @@ i32.add i32.store local.get $0 - i32.const 21755 + i32.const 21763 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_33 @@ -87795,7 +87795,7 @@ i32.add i32.store local.get $0 - i32.const 21760 + i32.const 21768 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_32 @@ -87806,7 +87806,7 @@ i32.add i32.store local.get $0 - i32.const 21765 + i32.const 21773 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_31 @@ -87817,7 +87817,7 @@ i32.add i32.store local.get $0 - i32.const 21777 + i32.const 21785 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_30 @@ -87828,7 +87828,7 @@ i32.add i32.store local.get $0 - i32.const 21791 + i32.const 21799 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_29 @@ -87839,7 +87839,7 @@ i32.add i32.store local.get $0 - i32.const 21797 + i32.const 21805 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_28 @@ -87850,7 +87850,7 @@ i32.add i32.store local.get $0 - i32.const 21812 + i32.const 21820 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_27 @@ -87861,7 +87861,7 @@ i32.add i32.store local.get $0 - i32.const 21816 + i32.const 21824 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_26 @@ -87872,7 +87872,7 @@ i32.add i32.store local.get $0 - i32.const 21829 + i32.const 21837 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_25 @@ -87883,7 +87883,7 @@ i32.add i32.store local.get $0 - i32.const 21834 + i32.const 21842 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_24 @@ -87894,7 +87894,7 @@ i32.add i32.store local.get $0 - i32.const 21848 + i32.const 21856 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_23 @@ -87917,7 +87917,7 @@ i32.add i32.store local.get $0 - i32.const 21858 + i32.const 21866 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_21 @@ -87928,7 +87928,7 @@ i32.add i32.store local.get $0 - i32.const 21867 + i32.const 21875 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_20 @@ -87939,7 +87939,7 @@ i32.add i32.store local.get $0 - i32.const 21885 + i32.const 21893 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_19 @@ -87962,7 +87962,7 @@ i32.add i32.store local.get $0 - i32.const 21891 + i32.const 21899 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_17 @@ -87973,7 +87973,7 @@ i32.add i32.store local.get $0 - i32.const 21903 + i32.const 21911 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_16 @@ -87984,7 +87984,7 @@ i32.add i32.store local.get $0 - i32.const 21914 + i32.const 21922 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_15 @@ -88058,7 +88058,7 @@ i32.add i32.store local.get $0 - i32.const 21918 + i32.const 21926 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_53 @@ -88069,7 +88069,7 @@ i32.add i32.store local.get $0 - i32.const 21928 + i32.const 21936 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_52 @@ -88080,7 +88080,7 @@ i32.add i32.store local.get $0 - i32.const 21939 + i32.const 21947 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_51 @@ -88091,7 +88091,7 @@ i32.add i32.store local.get $0 - i32.const 21949 + i32.const 21957 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_50 @@ -88102,7 +88102,7 @@ i32.add i32.store local.get $0 - i32.const 21959 + i32.const 21967 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_49 @@ -88113,7 +88113,7 @@ i32.add i32.store local.get $0 - i32.const 21968 + i32.const 21976 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_48 @@ -88124,7 +88124,7 @@ i32.add i32.store local.get $0 - i32.const 21977 + i32.const 21985 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_47 @@ -88135,7 +88135,7 @@ i32.add i32.store local.get $0 - i32.const 21982 + i32.const 21990 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_46 @@ -88146,7 +88146,7 @@ i32.add i32.store local.get $0 - i32.const 21997 + i32.const 22005 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_45 @@ -88621,7 +88621,7 @@ i32.const 0 i32.store local.get $3 - i32.const 26750 + i32.const 26758 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $3 @@ -88635,14 +88635,14 @@ if $if (result i32) local.get $6 local.get $0 - i32.const 26753 + i32.const 26761 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ i32.store br $block_0 else block $block_1 (result i32) local.get $4 - i32.const 26762 + i32.const 26770 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $4 @@ -88679,7 +88679,7 @@ br $block_0 end ;; $if_0 local.get $5 - i32.const 26765 + i32.const 26773 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $5 @@ -88742,7 +88742,7 @@ br $block end ;; $block_0 local.get $8 - i32.const 26768 + i32.const 26776 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $8 @@ -88798,7 +88798,7 @@ i32.eqz if $if_4 local.get $9 - i32.const 26771 + i32.const 26779 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $9 @@ -88809,7 +88809,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE br_if $block_7 local.get $10 - i32.const 26774 + i32.const 26782 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $10 @@ -88921,7 +88921,7 @@ else block $block (result i32) local.get $5 - i32.const 26565 + i32.const 26573 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -89216,7 +89216,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfEc if $if_2 (result i32) local.get $0 - i32.const 26529 + i32.const 26537 local.get $1 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_13EnclosingExprEJRA10_KcRPNS0_4NodeERA2_S8_EEESC_DpOT0_ else @@ -89254,7 +89254,7 @@ local.get $1 i32.const 8 i32.add - i32.const 26404 + i32.const 26412 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -89643,7 +89643,7 @@ i32.const 24 i32.add local.tee $5 - i32.const 25460 + i32.const 25468 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -89654,12 +89654,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if local.get $1 - i32.const 25463 + i32.const 25471 call $__ZN12_GLOBAL__N_110StringViewC2EPKc else block $block local.get $3 - i32.const 25470 + i32.const 25478 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -89670,12 +89670,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_0 local.get $1 - i32.const 25473 + i32.const 25481 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $if_0 local.get $4 - i32.const 25479 + i32.const 25487 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -89686,7 +89686,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_1 local.get $1 - i32.const 25482 + i32.const 25490 call $__ZN12_GLOBAL__N_110StringViewC2EPKc end ;; $if_1 end ;; $block @@ -89779,7 +89779,7 @@ i32.load8_s offset=362 if $if_2 local.get $0 - i32.const 21977 + i32.const 21985 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $if_2 @@ -90802,7 +90802,7 @@ i32.add call_indirect $32 (type $1) local.get $4 - i32.const 22012 + i32.const 22020 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -90823,7 +90823,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $5 - i32.const 22018 + i32.const 22026 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -91035,7 +91035,7 @@ $block ;; default end ;; $block_5 local.get $4 - i32.const 22162 + i32.const 22170 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -91047,7 +91047,7 @@ br $block end ;; $block_4 local.get $5 - i32.const 22177 + i32.const 22185 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -91059,7 +91059,7 @@ br $block end ;; $block_3 local.get $6 - i32.const 22195 + i32.const 22203 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -91071,7 +91071,7 @@ br $block end ;; $block_2 local.get $7 - i32.const 22207 + i32.const 22215 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -91083,7 +91083,7 @@ br $block end ;; $block_1 local.get $8 - i32.const 22220 + i32.const 22228 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $8 @@ -91095,7 +91095,7 @@ br $block end ;; $block_0 local.get $3 - i32.const 22233 + i32.const 22241 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -91126,32 +91126,32 @@ $block ;; default end ;; $block_5 local.get $0 - i32.const 22107 + i32.const 22115 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_4 local.get $0 - i32.const 22117 + i32.const 22125 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_3 local.get $0 - i32.const 22130 + i32.const 22138 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_2 local.get $0 - i32.const 22137 + i32.const 22145 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_1 local.get $0 - i32.const 22145 + i32.const 22153 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_0 local.get $0 - i32.const 22153 + i32.const 22161 call $__ZN12_GLOBAL__N_110StringViewC2EPKc end ;; $block ) @@ -91180,7 +91180,7 @@ i32.load local.set $1 local.get $2 - i32.const 22303 + i32.const 22311 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -91296,7 +91296,7 @@ i32.load local.set $1 local.get $2 - i32.const 22371 + i32.const 22379 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -91437,7 +91437,7 @@ call $__ZNK12_GLOBAL__N_116itanium_demangle4Node8hasArrayERNS_12OutputStreamE if $if_0 local.get $7 - i32.const 22382 + i32.const 22390 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $7 @@ -91460,7 +91460,7 @@ br $block end ;; $block_0 local.get $8 - i32.const 22384 + i32.const 22392 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $8 @@ -91471,8 +91471,8 @@ call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE end ;; $block local.get $2 - i32.const 22388 - i32.const 22386 + i32.const 22396 + i32.const 22394 local.get $6 i32.load select @@ -91563,7 +91563,7 @@ br $block end ;; $block_0 local.get $2 - i32.const 22380 + i32.const 22388 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $5 local.get $2 @@ -91836,7 +91836,7 @@ i32.load offset=8 local.set $0 local.get $8 - i32.const 22455 + i32.const 22463 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $8 @@ -91857,7 +91857,7 @@ local.get $2 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $9 - i32.const 22459 + i32.const 22467 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $9 @@ -91890,7 +91890,7 @@ call $__ZNK12_GLOBAL__N_116itanium_demangle4Node8hasArrayERNS_12OutputStreamE if $if_0 local.get $5 - i32.const 22382 + i32.const 22390 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -91915,7 +91915,7 @@ br $block_1 end ;; $block_2 local.get $6 - i32.const 22384 + i32.const 22392 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -91926,7 +91926,7 @@ call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE end ;; $block_1 local.get $7 - i32.const 22453 + i32.const 22461 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -91990,7 +91990,7 @@ br $block_1 end ;; $block_2 local.get $3 - i32.const 22380 + i32.const 22388 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $4 local.get $3 @@ -92046,7 +92046,7 @@ i64.load offset=8 align=4 i64.store align=4 local.get $1 - i32.const 22441 + i32.const 22449 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -92688,7 +92688,7 @@ local.get $2 i32.const 16 i32.add - i32.const 22566 + i32.const 22574 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -92722,7 +92722,7 @@ i32.eq if $if_0 local.get $4 - i32.const 22382 + i32.const 22390 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -92733,7 +92733,7 @@ call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE end ;; $if_0 local.get $2 - i32.const 22459 + i32.const 22467 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -92780,7 +92780,7 @@ i32.eqz if $if_0 local.get $2 - i32.const 22568 + i32.const 22576 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $4 local.get $2 @@ -93532,7 +93532,7 @@ local.get $3 i32.const 328 i32.add - i32.const 23097 + i32.const 23105 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -93684,7 +93684,7 @@ i32.add i32.store local.get $6 - i32.const 22388 + i32.const 22396 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -93701,7 +93701,7 @@ i32.add i32.store local.get $7 - i32.const 22386 + i32.const 22394 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -93718,7 +93718,7 @@ i32.add i32.store local.get $8 - i32.const 22386 + i32.const 22394 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $8 @@ -93735,7 +93735,7 @@ i32.add i32.store local.get $9 - i32.const 23100 + i32.const 23108 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $9 @@ -93752,7 +93752,7 @@ i32.add i32.store local.get $10 - i32.const 23103 + i32.const 23111 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $10 @@ -93776,7 +93776,7 @@ local.get $1 if $if_2 (result i32) local.get $0 - i32.const 23105 + i32.const 23113 local.get $2 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_13EnclosingExprEJRA10_KcRPNS0_4NodeERA2_S8_EEESC_DpOT0_ else @@ -93797,7 +93797,7 @@ local.get $1 if $if_3 (result i32) local.get $0 - i32.const 23105 + i32.const 23113 local.get $2 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_13EnclosingExprEJRA10_KcRPNS0_4NodeERA2_S8_EEESC_DpOT0_ else @@ -93927,7 +93927,7 @@ i32.add i32.store local.get $11 - i32.const 23115 + i32.const 23123 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $11 @@ -93944,7 +93944,7 @@ i32.add i32.store local.get $12 - i32.const 23117 + i32.const 23125 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $12 @@ -94046,7 +94046,7 @@ i32.add i32.store local.get $13 - i32.const 22453 + i32.const 22461 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $13 @@ -94107,7 +94107,7 @@ if $if_12 (result i32) local.get $0 local.get $2 - i32.const 23119 + i32.const 23127 local.get $4 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_10MemberExprEJRPNS0_4NodeERA3_KcSA_EEES9_DpOT0_ else @@ -94157,7 +94157,7 @@ i32.add i32.store local.get $14 - i32.const 23122 + i32.const 23130 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $14 @@ -94174,7 +94174,7 @@ i32.add i32.store local.get $15 - i32.const 23124 + i32.const 23132 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $15 @@ -94208,7 +94208,7 @@ i32.add i32.store local.get $16 - i32.const 23127 + i32.const 23135 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $16 @@ -94225,7 +94225,7 @@ i32.add i32.store local.get $17 - i32.const 23129 + i32.const 23137 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $17 @@ -94242,7 +94242,7 @@ i32.add i32.store local.get $18 - i32.const 23132 + i32.const 23140 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $18 @@ -94273,7 +94273,7 @@ i32.add i32.store local.get $19 - i32.const 23135 + i32.const 23143 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $19 @@ -94290,7 +94290,7 @@ i32.add i32.store local.get $20 - i32.const 22459 + i32.const 22467 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $20 @@ -94430,7 +94430,7 @@ i32.add i32.store local.get $21 - i32.const 23138 + i32.const 23146 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $21 @@ -94447,7 +94447,7 @@ i32.add i32.store local.get $22 - i32.const 23141 + i32.const 23149 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $22 @@ -94464,7 +94464,7 @@ i32.add i32.store local.get $23 - i32.const 23144 + i32.const 23152 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $23 @@ -94481,7 +94481,7 @@ i32.add i32.store local.get $24 - i32.const 22566 + i32.const 22574 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $24 @@ -94517,7 +94517,7 @@ i32.add i32.store local.get $25 - i32.const 22987 + i32.const 22995 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $25 @@ -94534,7 +94534,7 @@ i32.add i32.store local.get $26 - i32.const 23148 + i32.const 23156 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $26 @@ -94551,7 +94551,7 @@ i32.add i32.store local.get $27 - i32.const 22453 + i32.const 22461 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $27 @@ -94568,7 +94568,7 @@ i32.add i32.store local.get $28 - i32.const 23151 + i32.const 23159 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $28 @@ -94589,7 +94589,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfEc if $if_17 local.get $29 - i32.const 23154 + i32.const 23162 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $29 @@ -94609,7 +94609,7 @@ if $if_18 (result i32) local.get $0 local.get $2 - i32.const 23154 + i32.const 23162 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_11PostfixExprEJRPNS0_4NodeERA3_KcEEES9_DpOT0_ else i32.const 0 @@ -94644,7 +94644,7 @@ i32.add i32.store local.get $30 - i32.const 23157 + i32.const 23165 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $30 @@ -94661,7 +94661,7 @@ i32.add i32.store local.get $31 - i32.const 22987 + i32.const 22995 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $31 @@ -94678,7 +94678,7 @@ i32.add i32.store local.get $32 - i32.const 23160 + i32.const 23168 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $32 @@ -94739,7 +94739,7 @@ i32.add i32.store local.get $33 - i32.const 23162 + i32.const 23170 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $33 @@ -94756,7 +94756,7 @@ i32.add i32.store local.get $34 - i32.const 23165 + i32.const 23173 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $34 @@ -94773,7 +94773,7 @@ i32.add i32.store local.get $35 - i32.const 23167 + i32.const 23175 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $35 @@ -94810,7 +94810,7 @@ i32.add i32.store local.get $36 - i32.const 23170 + i32.const 23178 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $36 @@ -94827,7 +94827,7 @@ i32.add i32.store local.get $37 - i32.const 23174 + i32.const 23182 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $37 @@ -94844,7 +94844,7 @@ i32.add i32.store local.get $38 - i32.const 23176 + i32.const 23184 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $38 @@ -94865,7 +94865,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfEc if $if_20 local.get $39 - i32.const 23179 + i32.const 23187 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $39 @@ -94885,7 +94885,7 @@ if $if_21 (result i32) local.get $0 local.get $2 - i32.const 23179 + i32.const 23187 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_11PostfixExprEJRPNS0_4NodeERA3_KcEEES9_DpOT0_ else i32.const 0 @@ -94898,7 +94898,7 @@ i32.add i32.store local.get $40 - i32.const 23174 + i32.const 23182 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $40 @@ -94930,7 +94930,7 @@ if $if_23 (result i32) local.get $0 local.get $2 - i32.const 23182 + i32.const 23190 local.get $4 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_10MemberExprEJRPNS0_4NodeERA3_KcSA_EEES9_DpOT0_ else @@ -95057,7 +95057,7 @@ i32.add i32.store local.get $41 - i32.const 23185 + i32.const 23193 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $41 @@ -95074,7 +95074,7 @@ i32.add i32.store local.get $42 - i32.const 23187 + i32.const 23195 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $42 @@ -95091,7 +95091,7 @@ i32.add i32.store local.get $43 - i32.const 23190 + i32.const 23198 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $43 @@ -95108,7 +95108,7 @@ i32.add i32.store local.get $44 - i32.const 23193 + i32.const 23201 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $44 @@ -95210,7 +95210,7 @@ local.get $1 if $if_32 (result i32) local.get $0 - i32.const 23197 + i32.const 23205 local.get $2 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_13EnclosingExprEJRA10_KcRPNS0_4NodeERA2_S8_EEESC_DpOT0_ else @@ -95231,7 +95231,7 @@ local.get $1 if $if_33 (result i32) local.get $0 - i32.const 23197 + i32.const 23205 local.get $2 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_13EnclosingExprEJRA10_KcRPNS0_4NodeERA2_S8_EEESC_DpOT0_ else @@ -95395,7 +95395,7 @@ local.get $1 if $if_37 (result i32) local.get $0 - i32.const 23206 + i32.const 23214 local.get $2 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_13EnclosingExprEJRA10_KcRPNS0_4NodeERA2_S8_EEESC_DpOT0_ else @@ -95416,7 +95416,7 @@ local.get $1 if $if_38 (result i32) local.get $0 - i32.const 23206 + i32.const 23214 local.get $2 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_13EnclosingExprEJRA10_KcRPNS0_4NodeERA2_S8_EEESC_DpOT0_ else @@ -95495,7 +95495,7 @@ i32.add i32.store local.get $0 - i32.const 23215 + i32.const 23223 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_111 @@ -95700,7 +95700,7 @@ i32.add i32.store local.get $3 - i32.const 22670 + i32.const 22678 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $3 @@ -95712,7 +95712,7 @@ br $block end ;; $block_18 local.get $4 - i32.const 22678 + i32.const 22686 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $4 @@ -95731,7 +95731,7 @@ br $block end ;; $if_1 local.get $5 - i32.const 22682 + i32.const 22690 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $5 @@ -95759,7 +95759,7 @@ i32.add i32.store local.get $6 - i32.const 21760 + i32.const 21768 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $6 @@ -95777,7 +95777,7 @@ i32.add i32.store local.get $7 - i32.const 21765 + i32.const 21773 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $7 @@ -95795,7 +95795,7 @@ i32.add i32.store local.get $8 - i32.const 21777 + i32.const 21785 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $8 @@ -95813,7 +95813,7 @@ i32.add i32.store local.get $9 - i32.const 21791 + i32.const 21799 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $9 @@ -95831,7 +95831,7 @@ i32.add i32.store local.get $10 - i32.const 21797 + i32.const 21805 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $10 @@ -95849,7 +95849,7 @@ i32.add i32.store local.get $11 - i32.const 30166 + i32.const 30182 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $11 @@ -95867,7 +95867,7 @@ i32.add i32.store local.get $12 - i32.const 22686 + i32.const 22694 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $12 @@ -95885,7 +95885,7 @@ i32.add i32.store local.get $13 - i32.const 22688 + i32.const 22696 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $13 @@ -95903,7 +95903,7 @@ i32.add i32.store local.get $14 - i32.const 22690 + i32.const 22698 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $14 @@ -95921,7 +95921,7 @@ i32.add i32.store local.get $15 - i32.const 22693 + i32.const 22701 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $15 @@ -95939,7 +95939,7 @@ i32.add i32.store local.get $16 - i32.const 22696 + i32.const 22704 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $16 @@ -95957,7 +95957,7 @@ i32.add i32.store local.get $17 - i32.const 21858 + i32.const 21866 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $17 @@ -95975,7 +95975,7 @@ i32.add i32.store local.get $18 - i32.const 21867 + i32.const 21875 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $18 @@ -96017,7 +96017,7 @@ br $block end ;; $block_1 local.get $19 - i32.const 21694 + i32.const 21702 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $19 @@ -96561,7 +96561,7 @@ i32.const 16 i32.add local.tee $5 - i32.const 22384 + i32.const 22392 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -96575,7 +96575,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 22380 + i32.const 22388 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -96802,7 +96802,7 @@ f64.store local.get $2 i32.const 40 - i32.const 22752 + i32.const 22760 local.get $5 call $_snprintf local.get $2 @@ -97024,7 +97024,7 @@ f64.store local.get $2 i32.const 32 - i32.const 22813 + i32.const 22821 local.get $4 call $_snprintf local.get $2 @@ -97244,7 +97244,7 @@ f64.store local.get $2 i32.const 24 - i32.const 22872 + i32.const 22880 local.get $4 call $_snprintf local.get $2 @@ -97310,11 +97310,11 @@ i32.load8_s offset=8 if $if local.get $2 - i32.const 22932 + i32.const 22940 call $__ZN12_GLOBAL__N_110StringViewC2EPKc else local.get $2 - i32.const 22937 + i32.const 22945 call $__ZN12_GLOBAL__N_110StringViewC2EPKc end ;; $if local.get $2 @@ -97449,7 +97449,7 @@ i32.gt_u if $if local.get $4 - i32.const 22384 + i32.const 22392 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -97470,7 +97470,7 @@ local.get $2 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $5 - i32.const 22380 + i32.const 22388 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -97498,7 +97498,7 @@ i32.eq if $if_0 local.get $4 - i32.const 22987 + i32.const 22995 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -97661,7 +97661,7 @@ local.get $2 i32.const 8 i32.add - i32.const 25343 + i32.const 25351 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $2 @@ -97690,7 +97690,7 @@ end ;; $if_0 else local.get $2 - i32.const 25346 + i32.const 25354 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $2 @@ -97988,7 +97988,7 @@ i32.const 0 i32.store offset=4 local.get $3 - i32.const 25196 + i32.const 25204 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $3 @@ -98001,13 +98001,13 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_1 local.get $1 - i32.const 22388 + i32.const 22396 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 else block $block_5 local.get $4 - i32.const 25199 + i32.const 25207 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $4 @@ -98018,12 +98018,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_2 local.get $1 - i32.const 22386 + i32.const 22394 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_2 local.get $8 - i32.const 25202 + i32.const 25210 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $8 @@ -98034,12 +98034,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_3 local.get $1 - i32.const 23100 + i32.const 23108 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_3 local.get $9 - i32.const 25205 + i32.const 25213 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $9 @@ -98050,12 +98050,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_4 local.get $1 - i32.const 23103 + i32.const 23111 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_4 local.get $10 - i32.const 25208 + i32.const 25216 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $10 @@ -98066,12 +98066,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_5 local.get $1 - i32.const 23115 + i32.const 23123 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_5 local.get $11 - i32.const 25211 + i32.const 25219 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $11 @@ -98082,12 +98082,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_6 local.get $1 - i32.const 23119 + i32.const 23127 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_6 local.get $12 - i32.const 25214 + i32.const 25222 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $12 @@ -98098,12 +98098,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_7 local.get $1 - i32.const 23122 + i32.const 23130 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_7 local.get $13 - i32.const 25217 + i32.const 25225 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $13 @@ -98114,12 +98114,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_8 local.get $1 - i32.const 23124 + i32.const 23132 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_8 local.get $14 - i32.const 25220 + i32.const 25228 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $14 @@ -98130,12 +98130,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_9 local.get $1 - i32.const 23127 + i32.const 23135 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_9 local.get $15 - i32.const 25223 + i32.const 25231 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $15 @@ -98146,12 +98146,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_10 local.get $1 - i32.const 23129 + i32.const 23137 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_10 local.get $16 - i32.const 25226 + i32.const 25234 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $16 @@ -98162,12 +98162,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_11 local.get $1 - i32.const 23132 + i32.const 23140 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_11 local.get $17 - i32.const 25229 + i32.const 25237 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $17 @@ -98178,12 +98178,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_12 local.get $1 - i32.const 23135 + i32.const 23143 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_12 local.get $18 - i32.const 25232 + i32.const 25240 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $18 @@ -98194,12 +98194,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_13 local.get $1 - i32.const 22459 + i32.const 22467 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_13 local.get $19 - i32.const 25235 + i32.const 25243 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $19 @@ -98210,12 +98210,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_14 local.get $1 - i32.const 23138 + i32.const 23146 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_14 local.get $20 - i32.const 25238 + i32.const 25246 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $20 @@ -98226,12 +98226,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_15 local.get $1 - i32.const 23141 + i32.const 23149 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_15 local.get $21 - i32.const 25241 + i32.const 25249 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $21 @@ -98242,12 +98242,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_16 local.get $1 - i32.const 23144 + i32.const 23152 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_16 local.get $22 - i32.const 25244 + i32.const 25252 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $22 @@ -98258,12 +98258,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_17 local.get $1 - i32.const 22566 + i32.const 22574 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_17 local.get $23 - i32.const 25247 + i32.const 25255 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $23 @@ -98274,12 +98274,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_18 local.get $1 - i32.const 22987 + i32.const 22995 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_18 local.get $24 - i32.const 25250 + i32.const 25258 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $24 @@ -98290,12 +98290,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_19 local.get $1 - i32.const 23148 + i32.const 23156 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_19 local.get $25 - i32.const 25253 + i32.const 25261 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $25 @@ -98306,12 +98306,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_20 local.get $1 - i32.const 22453 + i32.const 22461 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_20 local.get $26 - i32.const 25256 + i32.const 25264 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $26 @@ -98322,12 +98322,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_21 local.get $1 - i32.const 23151 + i32.const 23159 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_21 local.get $27 - i32.const 25259 + i32.const 25267 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $27 @@ -98338,12 +98338,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_22 local.get $1 - i32.const 23157 + i32.const 23165 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_22 local.get $28 - i32.const 25262 + i32.const 25270 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $28 @@ -98354,12 +98354,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_23 local.get $1 - i32.const 23162 + i32.const 23170 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_23 local.get $29 - i32.const 25265 + i32.const 25273 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $29 @@ -98370,12 +98370,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_24 local.get $1 - i32.const 23165 + i32.const 23173 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_24 local.get $30 - i32.const 25268 + i32.const 25276 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $30 @@ -98386,12 +98386,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_25 local.get $1 - i32.const 23167 + i32.const 23175 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_25 local.get $31 - i32.const 25271 + i32.const 25279 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $31 @@ -98402,12 +98402,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_26 local.get $1 - i32.const 23174 + i32.const 23182 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_26 local.get $32 - i32.const 25274 + i32.const 25282 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $32 @@ -98418,12 +98418,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_27 local.get $1 - i32.const 23176 + i32.const 23184 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_27 local.get $33 - i32.const 25277 + i32.const 25285 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $33 @@ -98434,12 +98434,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_28 local.get $1 - i32.const 23185 + i32.const 23193 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_28 local.get $34 - i32.const 25280 + i32.const 25288 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $34 @@ -98450,12 +98450,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_29 local.get $1 - i32.const 23187 + i32.const 23195 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_29 local.get $35 - i32.const 25283 + i32.const 25291 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $35 @@ -98466,12 +98466,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_30 local.get $1 - i32.const 23190 + i32.const 23198 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_30 local.get $36 - i32.const 25286 + i32.const 25294 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $36 @@ -98487,7 +98487,7 @@ br $block_5 end ;; $if_31 local.get $1 - i32.const 23193 + i32.const 23201 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $block_5 @@ -98688,7 +98688,7 @@ local.get $2 i32.const 16 i32.add - i32.const 24984 + i32.const 24992 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -98866,7 +98866,7 @@ local.get $4 i32.const 24 i32.add - i32.const 24123 + i32.const 24131 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -98973,7 +98973,7 @@ end ;; $if_0 else local.get $1 - i32.const 23097 + i32.const 23105 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -98984,7 +98984,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE local.set $5 local.get $4 - i32.const 24127 + i32.const 24135 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -99448,7 +99448,7 @@ local.get $2 i32.const 40 i32.add - i32.const 23097 + i32.const 23105 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $2 @@ -99482,7 +99482,7 @@ i32.eq i32.store8 local.get $4 - i32.const 23711 + i32.const 23719 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $4 @@ -99495,7 +99495,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE br_if $block_0 local.get $3 - i32.const 23714 + i32.const 23722 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $3 @@ -99560,7 +99560,7 @@ if $if_1 (result i32) block $block_3 (result i32) local.get $5 - i32.const 23717 + i32.const 23725 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $5 @@ -99715,7 +99715,7 @@ i32.add local.set $3 local.get $2 - i32.const 23221 + i32.const 23229 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -99910,13 +99910,13 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $5 - i32.const 23372 + i32.const 23380 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load local.set $1 local.get $2 - i32.const 22380 + i32.const 22388 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $4 local.get $5 @@ -100078,7 +100078,7 @@ i32.const 24 i32.add local.tee $5 - i32.const 23434 + i32.const 23442 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -100095,7 +100095,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle22ParameterPackExpansion9printLeftERNS_12OutputStreamE local.get $2 - i32.const 22380 + i32.const 22388 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -100217,7 +100217,7 @@ $block_0 ;; default end ;; $block_2 local.get $8 - i32.const 21914 + i32.const 21922 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $5 local.get $8 @@ -100241,7 +100241,7 @@ i32.ge_u br_if $block local.get $2 - i32.const 22568 + i32.const 22576 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $5 local.get $2 @@ -100326,7 +100326,7 @@ i32.load local.set $1 local.get $3 - i32.const 22380 + i32.const 22388 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $5 local.get $6 @@ -100368,7 +100368,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $3 - i32.const 23560 + i32.const 23568 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -100467,7 +100467,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $4 - i32.const 22566 + i32.const 22574 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -100491,7 +100491,7 @@ i32.add call_indirect $32 (type $1) local.get $5 - i32.const 23572 + i32.const 23580 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -100515,7 +100515,7 @@ i32.add call_indirect $32 (type $1) local.get $6 - i32.const 22380 + i32.const 22388 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $6 @@ -100550,7 +100550,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $3 - i32.const 23619 + i32.const 23627 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -100636,7 +100636,7 @@ i32.const 24 i32.add local.tee $6 - i32.const 22384 + i32.const 22392 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -100650,7 +100650,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 23636 + i32.const 23644 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -100664,7 +100664,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $5 - i32.const 23642 + i32.const 23650 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -100678,7 +100678,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $3 - i32.const 22380 + i32.const 22388 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -100722,13 +100722,13 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $5 - i32.const 23700 + i32.const 23708 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load local.set $1 local.get $2 - i32.const 22380 + i32.const 22388 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $4 local.get $5 @@ -100893,7 +100893,7 @@ i32.load8_s offset=28 if $if local.get $4 - i32.const 23720 + i32.const 23728 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -100922,7 +100922,7 @@ local.get $3 i32.const 40 i32.add - i32.const 23732 + i32.const 23740 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -100935,7 +100935,7 @@ i32.load8_s offset=29 if $if_0 local.get $4 - i32.const 23736 + i32.const 23744 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -100955,7 +100955,7 @@ i32.load offset=4 if $if_1 local.get $5 - i32.const 22384 + i32.const 22392 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -100968,7 +100968,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle9NodeArray14printWithCommaERNS_12OutputStreamE local.get $6 - i32.const 22380 + i32.const 22388 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -100989,7 +100989,7 @@ i32.load offset=4 if $if_2 local.get $7 - i32.const 22384 + i32.const 22392 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -101002,7 +101002,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle9NodeArray14printWithCommaERNS_12OutputStreamE local.get $3 - i32.const 22380 + i32.const 22388 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -101187,7 +101187,7 @@ i32.add i32.store local.get $1 - i32.const 23939 + i32.const 23947 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $4 local.get $1 @@ -101302,7 +101302,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 23830 + i32.const 23838 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -101334,7 +101334,7 @@ i32.ge_s if $if (result i32) local.get $2 - i32.const 23836 + i32.const 23844 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -101444,7 +101444,7 @@ i32.ge_s if $if_0 (result i32) local.get $2 - i32.const 23836 + i32.const 23844 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -101647,7 +101647,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $1 - i32.const 23950 + i32.const 23958 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -101780,7 +101780,7 @@ i32.const 16 i32.add local.tee $5 - i32.const 22384 + i32.const 22392 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -101794,7 +101794,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 24016 + i32.const 24024 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -101808,7 +101808,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $2 - i32.const 22018 + i32.const 22026 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -101846,7 +101846,7 @@ i32.load local.set $1 local.get $3 - i32.const 24074 + i32.const 24082 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 i32.load @@ -102210,7 +102210,7 @@ else block $block (result i32) local.get $1 - i32.const 24189 + i32.const 24197 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $1 @@ -102225,7 +102225,7 @@ br $block end ;; $if_1 local.get $4 - i32.const 24192 + i32.const 24200 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -102349,7 +102349,7 @@ i32.add local.set $3 local.get $2 - i32.const 24130 + i32.const 24138 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -102529,7 +102529,7 @@ i32.add i32.store local.get $0 - i32.const 24195 + i32.const 24203 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -102541,7 +102541,7 @@ i32.add i32.store local.get $0 - i32.const 24206 + i32.const 24214 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -102553,7 +102553,7 @@ i32.add i32.store local.get $0 - i32.const 24216 + i32.const 24224 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -102565,7 +102565,7 @@ i32.add i32.store local.get $0 - i32.const 24227 + i32.const 24235 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -102610,7 +102610,7 @@ i32.add i32.store local.get $0 - i32.const 24237 + i32.const 24245 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -102622,7 +102622,7 @@ i32.add i32.store local.get $0 - i32.const 24248 + i32.const 24256 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -102634,7 +102634,7 @@ i32.add i32.store local.get $0 - i32.const 24258 + i32.const 24266 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -102769,7 +102769,7 @@ i32.add i32.store local.get $0 - i32.const 24268 + i32.const 24276 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -102781,7 +102781,7 @@ i32.add i32.store local.get $0 - i32.const 24286 + i32.const 24294 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -102806,7 +102806,7 @@ i32.add i32.store local.get $0 - i32.const 24296 + i32.const 24304 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -102818,7 +102818,7 @@ i32.add i32.store local.get $0 - i32.const 24306 + i32.const 24314 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -102864,7 +102864,7 @@ i32.add i32.store local.get $0 - i32.const 24317 + i32.const 24325 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -102876,7 +102876,7 @@ i32.add i32.store local.get $0 - i32.const 24327 + i32.const 24335 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -102888,7 +102888,7 @@ i32.add i32.store local.get $0 - i32.const 24338 + i32.const 24346 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -102931,7 +102931,7 @@ i32.add i32.store local.get $0 - i32.const 24349 + i32.const 24357 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -102943,7 +102943,7 @@ i32.add i32.store local.get $0 - i32.const 24360 + i32.const 24368 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -102978,7 +102978,7 @@ i32.add i32.store local.get $0 - i32.const 24370 + i32.const 24378 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ else i32.const 0 @@ -103025,7 +103025,7 @@ i32.add i32.store local.get $0 - i32.const 24381 + i32.const 24389 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -103061,7 +103061,7 @@ i32.add i32.store local.get $0 - i32.const 24392 + i32.const 24400 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -103073,7 +103073,7 @@ i32.add i32.store local.get $0 - i32.const 24403 + i32.const 24411 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -103085,7 +103085,7 @@ i32.add i32.store local.get $0 - i32.const 24415 + i32.const 24423 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -103133,7 +103133,7 @@ i32.add i32.store local.get $0 - i32.const 24425 + i32.const 24433 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -103145,7 +103145,7 @@ i32.add i32.store local.get $0 - i32.const 24435 + i32.const 24443 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -103157,7 +103157,7 @@ i32.add i32.store local.get $0 - i32.const 24286 + i32.const 24294 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -103169,7 +103169,7 @@ i32.add i32.store local.get $0 - i32.const 24446 + i32.const 24454 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -103181,7 +103181,7 @@ i32.add i32.store local.get $0 - i32.const 24457 + i32.const 24465 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -103228,7 +103228,7 @@ i32.add i32.store local.get $0 - i32.const 24468 + i32.const 24476 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -103240,7 +103240,7 @@ i32.add i32.store local.get $0 - i32.const 24483 + i32.const 24491 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -103252,7 +103252,7 @@ i32.add i32.store local.get $0 - i32.const 24425 + i32.const 24433 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -103264,7 +103264,7 @@ i32.add i32.store local.get $0 - i32.const 24494 + i32.const 24502 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -103276,7 +103276,7 @@ i32.add i32.store local.get $0 - i32.const 24504 + i32.const 24512 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -103322,7 +103322,7 @@ i32.add i32.store local.get $0 - i32.const 24517 + i32.const 24525 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -103334,7 +103334,7 @@ i32.add i32.store local.get $0 - i32.const 24528 + i32.const 24536 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -103346,7 +103346,7 @@ i32.add i32.store local.get $0 - i32.const 24538 + i32.const 24546 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -103395,7 +103395,7 @@ i32.add i32.store local.get $0 - i32.const 24549 + i32.const 24557 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -103407,7 +103407,7 @@ i32.add i32.store local.get $0 - i32.const 24561 + i32.const 24569 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -103419,7 +103419,7 @@ i32.add i32.store local.get $0 - i32.const 24571 + i32.const 24579 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -103431,7 +103431,7 @@ i32.add i32.store local.get $0 - i32.const 24582 + i32.const 24590 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -103443,7 +103443,7 @@ i32.add i32.store local.get $0 - i32.const 24561 + i32.const 24569 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -103455,7 +103455,7 @@ i32.add i32.store local.get $0 - i32.const 24593 + i32.const 24601 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -103490,7 +103490,7 @@ i32.add i32.store local.get $0 - i32.const 24604 + i32.const 24612 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ else i32.const 0 @@ -103536,7 +103536,7 @@ i32.add i32.store local.get $0 - i32.const 24614 + i32.const 24622 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -103548,7 +103548,7 @@ i32.add i32.store local.get $0 - i32.const 24624 + i32.const 24632 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -103560,7 +103560,7 @@ i32.add i32.store local.get $0 - i32.const 24635 + i32.const 24643 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -103572,7 +103572,7 @@ i32.add i32.store local.get $0 - i32.const 24646 + i32.const 24654 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -103607,7 +103607,7 @@ i32.add i32.store local.get $0 - i32.const 24658 + i32.const 24666 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ else i32.const 0 @@ -103740,7 +103740,7 @@ i32.add local.set $3 local.get $2 - i32.const 24670 + i32.const 24678 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -103777,7 +103777,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $1 - i32.const 24734 + i32.const 24742 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -103833,7 +103833,7 @@ i32.add local.set $3 local.get $2 - i32.const 24750 + i32.const 24758 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -103903,7 +103903,7 @@ i32.add local.set $3 local.get $2 - i32.const 23117 + i32.const 23125 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -103980,7 +103980,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $2 - i32.const 24130 + i32.const 24138 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -104039,7 +104039,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $3 - i32.const 24913 + i32.const 24921 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -104147,7 +104147,7 @@ i32.load8_s offset=12 if $if local.get $4 - i32.const 24130 + i32.const 24138 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -104161,7 +104161,7 @@ i32.const 8 i32.add local.tee $4 - i32.const 24926 + i32.const 24934 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -104174,7 +104174,7 @@ i32.load8_s offset=13 if $if_0 local.get $2 - i32.const 24933 + i32.const 24941 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -104289,7 +104289,7 @@ i32.const 16 i32.add local.tee $5 - i32.const 22384 + i32.const 22392 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -104303,7 +104303,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 24987 + i32.const 24995 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -104318,7 +104318,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle9NodeArray14printWithCommaERNS_12OutputStreamE local.get $2 - i32.const 22380 + i32.const 22388 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -104428,7 +104428,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 22384 + i32.const 22392 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -104443,7 +104443,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle9NodeArray14printWithCommaERNS_12OutputStreamE local.get $2 - i32.const 22380 + i32.const 22388 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -104478,7 +104478,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $3 - i32.const 25085 + i32.const 25093 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -104608,7 +104608,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $4 - i32.const 22384 + i32.const 22392 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -104622,7 +104622,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $5 - i32.const 22380 + i32.const 22388 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -104766,14 +104766,14 @@ i32.const 56 i32.add local.tee $2 - i32.const 22459 + i32.const 22467 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $4 local.get $2 call $__ZN12_GLOBAL__N_1eqERKNS_10StringViewES2_ if $if local.get $5 - i32.const 22384 + i32.const 22392 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -104784,7 +104784,7 @@ call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE end ;; $if local.get $6 - i32.const 22384 + i32.const 22392 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -104798,7 +104798,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $7 - i32.const 25143 + i32.const 25151 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -104819,7 +104819,7 @@ local.get $2 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $8 - i32.const 25146 + i32.const 25154 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $8 @@ -104833,7 +104833,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $9 - i32.const 22380 + i32.const 22388 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $9 @@ -104843,14 +104843,14 @@ local.get $2 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $2 - i32.const 22459 + i32.const 22467 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $4 local.get $2 call $__ZN12_GLOBAL__N_1eqERKNS_10StringViewES2_ if $if_0 local.get $10 - i32.const 22380 + i32.const 22388 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $10 @@ -105033,7 +105033,7 @@ local.set $0 end ;; $if_0 local.get $6 - i32.const 25289 + i32.const 25297 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $6 @@ -105076,7 +105076,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $4 - i32.const 25294 + i32.const 25302 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -105286,7 +105286,7 @@ i32.const 8 i32.add local.tee $4 - i32.const 25343 + i32.const 25351 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -106103,7 +106103,7 @@ local.get $8 i32.store offset=8 local.get $4 - i32.const 25550 + i32.const 25558 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $6 local.get $4 @@ -106115,7 +106115,7 @@ if $if_4 local.get $2 local.get $0 - i32.const 25868 + i32.const 25876 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ i32.store end ;; $if_4 @@ -106435,7 +106435,7 @@ i32.store local.get $2 local.get $0 - i32.const 25808 + i32.const 25816 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ i32.store local.get $0 @@ -106534,7 +106534,7 @@ local.get $2 i32.const 8 i32.add - i32.const 25546 + i32.const 25554 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -106547,7 +106547,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE br_if $block_0 local.get $2 - i32.const 25550 + i32.const 25558 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -106650,7 +106650,7 @@ br $block_1 end ;; $if_1 local.get $4 - i32.const 25612 + i32.const 25620 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -106790,7 +106790,7 @@ i32.add local.set $3 local.get $2 - i32.const 25553 + i32.const 25561 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -106841,7 +106841,7 @@ local.get $2 i32.const 32 i32.add - i32.const 25673 + i32.const 25681 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $2 @@ -106870,7 +106870,7 @@ local.set $0 else local.get $5 - i32.const 25676 + i32.const 25684 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $5 @@ -106902,7 +106902,7 @@ i32.const 1 i32.store8 offset=362 local.get $4 - i32.const 25679 + i32.const 25687 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $4 @@ -107171,7 +107171,7 @@ i32.const 24 i32.add local.tee $6 - i32.const 25682 + i32.const 25690 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -107192,7 +107192,7 @@ local.get $2 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $4 - i32.const 25690 + i32.const 25698 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -107207,7 +107207,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle9NodeArray14printWithCommaERNS_12OutputStreamE local.get $5 - i32.const 22380 + i32.const 22388 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -107295,7 +107295,7 @@ i32.const 16 i32.add local.tee $5 - i32.const 25745 + i32.const 25753 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -107316,7 +107316,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $4 - i32.const 25754 + i32.const 25762 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -107860,7 +107860,7 @@ i32.load8_s offset=12 if $if local.get $4 - i32.const 23117 + i32.const 23125 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -107986,7 +107986,7 @@ $block ;; default end ;; $block_5 local.get $4 - i32.const 22162 + i32.const 22170 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -107998,7 +107998,7 @@ br $block end ;; $block_4 local.get $5 - i32.const 22177 + i32.const 22185 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -108010,7 +108010,7 @@ br $block end ;; $block_3 local.get $6 - i32.const 25964 + i32.const 25972 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -108022,7 +108022,7 @@ br $block end ;; $block_2 local.get $7 - i32.const 26035 + i32.const 26043 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -108034,7 +108034,7 @@ br $block end ;; $block_1 local.get $8 - i32.const 26085 + i32.const 26093 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $8 @@ -108046,7 +108046,7 @@ br $block end ;; $block_0 local.get $3 - i32.const 26135 + i32.const 26143 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -108077,32 +108077,32 @@ $block ;; default end ;; $block_5 local.get $0 - i32.const 22107 + i32.const 22115 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_4 local.get $0 - i32.const 22117 + i32.const 22125 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_3 local.get $0 - i32.const 22117 + i32.const 22125 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_2 local.get $0 - i32.const 25921 + i32.const 25929 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_1 local.get $0 - i32.const 25935 + i32.const 25943 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_0 local.get $0 - i32.const 25949 + i32.const 25957 call $__ZN12_GLOBAL__N_110StringViewC2EPKc end ;; $block ) @@ -108235,7 +108235,7 @@ call $__ZNK12_GLOBAL__N_116itanium_demangle4Node11hasFunctionERNS_12OutputStreamE br_if $block_0 local.get $5 - i32.const 22382 + i32.const 22390 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -108247,7 +108247,7 @@ br $block end ;; $block_0 local.get $4 - i32.const 22384 + i32.const 22392 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -108262,7 +108262,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $2 - i32.const 26297 + i32.const 26305 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -108305,7 +108305,7 @@ br $block end ;; $block_0 local.get $2 - i32.const 22380 + i32.const 22388 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -108502,7 +108502,7 @@ i32.ne if $if_0 local.get $4 - i32.const 22382 + i32.const 22390 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -108519,7 +108519,7 @@ local.get $3 i32.const 16 i32.add - i32.const 26357 + i32.const 26365 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -108576,7 +108576,7 @@ end ;; $if_4 end ;; $if_2 local.get $3 - i32.const 22018 + i32.const 22026 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -108717,7 +108717,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 26407 + i32.const 26415 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -108774,7 +108774,7 @@ end ;; $if_2 end ;; $if_0 local.get $2 - i32.const 22018 + i32.const 22026 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -108922,7 +108922,7 @@ local.get $2 i32.const 16 i32.add - i32.const 26463 + i32.const 26471 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -108949,7 +108949,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $2 - i32.const 22018 + i32.const 22026 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -109053,7 +109053,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $1 - i32.const 26539 + i32.const 26547 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -109087,7 +109087,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $1 - i32.const 26546 + i32.const 26554 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -109121,7 +109121,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $1 - i32.const 22670 + i32.const 22678 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -109269,7 +109269,7 @@ i32.and if $if local.get $4 - i32.const 26575 + i32.const 26583 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -109291,7 +109291,7 @@ i32.and if $if_0 local.get $4 - i32.const 26582 + i32.const 26590 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -109309,7 +109309,7 @@ i32.and if $if_1 local.get $2 - i32.const 26592 + i32.const 26600 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -109420,7 +109420,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 22382 + i32.const 22390 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -109546,7 +109546,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 22566 + i32.const 22574 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -109567,7 +109567,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $5 - i32.const 22459 + i32.const 22467 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -109710,7 +109710,7 @@ i32.add call_indirect $32 (type $1) local.get $2 - i32.const 22382 + i32.const 22390 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -109768,7 +109768,7 @@ i32.const 48 i32.add local.tee $4 - i32.const 22384 + i32.const 22392 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -109783,7 +109783,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle9NodeArray14printWithCommaERNS_12OutputStreamE local.get $5 - i32.const 22380 + i32.const 22388 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -109813,7 +109813,7 @@ i32.and if $if local.get $6 - i32.const 26575 + i32.const 26583 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -109831,7 +109831,7 @@ i32.and if $if_0 local.get $7 - i32.const 26582 + i32.const 26590 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -109849,7 +109849,7 @@ i32.and if $if_1 local.get $8 - i32.const 26592 + i32.const 26600 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $8 @@ -109871,7 +109871,7 @@ $block ;; default end ;; $block_1 local.get $9 - i32.const 26777 + i32.const 26785 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $9 @@ -109883,7 +109883,7 @@ br $block end ;; $block_0 local.get $3 - i32.const 26780 + i32.const 26788 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -109974,7 +109974,7 @@ i32.add local.set $3 local.get $2 - i32.const 26833 + i32.const 26841 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -110052,7 +110052,7 @@ i32.const 8 i32.add local.tee $4 - i32.const 26897 + i32.const 26905 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -110066,7 +110066,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $2 - i32.const 22380 + i32.const 22388 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -110285,7 +110285,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 25146 + i32.const 25154 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -110306,7 +110306,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $5 - i32.const 22380 + i32.const 22388 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -110600,7 +110600,7 @@ local.get $1 if $if_9 (result i32) local.get $0 - i32.const 27178 + i32.const 27186 local.get $2 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_11SpecialNameEJRA34_KcRPNS0_4NodeEEEESC_DpOT0_ else @@ -111117,7 +111117,7 @@ i32.eqz if $if_0 local.get $2 - i32.const 22382 + i32.const 22390 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -111181,7 +111181,7 @@ i32.const 48 i32.add local.tee $4 - i32.const 22384 + i32.const 22392 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -111196,7 +111196,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle9NodeArray14printWithCommaERNS_12OutputStreamE local.get $5 - i32.const 22380 + i32.const 22388 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -111229,7 +111229,7 @@ i32.and if $if_0 local.get $6 - i32.const 26575 + i32.const 26583 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -111247,7 +111247,7 @@ i32.and if $if_1 local.get $7 - i32.const 26582 + i32.const 26590 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -111265,7 +111265,7 @@ i32.and if $if_2 local.get $8 - i32.const 26592 + i32.const 26600 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $8 @@ -111287,7 +111287,7 @@ $block ;; default end ;; $block_1 local.get $9 - i32.const 26777 + i32.const 26785 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $9 @@ -111299,7 +111299,7 @@ br $block end ;; $block_0 local.get $3 - i32.const 26780 + i32.const 26788 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -111387,7 +111387,7 @@ i32.add local.set $3 local.get $2 - i32.const 27116 + i32.const 27124 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -111519,7 +111519,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 27212 + i32.const 27220 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -111558,7 +111558,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 27237 + i32.const 27245 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -111597,7 +111597,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 27257 + i32.const 27265 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -111636,7 +111636,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 27279 + i32.const 27287 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -111675,7 +111675,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 27297 + i32.const 27305 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -111743,7 +111743,7 @@ i32.const 8 i32.add local.tee $4 - i32.const 27338 + i32.const 27346 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -111757,7 +111757,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $2 - i32.const 27363 + i32.const 27371 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -111795,7 +111795,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 27426 + i32.const 27434 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -111834,7 +111834,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 27453 + i32.const 27461 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -111873,7 +111873,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 27472 + i32.const 27480 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -111912,7 +111912,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 27486 + i32.const 27494 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -111951,7 +111951,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 27495 + i32.const 27503 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -113793,5 +113793,5 @@ call_indirect $32 (type $9) ) ;; User section "emscripten_metadata": - ;; "\00\01\00\03\80\02\99\06\80\08\b0\f5\c1\02\90\f5\01\a0\f5\01" + ;; "\00\02\00\04\00\80\02\99\06\80\08\c0\f5\c1\02\a0\f5\01\b0\f5\01" ) \ No newline at end of file diff --git a/test/extensions/filters/http/wasm/test_data/headers_cpp.wasm b/test/extensions/filters/http/wasm/test_data/headers_cpp.wasm index 385d6596322da..72bdc8a69270b 100644 Binary files a/test/extensions/filters/http/wasm/test_data/headers_cpp.wasm and b/test/extensions/filters/http/wasm/test_data/headers_cpp.wasm differ diff --git a/test/extensions/filters/http/wasm/test_data/headers_cpp.wat b/test/extensions/filters/http/wasm/test_data/headers_cpp.wat index 21be6f7d83875..1fbf289edc97d 100644 --- a/test/extensions/filters/http/wasm/test_data/headers_cpp.wat +++ b/test/extensions/filters/http/wasm/test_data/headers_cpp.wat @@ -170,7 +170,7 @@ $__ZNSt3__210__function16__policy_invokerIFNS_10unique_ptrI11RootContextNS_14default_deleteIS3_EEEEjNS_17basic_string_viewIcNS_11char_traitsIcEEEEEE12__call_emptyEPKNS0_16__policy_storageEjOSA_ $__ZNSt3__210__function16__policy_invokerIFNS_10unique_ptrI11RootContextNS_14default_deleteIS3_EEEEjNS_17basic_string_viewIcNS_11char_traitsIcEEEEEE12__call_emptyEPKNS0_16__policy_storageEjOSA_ $b11 $__ZN11RootContext18onHttpCallResponseEjNSt3__210unique_ptrI8WasmDataNS0_14default_deleteIS2_EEEES5_S5_ $__ZNK10__cxxabiv117__class_type_info16search_below_dstEPNS_19__dynamic_cast_infoEPKvib $__ZNK10__cxxabiv120__si_class_type_info16search_below_dstEPNS_19__dynamic_cast_infoEPKvib $__ZNK10__cxxabiv121__vmi_class_type_info16search_below_dstEPNS_19__dynamic_cast_infoEPKvib $b11 $b11 $b11 $b12 $__ZNK10__cxxabiv117__class_type_info16search_above_dstEPNS_19__dynamic_cast_infoEPKvS4_ib $__ZNK10__cxxabiv120__si_class_type_info16search_above_dstEPNS_19__dynamic_cast_infoEPKvS4_ib $__ZNK10__cxxabiv121__vmi_class_type_info16search_above_dstEPNS_19__dynamic_cast_infoEPKvS4_ib $b13) (data $35 $29 (i32.const 1024) - "\f29\00\00\f79\00\00\ff9\00\00\05:") + "\f49\00\00\f99\00\00\01:\00\00\07:") (data $36 $29 (i32.const 1168) "\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0" "\f0\f0\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\02\03\03\03\03\03\03\03\03\03\03\03\03\07\03\03\04\05\05\05\06\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0" @@ -245,11 +245,11 @@ "\00\00\00g\00\00\00k\00\00\00m\00\00\00q\00\00\00y\00\00\00\7f\00\00\00\83\00\00\00\89\00\00\00\8b\00\00\00\8f\00\00\00\95\00\00\00\97\00\00\00\9d\00\00\00\a3\00\00\00\a7\00\00\00\a9" "\00\00\00\ad\00\00\00\b3\00\00\00\b5\00\00\00\bb\00\00\00\bf\00\00\00\c1\00\00\00\c5\00\00\00\c7\00\00\00\d1\00\00\00<\1e\00\00C+\00\00d\1e\00\00:+\00\00p\11\00\00\00\00\00\00d" "\1e\00\00)+\00\00x\11\00\00\00\00\00\00<\1e\00\00b+\00\00<\1e\00\00g+\00\00\80*\00\00i,\00\00\00\00\00\00\01\00\00\00\c0\11\00\00\00\00\00\00<\1e\00\00\a8,\00\00d" - "\1e\00\00\8b6\00\00\88\12\00\00\00\00\00\00d\1e\00\00m5\00\00\e8\11\00\00\00\00\00\00d\1e\00\00*/\00\00\f8\11\00\00\00\00\00\00d\1e\00\00Z/\00\00\08\12\00\00\00\00\00\00d" - "\1e\00\00 0\00\00\88\12\00\00\00\00\00\00d\1e\00\00:5\00\00\88\12\00\00\00\00\00\00\80*\00\00\f83\00\00\00\00\00\00\01\00\00\00@\12\00\00\00\00\00\00<\1e\00\00e4\00\00d" - "\1e\00\00T5\00\00\88\12\00\00\00\00\00\00d\1e\00\00\be6\00\00p\11\00\00\00\00\00\00d\1e\00\00\ed6\00\00x\14\00\00\00\00\00\00\ff\ff\ff\ff\ff\ff\ff\ff") + "\1e\00\00\8d6\00\00\88\12\00\00\00\00\00\00d\1e\00\00o5\00\00\e8\11\00\00\00\00\00\00d\1e\00\00,/\00\00\f8\11\00\00\00\00\00\00d\1e\00\00\\/\00\00\08\12\00\00\00\00\00\00d" + "\1e\00\00\"0\00\00\88\12\00\00\00\00\00\00d\1e\00\00<5\00\00\88\12\00\00\00\00\00\00\80*\00\00\fa3\00\00\00\00\00\00\01\00\00\00@\12\00\00\00\00\00\00<\1e\00\00g4\00\00d" + "\1e\00\00V5\00\00\88\12\00\00\00\00\00\00d\1e\00\00\c06\00\00p\11\00\00\00\00\00\00d\1e\00\00\ef6\00\00x\14\00\00\00\00\00\00\ff\ff\ff\ff\ff\ff\ff\ff") (data $53 $29 (i32.const 4744) - "<\1e\00\00\ee;\00\00d\1e\00\00\bf?\00\00\b0\12\00\00\00\00\00\00d\1e\00\00{@\00\00\b0\12\00\00\00\00\00\00<\1e\00\00GA\00\00\05") + "<\1e\00\00\f0;\00\00d\1e\00\00\c1?\00\00\b0\12\00\00\00\00\00\00d\1e\00\00}@\00\00\b0\12\00\00\00\00\00\00<\1e\00\00IA\00\00\05") (data $54 $29 (i32.const 4804) "-") (data $55 $29 (i32.const 4828) @@ -273,26 +273,26 @@ (data $64 $29 (i32.const 5155) "\ff\ff\ff\ff\ff") (data $65 $29 (i32.const 5224) - "d\1e\00\00\beA\00\00x\14\00\00\00\00\00\00<\1e\00\00\80B\00\00d\1e\00\00\e0B\00\00\90\14\00\00\00\00\00\00d\1e\00\00\8dB\00\00\a0\14\00\00\00\00\00\00<\1e\00\00\aeB\00\00" - "d\1e\00\00\bbB\00\00\80\14\00\00\00\00\00\00d\1e\00\00pD\00\00\c8\14\00\00\00\00\00\00<\1e\00\00\9fD\00\00d\1e\00\00SE\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\96E\00\00" - "\c8\14\00\00\00\00\00\00d\1e\00\00\e3E\00\00\c8\14\00\00\00\00\00\00d\1e\00\00)F\00\00\c8\14\00\00\00\00\00\00d\1e\00\00YF\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\97F\00\00" - "\c8\14\00\00\00\00\00\00d\1e\00\00\c8F\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\18G\00\00\c8\14\00\00\00\00\00\00d\1e\00\00QG\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\8cG\00\00" - "\c8\14\00\00\00\00\00\00d\1e\00\00\c8G\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\0bH\00\00\c8\14\00\00\00\00\00\00d\1e\00\009H\00\00\c8\14\00\00\00\00\00\00d\1e\00\00lH\00\00" - "\c8\14\00\00\00\00\00\00d\1e\00\00(I\00\00\c8\14\00\00\00\00\00\00d\1e\00\00UI\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\86I\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\c4I\00\00" - "\c8\14\00\00\00\00\00\00d\1e\00\00J\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\03J\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\85J\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\ceJ\00\00" + "\c8\14\00\00\00\00\00\00d\1e\00\00)K\00\00\c8\14\00\00\00\00\00\00d\1e\00\00TK\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\8eK\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\c2K\00\00" + "\c8\14\00\00\00\00\00\00d\1e\00\00\12L\00\00\c8\14\00\00\00\00\00\00d\1e\00\00AL\00\00\c8\14\00\00\00\00\00\00d\1e\00\00zL\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\b3L\00\00" + "\c8\14\00\00\00\00\00\00d\1e\00\00\d8N\00\00\c8\14\00\00\00\00\00\00d\1e\00\00&O\00\00\c8\14\00\00\00\00\00\00d\1e\00\00aO\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\8dO\00\00" + "\c8\14\00\00\00\00\00\00d\1e\00\00\d7O\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\0cP\00\00\c8\14\00\00\00\00\00\00d\1e\00\00?P\00\00\c8\14\00\00\00\00\00\00d\1e\00\00vP\00\00" + "\c8\14\00\00\00\00\00\00d\1e\00\00\abP\00\00\c8\14\00\00\00\00\00\00d\1e\00\00AQ\00\00\c8\14\00\00\00\00\00\00d\1e\00\00sQ\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\a5Q\00\00" + "\c8\14\00\00\00\00\00\00d\1e\00\00\fdQ\00\00\c8\14\00\00\00\00\00\00d\1e\00\00ER\00\00\c8\14\00\00\00\00\00\00d\1e\00\00}R\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\cbR\00\00" + "\c8\14\00\00\00\00\00\00d\1e\00\00\nS\00\00\c8\14\00\00\00\00\00\00d\1e\00\00MS\00\00\c8\14\00\00\00\00\00\00d\1e\00\00~S\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\b8T\00\00" + "\c8\14\00\00\00\00\00\00d\1e\00\00\f8T\00\00\c8\14\00\00\00\00\00\00d\1e\00\00+U\00\00\c8\14\00\00\00\00\00\00d\1e\00\00eU\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\9eU\00\00" + "\c8\14\00\00\00\00\00\00d\1e\00\00\dbU\00\00\c8\14\00\00\00\00\00\00d\1e\00\00XV\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\84V\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\baV\00\00" + "\c8\14\00\00\00\00\00\00d\1e\00\00\0eW\00\00\c8\14\00\00\00\00\00\00d\1e\00\00FW\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\89W\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\baW\00\00" + "\c8\14\00\00\00\00\00\00d\1e\00\00\eaW\00\00\c8\14\00\00\00\00\00\00d\1e\00\00%X\00\00\c8\14\00\00\00\00\00\00d\1e\00\00gX\00\00\c8\14\00\00\00\00\00\00d\1e\00\00VY\00\00" + "\c8\14\00\00\00\00\00\00d\1e\00\00\e1Y\00\00x\14\00\00\00\00\00\00d\1e\00\00\f1Y\00\00\f0\18\00\00\00\00\00\00d\1e\00\00\02Z\00\00\90\14\00\00\00\00\00\00d\1e\00\00$Z\00\00" + "\10\19\00\00\00\00\00\00d\1e\00\00HZ\00\00\90\14\00\00\00\00\00\00d*\00\00pZ\00\00d*\00\00rZ\00\00d*\00\00tZ\00\00d\1e\00\00vZ\00\00\80\14") (data $66 $29 (i32.const 6508) "\88\11\00\00\01\00\00\00\02\00\00\00\01\00\00\00\02\00\00\00\01\00\00\00\02\00\00\00\03\00\00\00\03\00\00\00\04\00\00\00\01\00\00\00\05\00\00\00\06\00\00\00\07\00\00\00\02\00\00\00\08\00\00\00" "\04\00\00\00\05\00\00\00\06\00\00\00\00\00\00\00p\11\00\00\01\00\00\00\07\00\00\00\09\00\00\00\n\00\00\00\01\00\00\00\02") @@ -382,190 +382,190 @@ "nerE\00/usr/local/include/google/protobuf/arenastring.h\00CHECK fail" "ed: initial_value != NULL: \00NSt3__212basic_stringIcNS_11char_tra" "itsIcEENS_9allocatorIcEEEE\00NSt3__221__basic_string_commonILb1EEE" - "\00/home/jplev_google_com/envoy/api/wasm/cpp/struct_lite.pb.cc\00/us" - "r/local/include/google/protobuf/repeated_field.h\00CHECK failed: (" - "index) >= (0): \00CHECK failed: (index) < (current_size_): \00/usr/l" - "ocal/include/google/protobuf/map.h\00CHECK failed: (bucket_index_ " - "& 1) == (0): \00CHECK failed: m_->index_of_first_non_null_ == m_->" - "num_buckets_ || m_->table_[m_->index_of_first_non_null_] != NULL" - ": \00CHECK failed: !tree->empty(): \00CHECK failed: node_ != NULL &&" - " m_ != NULL: \00google.protobuf.Value.string_value\00google.protobuf" - ".Struct.FieldsEntry.key\00CHECK failed: (&from) != (this): \00CHECK " - "failed: (&other) != (this): \00N6google8protobuf27Struct_FieldsEnt" - "ry_DoNotUseE\00N6google8protobuf8internal12MapEntryLiteINS0_27Stru" - "ct_FieldsEntry_DoNotUseENSt3__212basic_stringIcNS4_11char_traits" - "IcEENS4_9allocatorIcEEEENS0_5ValueELNS1_14WireFormatLite9FieldTy" - "peE9ELSD_11ELi0EEE\00N6google8protobuf8internal12MapEntryImplINS0_" - "27Struct_FieldsEntry_DoNotUseENS0_11MessageLiteENSt3__212basic_s" - "tringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEENS0_5ValueELNS1_" - "14WireFormatLite9FieldTypeE9ELSE_11ELi0EEE\00CHECK failed: (it.m_)" - " == (this): \00CHECK failed: TableEntryIsNonEmptyList(b): \00CHECK f" - "ailed: TableEntryIsTree(b): \00CHECK failed: GetArenaNoVirtual() =" - "= NULL: \00CHECK failed: index_of_first_non_null_ == num_buckets_ " - "|| table_[index_of_first_non_null_] != NULL: \00CHECK failed: find" - "(*KeyPtrFromNodePtr(node)) == end(): \00CHECK failed: (count) <= (" - "kMaxLength): \00CHECK failed: (result.bucket_index_) == (b & ~stat" - "ic_cast(1)): \00CHECK failed: (table_[b]) == (table_[b " - "^ 1]): \00CHECK failed: !TableEntryIsTree(b) && !TableEntryIsTree(" - "b ^ 1): \00CHECK failed: (count) == (tree->size()): \00CHECK failed:" - " (new_num_buckets) >= (kMinTableSize): \00CHECK failed: n >= kMinT" - "ableSize: \00CHECK failed: (n & (n - 1)) == (0): \00CHECK failed: ta" - "ble_[b] == table_[b + 1] && (b & 1) == 0: \00N6google8protobuf3Map" - "INSt3__212basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEE" - "ENS0_5ValueEE8InnerMapE\00N6google8protobuf4hashINSt3__212basic_st" - "ringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEE\00f == NULL || d" - "ynamic_cast(f) != NULL\00/usr/local/include/google/protobuf/st" - "ubs/casts.h\00down_cast\00google.protobuf.Struct\00N6google8protobuf6S" - "tructE\00N6google8protobuf5ValueE\00N6google8protobuf8internal12MapE" - "ntryImplINS0_27Struct_FieldsEntry_DoNotUseENS0_11MessageLiteENSt" - "3__212basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEENS0" - "_5ValueELNS1_14WireFormatLite9FieldTypeE9ELSE_11ELi0EE15MapEntry" - "WrapperE\00CHECK failed: (n) >= (0): \00google.protobuf.ListValue\00N6" - "google8protobuf9ListValueE\00google.protobuf.Value\0011RootContext\00n" - "o context factory for root_id: \00N6google8protobuf14FatalExceptio" - "nE\00google/protobuf/stubs/common.cc\00This program requires version" - " \00%d.%d.%d\00 of the Protocol Buffer runtime library, but the inst" - "alled version is \00. Please update your library. If you compile" - "d the program yourself, make sure that your headers are from the" - " same version of Protocol Buffers as your link-time library. (V" - "ersion verification failed in \"\00\".)\00This program was compiled ag" - "ainst version \00 of the Protocol Buffer runtime library, which is" - " not compatible with the installed version (\00). Contact the pro" - "gram author for an update. If you compiled the program yourself" - ", make sure that your headers are from the same version of Proto" - "col Buffers as your link-time library. (Version verification fa" - "iled in \"\00[libprotobuf %s %s:%d] %s\n\00INFO\00WARNING\00ERROR\00FATAL\00al" - "locator::allocate(size_t n) 'n' exceeds maximum supported siz" - "e\00%d\00google/protobuf/arena.cc\00CHECK failed: (min_bytes) <= (std:" - ":numeric_limits::max() - kBlockHeaderSize): \00google/prot" - "obuf/generated_message_util.cc\00Not implemented field number \00 wi" - "th type \00CHECK failed: (scc->visit_status.load(std::memory_order" - "_relaxed)) == (SCCInfoBase::kRunning): \00google/protobuf/message_" - "lite.cc\00CHECK failed: !coded_out.HadError(): \00(cannot determine " - "missing fields for lite message)\00N6google8protobuf11MessageLiteE" - "\00google/protobuf/repeated_field.cc\00CHECK failed: (new_size) <= (" - "(std::numeric_limits::max() - kRepHeaderSize) / sizeof(o" - "ld_rep->elements[0])): \00Requested size is too large to fit into " - "size_t.\00google/protobuf/wire_format_lite.cc\00CHECK failed: (value" - ".size()) <= (kint32max): \00serializing\00parsing\00 '%s'\00String field" - "\00 contains invalid \00UTF-8 data when \00 a protocol \00buffer. Use th" - "e 'bytes' type if you intend to send raw \00bytes. \00google/protobu" - "f/io/coded_stream.cc\00CHECK failed: (buffer_size) >= (0): \00A prot" - "ocol message was rejected because it was too big (more than \00 by" - "tes). To increase the limit (or to disable these warnings), see" - " CodedInputStream::SetTotalBytesLimit() in google/protobuf/io/co" - "ded_stream.h.\00google/protobuf/io/zero_copy_stream_impl_lite.cc\00C" - "HECK failed: (count) >= (0): \00CHECK failed: (last_returned_size_" - ") > (0): \00BackUp() can only be called after a successful Next()." - "\00CHECK failed: (count) <= (last_returned_size_): \00N6google8proto" - "buf2io17ArrayOutputStreamE\00CHECK failed: target_ != NULL: \00CHECK" - " failed: (count) <= (target_->size()): \00Cannot allocate buffer l" - "arger than kint32max for \00StringOutputStream.\00N6google8protobuf2" - "io18StringOutputStreamE\00google/protobuf/io/zero_copy_stream.cc\00T" - "his ZeroCopyOutputStream doesn't support aliasing. Reaching here" - " usually means a ZeroCopyOutputStream implementation bug.\00N6goog" - "le8protobuf2io20ZeroCopyOutputStreamE\00-+ 0X0x\00(null)\00-0X+0X 0X" - "-0x+0x 0x\00inf\00INF\00nan\00NAN\00std::bad_function_call\00NSt3__217bad_fu" - "nction_callE\00mutex lock failed\00%u\00terminating with %s exception " - "of type %s: %s\00terminating with %s exception of type %s\00terminat" - "ing with %s foreign exception\00terminating\00uncaught\00St9exception\00" - "N10__cxxabiv116__shim_type_infoE\00St9type_info\00N10__cxxabiv120__s" - "i_class_type_infoE\00N10__cxxabiv117__class_type_infoE\00terminate_h" - "andler unexpectedly returned\00_Z\00___Z\00_block_invoke\00invocation fu" - "nction for block in \00void\00bool\00char\00signed char\00unsigned char\00sh" - "ort\00unsigned short\00int\00unsigned int\00long\00unsigned long\00long long" - "\00__int128\00unsigned __int128\00float\00long double\00__float128\00...\00dec" - "imal64\00decimal128\00decimal32\00decimal16\00char32_t\00char16_t\00auto\00dec" - "ltype(auto)\00std::nullptr_t\00[abi:\00]\00N12_GLOBAL__N_116itanium_dema" - "ngle10AbiTagAttrE\00N12_GLOBAL__N_116itanium_demangle4NodeE\00alloca" - "tor\00basic_string\00string\00istream\00ostream\00iostream\00std::allocator\00" - "std::basic_string\00std::string\00std::istream\00std::ostream\00std::ios" - "tream\00N12_GLOBAL__N_116itanium_demangle19SpecialSubstitutionE\00 i" - "maginary\00N12_GLOBAL__N_116itanium_demangle20PostfixQualifiedType" - "E\00 complex\00)\00 \00(\00&\00&&\00N12_GLOBAL__N_116itanium_demangle13Referen" - "ceTypeE\00objc_object\00*\00id<\00>\00N12_GLOBAL__N_116itanium_demangle11P" - "ointerTypeE\00N12_GLOBAL__N_116itanium_demangle20NameWithTemplateA" - "rgsE\00<\00, \00N12_GLOBAL__N_116itanium_demangle12TemplateArgsE\00N12_G" - "LOBAL__N_116itanium_demangle13ParameterPackE\00wchar_t\00b0E\00b1E\00u\00l" - "\00ul\00ll\00ull\00N12_GLOBAL__N_116itanium_demangle15IntegerCastExprE\00%" - "LaL\00N12_GLOBAL__N_116itanium_demangle16FloatLiteralImplIeEE\00%a\00N" - "12_GLOBAL__N_116itanium_demangle16FloatLiteralImplIdEE\00%af\00N12_G" - "LOBAL__N_116itanium_demangle16FloatLiteralImplIfEE\00true\00false\00N1" - "2_GLOBAL__N_116itanium_demangle8BoolExprE\00-\00N12_GLOBAL__N_116ita" - "nium_demangle14IntegerLiteralE\00N12_GLOBAL__N_116itanium_demangle" - "20TemplateArgumentPackE\00gs\00&=\00=\00alignof (\00,\00~\00.*\00/\00/=\00^\00^=\00==\00>=" - "\00<=\00<<\00<<=\00-=\00*=\00--\00!=\00!\00||\00|\00|=\00->*\00+\00+=\00++\00->\00%\00%=\00>>\00>>=\00size" - "of (\00typeid (\00throw\00throw \00N12_GLOBAL__N_116itanium_demangle9Thr" - "owExprE\00N12_GLOBAL__N_116itanium_demangle12InitListExprE\00N12_GLO" - "BAL__N_116itanium_demangle13NodeArrayNodeE\00sizeof... (\00N12_GLOBA" - "L__N_116itanium_demangle13EnclosingExprE\00sizeof...(\00N12_GLOBAL__" - "N_116itanium_demangle22ParameterPackExpansionE\00N12_GLOBAL__N_116" - "itanium_demangle19SizeofParamPackExprE\00static_cast\00>(\00N12_GLOBAL" - "__N_116itanium_demangle8CastExprE\00reinterpret_cast\00) ? (\00) : (\00N" - "12_GLOBAL__N_116itanium_demangle15ConditionalExprE\00noexcept (\00nw" - "\00na\00pi\00::operator \00new\00[]\00N12_GLOBAL__N_116itanium_demangle7NewE" - "xprE\00N12_GLOBAL__N_116itanium_demangle11PostfixExprE\00 ... \00 = \00N" - "12_GLOBAL__N_116itanium_demangle15BracedRangeExprE\00N12_GLOBAL__N" - "_116itanium_demangle10BracedExprE\00_GLOBAL__N\00(anonymous namespac" - "e)\00N12_GLOBAL__N_116itanium_demangle8NameTypeE\00)[\00N12_GLOBAL__N_" - "116itanium_demangle18ArraySubscriptExprE\00.\00N12_GLOBAL__N_116itan" - "ium_demangle10MemberExprE\00srN\00sr\00::\00N12_GLOBAL__N_116itanium_dem" - "angle19GlobalQualifiedNameE\00dn\00on\00operator&&\00operator&\00operator&" - "=\00operator=\00operator()\00operator,\00operator~\00operator delete[]\00ope" - "rator*\00operator/\00operator/=\00operator^\00operator^=\00operator==\00oper" - "ator>=\00operator>\00operator[]\00operator<=\00operator<<\00operator<<=\00op" - "erator<\00operator-\00operator-=\00operator*=\00operator--\00operator new[" - "]\00operator!=\00operator!\00operator new\00operator||\00operator|\00operato" - "r|=\00operator->*\00operator+\00operator+=\00operator++\00operator->\00opera" - "tor?\00operator%\00operator%=\00operator>>\00operator>>=\00operator<=>\00ope" - "rator\"\" \00N12_GLOBAL__N_116itanium_demangle15LiteralOperatorE\00ope" - "rator delete\00operator \00N12_GLOBAL__N_116itanium_demangle22Conver" - "sionOperatorTypeE\00N12_GLOBAL__N_116itanium_demangle8DtorNameE\00N1" - "2_GLOBAL__N_116itanium_demangle13QualifiedNameE\00dynamic_cast\00del" - "ete\00[] \00N12_GLOBAL__N_116itanium_demangle10DeleteExprE\00cv\00)(\00N12" - "_GLOBAL__N_116itanium_demangle14ConversionExprE\00N12_GLOBAL__N_11" - "6itanium_demangle8CallExprE\00const_cast\00N12_GLOBAL__N_116itanium_" - "demangle10PrefixExprE\00) \00 (\00N12_GLOBAL__N_116itanium_demangle10B" - "inaryExprE\00aa\00an\00aN\00aS\00cm\00ds\00dv\00dV\00eo\00eO\00eq\00ge\00gt\00le\00ls\00lS\00lt\00mi" - "\00mI\00ml\00mL\00ne\00oo\00or\00oR\00pl\00pL\00rm\00rM\00rs\00rS\00... \00 ...\00N12_GLOBAL__N_" - "116itanium_demangle8FoldExprE\00fp\00fL\00N12_GLOBAL__N_116itanium_dem" - "angle13FunctionParamE\00N12_GLOBAL__N_116itanium_demangle24Forward" - "TemplateReferenceE\00Ts\00struct\00Tu\00union\00Te\00enum\00N12_GLOBAL__N_116i" - "tanium_demangle22ElaboratedTypeSpefTypeE\00StL\00St\00std::\00N12_GLOBAL" - "__N_116itanium_demangle16StdQualifiedNameE\00DC\00N12_GLOBAL__N_116i" - "tanium_demangle21StructuredBindingNameE\00Ut\00Ul\00vE\00'lambda\00'(\00N12_" - "GLOBAL__N_116itanium_demangle15ClosureTypeNameE\00'unnamed\00'\00N12_G" - "LOBAL__N_116itanium_demangle15UnnamedTypeNameE\00string literal\00N1" - "2_GLOBAL__N_116itanium_demangle9LocalNameE\00std\00N12_GLOBAL__N_116" - "itanium_demangle12CtorDtorNameE\00basic_istream\00basic_ostream\00basi" - "c_iostream\00std::basic_string, std::" - "allocator >\00std::basic_istream >\00std::basic_ostream >\00std::basic" - "_iostream >\00N12_GLOBAL__N_116itaniu" - "m_demangle27ExpandedSpecialSubstitutionE\00N12_GLOBAL__N_116itaniu" - "m_demangle10NestedNameE\00::*\00N12_GLOBAL__N_116itanium_demangle19P" - "ointerToMemberTypeE\00[\00N12_GLOBAL__N_116itanium_demangle9ArrayTyp" - "eE\00Dv\00 vector[\00N12_GLOBAL__N_116itanium_demangle10VectorTypeE\00pi" - "xel vector[\00N12_GLOBAL__N_116itanium_demangle15PixelVectorTypeE\00" - "decltype(\00double\00unsigned long long\00objcproto\00 const\00 volatile\00 " - "restrict\00N12_GLOBAL__N_116itanium_demangle8QualTypeE\00N12_GLOBAL_" - "_N_116itanium_demangle17VendorExtQualTypeE\00N12_GLOBAL__N_116itan" - "ium_demangle13ObjCProtoNameE\00Do\00noexcept\00DO\00Dw\00Dx\00RE\00OE\00 &\00 &&\00N" - "12_GLOBAL__N_116itanium_demangle12FunctionTypeE\00throw(\00N12_GLOBA" - "L__N_116itanium_demangle20DynamicExceptionSpecE\00noexcept(\00N12_GL" - "OBAL__N_116itanium_demangle12NoexceptSpecE\00N12_GLOBAL__N_116itan" - "ium_demangle11SpecialNameE\00N12_GLOBAL__N_116itanium_demangle9Dot" - "SuffixE\00Ua9enable_ifI\00N12_GLOBAL__N_116itanium_demangle16Functio" - "nEncodingE\00 [enable_if:\00N12_GLOBAL__N_116itanium_demangle12Enabl" - "eIfAttrE\00thread-local wrapper routine for \00reference temporary f" - "or \00guard variable for \00non-virtual thunk to \00virtual thunk to \00" - "thread-local initialization routine for \00construction vtable for" - " \00-in-\00N12_GLOBAL__N_116itanium_demangle21CtorVtableSpecialNameE" - "\00covariant return thunk to \00typeinfo name for \00typeinfo for \00VTT" - " for \00vtable for \00St11logic_error\00St12length_error\00N10__cxxabiv1" - "17__pbase_type_infoE\00N10__cxxabiv119__pointer_type_infoE\00N10__cx" - "xabiv123__fundamental_type_infoE\00v\00c\00h\00N10__cxxabiv121__vmi_clas" - "s_type_infoE") + "\00/home/piotrsikora/Google/envoy/api/wasm/cpp/struct_lite.pb.cc\00/" + "usr/local/include/google/protobuf/repeated_field.h\00CHECK failed:" + " (index) >= (0): \00CHECK failed: (index) < (current_size_): \00/usr" + "/local/include/google/protobuf/map.h\00CHECK failed: (bucket_index" + "_ & 1) == (0): \00CHECK failed: m_->index_of_first_non_null_ == m_" + "->num_buckets_ || m_->table_[m_->index_of_first_non_null_] != NU" + "LL: \00CHECK failed: !tree->empty(): \00CHECK failed: node_ != NULL " + "&& m_ != NULL: \00google.protobuf.Value.string_value\00google.protob" + "uf.Struct.FieldsEntry.key\00CHECK failed: (&from) != (this): \00CHEC" + "K failed: (&other) != (this): \00N6google8protobuf27Struct_FieldsE" + "ntry_DoNotUseE\00N6google8protobuf8internal12MapEntryLiteINS0_27St" + "ruct_FieldsEntry_DoNotUseENSt3__212basic_stringIcNS4_11char_trai" + "tsIcEENS4_9allocatorIcEEEENS0_5ValueELNS1_14WireFormatLite9Field" + "TypeE9ELSD_11ELi0EEE\00N6google8protobuf8internal12MapEntryImplINS" + "0_27Struct_FieldsEntry_DoNotUseENS0_11MessageLiteENSt3__212basic" + "_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEENS0_5ValueELNS" + "1_14WireFormatLite9FieldTypeE9ELSE_11ELi0EEE\00CHECK failed: (it.m" + "_) == (this): \00CHECK failed: TableEntryIsNonEmptyList(b): \00CHECK" + " failed: TableEntryIsTree(b): \00CHECK failed: GetArenaNoVirtual()" + " == NULL: \00CHECK failed: index_of_first_non_null_ == num_buckets" + "_ || table_[index_of_first_non_null_] != NULL: \00CHECK failed: fi" + "nd(*KeyPtrFromNodePtr(node)) == end(): \00CHECK failed: (count) <=" + " (kMaxLength): \00CHECK failed: (result.bucket_index_) == (b & ~st" + "atic_cast(1)): \00CHECK failed: (table_[b]) == (table_[" + "b ^ 1]): \00CHECK failed: !TableEntryIsTree(b) && !TableEntryIsTre" + "e(b ^ 1): \00CHECK failed: (count) == (tree->size()): \00CHECK faile" + "d: (new_num_buckets) >= (kMinTableSize): \00CHECK failed: n >= kMi" + "nTableSize: \00CHECK failed: (n & (n - 1)) == (0): \00CHECK failed: " + "table_[b] == table_[b + 1] && (b & 1) == 0: \00N6google8protobuf3M" + "apINSt3__212basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcE" + "EEENS0_5ValueEE8InnerMapE\00N6google8protobuf4hashINSt3__212basic_" + "stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEE\00f == NULL ||" + " dynamic_cast(f) != NULL\00/usr/local/include/google/protobuf/" + "stubs/casts.h\00down_cast\00google.protobuf.Struct\00N6google8protobuf" + "6StructE\00N6google8protobuf5ValueE\00N6google8protobuf8internal12Ma" + "pEntryImplINS0_27Struct_FieldsEntry_DoNotUseENS0_11MessageLiteEN" + "St3__212basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEN" + "S0_5ValueELNS1_14WireFormatLite9FieldTypeE9ELSE_11ELi0EE15MapEnt" + "ryWrapperE\00CHECK failed: (n) >= (0): \00google.protobuf.ListValue\00" + "N6google8protobuf9ListValueE\00google.protobuf.Value\0011RootContext" + "\00no context factory for root_id: \00N6google8protobuf14FatalExcept" + "ionE\00google/protobuf/stubs/common.cc\00This program requires versi" + "on \00%d.%d.%d\00 of the Protocol Buffer runtime library, but the in" + "stalled version is \00. Please update your library. If you compi" + "led the program yourself, make sure that your headers are from t" + "he same version of Protocol Buffers as your link-time library. " + "(Version verification failed in \"\00\".)\00This program was compiled " + "against version \00 of the Protocol Buffer runtime library, which " + "is not compatible with the installed version (\00). Contact the p" + "rogram author for an update. If you compiled the program yourse" + "lf, make sure that your headers are from the same version of Pro" + "tocol Buffers as your link-time library. (Version verification " + "failed in \"\00[libprotobuf %s %s:%d] %s\n\00INFO\00WARNING\00ERROR\00FATAL\00" + "allocator::allocate(size_t n) 'n' exceeds maximum supported s" + "ize\00%d\00google/protobuf/arena.cc\00CHECK failed: (min_bytes) <= (st" + "d::numeric_limits::max() - kBlockHeaderSize): \00google/pr" + "otobuf/generated_message_util.cc\00Not implemented field number \00 " + "with type \00CHECK failed: (scc->visit_status.load(std::memory_ord" + "er_relaxed)) == (SCCInfoBase::kRunning): \00google/protobuf/messag" + "e_lite.cc\00CHECK failed: !coded_out.HadError(): \00(cannot determin" + "e missing fields for lite message)\00N6google8protobuf11MessageLit" + "eE\00google/protobuf/repeated_field.cc\00CHECK failed: (new_size) <=" + " ((std::numeric_limits::max() - kRepHeaderSize) / sizeof" + "(old_rep->elements[0])): \00Requested size is too large to fit int" + "o size_t.\00google/protobuf/wire_format_lite.cc\00CHECK failed: (val" + "ue.size()) <= (kint32max): \00serializing\00parsing\00 '%s'\00String fie" + "ld\00 contains invalid \00UTF-8 data when \00 a protocol \00buffer. Use " + "the 'bytes' type if you intend to send raw \00bytes. \00google/proto" + "buf/io/coded_stream.cc\00CHECK failed: (buffer_size) >= (0): \00A pr" + "otocol message was rejected because it was too big (more than \00 " + "bytes). To increase the limit (or to disable these warnings), s" + "ee CodedInputStream::SetTotalBytesLimit() in google/protobuf/io/" + "coded_stream.h.\00google/protobuf/io/zero_copy_stream_impl_lite.cc" + "\00CHECK failed: (count) >= (0): \00CHECK failed: (last_returned_siz" + "e_) > (0): \00BackUp() can only be called after a successful Next(" + ").\00CHECK failed: (count) <= (last_returned_size_): \00N6google8pro" + "tobuf2io17ArrayOutputStreamE\00CHECK failed: target_ != NULL: \00CHE" + "CK failed: (count) <= (target_->size()): \00Cannot allocate buffer" + " larger than kint32max for \00StringOutputStream.\00N6google8protobu" + "f2io18StringOutputStreamE\00google/protobuf/io/zero_copy_stream.cc" + "\00This ZeroCopyOutputStream doesn't support aliasing. Reaching he" + "re usually means a ZeroCopyOutputStream implementation bug.\00N6go" + "ogle8protobuf2io20ZeroCopyOutputStreamE\00-+ 0X0x\00(null)\00-0X+0X " + "0X-0x+0x 0x\00inf\00INF\00nan\00NAN\00std::bad_function_call\00NSt3__217bad_" + "function_callE\00mutex lock failed\00%u\00terminating with %s exceptio" + "n of type %s: %s\00terminating with %s exception of type %s\00termin" + "ating with %s foreign exception\00terminating\00uncaught\00St9exceptio" + "n\00N10__cxxabiv116__shim_type_infoE\00St9type_info\00N10__cxxabiv120_" + "_si_class_type_infoE\00N10__cxxabiv117__class_type_infoE\00terminate" + "_handler unexpectedly returned\00_Z\00___Z\00_block_invoke\00invocation " + "function for block in \00void\00bool\00char\00signed char\00unsigned char\00" + "short\00unsigned short\00int\00unsigned int\00long\00unsigned long\00long lo" + "ng\00__int128\00unsigned __int128\00float\00long double\00__float128\00...\00d" + "ecimal64\00decimal128\00decimal32\00decimal16\00char32_t\00char16_t\00auto\00d" + "ecltype(auto)\00std::nullptr_t\00[abi:\00]\00N12_GLOBAL__N_116itanium_de" + "mangle10AbiTagAttrE\00N12_GLOBAL__N_116itanium_demangle4NodeE\00allo" + "cator\00basic_string\00string\00istream\00ostream\00iostream\00std::allocato" + "r\00std::basic_string\00std::string\00std::istream\00std::ostream\00std::i" + "ostream\00N12_GLOBAL__N_116itanium_demangle19SpecialSubstitutionE\00" + " imaginary\00N12_GLOBAL__N_116itanium_demangle20PostfixQualifiedTy" + "peE\00 complex\00)\00 \00(\00&\00&&\00N12_GLOBAL__N_116itanium_demangle13Refer" + "enceTypeE\00objc_object\00*\00id<\00>\00N12_GLOBAL__N_116itanium_demangle1" + "1PointerTypeE\00N12_GLOBAL__N_116itanium_demangle20NameWithTemplat" + "eArgsE\00<\00, \00N12_GLOBAL__N_116itanium_demangle12TemplateArgsE\00N12" + "_GLOBAL__N_116itanium_demangle13ParameterPackE\00wchar_t\00b0E\00b1E\00u" + "\00l\00ul\00ll\00ull\00N12_GLOBAL__N_116itanium_demangle15IntegerCastExprE" + "\00%LaL\00N12_GLOBAL__N_116itanium_demangle16FloatLiteralImplIeEE\00%a" + "\00N12_GLOBAL__N_116itanium_demangle16FloatLiteralImplIdEE\00%af\00N12" + "_GLOBAL__N_116itanium_demangle16FloatLiteralImplIfEE\00true\00false\00" + "N12_GLOBAL__N_116itanium_demangle8BoolExprE\00-\00N12_GLOBAL__N_116i" + "tanium_demangle14IntegerLiteralE\00N12_GLOBAL__N_116itanium_demang" + "le20TemplateArgumentPackE\00gs\00&=\00=\00alignof (\00,\00~\00.*\00/\00/=\00^\00^=\00==\00" + ">=\00<=\00<<\00<<=\00-=\00*=\00--\00!=\00!\00||\00|\00|=\00->*\00+\00+=\00++\00->\00%\00%=\00>>\00>>=\00si" + "zeof (\00typeid (\00throw\00throw \00N12_GLOBAL__N_116itanium_demangle9T" + "hrowExprE\00N12_GLOBAL__N_116itanium_demangle12InitListExprE\00N12_G" + "LOBAL__N_116itanium_demangle13NodeArrayNodeE\00sizeof... (\00N12_GLO" + "BAL__N_116itanium_demangle13EnclosingExprE\00sizeof...(\00N12_GLOBAL" + "__N_116itanium_demangle22ParameterPackExpansionE\00N12_GLOBAL__N_1" + "16itanium_demangle19SizeofParamPackExprE\00static_cast\00>(\00N12_GLOB" + "AL__N_116itanium_demangle8CastExprE\00reinterpret_cast\00) ? (\00) : (" + "\00N12_GLOBAL__N_116itanium_demangle15ConditionalExprE\00noexcept (\00" + "nw\00na\00pi\00::operator \00new\00[]\00N12_GLOBAL__N_116itanium_demangle7Ne" + "wExprE\00N12_GLOBAL__N_116itanium_demangle11PostfixExprE\00 ... \00 = " + "\00N12_GLOBAL__N_116itanium_demangle15BracedRangeExprE\00N12_GLOBAL_" + "_N_116itanium_demangle10BracedExprE\00_GLOBAL__N\00(anonymous namesp" + "ace)\00N12_GLOBAL__N_116itanium_demangle8NameTypeE\00)[\00N12_GLOBAL__" + "N_116itanium_demangle18ArraySubscriptExprE\00.\00N12_GLOBAL__N_116it" + "anium_demangle10MemberExprE\00srN\00sr\00::\00N12_GLOBAL__N_116itanium_d" + "emangle19GlobalQualifiedNameE\00dn\00on\00operator&&\00operator&\00operato" + "r&=\00operator=\00operator()\00operator,\00operator~\00operator delete[]\00o" + "perator*\00operator/\00operator/=\00operator^\00operator^=\00operator==\00op" + "erator>=\00operator>\00operator[]\00operator<=\00operator<<\00operator<<=\00" + "operator<\00operator-\00operator-=\00operator*=\00operator--\00operator ne" + "w[]\00operator!=\00operator!\00operator new\00operator||\00operator|\00opera" + "tor|=\00operator->*\00operator+\00operator+=\00operator++\00operator->\00ope" + "rator?\00operator%\00operator%=\00operator>>\00operator>>=\00operator<=>\00o" + "perator\"\" \00N12_GLOBAL__N_116itanium_demangle15LiteralOperatorE\00o" + "perator delete\00operator \00N12_GLOBAL__N_116itanium_demangle22Conv" + "ersionOperatorTypeE\00N12_GLOBAL__N_116itanium_demangle8DtorNameE\00" + "N12_GLOBAL__N_116itanium_demangle13QualifiedNameE\00dynamic_cast\00d" + "elete\00[] \00N12_GLOBAL__N_116itanium_demangle10DeleteExprE\00cv\00)(\00N" + "12_GLOBAL__N_116itanium_demangle14ConversionExprE\00N12_GLOBAL__N_" + "116itanium_demangle8CallExprE\00const_cast\00N12_GLOBAL__N_116itaniu" + "m_demangle10PrefixExprE\00) \00 (\00N12_GLOBAL__N_116itanium_demangle1" + "0BinaryExprE\00aa\00an\00aN\00aS\00cm\00ds\00dv\00dV\00eo\00eO\00eq\00ge\00gt\00le\00ls\00lS\00lt\00" + "mi\00mI\00ml\00mL\00ne\00oo\00or\00oR\00pl\00pL\00rm\00rM\00rs\00rS\00... \00 ...\00N12_GLOBAL__" + "N_116itanium_demangle8FoldExprE\00fp\00fL\00N12_GLOBAL__N_116itanium_d" + "emangle13FunctionParamE\00N12_GLOBAL__N_116itanium_demangle24Forwa" + "rdTemplateReferenceE\00Ts\00struct\00Tu\00union\00Te\00enum\00N12_GLOBAL__N_11" + "6itanium_demangle22ElaboratedTypeSpefTypeE\00StL\00St\00std::\00N12_GLOB" + "AL__N_116itanium_demangle16StdQualifiedNameE\00DC\00N12_GLOBAL__N_11" + "6itanium_demangle21StructuredBindingNameE\00Ut\00Ul\00vE\00'lambda\00'(\00N1" + "2_GLOBAL__N_116itanium_demangle15ClosureTypeNameE\00'unnamed\00'\00N12" + "_GLOBAL__N_116itanium_demangle15UnnamedTypeNameE\00string literal\00" + "N12_GLOBAL__N_116itanium_demangle9LocalNameE\00std\00N12_GLOBAL__N_1" + "16itanium_demangle12CtorDtorNameE\00basic_istream\00basic_ostream\00ba" + "sic_iostream\00std::basic_string, std" + "::allocator >\00std::basic_istream >\00std::basic_ostream >\00std::bas" + "ic_iostream >\00N12_GLOBAL__N_116itan" + "ium_demangle27ExpandedSpecialSubstitutionE\00N12_GLOBAL__N_116itan" + "ium_demangle10NestedNameE\00::*\00N12_GLOBAL__N_116itanium_demangle1" + "9PointerToMemberTypeE\00[\00N12_GLOBAL__N_116itanium_demangle9ArrayT" + "ypeE\00Dv\00 vector[\00N12_GLOBAL__N_116itanium_demangle10VectorTypeE\00" + "pixel vector[\00N12_GLOBAL__N_116itanium_demangle15PixelVectorType" + "E\00decltype(\00double\00unsigned long long\00objcproto\00 const\00 volatile" + "\00 restrict\00N12_GLOBAL__N_116itanium_demangle8QualTypeE\00N12_GLOBA" + "L__N_116itanium_demangle17VendorExtQualTypeE\00N12_GLOBAL__N_116it" + "anium_demangle13ObjCProtoNameE\00Do\00noexcept\00DO\00Dw\00Dx\00RE\00OE\00 &\00 &&" + "\00N12_GLOBAL__N_116itanium_demangle12FunctionTypeE\00throw(\00N12_GLO" + "BAL__N_116itanium_demangle20DynamicExceptionSpecE\00noexcept(\00N12_" + "GLOBAL__N_116itanium_demangle12NoexceptSpecE\00N12_GLOBAL__N_116it" + "anium_demangle11SpecialNameE\00N12_GLOBAL__N_116itanium_demangle9D" + "otSuffixE\00Ua9enable_ifI\00N12_GLOBAL__N_116itanium_demangle16Funct" + "ionEncodingE\00 [enable_if:\00N12_GLOBAL__N_116itanium_demangle12Ena" + "bleIfAttrE\00thread-local wrapper routine for \00reference temporary" + " for \00guard variable for \00non-virtual thunk to \00virtual thunk to" + " \00thread-local initialization routine for \00construction vtable f" + "or \00-in-\00N12_GLOBAL__N_116itanium_demangle21CtorVtableSpecialNam" + "eE\00covariant return thunk to \00typeinfo name for \00typeinfo for \00V" + "TT for \00vtable for \00St11logic_error\00St12length_error\00N10__cxxabi" + "v117__pbase_type_infoE\00N10__cxxabiv119__pointer_type_infoE\00N10__" + "cxxabiv123__fundamental_type_infoE\00v\00c\00h\00N10__cxxabiv121__vmi_cl" + "ass_type_infoE") (func $globalCtors (type $8) call $__GLOBAL__sub_I_headers_cpp_cc @@ -1500,7 +1500,7 @@ i32.store offset=8 local.get $5 local.get $6 - i32.const 17882 + i32.const 17884 call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc local.tee $0 i64.load align=4 @@ -2475,7 +2475,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 12650 + i32.const 12652 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -2609,19 +2609,19 @@ i32.const 25 i32.store offset=4 local.get $1 - i32.const 13937 + i32.const 13939 i64.load align=1 i64.store align=1 local.get $1 - i32.const 13945 + i32.const 13947 i64.load align=1 i64.store offset=8 align=1 local.get $1 - i32.const 13953 + i32.const 13955 i64.load align=1 i64.store offset=16 align=1 local.get $1 - i32.const 13961 + i32.const 13963 i32.load8_s i32.store8 offset=24 local.get $1 @@ -2733,10 +2733,10 @@ local.get $1 call $__ZN6google8protobuf9ListValue9MergeFromERKS1_ else - i32.const 13503 - i32.const 13544 + i32.const 13505 + i32.const 13546 i32.const 92 - i32.const 13593 + i32.const 13595 call $___assert_fail end ;; $if ) @@ -3335,7 +3335,7 @@ i32.const 3 i32.store local.get $3 - i32.const 11530 + i32.const 11532 i32.store offset=4 local.get $3 i32.const 1505 @@ -3347,7 +3347,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 11582 + i32.const 11584 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -3377,7 +3377,7 @@ i32.const 3 i32.store local.get $2 - i32.const 11530 + i32.const 11532 i32.store offset=4 local.get $2 i32.const 1506 @@ -3389,7 +3389,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 11613 + i32.const 11615 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -4047,7 +4047,7 @@ i32.const 3 i32.store local.get $3 - i32.const 11655 + i32.const 11657 i32.store offset=4 local.get $3 i32.const 418 @@ -4059,7 +4059,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 11739 + i32.const 11741 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -4145,7 +4145,7 @@ i32.const 3 i32.store local.get $2 - i32.const 11655 + i32.const 11657 i32.store offset=4 local.get $2 i32.const 427 @@ -4157,7 +4157,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 11856 + i32.const 11858 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -4228,7 +4228,7 @@ i32.const 3 i32.store local.get $2 - i32.const 11655 + i32.const 11657 i32.store offset=4 local.get $2 i32.const 451 @@ -4240,7 +4240,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 11696 + i32.const 11698 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -4376,7 +4376,7 @@ i32.const 3 i32.store local.get $3 - i32.const 11655 + i32.const 11657 i32.store offset=4 local.get $3 i32.const 476 @@ -4388,7 +4388,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 11887 + i32.const 11889 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -5278,10 +5278,10 @@ local.get $1 call $__ZN6google8protobuf8internal12MapEntryImplINS0_27Struct_FieldsEntry_DoNotUseENS0_11MessageLiteENSt3__212basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEENS0_5ValueELNS1_14WireFormatLite9FieldTypeE9ELSE_11ELi0EE17MergeFromInternalERKSF_ else - i32.const 13503 - i32.const 13544 + i32.const 13505 + i32.const 13546 i32.const 92 - i32.const 13593 + i32.const 13595 call $___assert_fail end ;; $if ) @@ -6295,7 +6295,7 @@ i32.and end ;; $if_11 i32.const 0 - i32.const 11931 + i32.const 11933 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ br_if $loop i32.const 0 @@ -7035,7 +7035,7 @@ local.get $6 select i32.const 0 - i32.const 11966 + i32.const 11968 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ select br $block_4 @@ -8499,7 +8499,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 12005 + i32.const 12007 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -8833,7 +8833,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 12005 + i32.const 12007 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -9028,7 +9028,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 12005 + i32.const 12007 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -9125,7 +9125,7 @@ i32.const 3 i32.store local.get $2 - i32.const 11530 + i32.const 11532 i32.store offset=4 local.get $2 i32.const 1586 @@ -9137,7 +9137,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 12039 + i32.const 12041 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -9365,7 +9365,7 @@ i32.const 3 i32.store local.get $2 - i32.const 11655 + i32.const 11657 i32.store offset=4 local.get $2 i32.const 601 @@ -9377,7 +9377,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 12536 + i32.const 12538 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -9439,7 +9439,7 @@ i32.const 3 i32.store local.get $2 - i32.const 11655 + i32.const 11657 i32.store offset=4 local.get $2 i32.const 607 @@ -9451,7 +9451,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 12570 + i32.const 12572 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -9494,7 +9494,7 @@ i32.const 3 i32.store local.get $3 - i32.const 11655 + i32.const 11657 i32.store offset=4 local.get $3 i32.const 612 @@ -9506,7 +9506,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 12614 + i32.const 12616 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -10587,7 +10587,7 @@ i32.const 0 i32.store offset=20 local.get $1 - i32.const 12650 + i32.const 12652 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $1 @@ -10944,7 +10944,7 @@ i32.const 3 i32.store local.get $2 - i32.const 11655 + i32.const 11657 i32.store offset=4 local.get $2 i32.const 765 @@ -10956,7 +10956,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 13120 + i32.const 13122 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -11145,7 +11145,7 @@ i32.const 3 i32.store local.get $4 - i32.const 11655 + i32.const 11657 i32.store offset=4 local.get $4 i32.const 672 @@ -11157,7 +11157,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 12694 + i32.const 12696 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -11183,7 +11183,7 @@ i32.const 3 i32.store local.get $4 - i32.const 11655 + i32.const 11657 i32.store offset=4 local.get $4 i32.const 678 @@ -11195,7 +11195,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 12795 + i32.const 12797 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -11277,7 +11277,7 @@ i32.const 3 i32.store local.get $6 - i32.const 11655 + i32.const 11657 i32.store offset=4 local.get $6 i32.const 878 @@ -11289,7 +11289,7 @@ i32.const 0 i32.store offset=20 local.get $6 - i32.const 12851 + i32.const 12853 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $6 @@ -11321,7 +11321,7 @@ i32.const 3 i32.store local.get $5 - i32.const 11655 + i32.const 11657 i32.store offset=4 local.get $5 i32.const 685 @@ -11333,7 +11333,7 @@ i32.const 0 i32.store offset=20 local.get $5 - i32.const 12891 + i32.const 12893 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $5 @@ -11450,7 +11450,7 @@ i32.const 3 i32.store local.get $2 - i32.const 11655 + i32.const 11657 i32.store offset=4 local.get $2 i32.const 837 @@ -11462,7 +11462,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 13013 + i32.const 13015 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -11734,7 +11734,7 @@ i32.const 3 i32.store local.get $2 - i32.const 11655 + i32.const 11657 i32.store offset=4 local.get $2 i32.const 848 @@ -11746,7 +11746,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 13078 + i32.const 13080 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -11808,7 +11808,7 @@ i32.const 3 i32.store local.get $4 - i32.const 11655 + i32.const 11657 i32.store offset=4 local.get $4 i32.const 713 @@ -11820,7 +11820,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 12966 + i32.const 12968 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -13105,7 +13105,7 @@ i32.const 3 i32.store local.get $2 - i32.const 11655 + i32.const 11657 i32.store offset=4 local.get $2 i32.const 926 @@ -13117,7 +13117,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 13173 + i32.const 13175 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -13133,7 +13133,7 @@ i32.const 3 i32.store local.get $3 - i32.const 11655 + i32.const 11657 i32.store offset=4 local.get $3 i32.const 927 @@ -13145,7 +13145,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 13208 + i32.const 13210 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -13726,7 +13726,7 @@ i32.const 3 i32.store local.get $5 - i32.const 11655 + i32.const 11657 i32.store offset=4 local.get $5 i32.const 527 @@ -13738,7 +13738,7 @@ i32.const 0 i32.store offset=20 local.get $5 - i32.const 13245 + i32.const 13247 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $5 @@ -14014,7 +14014,7 @@ i32.const 0 i32.store offset=20 local.get $1 - i32.const 12650 + i32.const 12652 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $1 @@ -14096,19 +14096,19 @@ i32.const 22 i32.store offset=4 local.get $1 - i32.const 13603 + i32.const 13605 i64.load align=1 i64.store align=1 local.get $1 - i32.const 13611 + i32.const 13613 i64.load align=1 i64.store offset=8 align=1 local.get $1 - i32.const 13619 + i32.const 13621 i32.load align=1 i32.store offset=16 align=1 local.get $1 - i32.const 13623 + i32.const 13625 i32.load16_s align=1 i32.store16 offset=20 align=1 local.get $1 @@ -14186,10 +14186,10 @@ local.get $1 call $__ZN6google8protobuf6Struct9MergeFromERKS1_ else - i32.const 13503 - i32.const 13544 + i32.const 13505 + i32.const 13546 i32.const 92 - i32.const 13593 + i32.const 13595 call $___assert_fail end ;; $if ) @@ -14368,7 +14368,7 @@ local.get $2 local.get $4 i32.const 1 - i32.const 11966 + i32.const 11968 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ drop local.get $5 @@ -14576,7 +14576,7 @@ local.get $2 local.get $4 i32.const 1 - i32.const 11966 + i32.const 11968 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ drop local.get $8 @@ -17789,7 +17789,7 @@ i32.const 3 i32.store local.get $1 - i32.const 11530 + i32.const 11532 i32.store offset=4 local.get $1 i32.const 1567 @@ -17801,7 +17801,7 @@ i32.const 0 i32.store offset=20 local.get $1 - i32.const 13910 + i32.const 13912 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $1 @@ -18005,19 +18005,19 @@ i32.const 21 i32.store offset=4 local.get $1 - i32.const 13992 + i32.const 13994 i64.load align=1 i64.store align=1 local.get $1 - i32.const 14000 + i32.const 14002 i64.load align=1 i64.store offset=8 align=1 local.get $1 - i32.const 14008 + i32.const 14010 i32.load align=1 i32.store offset=16 align=1 local.get $1 - i32.const 14012 + i32.const 14014 i32.load8_s i32.store8 offset=20 local.get $1 @@ -18093,10 +18093,10 @@ local.get $1 call $__ZN6google8protobuf5Value9MergeFromERKS1_ else - i32.const 13503 - i32.const 13544 + i32.const 13505 + i32.const 13546 i32.const 92 - i32.const 13593 + i32.const 13595 call $___assert_fail end ;; $if ) @@ -18159,7 +18159,7 @@ local.get $2 local.get $3 i32.const 1 - i32.const 11931 + i32.const 11933 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ drop local.get $0 @@ -30111,7 +30111,7 @@ i32.store local.get $2 i32.const 128 - i32.const 14927 + i32.const 14929 local.get $3 call $_snprintf drop @@ -30149,7 +30149,7 @@ i32.store local.get $2 i32.const 128 - i32.const 16876 + i32.const 16878 local.get $3 call $_snprintf drop @@ -30438,7 +30438,7 @@ i32.const 3 i32.store local.get $3 - i32.const 14930 + i32.const 14932 i32.store offset=4 local.get $3 i32.const 116 @@ -30450,7 +30450,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 14955 + i32.const 14957 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -41314,7 +41314,7 @@ i32.const 3 i32.store local.get $11 - i32.const 15042 + i32.const 15044 i32.store offset=4 local.get $11 i32.const 571 @@ -41326,7 +41326,7 @@ i32.const 0 i32.store offset=20 local.get $11 - i32.const 15084 + i32.const 15086 call $__ZN6google8protobuf8internal10LogMessagelsEPKc local.get $4 call $__ZN6google8protobuf8internal10LogMessagelsEi @@ -41363,7 +41363,7 @@ i32.const 3 i32.store local.get $1 - i32.const 15042 + i32.const 15044 i32.store offset=4 local.get $1 i32.const 534 @@ -41375,12 +41375,12 @@ i32.const 0 i32.store offset=20 local.get $1 - i32.const 15084 + i32.const 15086 call $__ZN6google8protobuf8internal10LogMessagelsEPKc local.get $0 i32.load offset=4 call $__ZN6google8protobuf8internal10LogMessagelsEj - i32.const 15114 + i32.const 15116 call $__ZN6google8protobuf8internal10LogMessagelsEPKc local.get $0 i32.load offset=12 @@ -41440,7 +41440,7 @@ i32.const 3 i32.store local.get $0 - i32.const 15042 + i32.const 15044 i32.store offset=4 local.get $0 i32.const 801 @@ -41452,7 +41452,7 @@ i32.const 0 i32.store offset=20 local.get $0 - i32.const 15126 + i32.const 15128 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $0 @@ -41589,31 +41589,31 @@ i32.const 50 i32.store offset=4 local.get $1 - i32.const 15291 + i32.const 15293 i64.load align=1 i64.store align=1 local.get $1 - i32.const 15299 + i32.const 15301 i64.load align=1 i64.store offset=8 align=1 local.get $1 - i32.const 15307 + i32.const 15309 i64.load align=1 i64.store offset=16 align=1 local.get $1 - i32.const 15315 + i32.const 15317 i64.load align=1 i64.store offset=24 align=1 local.get $1 - i32.const 15323 + i32.const 15325 i64.load align=1 i64.store offset=32 align=1 local.get $1 - i32.const 15331 + i32.const 15333 i64.load align=1 i64.store offset=40 align=1 local.get $1 - i32.const 15339 + i32.const 15341 i32.load16_s align=1 i32.store16 offset=48 align=1 local.get $1 @@ -41750,7 +41750,7 @@ i32.const 3 i32.store local.get $4 - i32.const 15221 + i32.const 15223 i32.store offset=4 local.get $4 i32.const 373 @@ -41762,7 +41762,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 15253 + i32.const 15255 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -41845,7 +41845,7 @@ i32.const 3 i32.store local.get $3 - i32.const 15374 + i32.const 15376 i32.store offset=4 local.get $3 i32.const 59 @@ -41857,9 +41857,9 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 15408 + i32.const 15410 call $__ZN6google8protobuf8internal10LogMessagelsEPKc - i32.const 15525 + i32.const 15527 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -43542,7 +43542,7 @@ i32.const 3 i32.store local.get $4 - i32.const 15573 + i32.const 15575 i32.store offset=4 local.get $4 i32.const 507 @@ -43554,7 +43554,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 15609 + i32.const 15611 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -43754,7 +43754,7 @@ i32.const 3 i32.store local.get $4 - i32.const 15573 + i32.const 15575 i32.store offset=4 local.get $4 i32.const 516 @@ -43766,7 +43766,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 15609 + i32.const 15611 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -44445,13 +44445,13 @@ i32.load offset=8 i32.store offset=8 end ;; $if_0 - i32.const 15655 + i32.const 15657 i32.const 0 local.get $2 i32.const 1 i32.eq select - i32.const 15667 + i32.const 15669 local.get $2 select local.set $3 @@ -44463,7 +44463,7 @@ i32.const 2 i32.store local.get $1 - i32.const 15573 + i32.const 15575 i32.store offset=4 local.get $1 i32.const 626 @@ -44475,21 +44475,21 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 15681 + i32.const 15683 call $__ZN6google8protobuf8internal10LogMessagelsEPKc local.get $0 call $__ZN6google8protobuf8internal10LogMessagelsERKNSt3__212basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEE - i32.const 15694 + i32.const 15696 call $__ZN6google8protobuf8internal10LogMessagelsEPKc - i32.const 15713 + i32.const 15715 call $__ZN6google8protobuf8internal10LogMessagelsEPKc local.get $3 call $__ZN6google8protobuf8internal10LogMessagelsEPKc - i32.const 15730 + i32.const 15732 call $__ZN6google8protobuf8internal10LogMessagelsEPKc - i32.const 15743 + i32.const 15745 call $__ZN6google8protobuf8internal10LogMessagelsEPKc - i32.const 15799 + i32.const 15801 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -45259,7 +45259,7 @@ i32.const 3 i32.store local.get $2 - i32.const 15807 + i32.const 15809 i32.store offset=4 local.get $2 i32.const 591 @@ -45271,7 +45271,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 15842 + i32.const 15844 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -45414,7 +45414,7 @@ i32.const 2 i32.store local.get $1 - i32.const 15807 + i32.const 15809 i32.store offset=4 local.get $1 i32.const 190 @@ -45426,12 +45426,12 @@ i32.const 0 i32.store offset=20 local.get $1 - i32.const 15879 + i32.const 15881 call $__ZN6google8protobuf8internal10LogMessagelsEPKc local.get $0 i32.load offset=36 call $__ZN6google8protobuf8internal10LogMessagelsEi - i32.const 15946 + i32.const 15948 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $1 @@ -47895,7 +47895,7 @@ i32.const 3 i32.store local.get $2 - i32.const 16091 + i32.const 16093 i32.store offset=4 local.get $2 i32.const 132 @@ -47907,9 +47907,9 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 16171 + i32.const 16173 call $__ZN6google8protobuf8internal10LogMessagelsEPKc - i32.const 16215 + i32.const 16217 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -47930,7 +47930,7 @@ i32.const 3 i32.store local.get $2 - i32.const 16091 + i32.const 16093 i32.store offset=4 local.get $2 i32.const 134 @@ -47942,7 +47942,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 16270 + i32.const 16272 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -47969,7 +47969,7 @@ i32.const 3 i32.store local.get $3 - i32.const 16091 + i32.const 16093 i32.store offset=4 local.get $3 i32.const 135 @@ -47981,7 +47981,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 16140 + i32.const 16142 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -48037,7 +48037,7 @@ i32.const 3 i32.store local.get $3 - i32.const 16091 + i32.const 16093 i32.store offset=4 local.get $3 i32.const 151 @@ -48049,7 +48049,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 16360 + i32.const 16362 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -48123,7 +48123,7 @@ i32.const 2 i32.store local.get $5 - i32.const 16091 + i32.const 16093 i32.store offset=4 local.get $5 i32.const 164 @@ -48135,9 +48135,9 @@ i32.const 0 i32.store offset=20 local.get $5 - i32.const 16437 + i32.const 16439 call $__ZN6google8protobuf8internal10LogMessagelsEPKc - i32.const 16487 + i32.const 16489 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $5 @@ -48212,7 +48212,7 @@ i32.const 3 i32.store local.get $2 - i32.const 16091 + i32.const 16093 i32.store offset=4 local.get $2 i32.const 182 @@ -48224,7 +48224,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 16140 + i32.const 16142 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -48245,7 +48245,7 @@ i32.const 3 i32.store local.get $2 - i32.const 16091 + i32.const 16093 i32.store offset=4 local.get $2 i32.const 183 @@ -48257,7 +48257,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 16360 + i32.const 16362 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -48287,7 +48287,7 @@ i32.const 3 i32.store local.get $3 - i32.const 16091 + i32.const 16093 i32.store offset=4 local.get $3 i32.const 184 @@ -48299,7 +48299,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 16392 + i32.const 16394 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -48360,7 +48360,7 @@ i32.const 3 i32.store local.get $1 - i32.const 16091 + i32.const 16093 i32.store offset=4 local.get $1 i32.const 189 @@ -48372,7 +48372,7 @@ i32.const 0 i32.store offset=20 local.get $1 - i32.const 16360 + i32.const 16362 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $1 @@ -48427,7 +48427,7 @@ i32.add local.tee $3 i32.const 1024 - i32.const 15675 + i32.const 15677 local.get $2 call $_vsnprintf local.tee $4 @@ -48460,7 +48460,7 @@ i32.store local.get $3 local.get $5 - i32.const 15675 + i32.const 15677 local.get $2 call $_vsnprintf local.tee $1 @@ -49007,7 +49007,7 @@ i32.const 3 i32.store local.get $0 - i32.const 16549 + i32.const 16551 i32.store offset=4 local.get $0 i32.const 47 @@ -49019,7 +49019,7 @@ i32.const 0 i32.store offset=20 local.get $0 - i32.const 16588 + i32.const 16590 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $0 @@ -49988,13 +49988,13 @@ local.tee $1 i64.reinterpret_f64 local.set $25 - i32.const 16772 + i32.const 16774 local.set $18 i32.const 1 else + i32.const 16777 + i32.const 16780 i32.const 16775 - i32.const 16778 - i32.const 16773 local.get $4 i32.const 1 i32.and @@ -50017,8 +50017,8 @@ i64.const 9218868437227405312 i64.eq if $if_0 (result i32) - i32.const 16799 - i32.const 16803 + i32.const 16801 + i32.const 16805 local.get $5 i32.const 32 i32.and @@ -50026,8 +50026,8 @@ i32.ne local.tee $3 select - i32.const 16791 - i32.const 16795 + i32.const 16793 + i32.const 16797 local.get $3 select local.get $1 @@ -51375,7 +51375,7 @@ i32.eqz if $if_54 local.get $0 - i32.const 19574 + i32.const 19576 i32.const 1 call $_out end ;; $if_54 @@ -51534,7 +51534,7 @@ br $block_4 end ;; $if_61 local.get $0 - i32.const 19574 + i32.const 19576 i32.const 1 call $_out local.get $6 @@ -52624,7 +52624,7 @@ local.set $1 i32.const 0 local.set $12 - i32.const 16755 + i32.const 16757 local.set $8 br $block_14 end ;; $block_25 @@ -52640,13 +52640,13 @@ i64.sub local.tee $25 i64.store - i32.const 16755 + i32.const 16757 local.set $8 i32.const 1 else - i32.const 16756 + i32.const 16758 + i32.const 16759 i32.const 16757 - i32.const 16755 local.get $7 i32.const 1 i32.and @@ -52670,7 +52670,7 @@ local.set $25 i32.const 0 local.set $12 - i32.const 16755 + i32.const 16757 local.set $8 br $block_16 end ;; $block_23 @@ -52686,7 +52686,7 @@ local.set $5 i32.const 0 local.set $12 - i32.const 16755 + i32.const 16757 local.set $8 local.get $18 local.set $1 @@ -52695,7 +52695,7 @@ local.get $10 i32.load local.tee $5 - i32.const 16765 + i32.const 16767 local.get $5 select local.tee $6 @@ -52715,7 +52715,7 @@ local.set $5 i32.const 0 local.set $12 - i32.const 16755 + i32.const 16757 local.set $8 local.get $1 local.get $6 @@ -52776,7 +52776,7 @@ local.set $5 i32.const 0 local.set $12 - i32.const 16755 + i32.const 16757 local.set $8 local.get $18 local.set $1 @@ -52804,11 +52804,11 @@ local.tee $8 select local.set $12 - i32.const 16755 + i32.const 16757 local.get $6 i32.const 4 i32.shr_u - i32.const 16755 + i32.const 16757 i32.add local.get $8 select @@ -53993,7 +53993,7 @@ local.get $1 i32.store local.get $0 - i32.const 14807 + i32.const 14809 local.get $2 call $_vfprintf drop @@ -61185,7 +61185,7 @@ (func $__ZNKSt3__217bad_function_call4whatEv (type $1) (param $0 i32) (result i32) - i32.const 16807 + i32.const 16809 ) (func $__ZNSt3__212__next_primeEm (type $1) @@ -63122,7 +63122,7 @@ (param $0 i32) (local $1 i32) (local $2 i32) - i32.const 14859 + i32.const 14861 call $_strlen local.tee $2 i32.const 13 @@ -63141,7 +63141,7 @@ i32.const 12 i32.add local.tee $1 - i32.const 14859 + i32.const 14861 local.get $2 i32.const 1 i32.add @@ -64277,7 +64277,7 @@ local.set $0 end ;; $if_0 local.get $0 - i32.const 14028 + i32.const 14030 local.get $1 call $__ZNSt3__211char_traitsIcE4copyEPcPKcm local.get $3 @@ -64324,7 +64324,7 @@ end ;; $if end ;; $loop local.get $0 - i32.const 14028 + i32.const 14030 call $_strlen local.tee $2 local.get $2 @@ -64485,7 +64485,7 @@ local.get $4 i32.const 1 i32.add - i32.const 16876 + i32.const 16878 local.get $5 call $_snprintf local.tee $3 @@ -64599,9 +64599,9 @@ i64.ne if $if_0 local.get $1 - i32.const 17015 + i32.const 17017 i32.store - i32.const 16965 + i32.const 16967 local.get $1 call $_abort_message end ;; $if_0 @@ -64666,7 +64666,7 @@ call_indirect $28 (type $1) local.set $0 local.get $4 - i32.const 17015 + i32.const 17017 i32.store local.get $4 local.get $1 @@ -64674,22 +64674,22 @@ local.get $4 local.get $0 i32.store offset=8 - i32.const 16879 + i32.const 16881 local.get $4 call $_abort_message else local.get $3 - i32.const 17015 + i32.const 17017 i32.store local.get $3 local.get $1 i32.store offset=4 - i32.const 16924 + i32.const 16926 local.get $3 call $_abort_message end ;; $if_3 end ;; $if - i32.const 17003 + i32.const 17005 local.get $2 i32.const 1056 i32.add @@ -65654,7 +65654,7 @@ local.get $3 i32.const 24 i32.add - i32.const 17194 + i32.const 17196 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $3 @@ -65728,7 +65728,7 @@ else block $block (result i32) local.get $2 - i32.const 17197 + i32.const 17199 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $2 @@ -65758,7 +65758,7 @@ local.get $2 if $if_4 (result i32) local.get $4 - i32.const 17202 + i32.const 17204 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $4 @@ -65819,7 +65819,7 @@ i32.const 0 else local.get $0 - i32.const 17216 + i32.const 17218 local.get $3 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_11SpecialNameEJRA34_KcRPNS0_4NodeEEEESC_DpOT0_ end ;; $if_9 @@ -66051,7 +66051,7 @@ i32.const 152 i32.add call_indirect $28 (type $8) - i32.const 17154 + i32.const 17156 local.get $1 call $_abort_message ) @@ -66288,7 +66288,7 @@ i32.const 0 i32.store local.get $5 - i32.const 22549 + i32.const 22551 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -66808,7 +66808,7 @@ i32.add i32.store local.get $0 - i32.const 17250 + i32.const 17252 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_35 @@ -66831,7 +66831,7 @@ i32.add i32.store local.get $0 - i32.const 17255 + i32.const 17257 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_33 @@ -66842,7 +66842,7 @@ i32.add i32.store local.get $0 - i32.const 17260 + i32.const 17262 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_32 @@ -66853,7 +66853,7 @@ i32.add i32.store local.get $0 - i32.const 17265 + i32.const 17267 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_31 @@ -66864,7 +66864,7 @@ i32.add i32.store local.get $0 - i32.const 17277 + i32.const 17279 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_30 @@ -66875,7 +66875,7 @@ i32.add i32.store local.get $0 - i32.const 17291 + i32.const 17293 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_29 @@ -66886,7 +66886,7 @@ i32.add i32.store local.get $0 - i32.const 17297 + i32.const 17299 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_28 @@ -66897,7 +66897,7 @@ i32.add i32.store local.get $0 - i32.const 17312 + i32.const 17314 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_27 @@ -66908,7 +66908,7 @@ i32.add i32.store local.get $0 - i32.const 17316 + i32.const 17318 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_26 @@ -66919,7 +66919,7 @@ i32.add i32.store local.get $0 - i32.const 17329 + i32.const 17331 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_25 @@ -66930,7 +66930,7 @@ i32.add i32.store local.get $0 - i32.const 17334 + i32.const 17336 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_24 @@ -66941,7 +66941,7 @@ i32.add i32.store local.get $0 - i32.const 17348 + i32.const 17350 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_23 @@ -66964,7 +66964,7 @@ i32.add i32.store local.get $0 - i32.const 17358 + i32.const 17360 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_21 @@ -66975,7 +66975,7 @@ i32.add i32.store local.get $0 - i32.const 17367 + i32.const 17369 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_20 @@ -66986,7 +66986,7 @@ i32.add i32.store local.get $0 - i32.const 17385 + i32.const 17387 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_19 @@ -67009,7 +67009,7 @@ i32.add i32.store local.get $0 - i32.const 17391 + i32.const 17393 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_17 @@ -67020,7 +67020,7 @@ i32.add i32.store local.get $0 - i32.const 17403 + i32.const 17405 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_16 @@ -67031,7 +67031,7 @@ i32.add i32.store local.get $0 - i32.const 17414 + i32.const 17416 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_15 @@ -67105,7 +67105,7 @@ i32.add i32.store local.get $0 - i32.const 17418 + i32.const 17420 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_53 @@ -67116,7 +67116,7 @@ i32.add i32.store local.get $0 - i32.const 17428 + i32.const 17430 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_52 @@ -67127,7 +67127,7 @@ i32.add i32.store local.get $0 - i32.const 17439 + i32.const 17441 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_51 @@ -67138,7 +67138,7 @@ i32.add i32.store local.get $0 - i32.const 17449 + i32.const 17451 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_50 @@ -67149,7 +67149,7 @@ i32.add i32.store local.get $0 - i32.const 17459 + i32.const 17461 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_49 @@ -67160,7 +67160,7 @@ i32.add i32.store local.get $0 - i32.const 17468 + i32.const 17470 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_48 @@ -67171,7 +67171,7 @@ i32.add i32.store local.get $0 - i32.const 17477 + i32.const 17479 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_47 @@ -67182,7 +67182,7 @@ i32.add i32.store local.get $0 - i32.const 17482 + i32.const 17484 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_46 @@ -67193,7 +67193,7 @@ i32.add i32.store local.get $0 - i32.const 17497 + i32.const 17499 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_45 @@ -67668,7 +67668,7 @@ i32.const 0 i32.store local.get $3 - i32.const 22250 + i32.const 22252 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $3 @@ -67682,14 +67682,14 @@ if $if (result i32) local.get $6 local.get $0 - i32.const 22253 + i32.const 22255 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ i32.store br $block_0 else block $block_1 (result i32) local.get $4 - i32.const 22262 + i32.const 22264 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $4 @@ -67726,7 +67726,7 @@ br $block_0 end ;; $if_0 local.get $5 - i32.const 22265 + i32.const 22267 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $5 @@ -67789,7 +67789,7 @@ br $block end ;; $block_0 local.get $8 - i32.const 22268 + i32.const 22270 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $8 @@ -67845,7 +67845,7 @@ i32.eqz if $if_4 local.get $9 - i32.const 22271 + i32.const 22273 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $9 @@ -67856,7 +67856,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE br_if $block_7 local.get $10 - i32.const 22274 + i32.const 22276 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $10 @@ -67968,7 +67968,7 @@ else block $block (result i32) local.get $5 - i32.const 22065 + i32.const 22067 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -68263,7 +68263,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfEc if $if_2 (result i32) local.get $0 - i32.const 22029 + i32.const 22031 local.get $1 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_13EnclosingExprEJRA10_KcRPNS0_4NodeERA2_S8_EEESC_DpOT0_ else @@ -68301,7 +68301,7 @@ local.get $1 i32.const 8 i32.add - i32.const 21904 + i32.const 21906 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -68690,7 +68690,7 @@ i32.const 24 i32.add local.tee $5 - i32.const 20960 + i32.const 20962 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -68701,12 +68701,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if local.get $1 - i32.const 20963 + i32.const 20965 call $__ZN12_GLOBAL__N_110StringViewC2EPKc else block $block local.get $3 - i32.const 20970 + i32.const 20972 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -68717,12 +68717,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_0 local.get $1 - i32.const 20973 + i32.const 20975 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $if_0 local.get $4 - i32.const 20979 + i32.const 20981 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -68733,7 +68733,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_1 local.get $1 - i32.const 20982 + i32.const 20984 call $__ZN12_GLOBAL__N_110StringViewC2EPKc end ;; $if_1 end ;; $block @@ -68826,7 +68826,7 @@ i32.load8_s offset=362 if $if_2 local.get $0 - i32.const 17477 + i32.const 17479 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $if_2 @@ -69849,7 +69849,7 @@ i32.add call_indirect $28 (type $4) local.get $4 - i32.const 17512 + i32.const 17514 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -69870,7 +69870,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $5 - i32.const 17518 + i32.const 17520 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -70082,7 +70082,7 @@ $block ;; default end ;; $block_5 local.get $4 - i32.const 17662 + i32.const 17664 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -70094,7 +70094,7 @@ br $block end ;; $block_4 local.get $5 - i32.const 17677 + i32.const 17679 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -70106,7 +70106,7 @@ br $block end ;; $block_3 local.get $6 - i32.const 17695 + i32.const 17697 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -70118,7 +70118,7 @@ br $block end ;; $block_2 local.get $7 - i32.const 17707 + i32.const 17709 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -70130,7 +70130,7 @@ br $block end ;; $block_1 local.get $8 - i32.const 17720 + i32.const 17722 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $8 @@ -70142,7 +70142,7 @@ br $block end ;; $block_0 local.get $3 - i32.const 17733 + i32.const 17735 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -70173,32 +70173,32 @@ $block ;; default end ;; $block_5 local.get $0 - i32.const 17607 + i32.const 17609 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_4 local.get $0 - i32.const 17617 + i32.const 17619 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_3 local.get $0 - i32.const 17630 + i32.const 17632 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_2 local.get $0 - i32.const 17637 + i32.const 17639 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_1 local.get $0 - i32.const 17645 + i32.const 17647 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_0 local.get $0 - i32.const 17653 + i32.const 17655 call $__ZN12_GLOBAL__N_110StringViewC2EPKc end ;; $block ) @@ -70227,7 +70227,7 @@ i32.load local.set $1 local.get $2 - i32.const 17803 + i32.const 17805 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -70343,7 +70343,7 @@ i32.load local.set $1 local.get $2 - i32.const 17871 + i32.const 17873 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -70484,7 +70484,7 @@ call $__ZNK12_GLOBAL__N_116itanium_demangle4Node8hasArrayERNS_12OutputStreamE if $if_0 local.get $7 - i32.const 17882 + i32.const 17884 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $7 @@ -70507,7 +70507,7 @@ br $block end ;; $block_0 local.get $8 - i32.const 17884 + i32.const 17886 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $8 @@ -70518,8 +70518,8 @@ call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE end ;; $block local.get $2 + i32.const 17890 i32.const 17888 - i32.const 17886 local.get $6 i32.load select @@ -70610,7 +70610,7 @@ br $block end ;; $block_0 local.get $2 - i32.const 17880 + i32.const 17882 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $5 local.get $2 @@ -70883,7 +70883,7 @@ i32.load offset=8 local.set $0 local.get $8 - i32.const 17955 + i32.const 17957 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $8 @@ -70904,7 +70904,7 @@ local.get $2 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $9 - i32.const 17959 + i32.const 17961 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $9 @@ -70937,7 +70937,7 @@ call $__ZNK12_GLOBAL__N_116itanium_demangle4Node8hasArrayERNS_12OutputStreamE if $if_0 local.get $5 - i32.const 17882 + i32.const 17884 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -70962,7 +70962,7 @@ br $block_1 end ;; $block_2 local.get $6 - i32.const 17884 + i32.const 17886 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -70973,7 +70973,7 @@ call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE end ;; $block_1 local.get $7 - i32.const 17953 + i32.const 17955 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -71037,7 +71037,7 @@ br $block_1 end ;; $block_2 local.get $3 - i32.const 17880 + i32.const 17882 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $4 local.get $3 @@ -71093,7 +71093,7 @@ i64.load offset=8 align=4 i64.store align=4 local.get $1 - i32.const 17941 + i32.const 17943 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -71735,7 +71735,7 @@ local.get $2 i32.const 16 i32.add - i32.const 18066 + i32.const 18068 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -71769,7 +71769,7 @@ i32.eq if $if_0 local.get $4 - i32.const 17882 + i32.const 17884 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -71780,7 +71780,7 @@ call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE end ;; $if_0 local.get $2 - i32.const 17959 + i32.const 17961 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -71827,7 +71827,7 @@ i32.eqz if $if_0 local.get $2 - i32.const 18068 + i32.const 18070 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $4 local.get $2 @@ -72579,7 +72579,7 @@ local.get $3 i32.const 328 i32.add - i32.const 18597 + i32.const 18599 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -72731,7 +72731,7 @@ i32.add i32.store local.get $6 - i32.const 17888 + i32.const 17890 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -72748,7 +72748,7 @@ i32.add i32.store local.get $7 - i32.const 17886 + i32.const 17888 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -72765,7 +72765,7 @@ i32.add i32.store local.get $8 - i32.const 17886 + i32.const 17888 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $8 @@ -72782,7 +72782,7 @@ i32.add i32.store local.get $9 - i32.const 18600 + i32.const 18602 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $9 @@ -72799,7 +72799,7 @@ i32.add i32.store local.get $10 - i32.const 18603 + i32.const 18605 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $10 @@ -72823,7 +72823,7 @@ local.get $1 if $if_2 (result i32) local.get $0 - i32.const 18605 + i32.const 18607 local.get $2 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_13EnclosingExprEJRA10_KcRPNS0_4NodeERA2_S8_EEESC_DpOT0_ else @@ -72844,7 +72844,7 @@ local.get $1 if $if_3 (result i32) local.get $0 - i32.const 18605 + i32.const 18607 local.get $2 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_13EnclosingExprEJRA10_KcRPNS0_4NodeERA2_S8_EEESC_DpOT0_ else @@ -72974,7 +72974,7 @@ i32.add i32.store local.get $11 - i32.const 18615 + i32.const 18617 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $11 @@ -72991,7 +72991,7 @@ i32.add i32.store local.get $12 - i32.const 18617 + i32.const 18619 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $12 @@ -73093,7 +73093,7 @@ i32.add i32.store local.get $13 - i32.const 17953 + i32.const 17955 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $13 @@ -73154,7 +73154,7 @@ if $if_12 (result i32) local.get $0 local.get $2 - i32.const 18619 + i32.const 18621 local.get $4 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_10MemberExprEJRPNS0_4NodeERA3_KcSA_EEES9_DpOT0_ else @@ -73204,7 +73204,7 @@ i32.add i32.store local.get $14 - i32.const 18622 + i32.const 18624 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $14 @@ -73221,7 +73221,7 @@ i32.add i32.store local.get $15 - i32.const 18624 + i32.const 18626 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $15 @@ -73255,7 +73255,7 @@ i32.add i32.store local.get $16 - i32.const 18627 + i32.const 18629 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $16 @@ -73272,7 +73272,7 @@ i32.add i32.store local.get $17 - i32.const 18629 + i32.const 18631 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $17 @@ -73289,7 +73289,7 @@ i32.add i32.store local.get $18 - i32.const 18632 + i32.const 18634 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $18 @@ -73320,7 +73320,7 @@ i32.add i32.store local.get $19 - i32.const 18635 + i32.const 18637 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $19 @@ -73337,7 +73337,7 @@ i32.add i32.store local.get $20 - i32.const 17959 + i32.const 17961 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $20 @@ -73477,7 +73477,7 @@ i32.add i32.store local.get $21 - i32.const 18638 + i32.const 18640 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $21 @@ -73494,7 +73494,7 @@ i32.add i32.store local.get $22 - i32.const 18641 + i32.const 18643 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $22 @@ -73511,7 +73511,7 @@ i32.add i32.store local.get $23 - i32.const 18644 + i32.const 18646 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $23 @@ -73528,7 +73528,7 @@ i32.add i32.store local.get $24 - i32.const 18066 + i32.const 18068 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $24 @@ -73564,7 +73564,7 @@ i32.add i32.store local.get $25 - i32.const 18487 + i32.const 18489 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $25 @@ -73581,7 +73581,7 @@ i32.add i32.store local.get $26 - i32.const 18648 + i32.const 18650 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $26 @@ -73598,7 +73598,7 @@ i32.add i32.store local.get $27 - i32.const 17953 + i32.const 17955 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $27 @@ -73615,7 +73615,7 @@ i32.add i32.store local.get $28 - i32.const 18651 + i32.const 18653 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $28 @@ -73636,7 +73636,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfEc if $if_17 local.get $29 - i32.const 18654 + i32.const 18656 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $29 @@ -73656,7 +73656,7 @@ if $if_18 (result i32) local.get $0 local.get $2 - i32.const 18654 + i32.const 18656 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_11PostfixExprEJRPNS0_4NodeERA3_KcEEES9_DpOT0_ else i32.const 0 @@ -73691,7 +73691,7 @@ i32.add i32.store local.get $30 - i32.const 18657 + i32.const 18659 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $30 @@ -73708,7 +73708,7 @@ i32.add i32.store local.get $31 - i32.const 18487 + i32.const 18489 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $31 @@ -73725,7 +73725,7 @@ i32.add i32.store local.get $32 - i32.const 18660 + i32.const 18662 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $32 @@ -73786,7 +73786,7 @@ i32.add i32.store local.get $33 - i32.const 18662 + i32.const 18664 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $33 @@ -73803,7 +73803,7 @@ i32.add i32.store local.get $34 - i32.const 18665 + i32.const 18667 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $34 @@ -73820,7 +73820,7 @@ i32.add i32.store local.get $35 - i32.const 18667 + i32.const 18669 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $35 @@ -73857,7 +73857,7 @@ i32.add i32.store local.get $36 - i32.const 18670 + i32.const 18672 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $36 @@ -73874,7 +73874,7 @@ i32.add i32.store local.get $37 - i32.const 18674 + i32.const 18676 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $37 @@ -73891,7 +73891,7 @@ i32.add i32.store local.get $38 - i32.const 18676 + i32.const 18678 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $38 @@ -73912,7 +73912,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfEc if $if_20 local.get $39 - i32.const 18679 + i32.const 18681 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $39 @@ -73932,7 +73932,7 @@ if $if_21 (result i32) local.get $0 local.get $2 - i32.const 18679 + i32.const 18681 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_11PostfixExprEJRPNS0_4NodeERA3_KcEEES9_DpOT0_ else i32.const 0 @@ -73945,7 +73945,7 @@ i32.add i32.store local.get $40 - i32.const 18674 + i32.const 18676 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $40 @@ -73977,7 +73977,7 @@ if $if_23 (result i32) local.get $0 local.get $2 - i32.const 18682 + i32.const 18684 local.get $4 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_10MemberExprEJRPNS0_4NodeERA3_KcSA_EEES9_DpOT0_ else @@ -74104,7 +74104,7 @@ i32.add i32.store local.get $41 - i32.const 18685 + i32.const 18687 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $41 @@ -74121,7 +74121,7 @@ i32.add i32.store local.get $42 - i32.const 18687 + i32.const 18689 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $42 @@ -74138,7 +74138,7 @@ i32.add i32.store local.get $43 - i32.const 18690 + i32.const 18692 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $43 @@ -74155,7 +74155,7 @@ i32.add i32.store local.get $44 - i32.const 18693 + i32.const 18695 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $44 @@ -74257,7 +74257,7 @@ local.get $1 if $if_32 (result i32) local.get $0 - i32.const 18697 + i32.const 18699 local.get $2 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_13EnclosingExprEJRA10_KcRPNS0_4NodeERA2_S8_EEESC_DpOT0_ else @@ -74278,7 +74278,7 @@ local.get $1 if $if_33 (result i32) local.get $0 - i32.const 18697 + i32.const 18699 local.get $2 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_13EnclosingExprEJRA10_KcRPNS0_4NodeERA2_S8_EEESC_DpOT0_ else @@ -74442,7 +74442,7 @@ local.get $1 if $if_37 (result i32) local.get $0 - i32.const 18706 + i32.const 18708 local.get $2 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_13EnclosingExprEJRA10_KcRPNS0_4NodeERA2_S8_EEESC_DpOT0_ else @@ -74463,7 +74463,7 @@ local.get $1 if $if_38 (result i32) local.get $0 - i32.const 18706 + i32.const 18708 local.get $2 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_13EnclosingExprEJRA10_KcRPNS0_4NodeERA2_S8_EEESC_DpOT0_ else @@ -74542,7 +74542,7 @@ i32.add i32.store local.get $0 - i32.const 18715 + i32.const 18717 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_111 @@ -74747,7 +74747,7 @@ i32.add i32.store local.get $3 - i32.const 18170 + i32.const 18172 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $3 @@ -74759,7 +74759,7 @@ br $block end ;; $block_18 local.get $4 - i32.const 18178 + i32.const 18180 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $4 @@ -74778,7 +74778,7 @@ br $block end ;; $if_1 local.get $5 - i32.const 18182 + i32.const 18184 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $5 @@ -74806,7 +74806,7 @@ i32.add i32.store local.get $6 - i32.const 17260 + i32.const 17262 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $6 @@ -74824,7 +74824,7 @@ i32.add i32.store local.get $7 - i32.const 17265 + i32.const 17267 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $7 @@ -74842,7 +74842,7 @@ i32.add i32.store local.get $8 - i32.const 17277 + i32.const 17279 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $8 @@ -74860,7 +74860,7 @@ i32.add i32.store local.get $9 - i32.const 17291 + i32.const 17293 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $9 @@ -74878,7 +74878,7 @@ i32.add i32.store local.get $10 - i32.const 17297 + i32.const 17299 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $10 @@ -74914,7 +74914,7 @@ i32.add i32.store local.get $12 - i32.const 18186 + i32.const 18188 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $12 @@ -74932,7 +74932,7 @@ i32.add i32.store local.get $13 - i32.const 18188 + i32.const 18190 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $13 @@ -74950,7 +74950,7 @@ i32.add i32.store local.get $14 - i32.const 18190 + i32.const 18192 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $14 @@ -74968,7 +74968,7 @@ i32.add i32.store local.get $15 - i32.const 18193 + i32.const 18195 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $15 @@ -74986,7 +74986,7 @@ i32.add i32.store local.get $16 - i32.const 18196 + i32.const 18198 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $16 @@ -75004,7 +75004,7 @@ i32.add i32.store local.get $17 - i32.const 17358 + i32.const 17360 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $17 @@ -75022,7 +75022,7 @@ i32.add i32.store local.get $18 - i32.const 17367 + i32.const 17369 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $18 @@ -75064,7 +75064,7 @@ br $block end ;; $block_1 local.get $19 - i32.const 17194 + i32.const 17196 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $19 @@ -75608,7 +75608,7 @@ i32.const 16 i32.add local.tee $5 - i32.const 17884 + i32.const 17886 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -75622,7 +75622,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 17880 + i32.const 17882 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -75849,7 +75849,7 @@ f64.store local.get $2 i32.const 40 - i32.const 18252 + i32.const 18254 local.get $5 call $_snprintf local.get $2 @@ -76071,7 +76071,7 @@ f64.store local.get $2 i32.const 32 - i32.const 18313 + i32.const 18315 local.get $4 call $_snprintf local.get $2 @@ -76291,7 +76291,7 @@ f64.store local.get $2 i32.const 24 - i32.const 18372 + i32.const 18374 local.get $4 call $_snprintf local.get $2 @@ -76357,11 +76357,11 @@ i32.load8_s offset=8 if $if local.get $2 - i32.const 18432 + i32.const 18434 call $__ZN12_GLOBAL__N_110StringViewC2EPKc else local.get $2 - i32.const 18437 + i32.const 18439 call $__ZN12_GLOBAL__N_110StringViewC2EPKc end ;; $if local.get $2 @@ -76496,7 +76496,7 @@ i32.gt_u if $if local.get $4 - i32.const 17884 + i32.const 17886 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -76517,7 +76517,7 @@ local.get $2 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $5 - i32.const 17880 + i32.const 17882 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -76545,7 +76545,7 @@ i32.eq if $if_0 local.get $4 - i32.const 18487 + i32.const 18489 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -76708,7 +76708,7 @@ local.get $2 i32.const 8 i32.add - i32.const 20843 + i32.const 20845 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $2 @@ -76737,7 +76737,7 @@ end ;; $if_0 else local.get $2 - i32.const 20846 + i32.const 20848 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $2 @@ -77035,7 +77035,7 @@ i32.const 0 i32.store offset=4 local.get $3 - i32.const 20696 + i32.const 20698 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $3 @@ -77048,13 +77048,13 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_1 local.get $1 - i32.const 17888 + i32.const 17890 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 else block $block_5 local.get $4 - i32.const 20699 + i32.const 20701 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $4 @@ -77065,12 +77065,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_2 local.get $1 - i32.const 17886 + i32.const 17888 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_2 local.get $8 - i32.const 20702 + i32.const 20704 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $8 @@ -77081,12 +77081,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_3 local.get $1 - i32.const 18600 + i32.const 18602 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_3 local.get $9 - i32.const 20705 + i32.const 20707 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $9 @@ -77097,12 +77097,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_4 local.get $1 - i32.const 18603 + i32.const 18605 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_4 local.get $10 - i32.const 20708 + i32.const 20710 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $10 @@ -77113,12 +77113,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_5 local.get $1 - i32.const 18615 + i32.const 18617 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_5 local.get $11 - i32.const 20711 + i32.const 20713 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $11 @@ -77129,12 +77129,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_6 local.get $1 - i32.const 18619 + i32.const 18621 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_6 local.get $12 - i32.const 20714 + i32.const 20716 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $12 @@ -77145,12 +77145,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_7 local.get $1 - i32.const 18622 + i32.const 18624 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_7 local.get $13 - i32.const 20717 + i32.const 20719 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $13 @@ -77161,12 +77161,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_8 local.get $1 - i32.const 18624 + i32.const 18626 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_8 local.get $14 - i32.const 20720 + i32.const 20722 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $14 @@ -77177,12 +77177,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_9 local.get $1 - i32.const 18627 + i32.const 18629 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_9 local.get $15 - i32.const 20723 + i32.const 20725 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $15 @@ -77193,12 +77193,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_10 local.get $1 - i32.const 18629 + i32.const 18631 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_10 local.get $16 - i32.const 20726 + i32.const 20728 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $16 @@ -77209,12 +77209,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_11 local.get $1 - i32.const 18632 + i32.const 18634 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_11 local.get $17 - i32.const 20729 + i32.const 20731 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $17 @@ -77225,12 +77225,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_12 local.get $1 - i32.const 18635 + i32.const 18637 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_12 local.get $18 - i32.const 20732 + i32.const 20734 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $18 @@ -77241,12 +77241,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_13 local.get $1 - i32.const 17959 + i32.const 17961 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_13 local.get $19 - i32.const 20735 + i32.const 20737 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $19 @@ -77257,12 +77257,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_14 local.get $1 - i32.const 18638 + i32.const 18640 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_14 local.get $20 - i32.const 20738 + i32.const 20740 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $20 @@ -77273,12 +77273,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_15 local.get $1 - i32.const 18641 + i32.const 18643 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_15 local.get $21 - i32.const 20741 + i32.const 20743 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $21 @@ -77289,12 +77289,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_16 local.get $1 - i32.const 18644 + i32.const 18646 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_16 local.get $22 - i32.const 20744 + i32.const 20746 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $22 @@ -77305,12 +77305,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_17 local.get $1 - i32.const 18066 + i32.const 18068 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_17 local.get $23 - i32.const 20747 + i32.const 20749 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $23 @@ -77321,12 +77321,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_18 local.get $1 - i32.const 18487 + i32.const 18489 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_18 local.get $24 - i32.const 20750 + i32.const 20752 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $24 @@ -77337,12 +77337,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_19 local.get $1 - i32.const 18648 + i32.const 18650 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_19 local.get $25 - i32.const 20753 + i32.const 20755 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $25 @@ -77353,12 +77353,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_20 local.get $1 - i32.const 17953 + i32.const 17955 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_20 local.get $26 - i32.const 20756 + i32.const 20758 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $26 @@ -77369,12 +77369,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_21 local.get $1 - i32.const 18651 + i32.const 18653 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_21 local.get $27 - i32.const 20759 + i32.const 20761 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $27 @@ -77385,12 +77385,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_22 local.get $1 - i32.const 18657 + i32.const 18659 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_22 local.get $28 - i32.const 20762 + i32.const 20764 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $28 @@ -77401,12 +77401,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_23 local.get $1 - i32.const 18662 + i32.const 18664 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_23 local.get $29 - i32.const 20765 + i32.const 20767 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $29 @@ -77417,12 +77417,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_24 local.get $1 - i32.const 18665 + i32.const 18667 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_24 local.get $30 - i32.const 20768 + i32.const 20770 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $30 @@ -77433,12 +77433,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_25 local.get $1 - i32.const 18667 + i32.const 18669 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_25 local.get $31 - i32.const 20771 + i32.const 20773 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $31 @@ -77449,12 +77449,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_26 local.get $1 - i32.const 18674 + i32.const 18676 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_26 local.get $32 - i32.const 20774 + i32.const 20776 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $32 @@ -77465,12 +77465,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_27 local.get $1 - i32.const 18676 + i32.const 18678 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_27 local.get $33 - i32.const 20777 + i32.const 20779 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $33 @@ -77481,12 +77481,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_28 local.get $1 - i32.const 18685 + i32.const 18687 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_28 local.get $34 - i32.const 20780 + i32.const 20782 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $34 @@ -77497,12 +77497,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_29 local.get $1 - i32.const 18687 + i32.const 18689 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_29 local.get $35 - i32.const 20783 + i32.const 20785 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $35 @@ -77513,12 +77513,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_30 local.get $1 - i32.const 18690 + i32.const 18692 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_30 local.get $36 - i32.const 20786 + i32.const 20788 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $36 @@ -77534,7 +77534,7 @@ br $block_5 end ;; $if_31 local.get $1 - i32.const 18693 + i32.const 18695 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $block_5 @@ -77735,7 +77735,7 @@ local.get $2 i32.const 16 i32.add - i32.const 20484 + i32.const 20486 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -77913,7 +77913,7 @@ local.get $4 i32.const 24 i32.add - i32.const 19623 + i32.const 19625 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -78020,7 +78020,7 @@ end ;; $if_0 else local.get $1 - i32.const 18597 + i32.const 18599 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -78031,7 +78031,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE local.set $5 local.get $4 - i32.const 19627 + i32.const 19629 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -78495,7 +78495,7 @@ local.get $2 i32.const 40 i32.add - i32.const 18597 + i32.const 18599 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $2 @@ -78529,7 +78529,7 @@ i32.eq i32.store8 local.get $4 - i32.const 19211 + i32.const 19213 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $4 @@ -78542,7 +78542,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE br_if $block_0 local.get $3 - i32.const 19214 + i32.const 19216 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $3 @@ -78607,7 +78607,7 @@ if $if_1 (result i32) block $block_3 (result i32) local.get $5 - i32.const 19217 + i32.const 19219 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $5 @@ -78762,7 +78762,7 @@ i32.add local.set $3 local.get $2 - i32.const 18721 + i32.const 18723 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -78957,13 +78957,13 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $5 - i32.const 18872 + i32.const 18874 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load local.set $1 local.get $2 - i32.const 17880 + i32.const 17882 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $4 local.get $5 @@ -79125,7 +79125,7 @@ i32.const 24 i32.add local.tee $5 - i32.const 18934 + i32.const 18936 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -79142,7 +79142,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle22ParameterPackExpansion9printLeftERNS_12OutputStreamE local.get $2 - i32.const 17880 + i32.const 17882 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -79264,7 +79264,7 @@ $block_0 ;; default end ;; $block_2 local.get $8 - i32.const 17414 + i32.const 17416 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $5 local.get $8 @@ -79288,7 +79288,7 @@ i32.ge_u br_if $block local.get $2 - i32.const 18068 + i32.const 18070 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $5 local.get $2 @@ -79373,7 +79373,7 @@ i32.load local.set $1 local.get $3 - i32.const 17880 + i32.const 17882 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $5 local.get $6 @@ -79415,7 +79415,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $3 - i32.const 19060 + i32.const 19062 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -79514,7 +79514,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $4 - i32.const 18066 + i32.const 18068 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -79538,7 +79538,7 @@ i32.add call_indirect $28 (type $4) local.get $5 - i32.const 19072 + i32.const 19074 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -79562,7 +79562,7 @@ i32.add call_indirect $28 (type $4) local.get $6 - i32.const 17880 + i32.const 17882 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $6 @@ -79597,7 +79597,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $3 - i32.const 19119 + i32.const 19121 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -79683,7 +79683,7 @@ i32.const 24 i32.add local.tee $6 - i32.const 17884 + i32.const 17886 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -79697,7 +79697,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 19136 + i32.const 19138 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -79711,7 +79711,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $5 - i32.const 19142 + i32.const 19144 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -79725,7 +79725,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $3 - i32.const 17880 + i32.const 17882 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -79769,13 +79769,13 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $5 - i32.const 19200 + i32.const 19202 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load local.set $1 local.get $2 - i32.const 17880 + i32.const 17882 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $4 local.get $5 @@ -79940,7 +79940,7 @@ i32.load8_s offset=28 if $if local.get $4 - i32.const 19220 + i32.const 19222 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -79969,7 +79969,7 @@ local.get $3 i32.const 40 i32.add - i32.const 19232 + i32.const 19234 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -79982,7 +79982,7 @@ i32.load8_s offset=29 if $if_0 local.get $4 - i32.const 19236 + i32.const 19238 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -80002,7 +80002,7 @@ i32.load offset=4 if $if_1 local.get $5 - i32.const 17884 + i32.const 17886 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -80015,7 +80015,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle9NodeArray14printWithCommaERNS_12OutputStreamE local.get $6 - i32.const 17880 + i32.const 17882 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -80036,7 +80036,7 @@ i32.load offset=4 if $if_2 local.get $7 - i32.const 17884 + i32.const 17886 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -80049,7 +80049,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle9NodeArray14printWithCommaERNS_12OutputStreamE local.get $3 - i32.const 17880 + i32.const 17882 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -80234,7 +80234,7 @@ i32.add i32.store local.get $1 - i32.const 19439 + i32.const 19441 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $4 local.get $1 @@ -80349,7 +80349,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 19330 + i32.const 19332 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -80381,7 +80381,7 @@ i32.ge_s if $if (result i32) local.get $2 - i32.const 19336 + i32.const 19338 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -80491,7 +80491,7 @@ i32.ge_s if $if_0 (result i32) local.get $2 - i32.const 19336 + i32.const 19338 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -80694,7 +80694,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $1 - i32.const 19450 + i32.const 19452 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -80827,7 +80827,7 @@ i32.const 16 i32.add local.tee $5 - i32.const 17884 + i32.const 17886 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -80841,7 +80841,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 19516 + i32.const 19518 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -80855,7 +80855,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $2 - i32.const 17518 + i32.const 17520 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -80893,7 +80893,7 @@ i32.load local.set $1 local.get $3 - i32.const 19574 + i32.const 19576 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 i32.load @@ -81257,7 +81257,7 @@ else block $block (result i32) local.get $1 - i32.const 19689 + i32.const 19691 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $1 @@ -81272,7 +81272,7 @@ br $block end ;; $if_1 local.get $4 - i32.const 19692 + i32.const 19694 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -81396,7 +81396,7 @@ i32.add local.set $3 local.get $2 - i32.const 19630 + i32.const 19632 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -81576,7 +81576,7 @@ i32.add i32.store local.get $0 - i32.const 19695 + i32.const 19697 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81588,7 +81588,7 @@ i32.add i32.store local.get $0 - i32.const 19706 + i32.const 19708 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81600,7 +81600,7 @@ i32.add i32.store local.get $0 - i32.const 19716 + i32.const 19718 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81612,7 +81612,7 @@ i32.add i32.store local.get $0 - i32.const 19727 + i32.const 19729 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81657,7 +81657,7 @@ i32.add i32.store local.get $0 - i32.const 19737 + i32.const 19739 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81669,7 +81669,7 @@ i32.add i32.store local.get $0 - i32.const 19748 + i32.const 19750 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81681,7 +81681,7 @@ i32.add i32.store local.get $0 - i32.const 19758 + i32.const 19760 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81816,7 +81816,7 @@ i32.add i32.store local.get $0 - i32.const 19768 + i32.const 19770 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81828,7 +81828,7 @@ i32.add i32.store local.get $0 - i32.const 19786 + i32.const 19788 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81853,7 +81853,7 @@ i32.add i32.store local.get $0 - i32.const 19796 + i32.const 19798 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81865,7 +81865,7 @@ i32.add i32.store local.get $0 - i32.const 19806 + i32.const 19808 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81911,7 +81911,7 @@ i32.add i32.store local.get $0 - i32.const 19817 + i32.const 19819 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81923,7 +81923,7 @@ i32.add i32.store local.get $0 - i32.const 19827 + i32.const 19829 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81935,7 +81935,7 @@ i32.add i32.store local.get $0 - i32.const 19838 + i32.const 19840 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81978,7 +81978,7 @@ i32.add i32.store local.get $0 - i32.const 19849 + i32.const 19851 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81990,7 +81990,7 @@ i32.add i32.store local.get $0 - i32.const 19860 + i32.const 19862 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82025,7 +82025,7 @@ i32.add i32.store local.get $0 - i32.const 19870 + i32.const 19872 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ else i32.const 0 @@ -82072,7 +82072,7 @@ i32.add i32.store local.get $0 - i32.const 19881 + i32.const 19883 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82108,7 +82108,7 @@ i32.add i32.store local.get $0 - i32.const 19892 + i32.const 19894 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82120,7 +82120,7 @@ i32.add i32.store local.get $0 - i32.const 19903 + i32.const 19905 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82132,7 +82132,7 @@ i32.add i32.store local.get $0 - i32.const 19915 + i32.const 19917 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82180,7 +82180,7 @@ i32.add i32.store local.get $0 - i32.const 19925 + i32.const 19927 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82192,7 +82192,7 @@ i32.add i32.store local.get $0 - i32.const 19935 + i32.const 19937 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82204,7 +82204,7 @@ i32.add i32.store local.get $0 - i32.const 19786 + i32.const 19788 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82216,7 +82216,7 @@ i32.add i32.store local.get $0 - i32.const 19946 + i32.const 19948 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82228,7 +82228,7 @@ i32.add i32.store local.get $0 - i32.const 19957 + i32.const 19959 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82275,7 +82275,7 @@ i32.add i32.store local.get $0 - i32.const 19968 + i32.const 19970 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82287,7 +82287,7 @@ i32.add i32.store local.get $0 - i32.const 19983 + i32.const 19985 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82299,7 +82299,7 @@ i32.add i32.store local.get $0 - i32.const 19925 + i32.const 19927 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82311,7 +82311,7 @@ i32.add i32.store local.get $0 - i32.const 19994 + i32.const 19996 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82323,7 +82323,7 @@ i32.add i32.store local.get $0 - i32.const 20004 + i32.const 20006 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82369,7 +82369,7 @@ i32.add i32.store local.get $0 - i32.const 20017 + i32.const 20019 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82381,7 +82381,7 @@ i32.add i32.store local.get $0 - i32.const 20028 + i32.const 20030 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82393,7 +82393,7 @@ i32.add i32.store local.get $0 - i32.const 20038 + i32.const 20040 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82442,7 +82442,7 @@ i32.add i32.store local.get $0 - i32.const 20049 + i32.const 20051 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82454,7 +82454,7 @@ i32.add i32.store local.get $0 - i32.const 20061 + i32.const 20063 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82466,7 +82466,7 @@ i32.add i32.store local.get $0 - i32.const 20071 + i32.const 20073 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82478,7 +82478,7 @@ i32.add i32.store local.get $0 - i32.const 20082 + i32.const 20084 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82490,7 +82490,7 @@ i32.add i32.store local.get $0 - i32.const 20061 + i32.const 20063 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82502,7 +82502,7 @@ i32.add i32.store local.get $0 - i32.const 20093 + i32.const 20095 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82537,7 +82537,7 @@ i32.add i32.store local.get $0 - i32.const 20104 + i32.const 20106 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ else i32.const 0 @@ -82583,7 +82583,7 @@ i32.add i32.store local.get $0 - i32.const 20114 + i32.const 20116 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82595,7 +82595,7 @@ i32.add i32.store local.get $0 - i32.const 20124 + i32.const 20126 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82607,7 +82607,7 @@ i32.add i32.store local.get $0 - i32.const 20135 + i32.const 20137 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82619,7 +82619,7 @@ i32.add i32.store local.get $0 - i32.const 20146 + i32.const 20148 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82654,7 +82654,7 @@ i32.add i32.store local.get $0 - i32.const 20158 + i32.const 20160 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ else i32.const 0 @@ -82787,7 +82787,7 @@ i32.add local.set $3 local.get $2 - i32.const 20170 + i32.const 20172 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -82824,7 +82824,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $1 - i32.const 20234 + i32.const 20236 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -82880,7 +82880,7 @@ i32.add local.set $3 local.get $2 - i32.const 20250 + i32.const 20252 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -82950,7 +82950,7 @@ i32.add local.set $3 local.get $2 - i32.const 18617 + i32.const 18619 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -83027,7 +83027,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $2 - i32.const 19630 + i32.const 19632 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -83086,7 +83086,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $3 - i32.const 20413 + i32.const 20415 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -83194,7 +83194,7 @@ i32.load8_s offset=12 if $if local.get $4 - i32.const 19630 + i32.const 19632 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -83208,7 +83208,7 @@ i32.const 8 i32.add local.tee $4 - i32.const 20426 + i32.const 20428 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -83221,7 +83221,7 @@ i32.load8_s offset=13 if $if_0 local.get $2 - i32.const 20433 + i32.const 20435 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -83336,7 +83336,7 @@ i32.const 16 i32.add local.tee $5 - i32.const 17884 + i32.const 17886 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -83350,7 +83350,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 20487 + i32.const 20489 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -83365,7 +83365,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle9NodeArray14printWithCommaERNS_12OutputStreamE local.get $2 - i32.const 17880 + i32.const 17882 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -83475,7 +83475,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 17884 + i32.const 17886 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -83490,7 +83490,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle9NodeArray14printWithCommaERNS_12OutputStreamE local.get $2 - i32.const 17880 + i32.const 17882 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -83525,7 +83525,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $3 - i32.const 20585 + i32.const 20587 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -83655,7 +83655,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $4 - i32.const 17884 + i32.const 17886 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -83669,7 +83669,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $5 - i32.const 17880 + i32.const 17882 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -83813,14 +83813,14 @@ i32.const 56 i32.add local.tee $2 - i32.const 17959 + i32.const 17961 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $4 local.get $2 call $__ZN12_GLOBAL__N_1eqERKNS_10StringViewES2_ if $if local.get $5 - i32.const 17884 + i32.const 17886 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -83831,7 +83831,7 @@ call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE end ;; $if local.get $6 - i32.const 17884 + i32.const 17886 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -83845,7 +83845,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $7 - i32.const 20643 + i32.const 20645 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -83866,7 +83866,7 @@ local.get $2 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $8 - i32.const 20646 + i32.const 20648 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $8 @@ -83880,7 +83880,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $9 - i32.const 17880 + i32.const 17882 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $9 @@ -83890,14 +83890,14 @@ local.get $2 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $2 - i32.const 17959 + i32.const 17961 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $4 local.get $2 call $__ZN12_GLOBAL__N_1eqERKNS_10StringViewES2_ if $if_0 local.get $10 - i32.const 17880 + i32.const 17882 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $10 @@ -84080,7 +84080,7 @@ local.set $0 end ;; $if_0 local.get $6 - i32.const 20789 + i32.const 20791 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $6 @@ -84123,7 +84123,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $4 - i32.const 20794 + i32.const 20796 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -84333,7 +84333,7 @@ i32.const 8 i32.add local.tee $4 - i32.const 20843 + i32.const 20845 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -85150,7 +85150,7 @@ local.get $8 i32.store offset=8 local.get $4 - i32.const 21050 + i32.const 21052 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $6 local.get $4 @@ -85162,7 +85162,7 @@ if $if_4 local.get $2 local.get $0 - i32.const 21368 + i32.const 21370 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ i32.store end ;; $if_4 @@ -85482,7 +85482,7 @@ i32.store local.get $2 local.get $0 - i32.const 21308 + i32.const 21310 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ i32.store local.get $0 @@ -85581,7 +85581,7 @@ local.get $2 i32.const 8 i32.add - i32.const 21046 + i32.const 21048 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -85594,7 +85594,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE br_if $block_0 local.get $2 - i32.const 21050 + i32.const 21052 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -85697,7 +85697,7 @@ br $block_1 end ;; $if_1 local.get $4 - i32.const 21112 + i32.const 21114 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -85837,7 +85837,7 @@ i32.add local.set $3 local.get $2 - i32.const 21053 + i32.const 21055 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -85888,7 +85888,7 @@ local.get $2 i32.const 32 i32.add - i32.const 21173 + i32.const 21175 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $2 @@ -85917,7 +85917,7 @@ local.set $0 else local.get $5 - i32.const 21176 + i32.const 21178 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $5 @@ -85949,7 +85949,7 @@ i32.const 1 i32.store8 offset=362 local.get $4 - i32.const 21179 + i32.const 21181 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $4 @@ -86218,7 +86218,7 @@ i32.const 24 i32.add local.tee $6 - i32.const 21182 + i32.const 21184 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -86239,7 +86239,7 @@ local.get $2 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $4 - i32.const 21190 + i32.const 21192 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -86254,7 +86254,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle9NodeArray14printWithCommaERNS_12OutputStreamE local.get $5 - i32.const 17880 + i32.const 17882 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -86342,7 +86342,7 @@ i32.const 16 i32.add local.tee $5 - i32.const 21245 + i32.const 21247 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -86363,7 +86363,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $4 - i32.const 21254 + i32.const 21256 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -86907,7 +86907,7 @@ i32.load8_s offset=12 if $if local.get $4 - i32.const 18617 + i32.const 18619 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -87033,7 +87033,7 @@ $block ;; default end ;; $block_5 local.get $4 - i32.const 17662 + i32.const 17664 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -87045,7 +87045,7 @@ br $block end ;; $block_4 local.get $5 - i32.const 17677 + i32.const 17679 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -87057,7 +87057,7 @@ br $block end ;; $block_3 local.get $6 - i32.const 21464 + i32.const 21466 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -87069,7 +87069,7 @@ br $block end ;; $block_2 local.get $7 - i32.const 21535 + i32.const 21537 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -87081,7 +87081,7 @@ br $block end ;; $block_1 local.get $8 - i32.const 21585 + i32.const 21587 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $8 @@ -87093,7 +87093,7 @@ br $block end ;; $block_0 local.get $3 - i32.const 21635 + i32.const 21637 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -87124,32 +87124,32 @@ $block ;; default end ;; $block_5 local.get $0 - i32.const 17607 + i32.const 17609 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_4 local.get $0 - i32.const 17617 + i32.const 17619 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_3 local.get $0 - i32.const 17617 + i32.const 17619 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_2 local.get $0 - i32.const 21421 + i32.const 21423 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_1 local.get $0 - i32.const 21435 + i32.const 21437 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_0 local.get $0 - i32.const 21449 + i32.const 21451 call $__ZN12_GLOBAL__N_110StringViewC2EPKc end ;; $block ) @@ -87282,7 +87282,7 @@ call $__ZNK12_GLOBAL__N_116itanium_demangle4Node11hasFunctionERNS_12OutputStreamE br_if $block_0 local.get $5 - i32.const 17882 + i32.const 17884 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -87294,7 +87294,7 @@ br $block end ;; $block_0 local.get $4 - i32.const 17884 + i32.const 17886 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -87309,7 +87309,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $2 - i32.const 21797 + i32.const 21799 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -87352,7 +87352,7 @@ br $block end ;; $block_0 local.get $2 - i32.const 17880 + i32.const 17882 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -87549,7 +87549,7 @@ i32.ne if $if_0 local.get $4 - i32.const 17882 + i32.const 17884 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -87566,7 +87566,7 @@ local.get $3 i32.const 16 i32.add - i32.const 21857 + i32.const 21859 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -87623,7 +87623,7 @@ end ;; $if_4 end ;; $if_2 local.get $3 - i32.const 17518 + i32.const 17520 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -87764,7 +87764,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 21907 + i32.const 21909 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -87821,7 +87821,7 @@ end ;; $if_2 end ;; $if_0 local.get $2 - i32.const 17518 + i32.const 17520 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -87969,7 +87969,7 @@ local.get $2 i32.const 16 i32.add - i32.const 21963 + i32.const 21965 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -87996,7 +87996,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $2 - i32.const 17518 + i32.const 17520 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -88100,7 +88100,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $1 - i32.const 22039 + i32.const 22041 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -88134,7 +88134,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $1 - i32.const 22046 + i32.const 22048 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -88168,7 +88168,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $1 - i32.const 18170 + i32.const 18172 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -88316,7 +88316,7 @@ i32.and if $if local.get $4 - i32.const 22075 + i32.const 22077 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -88338,7 +88338,7 @@ i32.and if $if_0 local.get $4 - i32.const 22082 + i32.const 22084 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -88356,7 +88356,7 @@ i32.and if $if_1 local.get $2 - i32.const 22092 + i32.const 22094 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -88467,7 +88467,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 17882 + i32.const 17884 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -88593,7 +88593,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 18066 + i32.const 18068 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -88614,7 +88614,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $5 - i32.const 17959 + i32.const 17961 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -88757,7 +88757,7 @@ i32.add call_indirect $28 (type $4) local.get $2 - i32.const 17882 + i32.const 17884 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -88815,7 +88815,7 @@ i32.const 48 i32.add local.tee $4 - i32.const 17884 + i32.const 17886 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -88830,7 +88830,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle9NodeArray14printWithCommaERNS_12OutputStreamE local.get $5 - i32.const 17880 + i32.const 17882 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -88860,7 +88860,7 @@ i32.and if $if local.get $6 - i32.const 22075 + i32.const 22077 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -88878,7 +88878,7 @@ i32.and if $if_0 local.get $7 - i32.const 22082 + i32.const 22084 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -88896,7 +88896,7 @@ i32.and if $if_1 local.get $8 - i32.const 22092 + i32.const 22094 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $8 @@ -88918,7 +88918,7 @@ $block ;; default end ;; $block_1 local.get $9 - i32.const 22277 + i32.const 22279 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $9 @@ -88930,7 +88930,7 @@ br $block end ;; $block_0 local.get $3 - i32.const 22280 + i32.const 22282 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -89021,7 +89021,7 @@ i32.add local.set $3 local.get $2 - i32.const 22333 + i32.const 22335 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -89099,7 +89099,7 @@ i32.const 8 i32.add local.tee $4 - i32.const 22397 + i32.const 22399 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -89113,7 +89113,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $2 - i32.const 17880 + i32.const 17882 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -89332,7 +89332,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 20646 + i32.const 20648 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -89353,7 +89353,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $5 - i32.const 17880 + i32.const 17882 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -89647,7 +89647,7 @@ local.get $1 if $if_9 (result i32) local.get $0 - i32.const 22678 + i32.const 22680 local.get $2 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_11SpecialNameEJRA34_KcRPNS0_4NodeEEEESC_DpOT0_ else @@ -90164,7 +90164,7 @@ i32.eqz if $if_0 local.get $2 - i32.const 17882 + i32.const 17884 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -90228,7 +90228,7 @@ i32.const 48 i32.add local.tee $4 - i32.const 17884 + i32.const 17886 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -90243,7 +90243,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle9NodeArray14printWithCommaERNS_12OutputStreamE local.get $5 - i32.const 17880 + i32.const 17882 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -90276,7 +90276,7 @@ i32.and if $if_0 local.get $6 - i32.const 22075 + i32.const 22077 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -90294,7 +90294,7 @@ i32.and if $if_1 local.get $7 - i32.const 22082 + i32.const 22084 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -90312,7 +90312,7 @@ i32.and if $if_2 local.get $8 - i32.const 22092 + i32.const 22094 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $8 @@ -90334,7 +90334,7 @@ $block ;; default end ;; $block_1 local.get $9 - i32.const 22277 + i32.const 22279 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $9 @@ -90346,7 +90346,7 @@ br $block end ;; $block_0 local.get $3 - i32.const 22280 + i32.const 22282 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -90434,7 +90434,7 @@ i32.add local.set $3 local.get $2 - i32.const 22616 + i32.const 22618 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -90566,7 +90566,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 22712 + i32.const 22714 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -90605,7 +90605,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 22737 + i32.const 22739 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -90644,7 +90644,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 22757 + i32.const 22759 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -90683,7 +90683,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 22779 + i32.const 22781 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -90722,7 +90722,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 22797 + i32.const 22799 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -90790,7 +90790,7 @@ i32.const 8 i32.add local.tee $4 - i32.const 22838 + i32.const 22840 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -90804,7 +90804,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $2 - i32.const 22863 + i32.const 22865 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -90842,7 +90842,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 22926 + i32.const 22928 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -90881,7 +90881,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 22953 + i32.const 22955 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -90920,7 +90920,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 22972 + i32.const 22974 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -90959,7 +90959,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 22986 + i32.const 22988 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -90998,7 +90998,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 22995 + i32.const 22997 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -92840,5 +92840,5 @@ call_indirect $28 (type $9) ) ;; User section "emscripten_metadata": - ;; "\00\01\00\03\80\02\b7\03\80\08\f0\ce\c1\02\d0\ce\01\e0\ce\01" + ;; "\00\02\00\04\00\80\02\b7\03\80\08\f0\ce\c1\02\d0\ce\01\e0\ce\01" ) \ No newline at end of file diff --git a/test/extensions/filters/http/wasm/test_data/http_callout_cpp.wasm b/test/extensions/filters/http/wasm/test_data/http_callout_cpp.wasm index e1b01243ed61e..aa1e0208f3224 100644 Binary files a/test/extensions/filters/http/wasm/test_data/http_callout_cpp.wasm and b/test/extensions/filters/http/wasm/test_data/http_callout_cpp.wasm differ diff --git a/test/extensions/filters/http/wasm/test_data/http_callout_cpp.wat b/test/extensions/filters/http/wasm/test_data/http_callout_cpp.wat index cbebd46b3b96f..ea0ae5749e7a2 100644 --- a/test/extensions/filters/http/wasm/test_data/http_callout_cpp.wat +++ b/test/extensions/filters/http/wasm/test_data/http_callout_cpp.wat @@ -169,7 +169,7 @@ $b10 $b10 $b11 $__ZN11RootContext18onHttpCallResponseEjNSt3__210unique_ptrI8WasmDataNS0_14default_deleteIS2_EEEES5_S5_ $__ZNK10__cxxabiv117__class_type_info16search_below_dstEPNS_19__dynamic_cast_infoEPKvib $__ZNK10__cxxabiv120__si_class_type_info16search_below_dstEPNS_19__dynamic_cast_infoEPKvib $__ZNK10__cxxabiv121__vmi_class_type_info16search_below_dstEPNS_19__dynamic_cast_infoEPKvib $b11 $b11 $b11 $b12 $__ZNK10__cxxabiv117__class_type_info16search_above_dstEPNS_19__dynamic_cast_infoEPKvS4_ib $__ZNK10__cxxabiv120__si_class_type_info16search_above_dstEPNS_19__dynamic_cast_infoEPKvS4_ib $__ZNK10__cxxabiv121__vmi_class_type_info16search_above_dstEPNS_19__dynamic_cast_infoEPKvS4_ib $b13) (data $36 $30 (i32.const 1024) - "\fa9\00\00\ff9\00\00\07:\00\00\0d:") + "\fc9\00\00\01:\00\00\09:\00\00\0f:") (data $37 $30 (i32.const 1168) "\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0" "\f0\f0\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\02\03\03\03\03\03\03\03\03\03\03\03\03\07\03\03\04\05\05\05\06\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0" @@ -244,11 +244,11 @@ "\00\00\00g\00\00\00k\00\00\00m\00\00\00q\00\00\00y\00\00\00\7f\00\00\00\83\00\00\00\89\00\00\00\8b\00\00\00\8f\00\00\00\95\00\00\00\97\00\00\00\9d\00\00\00\a3\00\00\00\a7\00\00\00\a9" "\00\00\00\ad\00\00\00\b3\00\00\00\b5\00\00\00\bb\00\00\00\bf\00\00\00\c1\00\00\00\c5\00\00\00\c7\00\00\00\d1\00\00\00T\1e\00\00#+\00\00|\1e\00\00\1a+\00\00p\11\00\00\00\00\00\00|" "\1e\00\00\09+\00\00x\11\00\00\00\00\00\00T\1e\00\001+\00\00T\1e\00\00C+\00\00T\1e\00\00o+\00\00\98*\00\00q,\00\00\00\00\00\00\01\00\00\00\c8\11\00\00\00\00\00\00T" - "\1e\00\00\b0,\00\00|\1e\00\00\936\00\00\90\12\00\00\00\00\00\00|\1e\00\00u5\00\00\f0\11\00\00\00\00\00\00|\1e\00\002/\00\00\00\12\00\00\00\00\00\00|\1e\00\00b/\00\00\10" - "\12\00\00\00\00\00\00|\1e\00\00(0\00\00\90\12\00\00\00\00\00\00|\1e\00\00B5\00\00\90\12\00\00\00\00\00\00\98*\00\00\004\00\00\00\00\00\00\01\00\00\00H\12\00\00\00\00\00\00T" - "\1e\00\00m4\00\00|\1e\00\00\\5\00\00\90\12\00\00\00\00\00\00|\1e\00\00\c66\00\00p\11\00\00\00\00\00\00|\1e\00\00\f56\00\00\80\14\00\00\00\00\00\00\ff\ff\ff\ff\ff\ff\ff\ff") + "\1e\00\00\b0,\00\00|\1e\00\00\956\00\00\90\12\00\00\00\00\00\00|\1e\00\00w5\00\00\f0\11\00\00\00\00\00\00|\1e\00\004/\00\00\00\12\00\00\00\00\00\00|\1e\00\00d/\00\00\10" + "\12\00\00\00\00\00\00|\1e\00\00*0\00\00\90\12\00\00\00\00\00\00|\1e\00\00D5\00\00\90\12\00\00\00\00\00\00\98*\00\00\024\00\00\00\00\00\00\01\00\00\00H\12\00\00\00\00\00\00T" + "\1e\00\00o4\00\00|\1e\00\00^5\00\00\90\12\00\00\00\00\00\00|\1e\00\00\c86\00\00p\11\00\00\00\00\00\00|\1e\00\00\f76\00\00\80\14\00\00\00\00\00\00\ff\ff\ff\ff\ff\ff\ff\ff") (data $54 $30 (i32.const 4752) - "T\1e\00\00\f9;\00\00|\1e\00\00\ca?\00\00\b8\12\00\00\00\00\00\00|\1e\00\00\86@\00\00\b8\12\00\00\00\00\00\00T\1e\00\00RA\00\00\05") + "T\1e\00\00\fb;\00\00|\1e\00\00\cc?\00\00\b8\12\00\00\00\00\00\00|\1e\00\00\88@\00\00\b8\12\00\00\00\00\00\00T\1e\00\00TA\00\00\05") (data $55 $30 (i32.const 4812) "-") (data $56 $30 (i32.const 4836) @@ -272,26 +272,26 @@ (data $65 $30 (i32.const 5163) "\ff\ff\ff\ff\ff") (data $66 $30 (i32.const 5232) - "|\1e\00\00\c9A\00\00\80\14\00\00\00\00\00\00T\1e\00\00\88B\00\00|\1e\00\00\e8B\00\00\98\14\00\00\00\00\00\00|\1e\00\00\95B\00\00\a8\14\00\00\00\00\00\00T\1e\00\00\b6B\00\00" - "|\1e\00\00\c3B\00\00\88\14\00\00\00\00\00\00|\1e\00\00xD\00\00\d0\14\00\00\00\00\00\00T\1e\00\00\a7D\00\00|\1e\00\00[E\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\9eE\00\00" - "\d0\14\00\00\00\00\00\00|\1e\00\00\ebE\00\00\d0\14\00\00\00\00\00\00|\1e\00\001F\00\00\d0\14\00\00\00\00\00\00|\1e\00\00aF\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\9fF\00\00" - "\d0\14\00\00\00\00\00\00|\1e\00\00\d0F\00\00\d0\14\00\00\00\00\00\00|\1e\00\00 G\00\00\d0\14\00\00\00\00\00\00|\1e\00\00YG\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\94G\00\00" - "\d0\14\00\00\00\00\00\00|\1e\00\00\d0G\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\13H\00\00\d0\14\00\00\00\00\00\00|\1e\00\00AH\00\00\d0\14\00\00\00\00\00\00|\1e\00\00tH\00\00" - "\d0\14\00\00\00\00\00\00|\1e\00\000I\00\00\d0\14\00\00\00\00\00\00|\1e\00\00]I\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\8eI\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\ccI\00\00" - "\d0\14\00\00\00\00\00\00|\1e\00\00DJ\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\09J\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\8bJ\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\d4J\00\00" - "\d0\14\00\00\00\00\00\00|\1e\00\00/K\00\00\d0\14\00\00\00\00\00\00|\1e\00\00ZK\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\94K\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\c8K\00\00" - "\d0\14\00\00\00\00\00\00|\1e\00\00\18L\00\00\d0\14\00\00\00\00\00\00|\1e\00\00GL\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\80L\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\b9L\00\00" - "\d0\14\00\00\00\00\00\00|\1e\00\00\deN\00\00\d0\14\00\00\00\00\00\00|\1e\00\00,O\00\00\d0\14\00\00\00\00\00\00|\1e\00\00gO\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\93O\00\00" - "\d0\14\00\00\00\00\00\00|\1e\00\00\ddO\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\12P\00\00\d0\14\00\00\00\00\00\00|\1e\00\00EP\00\00\d0\14\00\00\00\00\00\00|\1e\00\00|P\00\00" - "\d0\14\00\00\00\00\00\00|\1e\00\00\b1P\00\00\d0\14\00\00\00\00\00\00|\1e\00\00GQ\00\00\d0\14\00\00\00\00\00\00|\1e\00\00yQ\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\abQ\00\00" - "\d0\14\00\00\00\00\00\00|\1e\00\00\03R\00\00\d0\14\00\00\00\00\00\00|\1e\00\00KR\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\83R\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\d1R\00\00" - "\d0\14\00\00\00\00\00\00|\1e\00\00\10S\00\00\d0\14\00\00\00\00\00\00|\1e\00\00SS\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\84S\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\beT\00\00" - "\d0\14\00\00\00\00\00\00|\1e\00\00\feT\00\00\d0\14\00\00\00\00\00\00|\1e\00\001U\00\00\d0\14\00\00\00\00\00\00|\1e\00\00kU\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\a4U\00\00" - "\d0\14\00\00\00\00\00\00|\1e\00\00\e1U\00\00\d0\14\00\00\00\00\00\00|\1e\00\00^V\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\8aV\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\c0V\00\00" - "\d0\14\00\00\00\00\00\00|\1e\00\00\14W\00\00\d0\14\00\00\00\00\00\00|\1e\00\00LW\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\8fW\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\c0W\00\00" - "\d0\14\00\00\00\00\00\00|\1e\00\00\f0W\00\00\d0\14\00\00\00\00\00\00|\1e\00\00+X\00\00\d0\14\00\00\00\00\00\00|\1e\00\00mX\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\\Y\00\00" - "\d0\14\00\00\00\00\00\00|\1e\00\00\e7Y\00\00\80\14\00\00\00\00\00\00|\1e\00\00\f7Y\00\00\f8\18\00\00\00\00\00\00|\1e\00\00\08Z\00\00\98\14\00\00\00\00\00\00|\1e\00\00*Z\00\00" - "\18\19\00\00\00\00\00\00|\1e\00\00NZ\00\00\98\14\00\00\00\00\00\00|*\00\00vZ\00\00|*\00\00xZ\00\00|*\00\00zZ\00\00|\1e\00\00|Z\00\00\88\14") + "|\1e\00\00\cbA\00\00\80\14\00\00\00\00\00\00T\1e\00\00\8aB\00\00|\1e\00\00\eaB\00\00\98\14\00\00\00\00\00\00|\1e\00\00\97B\00\00\a8\14\00\00\00\00\00\00T\1e\00\00\b8B\00\00" + "|\1e\00\00\c5B\00\00\88\14\00\00\00\00\00\00|\1e\00\00zD\00\00\d0\14\00\00\00\00\00\00T\1e\00\00\a9D\00\00|\1e\00\00]E\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\a0E\00\00" + "\d0\14\00\00\00\00\00\00|\1e\00\00\edE\00\00\d0\14\00\00\00\00\00\00|\1e\00\003F\00\00\d0\14\00\00\00\00\00\00|\1e\00\00cF\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\a1F\00\00" + "\d0\14\00\00\00\00\00\00|\1e\00\00\d2F\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\"G\00\00\d0\14\00\00\00\00\00\00|\1e\00\00[G\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\96G\00\00" + "\d0\14\00\00\00\00\00\00|\1e\00\00\d2G\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\15H\00\00\d0\14\00\00\00\00\00\00|\1e\00\00CH\00\00\d0\14\00\00\00\00\00\00|\1e\00\00vH\00\00" + "\d0\14\00\00\00\00\00\00|\1e\00\002I\00\00\d0\14\00\00\00\00\00\00|\1e\00\00_I\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\90I\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\ceI\00\00" + "\d0\14\00\00\00\00\00\00|\1e\00\00FJ\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\0bJ\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\8dJ\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\d6J\00\00" + "\d0\14\00\00\00\00\00\00|\1e\00\001K\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\\K\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\96K\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\caK\00\00" + "\d0\14\00\00\00\00\00\00|\1e\00\00\1aL\00\00\d0\14\00\00\00\00\00\00|\1e\00\00IL\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\82L\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\bbL\00\00" + "\d0\14\00\00\00\00\00\00|\1e\00\00\e0N\00\00\d0\14\00\00\00\00\00\00|\1e\00\00.O\00\00\d0\14\00\00\00\00\00\00|\1e\00\00iO\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\95O\00\00" + "\d0\14\00\00\00\00\00\00|\1e\00\00\dfO\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\14P\00\00\d0\14\00\00\00\00\00\00|\1e\00\00GP\00\00\d0\14\00\00\00\00\00\00|\1e\00\00~P\00\00" + "\d0\14\00\00\00\00\00\00|\1e\00\00\b3P\00\00\d0\14\00\00\00\00\00\00|\1e\00\00IQ\00\00\d0\14\00\00\00\00\00\00|\1e\00\00{Q\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\adQ\00\00" + "\d0\14\00\00\00\00\00\00|\1e\00\00\05R\00\00\d0\14\00\00\00\00\00\00|\1e\00\00MR\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\85R\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\d3R\00\00" + "\d0\14\00\00\00\00\00\00|\1e\00\00\12S\00\00\d0\14\00\00\00\00\00\00|\1e\00\00US\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\86S\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\c0T\00\00" + "\d0\14\00\00\00\00\00\00|\1e\00\00\00U\00\00\d0\14\00\00\00\00\00\00|\1e\00\003U\00\00\d0\14\00\00\00\00\00\00|\1e\00\00mU\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\a6U\00\00" + "\d0\14\00\00\00\00\00\00|\1e\00\00\e3U\00\00\d0\14\00\00\00\00\00\00|\1e\00\00`V\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\8cV\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\c2V\00\00" + "\d0\14\00\00\00\00\00\00|\1e\00\00\16W\00\00\d0\14\00\00\00\00\00\00|\1e\00\00NW\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\91W\00\00\d0\14\00\00\00\00\00\00|\1e\00\00\c2W\00\00" + "\d0\14\00\00\00\00\00\00|\1e\00\00\f2W\00\00\d0\14\00\00\00\00\00\00|\1e\00\00-X\00\00\d0\14\00\00\00\00\00\00|\1e\00\00oX\00\00\d0\14\00\00\00\00\00\00|\1e\00\00^Y\00\00" + "\d0\14\00\00\00\00\00\00|\1e\00\00\e9Y\00\00\80\14\00\00\00\00\00\00|\1e\00\00\f9Y\00\00\f8\18\00\00\00\00\00\00|\1e\00\00\nZ\00\00\98\14\00\00\00\00\00\00|\1e\00\00,Z\00\00" + "\18\19\00\00\00\00\00\00|\1e\00\00PZ\00\00\98\14\00\00\00\00\00\00|*\00\00xZ\00\00|*\00\00zZ\00\00|*\00\00|Z\00\00|\1e\00\00~Z\00\00\88\14") (data $67 $30 (i32.const 6516) "\88\11\00\00\01\00\00\00\02\00\00\00\01\00\00\00\02\00\00\00\01\00\00\00\02\00\00\00\03\00\00\00\03\00\00\00\04\00\00\00\01\00\00\00\05\00\00\00\06\00\00\00\07\00\00\00\02\00\00\00\08\00\00\00" "\04\00\00\00\05\00\00\00\06") @@ -377,190 +377,190 @@ "ataWithArenaLiteEE9ContainerE\00/usr/local/include/google/protobuf" "/arenastring.h\00CHECK failed: initial_value != NULL: \00NSt3__212ba" "sic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEE\00NSt3__221__b" - "asic_string_commonILb1EEE\00/home/jplev_google_com/envoy/api/wasm/" - "cpp/struct_lite.pb.cc\00/usr/local/include/google/protobuf/repeate" - "d_field.h\00CHECK failed: (index) >= (0): \00CHECK failed: (index) <" - " (current_size_): \00/usr/local/include/google/protobuf/map.h\00CHEC" - "K failed: (bucket_index_ & 1) == (0): \00CHECK failed: m_->index_o" - "f_first_non_null_ == m_->num_buckets_ || m_->table_[m_->index_of" - "_first_non_null_] != NULL: \00CHECK failed: !tree->empty(): \00CHECK" - " failed: node_ != NULL && m_ != NULL: \00google.protobuf.Value.str" - "ing_value\00google.protobuf.Struct.FieldsEntry.key\00CHECK failed: (" - "&from) != (this): \00CHECK failed: (&other) != (this): \00N6google8p" - "rotobuf27Struct_FieldsEntry_DoNotUseE\00N6google8protobuf8internal" - "12MapEntryLiteINS0_27Struct_FieldsEntry_DoNotUseENSt3__212basic_" - "stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEENS0_5ValueELNS1" - "_14WireFormatLite9FieldTypeE9ELSD_11ELi0EEE\00N6google8protobuf8in" - "ternal12MapEntryImplINS0_27Struct_FieldsEntry_DoNotUseENS0_11Mes" - "sageLiteENSt3__212basic_stringIcNS5_11char_traitsIcEENS5_9alloca" - "torIcEEEENS0_5ValueELNS1_14WireFormatLite9FieldTypeE9ELSE_11ELi0" - "EEE\00CHECK failed: (it.m_) == (this): \00CHECK failed: TableEntryIs" - "NonEmptyList(b): \00CHECK failed: TableEntryIsTree(b): \00CHECK fail" - "ed: GetArenaNoVirtual() == NULL: \00CHECK failed: index_of_first_n" - "on_null_ == num_buckets_ || table_[index_of_first_non_null_] != " - "NULL: \00CHECK failed: find(*KeyPtrFromNodePtr(node)) == end(): \00C" - "HECK failed: (count) <= (kMaxLength): \00CHECK failed: (result.buc" - "ket_index_) == (b & ~static_cast(1)): \00CHECK failed: " - "(table_[b]) == (table_[b ^ 1]): \00CHECK failed: !TableEntryIsTree" - "(b) && !TableEntryIsTree(b ^ 1): \00CHECK failed: (count) == (tree" - "->size()): \00CHECK failed: (new_num_buckets) >= (kMinTableSize): " - "\00CHECK failed: n >= kMinTableSize: \00CHECK failed: (n & (n - 1)) " - "== (0): \00CHECK failed: table_[b] == table_[b + 1] && (b & 1) == " - "0: \00N6google8protobuf3MapINSt3__212basic_stringIcNS2_11char_trai" - "tsIcEENS2_9allocatorIcEEEENS0_5ValueEE8InnerMapE\00N6google8protob" - "uf4hashINSt3__212basic_stringIcNS2_11char_traitsIcEENS2_9allocat" - "orIcEEEEEE\00f == NULL || dynamic_cast(f) != NULL\00/usr/local/i" - "nclude/google/protobuf/stubs/casts.h\00down_cast\00google.protobuf.S" - "truct\00N6google8protobuf6StructE\00N6google8protobuf5ValueE\00N6googl" - "e8protobuf8internal12MapEntryImplINS0_27Struct_FieldsEntry_DoNot" - "UseENS0_11MessageLiteENSt3__212basic_stringIcNS5_11char_traitsIc" - "EENS5_9allocatorIcEEEENS0_5ValueELNS1_14WireFormatLite9FieldType" - "E9ELSE_11ELi0EE15MapEntryWrapperE\00CHECK failed: (n) >= (0): \00goo" - "gle.protobuf.ListValue\00N6google8protobuf9ListValueE\00google.proto" - "buf.Value\0011RootContext\00no context factory for root_id: \00N6googl" - "e8protobuf14FatalExceptionE\00google/protobuf/stubs/common.cc\00This" - " program requires version \00%d.%d.%d\00 of the Protocol Buffer runt" - "ime library, but the installed version is \00. Please update your" - " library. If you compiled the program yourself, make sure that " - "your headers are from the same version of Protocol Buffers as yo" - "ur link-time library. (Version verification failed in \"\00\".)\00Thi" - "s program was compiled against version \00 of the Protocol Buffer " - "runtime library, which is not compatible with the installed vers" - "ion (\00). Contact the program author for an update. If you comp" - "iled the program yourself, make sure that your headers are from " - "the same version of Protocol Buffers as your link-time library. " - " (Version verification failed in \"\00[libprotobuf %s %s:%d] %s\n\00IN" - "FO\00WARNING\00ERROR\00FATAL\00allocator::allocate(size_t n) 'n' exce" - "eds maximum supported size\00%d\00%u\00google/protobuf/arena.cc\00CHECK " - "failed: (min_bytes) <= (std::numeric_limits::max() - kBl" - "ockHeaderSize): \00google/protobuf/generated_message_util.cc\00Not i" - "mplemented field number \00 with type \00CHECK failed: (scc->visit_s" - "tatus.load(std::memory_order_relaxed)) == (SCCInfoBase::kRunning" - "): \00google/protobuf/message_lite.cc\00CHECK failed: !coded_out.Had" - "Error(): \00(cannot determine missing fields for lite message)\00N6g" - "oogle8protobuf11MessageLiteE\00google/protobuf/repeated_field.cc\00C" - "HECK failed: (new_size) <= ((std::numeric_limits::max() " - "- kRepHeaderSize) / sizeof(old_rep->elements[0])): \00Requested si" - "ze is too large to fit into size_t.\00google/protobuf/wire_format_" - "lite.cc\00CHECK failed: (value.size()) <= (kint32max): \00serializin" - "g\00parsing\00 '%s'\00String field\00 contains invalid \00UTF-8 data when " - "\00 a protocol \00buffer. Use the 'bytes' type if you intend to send" - " raw \00bytes. \00google/protobuf/io/coded_stream.cc\00CHECK failed: (" - "buffer_size) >= (0): \00A protocol message was rejected because it" - " was too big (more than \00 bytes). To increase the limit (or to " - "disable these warnings), see CodedInputStream::SetTotalBytesLimi" - "t() in google/protobuf/io/coded_stream.h.\00google/protobuf/io/zer" - "o_copy_stream_impl_lite.cc\00CHECK failed: (count) >= (0): \00CHECK " - "failed: (last_returned_size_) > (0): \00BackUp() can only be calle" - "d after a successful Next().\00CHECK failed: (count) <= (last_retu" - "rned_size_): \00N6google8protobuf2io17ArrayOutputStreamE\00CHECK fai" - "led: target_ != NULL: \00CHECK failed: (count) <= (target_->size()" - "): \00Cannot allocate buffer larger than kint32max for \00StringOutp" - "utStream.\00N6google8protobuf2io18StringOutputStreamE\00google/proto" - "buf/io/zero_copy_stream.cc\00This ZeroCopyOutputStream doesn't sup" - "port aliasing. Reaching here usually means a ZeroCopyOutputStrea" - "m implementation bug.\00N6google8protobuf2io20ZeroCopyOutputStream" - "E\00-+ 0X0x\00(null)\00-0X+0X 0X-0x+0x 0x\00inf\00INF\00nan\00NAN\00std::bad_f" - "unction_call\00NSt3__217bad_function_callE\00mutex lock failed\00termi" - "nating with %s exception of type %s: %s\00terminating with %s exce" - "ption of type %s\00terminating with %s foreign exception\00terminati" - "ng\00uncaught\00St9exception\00N10__cxxabiv116__shim_type_infoE\00St9typ" - "e_info\00N10__cxxabiv120__si_class_type_infoE\00N10__cxxabiv117__cla" - "ss_type_infoE\00terminate_handler unexpectedly returned\00_Z\00___Z\00_b" - "lock_invoke\00invocation function for block in \00void\00bool\00char\00sig" - "ned char\00unsigned char\00short\00unsigned short\00int\00unsigned int\00lon" - "g\00unsigned long\00long long\00__int128\00unsigned __int128\00float\00long " - "double\00__float128\00...\00decimal64\00decimal128\00decimal32\00decimal16\00c" - "har32_t\00char16_t\00auto\00decltype(auto)\00std::nullptr_t\00[abi:\00]\00N12_" - "GLOBAL__N_116itanium_demangle10AbiTagAttrE\00N12_GLOBAL__N_116itan" - "ium_demangle4NodeE\00allocator\00basic_string\00string\00istream\00ostream" - "\00iostream\00std::allocator\00std::basic_string\00std::string\00std::istr" - "eam\00std::ostream\00std::iostream\00N12_GLOBAL__N_116itanium_demangle" - "19SpecialSubstitutionE\00 imaginary\00N12_GLOBAL__N_116itanium_deman" - "gle20PostfixQualifiedTypeE\00 complex\00)\00 \00(\00&\00&&\00N12_GLOBAL__N_116" - "itanium_demangle13ReferenceTypeE\00objc_object\00*\00id<\00>\00N12_GLOBAL_" - "_N_116itanium_demangle11PointerTypeE\00N12_GLOBAL__N_116itanium_de" - "mangle20NameWithTemplateArgsE\00<\00, \00N12_GLOBAL__N_116itanium_dema" - "ngle12TemplateArgsE\00N12_GLOBAL__N_116itanium_demangle13Parameter" - "PackE\00wchar_t\00b0E\00b1E\00u\00l\00ul\00ll\00ull\00N12_GLOBAL__N_116itanium_dem" - "angle15IntegerCastExprE\00%LaL\00N12_GLOBAL__N_116itanium_demangle16" - "FloatLiteralImplIeEE\00%a\00N12_GLOBAL__N_116itanium_demangle16Float" - "LiteralImplIdEE\00%af\00N12_GLOBAL__N_116itanium_demangle16FloatLite" - "ralImplIfEE\00true\00false\00N12_GLOBAL__N_116itanium_demangle8BoolExp" - "rE\00-\00N12_GLOBAL__N_116itanium_demangle14IntegerLiteralE\00N12_GLOB" - "AL__N_116itanium_demangle20TemplateArgumentPackE\00gs\00&=\00=\00alignof" - " (\00,\00~\00.*\00/\00/=\00^\00^=\00==\00>=\00<=\00<<\00<<=\00-=\00*=\00--\00!=\00!\00||\00|\00|=\00->*\00+\00" - "+=\00++\00->\00%\00%=\00>>\00>>=\00sizeof (\00typeid (\00throw\00throw \00N12_GLOBAL__" - "N_116itanium_demangle9ThrowExprE\00N12_GLOBAL__N_116itanium_demang" - "le12InitListExprE\00N12_GLOBAL__N_116itanium_demangle13NodeArrayNo" - "deE\00sizeof... (\00N12_GLOBAL__N_116itanium_demangle13EnclosingExpr" - "E\00sizeof...(\00N12_GLOBAL__N_116itanium_demangle22ParameterPackExp" - "ansionE\00N12_GLOBAL__N_116itanium_demangle19SizeofParamPackExprE\00" - "static_cast\00>(\00N12_GLOBAL__N_116itanium_demangle8CastExprE\00reint" - "erpret_cast\00) ? (\00) : (\00N12_GLOBAL__N_116itanium_demangle15Condi" - "tionalExprE\00noexcept (\00nw\00na\00pi\00::operator \00new\00[]\00N12_GLOBAL__N" - "_116itanium_demangle7NewExprE\00N12_GLOBAL__N_116itanium_demangle1" - "1PostfixExprE\00 ... \00 = \00N12_GLOBAL__N_116itanium_demangle15Brace" - "dRangeExprE\00N12_GLOBAL__N_116itanium_demangle10BracedExprE\00_GLOB" - "AL__N\00(anonymous namespace)\00N12_GLOBAL__N_116itanium_demangle8Na" - "meTypeE\00)[\00N12_GLOBAL__N_116itanium_demangle18ArraySubscriptExpr" - "E\00.\00N12_GLOBAL__N_116itanium_demangle10MemberExprE\00srN\00sr\00::\00N12" - "_GLOBAL__N_116itanium_demangle19GlobalQualifiedNameE\00dn\00on\00opera" - "tor&&\00operator&\00operator&=\00operator=\00operator()\00operator,\00operat" - "or~\00operator delete[]\00operator*\00operator/\00operator/=\00operator^\00o" - "perator^=\00operator==\00operator>=\00operator>\00operator[]\00operator<=\00" - "operator<<\00operator<<=\00operator<\00operator-\00operator-=\00operator*=" - "\00operator--\00operator new[]\00operator!=\00operator!\00operator new\00ope" - "rator||\00operator|\00operator|=\00operator->*\00operator+\00operator+=\00op" - "erator++\00operator->\00operator?\00operator%\00operator%=\00operator>>\00op" - "erator>>=\00operator<=>\00operator\"\" \00N12_GLOBAL__N_116itanium_deman" - "gle15LiteralOperatorE\00operator delete\00operator \00N12_GLOBAL__N_11" - "6itanium_demangle22ConversionOperatorTypeE\00N12_GLOBAL__N_116itan" - "ium_demangle8DtorNameE\00N12_GLOBAL__N_116itanium_demangle13Qualif" - "iedNameE\00dynamic_cast\00delete\00[] \00N12_GLOBAL__N_116itanium_demang" - "le10DeleteExprE\00cv\00)(\00N12_GLOBAL__N_116itanium_demangle14Convers" - "ionExprE\00N12_GLOBAL__N_116itanium_demangle8CallExprE\00const_cast\00" - "N12_GLOBAL__N_116itanium_demangle10PrefixExprE\00) \00 (\00N12_GLOBAL_" - "_N_116itanium_demangle10BinaryExprE\00aa\00an\00aN\00aS\00cm\00ds\00dv\00dV\00eo\00e" - "O\00eq\00ge\00gt\00le\00ls\00lS\00lt\00mi\00mI\00ml\00mL\00ne\00oo\00or\00oR\00pl\00pL\00rm\00rM\00rs\00rS" - "\00... \00 ...\00N12_GLOBAL__N_116itanium_demangle8FoldExprE\00fp\00fL\00N12" - "_GLOBAL__N_116itanium_demangle13FunctionParamE\00N12_GLOBAL__N_116" - "itanium_demangle24ForwardTemplateReferenceE\00Ts\00struct\00Tu\00union\00T" - "e\00enum\00N12_GLOBAL__N_116itanium_demangle22ElaboratedTypeSpefType" - "E\00StL\00St\00std::\00N12_GLOBAL__N_116itanium_demangle16StdQualifiedNa" - "meE\00DC\00N12_GLOBAL__N_116itanium_demangle21StructuredBindingNameE" - "\00Ut\00Ul\00vE\00'lambda\00'(\00N12_GLOBAL__N_116itanium_demangle15ClosureT" - "ypeNameE\00'unnamed\00'\00N12_GLOBAL__N_116itanium_demangle15UnnamedTy" - "peNameE\00string literal\00N12_GLOBAL__N_116itanium_demangle9LocalNa" - "meE\00std\00N12_GLOBAL__N_116itanium_demangle12CtorDtorNameE\00basic_i" - "stream\00basic_ostream\00basic_iostream\00std::basic_string, std::allocator >\00std::basic_istream >\00std::basic_ostream >\00std::basic_iostream " - ">\00N12_GLOBAL__N_116itanium_demangle27ExpandedSpecialSubstitution" - "E\00N12_GLOBAL__N_116itanium_demangle10NestedNameE\00::*\00N12_GLOBAL_" - "_N_116itanium_demangle19PointerToMemberTypeE\00[\00N12_GLOBAL__N_116" - "itanium_demangle9ArrayTypeE\00Dv\00 vector[\00N12_GLOBAL__N_116itanium" - "_demangle10VectorTypeE\00pixel vector[\00N12_GLOBAL__N_116itanium_de" - "mangle15PixelVectorTypeE\00decltype(\00double\00unsigned long long\00obj" - "cproto\00 const\00 volatile\00 restrict\00N12_GLOBAL__N_116itanium_deman" - "gle8QualTypeE\00N12_GLOBAL__N_116itanium_demangle17VendorExtQualTy" - "peE\00N12_GLOBAL__N_116itanium_demangle13ObjCProtoNameE\00Do\00noexcep" - "t\00DO\00Dw\00Dx\00RE\00OE\00 &\00 &&\00N12_GLOBAL__N_116itanium_demangle12Funct" - "ionTypeE\00throw(\00N12_GLOBAL__N_116itanium_demangle20DynamicExcept" - "ionSpecE\00noexcept(\00N12_GLOBAL__N_116itanium_demangle12NoexceptSp" - "ecE\00N12_GLOBAL__N_116itanium_demangle11SpecialNameE\00N12_GLOBAL__" - "N_116itanium_demangle9DotSuffixE\00Ua9enable_ifI\00N12_GLOBAL__N_116" - "itanium_demangle16FunctionEncodingE\00 [enable_if:\00N12_GLOBAL__N_1" - "16itanium_demangle12EnableIfAttrE\00thread-local wrapper routine f" - "or \00reference temporary for \00guard variable for \00non-virtual thu" - "nk to \00virtual thunk to \00thread-local initialization routine for" - " \00construction vtable for \00-in-\00N12_GLOBAL__N_116itanium_demangl" - "e21CtorVtableSpecialNameE\00covariant return thunk to \00typeinfo na" - "me for \00typeinfo for \00VTT for \00vtable for \00St11logic_error\00St12l" - "ength_error\00N10__cxxabiv117__pbase_type_infoE\00N10__cxxabiv119__p" - "ointer_type_infoE\00N10__cxxabiv123__fundamental_type_infoE\00v\00c\00h\00" - "N10__cxxabiv121__vmi_class_type_infoE") + "asic_string_commonILb1EEE\00/home/piotrsikora/Google/envoy/api/was" + "m/cpp/struct_lite.pb.cc\00/usr/local/include/google/protobuf/repea" + "ted_field.h\00CHECK failed: (index) >= (0): \00CHECK failed: (index)" + " < (current_size_): \00/usr/local/include/google/protobuf/map.h\00CH" + "ECK failed: (bucket_index_ & 1) == (0): \00CHECK failed: m_->index" + "_of_first_non_null_ == m_->num_buckets_ || m_->table_[m_->index_" + "of_first_non_null_] != NULL: \00CHECK failed: !tree->empty(): \00CHE" + "CK failed: node_ != NULL && m_ != NULL: \00google.protobuf.Value.s" + "tring_value\00google.protobuf.Struct.FieldsEntry.key\00CHECK failed:" + " (&from) != (this): \00CHECK failed: (&other) != (this): \00N6google" + "8protobuf27Struct_FieldsEntry_DoNotUseE\00N6google8protobuf8intern" + "al12MapEntryLiteINS0_27Struct_FieldsEntry_DoNotUseENSt3__212basi" + "c_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEENS0_5ValueELN" + "S1_14WireFormatLite9FieldTypeE9ELSD_11ELi0EEE\00N6google8protobuf8" + "internal12MapEntryImplINS0_27Struct_FieldsEntry_DoNotUseENS0_11M" + "essageLiteENSt3__212basic_stringIcNS5_11char_traitsIcEENS5_9allo" + "catorIcEEEENS0_5ValueELNS1_14WireFormatLite9FieldTypeE9ELSE_11EL" + "i0EEE\00CHECK failed: (it.m_) == (this): \00CHECK failed: TableEntry" + "IsNonEmptyList(b): \00CHECK failed: TableEntryIsTree(b): \00CHECK fa" + "iled: GetArenaNoVirtual() == NULL: \00CHECK failed: index_of_first" + "_non_null_ == num_buckets_ || table_[index_of_first_non_null_] !" + "= NULL: \00CHECK failed: find(*KeyPtrFromNodePtr(node)) == end(): " + "\00CHECK failed: (count) <= (kMaxLength): \00CHECK failed: (result.b" + "ucket_index_) == (b & ~static_cast(1)): \00CHECK failed" + ": (table_[b]) == (table_[b ^ 1]): \00CHECK failed: !TableEntryIsTr" + "ee(b) && !TableEntryIsTree(b ^ 1): \00CHECK failed: (count) == (tr" + "ee->size()): \00CHECK failed: (new_num_buckets) >= (kMinTableSize)" + ": \00CHECK failed: n >= kMinTableSize: \00CHECK failed: (n & (n - 1)" + ") == (0): \00CHECK failed: table_[b] == table_[b + 1] && (b & 1) =" + "= 0: \00N6google8protobuf3MapINSt3__212basic_stringIcNS2_11char_tr" + "aitsIcEENS2_9allocatorIcEEEENS0_5ValueEE8InnerMapE\00N6google8prot" + "obuf4hashINSt3__212basic_stringIcNS2_11char_traitsIcEENS2_9alloc" + "atorIcEEEEEE\00f == NULL || dynamic_cast(f) != NULL\00/usr/local" + "/include/google/protobuf/stubs/casts.h\00down_cast\00google.protobuf" + ".Struct\00N6google8protobuf6StructE\00N6google8protobuf5ValueE\00N6goo" + "gle8protobuf8internal12MapEntryImplINS0_27Struct_FieldsEntry_DoN" + "otUseENS0_11MessageLiteENSt3__212basic_stringIcNS5_11char_traits" + "IcEENS5_9allocatorIcEEEENS0_5ValueELNS1_14WireFormatLite9FieldTy" + "peE9ELSE_11ELi0EE15MapEntryWrapperE\00CHECK failed: (n) >= (0): \00g" + "oogle.protobuf.ListValue\00N6google8protobuf9ListValueE\00google.pro" + "tobuf.Value\0011RootContext\00no context factory for root_id: \00N6goo" + "gle8protobuf14FatalExceptionE\00google/protobuf/stubs/common.cc\00Th" + "is program requires version \00%d.%d.%d\00 of the Protocol Buffer ru" + "ntime library, but the installed version is \00. Please update yo" + "ur library. If you compiled the program yourself, make sure tha" + "t your headers are from the same version of Protocol Buffers as " + "your link-time library. (Version verification failed in \"\00\".)\00T" + "his program was compiled against version \00 of the Protocol Buffe" + "r runtime library, which is not compatible with the installed ve" + "rsion (\00). Contact the program author for an update. If you co" + "mpiled the program yourself, make sure that your headers are fro" + "m the same version of Protocol Buffers as your link-time library" + ". (Version verification failed in \"\00[libprotobuf %s %s:%d] %s\n\00" + "INFO\00WARNING\00ERROR\00FATAL\00allocator::allocate(size_t n) 'n' ex" + "ceeds maximum supported size\00%d\00%u\00google/protobuf/arena.cc\00CHEC" + "K failed: (min_bytes) <= (std::numeric_limits::max() - k" + "BlockHeaderSize): \00google/protobuf/generated_message_util.cc\00Not" + " implemented field number \00 with type \00CHECK failed: (scc->visit" + "_status.load(std::memory_order_relaxed)) == (SCCInfoBase::kRunni" + "ng): \00google/protobuf/message_lite.cc\00CHECK failed: !coded_out.H" + "adError(): \00(cannot determine missing fields for lite message)\00N" + "6google8protobuf11MessageLiteE\00google/protobuf/repeated_field.cc" + "\00CHECK failed: (new_size) <= ((std::numeric_limits::max(" + ") - kRepHeaderSize) / sizeof(old_rep->elements[0])): \00Requested " + "size is too large to fit into size_t.\00google/protobuf/wire_forma" + "t_lite.cc\00CHECK failed: (value.size()) <= (kint32max): \00serializ" + "ing\00parsing\00 '%s'\00String field\00 contains invalid \00UTF-8 data whe" + "n \00 a protocol \00buffer. Use the 'bytes' type if you intend to se" + "nd raw \00bytes. \00google/protobuf/io/coded_stream.cc\00CHECK failed:" + " (buffer_size) >= (0): \00A protocol message was rejected because " + "it was too big (more than \00 bytes). To increase the limit (or t" + "o disable these warnings), see CodedInputStream::SetTotalBytesLi" + "mit() in google/protobuf/io/coded_stream.h.\00google/protobuf/io/z" + "ero_copy_stream_impl_lite.cc\00CHECK failed: (count) >= (0): \00CHEC" + "K failed: (last_returned_size_) > (0): \00BackUp() can only be cal" + "led after a successful Next().\00CHECK failed: (count) <= (last_re" + "turned_size_): \00N6google8protobuf2io17ArrayOutputStreamE\00CHECK f" + "ailed: target_ != NULL: \00CHECK failed: (count) <= (target_->size" + "()): \00Cannot allocate buffer larger than kint32max for \00StringOu" + "tputStream.\00N6google8protobuf2io18StringOutputStreamE\00google/pro" + "tobuf/io/zero_copy_stream.cc\00This ZeroCopyOutputStream doesn't s" + "upport aliasing. Reaching here usually means a ZeroCopyOutputStr" + "eam implementation bug.\00N6google8protobuf2io20ZeroCopyOutputStre" + "amE\00-+ 0X0x\00(null)\00-0X+0X 0X-0x+0x 0x\00inf\00INF\00nan\00NAN\00std::bad" + "_function_call\00NSt3__217bad_function_callE\00mutex lock failed\00ter" + "minating with %s exception of type %s: %s\00terminating with %s ex" + "ception of type %s\00terminating with %s foreign exception\00termina" + "ting\00uncaught\00St9exception\00N10__cxxabiv116__shim_type_infoE\00St9t" + "ype_info\00N10__cxxabiv120__si_class_type_infoE\00N10__cxxabiv117__c" + "lass_type_infoE\00terminate_handler unexpectedly returned\00_Z\00___Z\00" + "_block_invoke\00invocation function for block in \00void\00bool\00char\00s" + "igned char\00unsigned char\00short\00unsigned short\00int\00unsigned int\00l" + "ong\00unsigned long\00long long\00__int128\00unsigned __int128\00float\00lon" + "g double\00__float128\00...\00decimal64\00decimal128\00decimal32\00decimal16" + "\00char32_t\00char16_t\00auto\00decltype(auto)\00std::nullptr_t\00[abi:\00]\00N1" + "2_GLOBAL__N_116itanium_demangle10AbiTagAttrE\00N12_GLOBAL__N_116it" + "anium_demangle4NodeE\00allocator\00basic_string\00string\00istream\00ostre" + "am\00iostream\00std::allocator\00std::basic_string\00std::string\00std::is" + "tream\00std::ostream\00std::iostream\00N12_GLOBAL__N_116itanium_demang" + "le19SpecialSubstitutionE\00 imaginary\00N12_GLOBAL__N_116itanium_dem" + "angle20PostfixQualifiedTypeE\00 complex\00)\00 \00(\00&\00&&\00N12_GLOBAL__N_1" + "16itanium_demangle13ReferenceTypeE\00objc_object\00*\00id<\00>\00N12_GLOBA" + "L__N_116itanium_demangle11PointerTypeE\00N12_GLOBAL__N_116itanium_" + "demangle20NameWithTemplateArgsE\00<\00, \00N12_GLOBAL__N_116itanium_de" + "mangle12TemplateArgsE\00N12_GLOBAL__N_116itanium_demangle13Paramet" + "erPackE\00wchar_t\00b0E\00b1E\00u\00l\00ul\00ll\00ull\00N12_GLOBAL__N_116itanium_d" + "emangle15IntegerCastExprE\00%LaL\00N12_GLOBAL__N_116itanium_demangle" + "16FloatLiteralImplIeEE\00%a\00N12_GLOBAL__N_116itanium_demangle16Flo" + "atLiteralImplIdEE\00%af\00N12_GLOBAL__N_116itanium_demangle16FloatLi" + "teralImplIfEE\00true\00false\00N12_GLOBAL__N_116itanium_demangle8BoolE" + "xprE\00-\00N12_GLOBAL__N_116itanium_demangle14IntegerLiteralE\00N12_GL" + "OBAL__N_116itanium_demangle20TemplateArgumentPackE\00gs\00&=\00=\00align" + "of (\00,\00~\00.*\00/\00/=\00^\00^=\00==\00>=\00<=\00<<\00<<=\00-=\00*=\00--\00!=\00!\00||\00|\00|=\00->*\00" + "+\00+=\00++\00->\00%\00%=\00>>\00>>=\00sizeof (\00typeid (\00throw\00throw \00N12_GLOBAL" + "__N_116itanium_demangle9ThrowExprE\00N12_GLOBAL__N_116itanium_dema" + "ngle12InitListExprE\00N12_GLOBAL__N_116itanium_demangle13NodeArray" + "NodeE\00sizeof... (\00N12_GLOBAL__N_116itanium_demangle13EnclosingEx" + "prE\00sizeof...(\00N12_GLOBAL__N_116itanium_demangle22ParameterPackE" + "xpansionE\00N12_GLOBAL__N_116itanium_demangle19SizeofParamPackExpr" + "E\00static_cast\00>(\00N12_GLOBAL__N_116itanium_demangle8CastExprE\00rei" + "nterpret_cast\00) ? (\00) : (\00N12_GLOBAL__N_116itanium_demangle15Con" + "ditionalExprE\00noexcept (\00nw\00na\00pi\00::operator \00new\00[]\00N12_GLOBAL_" + "_N_116itanium_demangle7NewExprE\00N12_GLOBAL__N_116itanium_demangl" + "e11PostfixExprE\00 ... \00 = \00N12_GLOBAL__N_116itanium_demangle15Bra" + "cedRangeExprE\00N12_GLOBAL__N_116itanium_demangle10BracedExprE\00_GL" + "OBAL__N\00(anonymous namespace)\00N12_GLOBAL__N_116itanium_demangle8" + "NameTypeE\00)[\00N12_GLOBAL__N_116itanium_demangle18ArraySubscriptEx" + "prE\00.\00N12_GLOBAL__N_116itanium_demangle10MemberExprE\00srN\00sr\00::\00N" + "12_GLOBAL__N_116itanium_demangle19GlobalQualifiedNameE\00dn\00on\00ope" + "rator&&\00operator&\00operator&=\00operator=\00operator()\00operator,\00oper" + "ator~\00operator delete[]\00operator*\00operator/\00operator/=\00operator^" + "\00operator^=\00operator==\00operator>=\00operator>\00operator[]\00operator<" + "=\00operator<<\00operator<<=\00operator<\00operator-\00operator-=\00operator" + "*=\00operator--\00operator new[]\00operator!=\00operator!\00operator new\00o" + "perator||\00operator|\00operator|=\00operator->*\00operator+\00operator+=\00" + "operator++\00operator->\00operator?\00operator%\00operator%=\00operator>>\00" + "operator>>=\00operator<=>\00operator\"\" \00N12_GLOBAL__N_116itanium_dem" + "angle15LiteralOperatorE\00operator delete\00operator \00N12_GLOBAL__N_" + "116itanium_demangle22ConversionOperatorTypeE\00N12_GLOBAL__N_116it" + "anium_demangle8DtorNameE\00N12_GLOBAL__N_116itanium_demangle13Qual" + "ifiedNameE\00dynamic_cast\00delete\00[] \00N12_GLOBAL__N_116itanium_dema" + "ngle10DeleteExprE\00cv\00)(\00N12_GLOBAL__N_116itanium_demangle14Conve" + "rsionExprE\00N12_GLOBAL__N_116itanium_demangle8CallExprE\00const_cas" + "t\00N12_GLOBAL__N_116itanium_demangle10PrefixExprE\00) \00 (\00N12_GLOBA" + "L__N_116itanium_demangle10BinaryExprE\00aa\00an\00aN\00aS\00cm\00ds\00dv\00dV\00eo" + "\00eO\00eq\00ge\00gt\00le\00ls\00lS\00lt\00mi\00mI\00ml\00mL\00ne\00oo\00or\00oR\00pl\00pL\00rm\00rM\00rs\00" + "rS\00... \00 ...\00N12_GLOBAL__N_116itanium_demangle8FoldExprE\00fp\00fL\00N" + "12_GLOBAL__N_116itanium_demangle13FunctionParamE\00N12_GLOBAL__N_1" + "16itanium_demangle24ForwardTemplateReferenceE\00Ts\00struct\00Tu\00union" + "\00Te\00enum\00N12_GLOBAL__N_116itanium_demangle22ElaboratedTypeSpefTy" + "peE\00StL\00St\00std::\00N12_GLOBAL__N_116itanium_demangle16StdQualified" + "NameE\00DC\00N12_GLOBAL__N_116itanium_demangle21StructuredBindingNam" + "eE\00Ut\00Ul\00vE\00'lambda\00'(\00N12_GLOBAL__N_116itanium_demangle15Closur" + "eTypeNameE\00'unnamed\00'\00N12_GLOBAL__N_116itanium_demangle15Unnamed" + "TypeNameE\00string literal\00N12_GLOBAL__N_116itanium_demangle9Local" + "NameE\00std\00N12_GLOBAL__N_116itanium_demangle12CtorDtorNameE\00basic" + "_istream\00basic_ostream\00basic_iostream\00std::basic_string, std::allocator >\00std::basic_istream<" + "char, std::char_traits >\00std::basic_ostream >\00std::basic_iostream >\00N12_GLOBAL__N_116itanium_demangle27ExpandedSpecialSubstituti" + "onE\00N12_GLOBAL__N_116itanium_demangle10NestedNameE\00::*\00N12_GLOBA" + "L__N_116itanium_demangle19PointerToMemberTypeE\00[\00N12_GLOBAL__N_1" + "16itanium_demangle9ArrayTypeE\00Dv\00 vector[\00N12_GLOBAL__N_116itani" + "um_demangle10VectorTypeE\00pixel vector[\00N12_GLOBAL__N_116itanium_" + "demangle15PixelVectorTypeE\00decltype(\00double\00unsigned long long\00o" + "bjcproto\00 const\00 volatile\00 restrict\00N12_GLOBAL__N_116itanium_dem" + "angle8QualTypeE\00N12_GLOBAL__N_116itanium_demangle17VendorExtQual" + "TypeE\00N12_GLOBAL__N_116itanium_demangle13ObjCProtoNameE\00Do\00noexc" + "ept\00DO\00Dw\00Dx\00RE\00OE\00 &\00 &&\00N12_GLOBAL__N_116itanium_demangle12Fun" + "ctionTypeE\00throw(\00N12_GLOBAL__N_116itanium_demangle20DynamicExce" + "ptionSpecE\00noexcept(\00N12_GLOBAL__N_116itanium_demangle12Noexcept" + "SpecE\00N12_GLOBAL__N_116itanium_demangle11SpecialNameE\00N12_GLOBAL" + "__N_116itanium_demangle9DotSuffixE\00Ua9enable_ifI\00N12_GLOBAL__N_1" + "16itanium_demangle16FunctionEncodingE\00 [enable_if:\00N12_GLOBAL__N" + "_116itanium_demangle12EnableIfAttrE\00thread-local wrapper routine" + " for \00reference temporary for \00guard variable for \00non-virtual t" + "hunk to \00virtual thunk to \00thread-local initialization routine f" + "or \00construction vtable for \00-in-\00N12_GLOBAL__N_116itanium_deman" + "gle21CtorVtableSpecialNameE\00covariant return thunk to \00typeinfo " + "name for \00typeinfo for \00VTT for \00vtable for \00St11logic_error\00St1" + "2length_error\00N10__cxxabiv117__pbase_type_infoE\00N10__cxxabiv119_" + "_pointer_type_infoE\00N10__cxxabiv123__fundamental_type_infoE\00v\00c\00" + "h\00N10__cxxabiv121__vmi_class_type_infoE") (func $globalCtors (type $8) call $__GLOBAL__sub_I_http_callout_cpp_cc @@ -3452,7 +3452,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 12658 + i32.const 12660 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -3586,19 +3586,19 @@ i32.const 25 i32.store offset=4 local.get $1 - i32.const 13945 + i32.const 13947 i64.load align=1 i64.store align=1 local.get $1 - i32.const 13953 + i32.const 13955 i64.load align=1 i64.store offset=8 align=1 local.get $1 - i32.const 13961 + i32.const 13963 i64.load align=1 i64.store offset=16 align=1 local.get $1 - i32.const 13969 + i32.const 13971 i32.load8_s i32.store8 offset=24 local.get $1 @@ -3710,10 +3710,10 @@ local.get $1 call $__ZN6google8protobuf9ListValue9MergeFromERKS1_ else - i32.const 13511 - i32.const 13552 + i32.const 13513 + i32.const 13554 i32.const 92 - i32.const 13601 + i32.const 13603 call $___assert_fail end ;; $if ) @@ -4312,7 +4312,7 @@ i32.const 3 i32.store local.get $3 - i32.const 11538 + i32.const 11540 i32.store offset=4 local.get $3 i32.const 1505 @@ -4324,7 +4324,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 11590 + i32.const 11592 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -4354,7 +4354,7 @@ i32.const 3 i32.store local.get $2 - i32.const 11538 + i32.const 11540 i32.store offset=4 local.get $2 i32.const 1506 @@ -4366,7 +4366,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 11621 + i32.const 11623 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -5024,7 +5024,7 @@ i32.const 3 i32.store local.get $3 - i32.const 11663 + i32.const 11665 i32.store offset=4 local.get $3 i32.const 418 @@ -5036,7 +5036,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 11747 + i32.const 11749 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -5122,7 +5122,7 @@ i32.const 3 i32.store local.get $2 - i32.const 11663 + i32.const 11665 i32.store offset=4 local.get $2 i32.const 427 @@ -5134,7 +5134,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 11864 + i32.const 11866 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -5205,7 +5205,7 @@ i32.const 3 i32.store local.get $2 - i32.const 11663 + i32.const 11665 i32.store offset=4 local.get $2 i32.const 451 @@ -5217,7 +5217,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 11704 + i32.const 11706 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -5353,7 +5353,7 @@ i32.const 3 i32.store local.get $3 - i32.const 11663 + i32.const 11665 i32.store offset=4 local.get $3 i32.const 476 @@ -5365,7 +5365,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 11895 + i32.const 11897 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -6255,10 +6255,10 @@ local.get $1 call $__ZN6google8protobuf8internal12MapEntryImplINS0_27Struct_FieldsEntry_DoNotUseENS0_11MessageLiteENSt3__212basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEENS0_5ValueELNS1_14WireFormatLite9FieldTypeE9ELSE_11ELi0EE17MergeFromInternalERKSF_ else - i32.const 13511 - i32.const 13552 + i32.const 13513 + i32.const 13554 i32.const 92 - i32.const 13601 + i32.const 13603 call $___assert_fail end ;; $if ) @@ -7272,7 +7272,7 @@ i32.and end ;; $if_11 i32.const 0 - i32.const 11939 + i32.const 11941 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ br_if $loop i32.const 0 @@ -8012,7 +8012,7 @@ local.get $6 select i32.const 0 - i32.const 11974 + i32.const 11976 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ select br $block_4 @@ -9476,7 +9476,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 12013 + i32.const 12015 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -9809,7 +9809,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 12013 + i32.const 12015 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -10003,7 +10003,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 12013 + i32.const 12015 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -10099,7 +10099,7 @@ i32.const 3 i32.store local.get $2 - i32.const 11538 + i32.const 11540 i32.store offset=4 local.get $2 i32.const 1586 @@ -10111,7 +10111,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 12047 + i32.const 12049 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -10339,7 +10339,7 @@ i32.const 3 i32.store local.get $2 - i32.const 11663 + i32.const 11665 i32.store offset=4 local.get $2 i32.const 601 @@ -10351,7 +10351,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 12544 + i32.const 12546 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -10413,7 +10413,7 @@ i32.const 3 i32.store local.get $2 - i32.const 11663 + i32.const 11665 i32.store offset=4 local.get $2 i32.const 607 @@ -10425,7 +10425,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 12578 + i32.const 12580 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -10468,7 +10468,7 @@ i32.const 3 i32.store local.get $3 - i32.const 11663 + i32.const 11665 i32.store offset=4 local.get $3 i32.const 612 @@ -10480,7 +10480,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 12622 + i32.const 12624 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -11561,7 +11561,7 @@ i32.const 0 i32.store offset=20 local.get $1 - i32.const 12658 + i32.const 12660 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $1 @@ -11918,7 +11918,7 @@ i32.const 3 i32.store local.get $2 - i32.const 11663 + i32.const 11665 i32.store offset=4 local.get $2 i32.const 765 @@ -11930,7 +11930,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 13128 + i32.const 13130 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -12119,7 +12119,7 @@ i32.const 3 i32.store local.get $4 - i32.const 11663 + i32.const 11665 i32.store offset=4 local.get $4 i32.const 672 @@ -12131,7 +12131,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 12702 + i32.const 12704 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -12157,7 +12157,7 @@ i32.const 3 i32.store local.get $4 - i32.const 11663 + i32.const 11665 i32.store offset=4 local.get $4 i32.const 678 @@ -12169,7 +12169,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 12803 + i32.const 12805 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -12251,7 +12251,7 @@ i32.const 3 i32.store local.get $6 - i32.const 11663 + i32.const 11665 i32.store offset=4 local.get $6 i32.const 878 @@ -12263,7 +12263,7 @@ i32.const 0 i32.store offset=20 local.get $6 - i32.const 12859 + i32.const 12861 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $6 @@ -12295,7 +12295,7 @@ i32.const 3 i32.store local.get $5 - i32.const 11663 + i32.const 11665 i32.store offset=4 local.get $5 i32.const 685 @@ -12307,7 +12307,7 @@ i32.const 0 i32.store offset=20 local.get $5 - i32.const 12899 + i32.const 12901 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $5 @@ -12424,7 +12424,7 @@ i32.const 3 i32.store local.get $2 - i32.const 11663 + i32.const 11665 i32.store offset=4 local.get $2 i32.const 837 @@ -12436,7 +12436,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 13021 + i32.const 13023 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -12708,7 +12708,7 @@ i32.const 3 i32.store local.get $2 - i32.const 11663 + i32.const 11665 i32.store offset=4 local.get $2 i32.const 848 @@ -12720,7 +12720,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 13086 + i32.const 13088 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -12782,7 +12782,7 @@ i32.const 3 i32.store local.get $4 - i32.const 11663 + i32.const 11665 i32.store offset=4 local.get $4 i32.const 713 @@ -12794,7 +12794,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 12974 + i32.const 12976 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -14079,7 +14079,7 @@ i32.const 3 i32.store local.get $2 - i32.const 11663 + i32.const 11665 i32.store offset=4 local.get $2 i32.const 926 @@ -14091,7 +14091,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 13181 + i32.const 13183 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -14107,7 +14107,7 @@ i32.const 3 i32.store local.get $3 - i32.const 11663 + i32.const 11665 i32.store offset=4 local.get $3 i32.const 927 @@ -14119,7 +14119,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 13216 + i32.const 13218 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -14700,7 +14700,7 @@ i32.const 3 i32.store local.get $5 - i32.const 11663 + i32.const 11665 i32.store offset=4 local.get $5 i32.const 527 @@ -14712,7 +14712,7 @@ i32.const 0 i32.store offset=20 local.get $5 - i32.const 13253 + i32.const 13255 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $5 @@ -14988,7 +14988,7 @@ i32.const 0 i32.store offset=20 local.get $1 - i32.const 12658 + i32.const 12660 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $1 @@ -15070,19 +15070,19 @@ i32.const 22 i32.store offset=4 local.get $1 - i32.const 13611 + i32.const 13613 i64.load align=1 i64.store align=1 local.get $1 - i32.const 13619 + i32.const 13621 i64.load align=1 i64.store offset=8 align=1 local.get $1 - i32.const 13627 + i32.const 13629 i32.load align=1 i32.store offset=16 align=1 local.get $1 - i32.const 13631 + i32.const 13633 i32.load16_s align=1 i32.store16 offset=20 align=1 local.get $1 @@ -15160,10 +15160,10 @@ local.get $1 call $__ZN6google8protobuf6Struct9MergeFromERKS1_ else - i32.const 13511 - i32.const 13552 + i32.const 13513 + i32.const 13554 i32.const 92 - i32.const 13601 + i32.const 13603 call $___assert_fail end ;; $if ) @@ -15342,7 +15342,7 @@ local.get $2 local.get $4 i32.const 1 - i32.const 11974 + i32.const 11976 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ drop local.get $5 @@ -15550,7 +15550,7 @@ local.get $2 local.get $4 i32.const 1 - i32.const 11974 + i32.const 11976 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ drop local.get $8 @@ -18763,7 +18763,7 @@ i32.const 3 i32.store local.get $1 - i32.const 11538 + i32.const 11540 i32.store offset=4 local.get $1 i32.const 1567 @@ -18775,7 +18775,7 @@ i32.const 0 i32.store offset=20 local.get $1 - i32.const 13918 + i32.const 13920 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $1 @@ -18979,19 +18979,19 @@ i32.const 21 i32.store offset=4 local.get $1 - i32.const 14000 + i32.const 14002 i64.load align=1 i64.store align=1 local.get $1 - i32.const 14008 + i32.const 14010 i64.load align=1 i64.store offset=8 align=1 local.get $1 - i32.const 14016 + i32.const 14018 i32.load align=1 i32.store offset=16 align=1 local.get $1 - i32.const 14020 + i32.const 14022 i32.load8_s i32.store8 offset=20 local.get $1 @@ -19067,10 +19067,10 @@ local.get $1 call $__ZN6google8protobuf5Value9MergeFromERKS1_ else - i32.const 13511 - i32.const 13552 + i32.const 13513 + i32.const 13554 i32.const 92 - i32.const 13601 + i32.const 13603 call $___assert_fail end ;; $if ) @@ -19133,7 +19133,7 @@ local.get $2 local.get $3 i32.const 1 - i32.const 11939 + i32.const 11941 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ drop local.get $0 @@ -31083,7 +31083,7 @@ i32.store local.get $2 i32.const 128 - i32.const 14935 + i32.const 14937 local.get $3 call $_snprintf drop @@ -31120,7 +31120,7 @@ i32.store local.get $2 i32.const 128 - i32.const 14938 + i32.const 14940 local.get $3 call $_snprintf drop @@ -31408,7 +31408,7 @@ i32.const 3 i32.store local.get $3 - i32.const 14941 + i32.const 14943 i32.store offset=4 local.get $3 i32.const 116 @@ -31420,7 +31420,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 14966 + i32.const 14968 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -42284,7 +42284,7 @@ i32.const 3 i32.store local.get $11 - i32.const 15053 + i32.const 15055 i32.store offset=4 local.get $11 i32.const 571 @@ -42296,7 +42296,7 @@ i32.const 0 i32.store offset=20 local.get $11 - i32.const 15095 + i32.const 15097 call $__ZN6google8protobuf8internal10LogMessagelsEPKc local.get $4 call $__ZN6google8protobuf8internal10LogMessagelsEi @@ -42333,7 +42333,7 @@ i32.const 3 i32.store local.get $1 - i32.const 15053 + i32.const 15055 i32.store offset=4 local.get $1 i32.const 534 @@ -42345,12 +42345,12 @@ i32.const 0 i32.store offset=20 local.get $1 - i32.const 15095 + i32.const 15097 call $__ZN6google8protobuf8internal10LogMessagelsEPKc local.get $0 i32.load offset=4 call $__ZN6google8protobuf8internal10LogMessagelsEj - i32.const 15125 + i32.const 15127 call $__ZN6google8protobuf8internal10LogMessagelsEPKc local.get $0 i32.load offset=12 @@ -42410,7 +42410,7 @@ i32.const 3 i32.store local.get $0 - i32.const 15053 + i32.const 15055 i32.store offset=4 local.get $0 i32.const 801 @@ -42422,7 +42422,7 @@ i32.const 0 i32.store offset=20 local.get $0 - i32.const 15137 + i32.const 15139 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $0 @@ -42559,31 +42559,31 @@ i32.const 50 i32.store offset=4 local.get $1 - i32.const 15302 + i32.const 15304 i64.load align=1 i64.store align=1 local.get $1 - i32.const 15310 + i32.const 15312 i64.load align=1 i64.store offset=8 align=1 local.get $1 - i32.const 15318 + i32.const 15320 i64.load align=1 i64.store offset=16 align=1 local.get $1 - i32.const 15326 + i32.const 15328 i64.load align=1 i64.store offset=24 align=1 local.get $1 - i32.const 15334 + i32.const 15336 i64.load align=1 i64.store offset=32 align=1 local.get $1 - i32.const 15342 + i32.const 15344 i64.load align=1 i64.store offset=40 align=1 local.get $1 - i32.const 15350 + i32.const 15352 i32.load16_s align=1 i32.store16 offset=48 align=1 local.get $1 @@ -42720,7 +42720,7 @@ i32.const 3 i32.store local.get $4 - i32.const 15232 + i32.const 15234 i32.store offset=4 local.get $4 i32.const 373 @@ -42732,7 +42732,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 15264 + i32.const 15266 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -42815,7 +42815,7 @@ i32.const 3 i32.store local.get $3 - i32.const 15385 + i32.const 15387 i32.store offset=4 local.get $3 i32.const 59 @@ -42827,9 +42827,9 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 15419 + i32.const 15421 call $__ZN6google8protobuf8internal10LogMessagelsEPKc - i32.const 15536 + i32.const 15538 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -44512,7 +44512,7 @@ i32.const 3 i32.store local.get $4 - i32.const 15584 + i32.const 15586 i32.store offset=4 local.get $4 i32.const 507 @@ -44524,7 +44524,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 15620 + i32.const 15622 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -44724,7 +44724,7 @@ i32.const 3 i32.store local.get $4 - i32.const 15584 + i32.const 15586 i32.store offset=4 local.get $4 i32.const 516 @@ -44736,7 +44736,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 15620 + i32.const 15622 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -45415,13 +45415,13 @@ i32.load offset=8 i32.store offset=8 end ;; $if_0 - i32.const 15666 + i32.const 15668 i32.const 0 local.get $2 i32.const 1 i32.eq select - i32.const 15678 + i32.const 15680 local.get $2 select local.set $3 @@ -45433,7 +45433,7 @@ i32.const 2 i32.store local.get $1 - i32.const 15584 + i32.const 15586 i32.store offset=4 local.get $1 i32.const 626 @@ -45445,21 +45445,21 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 15692 + i32.const 15694 call $__ZN6google8protobuf8internal10LogMessagelsEPKc local.get $0 call $__ZN6google8protobuf8internal10LogMessagelsERKNSt3__212basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEE - i32.const 15705 + i32.const 15707 call $__ZN6google8protobuf8internal10LogMessagelsEPKc - i32.const 15724 + i32.const 15726 call $__ZN6google8protobuf8internal10LogMessagelsEPKc local.get $3 call $__ZN6google8protobuf8internal10LogMessagelsEPKc - i32.const 15741 + i32.const 15743 call $__ZN6google8protobuf8internal10LogMessagelsEPKc - i32.const 15754 + i32.const 15756 call $__ZN6google8protobuf8internal10LogMessagelsEPKc - i32.const 15810 + i32.const 15812 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -46229,7 +46229,7 @@ i32.const 3 i32.store local.get $2 - i32.const 15818 + i32.const 15820 i32.store offset=4 local.get $2 i32.const 591 @@ -46241,7 +46241,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 15853 + i32.const 15855 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -46384,7 +46384,7 @@ i32.const 2 i32.store local.get $1 - i32.const 15818 + i32.const 15820 i32.store offset=4 local.get $1 i32.const 190 @@ -46396,12 +46396,12 @@ i32.const 0 i32.store offset=20 local.get $1 - i32.const 15890 + i32.const 15892 call $__ZN6google8protobuf8internal10LogMessagelsEPKc local.get $0 i32.load offset=36 call $__ZN6google8protobuf8internal10LogMessagelsEi - i32.const 15957 + i32.const 15959 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $1 @@ -48863,7 +48863,7 @@ i32.const 3 i32.store local.get $2 - i32.const 16102 + i32.const 16104 i32.store offset=4 local.get $2 i32.const 132 @@ -48875,9 +48875,9 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 16182 + i32.const 16184 call $__ZN6google8protobuf8internal10LogMessagelsEPKc - i32.const 16226 + i32.const 16228 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -48898,7 +48898,7 @@ i32.const 3 i32.store local.get $2 - i32.const 16102 + i32.const 16104 i32.store offset=4 local.get $2 i32.const 134 @@ -48910,7 +48910,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 16281 + i32.const 16283 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -48937,7 +48937,7 @@ i32.const 3 i32.store local.get $3 - i32.const 16102 + i32.const 16104 i32.store offset=4 local.get $3 i32.const 135 @@ -48949,7 +48949,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 16151 + i32.const 16153 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -49005,7 +49005,7 @@ i32.const 3 i32.store local.get $3 - i32.const 16102 + i32.const 16104 i32.store offset=4 local.get $3 i32.const 151 @@ -49017,7 +49017,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 16371 + i32.const 16373 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -49091,7 +49091,7 @@ i32.const 2 i32.store local.get $5 - i32.const 16102 + i32.const 16104 i32.store offset=4 local.get $5 i32.const 164 @@ -49103,9 +49103,9 @@ i32.const 0 i32.store offset=20 local.get $5 - i32.const 16448 + i32.const 16450 call $__ZN6google8protobuf8internal10LogMessagelsEPKc - i32.const 16498 + i32.const 16500 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $5 @@ -49180,7 +49180,7 @@ i32.const 3 i32.store local.get $2 - i32.const 16102 + i32.const 16104 i32.store offset=4 local.get $2 i32.const 182 @@ -49192,7 +49192,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 16151 + i32.const 16153 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -49213,7 +49213,7 @@ i32.const 3 i32.store local.get $2 - i32.const 16102 + i32.const 16104 i32.store offset=4 local.get $2 i32.const 183 @@ -49225,7 +49225,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 16371 + i32.const 16373 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -49255,7 +49255,7 @@ i32.const 3 i32.store local.get $3 - i32.const 16102 + i32.const 16104 i32.store offset=4 local.get $3 i32.const 184 @@ -49267,7 +49267,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 16403 + i32.const 16405 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -49328,7 +49328,7 @@ i32.const 3 i32.store local.get $1 - i32.const 16102 + i32.const 16104 i32.store offset=4 local.get $1 i32.const 189 @@ -49340,7 +49340,7 @@ i32.const 0 i32.store offset=20 local.get $1 - i32.const 16371 + i32.const 16373 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $1 @@ -49395,7 +49395,7 @@ i32.add local.tee $3 i32.const 1024 - i32.const 15686 + i32.const 15688 local.get $2 call $_vsnprintf local.tee $4 @@ -49427,7 +49427,7 @@ i32.store local.get $3 local.get $5 - i32.const 15686 + i32.const 15688 local.get $2 call $_vsnprintf local.tee $1 @@ -49973,7 +49973,7 @@ i32.const 3 i32.store local.get $0 - i32.const 16560 + i32.const 16562 i32.store offset=4 local.get $0 i32.const 47 @@ -49985,7 +49985,7 @@ i32.const 0 i32.store offset=20 local.get $0 - i32.const 16599 + i32.const 16601 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $0 @@ -50954,13 +50954,13 @@ local.tee $1 i64.reinterpret_f64 local.set $25 - i32.const 16783 + i32.const 16785 local.set $18 i32.const 1 else + i32.const 16788 + i32.const 16791 i32.const 16786 - i32.const 16789 - i32.const 16784 local.get $4 i32.const 1 i32.and @@ -50983,8 +50983,8 @@ i64.const 9218868437227405312 i64.eq if $if_0 (result i32) - i32.const 16810 - i32.const 16814 + i32.const 16812 + i32.const 16816 local.get $5 i32.const 32 i32.and @@ -50992,8 +50992,8 @@ i32.ne local.tee $3 select - i32.const 16802 - i32.const 16806 + i32.const 16804 + i32.const 16808 local.get $3 select local.get $1 @@ -52341,7 +52341,7 @@ i32.eqz if $if_54 local.get $0 - i32.const 19582 + i32.const 19584 i32.const 1 call $_out end ;; $if_54 @@ -52500,7 +52500,7 @@ br $block_4 end ;; $if_61 local.get $0 - i32.const 19582 + i32.const 19584 i32.const 1 call $_out local.get $6 @@ -53590,7 +53590,7 @@ local.set $1 i32.const 0 local.set $12 - i32.const 16766 + i32.const 16768 local.set $8 br $block_14 end ;; $block_25 @@ -53606,13 +53606,13 @@ i64.sub local.tee $25 i64.store - i32.const 16766 + i32.const 16768 local.set $8 i32.const 1 else - i32.const 16767 + i32.const 16769 + i32.const 16770 i32.const 16768 - i32.const 16766 local.get $7 i32.const 1 i32.and @@ -53636,7 +53636,7 @@ local.set $25 i32.const 0 local.set $12 - i32.const 16766 + i32.const 16768 local.set $8 br $block_16 end ;; $block_23 @@ -53652,7 +53652,7 @@ local.set $5 i32.const 0 local.set $12 - i32.const 16766 + i32.const 16768 local.set $8 local.get $18 local.set $1 @@ -53661,7 +53661,7 @@ local.get $10 i32.load local.tee $5 - i32.const 16776 + i32.const 16778 local.get $5 select local.tee $6 @@ -53681,7 +53681,7 @@ local.set $5 i32.const 0 local.set $12 - i32.const 16766 + i32.const 16768 local.set $8 local.get $1 local.get $6 @@ -53742,7 +53742,7 @@ local.set $5 i32.const 0 local.set $12 - i32.const 16766 + i32.const 16768 local.set $8 local.get $18 local.set $1 @@ -53770,11 +53770,11 @@ local.tee $8 select local.set $12 - i32.const 16766 + i32.const 16768 local.get $6 i32.const 4 i32.shr_u - i32.const 16766 + i32.const 16768 i32.add local.get $8 select @@ -54959,7 +54959,7 @@ local.get $1 i32.store local.get $0 - i32.const 14815 + i32.const 14817 local.get $2 call $_vfprintf drop @@ -62151,7 +62151,7 @@ (func $__ZNKSt3__217bad_function_call4whatEv (type $1) (param $0 i32) (result i32) - i32.const 16818 + i32.const 16820 ) (func $__ZNSt3__212__next_primeEm (type $1) @@ -64088,7 +64088,7 @@ (param $0 i32) (local $1 i32) (local $2 i32) - i32.const 14867 + i32.const 14869 call $_strlen local.tee $2 i32.const 13 @@ -64107,7 +64107,7 @@ i32.const 12 i32.add local.tee $1 - i32.const 14867 + i32.const 14869 local.get $2 i32.const 1 i32.add @@ -65231,7 +65231,7 @@ local.set $0 end ;; $if_0 local.get $0 - i32.const 14036 + i32.const 14038 local.get $1 call $__ZNSt3__211char_traitsIcE4copyEPcPKcm local.get $3 @@ -65278,7 +65278,7 @@ end ;; $if end ;; $loop local.get $0 - i32.const 14036 + i32.const 14038 call $_strlen local.tee $2 local.get $2 @@ -65360,9 +65360,9 @@ i64.ne if $if_0 local.get $1 - i32.const 17023 + i32.const 17025 i32.store - i32.const 16973 + i32.const 16975 local.get $1 call $_abort_message end ;; $if_0 @@ -65427,7 +65427,7 @@ call_indirect $29 (type $1) local.set $0 local.get $4 - i32.const 17023 + i32.const 17025 i32.store local.get $4 local.get $1 @@ -65435,22 +65435,22 @@ local.get $4 local.get $0 i32.store offset=8 - i32.const 16887 + i32.const 16889 local.get $4 call $_abort_message else local.get $3 - i32.const 17023 + i32.const 17025 i32.store local.get $3 local.get $1 i32.store offset=4 - i32.const 16932 + i32.const 16934 local.get $3 call $_abort_message end ;; $if_3 end ;; $if - i32.const 17011 + i32.const 17013 local.get $2 i32.const 1056 i32.add @@ -66415,7 +66415,7 @@ local.get $3 i32.const 24 i32.add - i32.const 17202 + i32.const 17204 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $3 @@ -66489,7 +66489,7 @@ else block $block (result i32) local.get $2 - i32.const 17205 + i32.const 17207 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $2 @@ -66519,7 +66519,7 @@ local.get $2 if $if_4 (result i32) local.get $4 - i32.const 17210 + i32.const 17212 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $4 @@ -66580,7 +66580,7 @@ i32.const 0 else local.get $0 - i32.const 17224 + i32.const 17226 local.get $3 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_11SpecialNameEJRA34_KcRPNS0_4NodeEEEESC_DpOT0_ end ;; $if_9 @@ -66812,7 +66812,7 @@ i32.const 152 i32.add call_indirect $29 (type $8) - i32.const 17162 + i32.const 17164 local.get $1 call $_abort_message ) @@ -67049,7 +67049,7 @@ i32.const 0 i32.store local.get $5 - i32.const 22557 + i32.const 22559 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -67569,7 +67569,7 @@ i32.add i32.store local.get $0 - i32.const 17258 + i32.const 17260 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_35 @@ -67592,7 +67592,7 @@ i32.add i32.store local.get $0 - i32.const 17263 + i32.const 17265 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_33 @@ -67603,7 +67603,7 @@ i32.add i32.store local.get $0 - i32.const 17268 + i32.const 17270 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_32 @@ -67614,7 +67614,7 @@ i32.add i32.store local.get $0 - i32.const 17273 + i32.const 17275 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_31 @@ -67625,7 +67625,7 @@ i32.add i32.store local.get $0 - i32.const 17285 + i32.const 17287 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_30 @@ -67636,7 +67636,7 @@ i32.add i32.store local.get $0 - i32.const 17299 + i32.const 17301 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_29 @@ -67647,7 +67647,7 @@ i32.add i32.store local.get $0 - i32.const 17305 + i32.const 17307 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_28 @@ -67658,7 +67658,7 @@ i32.add i32.store local.get $0 - i32.const 17320 + i32.const 17322 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_27 @@ -67669,7 +67669,7 @@ i32.add i32.store local.get $0 - i32.const 17324 + i32.const 17326 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_26 @@ -67680,7 +67680,7 @@ i32.add i32.store local.get $0 - i32.const 17337 + i32.const 17339 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_25 @@ -67691,7 +67691,7 @@ i32.add i32.store local.get $0 - i32.const 17342 + i32.const 17344 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_24 @@ -67702,7 +67702,7 @@ i32.add i32.store local.get $0 - i32.const 17356 + i32.const 17358 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_23 @@ -67725,7 +67725,7 @@ i32.add i32.store local.get $0 - i32.const 17366 + i32.const 17368 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_21 @@ -67736,7 +67736,7 @@ i32.add i32.store local.get $0 - i32.const 17375 + i32.const 17377 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_20 @@ -67747,7 +67747,7 @@ i32.add i32.store local.get $0 - i32.const 17393 + i32.const 17395 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_19 @@ -67770,7 +67770,7 @@ i32.add i32.store local.get $0 - i32.const 17399 + i32.const 17401 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_17 @@ -67781,7 +67781,7 @@ i32.add i32.store local.get $0 - i32.const 17411 + i32.const 17413 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_16 @@ -67792,7 +67792,7 @@ i32.add i32.store local.get $0 - i32.const 17422 + i32.const 17424 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_15 @@ -67866,7 +67866,7 @@ i32.add i32.store local.get $0 - i32.const 17426 + i32.const 17428 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_53 @@ -67877,7 +67877,7 @@ i32.add i32.store local.get $0 - i32.const 17436 + i32.const 17438 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_52 @@ -67888,7 +67888,7 @@ i32.add i32.store local.get $0 - i32.const 17447 + i32.const 17449 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_51 @@ -67899,7 +67899,7 @@ i32.add i32.store local.get $0 - i32.const 17457 + i32.const 17459 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_50 @@ -67910,7 +67910,7 @@ i32.add i32.store local.get $0 - i32.const 17467 + i32.const 17469 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_49 @@ -67921,7 +67921,7 @@ i32.add i32.store local.get $0 - i32.const 17476 + i32.const 17478 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_48 @@ -67932,7 +67932,7 @@ i32.add i32.store local.get $0 - i32.const 17485 + i32.const 17487 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_47 @@ -67943,7 +67943,7 @@ i32.add i32.store local.get $0 - i32.const 17490 + i32.const 17492 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_46 @@ -67954,7 +67954,7 @@ i32.add i32.store local.get $0 - i32.const 17505 + i32.const 17507 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_45 @@ -68429,7 +68429,7 @@ i32.const 0 i32.store local.get $3 - i32.const 22258 + i32.const 22260 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $3 @@ -68443,14 +68443,14 @@ if $if (result i32) local.get $6 local.get $0 - i32.const 22261 + i32.const 22263 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ i32.store br $block_0 else block $block_1 (result i32) local.get $4 - i32.const 22270 + i32.const 22272 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $4 @@ -68487,7 +68487,7 @@ br $block_0 end ;; $if_0 local.get $5 - i32.const 22273 + i32.const 22275 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $5 @@ -68550,7 +68550,7 @@ br $block end ;; $block_0 local.get $8 - i32.const 22276 + i32.const 22278 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $8 @@ -68606,7 +68606,7 @@ i32.eqz if $if_4 local.get $9 - i32.const 22279 + i32.const 22281 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $9 @@ -68617,7 +68617,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE br_if $block_7 local.get $10 - i32.const 22282 + i32.const 22284 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $10 @@ -68729,7 +68729,7 @@ else block $block (result i32) local.get $5 - i32.const 22073 + i32.const 22075 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -69024,7 +69024,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfEc if $if_2 (result i32) local.get $0 - i32.const 22037 + i32.const 22039 local.get $1 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_13EnclosingExprEJRA10_KcRPNS0_4NodeERA2_S8_EEESC_DpOT0_ else @@ -69062,7 +69062,7 @@ local.get $1 i32.const 8 i32.add - i32.const 21912 + i32.const 21914 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -69451,7 +69451,7 @@ i32.const 24 i32.add local.tee $5 - i32.const 20968 + i32.const 20970 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -69462,12 +69462,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if local.get $1 - i32.const 20971 + i32.const 20973 call $__ZN12_GLOBAL__N_110StringViewC2EPKc else block $block local.get $3 - i32.const 20978 + i32.const 20980 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -69478,12 +69478,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_0 local.get $1 - i32.const 20981 + i32.const 20983 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $if_0 local.get $4 - i32.const 20987 + i32.const 20989 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -69494,7 +69494,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_1 local.get $1 - i32.const 20990 + i32.const 20992 call $__ZN12_GLOBAL__N_110StringViewC2EPKc end ;; $if_1 end ;; $block @@ -69587,7 +69587,7 @@ i32.load8_s offset=362 if $if_2 local.get $0 - i32.const 17485 + i32.const 17487 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $if_2 @@ -70610,7 +70610,7 @@ i32.add call_indirect $29 (type $4) local.get $4 - i32.const 17520 + i32.const 17522 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -70631,7 +70631,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $5 - i32.const 17526 + i32.const 17528 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -70843,7 +70843,7 @@ $block ;; default end ;; $block_5 local.get $4 - i32.const 17670 + i32.const 17672 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -70855,7 +70855,7 @@ br $block end ;; $block_4 local.get $5 - i32.const 17685 + i32.const 17687 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -70867,7 +70867,7 @@ br $block end ;; $block_3 local.get $6 - i32.const 17703 + i32.const 17705 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -70879,7 +70879,7 @@ br $block end ;; $block_2 local.get $7 - i32.const 17715 + i32.const 17717 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -70891,7 +70891,7 @@ br $block end ;; $block_1 local.get $8 - i32.const 17728 + i32.const 17730 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $8 @@ -70903,7 +70903,7 @@ br $block end ;; $block_0 local.get $3 - i32.const 17741 + i32.const 17743 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -70934,32 +70934,32 @@ $block ;; default end ;; $block_5 local.get $0 - i32.const 17615 + i32.const 17617 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_4 local.get $0 - i32.const 17625 + i32.const 17627 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_3 local.get $0 - i32.const 17638 + i32.const 17640 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_2 local.get $0 - i32.const 17645 + i32.const 17647 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_1 local.get $0 - i32.const 17653 + i32.const 17655 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_0 local.get $0 - i32.const 17661 + i32.const 17663 call $__ZN12_GLOBAL__N_110StringViewC2EPKc end ;; $block ) @@ -70988,7 +70988,7 @@ i32.load local.set $1 local.get $2 - i32.const 17811 + i32.const 17813 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -71104,7 +71104,7 @@ i32.load local.set $1 local.get $2 - i32.const 17879 + i32.const 17881 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -71245,7 +71245,7 @@ call $__ZNK12_GLOBAL__N_116itanium_demangle4Node8hasArrayERNS_12OutputStreamE if $if_0 local.get $7 - i32.const 17890 + i32.const 17892 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $7 @@ -71268,7 +71268,7 @@ br $block end ;; $block_0 local.get $8 - i32.const 17892 + i32.const 17894 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $8 @@ -71279,8 +71279,8 @@ call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE end ;; $block local.get $2 + i32.const 17898 i32.const 17896 - i32.const 17894 local.get $6 i32.load select @@ -71371,7 +71371,7 @@ br $block end ;; $block_0 local.get $2 - i32.const 17888 + i32.const 17890 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $5 local.get $2 @@ -71644,7 +71644,7 @@ i32.load offset=8 local.set $0 local.get $8 - i32.const 17963 + i32.const 17965 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $8 @@ -71665,7 +71665,7 @@ local.get $2 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $9 - i32.const 17967 + i32.const 17969 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $9 @@ -71698,7 +71698,7 @@ call $__ZNK12_GLOBAL__N_116itanium_demangle4Node8hasArrayERNS_12OutputStreamE if $if_0 local.get $5 - i32.const 17890 + i32.const 17892 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -71723,7 +71723,7 @@ br $block_1 end ;; $block_2 local.get $6 - i32.const 17892 + i32.const 17894 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -71734,7 +71734,7 @@ call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE end ;; $block_1 local.get $7 - i32.const 17961 + i32.const 17963 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -71798,7 +71798,7 @@ br $block_1 end ;; $block_2 local.get $3 - i32.const 17888 + i32.const 17890 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $4 local.get $3 @@ -71854,7 +71854,7 @@ i64.load offset=8 align=4 i64.store align=4 local.get $1 - i32.const 17949 + i32.const 17951 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -72496,7 +72496,7 @@ local.get $2 i32.const 16 i32.add - i32.const 18074 + i32.const 18076 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -72530,7 +72530,7 @@ i32.eq if $if_0 local.get $4 - i32.const 17890 + i32.const 17892 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -72541,7 +72541,7 @@ call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE end ;; $if_0 local.get $2 - i32.const 17967 + i32.const 17969 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -72588,7 +72588,7 @@ i32.eqz if $if_0 local.get $2 - i32.const 18076 + i32.const 18078 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $4 local.get $2 @@ -73340,7 +73340,7 @@ local.get $3 i32.const 328 i32.add - i32.const 18605 + i32.const 18607 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -73492,7 +73492,7 @@ i32.add i32.store local.get $6 - i32.const 17896 + i32.const 17898 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -73509,7 +73509,7 @@ i32.add i32.store local.get $7 - i32.const 17894 + i32.const 17896 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -73526,7 +73526,7 @@ i32.add i32.store local.get $8 - i32.const 17894 + i32.const 17896 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $8 @@ -73543,7 +73543,7 @@ i32.add i32.store local.get $9 - i32.const 18608 + i32.const 18610 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $9 @@ -73560,7 +73560,7 @@ i32.add i32.store local.get $10 - i32.const 18611 + i32.const 18613 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $10 @@ -73584,7 +73584,7 @@ local.get $1 if $if_2 (result i32) local.get $0 - i32.const 18613 + i32.const 18615 local.get $2 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_13EnclosingExprEJRA10_KcRPNS0_4NodeERA2_S8_EEESC_DpOT0_ else @@ -73605,7 +73605,7 @@ local.get $1 if $if_3 (result i32) local.get $0 - i32.const 18613 + i32.const 18615 local.get $2 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_13EnclosingExprEJRA10_KcRPNS0_4NodeERA2_S8_EEESC_DpOT0_ else @@ -73735,7 +73735,7 @@ i32.add i32.store local.get $11 - i32.const 18623 + i32.const 18625 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $11 @@ -73752,7 +73752,7 @@ i32.add i32.store local.get $12 - i32.const 18625 + i32.const 18627 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $12 @@ -73854,7 +73854,7 @@ i32.add i32.store local.get $13 - i32.const 17961 + i32.const 17963 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $13 @@ -73915,7 +73915,7 @@ if $if_12 (result i32) local.get $0 local.get $2 - i32.const 18627 + i32.const 18629 local.get $4 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_10MemberExprEJRPNS0_4NodeERA3_KcSA_EEES9_DpOT0_ else @@ -73965,7 +73965,7 @@ i32.add i32.store local.get $14 - i32.const 18630 + i32.const 18632 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $14 @@ -73982,7 +73982,7 @@ i32.add i32.store local.get $15 - i32.const 18632 + i32.const 18634 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $15 @@ -74016,7 +74016,7 @@ i32.add i32.store local.get $16 - i32.const 18635 + i32.const 18637 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $16 @@ -74033,7 +74033,7 @@ i32.add i32.store local.get $17 - i32.const 18637 + i32.const 18639 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $17 @@ -74050,7 +74050,7 @@ i32.add i32.store local.get $18 - i32.const 18640 + i32.const 18642 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $18 @@ -74081,7 +74081,7 @@ i32.add i32.store local.get $19 - i32.const 18643 + i32.const 18645 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $19 @@ -74098,7 +74098,7 @@ i32.add i32.store local.get $20 - i32.const 17967 + i32.const 17969 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $20 @@ -74238,7 +74238,7 @@ i32.add i32.store local.get $21 - i32.const 18646 + i32.const 18648 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $21 @@ -74255,7 +74255,7 @@ i32.add i32.store local.get $22 - i32.const 18649 + i32.const 18651 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $22 @@ -74272,7 +74272,7 @@ i32.add i32.store local.get $23 - i32.const 18652 + i32.const 18654 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $23 @@ -74289,7 +74289,7 @@ i32.add i32.store local.get $24 - i32.const 18074 + i32.const 18076 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $24 @@ -74325,7 +74325,7 @@ i32.add i32.store local.get $25 - i32.const 18495 + i32.const 18497 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $25 @@ -74342,7 +74342,7 @@ i32.add i32.store local.get $26 - i32.const 18656 + i32.const 18658 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $26 @@ -74359,7 +74359,7 @@ i32.add i32.store local.get $27 - i32.const 17961 + i32.const 17963 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $27 @@ -74376,7 +74376,7 @@ i32.add i32.store local.get $28 - i32.const 18659 + i32.const 18661 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $28 @@ -74397,7 +74397,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfEc if $if_17 local.get $29 - i32.const 18662 + i32.const 18664 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $29 @@ -74417,7 +74417,7 @@ if $if_18 (result i32) local.get $0 local.get $2 - i32.const 18662 + i32.const 18664 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_11PostfixExprEJRPNS0_4NodeERA3_KcEEES9_DpOT0_ else i32.const 0 @@ -74452,7 +74452,7 @@ i32.add i32.store local.get $30 - i32.const 18665 + i32.const 18667 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $30 @@ -74469,7 +74469,7 @@ i32.add i32.store local.get $31 - i32.const 18495 + i32.const 18497 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $31 @@ -74486,7 +74486,7 @@ i32.add i32.store local.get $32 - i32.const 18668 + i32.const 18670 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $32 @@ -74547,7 +74547,7 @@ i32.add i32.store local.get $33 - i32.const 18670 + i32.const 18672 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $33 @@ -74564,7 +74564,7 @@ i32.add i32.store local.get $34 - i32.const 18673 + i32.const 18675 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $34 @@ -74581,7 +74581,7 @@ i32.add i32.store local.get $35 - i32.const 18675 + i32.const 18677 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $35 @@ -74618,7 +74618,7 @@ i32.add i32.store local.get $36 - i32.const 18678 + i32.const 18680 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $36 @@ -74635,7 +74635,7 @@ i32.add i32.store local.get $37 - i32.const 18682 + i32.const 18684 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $37 @@ -74652,7 +74652,7 @@ i32.add i32.store local.get $38 - i32.const 18684 + i32.const 18686 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $38 @@ -74673,7 +74673,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfEc if $if_20 local.get $39 - i32.const 18687 + i32.const 18689 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $39 @@ -74693,7 +74693,7 @@ if $if_21 (result i32) local.get $0 local.get $2 - i32.const 18687 + i32.const 18689 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_11PostfixExprEJRPNS0_4NodeERA3_KcEEES9_DpOT0_ else i32.const 0 @@ -74706,7 +74706,7 @@ i32.add i32.store local.get $40 - i32.const 18682 + i32.const 18684 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $40 @@ -74738,7 +74738,7 @@ if $if_23 (result i32) local.get $0 local.get $2 - i32.const 18690 + i32.const 18692 local.get $4 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_10MemberExprEJRPNS0_4NodeERA3_KcSA_EEES9_DpOT0_ else @@ -74865,7 +74865,7 @@ i32.add i32.store local.get $41 - i32.const 18693 + i32.const 18695 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $41 @@ -74882,7 +74882,7 @@ i32.add i32.store local.get $42 - i32.const 18695 + i32.const 18697 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $42 @@ -74899,7 +74899,7 @@ i32.add i32.store local.get $43 - i32.const 18698 + i32.const 18700 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $43 @@ -74916,7 +74916,7 @@ i32.add i32.store local.get $44 - i32.const 18701 + i32.const 18703 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $44 @@ -75018,7 +75018,7 @@ local.get $1 if $if_32 (result i32) local.get $0 - i32.const 18705 + i32.const 18707 local.get $2 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_13EnclosingExprEJRA10_KcRPNS0_4NodeERA2_S8_EEESC_DpOT0_ else @@ -75039,7 +75039,7 @@ local.get $1 if $if_33 (result i32) local.get $0 - i32.const 18705 + i32.const 18707 local.get $2 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_13EnclosingExprEJRA10_KcRPNS0_4NodeERA2_S8_EEESC_DpOT0_ else @@ -75203,7 +75203,7 @@ local.get $1 if $if_37 (result i32) local.get $0 - i32.const 18714 + i32.const 18716 local.get $2 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_13EnclosingExprEJRA10_KcRPNS0_4NodeERA2_S8_EEESC_DpOT0_ else @@ -75224,7 +75224,7 @@ local.get $1 if $if_38 (result i32) local.get $0 - i32.const 18714 + i32.const 18716 local.get $2 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_13EnclosingExprEJRA10_KcRPNS0_4NodeERA2_S8_EEESC_DpOT0_ else @@ -75303,7 +75303,7 @@ i32.add i32.store local.get $0 - i32.const 18723 + i32.const 18725 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_111 @@ -75508,7 +75508,7 @@ i32.add i32.store local.get $3 - i32.const 18178 + i32.const 18180 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $3 @@ -75520,7 +75520,7 @@ br $block end ;; $block_18 local.get $4 - i32.const 18186 + i32.const 18188 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $4 @@ -75539,7 +75539,7 @@ br $block end ;; $if_1 local.get $5 - i32.const 18190 + i32.const 18192 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $5 @@ -75567,7 +75567,7 @@ i32.add i32.store local.get $6 - i32.const 17268 + i32.const 17270 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $6 @@ -75585,7 +75585,7 @@ i32.add i32.store local.get $7 - i32.const 17273 + i32.const 17275 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $7 @@ -75603,7 +75603,7 @@ i32.add i32.store local.get $8 - i32.const 17285 + i32.const 17287 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $8 @@ -75621,7 +75621,7 @@ i32.add i32.store local.get $9 - i32.const 17299 + i32.const 17301 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $9 @@ -75639,7 +75639,7 @@ i32.add i32.store local.get $10 - i32.const 17305 + i32.const 17307 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $10 @@ -75675,7 +75675,7 @@ i32.add i32.store local.get $12 - i32.const 18194 + i32.const 18196 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $12 @@ -75693,7 +75693,7 @@ i32.add i32.store local.get $13 - i32.const 18196 + i32.const 18198 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $13 @@ -75711,7 +75711,7 @@ i32.add i32.store local.get $14 - i32.const 18198 + i32.const 18200 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $14 @@ -75729,7 +75729,7 @@ i32.add i32.store local.get $15 - i32.const 18201 + i32.const 18203 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $15 @@ -75747,7 +75747,7 @@ i32.add i32.store local.get $16 - i32.const 18204 + i32.const 18206 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $16 @@ -75765,7 +75765,7 @@ i32.add i32.store local.get $17 - i32.const 17366 + i32.const 17368 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $17 @@ -75783,7 +75783,7 @@ i32.add i32.store local.get $18 - i32.const 17375 + i32.const 17377 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $18 @@ -75825,7 +75825,7 @@ br $block end ;; $block_1 local.get $19 - i32.const 17202 + i32.const 17204 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $19 @@ -76369,7 +76369,7 @@ i32.const 16 i32.add local.tee $5 - i32.const 17892 + i32.const 17894 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -76383,7 +76383,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 17888 + i32.const 17890 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -76610,7 +76610,7 @@ f64.store local.get $2 i32.const 40 - i32.const 18260 + i32.const 18262 local.get $5 call $_snprintf local.get $2 @@ -76832,7 +76832,7 @@ f64.store local.get $2 i32.const 32 - i32.const 18321 + i32.const 18323 local.get $4 call $_snprintf local.get $2 @@ -77052,7 +77052,7 @@ f64.store local.get $2 i32.const 24 - i32.const 18380 + i32.const 18382 local.get $4 call $_snprintf local.get $2 @@ -77118,11 +77118,11 @@ i32.load8_s offset=8 if $if local.get $2 - i32.const 18440 + i32.const 18442 call $__ZN12_GLOBAL__N_110StringViewC2EPKc else local.get $2 - i32.const 18445 + i32.const 18447 call $__ZN12_GLOBAL__N_110StringViewC2EPKc end ;; $if local.get $2 @@ -77257,7 +77257,7 @@ i32.gt_u if $if local.get $4 - i32.const 17892 + i32.const 17894 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -77278,7 +77278,7 @@ local.get $2 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $5 - i32.const 17888 + i32.const 17890 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -77306,7 +77306,7 @@ i32.eq if $if_0 local.get $4 - i32.const 18495 + i32.const 18497 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -77469,7 +77469,7 @@ local.get $2 i32.const 8 i32.add - i32.const 20851 + i32.const 20853 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $2 @@ -77498,7 +77498,7 @@ end ;; $if_0 else local.get $2 - i32.const 20854 + i32.const 20856 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $2 @@ -77796,7 +77796,7 @@ i32.const 0 i32.store offset=4 local.get $3 - i32.const 20704 + i32.const 20706 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $3 @@ -77809,13 +77809,13 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_1 local.get $1 - i32.const 17896 + i32.const 17898 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 else block $block_5 local.get $4 - i32.const 20707 + i32.const 20709 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $4 @@ -77826,12 +77826,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_2 local.get $1 - i32.const 17894 + i32.const 17896 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_2 local.get $8 - i32.const 20710 + i32.const 20712 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $8 @@ -77842,12 +77842,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_3 local.get $1 - i32.const 18608 + i32.const 18610 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_3 local.get $9 - i32.const 20713 + i32.const 20715 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $9 @@ -77858,12 +77858,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_4 local.get $1 - i32.const 18611 + i32.const 18613 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_4 local.get $10 - i32.const 20716 + i32.const 20718 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $10 @@ -77874,12 +77874,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_5 local.get $1 - i32.const 18623 + i32.const 18625 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_5 local.get $11 - i32.const 20719 + i32.const 20721 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $11 @@ -77890,12 +77890,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_6 local.get $1 - i32.const 18627 + i32.const 18629 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_6 local.get $12 - i32.const 20722 + i32.const 20724 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $12 @@ -77906,12 +77906,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_7 local.get $1 - i32.const 18630 + i32.const 18632 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_7 local.get $13 - i32.const 20725 + i32.const 20727 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $13 @@ -77922,12 +77922,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_8 local.get $1 - i32.const 18632 + i32.const 18634 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_8 local.get $14 - i32.const 20728 + i32.const 20730 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $14 @@ -77938,12 +77938,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_9 local.get $1 - i32.const 18635 + i32.const 18637 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_9 local.get $15 - i32.const 20731 + i32.const 20733 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $15 @@ -77954,12 +77954,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_10 local.get $1 - i32.const 18637 + i32.const 18639 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_10 local.get $16 - i32.const 20734 + i32.const 20736 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $16 @@ -77970,12 +77970,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_11 local.get $1 - i32.const 18640 + i32.const 18642 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_11 local.get $17 - i32.const 20737 + i32.const 20739 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $17 @@ -77986,12 +77986,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_12 local.get $1 - i32.const 18643 + i32.const 18645 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_12 local.get $18 - i32.const 20740 + i32.const 20742 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $18 @@ -78002,12 +78002,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_13 local.get $1 - i32.const 17967 + i32.const 17969 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_13 local.get $19 - i32.const 20743 + i32.const 20745 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $19 @@ -78018,12 +78018,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_14 local.get $1 - i32.const 18646 + i32.const 18648 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_14 local.get $20 - i32.const 20746 + i32.const 20748 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $20 @@ -78034,12 +78034,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_15 local.get $1 - i32.const 18649 + i32.const 18651 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_15 local.get $21 - i32.const 20749 + i32.const 20751 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $21 @@ -78050,12 +78050,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_16 local.get $1 - i32.const 18652 + i32.const 18654 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_16 local.get $22 - i32.const 20752 + i32.const 20754 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $22 @@ -78066,12 +78066,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_17 local.get $1 - i32.const 18074 + i32.const 18076 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_17 local.get $23 - i32.const 20755 + i32.const 20757 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $23 @@ -78082,12 +78082,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_18 local.get $1 - i32.const 18495 + i32.const 18497 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_18 local.get $24 - i32.const 20758 + i32.const 20760 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $24 @@ -78098,12 +78098,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_19 local.get $1 - i32.const 18656 + i32.const 18658 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_19 local.get $25 - i32.const 20761 + i32.const 20763 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $25 @@ -78114,12 +78114,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_20 local.get $1 - i32.const 17961 + i32.const 17963 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_20 local.get $26 - i32.const 20764 + i32.const 20766 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $26 @@ -78130,12 +78130,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_21 local.get $1 - i32.const 18659 + i32.const 18661 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_21 local.get $27 - i32.const 20767 + i32.const 20769 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $27 @@ -78146,12 +78146,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_22 local.get $1 - i32.const 18665 + i32.const 18667 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_22 local.get $28 - i32.const 20770 + i32.const 20772 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $28 @@ -78162,12 +78162,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_23 local.get $1 - i32.const 18670 + i32.const 18672 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_23 local.get $29 - i32.const 20773 + i32.const 20775 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $29 @@ -78178,12 +78178,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_24 local.get $1 - i32.const 18673 + i32.const 18675 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_24 local.get $30 - i32.const 20776 + i32.const 20778 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $30 @@ -78194,12 +78194,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_25 local.get $1 - i32.const 18675 + i32.const 18677 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_25 local.get $31 - i32.const 20779 + i32.const 20781 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $31 @@ -78210,12 +78210,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_26 local.get $1 - i32.const 18682 + i32.const 18684 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_26 local.get $32 - i32.const 20782 + i32.const 20784 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $32 @@ -78226,12 +78226,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_27 local.get $1 - i32.const 18684 + i32.const 18686 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_27 local.get $33 - i32.const 20785 + i32.const 20787 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $33 @@ -78242,12 +78242,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_28 local.get $1 - i32.const 18693 + i32.const 18695 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_28 local.get $34 - i32.const 20788 + i32.const 20790 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $34 @@ -78258,12 +78258,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_29 local.get $1 - i32.const 18695 + i32.const 18697 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_29 local.get $35 - i32.const 20791 + i32.const 20793 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $35 @@ -78274,12 +78274,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_30 local.get $1 - i32.const 18698 + i32.const 18700 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_30 local.get $36 - i32.const 20794 + i32.const 20796 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $36 @@ -78295,7 +78295,7 @@ br $block_5 end ;; $if_31 local.get $1 - i32.const 18701 + i32.const 18703 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $block_5 @@ -78496,7 +78496,7 @@ local.get $2 i32.const 16 i32.add - i32.const 20492 + i32.const 20494 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -78674,7 +78674,7 @@ local.get $4 i32.const 24 i32.add - i32.const 19631 + i32.const 19633 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -78781,7 +78781,7 @@ end ;; $if_0 else local.get $1 - i32.const 18605 + i32.const 18607 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -78792,7 +78792,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE local.set $5 local.get $4 - i32.const 19635 + i32.const 19637 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -79256,7 +79256,7 @@ local.get $2 i32.const 40 i32.add - i32.const 18605 + i32.const 18607 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $2 @@ -79290,7 +79290,7 @@ i32.eq i32.store8 local.get $4 - i32.const 19219 + i32.const 19221 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $4 @@ -79303,7 +79303,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE br_if $block_0 local.get $3 - i32.const 19222 + i32.const 19224 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $3 @@ -79368,7 +79368,7 @@ if $if_1 (result i32) block $block_3 (result i32) local.get $5 - i32.const 19225 + i32.const 19227 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $5 @@ -79523,7 +79523,7 @@ i32.add local.set $3 local.get $2 - i32.const 18729 + i32.const 18731 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -79718,13 +79718,13 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $5 - i32.const 18880 + i32.const 18882 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load local.set $1 local.get $2 - i32.const 17888 + i32.const 17890 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $4 local.get $5 @@ -79886,7 +79886,7 @@ i32.const 24 i32.add local.tee $5 - i32.const 18942 + i32.const 18944 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -79903,7 +79903,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle22ParameterPackExpansion9printLeftERNS_12OutputStreamE local.get $2 - i32.const 17888 + i32.const 17890 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -80025,7 +80025,7 @@ $block_0 ;; default end ;; $block_2 local.get $8 - i32.const 17422 + i32.const 17424 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $5 local.get $8 @@ -80049,7 +80049,7 @@ i32.ge_u br_if $block local.get $2 - i32.const 18076 + i32.const 18078 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $5 local.get $2 @@ -80134,7 +80134,7 @@ i32.load local.set $1 local.get $3 - i32.const 17888 + i32.const 17890 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $5 local.get $6 @@ -80176,7 +80176,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $3 - i32.const 19068 + i32.const 19070 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -80275,7 +80275,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $4 - i32.const 18074 + i32.const 18076 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -80299,7 +80299,7 @@ i32.add call_indirect $29 (type $4) local.get $5 - i32.const 19080 + i32.const 19082 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -80323,7 +80323,7 @@ i32.add call_indirect $29 (type $4) local.get $6 - i32.const 17888 + i32.const 17890 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $6 @@ -80358,7 +80358,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $3 - i32.const 19127 + i32.const 19129 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -80444,7 +80444,7 @@ i32.const 24 i32.add local.tee $6 - i32.const 17892 + i32.const 17894 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -80458,7 +80458,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 19144 + i32.const 19146 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -80472,7 +80472,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $5 - i32.const 19150 + i32.const 19152 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -80486,7 +80486,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $3 - i32.const 17888 + i32.const 17890 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -80530,13 +80530,13 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $5 - i32.const 19208 + i32.const 19210 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load local.set $1 local.get $2 - i32.const 17888 + i32.const 17890 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $4 local.get $5 @@ -80701,7 +80701,7 @@ i32.load8_s offset=28 if $if local.get $4 - i32.const 19228 + i32.const 19230 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -80730,7 +80730,7 @@ local.get $3 i32.const 40 i32.add - i32.const 19240 + i32.const 19242 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -80743,7 +80743,7 @@ i32.load8_s offset=29 if $if_0 local.get $4 - i32.const 19244 + i32.const 19246 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -80763,7 +80763,7 @@ i32.load offset=4 if $if_1 local.get $5 - i32.const 17892 + i32.const 17894 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -80776,7 +80776,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle9NodeArray14printWithCommaERNS_12OutputStreamE local.get $6 - i32.const 17888 + i32.const 17890 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -80797,7 +80797,7 @@ i32.load offset=4 if $if_2 local.get $7 - i32.const 17892 + i32.const 17894 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -80810,7 +80810,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle9NodeArray14printWithCommaERNS_12OutputStreamE local.get $3 - i32.const 17888 + i32.const 17890 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -80995,7 +80995,7 @@ i32.add i32.store local.get $1 - i32.const 19447 + i32.const 19449 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $4 local.get $1 @@ -81110,7 +81110,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 19338 + i32.const 19340 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -81142,7 +81142,7 @@ i32.ge_s if $if (result i32) local.get $2 - i32.const 19344 + i32.const 19346 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -81252,7 +81252,7 @@ i32.ge_s if $if_0 (result i32) local.get $2 - i32.const 19344 + i32.const 19346 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -81455,7 +81455,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $1 - i32.const 19458 + i32.const 19460 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -81588,7 +81588,7 @@ i32.const 16 i32.add local.tee $5 - i32.const 17892 + i32.const 17894 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -81602,7 +81602,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 19524 + i32.const 19526 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -81616,7 +81616,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $2 - i32.const 17526 + i32.const 17528 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -81654,7 +81654,7 @@ i32.load local.set $1 local.get $3 - i32.const 19582 + i32.const 19584 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 i32.load @@ -82018,7 +82018,7 @@ else block $block (result i32) local.get $1 - i32.const 19697 + i32.const 19699 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $1 @@ -82033,7 +82033,7 @@ br $block end ;; $if_1 local.get $4 - i32.const 19700 + i32.const 19702 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -82157,7 +82157,7 @@ i32.add local.set $3 local.get $2 - i32.const 19638 + i32.const 19640 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -82337,7 +82337,7 @@ i32.add i32.store local.get $0 - i32.const 19703 + i32.const 19705 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82349,7 +82349,7 @@ i32.add i32.store local.get $0 - i32.const 19714 + i32.const 19716 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82361,7 +82361,7 @@ i32.add i32.store local.get $0 - i32.const 19724 + i32.const 19726 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82373,7 +82373,7 @@ i32.add i32.store local.get $0 - i32.const 19735 + i32.const 19737 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82418,7 +82418,7 @@ i32.add i32.store local.get $0 - i32.const 19745 + i32.const 19747 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82430,7 +82430,7 @@ i32.add i32.store local.get $0 - i32.const 19756 + i32.const 19758 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82442,7 +82442,7 @@ i32.add i32.store local.get $0 - i32.const 19766 + i32.const 19768 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82577,7 +82577,7 @@ i32.add i32.store local.get $0 - i32.const 19776 + i32.const 19778 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82589,7 +82589,7 @@ i32.add i32.store local.get $0 - i32.const 19794 + i32.const 19796 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82614,7 +82614,7 @@ i32.add i32.store local.get $0 - i32.const 19804 + i32.const 19806 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82626,7 +82626,7 @@ i32.add i32.store local.get $0 - i32.const 19814 + i32.const 19816 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82672,7 +82672,7 @@ i32.add i32.store local.get $0 - i32.const 19825 + i32.const 19827 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82684,7 +82684,7 @@ i32.add i32.store local.get $0 - i32.const 19835 + i32.const 19837 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82696,7 +82696,7 @@ i32.add i32.store local.get $0 - i32.const 19846 + i32.const 19848 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82739,7 +82739,7 @@ i32.add i32.store local.get $0 - i32.const 19857 + i32.const 19859 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82751,7 +82751,7 @@ i32.add i32.store local.get $0 - i32.const 19868 + i32.const 19870 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82786,7 +82786,7 @@ i32.add i32.store local.get $0 - i32.const 19878 + i32.const 19880 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ else i32.const 0 @@ -82833,7 +82833,7 @@ i32.add i32.store local.get $0 - i32.const 19889 + i32.const 19891 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82869,7 +82869,7 @@ i32.add i32.store local.get $0 - i32.const 19900 + i32.const 19902 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82881,7 +82881,7 @@ i32.add i32.store local.get $0 - i32.const 19911 + i32.const 19913 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82893,7 +82893,7 @@ i32.add i32.store local.get $0 - i32.const 19923 + i32.const 19925 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82941,7 +82941,7 @@ i32.add i32.store local.get $0 - i32.const 19933 + i32.const 19935 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82953,7 +82953,7 @@ i32.add i32.store local.get $0 - i32.const 19943 + i32.const 19945 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82965,7 +82965,7 @@ i32.add i32.store local.get $0 - i32.const 19794 + i32.const 19796 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82977,7 +82977,7 @@ i32.add i32.store local.get $0 - i32.const 19954 + i32.const 19956 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82989,7 +82989,7 @@ i32.add i32.store local.get $0 - i32.const 19965 + i32.const 19967 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83036,7 +83036,7 @@ i32.add i32.store local.get $0 - i32.const 19976 + i32.const 19978 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83048,7 +83048,7 @@ i32.add i32.store local.get $0 - i32.const 19991 + i32.const 19993 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83060,7 +83060,7 @@ i32.add i32.store local.get $0 - i32.const 19933 + i32.const 19935 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83072,7 +83072,7 @@ i32.add i32.store local.get $0 - i32.const 20002 + i32.const 20004 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83084,7 +83084,7 @@ i32.add i32.store local.get $0 - i32.const 20012 + i32.const 20014 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83130,7 +83130,7 @@ i32.add i32.store local.get $0 - i32.const 20025 + i32.const 20027 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83142,7 +83142,7 @@ i32.add i32.store local.get $0 - i32.const 20036 + i32.const 20038 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83154,7 +83154,7 @@ i32.add i32.store local.get $0 - i32.const 20046 + i32.const 20048 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83203,7 +83203,7 @@ i32.add i32.store local.get $0 - i32.const 20057 + i32.const 20059 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83215,7 +83215,7 @@ i32.add i32.store local.get $0 - i32.const 20069 + i32.const 20071 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83227,7 +83227,7 @@ i32.add i32.store local.get $0 - i32.const 20079 + i32.const 20081 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83239,7 +83239,7 @@ i32.add i32.store local.get $0 - i32.const 20090 + i32.const 20092 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83251,7 +83251,7 @@ i32.add i32.store local.get $0 - i32.const 20069 + i32.const 20071 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83263,7 +83263,7 @@ i32.add i32.store local.get $0 - i32.const 20101 + i32.const 20103 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83298,7 +83298,7 @@ i32.add i32.store local.get $0 - i32.const 20112 + i32.const 20114 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ else i32.const 0 @@ -83344,7 +83344,7 @@ i32.add i32.store local.get $0 - i32.const 20122 + i32.const 20124 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83356,7 +83356,7 @@ i32.add i32.store local.get $0 - i32.const 20132 + i32.const 20134 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83368,7 +83368,7 @@ i32.add i32.store local.get $0 - i32.const 20143 + i32.const 20145 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83380,7 +83380,7 @@ i32.add i32.store local.get $0 - i32.const 20154 + i32.const 20156 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -83415,7 +83415,7 @@ i32.add i32.store local.get $0 - i32.const 20166 + i32.const 20168 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ else i32.const 0 @@ -83548,7 +83548,7 @@ i32.add local.set $3 local.get $2 - i32.const 20178 + i32.const 20180 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -83585,7 +83585,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $1 - i32.const 20242 + i32.const 20244 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -83641,7 +83641,7 @@ i32.add local.set $3 local.get $2 - i32.const 20258 + i32.const 20260 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -83711,7 +83711,7 @@ i32.add local.set $3 local.get $2 - i32.const 18625 + i32.const 18627 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -83788,7 +83788,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $2 - i32.const 19638 + i32.const 19640 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -83847,7 +83847,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $3 - i32.const 20421 + i32.const 20423 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -83955,7 +83955,7 @@ i32.load8_s offset=12 if $if local.get $4 - i32.const 19638 + i32.const 19640 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -83969,7 +83969,7 @@ i32.const 8 i32.add local.tee $4 - i32.const 20434 + i32.const 20436 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -83982,7 +83982,7 @@ i32.load8_s offset=13 if $if_0 local.get $2 - i32.const 20441 + i32.const 20443 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -84097,7 +84097,7 @@ i32.const 16 i32.add local.tee $5 - i32.const 17892 + i32.const 17894 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -84111,7 +84111,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 20495 + i32.const 20497 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -84126,7 +84126,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle9NodeArray14printWithCommaERNS_12OutputStreamE local.get $2 - i32.const 17888 + i32.const 17890 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -84236,7 +84236,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 17892 + i32.const 17894 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -84251,7 +84251,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle9NodeArray14printWithCommaERNS_12OutputStreamE local.get $2 - i32.const 17888 + i32.const 17890 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -84286,7 +84286,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $3 - i32.const 20593 + i32.const 20595 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -84416,7 +84416,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $4 - i32.const 17892 + i32.const 17894 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -84430,7 +84430,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $5 - i32.const 17888 + i32.const 17890 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -84574,14 +84574,14 @@ i32.const 56 i32.add local.tee $2 - i32.const 17967 + i32.const 17969 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $4 local.get $2 call $__ZN12_GLOBAL__N_1eqERKNS_10StringViewES2_ if $if local.get $5 - i32.const 17892 + i32.const 17894 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -84592,7 +84592,7 @@ call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE end ;; $if local.get $6 - i32.const 17892 + i32.const 17894 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -84606,7 +84606,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $7 - i32.const 20651 + i32.const 20653 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -84627,7 +84627,7 @@ local.get $2 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $8 - i32.const 20654 + i32.const 20656 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $8 @@ -84641,7 +84641,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $9 - i32.const 17888 + i32.const 17890 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $9 @@ -84651,14 +84651,14 @@ local.get $2 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $2 - i32.const 17967 + i32.const 17969 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $4 local.get $2 call $__ZN12_GLOBAL__N_1eqERKNS_10StringViewES2_ if $if_0 local.get $10 - i32.const 17888 + i32.const 17890 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $10 @@ -84841,7 +84841,7 @@ local.set $0 end ;; $if_0 local.get $6 - i32.const 20797 + i32.const 20799 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $6 @@ -84884,7 +84884,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $4 - i32.const 20802 + i32.const 20804 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -85094,7 +85094,7 @@ i32.const 8 i32.add local.tee $4 - i32.const 20851 + i32.const 20853 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -85911,7 +85911,7 @@ local.get $8 i32.store offset=8 local.get $4 - i32.const 21058 + i32.const 21060 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $6 local.get $4 @@ -85923,7 +85923,7 @@ if $if_4 local.get $2 local.get $0 - i32.const 21376 + i32.const 21378 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ i32.store end ;; $if_4 @@ -86243,7 +86243,7 @@ i32.store local.get $2 local.get $0 - i32.const 21316 + i32.const 21318 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ i32.store local.get $0 @@ -86342,7 +86342,7 @@ local.get $2 i32.const 8 i32.add - i32.const 21054 + i32.const 21056 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -86355,7 +86355,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE br_if $block_0 local.get $2 - i32.const 21058 + i32.const 21060 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -86458,7 +86458,7 @@ br $block_1 end ;; $if_1 local.get $4 - i32.const 21120 + i32.const 21122 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -86598,7 +86598,7 @@ i32.add local.set $3 local.get $2 - i32.const 21061 + i32.const 21063 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -86649,7 +86649,7 @@ local.get $2 i32.const 32 i32.add - i32.const 21181 + i32.const 21183 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $2 @@ -86678,7 +86678,7 @@ local.set $0 else local.get $5 - i32.const 21184 + i32.const 21186 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $5 @@ -86710,7 +86710,7 @@ i32.const 1 i32.store8 offset=362 local.get $4 - i32.const 21187 + i32.const 21189 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $4 @@ -86979,7 +86979,7 @@ i32.const 24 i32.add local.tee $6 - i32.const 21190 + i32.const 21192 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -87000,7 +87000,7 @@ local.get $2 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $4 - i32.const 21198 + i32.const 21200 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -87015,7 +87015,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle9NodeArray14printWithCommaERNS_12OutputStreamE local.get $5 - i32.const 17888 + i32.const 17890 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -87103,7 +87103,7 @@ i32.const 16 i32.add local.tee $5 - i32.const 21253 + i32.const 21255 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -87124,7 +87124,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $4 - i32.const 21262 + i32.const 21264 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -87668,7 +87668,7 @@ i32.load8_s offset=12 if $if local.get $4 - i32.const 18625 + i32.const 18627 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -87794,7 +87794,7 @@ $block ;; default end ;; $block_5 local.get $4 - i32.const 17670 + i32.const 17672 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -87806,7 +87806,7 @@ br $block end ;; $block_4 local.get $5 - i32.const 17685 + i32.const 17687 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -87818,7 +87818,7 @@ br $block end ;; $block_3 local.get $6 - i32.const 21472 + i32.const 21474 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -87830,7 +87830,7 @@ br $block end ;; $block_2 local.get $7 - i32.const 21543 + i32.const 21545 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -87842,7 +87842,7 @@ br $block end ;; $block_1 local.get $8 - i32.const 21593 + i32.const 21595 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $8 @@ -87854,7 +87854,7 @@ br $block end ;; $block_0 local.get $3 - i32.const 21643 + i32.const 21645 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -87885,32 +87885,32 @@ $block ;; default end ;; $block_5 local.get $0 - i32.const 17615 + i32.const 17617 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_4 local.get $0 - i32.const 17625 + i32.const 17627 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_3 local.get $0 - i32.const 17625 + i32.const 17627 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_2 local.get $0 - i32.const 21429 + i32.const 21431 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_1 local.get $0 - i32.const 21443 + i32.const 21445 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_0 local.get $0 - i32.const 21457 + i32.const 21459 call $__ZN12_GLOBAL__N_110StringViewC2EPKc end ;; $block ) @@ -88043,7 +88043,7 @@ call $__ZNK12_GLOBAL__N_116itanium_demangle4Node11hasFunctionERNS_12OutputStreamE br_if $block_0 local.get $5 - i32.const 17890 + i32.const 17892 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -88055,7 +88055,7 @@ br $block end ;; $block_0 local.get $4 - i32.const 17892 + i32.const 17894 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -88070,7 +88070,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $2 - i32.const 21805 + i32.const 21807 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -88113,7 +88113,7 @@ br $block end ;; $block_0 local.get $2 - i32.const 17888 + i32.const 17890 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -88310,7 +88310,7 @@ i32.ne if $if_0 local.get $4 - i32.const 17890 + i32.const 17892 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -88327,7 +88327,7 @@ local.get $3 i32.const 16 i32.add - i32.const 21865 + i32.const 21867 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -88384,7 +88384,7 @@ end ;; $if_4 end ;; $if_2 local.get $3 - i32.const 17526 + i32.const 17528 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -88525,7 +88525,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 21915 + i32.const 21917 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -88582,7 +88582,7 @@ end ;; $if_2 end ;; $if_0 local.get $2 - i32.const 17526 + i32.const 17528 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -88730,7 +88730,7 @@ local.get $2 i32.const 16 i32.add - i32.const 21971 + i32.const 21973 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -88757,7 +88757,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $2 - i32.const 17526 + i32.const 17528 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -88861,7 +88861,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $1 - i32.const 22047 + i32.const 22049 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -88895,7 +88895,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $1 - i32.const 22054 + i32.const 22056 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -88929,7 +88929,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $1 - i32.const 18178 + i32.const 18180 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -89077,7 +89077,7 @@ i32.and if $if local.get $4 - i32.const 22083 + i32.const 22085 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -89099,7 +89099,7 @@ i32.and if $if_0 local.get $4 - i32.const 22090 + i32.const 22092 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -89117,7 +89117,7 @@ i32.and if $if_1 local.get $2 - i32.const 22100 + i32.const 22102 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -89228,7 +89228,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 17890 + i32.const 17892 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -89354,7 +89354,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 18074 + i32.const 18076 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -89375,7 +89375,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $5 - i32.const 17967 + i32.const 17969 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -89518,7 +89518,7 @@ i32.add call_indirect $29 (type $4) local.get $2 - i32.const 17890 + i32.const 17892 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -89576,7 +89576,7 @@ i32.const 48 i32.add local.tee $4 - i32.const 17892 + i32.const 17894 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -89591,7 +89591,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle9NodeArray14printWithCommaERNS_12OutputStreamE local.get $5 - i32.const 17888 + i32.const 17890 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -89621,7 +89621,7 @@ i32.and if $if local.get $6 - i32.const 22083 + i32.const 22085 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -89639,7 +89639,7 @@ i32.and if $if_0 local.get $7 - i32.const 22090 + i32.const 22092 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -89657,7 +89657,7 @@ i32.and if $if_1 local.get $8 - i32.const 22100 + i32.const 22102 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $8 @@ -89679,7 +89679,7 @@ $block ;; default end ;; $block_1 local.get $9 - i32.const 22285 + i32.const 22287 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $9 @@ -89691,7 +89691,7 @@ br $block end ;; $block_0 local.get $3 - i32.const 22288 + i32.const 22290 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -89782,7 +89782,7 @@ i32.add local.set $3 local.get $2 - i32.const 22341 + i32.const 22343 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -89860,7 +89860,7 @@ i32.const 8 i32.add local.tee $4 - i32.const 22405 + i32.const 22407 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -89874,7 +89874,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $2 - i32.const 17888 + i32.const 17890 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -90093,7 +90093,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 20654 + i32.const 20656 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -90114,7 +90114,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $5 - i32.const 17888 + i32.const 17890 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -90408,7 +90408,7 @@ local.get $1 if $if_9 (result i32) local.get $0 - i32.const 22686 + i32.const 22688 local.get $2 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_11SpecialNameEJRA34_KcRPNS0_4NodeEEEESC_DpOT0_ else @@ -90925,7 +90925,7 @@ i32.eqz if $if_0 local.get $2 - i32.const 17890 + i32.const 17892 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -90989,7 +90989,7 @@ i32.const 48 i32.add local.tee $4 - i32.const 17892 + i32.const 17894 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -91004,7 +91004,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle9NodeArray14printWithCommaERNS_12OutputStreamE local.get $5 - i32.const 17888 + i32.const 17890 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -91037,7 +91037,7 @@ i32.and if $if_0 local.get $6 - i32.const 22083 + i32.const 22085 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -91055,7 +91055,7 @@ i32.and if $if_1 local.get $7 - i32.const 22090 + i32.const 22092 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -91073,7 +91073,7 @@ i32.and if $if_2 local.get $8 - i32.const 22100 + i32.const 22102 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $8 @@ -91095,7 +91095,7 @@ $block ;; default end ;; $block_1 local.get $9 - i32.const 22285 + i32.const 22287 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $9 @@ -91107,7 +91107,7 @@ br $block end ;; $block_0 local.get $3 - i32.const 22288 + i32.const 22290 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -91195,7 +91195,7 @@ i32.add local.set $3 local.get $2 - i32.const 22624 + i32.const 22626 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -91327,7 +91327,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 22720 + i32.const 22722 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -91366,7 +91366,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 22745 + i32.const 22747 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -91405,7 +91405,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 22765 + i32.const 22767 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -91444,7 +91444,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 22787 + i32.const 22789 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -91483,7 +91483,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 22805 + i32.const 22807 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -91551,7 +91551,7 @@ i32.const 8 i32.add local.tee $4 - i32.const 22846 + i32.const 22848 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -91565,7 +91565,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $2 - i32.const 22871 + i32.const 22873 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -91603,7 +91603,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 22934 + i32.const 22936 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -91642,7 +91642,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 22961 + i32.const 22963 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -91681,7 +91681,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 22980 + i32.const 22982 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -91720,7 +91720,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 22994 + i32.const 22996 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -91759,7 +91759,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 23003 + i32.const 23005 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -93601,5 +93601,5 @@ call_indirect $29 (type $9) ) ;; User section "emscripten_metadata": - ;; "\00\01\00\03\80\02\bf\03\80\08\80\cf\c1\02\e0\ce\01\f0\ce\01" + ;; "\00\02\00\04\00\80\02\bf\03\80\08\80\cf\c1\02\e0\ce\01\f0\ce\01" ) \ No newline at end of file diff --git a/test/extensions/filters/http/wasm/test_data/metadata_cpp.wasm b/test/extensions/filters/http/wasm/test_data/metadata_cpp.wasm index e800beb80b97f..7d0ade88d9338 100644 Binary files a/test/extensions/filters/http/wasm/test_data/metadata_cpp.wasm and b/test/extensions/filters/http/wasm/test_data/metadata_cpp.wasm differ diff --git a/test/extensions/filters/http/wasm/test_data/metadata_cpp.wat b/test/extensions/filters/http/wasm/test_data/metadata_cpp.wat index fb6f4c4017856..f54f2bbe3f068 100644 --- a/test/extensions/filters/http/wasm/test_data/metadata_cpp.wat +++ b/test/extensions/filters/http/wasm/test_data/metadata_cpp.wat @@ -173,7 +173,7 @@ $b10 $b10 $b11 $__ZN11RootContext18onHttpCallResponseEjNSt3__210unique_ptrI8WasmDataNS0_14default_deleteIS2_EEEES5_S5_ $__ZNK10__cxxabiv117__class_type_info16search_below_dstEPNS_19__dynamic_cast_infoEPKvib $__ZNK10__cxxabiv120__si_class_type_info16search_below_dstEPNS_19__dynamic_cast_infoEPKvib $__ZNK10__cxxabiv121__vmi_class_type_info16search_below_dstEPNS_19__dynamic_cast_infoEPKvib $b11 $b11 $b11 $b12 $__ZNK10__cxxabiv117__class_type_info16search_above_dstEPNS_19__dynamic_cast_infoEPKvS4_ib $__ZNK10__cxxabiv120__si_class_type_info16search_above_dstEPNS_19__dynamic_cast_infoEPKvS4_ib $__ZNK10__cxxabiv121__vmi_class_type_info16search_above_dstEPNS_19__dynamic_cast_infoEPKvS4_ib $b13) (data $35 $29 (i32.const 1024) - ">;\00\00C;\00\00K;\00\00Q;") + "@;\00\00E;\00\00M;\00\00S;") (data $36 $29 (i32.const 1168) "\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0" "\f0\f0\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\02\03\03\03\03\03\03\03\03\03\03\03\03\07\03\03\04\05\05\05\06\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0" @@ -248,12 +248,12 @@ "\00\00\00g\00\00\00k\00\00\00m\00\00\00q\00\00\00y\00\00\00\7f\00\00\00\83\00\00\00\89\00\00\00\8b\00\00\00\8f\00\00\00\95\00\00\00\97\00\00\00\9d\00\00\00\a3\00\00\00\a7\00\00\00\a9" "\00\00\00\ad\00\00\00\b3\00\00\00\b5\00\00\00\bb\00\00\00\bf\00\00\00\c1\00\00\00\c5\00\00\00\c7\00\00\00\d1\00\00\00\ac\1e\00\00\e9+\00\00\d4\1e\00\00\e0+\00\00p\11\00\00\00\00\00\00\d4" "\1e\00\00\cf+\00\00x\11\00\00\00\00\00\00\d4\1e\00\00\0c,\00\00p\11\00\00\00\00\00\00\d4\1e\00\00\f7+\00\00\98\11\00\00\00\00\00\00\ac\1e\00\00!-\00\00\f0*\00\00\e2,\00\00\00" - "\00\00\00\01\00\00\00\b8\11\00\00\00\00\00\00\ac\1e\00\00G-\00\00\ac\1e\00\00L-\00\00\ac\1e\00\00}-\00\00\d4\1e\00\00\e57\00\00\a0\12\00\00\00\00\00\00\d4\1e\00\00\c76\00\00\10" - "\12\00\00\00\00\00\00\d4\1e\00\00\840\00\00 \12\00\00\00\00\00\00\d4\1e\00\00\b40\00\000\12\00\00\00\00\00\00\d4\1e\00\00z1\00\00\a0\12\00\00\00\00\00\00\d4\1e\00\00\946\00\00\a0" - "\12\00\00\00\00\00\00\f0*\00\00R5\00\00\00\00\00\00\01\00\00\00h\12\00\00\00\00\00\00\ac\1e\00\00\bf5\00\00\d4\1e\00\00\ae6\00\00\a0\12\00\00\00\00\00\00\d4\1e\00\0098\00\00\90" + "\00\00\00\01\00\00\00\b8\11\00\00\00\00\00\00\ac\1e\00\00G-\00\00\ac\1e\00\00L-\00\00\ac\1e\00\00}-\00\00\d4\1e\00\00\e77\00\00\a0\12\00\00\00\00\00\00\d4\1e\00\00\c96\00\00\10" + "\12\00\00\00\00\00\00\d4\1e\00\00\860\00\00 \12\00\00\00\00\00\00\d4\1e\00\00\b60\00\000\12\00\00\00\00\00\00\d4\1e\00\00|1\00\00\a0\12\00\00\00\00\00\00\d4\1e\00\00\966\00\00\a0" + "\12\00\00\00\00\00\00\f0*\00\00T5\00\00\00\00\00\00\01\00\00\00h\12\00\00\00\00\00\00\ac\1e\00\00\c15\00\00\d4\1e\00\00\b06\00\00\a0\12\00\00\00\00\00\00\d4\1e\00\00;8\00\00\90" "\14\00\00\00\00\00\00\ff\ff\ff\ff\ff\ff\ff\ff") (data $53 $29 (i32.const 4768) - "\ac\1e\00\00>=\00\00\d4\1e\00\00,C\00\00\c8\12\00\00\00\00\00\00\d4\1e\00\00\e8C\00\00\c8\12\00\00\00\00\00\00\ac\1e\00\00\b4D\00\00\05") + "\ac\1e\00\00@=\00\00\d4\1e\00\00.C\00\00\c8\12\00\00\00\00\00\00\d4\1e\00\00\eaC\00\00\c8\12\00\00\00\00\00\00\ac\1e\00\00\b6D\00\00\05") (data $54 $29 (i32.const 4828) "-") (data $55 $29 (i32.const 4852) @@ -277,26 +277,26 @@ (data $64 $29 (i32.const 5179) "\ff\ff\ff\ff\ff") (data $65 $29 (i32.const 5248) - "\d4\1e\00\00+E\00\00\90\14\00\00\00\00\00\00\ac\1e\00\00\edE\00\00\d4\1e\00\00MF\00\00\a8\14\00\00\00\00\00\00\d4\1e\00\00\faE\00\00\b8\14\00\00\00\00\00\00\ac\1e\00\00\1bF\00\00" - "\d4\1e\00\00(F\00\00\98\14\00\00\00\00\00\00\d4\1e\00\00\ddG\00\00\e0\14\00\00\00\00\00\00\ac\1e\00\00\0cH\00\00\d4\1e\00\00\c0H\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\03I\00\00" - "\e0\14\00\00\00\00\00\00\d4\1e\00\00PI\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\96I\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\c6I\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\04J\00\00" - "\e0\14\00\00\00\00\00\00\d4\1e\00\005J\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\85J\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\beJ\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\f9J\00\00" - "\e0\14\00\00\00\00\00\00\d4\1e\00\005K\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00xK\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\a6K\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\d9K\00\00" - "\e0\14\00\00\00\00\00\00\d4\1e\00\00\95L\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\c2L\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\f3L\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\001M\00\00" - "\e0\14\00\00\00\00\00\00\d4\1e\00\00\a9M\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00nM\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\f0M\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\009N\00\00" - "\e0\14\00\00\00\00\00\00\d4\1e\00\00\94N\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\bfN\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\f9N\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00-O\00\00" - "\e0\14\00\00\00\00\00\00\d4\1e\00\00}O\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\acO\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\e5O\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\1eP\00\00" - "\e0\14\00\00\00\00\00\00\d4\1e\00\00CR\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\91R\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\ccR\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\f8R\00\00" - "\e0\14\00\00\00\00\00\00\d4\1e\00\00BS\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00wS\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\aaS\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\e1S\00\00" - "\e0\14\00\00\00\00\00\00\d4\1e\00\00\16T\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\acT\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\deT\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\10U\00\00" - "\e0\14\00\00\00\00\00\00\d4\1e\00\00hU\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\b0U\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\e8U\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\006V\00\00" - "\e0\14\00\00\00\00\00\00\d4\1e\00\00uV\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\b8V\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\e9V\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00#X\00\00" - "\e0\14\00\00\00\00\00\00\d4\1e\00\00cX\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\96X\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\d0X\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\09Y\00\00" - "\e0\14\00\00\00\00\00\00\d4\1e\00\00FY\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\c3Y\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\efY\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00%Z\00\00" - "\e0\14\00\00\00\00\00\00\d4\1e\00\00yZ\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\b1Z\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\f4Z\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00%[\00\00" - "\e0\14\00\00\00\00\00\00\d4\1e\00\00U[\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\90[\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\d2[\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\c1\\\00\00" - "\e0\14\00\00\00\00\00\00\d4\1e\00\00L]\00\00\90\14\00\00\00\00\00\00\d4\1e\00\00\\]\00\00\08\19\00\00\00\00\00\00\d4\1e\00\00m]\00\00\a8\14\00\00\00\00\00\00\d4\1e\00\00\8f]\00\00" - "(\19\00\00\00\00\00\00\d4\1e\00\00\b3]\00\00\a8\14\00\00\00\00\00\00\d4*\00\00\db]\00\00\d4*\00\00\dd]\00\00\d4*\00\00\df]\00\00\d4\1e\00\00\e1]\00\00\98\14") + "\d4\1e\00\00-E\00\00\90\14\00\00\00\00\00\00\ac\1e\00\00\efE\00\00\d4\1e\00\00OF\00\00\a8\14\00\00\00\00\00\00\d4\1e\00\00\fcE\00\00\b8\14\00\00\00\00\00\00\ac\1e\00\00\1dF\00\00" + "\d4\1e\00\00*F\00\00\98\14\00\00\00\00\00\00\d4\1e\00\00\dfG\00\00\e0\14\00\00\00\00\00\00\ac\1e\00\00\0eH\00\00\d4\1e\00\00\c2H\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\05I\00\00" + "\e0\14\00\00\00\00\00\00\d4\1e\00\00RI\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\98I\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\c8I\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\06J\00\00" + "\e0\14\00\00\00\00\00\00\d4\1e\00\007J\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\87J\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\c0J\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\fbJ\00\00" + "\e0\14\00\00\00\00\00\00\d4\1e\00\007K\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00zK\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\a8K\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\dbK\00\00" + "\e0\14\00\00\00\00\00\00\d4\1e\00\00\97L\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\c4L\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\f5L\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\003M\00\00" + "\e0\14\00\00\00\00\00\00\d4\1e\00\00\abM\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00pM\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\f2M\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00;N\00\00" + "\e0\14\00\00\00\00\00\00\d4\1e\00\00\96N\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\c1N\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\fbN\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00/O\00\00" + "\e0\14\00\00\00\00\00\00\d4\1e\00\00\7fO\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\aeO\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\e7O\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00 P\00\00" + "\e0\14\00\00\00\00\00\00\d4\1e\00\00ER\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\93R\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\ceR\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\faR\00\00" + "\e0\14\00\00\00\00\00\00\d4\1e\00\00DS\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00yS\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\acS\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\e3S\00\00" + "\e0\14\00\00\00\00\00\00\d4\1e\00\00\18T\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\aeT\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\e0T\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\12U\00\00" + "\e0\14\00\00\00\00\00\00\d4\1e\00\00jU\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\b2U\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\eaU\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\008V\00\00" + "\e0\14\00\00\00\00\00\00\d4\1e\00\00wV\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\baV\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\ebV\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00%X\00\00" + "\e0\14\00\00\00\00\00\00\d4\1e\00\00eX\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\98X\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\d2X\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\0bY\00\00" + "\e0\14\00\00\00\00\00\00\d4\1e\00\00HY\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\c5Y\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\f1Y\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00'Z\00\00" + "\e0\14\00\00\00\00\00\00\d4\1e\00\00{Z\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\b3Z\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\f6Z\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00'[\00\00" + "\e0\14\00\00\00\00\00\00\d4\1e\00\00W[\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\92[\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\d4[\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\c3\\\00\00" + "\e0\14\00\00\00\00\00\00\d4\1e\00\00N]\00\00\90\14\00\00\00\00\00\00\d4\1e\00\00^]\00\00\08\19\00\00\00\00\00\00\d4\1e\00\00o]\00\00\a8\14\00\00\00\00\00\00\d4\1e\00\00\91]\00\00" + "(\19\00\00\00\00\00\00\d4\1e\00\00\b5]\00\00\a8\14\00\00\00\00\00\00\d4*\00\00\dd]\00\00\d4*\00\00\df]\00\00\d4*\00\00\e1]\00\00\d4\1e\00\00\e3]\00\00\98\14") (data $66 $29 (i32.const 6532) "\88\11\00\00\01\00\00\00\02\00\00\00\01\00\00\00\02\00\00\00\01\00\00\00\02\00\00\00\03\00\00\00\03\00\00\00\04\00\00\00\01\00\00\00\05\00\00\00\06\00\00\00\07\00\00\00\02\00\00\00\08\00\00\00" "\04\00\00\00\05\00\00\00\06\00\00\00\00\00\00\00\a8\11\00\00\07\00\00\00\08\00\00\00\09\00\00\00\n\00\00\00\01\00\00\00\02\00\00\00\01\00\00\00\02\00\00\00\09\00\00\00\03\00\00\00\01\00\00\00" @@ -388,198 +388,198 @@ "CK failed: it != end(): \00key not found: \00N6google8protobuf8inter" "nal29InternalMetadataWithArenaBaseINSt3__212basic_stringIcNS3_11" "char_traitsIcEENS3_9allocatorIcEEEENS1_29InternalMetadataWithAre" - "naLiteEE9ContainerE\00/home/jplev_google_com/envoy/api/wasm/cpp/st" - "ruct_lite.pb.cc\00/usr/local/include/google/protobuf/repeated_fiel" - "d.h\00CHECK failed: (index) >= (0): \00CHECK failed: (index) < (curr" - "ent_size_): \00/usr/local/include/google/protobuf/map.h\00CHECK fail" - "ed: (bucket_index_ & 1) == (0): \00CHECK failed: m_->index_of_firs" - "t_non_null_ == m_->num_buckets_ || m_->table_[m_->index_of_first" - "_non_null_] != NULL: \00CHECK failed: !tree->empty(): \00CHECK faile" - "d: node_ != NULL && m_ != NULL: \00google.protobuf.Value.string_va" - "lue\00google.protobuf.Struct.FieldsEntry.key\00CHECK failed: (&from)" - " != (this): \00CHECK failed: (&other) != (this): \00N6google8protobu" - "f27Struct_FieldsEntry_DoNotUseE\00N6google8protobuf8internal12MapE" - "ntryLiteINS0_27Struct_FieldsEntry_DoNotUseENSt3__212basic_string" - "IcNS4_11char_traitsIcEENS4_9allocatorIcEEEENS0_5ValueELNS1_14Wir" - "eFormatLite9FieldTypeE9ELSD_11ELi0EEE\00N6google8protobuf8internal" - "12MapEntryImplINS0_27Struct_FieldsEntry_DoNotUseENS0_11MessageLi" - "teENSt3__212basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcE" - "EEENS0_5ValueELNS1_14WireFormatLite9FieldTypeE9ELSE_11ELi0EEE\00CH" - "ECK failed: (it.m_) == (this): \00CHECK failed: TableEntryIsNonEmp" - "tyList(b): \00CHECK failed: TableEntryIsTree(b): \00CHECK failed: Ge" - "tArenaNoVirtual() == NULL: \00CHECK failed: index_of_first_non_nul" - "l_ == num_buckets_ || table_[index_of_first_non_null_] != NULL: " - "\00CHECK failed: find(*KeyPtrFromNodePtr(node)) == end(): \00CHECK f" - "ailed: (count) <= (kMaxLength): \00CHECK failed: (result.bucket_in" - "dex_) == (b & ~static_cast(1)): \00CHECK failed: (table" - "_[b]) == (table_[b ^ 1]): \00CHECK failed: !TableEntryIsTree(b) &&" - " !TableEntryIsTree(b ^ 1): \00CHECK failed: (count) == (tree->size" - "()): \00CHECK failed: (new_num_buckets) >= (kMinTableSize): \00CHECK" - " failed: n >= kMinTableSize: \00CHECK failed: (n & (n - 1)) == (0)" - ": \00CHECK failed: table_[b] == table_[b + 1] && (b & 1) == 0: \00N6" - "google8protobuf3MapINSt3__212basic_stringIcNS2_11char_traitsIcEE" - "NS2_9allocatorIcEEEENS0_5ValueEE8InnerMapE\00N6google8protobuf4has" - "hINSt3__212basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEE" - "EEEE\00f == NULL || dynamic_cast(f) != NULL\00/usr/local/include" - "/google/protobuf/stubs/casts.h\00down_cast\00google.protobuf.Struct\00" - "N6google8protobuf6StructE\00N6google8protobuf5ValueE\00N6google8prot" - "obuf8internal12MapEntryImplINS0_27Struct_FieldsEntry_DoNotUseENS" - "0_11MessageLiteENSt3__212basic_stringIcNS5_11char_traitsIcEENS5_" - "9allocatorIcEEEENS0_5ValueELNS1_14WireFormatLite9FieldTypeE9ELSE" - "_11ELi0EE15MapEntryWrapperE\00CHECK failed: (n) >= (0): \00google.pr" - "otobuf.ListValue\00N6google8protobuf9ListValueE\00google.protobuf.Va" - "lue\00no context factory for root_id: \00N6google8protobuf14FatalExc" - "eptionE\00google/protobuf/stubs/common.cc\00This program requires ve" - "rsion \00%d.%d.%d\00 of the Protocol Buffer runtime library, but the" - " installed version is \00. Please update your library. If you co" - "mpiled the program yourself, make sure that your headers are fro" - "m the same version of Protocol Buffers as your link-time library" - ". (Version verification failed in \"\00\".)\00This program was compil" - "ed against version \00 of the Protocol Buffer runtime library, whi" - "ch is not compatible with the installed version (\00). Contact th" - "e program author for an update. If you compiled the program you" - "rself, make sure that your headers are from the same version of " - "Protocol Buffers as your link-time library. (Version verificati" - "on failed in \"\00[libprotobuf %s %s:%d] %s\n\00INFO\00WARNING\00ERROR\00FAT" - "AL\00allocator::allocate(size_t n) 'n' exceeds maximum supporte" - "d size\00%d\00%lu\00google/protobuf/arena.cc\00CHECK failed: (min_bytes)" - " <= (std::numeric_limits::max() - kBlockHeaderSize): \00go" - "ogle/protobuf/generated_message_util.cc\00Not implemented field nu" - "mber \00 with type \00CHECK failed: (scc->visit_status.load(std::mem" - "ory_order_relaxed)) == (SCCInfoBase::kRunning): \00google/protobuf" - "/message_lite.cc\00CHECK failed: !coded_out.HadError(): \00(cannot d" - "etermine missing fields for lite message)\00N6google8protobuf11Mes" - "sageLiteE\00parse\00Can't \00 message of type \"\00\" because it is missin" - "g required fields: \00Exceeded maximum protobuf size of 2GB: \00CHEC" - "K failed: (byte_size_before_serialization) == (byte_size_after_s" - "erialization): \00 was modified concurrently during serialization." - "\00CHECK failed: (bytes_produced_by_serialization) == (byte_size_b" - "efore_serialization): \00Byte size calculation and serialization w" - "ere inconsistent. This may indicate a bug in protocol buffers o" - "r it may be caused by concurrent modification of \00This shouldn't" - " be called if all the sizes are equal.\00google/protobuf/repeated_" - "field.cc\00CHECK failed: (new_size) <= ((std::numeric_limits::max() - kRepHeaderSize) / sizeof(old_rep->elements[0])): \00Re" - "quested size is too large to fit into size_t.\00google/protobuf/wi" - "re_format_lite.cc\00CHECK failed: (value.size()) <= (kint32max): \00" - "serializing\00parsing\00 '%s'\00String field\00 contains invalid \00UTF-8 " - "data when \00 a protocol \00buffer. Use the 'bytes' type if you inte" - "nd to send raw \00bytes. \00google/protobuf/io/coded_stream.cc\00CHECK" - " failed: (buffer_size) >= (0): \00A protocol message was rejected " - "because it was too big (more than \00 bytes). To increase the lim" - "it (or to disable these warnings), see CodedInputStream::SetTota" - "lBytesLimit() in google/protobuf/io/coded_stream.h.\00google/proto" - "buf/io/zero_copy_stream_impl_lite.cc\00CHECK failed: (count) >= (0" - "): \00CHECK failed: (last_returned_size_) > (0): \00BackUp() can onl" - "y be called after a successful Next().\00CHECK failed: (count) <= " - "(last_returned_size_): \00N6google8protobuf2io17ArrayOutputStreamE" - "\00CHECK failed: target_ != NULL: \00CHECK failed: (count) <= (targe" - "t_->size()): \00Cannot allocate buffer larger than kint32max for \00" - "StringOutputStream.\00N6google8protobuf2io18StringOutputStreamE\00go" - "ogle/protobuf/io/zero_copy_stream.cc\00This ZeroCopyOutputStream d" - "oesn't support aliasing. Reaching here usually means a ZeroCopyO" - "utputStream implementation bug.\00N6google8protobuf2io20ZeroCopyOu" - "tputStreamE\00-+ 0X0x\00(null)\00-0X+0X 0X-0x+0x 0x\00inf\00INF\00nan\00NAN\00" - "std::bad_function_call\00NSt3__217bad_function_callE\00mutex lock fa" - "iled\00%u\00terminating with %s exception of type %s: %s\00terminating" - " with %s exception of type %s\00terminating with %s foreign except" - "ion\00terminating\00uncaught\00St9exception\00N10__cxxabiv116__shim_type" - "_infoE\00St9type_info\00N10__cxxabiv120__si_class_type_infoE\00N10__cx" - "xabiv117__class_type_infoE\00terminate_handler unexpectedly return" - "ed\00_Z\00___Z\00_block_invoke\00invocation function for block in \00void\00" - "bool\00char\00signed char\00unsigned char\00short\00unsigned short\00int\00uns" - "igned int\00long\00unsigned long\00long long\00__int128\00unsigned __int12" - "8\00float\00long double\00__float128\00...\00decimal64\00decimal128\00decimal3" - "2\00decimal16\00char32_t\00char16_t\00auto\00decltype(auto)\00std::nullptr_t" - "\00[abi:\00]\00N12_GLOBAL__N_116itanium_demangle10AbiTagAttrE\00N12_GLOB" - "AL__N_116itanium_demangle4NodeE\00allocator\00basic_string\00string\00is" - "tream\00ostream\00iostream\00std::allocator\00std::basic_string\00std::str" - "ing\00std::istream\00std::ostream\00std::iostream\00N12_GLOBAL__N_116ita" - "nium_demangle19SpecialSubstitutionE\00 imaginary\00N12_GLOBAL__N_116" - "itanium_demangle20PostfixQualifiedTypeE\00 complex\00)\00 \00(\00&\00&&\00N12_" - "GLOBAL__N_116itanium_demangle13ReferenceTypeE\00objc_object\00*\00id<\00" - ">\00N12_GLOBAL__N_116itanium_demangle11PointerTypeE\00N12_GLOBAL__N_" - "116itanium_demangle20NameWithTemplateArgsE\00<\00, \00N12_GLOBAL__N_11" - "6itanium_demangle12TemplateArgsE\00N12_GLOBAL__N_116itanium_demang" - "le13ParameterPackE\00wchar_t\00b0E\00b1E\00u\00l\00ul\00ll\00ull\00N12_GLOBAL__N_1" - "16itanium_demangle15IntegerCastExprE\00%LaL\00N12_GLOBAL__N_116itani" - "um_demangle16FloatLiteralImplIeEE\00%a\00N12_GLOBAL__N_116itanium_de" - "mangle16FloatLiteralImplIdEE\00%af\00N12_GLOBAL__N_116itanium_demang" - "le16FloatLiteralImplIfEE\00true\00false\00N12_GLOBAL__N_116itanium_dem" - "angle8BoolExprE\00-\00N12_GLOBAL__N_116itanium_demangle14IntegerLite" - "ralE\00N12_GLOBAL__N_116itanium_demangle20TemplateArgumentPackE\00gs" - "\00&=\00=\00alignof (\00,\00~\00.*\00/\00/=\00^\00^=\00==\00>=\00<=\00<<\00<<=\00-=\00*=\00--\00!=\00!\00|" - "|\00|\00|=\00->*\00+\00+=\00++\00->\00%\00%=\00>>\00>>=\00sizeof (\00typeid (\00throw\00throw " - "\00N12_GLOBAL__N_116itanium_demangle9ThrowExprE\00N12_GLOBAL__N_116i" - "tanium_demangle12InitListExprE\00N12_GLOBAL__N_116itanium_demangle" - "13NodeArrayNodeE\00sizeof... (\00N12_GLOBAL__N_116itanium_demangle13" - "EnclosingExprE\00sizeof...(\00N12_GLOBAL__N_116itanium_demangle22Par" - "ameterPackExpansionE\00N12_GLOBAL__N_116itanium_demangle19SizeofPa" - "ramPackExprE\00static_cast\00>(\00N12_GLOBAL__N_116itanium_demangle8Ca" - "stExprE\00reinterpret_cast\00) ? (\00) : (\00N12_GLOBAL__N_116itanium_de" - "mangle15ConditionalExprE\00noexcept (\00nw\00na\00pi\00::operator \00new\00[]\00" - "N12_GLOBAL__N_116itanium_demangle7NewExprE\00N12_GLOBAL__N_116itan" - "ium_demangle11PostfixExprE\00 ... \00 = \00N12_GLOBAL__N_116itanium_de" - "mangle15BracedRangeExprE\00N12_GLOBAL__N_116itanium_demangle10Brac" - "edExprE\00_GLOBAL__N\00(anonymous namespace)\00N12_GLOBAL__N_116itaniu" - "m_demangle8NameTypeE\00)[\00N12_GLOBAL__N_116itanium_demangle18Array" - "SubscriptExprE\00.\00N12_GLOBAL__N_116itanium_demangle10MemberExprE\00" - "srN\00sr\00::\00N12_GLOBAL__N_116itanium_demangle19GlobalQualifiedName" - "E\00dn\00on\00operator&&\00operator&\00operator&=\00operator=\00operator()\00ope" - "rator,\00operator~\00operator delete[]\00operator*\00operator/\00operator/" - "=\00operator^\00operator^=\00operator==\00operator>=\00operator>\00operator[" - "]\00operator<=\00operator<<\00operator<<=\00operator<\00operator-\00operator" - "-=\00operator*=\00operator--\00operator new[]\00operator!=\00operator!\00ope" - "rator new\00operator||\00operator|\00operator|=\00operator->*\00operator+\00" - "operator+=\00operator++\00operator->\00operator?\00operator%\00operator%=\00" - "operator>>\00operator>>=\00operator<=>\00operator\"\" \00N12_GLOBAL__N_116" - "itanium_demangle15LiteralOperatorE\00operator delete\00operator \00N12" - "_GLOBAL__N_116itanium_demangle22ConversionOperatorTypeE\00N12_GLOB" - "AL__N_116itanium_demangle8DtorNameE\00N12_GLOBAL__N_116itanium_dem" - "angle13QualifiedNameE\00dynamic_cast\00delete\00[] \00N12_GLOBAL__N_116i" - "tanium_demangle10DeleteExprE\00cv\00)(\00N12_GLOBAL__N_116itanium_dema" - "ngle14ConversionExprE\00N12_GLOBAL__N_116itanium_demangle8CallExpr" - "E\00const_cast\00N12_GLOBAL__N_116itanium_demangle10PrefixExprE\00) \00 " - "(\00N12_GLOBAL__N_116itanium_demangle10BinaryExprE\00aa\00an\00aN\00aS\00cm\00" - "ds\00dv\00dV\00eo\00eO\00eq\00ge\00gt\00le\00ls\00lS\00lt\00mi\00mI\00ml\00mL\00ne\00oo\00or\00oR\00pl\00p" - "L\00rm\00rM\00rs\00rS\00... \00 ...\00N12_GLOBAL__N_116itanium_demangle8FoldEx" - "prE\00fp\00fL\00N12_GLOBAL__N_116itanium_demangle13FunctionParamE\00N12_" - "GLOBAL__N_116itanium_demangle24ForwardTemplateReferenceE\00Ts\00stru" - "ct\00Tu\00union\00Te\00enum\00N12_GLOBAL__N_116itanium_demangle22Elaborate" - "dTypeSpefTypeE\00StL\00St\00std::\00N12_GLOBAL__N_116itanium_demangle16S" - "tdQualifiedNameE\00DC\00N12_GLOBAL__N_116itanium_demangle21Structure" - "dBindingNameE\00Ut\00Ul\00vE\00'lambda\00'(\00N12_GLOBAL__N_116itanium_deman" - "gle15ClosureTypeNameE\00'unnamed\00'\00N12_GLOBAL__N_116itanium_demang" - "le15UnnamedTypeNameE\00string literal\00N12_GLOBAL__N_116itanium_dem" - "angle9LocalNameE\00std\00N12_GLOBAL__N_116itanium_demangle12CtorDtor" - "NameE\00basic_istream\00basic_ostream\00basic_iostream\00std::basic_stri" - "ng, std::allocator >\00std::bas" - "ic_istream >\00std::basic_ostream >\00std::basic_iostream >\00N12_GLOBAL__N_116itanium_demangle27ExpandedSpecia" - "lSubstitutionE\00N12_GLOBAL__N_116itanium_demangle10NestedNameE\00::" - "*\00N12_GLOBAL__N_116itanium_demangle19PointerToMemberTypeE\00[\00N12_" - "GLOBAL__N_116itanium_demangle9ArrayTypeE\00Dv\00 vector[\00N12_GLOBAL_" - "_N_116itanium_demangle10VectorTypeE\00pixel vector[\00N12_GLOBAL__N_" - "116itanium_demangle15PixelVectorTypeE\00decltype(\00double\00unsigned " - "long long\00objcproto\00 const\00 volatile\00 restrict\00N12_GLOBAL__N_116" - "itanium_demangle8QualTypeE\00N12_GLOBAL__N_116itanium_demangle17Ve" - "ndorExtQualTypeE\00N12_GLOBAL__N_116itanium_demangle13ObjCProtoNam" - "eE\00Do\00noexcept\00DO\00Dw\00Dx\00RE\00OE\00 &\00 &&\00N12_GLOBAL__N_116itanium_de" - "mangle12FunctionTypeE\00throw(\00N12_GLOBAL__N_116itanium_demangle20" - "DynamicExceptionSpecE\00noexcept(\00N12_GLOBAL__N_116itanium_demangl" - "e12NoexceptSpecE\00N12_GLOBAL__N_116itanium_demangle11SpecialNameE" - "\00N12_GLOBAL__N_116itanium_demangle9DotSuffixE\00Ua9enable_ifI\00N12_" - "GLOBAL__N_116itanium_demangle16FunctionEncodingE\00 [enable_if:\00N1" - "2_GLOBAL__N_116itanium_demangle12EnableIfAttrE\00thread-local wrap" - "per routine for \00reference temporary for \00guard variable for \00no" - "n-virtual thunk to \00virtual thunk to \00thread-local initializatio" - "n routine for \00construction vtable for \00-in-\00N12_GLOBAL__N_116it" - "anium_demangle21CtorVtableSpecialNameE\00covariant return thunk to" - " \00typeinfo name for \00typeinfo for \00VTT for \00vtable for \00St11logi" - "c_error\00St12length_error\00N10__cxxabiv117__pbase_type_infoE\00N10__" - "cxxabiv119__pointer_type_infoE\00N10__cxxabiv123__fundamental_type" - "_infoE\00v\00c\00h\00N10__cxxabiv121__vmi_class_type_infoE") + "naLiteEE9ContainerE\00/home/piotrsikora/Google/envoy/api/wasm/cpp/" + "struct_lite.pb.cc\00/usr/local/include/google/protobuf/repeated_fi" + "eld.h\00CHECK failed: (index) >= (0): \00CHECK failed: (index) < (cu" + "rrent_size_): \00/usr/local/include/google/protobuf/map.h\00CHECK fa" + "iled: (bucket_index_ & 1) == (0): \00CHECK failed: m_->index_of_fi" + "rst_non_null_ == m_->num_buckets_ || m_->table_[m_->index_of_fir" + "st_non_null_] != NULL: \00CHECK failed: !tree->empty(): \00CHECK fai" + "led: node_ != NULL && m_ != NULL: \00google.protobuf.Value.string_" + "value\00google.protobuf.Struct.FieldsEntry.key\00CHECK failed: (&fro" + "m) != (this): \00CHECK failed: (&other) != (this): \00N6google8proto" + "buf27Struct_FieldsEntry_DoNotUseE\00N6google8protobuf8internal12Ma" + "pEntryLiteINS0_27Struct_FieldsEntry_DoNotUseENSt3__212basic_stri" + "ngIcNS4_11char_traitsIcEENS4_9allocatorIcEEEENS0_5ValueELNS1_14W" + "ireFormatLite9FieldTypeE9ELSD_11ELi0EEE\00N6google8protobuf8intern" + "al12MapEntryImplINS0_27Struct_FieldsEntry_DoNotUseENS0_11Message" + "LiteENSt3__212basic_stringIcNS5_11char_traitsIcEENS5_9allocatorI" + "cEEEENS0_5ValueELNS1_14WireFormatLite9FieldTypeE9ELSE_11ELi0EEE\00" + "CHECK failed: (it.m_) == (this): \00CHECK failed: TableEntryIsNonE" + "mptyList(b): \00CHECK failed: TableEntryIsTree(b): \00CHECK failed: " + "GetArenaNoVirtual() == NULL: \00CHECK failed: index_of_first_non_n" + "ull_ == num_buckets_ || table_[index_of_first_non_null_] != NULL" + ": \00CHECK failed: find(*KeyPtrFromNodePtr(node)) == end(): \00CHECK" + " failed: (count) <= (kMaxLength): \00CHECK failed: (result.bucket_" + "index_) == (b & ~static_cast(1)): \00CHECK failed: (tab" + "le_[b]) == (table_[b ^ 1]): \00CHECK failed: !TableEntryIsTree(b) " + "&& !TableEntryIsTree(b ^ 1): \00CHECK failed: (count) == (tree->si" + "ze()): \00CHECK failed: (new_num_buckets) >= (kMinTableSize): \00CHE" + "CK failed: n >= kMinTableSize: \00CHECK failed: (n & (n - 1)) == (" + "0): \00CHECK failed: table_[b] == table_[b + 1] && (b & 1) == 0: \00" + "N6google8protobuf3MapINSt3__212basic_stringIcNS2_11char_traitsIc" + "EENS2_9allocatorIcEEEENS0_5ValueEE8InnerMapE\00N6google8protobuf4h" + "ashINSt3__212basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIc" + "EEEEEE\00f == NULL || dynamic_cast(f) != NULL\00/usr/local/inclu" + "de/google/protobuf/stubs/casts.h\00down_cast\00google.protobuf.Struc" + "t\00N6google8protobuf6StructE\00N6google8protobuf5ValueE\00N6google8pr" + "otobuf8internal12MapEntryImplINS0_27Struct_FieldsEntry_DoNotUseE" + "NS0_11MessageLiteENSt3__212basic_stringIcNS5_11char_traitsIcEENS" + "5_9allocatorIcEEEENS0_5ValueELNS1_14WireFormatLite9FieldTypeE9EL" + "SE_11ELi0EE15MapEntryWrapperE\00CHECK failed: (n) >= (0): \00google." + "protobuf.ListValue\00N6google8protobuf9ListValueE\00google.protobuf." + "Value\00no context factory for root_id: \00N6google8protobuf14FatalE" + "xceptionE\00google/protobuf/stubs/common.cc\00This program requires " + "version \00%d.%d.%d\00 of the Protocol Buffer runtime library, but t" + "he installed version is \00. Please update your library. If you " + "compiled the program yourself, make sure that your headers are f" + "rom the same version of Protocol Buffers as your link-time libra" + "ry. (Version verification failed in \"\00\".)\00This program was comp" + "iled against version \00 of the Protocol Buffer runtime library, w" + "hich is not compatible with the installed version (\00). Contact " + "the program author for an update. If you compiled the program y" + "ourself, make sure that your headers are from the same version o" + "f Protocol Buffers as your link-time library. (Version verifica" + "tion failed in \"\00[libprotobuf %s %s:%d] %s\n\00INFO\00WARNING\00ERROR\00F" + "ATAL\00allocator::allocate(size_t n) 'n' exceeds maximum suppor" + "ted size\00%d\00%lu\00google/protobuf/arena.cc\00CHECK failed: (min_byte" + "s) <= (std::numeric_limits::max() - kBlockHeaderSize): \00" + "google/protobuf/generated_message_util.cc\00Not implemented field " + "number \00 with type \00CHECK failed: (scc->visit_status.load(std::m" + "emory_order_relaxed)) == (SCCInfoBase::kRunning): \00google/protob" + "uf/message_lite.cc\00CHECK failed: !coded_out.HadError(): \00(cannot" + " determine missing fields for lite message)\00N6google8protobuf11M" + "essageLiteE\00parse\00Can't \00 message of type \"\00\" because it is miss" + "ing required fields: \00Exceeded maximum protobuf size of 2GB: \00CH" + "ECK failed: (byte_size_before_serialization) == (byte_size_after" + "_serialization): \00 was modified concurrently during serializatio" + "n.\00CHECK failed: (bytes_produced_by_serialization) == (byte_size" + "_before_serialization): \00Byte size calculation and serialization" + " were inconsistent. This may indicate a bug in protocol buffers" + " or it may be caused by concurrent modification of \00This shouldn" + "'t be called if all the sizes are equal.\00google/protobuf/repeate" + "d_field.cc\00CHECK failed: (new_size) <= ((std::numeric_limits::max() - kRepHeaderSize) / sizeof(old_rep->elements[0])): \00" + "Requested size is too large to fit into size_t.\00google/protobuf/" + "wire_format_lite.cc\00CHECK failed: (value.size()) <= (kint32max):" + " \00serializing\00parsing\00 '%s'\00String field\00 contains invalid \00UTF-" + "8 data when \00 a protocol \00buffer. Use the 'bytes' type if you in" + "tend to send raw \00bytes. \00google/protobuf/io/coded_stream.cc\00CHE" + "CK failed: (buffer_size) >= (0): \00A protocol message was rejecte" + "d because it was too big (more than \00 bytes). To increase the l" + "imit (or to disable these warnings), see CodedInputStream::SetTo" + "talBytesLimit() in google/protobuf/io/coded_stream.h.\00google/pro" + "tobuf/io/zero_copy_stream_impl_lite.cc\00CHECK failed: (count) >= " + "(0): \00CHECK failed: (last_returned_size_) > (0): \00BackUp() can o" + "nly be called after a successful Next().\00CHECK failed: (count) <" + "= (last_returned_size_): \00N6google8protobuf2io17ArrayOutputStrea" + "mE\00CHECK failed: target_ != NULL: \00CHECK failed: (count) <= (tar" + "get_->size()): \00Cannot allocate buffer larger than kint32max for" + " \00StringOutputStream.\00N6google8protobuf2io18StringOutputStreamE\00" + "google/protobuf/io/zero_copy_stream.cc\00This ZeroCopyOutputStream" + " doesn't support aliasing. Reaching here usually means a ZeroCop" + "yOutputStream implementation bug.\00N6google8protobuf2io20ZeroCopy" + "OutputStreamE\00-+ 0X0x\00(null)\00-0X+0X 0X-0x+0x 0x\00inf\00INF\00nan\00NA" + "N\00std::bad_function_call\00NSt3__217bad_function_callE\00mutex lock " + "failed\00%u\00terminating with %s exception of type %s: %s\00terminati" + "ng with %s exception of type %s\00terminating with %s foreign exce" + "ption\00terminating\00uncaught\00St9exception\00N10__cxxabiv116__shim_ty" + "pe_infoE\00St9type_info\00N10__cxxabiv120__si_class_type_infoE\00N10__" + "cxxabiv117__class_type_infoE\00terminate_handler unexpectedly retu" + "rned\00_Z\00___Z\00_block_invoke\00invocation function for block in \00voi" + "d\00bool\00char\00signed char\00unsigned char\00short\00unsigned short\00int\00u" + "nsigned int\00long\00unsigned long\00long long\00__int128\00unsigned __int" + "128\00float\00long double\00__float128\00...\00decimal64\00decimal128\00decima" + "l32\00decimal16\00char32_t\00char16_t\00auto\00decltype(auto)\00std::nullptr" + "_t\00[abi:\00]\00N12_GLOBAL__N_116itanium_demangle10AbiTagAttrE\00N12_GL" + "OBAL__N_116itanium_demangle4NodeE\00allocator\00basic_string\00string\00" + "istream\00ostream\00iostream\00std::allocator\00std::basic_string\00std::s" + "tring\00std::istream\00std::ostream\00std::iostream\00N12_GLOBAL__N_116i" + "tanium_demangle19SpecialSubstitutionE\00 imaginary\00N12_GLOBAL__N_1" + "16itanium_demangle20PostfixQualifiedTypeE\00 complex\00)\00 \00(\00&\00&&\00N1" + "2_GLOBAL__N_116itanium_demangle13ReferenceTypeE\00objc_object\00*\00id" + "<\00>\00N12_GLOBAL__N_116itanium_demangle11PointerTypeE\00N12_GLOBAL__" + "N_116itanium_demangle20NameWithTemplateArgsE\00<\00, \00N12_GLOBAL__N_" + "116itanium_demangle12TemplateArgsE\00N12_GLOBAL__N_116itanium_dema" + "ngle13ParameterPackE\00wchar_t\00b0E\00b1E\00u\00l\00ul\00ll\00ull\00N12_GLOBAL__N" + "_116itanium_demangle15IntegerCastExprE\00%LaL\00N12_GLOBAL__N_116ita" + "nium_demangle16FloatLiteralImplIeEE\00%a\00N12_GLOBAL__N_116itanium_" + "demangle16FloatLiteralImplIdEE\00%af\00N12_GLOBAL__N_116itanium_dema" + "ngle16FloatLiteralImplIfEE\00true\00false\00N12_GLOBAL__N_116itanium_d" + "emangle8BoolExprE\00-\00N12_GLOBAL__N_116itanium_demangle14IntegerLi" + "teralE\00N12_GLOBAL__N_116itanium_demangle20TemplateArgumentPackE\00" + "gs\00&=\00=\00alignof (\00,\00~\00.*\00/\00/=\00^\00^=\00==\00>=\00<=\00<<\00<<=\00-=\00*=\00--\00!=\00!" + "\00||\00|\00|=\00->*\00+\00+=\00++\00->\00%\00%=\00>>\00>>=\00sizeof (\00typeid (\00throw\00thro" + "w \00N12_GLOBAL__N_116itanium_demangle9ThrowExprE\00N12_GLOBAL__N_11" + "6itanium_demangle12InitListExprE\00N12_GLOBAL__N_116itanium_demang" + "le13NodeArrayNodeE\00sizeof... (\00N12_GLOBAL__N_116itanium_demangle" + "13EnclosingExprE\00sizeof...(\00N12_GLOBAL__N_116itanium_demangle22P" + "arameterPackExpansionE\00N12_GLOBAL__N_116itanium_demangle19Sizeof" + "ParamPackExprE\00static_cast\00>(\00N12_GLOBAL__N_116itanium_demangle8" + "CastExprE\00reinterpret_cast\00) ? (\00) : (\00N12_GLOBAL__N_116itanium_" + "demangle15ConditionalExprE\00noexcept (\00nw\00na\00pi\00::operator \00new\00[" + "]\00N12_GLOBAL__N_116itanium_demangle7NewExprE\00N12_GLOBAL__N_116it" + "anium_demangle11PostfixExprE\00 ... \00 = \00N12_GLOBAL__N_116itanium_" + "demangle15BracedRangeExprE\00N12_GLOBAL__N_116itanium_demangle10Br" + "acedExprE\00_GLOBAL__N\00(anonymous namespace)\00N12_GLOBAL__N_116itan" + "ium_demangle8NameTypeE\00)[\00N12_GLOBAL__N_116itanium_demangle18Arr" + "aySubscriptExprE\00.\00N12_GLOBAL__N_116itanium_demangle10MemberExpr" + "E\00srN\00sr\00::\00N12_GLOBAL__N_116itanium_demangle19GlobalQualifiedNa" + "meE\00dn\00on\00operator&&\00operator&\00operator&=\00operator=\00operator()\00o" + "perator,\00operator~\00operator delete[]\00operator*\00operator/\00operato" + "r/=\00operator^\00operator^=\00operator==\00operator>=\00operator>\00operato" + "r[]\00operator<=\00operator<<\00operator<<=\00operator<\00operator-\00operat" + "or-=\00operator*=\00operator--\00operator new[]\00operator!=\00operator!\00o" + "perator new\00operator||\00operator|\00operator|=\00operator->*\00operator" + "+\00operator+=\00operator++\00operator->\00operator?\00operator%\00operator%" + "=\00operator>>\00operator>>=\00operator<=>\00operator\"\" \00N12_GLOBAL__N_1" + "16itanium_demangle15LiteralOperatorE\00operator delete\00operator \00N" + "12_GLOBAL__N_116itanium_demangle22ConversionOperatorTypeE\00N12_GL" + "OBAL__N_116itanium_demangle8DtorNameE\00N12_GLOBAL__N_116itanium_d" + "emangle13QualifiedNameE\00dynamic_cast\00delete\00[] \00N12_GLOBAL__N_11" + "6itanium_demangle10DeleteExprE\00cv\00)(\00N12_GLOBAL__N_116itanium_de" + "mangle14ConversionExprE\00N12_GLOBAL__N_116itanium_demangle8CallEx" + "prE\00const_cast\00N12_GLOBAL__N_116itanium_demangle10PrefixExprE\00) " + "\00 (\00N12_GLOBAL__N_116itanium_demangle10BinaryExprE\00aa\00an\00aN\00aS\00c" + "m\00ds\00dv\00dV\00eo\00eO\00eq\00ge\00gt\00le\00ls\00lS\00lt\00mi\00mI\00ml\00mL\00ne\00oo\00or\00oR\00pl" + "\00pL\00rm\00rM\00rs\00rS\00... \00 ...\00N12_GLOBAL__N_116itanium_demangle8Fold" + "ExprE\00fp\00fL\00N12_GLOBAL__N_116itanium_demangle13FunctionParamE\00N1" + "2_GLOBAL__N_116itanium_demangle24ForwardTemplateReferenceE\00Ts\00st" + "ruct\00Tu\00union\00Te\00enum\00N12_GLOBAL__N_116itanium_demangle22Elabora" + "tedTypeSpefTypeE\00StL\00St\00std::\00N12_GLOBAL__N_116itanium_demangle1" + "6StdQualifiedNameE\00DC\00N12_GLOBAL__N_116itanium_demangle21Structu" + "redBindingNameE\00Ut\00Ul\00vE\00'lambda\00'(\00N12_GLOBAL__N_116itanium_dem" + "angle15ClosureTypeNameE\00'unnamed\00'\00N12_GLOBAL__N_116itanium_dema" + "ngle15UnnamedTypeNameE\00string literal\00N12_GLOBAL__N_116itanium_d" + "emangle9LocalNameE\00std\00N12_GLOBAL__N_116itanium_demangle12CtorDt" + "orNameE\00basic_istream\00basic_ostream\00basic_iostream\00std::basic_st" + "ring, std::allocator >\00std::b" + "asic_istream >\00std::basic_ostream >\00std::basic_iostream >\00N12_GLOBAL__N_116itanium_demangle27ExpandedSpec" + "ialSubstitutionE\00N12_GLOBAL__N_116itanium_demangle10NestedNameE\00" + "::*\00N12_GLOBAL__N_116itanium_demangle19PointerToMemberTypeE\00[\00N1" + "2_GLOBAL__N_116itanium_demangle9ArrayTypeE\00Dv\00 vector[\00N12_GLOBA" + "L__N_116itanium_demangle10VectorTypeE\00pixel vector[\00N12_GLOBAL__" + "N_116itanium_demangle15PixelVectorTypeE\00decltype(\00double\00unsigne" + "d long long\00objcproto\00 const\00 volatile\00 restrict\00N12_GLOBAL__N_1" + "16itanium_demangle8QualTypeE\00N12_GLOBAL__N_116itanium_demangle17" + "VendorExtQualTypeE\00N12_GLOBAL__N_116itanium_demangle13ObjCProtoN" + "ameE\00Do\00noexcept\00DO\00Dw\00Dx\00RE\00OE\00 &\00 &&\00N12_GLOBAL__N_116itanium_" + "demangle12FunctionTypeE\00throw(\00N12_GLOBAL__N_116itanium_demangle" + "20DynamicExceptionSpecE\00noexcept(\00N12_GLOBAL__N_116itanium_deman" + "gle12NoexceptSpecE\00N12_GLOBAL__N_116itanium_demangle11SpecialNam" + "eE\00N12_GLOBAL__N_116itanium_demangle9DotSuffixE\00Ua9enable_ifI\00N1" + "2_GLOBAL__N_116itanium_demangle16FunctionEncodingE\00 [enable_if:\00" + "N12_GLOBAL__N_116itanium_demangle12EnableIfAttrE\00thread-local wr" + "apper routine for \00reference temporary for \00guard variable for \00" + "non-virtual thunk to \00virtual thunk to \00thread-local initializat" + "ion routine for \00construction vtable for \00-in-\00N12_GLOBAL__N_116" + "itanium_demangle21CtorVtableSpecialNameE\00covariant return thunk " + "to \00typeinfo name for \00typeinfo for \00VTT for \00vtable for \00St11lo" + "gic_error\00St12length_error\00N10__cxxabiv117__pbase_type_infoE\00N10" + "__cxxabiv119__pointer_type_infoE\00N10__cxxabiv123__fundamental_ty" + "pe_infoE\00v\00c\00h\00N10__cxxabiv121__vmi_class_type_infoE") (func $globalCtors (type $8) call $__GLOBAL__sub_I_metadata_cpp_cc @@ -2019,7 +2019,7 @@ i32.store offset=8 local.get $2 local.get $5 - i32.const 18759 + i32.const 18761 call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc local.tee $0 i64.load align=4 @@ -2245,7 +2245,7 @@ i32.const 3 i32.store local.get $2 - i32.const 12001 + i32.const 12003 i32.store offset=4 local.get $2 i32.const 1058 @@ -2360,7 +2360,7 @@ i32.store offset=8 local.get $5 local.get $6 - i32.const 18759 + i32.const 18761 call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc local.tee $0 i64.load align=4 @@ -11393,7 +11393,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 12996 + i32.const 12998 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -11527,19 +11527,19 @@ i32.const 25 i32.store offset=4 local.get $1 - i32.const 14283 + i32.const 14285 i64.load align=1 i64.store align=1 local.get $1 - i32.const 14291 + i32.const 14293 i64.load align=1 i64.store offset=8 align=1 local.get $1 - i32.const 14299 + i32.const 14301 i64.load align=1 i64.store offset=16 align=1 local.get $1 - i32.const 14307 + i32.const 14309 i32.load8_s i32.store8 offset=24 local.get $1 @@ -11651,10 +11651,10 @@ local.get $1 call $__ZN6google8protobuf9ListValue9MergeFromERKS1_ else - i32.const 13849 - i32.const 13890 + i32.const 13851 + i32.const 13892 i32.const 92 - i32.const 13939 + i32.const 13941 call $___assert_fail end ;; $if ) @@ -12253,7 +12253,7 @@ i32.const 3 i32.store local.get $3 - i32.const 11876 + i32.const 11878 i32.store offset=4 local.get $3 i32.const 1505 @@ -12265,7 +12265,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 11928 + i32.const 11930 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -12295,7 +12295,7 @@ i32.const 3 i32.store local.get $2 - i32.const 11876 + i32.const 11878 i32.store offset=4 local.get $2 i32.const 1506 @@ -12307,7 +12307,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 11959 + i32.const 11961 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -12965,7 +12965,7 @@ i32.const 3 i32.store local.get $3 - i32.const 12001 + i32.const 12003 i32.store offset=4 local.get $3 i32.const 418 @@ -12977,7 +12977,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 12085 + i32.const 12087 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -13063,7 +13063,7 @@ i32.const 3 i32.store local.get $2 - i32.const 12001 + i32.const 12003 i32.store offset=4 local.get $2 i32.const 427 @@ -13075,7 +13075,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 12202 + i32.const 12204 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -13146,7 +13146,7 @@ i32.const 3 i32.store local.get $2 - i32.const 12001 + i32.const 12003 i32.store offset=4 local.get $2 i32.const 451 @@ -13158,7 +13158,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 12042 + i32.const 12044 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -13294,7 +13294,7 @@ i32.const 3 i32.store local.get $3 - i32.const 12001 + i32.const 12003 i32.store offset=4 local.get $3 i32.const 476 @@ -13306,7 +13306,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 12233 + i32.const 12235 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -13671,10 +13671,10 @@ local.get $1 call $__ZN6google8protobuf8internal12MapEntryImplINS0_27Struct_FieldsEntry_DoNotUseENS0_11MessageLiteENSt3__212basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEENS0_5ValueELNS1_14WireFormatLite9FieldTypeE9ELSE_11ELi0EE17MergeFromInternalERKSF_ else - i32.const 13849 - i32.const 13890 + i32.const 13851 + i32.const 13892 i32.const 92 - i32.const 13939 + i32.const 13941 call $___assert_fail end ;; $if ) @@ -14688,7 +14688,7 @@ i32.and end ;; $if_11 i32.const 0 - i32.const 12277 + i32.const 12279 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ br_if $loop i32.const 0 @@ -15428,7 +15428,7 @@ local.get $6 select i32.const 0 - i32.const 12312 + i32.const 12314 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ select br $block_4 @@ -16892,7 +16892,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 12351 + i32.const 12353 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -17226,7 +17226,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 12351 + i32.const 12353 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -17421,7 +17421,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 12351 + i32.const 12353 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -17518,7 +17518,7 @@ i32.const 3 i32.store local.get $2 - i32.const 11876 + i32.const 11878 i32.store offset=4 local.get $2 i32.const 1586 @@ -17530,7 +17530,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 12385 + i32.const 12387 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -17758,7 +17758,7 @@ i32.const 3 i32.store local.get $2 - i32.const 12001 + i32.const 12003 i32.store offset=4 local.get $2 i32.const 601 @@ -17770,7 +17770,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 12882 + i32.const 12884 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -17832,7 +17832,7 @@ i32.const 3 i32.store local.get $2 - i32.const 12001 + i32.const 12003 i32.store offset=4 local.get $2 i32.const 607 @@ -17844,7 +17844,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 12916 + i32.const 12918 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -17887,7 +17887,7 @@ i32.const 3 i32.store local.get $3 - i32.const 12001 + i32.const 12003 i32.store offset=4 local.get $3 i32.const 612 @@ -17899,7 +17899,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 12960 + i32.const 12962 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -18980,7 +18980,7 @@ i32.const 0 i32.store offset=20 local.get $1 - i32.const 12996 + i32.const 12998 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $1 @@ -19337,7 +19337,7 @@ i32.const 3 i32.store local.get $2 - i32.const 12001 + i32.const 12003 i32.store offset=4 local.get $2 i32.const 765 @@ -19349,7 +19349,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 13466 + i32.const 13468 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -19538,7 +19538,7 @@ i32.const 3 i32.store local.get $4 - i32.const 12001 + i32.const 12003 i32.store offset=4 local.get $4 i32.const 672 @@ -19550,7 +19550,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 13040 + i32.const 13042 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -19576,7 +19576,7 @@ i32.const 3 i32.store local.get $4 - i32.const 12001 + i32.const 12003 i32.store offset=4 local.get $4 i32.const 678 @@ -19588,7 +19588,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 13141 + i32.const 13143 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -19670,7 +19670,7 @@ i32.const 3 i32.store local.get $6 - i32.const 12001 + i32.const 12003 i32.store offset=4 local.get $6 i32.const 878 @@ -19682,7 +19682,7 @@ i32.const 0 i32.store offset=20 local.get $6 - i32.const 13197 + i32.const 13199 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $6 @@ -19714,7 +19714,7 @@ i32.const 3 i32.store local.get $5 - i32.const 12001 + i32.const 12003 i32.store offset=4 local.get $5 i32.const 685 @@ -19726,7 +19726,7 @@ i32.const 0 i32.store offset=20 local.get $5 - i32.const 13237 + i32.const 13239 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $5 @@ -19843,7 +19843,7 @@ i32.const 3 i32.store local.get $2 - i32.const 12001 + i32.const 12003 i32.store offset=4 local.get $2 i32.const 837 @@ -19855,7 +19855,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 13359 + i32.const 13361 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -20127,7 +20127,7 @@ i32.const 3 i32.store local.get $2 - i32.const 12001 + i32.const 12003 i32.store offset=4 local.get $2 i32.const 848 @@ -20139,7 +20139,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 13424 + i32.const 13426 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -20201,7 +20201,7 @@ i32.const 3 i32.store local.get $4 - i32.const 12001 + i32.const 12003 i32.store offset=4 local.get $4 i32.const 713 @@ -20213,7 +20213,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 13312 + i32.const 13314 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -21498,7 +21498,7 @@ i32.const 3 i32.store local.get $2 - i32.const 12001 + i32.const 12003 i32.store offset=4 local.get $2 i32.const 926 @@ -21510,7 +21510,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 13519 + i32.const 13521 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -21526,7 +21526,7 @@ i32.const 3 i32.store local.get $3 - i32.const 12001 + i32.const 12003 i32.store offset=4 local.get $3 i32.const 927 @@ -21538,7 +21538,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 13554 + i32.const 13556 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -22119,7 +22119,7 @@ i32.const 3 i32.store local.get $5 - i32.const 12001 + i32.const 12003 i32.store offset=4 local.get $5 i32.const 527 @@ -22131,7 +22131,7 @@ i32.const 0 i32.store offset=20 local.get $5 - i32.const 13591 + i32.const 13593 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $5 @@ -22407,7 +22407,7 @@ i32.const 0 i32.store offset=20 local.get $1 - i32.const 12996 + i32.const 12998 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $1 @@ -22489,19 +22489,19 @@ i32.const 22 i32.store offset=4 local.get $1 - i32.const 13949 + i32.const 13951 i64.load align=1 i64.store align=1 local.get $1 - i32.const 13957 + i32.const 13959 i64.load align=1 i64.store offset=8 align=1 local.get $1 - i32.const 13965 + i32.const 13967 i32.load align=1 i32.store offset=16 align=1 local.get $1 - i32.const 13969 + i32.const 13971 i32.load16_s align=1 i32.store16 offset=20 align=1 local.get $1 @@ -22579,10 +22579,10 @@ local.get $1 call $__ZN6google8protobuf6Struct9MergeFromERKS1_ else - i32.const 13849 - i32.const 13890 + i32.const 13851 + i32.const 13892 i32.const 92 - i32.const 13939 + i32.const 13941 call $___assert_fail end ;; $if ) @@ -22761,7 +22761,7 @@ local.get $2 local.get $4 i32.const 1 - i32.const 12312 + i32.const 12314 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ drop local.get $5 @@ -22969,7 +22969,7 @@ local.get $2 local.get $4 i32.const 1 - i32.const 12312 + i32.const 12314 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ drop local.get $8 @@ -26182,7 +26182,7 @@ i32.const 3 i32.store local.get $1 - i32.const 11876 + i32.const 11878 i32.store offset=4 local.get $1 i32.const 1567 @@ -26194,7 +26194,7 @@ i32.const 0 i32.store offset=20 local.get $1 - i32.const 14256 + i32.const 14258 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $1 @@ -26398,19 +26398,19 @@ i32.const 21 i32.store offset=4 local.get $1 - i32.const 14338 + i32.const 14340 i64.load align=1 i64.store align=1 local.get $1 - i32.const 14346 + i32.const 14348 i64.load align=1 i64.store offset=8 align=1 local.get $1 - i32.const 14354 + i32.const 14356 i32.load align=1 i32.store offset=16 align=1 local.get $1 - i32.const 14358 + i32.const 14360 i32.load8_s i32.store8 offset=20 local.get $1 @@ -26486,10 +26486,10 @@ local.get $1 call $__ZN6google8protobuf5Value9MergeFromERKS1_ else - i32.const 13849 - i32.const 13890 + i32.const 13851 + i32.const 13892 i32.const 92 - i32.const 13939 + i32.const 13941 call $___assert_fail end ;; $if ) @@ -26552,7 +26552,7 @@ local.get $2 local.get $3 i32.const 1 - i32.const 12277 + i32.const 12279 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ drop local.get $0 @@ -34945,7 +34945,7 @@ i32.store local.get $2 i32.const 128 - i32.const 15259 + i32.const 15261 local.get $3 call $_snprintf drop @@ -34983,7 +34983,7 @@ i32.store local.get $2 i32.const 128 - i32.const 17753 + i32.const 17755 local.get $3 call $_snprintf drop @@ -35021,7 +35021,7 @@ i32.store local.get $2 i32.const 128 - i32.const 15262 + i32.const 15264 local.get $3 call $_snprintf drop @@ -35310,7 +35310,7 @@ i32.const 3 i32.store local.get $3 - i32.const 15266 + i32.const 15268 i32.store offset=4 local.get $3 i32.const 116 @@ -35322,7 +35322,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 15291 + i32.const 15293 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -46186,7 +46186,7 @@ i32.const 3 i32.store local.get $11 - i32.const 15378 + i32.const 15380 i32.store offset=4 local.get $11 i32.const 571 @@ -46198,7 +46198,7 @@ i32.const 0 i32.store offset=20 local.get $11 - i32.const 15420 + i32.const 15422 call $__ZN6google8protobuf8internal10LogMessagelsEPKc local.get $4 call $__ZN6google8protobuf8internal10LogMessagelsEi @@ -46235,7 +46235,7 @@ i32.const 3 i32.store local.get $1 - i32.const 15378 + i32.const 15380 i32.store offset=4 local.get $1 i32.const 534 @@ -46247,12 +46247,12 @@ i32.const 0 i32.store offset=20 local.get $1 - i32.const 15420 + i32.const 15422 call $__ZN6google8protobuf8internal10LogMessagelsEPKc local.get $0 i32.load offset=4 call $__ZN6google8protobuf8internal10LogMessagelsEj - i32.const 15450 + i32.const 15452 call $__ZN6google8protobuf8internal10LogMessagelsEPKc local.get $0 i32.load offset=12 @@ -46312,7 +46312,7 @@ i32.const 3 i32.store local.get $0 - i32.const 15378 + i32.const 15380 i32.store offset=4 local.get $0 i32.const 801 @@ -46324,7 +46324,7 @@ i32.const 0 i32.store offset=20 local.get $0 - i32.const 15462 + i32.const 15464 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $0 @@ -46461,31 +46461,31 @@ i32.const 50 i32.store offset=4 local.get $1 - i32.const 15627 + i32.const 15629 i64.load align=1 i64.store align=1 local.get $1 - i32.const 15635 + i32.const 15637 i64.load align=1 i64.store offset=8 align=1 local.get $1 - i32.const 15643 + i32.const 15645 i64.load align=1 i64.store offset=16 align=1 local.get $1 - i32.const 15651 + i32.const 15653 i64.load align=1 i64.store offset=24 align=1 local.get $1 - i32.const 15659 + i32.const 15661 i64.load align=1 i64.store offset=32 align=1 local.get $1 - i32.const 15667 + i32.const 15669 i64.load align=1 i64.store offset=40 align=1 local.get $1 - i32.const 15675 + i32.const 15677 i32.load16_s align=1 i32.store16 offset=48 align=1 local.get $1 @@ -46622,7 +46622,7 @@ i32.const 3 i32.store local.get $4 - i32.const 15557 + i32.const 15559 i32.store offset=4 local.get $4 i32.const 373 @@ -46634,7 +46634,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 15589 + i32.const 15591 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -46763,7 +46763,7 @@ i32.const 2 i32.store local.get $6 - i32.const 15557 + i32.const 15559 i32.store offset=4 local.get $6 i32.const 121 @@ -46781,15 +46781,15 @@ i32.const 0 i32.store offset=8 local.get $5 - i32.const 15716 + i32.const 15718 call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc drop local.get $5 - i32.const 15710 + i32.const 15712 call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc drop local.get $5 - i32.const 15723 + i32.const 15725 call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc drop local.get $4 @@ -46832,7 +46832,7 @@ call $_free end ;; $if_1 local.get $5 - i32.const 15742 + i32.const 15744 call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc drop local.get $4 @@ -46927,7 +46927,7 @@ i32.const 3 i32.store local.get $6 - i32.const 15557 + i32.const 15559 i32.store offset=4 local.get $6 i32.const 68 @@ -46939,7 +46939,7 @@ i32.const 0 i32.store offset=20 local.get $6 - i32.const 15824 + i32.const 15826 call $__ZN6google8protobuf8internal10LogMessagelsEPKc local.set $1 local.get $5 @@ -46955,7 +46955,7 @@ local.get $1 local.get $5 call $__ZN6google8protobuf8internal10LogMessagelsERKNSt3__212basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEE - i32.const 15908 + i32.const 15910 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $5 @@ -46978,7 +46978,7 @@ i32.const 3 i32.store local.get $4 - i32.const 15557 + i32.const 15559 i32.store offset=4 local.get $4 i32.const 75 @@ -46990,7 +46990,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 16198 + i32.const 16200 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -47007,7 +47007,7 @@ i32.const 3 i32.store local.get $0 - i32.const 15557 + i32.const 15559 i32.store offset=4 local.get $0 i32.const 71 @@ -47019,9 +47019,9 @@ i32.const 0 i32.store offset=20 local.get $1 - i32.const 15957 + i32.const 15959 call $__ZN6google8protobuf8internal10LogMessagelsEPKc - i32.const 16043 + i32.const 16045 call $__ZN6google8protobuf8internal10LogMessagelsEPKc local.set $0 local.get $5 @@ -47037,7 +47037,7 @@ local.get $0 local.get $5 call $__ZN6google8protobuf8internal10LogMessagelsERKNSt3__212basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEE - i32.const 20451 + i32.const 20453 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $5 @@ -47055,7 +47055,7 @@ i32.const 3 i32.store local.get $4 - i32.const 15557 + i32.const 15559 i32.store offset=4 local.get $4 i32.const 75 @@ -47067,7 +47067,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 16198 + i32.const 16200 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -47118,7 +47118,7 @@ i32.const 2 i32.store local.get $2 - i32.const 15557 + i32.const 15559 i32.store offset=4 local.get $2 i32.const 289 @@ -47130,7 +47130,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 15784 + i32.const 15786 call $__ZN6google8protobuf8internal10LogMessagelsEPKc local.get $3 call $__ZN6google8protobuf8internal10LogMessagelsEm @@ -47291,7 +47291,7 @@ i32.const 3 i32.store local.get $3 - i32.const 16251 + i32.const 16253 i32.store offset=4 local.get $3 i32.const 59 @@ -47303,9 +47303,9 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 16285 + i32.const 16287 call $__ZN6google8protobuf8internal10LogMessagelsEPKc - i32.const 16402 + i32.const 16404 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -48988,7 +48988,7 @@ i32.const 3 i32.store local.get $4 - i32.const 16450 + i32.const 16452 i32.store offset=4 local.get $4 i32.const 507 @@ -49000,7 +49000,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 16486 + i32.const 16488 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -49200,7 +49200,7 @@ i32.const 3 i32.store local.get $4 - i32.const 16450 + i32.const 16452 i32.store offset=4 local.get $4 i32.const 516 @@ -49212,7 +49212,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 16486 + i32.const 16488 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -49891,13 +49891,13 @@ i32.load offset=8 i32.store offset=8 end ;; $if_0 - i32.const 16532 + i32.const 16534 i32.const 0 local.get $2 i32.const 1 i32.eq select - i32.const 16544 + i32.const 16546 local.get $2 select local.set $3 @@ -49909,7 +49909,7 @@ i32.const 2 i32.store local.get $1 - i32.const 16450 + i32.const 16452 i32.store offset=4 local.get $1 i32.const 626 @@ -49921,21 +49921,21 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 16558 + i32.const 16560 call $__ZN6google8protobuf8internal10LogMessagelsEPKc local.get $0 call $__ZN6google8protobuf8internal10LogMessagelsERKNSt3__212basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEE - i32.const 16571 + i32.const 16573 call $__ZN6google8protobuf8internal10LogMessagelsEPKc - i32.const 16590 + i32.const 16592 call $__ZN6google8protobuf8internal10LogMessagelsEPKc local.get $3 call $__ZN6google8protobuf8internal10LogMessagelsEPKc - i32.const 16607 + i32.const 16609 call $__ZN6google8protobuf8internal10LogMessagelsEPKc - i32.const 16620 + i32.const 16622 call $__ZN6google8protobuf8internal10LogMessagelsEPKc - i32.const 16676 + i32.const 16678 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -50771,7 +50771,7 @@ i32.const 3 i32.store local.get $2 - i32.const 16684 + i32.const 16686 i32.store offset=4 local.get $2 i32.const 591 @@ -50783,7 +50783,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 16719 + i32.const 16721 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -50926,7 +50926,7 @@ i32.const 2 i32.store local.get $1 - i32.const 16684 + i32.const 16686 i32.store offset=4 local.get $1 i32.const 190 @@ -50938,12 +50938,12 @@ i32.const 0 i32.store offset=20 local.get $1 - i32.const 16756 + i32.const 16758 call $__ZN6google8protobuf8internal10LogMessagelsEPKc local.get $0 i32.load offset=36 call $__ZN6google8protobuf8internal10LogMessagelsEi - i32.const 16823 + i32.const 16825 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $1 @@ -53407,7 +53407,7 @@ i32.const 3 i32.store local.get $2 - i32.const 16968 + i32.const 16970 i32.store offset=4 local.get $2 i32.const 132 @@ -53419,9 +53419,9 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 17048 + i32.const 17050 call $__ZN6google8protobuf8internal10LogMessagelsEPKc - i32.const 17092 + i32.const 17094 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -53442,7 +53442,7 @@ i32.const 3 i32.store local.get $2 - i32.const 16968 + i32.const 16970 i32.store offset=4 local.get $2 i32.const 134 @@ -53454,7 +53454,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 17147 + i32.const 17149 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -53481,7 +53481,7 @@ i32.const 3 i32.store local.get $3 - i32.const 16968 + i32.const 16970 i32.store offset=4 local.get $3 i32.const 135 @@ -53493,7 +53493,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 17017 + i32.const 17019 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -53549,7 +53549,7 @@ i32.const 3 i32.store local.get $3 - i32.const 16968 + i32.const 16970 i32.store offset=4 local.get $3 i32.const 151 @@ -53561,7 +53561,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 17237 + i32.const 17239 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -53635,7 +53635,7 @@ i32.const 2 i32.store local.get $5 - i32.const 16968 + i32.const 16970 i32.store offset=4 local.get $5 i32.const 164 @@ -53647,9 +53647,9 @@ i32.const 0 i32.store offset=20 local.get $5 - i32.const 17314 + i32.const 17316 call $__ZN6google8protobuf8internal10LogMessagelsEPKc - i32.const 17364 + i32.const 17366 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $5 @@ -53724,7 +53724,7 @@ i32.const 3 i32.store local.get $2 - i32.const 16968 + i32.const 16970 i32.store offset=4 local.get $2 i32.const 182 @@ -53736,7 +53736,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 17017 + i32.const 17019 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -53757,7 +53757,7 @@ i32.const 3 i32.store local.get $2 - i32.const 16968 + i32.const 16970 i32.store offset=4 local.get $2 i32.const 183 @@ -53769,7 +53769,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 17237 + i32.const 17239 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -53799,7 +53799,7 @@ i32.const 3 i32.store local.get $3 - i32.const 16968 + i32.const 16970 i32.store offset=4 local.get $3 i32.const 184 @@ -53811,7 +53811,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 17269 + i32.const 17271 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -53872,7 +53872,7 @@ i32.const 3 i32.store local.get $1 - i32.const 16968 + i32.const 16970 i32.store offset=4 local.get $1 i32.const 189 @@ -53884,7 +53884,7 @@ i32.const 0 i32.store offset=20 local.get $1 - i32.const 17237 + i32.const 17239 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $1 @@ -53939,7 +53939,7 @@ i32.add local.tee $3 i32.const 1024 - i32.const 16552 + i32.const 16554 local.get $2 call $_vsnprintf local.tee $4 @@ -53972,7 +53972,7 @@ i32.store local.get $3 local.get $5 - i32.const 16552 + i32.const 16554 local.get $2 call $_vsnprintf local.tee $1 @@ -54519,7 +54519,7 @@ i32.const 3 i32.store local.get $0 - i32.const 17426 + i32.const 17428 i32.store offset=4 local.get $0 i32.const 47 @@ -54531,7 +54531,7 @@ i32.const 0 i32.store offset=20 local.get $0 - i32.const 17465 + i32.const 17467 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $0 @@ -55500,13 +55500,13 @@ local.tee $1 i64.reinterpret_f64 local.set $25 - i32.const 17649 + i32.const 17651 local.set $18 i32.const 1 else + i32.const 17654 + i32.const 17657 i32.const 17652 - i32.const 17655 - i32.const 17650 local.get $4 i32.const 1 i32.and @@ -55529,8 +55529,8 @@ i64.const 9218868437227405312 i64.eq if $if_0 (result i32) - i32.const 17676 - i32.const 17680 + i32.const 17678 + i32.const 17682 local.get $5 i32.const 32 i32.and @@ -55538,8 +55538,8 @@ i32.ne local.tee $3 select - i32.const 17668 - i32.const 17672 + i32.const 17670 + i32.const 17674 local.get $3 select local.get $1 @@ -56887,7 +56887,7 @@ i32.eqz if $if_54 local.get $0 - i32.const 20451 + i32.const 20453 i32.const 1 call $_out end ;; $if_54 @@ -57046,7 +57046,7 @@ br $block_4 end ;; $if_61 local.get $0 - i32.const 20451 + i32.const 20453 i32.const 1 call $_out local.get $6 @@ -58136,7 +58136,7 @@ local.set $1 i32.const 0 local.set $12 - i32.const 17632 + i32.const 17634 local.set $8 br $block_14 end ;; $block_25 @@ -58152,13 +58152,13 @@ i64.sub local.tee $25 i64.store - i32.const 17632 + i32.const 17634 local.set $8 i32.const 1 else - i32.const 17633 + i32.const 17635 + i32.const 17636 i32.const 17634 - i32.const 17632 local.get $7 i32.const 1 i32.and @@ -58182,7 +58182,7 @@ local.set $25 i32.const 0 local.set $12 - i32.const 17632 + i32.const 17634 local.set $8 br $block_16 end ;; $block_23 @@ -58198,7 +58198,7 @@ local.set $5 i32.const 0 local.set $12 - i32.const 17632 + i32.const 17634 local.set $8 local.get $18 local.set $1 @@ -58207,7 +58207,7 @@ local.get $10 i32.load local.tee $5 - i32.const 17642 + i32.const 17644 local.get $5 select local.tee $6 @@ -58227,7 +58227,7 @@ local.set $5 i32.const 0 local.set $12 - i32.const 17632 + i32.const 17634 local.set $8 local.get $1 local.get $6 @@ -58288,7 +58288,7 @@ local.set $5 i32.const 0 local.set $12 - i32.const 17632 + i32.const 17634 local.set $8 local.get $18 local.set $1 @@ -58316,11 +58316,11 @@ local.tee $8 select local.set $12 - i32.const 17632 + i32.const 17634 local.get $6 i32.const 4 i32.shr_u - i32.const 17632 + i32.const 17634 i32.add local.get $8 select @@ -59505,7 +59505,7 @@ local.get $1 i32.store local.get $0 - i32.const 15139 + i32.const 15141 local.get $2 call $_vfprintf drop @@ -66697,7 +66697,7 @@ (func $__ZNKSt3__217bad_function_call4whatEv (type $5) (param $0 i32) (result i32) - i32.const 17684 + i32.const 17686 ) (func $__ZNSt3__212__next_primeEm (type $5) @@ -68634,7 +68634,7 @@ (param $0 i32) (local $1 i32) (local $2 i32) - i32.const 15191 + i32.const 15193 call $_strlen local.tee $2 i32.const 13 @@ -68653,7 +68653,7 @@ i32.const 12 i32.add local.tee $1 - i32.const 15191 + i32.const 15193 local.get $2 i32.const 1 i32.add @@ -69789,7 +69789,7 @@ local.set $0 end ;; $if_0 local.get $0 - i32.const 14360 + i32.const 14362 local.get $1 call $__ZNSt3__211char_traitsIcE4copyEPcPKcm local.get $3 @@ -69836,7 +69836,7 @@ end ;; $if end ;; $loop local.get $0 - i32.const 14360 + i32.const 14362 call $_strlen local.tee $2 local.get $2 @@ -69997,7 +69997,7 @@ local.get $4 i32.const 1 i32.add - i32.const 17753 + i32.const 17755 local.get $5 call $_snprintf local.tee $3 @@ -70111,9 +70111,9 @@ i64.ne if $if_0 local.get $1 - i32.const 17892 + i32.const 17894 i32.store - i32.const 17842 + i32.const 17844 local.get $1 call $_abort_message end ;; $if_0 @@ -70178,7 +70178,7 @@ call_indirect $28 (type $5) local.set $0 local.get $4 - i32.const 17892 + i32.const 17894 i32.store local.get $4 local.get $1 @@ -70186,22 +70186,22 @@ local.get $4 local.get $0 i32.store offset=8 - i32.const 17756 + i32.const 17758 local.get $4 call $_abort_message else local.get $3 - i32.const 17892 + i32.const 17894 i32.store local.get $3 local.get $1 i32.store offset=4 - i32.const 17801 + i32.const 17803 local.get $3 call $_abort_message end ;; $if_3 end ;; $if - i32.const 17880 + i32.const 17882 local.get $2 i32.const 1056 i32.add @@ -71166,7 +71166,7 @@ local.get $3 i32.const 24 i32.add - i32.const 18071 + i32.const 18073 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $3 @@ -71240,7 +71240,7 @@ else block $block (result i32) local.get $2 - i32.const 18074 + i32.const 18076 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $2 @@ -71270,7 +71270,7 @@ local.get $2 if $if_4 (result i32) local.get $4 - i32.const 18079 + i32.const 18081 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $4 @@ -71331,7 +71331,7 @@ i32.const 0 else local.get $0 - i32.const 18093 + i32.const 18095 local.get $3 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_11SpecialNameEJRA34_KcRPNS0_4NodeEEEESC_DpOT0_ end ;; $if_9 @@ -71563,7 +71563,7 @@ i32.const 152 i32.add call_indirect $28 (type $8) - i32.const 18031 + i32.const 18033 local.get $1 call $_abort_message ) @@ -71800,7 +71800,7 @@ i32.const 0 i32.store local.get $5 - i32.const 23426 + i32.const 23428 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -72320,7 +72320,7 @@ i32.add i32.store local.get $0 - i32.const 18127 + i32.const 18129 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_35 @@ -72343,7 +72343,7 @@ i32.add i32.store local.get $0 - i32.const 18132 + i32.const 18134 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_33 @@ -72354,7 +72354,7 @@ i32.add i32.store local.get $0 - i32.const 18137 + i32.const 18139 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_32 @@ -72365,7 +72365,7 @@ i32.add i32.store local.get $0 - i32.const 18142 + i32.const 18144 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_31 @@ -72376,7 +72376,7 @@ i32.add i32.store local.get $0 - i32.const 18154 + i32.const 18156 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_30 @@ -72387,7 +72387,7 @@ i32.add i32.store local.get $0 - i32.const 18168 + i32.const 18170 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_29 @@ -72398,7 +72398,7 @@ i32.add i32.store local.get $0 - i32.const 18174 + i32.const 18176 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_28 @@ -72409,7 +72409,7 @@ i32.add i32.store local.get $0 - i32.const 18189 + i32.const 18191 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_27 @@ -72420,7 +72420,7 @@ i32.add i32.store local.get $0 - i32.const 18193 + i32.const 18195 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_26 @@ -72431,7 +72431,7 @@ i32.add i32.store local.get $0 - i32.const 18206 + i32.const 18208 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_25 @@ -72442,7 +72442,7 @@ i32.add i32.store local.get $0 - i32.const 18211 + i32.const 18213 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_24 @@ -72453,7 +72453,7 @@ i32.add i32.store local.get $0 - i32.const 18225 + i32.const 18227 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_23 @@ -72476,7 +72476,7 @@ i32.add i32.store local.get $0 - i32.const 18235 + i32.const 18237 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_21 @@ -72487,7 +72487,7 @@ i32.add i32.store local.get $0 - i32.const 18244 + i32.const 18246 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_20 @@ -72498,7 +72498,7 @@ i32.add i32.store local.get $0 - i32.const 18262 + i32.const 18264 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_19 @@ -72521,7 +72521,7 @@ i32.add i32.store local.get $0 - i32.const 18268 + i32.const 18270 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_17 @@ -72532,7 +72532,7 @@ i32.add i32.store local.get $0 - i32.const 18280 + i32.const 18282 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_16 @@ -72543,7 +72543,7 @@ i32.add i32.store local.get $0 - i32.const 18291 + i32.const 18293 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_15 @@ -72617,7 +72617,7 @@ i32.add i32.store local.get $0 - i32.const 18295 + i32.const 18297 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_53 @@ -72628,7 +72628,7 @@ i32.add i32.store local.get $0 - i32.const 18305 + i32.const 18307 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_52 @@ -72639,7 +72639,7 @@ i32.add i32.store local.get $0 - i32.const 18316 + i32.const 18318 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_51 @@ -72650,7 +72650,7 @@ i32.add i32.store local.get $0 - i32.const 18326 + i32.const 18328 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_50 @@ -72661,7 +72661,7 @@ i32.add i32.store local.get $0 - i32.const 18336 + i32.const 18338 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_49 @@ -72672,7 +72672,7 @@ i32.add i32.store local.get $0 - i32.const 18345 + i32.const 18347 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_48 @@ -72683,7 +72683,7 @@ i32.add i32.store local.get $0 - i32.const 18354 + i32.const 18356 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_47 @@ -72694,7 +72694,7 @@ i32.add i32.store local.get $0 - i32.const 18359 + i32.const 18361 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_46 @@ -72705,7 +72705,7 @@ i32.add i32.store local.get $0 - i32.const 18374 + i32.const 18376 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_45 @@ -73180,7 +73180,7 @@ i32.const 0 i32.store local.get $3 - i32.const 23127 + i32.const 23129 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $3 @@ -73194,14 +73194,14 @@ if $if (result i32) local.get $6 local.get $0 - i32.const 23130 + i32.const 23132 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ i32.store br $block_0 else block $block_1 (result i32) local.get $4 - i32.const 23139 + i32.const 23141 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $4 @@ -73238,7 +73238,7 @@ br $block_0 end ;; $if_0 local.get $5 - i32.const 23142 + i32.const 23144 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $5 @@ -73301,7 +73301,7 @@ br $block end ;; $block_0 local.get $8 - i32.const 23145 + i32.const 23147 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $8 @@ -73357,7 +73357,7 @@ i32.eqz if $if_4 local.get $9 - i32.const 23148 + i32.const 23150 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $9 @@ -73368,7 +73368,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE br_if $block_7 local.get $10 - i32.const 23151 + i32.const 23153 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $10 @@ -73480,7 +73480,7 @@ else block $block (result i32) local.get $5 - i32.const 22942 + i32.const 22944 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -73775,7 +73775,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfEc if $if_2 (result i32) local.get $0 - i32.const 22906 + i32.const 22908 local.get $1 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_13EnclosingExprEJRA10_KcRPNS0_4NodeERA2_S8_EEESC_DpOT0_ else @@ -73813,7 +73813,7 @@ local.get $1 i32.const 8 i32.add - i32.const 22781 + i32.const 22783 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -74202,7 +74202,7 @@ i32.const 24 i32.add local.tee $5 - i32.const 21837 + i32.const 21839 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -74213,12 +74213,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if local.get $1 - i32.const 21840 + i32.const 21842 call $__ZN12_GLOBAL__N_110StringViewC2EPKc else block $block local.get $3 - i32.const 21847 + i32.const 21849 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -74229,12 +74229,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_0 local.get $1 - i32.const 21850 + i32.const 21852 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $if_0 local.get $4 - i32.const 21856 + i32.const 21858 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -74245,7 +74245,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_1 local.get $1 - i32.const 21859 + i32.const 21861 call $__ZN12_GLOBAL__N_110StringViewC2EPKc end ;; $if_1 end ;; $block @@ -74338,7 +74338,7 @@ i32.load8_s offset=362 if $if_2 local.get $0 - i32.const 18354 + i32.const 18356 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $if_2 @@ -75361,7 +75361,7 @@ i32.add call_indirect $28 (type $3) local.get $4 - i32.const 18389 + i32.const 18391 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -75382,7 +75382,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $5 - i32.const 18395 + i32.const 18397 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -75594,7 +75594,7 @@ $block ;; default end ;; $block_5 local.get $4 - i32.const 18539 + i32.const 18541 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -75606,7 +75606,7 @@ br $block end ;; $block_4 local.get $5 - i32.const 18554 + i32.const 18556 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -75618,7 +75618,7 @@ br $block end ;; $block_3 local.get $6 - i32.const 18572 + i32.const 18574 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -75630,7 +75630,7 @@ br $block end ;; $block_2 local.get $7 - i32.const 18584 + i32.const 18586 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -75642,7 +75642,7 @@ br $block end ;; $block_1 local.get $8 - i32.const 18597 + i32.const 18599 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $8 @@ -75654,7 +75654,7 @@ br $block end ;; $block_0 local.get $3 - i32.const 18610 + i32.const 18612 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -75685,32 +75685,32 @@ $block ;; default end ;; $block_5 local.get $0 - i32.const 18484 + i32.const 18486 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_4 local.get $0 - i32.const 18494 + i32.const 18496 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_3 local.get $0 - i32.const 18507 + i32.const 18509 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_2 local.get $0 - i32.const 18514 + i32.const 18516 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_1 local.get $0 - i32.const 18522 + i32.const 18524 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_0 local.get $0 - i32.const 18530 + i32.const 18532 call $__ZN12_GLOBAL__N_110StringViewC2EPKc end ;; $block ) @@ -75739,7 +75739,7 @@ i32.load local.set $1 local.get $2 - i32.const 18680 + i32.const 18682 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -75855,7 +75855,7 @@ i32.load local.set $1 local.get $2 - i32.const 18748 + i32.const 18750 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -75996,7 +75996,7 @@ call $__ZNK12_GLOBAL__N_116itanium_demangle4Node8hasArrayERNS_12OutputStreamE if $if_0 local.get $7 - i32.const 18759 + i32.const 18761 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $7 @@ -76019,7 +76019,7 @@ br $block end ;; $block_0 local.get $8 - i32.const 18761 + i32.const 18763 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $8 @@ -76030,8 +76030,8 @@ call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE end ;; $block local.get $2 + i32.const 18767 i32.const 18765 - i32.const 18763 local.get $6 i32.load select @@ -76122,7 +76122,7 @@ br $block end ;; $block_0 local.get $2 - i32.const 18757 + i32.const 18759 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $5 local.get $2 @@ -76395,7 +76395,7 @@ i32.load offset=8 local.set $0 local.get $8 - i32.const 18832 + i32.const 18834 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $8 @@ -76416,7 +76416,7 @@ local.get $2 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $9 - i32.const 18836 + i32.const 18838 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $9 @@ -76449,7 +76449,7 @@ call $__ZNK12_GLOBAL__N_116itanium_demangle4Node8hasArrayERNS_12OutputStreamE if $if_0 local.get $5 - i32.const 18759 + i32.const 18761 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -76474,7 +76474,7 @@ br $block_1 end ;; $block_2 local.get $6 - i32.const 18761 + i32.const 18763 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -76485,7 +76485,7 @@ call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE end ;; $block_1 local.get $7 - i32.const 18830 + i32.const 18832 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -76549,7 +76549,7 @@ br $block_1 end ;; $block_2 local.get $3 - i32.const 18757 + i32.const 18759 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $4 local.get $3 @@ -76605,7 +76605,7 @@ i64.load offset=8 align=4 i64.store align=4 local.get $1 - i32.const 18818 + i32.const 18820 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -77247,7 +77247,7 @@ local.get $2 i32.const 16 i32.add - i32.const 18943 + i32.const 18945 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -77281,7 +77281,7 @@ i32.eq if $if_0 local.get $4 - i32.const 18759 + i32.const 18761 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -77292,7 +77292,7 @@ call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE end ;; $if_0 local.get $2 - i32.const 18836 + i32.const 18838 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -77339,7 +77339,7 @@ i32.eqz if $if_0 local.get $2 - i32.const 18945 + i32.const 18947 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $4 local.get $2 @@ -78091,7 +78091,7 @@ local.get $3 i32.const 328 i32.add - i32.const 19474 + i32.const 19476 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -78243,7 +78243,7 @@ i32.add i32.store local.get $6 - i32.const 18765 + i32.const 18767 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -78260,7 +78260,7 @@ i32.add i32.store local.get $7 - i32.const 18763 + i32.const 18765 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -78277,7 +78277,7 @@ i32.add i32.store local.get $8 - i32.const 18763 + i32.const 18765 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $8 @@ -78294,7 +78294,7 @@ i32.add i32.store local.get $9 - i32.const 19477 + i32.const 19479 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $9 @@ -78311,7 +78311,7 @@ i32.add i32.store local.get $10 - i32.const 19480 + i32.const 19482 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $10 @@ -78335,7 +78335,7 @@ local.get $1 if $if_2 (result i32) local.get $0 - i32.const 19482 + i32.const 19484 local.get $2 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_13EnclosingExprEJRA10_KcRPNS0_4NodeERA2_S8_EEESC_DpOT0_ else @@ -78356,7 +78356,7 @@ local.get $1 if $if_3 (result i32) local.get $0 - i32.const 19482 + i32.const 19484 local.get $2 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_13EnclosingExprEJRA10_KcRPNS0_4NodeERA2_S8_EEESC_DpOT0_ else @@ -78486,7 +78486,7 @@ i32.add i32.store local.get $11 - i32.const 19492 + i32.const 19494 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $11 @@ -78503,7 +78503,7 @@ i32.add i32.store local.get $12 - i32.const 19494 + i32.const 19496 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $12 @@ -78605,7 +78605,7 @@ i32.add i32.store local.get $13 - i32.const 18830 + i32.const 18832 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $13 @@ -78666,7 +78666,7 @@ if $if_12 (result i32) local.get $0 local.get $2 - i32.const 19496 + i32.const 19498 local.get $4 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_10MemberExprEJRPNS0_4NodeERA3_KcSA_EEES9_DpOT0_ else @@ -78716,7 +78716,7 @@ i32.add i32.store local.get $14 - i32.const 19499 + i32.const 19501 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $14 @@ -78733,7 +78733,7 @@ i32.add i32.store local.get $15 - i32.const 19501 + i32.const 19503 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $15 @@ -78767,7 +78767,7 @@ i32.add i32.store local.get $16 - i32.const 19504 + i32.const 19506 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $16 @@ -78784,7 +78784,7 @@ i32.add i32.store local.get $17 - i32.const 19506 + i32.const 19508 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $17 @@ -78801,7 +78801,7 @@ i32.add i32.store local.get $18 - i32.const 19509 + i32.const 19511 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $18 @@ -78832,7 +78832,7 @@ i32.add i32.store local.get $19 - i32.const 19512 + i32.const 19514 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $19 @@ -78849,7 +78849,7 @@ i32.add i32.store local.get $20 - i32.const 18836 + i32.const 18838 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $20 @@ -78989,7 +78989,7 @@ i32.add i32.store local.get $21 - i32.const 19515 + i32.const 19517 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $21 @@ -79006,7 +79006,7 @@ i32.add i32.store local.get $22 - i32.const 19518 + i32.const 19520 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $22 @@ -79023,7 +79023,7 @@ i32.add i32.store local.get $23 - i32.const 19521 + i32.const 19523 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $23 @@ -79040,7 +79040,7 @@ i32.add i32.store local.get $24 - i32.const 18943 + i32.const 18945 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $24 @@ -79076,7 +79076,7 @@ i32.add i32.store local.get $25 - i32.const 19364 + i32.const 19366 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $25 @@ -79093,7 +79093,7 @@ i32.add i32.store local.get $26 - i32.const 19525 + i32.const 19527 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $26 @@ -79110,7 +79110,7 @@ i32.add i32.store local.get $27 - i32.const 18830 + i32.const 18832 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $27 @@ -79127,7 +79127,7 @@ i32.add i32.store local.get $28 - i32.const 19528 + i32.const 19530 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $28 @@ -79148,7 +79148,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfEc if $if_17 local.get $29 - i32.const 19531 + i32.const 19533 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $29 @@ -79168,7 +79168,7 @@ if $if_18 (result i32) local.get $0 local.get $2 - i32.const 19531 + i32.const 19533 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_11PostfixExprEJRPNS0_4NodeERA3_KcEEES9_DpOT0_ else i32.const 0 @@ -79203,7 +79203,7 @@ i32.add i32.store local.get $30 - i32.const 19534 + i32.const 19536 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $30 @@ -79220,7 +79220,7 @@ i32.add i32.store local.get $31 - i32.const 19364 + i32.const 19366 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $31 @@ -79237,7 +79237,7 @@ i32.add i32.store local.get $32 - i32.const 19537 + i32.const 19539 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $32 @@ -79298,7 +79298,7 @@ i32.add i32.store local.get $33 - i32.const 19539 + i32.const 19541 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $33 @@ -79315,7 +79315,7 @@ i32.add i32.store local.get $34 - i32.const 19542 + i32.const 19544 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $34 @@ -79332,7 +79332,7 @@ i32.add i32.store local.get $35 - i32.const 19544 + i32.const 19546 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $35 @@ -79369,7 +79369,7 @@ i32.add i32.store local.get $36 - i32.const 19547 + i32.const 19549 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $36 @@ -79386,7 +79386,7 @@ i32.add i32.store local.get $37 - i32.const 19551 + i32.const 19553 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $37 @@ -79403,7 +79403,7 @@ i32.add i32.store local.get $38 - i32.const 19553 + i32.const 19555 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $38 @@ -79424,7 +79424,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfEc if $if_20 local.get $39 - i32.const 19556 + i32.const 19558 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $39 @@ -79444,7 +79444,7 @@ if $if_21 (result i32) local.get $0 local.get $2 - i32.const 19556 + i32.const 19558 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_11PostfixExprEJRPNS0_4NodeERA3_KcEEES9_DpOT0_ else i32.const 0 @@ -79457,7 +79457,7 @@ i32.add i32.store local.get $40 - i32.const 19551 + i32.const 19553 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $40 @@ -79489,7 +79489,7 @@ if $if_23 (result i32) local.get $0 local.get $2 - i32.const 19559 + i32.const 19561 local.get $4 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_10MemberExprEJRPNS0_4NodeERA3_KcSA_EEES9_DpOT0_ else @@ -79616,7 +79616,7 @@ i32.add i32.store local.get $41 - i32.const 19562 + i32.const 19564 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $41 @@ -79633,7 +79633,7 @@ i32.add i32.store local.get $42 - i32.const 19564 + i32.const 19566 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $42 @@ -79650,7 +79650,7 @@ i32.add i32.store local.get $43 - i32.const 19567 + i32.const 19569 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $43 @@ -79667,7 +79667,7 @@ i32.add i32.store local.get $44 - i32.const 19570 + i32.const 19572 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $44 @@ -79769,7 +79769,7 @@ local.get $1 if $if_32 (result i32) local.get $0 - i32.const 19574 + i32.const 19576 local.get $2 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_13EnclosingExprEJRA10_KcRPNS0_4NodeERA2_S8_EEESC_DpOT0_ else @@ -79790,7 +79790,7 @@ local.get $1 if $if_33 (result i32) local.get $0 - i32.const 19574 + i32.const 19576 local.get $2 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_13EnclosingExprEJRA10_KcRPNS0_4NodeERA2_S8_EEESC_DpOT0_ else @@ -79954,7 +79954,7 @@ local.get $1 if $if_37 (result i32) local.get $0 - i32.const 19583 + i32.const 19585 local.get $2 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_13EnclosingExprEJRA10_KcRPNS0_4NodeERA2_S8_EEESC_DpOT0_ else @@ -79975,7 +79975,7 @@ local.get $1 if $if_38 (result i32) local.get $0 - i32.const 19583 + i32.const 19585 local.get $2 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_13EnclosingExprEJRA10_KcRPNS0_4NodeERA2_S8_EEESC_DpOT0_ else @@ -80054,7 +80054,7 @@ i32.add i32.store local.get $0 - i32.const 19592 + i32.const 19594 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_111 @@ -80259,7 +80259,7 @@ i32.add i32.store local.get $3 - i32.const 19047 + i32.const 19049 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $3 @@ -80271,7 +80271,7 @@ br $block end ;; $block_18 local.get $4 - i32.const 19055 + i32.const 19057 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $4 @@ -80290,7 +80290,7 @@ br $block end ;; $if_1 local.get $5 - i32.const 19059 + i32.const 19061 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $5 @@ -80318,7 +80318,7 @@ i32.add i32.store local.get $6 - i32.const 18137 + i32.const 18139 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $6 @@ -80336,7 +80336,7 @@ i32.add i32.store local.get $7 - i32.const 18142 + i32.const 18144 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $7 @@ -80354,7 +80354,7 @@ i32.add i32.store local.get $8 - i32.const 18154 + i32.const 18156 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $8 @@ -80372,7 +80372,7 @@ i32.add i32.store local.get $9 - i32.const 18168 + i32.const 18170 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $9 @@ -80390,7 +80390,7 @@ i32.add i32.store local.get $10 - i32.const 18174 + i32.const 18176 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $10 @@ -80426,7 +80426,7 @@ i32.add i32.store local.get $12 - i32.const 19063 + i32.const 19065 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $12 @@ -80444,7 +80444,7 @@ i32.add i32.store local.get $13 - i32.const 19065 + i32.const 19067 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $13 @@ -80462,7 +80462,7 @@ i32.add i32.store local.get $14 - i32.const 19067 + i32.const 19069 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $14 @@ -80480,7 +80480,7 @@ i32.add i32.store local.get $15 - i32.const 19070 + i32.const 19072 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $15 @@ -80498,7 +80498,7 @@ i32.add i32.store local.get $16 - i32.const 19073 + i32.const 19075 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $16 @@ -80516,7 +80516,7 @@ i32.add i32.store local.get $17 - i32.const 18235 + i32.const 18237 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $17 @@ -80534,7 +80534,7 @@ i32.add i32.store local.get $18 - i32.const 18244 + i32.const 18246 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $18 @@ -80576,7 +80576,7 @@ br $block end ;; $block_1 local.get $19 - i32.const 18071 + i32.const 18073 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $19 @@ -81120,7 +81120,7 @@ i32.const 16 i32.add local.tee $5 - i32.const 18761 + i32.const 18763 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -81134,7 +81134,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 18757 + i32.const 18759 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -81361,7 +81361,7 @@ f64.store local.get $2 i32.const 40 - i32.const 19129 + i32.const 19131 local.get $5 call $_snprintf local.get $2 @@ -81583,7 +81583,7 @@ f64.store local.get $2 i32.const 32 - i32.const 19190 + i32.const 19192 local.get $4 call $_snprintf local.get $2 @@ -81803,7 +81803,7 @@ f64.store local.get $2 i32.const 24 - i32.const 19249 + i32.const 19251 local.get $4 call $_snprintf local.get $2 @@ -81869,11 +81869,11 @@ i32.load8_s offset=8 if $if local.get $2 - i32.const 19309 + i32.const 19311 call $__ZN12_GLOBAL__N_110StringViewC2EPKc else local.get $2 - i32.const 19314 + i32.const 19316 call $__ZN12_GLOBAL__N_110StringViewC2EPKc end ;; $if local.get $2 @@ -82008,7 +82008,7 @@ i32.gt_u if $if local.get $4 - i32.const 18761 + i32.const 18763 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -82029,7 +82029,7 @@ local.get $2 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $5 - i32.const 18757 + i32.const 18759 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -82057,7 +82057,7 @@ i32.eq if $if_0 local.get $4 - i32.const 19364 + i32.const 19366 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -82220,7 +82220,7 @@ local.get $2 i32.const 8 i32.add - i32.const 21720 + i32.const 21722 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $2 @@ -82249,7 +82249,7 @@ end ;; $if_0 else local.get $2 - i32.const 21723 + i32.const 21725 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $2 @@ -82547,7 +82547,7 @@ i32.const 0 i32.store offset=4 local.get $3 - i32.const 21573 + i32.const 21575 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $3 @@ -82560,13 +82560,13 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_1 local.get $1 - i32.const 18765 + i32.const 18767 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 else block $block_5 local.get $4 - i32.const 21576 + i32.const 21578 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $4 @@ -82577,12 +82577,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_2 local.get $1 - i32.const 18763 + i32.const 18765 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_2 local.get $8 - i32.const 21579 + i32.const 21581 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $8 @@ -82593,12 +82593,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_3 local.get $1 - i32.const 19477 + i32.const 19479 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_3 local.get $9 - i32.const 21582 + i32.const 21584 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $9 @@ -82609,12 +82609,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_4 local.get $1 - i32.const 19480 + i32.const 19482 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_4 local.get $10 - i32.const 21585 + i32.const 21587 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $10 @@ -82625,12 +82625,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_5 local.get $1 - i32.const 19492 + i32.const 19494 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_5 local.get $11 - i32.const 21588 + i32.const 21590 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $11 @@ -82641,12 +82641,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_6 local.get $1 - i32.const 19496 + i32.const 19498 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_6 local.get $12 - i32.const 21591 + i32.const 21593 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $12 @@ -82657,12 +82657,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_7 local.get $1 - i32.const 19499 + i32.const 19501 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_7 local.get $13 - i32.const 21594 + i32.const 21596 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $13 @@ -82673,12 +82673,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_8 local.get $1 - i32.const 19501 + i32.const 19503 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_8 local.get $14 - i32.const 21597 + i32.const 21599 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $14 @@ -82689,12 +82689,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_9 local.get $1 - i32.const 19504 + i32.const 19506 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_9 local.get $15 - i32.const 21600 + i32.const 21602 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $15 @@ -82705,12 +82705,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_10 local.get $1 - i32.const 19506 + i32.const 19508 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_10 local.get $16 - i32.const 21603 + i32.const 21605 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $16 @@ -82721,12 +82721,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_11 local.get $1 - i32.const 19509 + i32.const 19511 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_11 local.get $17 - i32.const 21606 + i32.const 21608 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $17 @@ -82737,12 +82737,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_12 local.get $1 - i32.const 19512 + i32.const 19514 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_12 local.get $18 - i32.const 21609 + i32.const 21611 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $18 @@ -82753,12 +82753,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_13 local.get $1 - i32.const 18836 + i32.const 18838 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_13 local.get $19 - i32.const 21612 + i32.const 21614 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $19 @@ -82769,12 +82769,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_14 local.get $1 - i32.const 19515 + i32.const 19517 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_14 local.get $20 - i32.const 21615 + i32.const 21617 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $20 @@ -82785,12 +82785,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_15 local.get $1 - i32.const 19518 + i32.const 19520 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_15 local.get $21 - i32.const 21618 + i32.const 21620 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $21 @@ -82801,12 +82801,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_16 local.get $1 - i32.const 19521 + i32.const 19523 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_16 local.get $22 - i32.const 21621 + i32.const 21623 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $22 @@ -82817,12 +82817,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_17 local.get $1 - i32.const 18943 + i32.const 18945 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_17 local.get $23 - i32.const 21624 + i32.const 21626 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $23 @@ -82833,12 +82833,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_18 local.get $1 - i32.const 19364 + i32.const 19366 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_18 local.get $24 - i32.const 21627 + i32.const 21629 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $24 @@ -82849,12 +82849,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_19 local.get $1 - i32.const 19525 + i32.const 19527 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_19 local.get $25 - i32.const 21630 + i32.const 21632 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $25 @@ -82865,12 +82865,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_20 local.get $1 - i32.const 18830 + i32.const 18832 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_20 local.get $26 - i32.const 21633 + i32.const 21635 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $26 @@ -82881,12 +82881,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_21 local.get $1 - i32.const 19528 + i32.const 19530 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_21 local.get $27 - i32.const 21636 + i32.const 21638 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $27 @@ -82897,12 +82897,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_22 local.get $1 - i32.const 19534 + i32.const 19536 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_22 local.get $28 - i32.const 21639 + i32.const 21641 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $28 @@ -82913,12 +82913,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_23 local.get $1 - i32.const 19539 + i32.const 19541 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_23 local.get $29 - i32.const 21642 + i32.const 21644 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $29 @@ -82929,12 +82929,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_24 local.get $1 - i32.const 19542 + i32.const 19544 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_24 local.get $30 - i32.const 21645 + i32.const 21647 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $30 @@ -82945,12 +82945,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_25 local.get $1 - i32.const 19544 + i32.const 19546 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_25 local.get $31 - i32.const 21648 + i32.const 21650 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $31 @@ -82961,12 +82961,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_26 local.get $1 - i32.const 19551 + i32.const 19553 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_26 local.get $32 - i32.const 21651 + i32.const 21653 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $32 @@ -82977,12 +82977,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_27 local.get $1 - i32.const 19553 + i32.const 19555 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_27 local.get $33 - i32.const 21654 + i32.const 21656 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $33 @@ -82993,12 +82993,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_28 local.get $1 - i32.const 19562 + i32.const 19564 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_28 local.get $34 - i32.const 21657 + i32.const 21659 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $34 @@ -83009,12 +83009,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_29 local.get $1 - i32.const 19564 + i32.const 19566 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_29 local.get $35 - i32.const 21660 + i32.const 21662 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $35 @@ -83025,12 +83025,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_30 local.get $1 - i32.const 19567 + i32.const 19569 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_30 local.get $36 - i32.const 21663 + i32.const 21665 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $36 @@ -83046,7 +83046,7 @@ br $block_5 end ;; $if_31 local.get $1 - i32.const 19570 + i32.const 19572 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $block_5 @@ -83247,7 +83247,7 @@ local.get $2 i32.const 16 i32.add - i32.const 21361 + i32.const 21363 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -83425,7 +83425,7 @@ local.get $4 i32.const 24 i32.add - i32.const 20500 + i32.const 20502 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -83532,7 +83532,7 @@ end ;; $if_0 else local.get $1 - i32.const 19474 + i32.const 19476 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -83543,7 +83543,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE local.set $5 local.get $4 - i32.const 20504 + i32.const 20506 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -84007,7 +84007,7 @@ local.get $2 i32.const 40 i32.add - i32.const 19474 + i32.const 19476 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $2 @@ -84041,7 +84041,7 @@ i32.eq i32.store8 local.get $4 - i32.const 20088 + i32.const 20090 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $4 @@ -84054,7 +84054,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE br_if $block_0 local.get $3 - i32.const 20091 + i32.const 20093 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $3 @@ -84119,7 +84119,7 @@ if $if_1 (result i32) block $block_3 (result i32) local.get $5 - i32.const 20094 + i32.const 20096 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $5 @@ -84274,7 +84274,7 @@ i32.add local.set $3 local.get $2 - i32.const 19598 + i32.const 19600 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -84469,13 +84469,13 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $5 - i32.const 19749 + i32.const 19751 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load local.set $1 local.get $2 - i32.const 18757 + i32.const 18759 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $4 local.get $5 @@ -84637,7 +84637,7 @@ i32.const 24 i32.add local.tee $5 - i32.const 19811 + i32.const 19813 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -84654,7 +84654,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle22ParameterPackExpansion9printLeftERNS_12OutputStreamE local.get $2 - i32.const 18757 + i32.const 18759 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -84776,7 +84776,7 @@ $block_0 ;; default end ;; $block_2 local.get $8 - i32.const 18291 + i32.const 18293 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $5 local.get $8 @@ -84800,7 +84800,7 @@ i32.ge_u br_if $block local.get $2 - i32.const 18945 + i32.const 18947 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $5 local.get $2 @@ -84885,7 +84885,7 @@ i32.load local.set $1 local.get $3 - i32.const 18757 + i32.const 18759 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $5 local.get $6 @@ -84927,7 +84927,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $3 - i32.const 19937 + i32.const 19939 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -85026,7 +85026,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $4 - i32.const 18943 + i32.const 18945 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -85050,7 +85050,7 @@ i32.add call_indirect $28 (type $3) local.get $5 - i32.const 19949 + i32.const 19951 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -85074,7 +85074,7 @@ i32.add call_indirect $28 (type $3) local.get $6 - i32.const 18757 + i32.const 18759 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $6 @@ -85109,7 +85109,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $3 - i32.const 19996 + i32.const 19998 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -85195,7 +85195,7 @@ i32.const 24 i32.add local.tee $6 - i32.const 18761 + i32.const 18763 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -85209,7 +85209,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 20013 + i32.const 20015 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -85223,7 +85223,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $5 - i32.const 20019 + i32.const 20021 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -85237,7 +85237,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $3 - i32.const 18757 + i32.const 18759 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -85281,13 +85281,13 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $5 - i32.const 20077 + i32.const 20079 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load local.set $1 local.get $2 - i32.const 18757 + i32.const 18759 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $4 local.get $5 @@ -85452,7 +85452,7 @@ i32.load8_s offset=28 if $if local.get $4 - i32.const 20097 + i32.const 20099 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -85481,7 +85481,7 @@ local.get $3 i32.const 40 i32.add - i32.const 20109 + i32.const 20111 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -85494,7 +85494,7 @@ i32.load8_s offset=29 if $if_0 local.get $4 - i32.const 20113 + i32.const 20115 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -85514,7 +85514,7 @@ i32.load offset=4 if $if_1 local.get $5 - i32.const 18761 + i32.const 18763 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -85527,7 +85527,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle9NodeArray14printWithCommaERNS_12OutputStreamE local.get $6 - i32.const 18757 + i32.const 18759 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -85548,7 +85548,7 @@ i32.load offset=4 if $if_2 local.get $7 - i32.const 18761 + i32.const 18763 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -85561,7 +85561,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle9NodeArray14printWithCommaERNS_12OutputStreamE local.get $3 - i32.const 18757 + i32.const 18759 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -85746,7 +85746,7 @@ i32.add i32.store local.get $1 - i32.const 20316 + i32.const 20318 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $4 local.get $1 @@ -85861,7 +85861,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 20207 + i32.const 20209 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -85893,7 +85893,7 @@ i32.ge_s if $if (result i32) local.get $2 - i32.const 20213 + i32.const 20215 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -86003,7 +86003,7 @@ i32.ge_s if $if_0 (result i32) local.get $2 - i32.const 20213 + i32.const 20215 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -86206,7 +86206,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $1 - i32.const 20327 + i32.const 20329 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -86339,7 +86339,7 @@ i32.const 16 i32.add local.tee $5 - i32.const 18761 + i32.const 18763 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -86353,7 +86353,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 20393 + i32.const 20395 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -86367,7 +86367,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $2 - i32.const 18395 + i32.const 18397 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -86405,7 +86405,7 @@ i32.load local.set $1 local.get $3 - i32.const 20451 + i32.const 20453 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 i32.load @@ -86769,7 +86769,7 @@ else block $block (result i32) local.get $1 - i32.const 20566 + i32.const 20568 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $1 @@ -86784,7 +86784,7 @@ br $block end ;; $if_1 local.get $4 - i32.const 20569 + i32.const 20571 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -86908,7 +86908,7 @@ i32.add local.set $3 local.get $2 - i32.const 20507 + i32.const 20509 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -87088,7 +87088,7 @@ i32.add i32.store local.get $0 - i32.const 20572 + i32.const 20574 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -87100,7 +87100,7 @@ i32.add i32.store local.get $0 - i32.const 20583 + i32.const 20585 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -87112,7 +87112,7 @@ i32.add i32.store local.get $0 - i32.const 20593 + i32.const 20595 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -87124,7 +87124,7 @@ i32.add i32.store local.get $0 - i32.const 20604 + i32.const 20606 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -87169,7 +87169,7 @@ i32.add i32.store local.get $0 - i32.const 20614 + i32.const 20616 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -87181,7 +87181,7 @@ i32.add i32.store local.get $0 - i32.const 20625 + i32.const 20627 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -87193,7 +87193,7 @@ i32.add i32.store local.get $0 - i32.const 20635 + i32.const 20637 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -87328,7 +87328,7 @@ i32.add i32.store local.get $0 - i32.const 20645 + i32.const 20647 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -87340,7 +87340,7 @@ i32.add i32.store local.get $0 - i32.const 20663 + i32.const 20665 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -87365,7 +87365,7 @@ i32.add i32.store local.get $0 - i32.const 20673 + i32.const 20675 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -87377,7 +87377,7 @@ i32.add i32.store local.get $0 - i32.const 20683 + i32.const 20685 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -87423,7 +87423,7 @@ i32.add i32.store local.get $0 - i32.const 20694 + i32.const 20696 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -87435,7 +87435,7 @@ i32.add i32.store local.get $0 - i32.const 20704 + i32.const 20706 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -87447,7 +87447,7 @@ i32.add i32.store local.get $0 - i32.const 20715 + i32.const 20717 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -87490,7 +87490,7 @@ i32.add i32.store local.get $0 - i32.const 20726 + i32.const 20728 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -87502,7 +87502,7 @@ i32.add i32.store local.get $0 - i32.const 20737 + i32.const 20739 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -87537,7 +87537,7 @@ i32.add i32.store local.get $0 - i32.const 20747 + i32.const 20749 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ else i32.const 0 @@ -87584,7 +87584,7 @@ i32.add i32.store local.get $0 - i32.const 20758 + i32.const 20760 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -87620,7 +87620,7 @@ i32.add i32.store local.get $0 - i32.const 20769 + i32.const 20771 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -87632,7 +87632,7 @@ i32.add i32.store local.get $0 - i32.const 20780 + i32.const 20782 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -87644,7 +87644,7 @@ i32.add i32.store local.get $0 - i32.const 20792 + i32.const 20794 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -87692,7 +87692,7 @@ i32.add i32.store local.get $0 - i32.const 20802 + i32.const 20804 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -87704,7 +87704,7 @@ i32.add i32.store local.get $0 - i32.const 20812 + i32.const 20814 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -87716,7 +87716,7 @@ i32.add i32.store local.get $0 - i32.const 20663 + i32.const 20665 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -87728,7 +87728,7 @@ i32.add i32.store local.get $0 - i32.const 20823 + i32.const 20825 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -87740,7 +87740,7 @@ i32.add i32.store local.get $0 - i32.const 20834 + i32.const 20836 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -87787,7 +87787,7 @@ i32.add i32.store local.get $0 - i32.const 20845 + i32.const 20847 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -87799,7 +87799,7 @@ i32.add i32.store local.get $0 - i32.const 20860 + i32.const 20862 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -87811,7 +87811,7 @@ i32.add i32.store local.get $0 - i32.const 20802 + i32.const 20804 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -87823,7 +87823,7 @@ i32.add i32.store local.get $0 - i32.const 20871 + i32.const 20873 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -87835,7 +87835,7 @@ i32.add i32.store local.get $0 - i32.const 20881 + i32.const 20883 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -87881,7 +87881,7 @@ i32.add i32.store local.get $0 - i32.const 20894 + i32.const 20896 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -87893,7 +87893,7 @@ i32.add i32.store local.get $0 - i32.const 20905 + i32.const 20907 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -87905,7 +87905,7 @@ i32.add i32.store local.get $0 - i32.const 20915 + i32.const 20917 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -87954,7 +87954,7 @@ i32.add i32.store local.get $0 - i32.const 20926 + i32.const 20928 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -87966,7 +87966,7 @@ i32.add i32.store local.get $0 - i32.const 20938 + i32.const 20940 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -87978,7 +87978,7 @@ i32.add i32.store local.get $0 - i32.const 20948 + i32.const 20950 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -87990,7 +87990,7 @@ i32.add i32.store local.get $0 - i32.const 20959 + i32.const 20961 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -88002,7 +88002,7 @@ i32.add i32.store local.get $0 - i32.const 20938 + i32.const 20940 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -88014,7 +88014,7 @@ i32.add i32.store local.get $0 - i32.const 20970 + i32.const 20972 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -88049,7 +88049,7 @@ i32.add i32.store local.get $0 - i32.const 20981 + i32.const 20983 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ else i32.const 0 @@ -88095,7 +88095,7 @@ i32.add i32.store local.get $0 - i32.const 20991 + i32.const 20993 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -88107,7 +88107,7 @@ i32.add i32.store local.get $0 - i32.const 21001 + i32.const 21003 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -88119,7 +88119,7 @@ i32.add i32.store local.get $0 - i32.const 21012 + i32.const 21014 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -88131,7 +88131,7 @@ i32.add i32.store local.get $0 - i32.const 21023 + i32.const 21025 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -88166,7 +88166,7 @@ i32.add i32.store local.get $0 - i32.const 21035 + i32.const 21037 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ else i32.const 0 @@ -88299,7 +88299,7 @@ i32.add local.set $3 local.get $2 - i32.const 21047 + i32.const 21049 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -88336,7 +88336,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $1 - i32.const 21111 + i32.const 21113 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -88392,7 +88392,7 @@ i32.add local.set $3 local.get $2 - i32.const 21127 + i32.const 21129 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -88462,7 +88462,7 @@ i32.add local.set $3 local.get $2 - i32.const 19494 + i32.const 19496 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -88539,7 +88539,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $2 - i32.const 20507 + i32.const 20509 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -88598,7 +88598,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $3 - i32.const 21290 + i32.const 21292 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -88706,7 +88706,7 @@ i32.load8_s offset=12 if $if local.get $4 - i32.const 20507 + i32.const 20509 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -88720,7 +88720,7 @@ i32.const 8 i32.add local.tee $4 - i32.const 21303 + i32.const 21305 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -88733,7 +88733,7 @@ i32.load8_s offset=13 if $if_0 local.get $2 - i32.const 21310 + i32.const 21312 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -88848,7 +88848,7 @@ i32.const 16 i32.add local.tee $5 - i32.const 18761 + i32.const 18763 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -88862,7 +88862,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 21364 + i32.const 21366 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -88877,7 +88877,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle9NodeArray14printWithCommaERNS_12OutputStreamE local.get $2 - i32.const 18757 + i32.const 18759 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -88987,7 +88987,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 18761 + i32.const 18763 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -89002,7 +89002,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle9NodeArray14printWithCommaERNS_12OutputStreamE local.get $2 - i32.const 18757 + i32.const 18759 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -89037,7 +89037,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $3 - i32.const 21462 + i32.const 21464 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -89167,7 +89167,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $4 - i32.const 18761 + i32.const 18763 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -89181,7 +89181,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $5 - i32.const 18757 + i32.const 18759 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -89325,14 +89325,14 @@ i32.const 56 i32.add local.tee $2 - i32.const 18836 + i32.const 18838 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $4 local.get $2 call $__ZN12_GLOBAL__N_1eqERKNS_10StringViewES2_ if $if local.get $5 - i32.const 18761 + i32.const 18763 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -89343,7 +89343,7 @@ call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE end ;; $if local.get $6 - i32.const 18761 + i32.const 18763 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -89357,7 +89357,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $7 - i32.const 21520 + i32.const 21522 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -89378,7 +89378,7 @@ local.get $2 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $8 - i32.const 21523 + i32.const 21525 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $8 @@ -89392,7 +89392,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $9 - i32.const 18757 + i32.const 18759 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $9 @@ -89402,14 +89402,14 @@ local.get $2 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $2 - i32.const 18836 + i32.const 18838 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $4 local.get $2 call $__ZN12_GLOBAL__N_1eqERKNS_10StringViewES2_ if $if_0 local.get $10 - i32.const 18757 + i32.const 18759 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $10 @@ -89592,7 +89592,7 @@ local.set $0 end ;; $if_0 local.get $6 - i32.const 21666 + i32.const 21668 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $6 @@ -89635,7 +89635,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $4 - i32.const 21671 + i32.const 21673 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -89845,7 +89845,7 @@ i32.const 8 i32.add local.tee $4 - i32.const 21720 + i32.const 21722 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -90662,7 +90662,7 @@ local.get $8 i32.store offset=8 local.get $4 - i32.const 21927 + i32.const 21929 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $6 local.get $4 @@ -90674,7 +90674,7 @@ if $if_4 local.get $2 local.get $0 - i32.const 22245 + i32.const 22247 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ i32.store end ;; $if_4 @@ -90994,7 +90994,7 @@ i32.store local.get $2 local.get $0 - i32.const 22185 + i32.const 22187 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ i32.store local.get $0 @@ -91093,7 +91093,7 @@ local.get $2 i32.const 8 i32.add - i32.const 21923 + i32.const 21925 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -91106,7 +91106,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE br_if $block_0 local.get $2 - i32.const 21927 + i32.const 21929 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -91209,7 +91209,7 @@ br $block_1 end ;; $if_1 local.get $4 - i32.const 21989 + i32.const 21991 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -91349,7 +91349,7 @@ i32.add local.set $3 local.get $2 - i32.const 21930 + i32.const 21932 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -91400,7 +91400,7 @@ local.get $2 i32.const 32 i32.add - i32.const 22050 + i32.const 22052 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $2 @@ -91429,7 +91429,7 @@ local.set $0 else local.get $5 - i32.const 22053 + i32.const 22055 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $5 @@ -91461,7 +91461,7 @@ i32.const 1 i32.store8 offset=362 local.get $4 - i32.const 22056 + i32.const 22058 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $4 @@ -91730,7 +91730,7 @@ i32.const 24 i32.add local.tee $6 - i32.const 22059 + i32.const 22061 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -91751,7 +91751,7 @@ local.get $2 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $4 - i32.const 22067 + i32.const 22069 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -91766,7 +91766,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle9NodeArray14printWithCommaERNS_12OutputStreamE local.get $5 - i32.const 18757 + i32.const 18759 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -91854,7 +91854,7 @@ i32.const 16 i32.add local.tee $5 - i32.const 22122 + i32.const 22124 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -91875,7 +91875,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $4 - i32.const 22131 + i32.const 22133 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -92419,7 +92419,7 @@ i32.load8_s offset=12 if $if local.get $4 - i32.const 19494 + i32.const 19496 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -92545,7 +92545,7 @@ $block ;; default end ;; $block_5 local.get $4 - i32.const 18539 + i32.const 18541 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -92557,7 +92557,7 @@ br $block end ;; $block_4 local.get $5 - i32.const 18554 + i32.const 18556 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -92569,7 +92569,7 @@ br $block end ;; $block_3 local.get $6 - i32.const 22341 + i32.const 22343 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -92581,7 +92581,7 @@ br $block end ;; $block_2 local.get $7 - i32.const 22412 + i32.const 22414 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -92593,7 +92593,7 @@ br $block end ;; $block_1 local.get $8 - i32.const 22462 + i32.const 22464 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $8 @@ -92605,7 +92605,7 @@ br $block end ;; $block_0 local.get $3 - i32.const 22512 + i32.const 22514 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -92636,32 +92636,32 @@ $block ;; default end ;; $block_5 local.get $0 - i32.const 18484 + i32.const 18486 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_4 local.get $0 - i32.const 18494 + i32.const 18496 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_3 local.get $0 - i32.const 18494 + i32.const 18496 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_2 local.get $0 - i32.const 22298 + i32.const 22300 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_1 local.get $0 - i32.const 22312 + i32.const 22314 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_0 local.get $0 - i32.const 22326 + i32.const 22328 call $__ZN12_GLOBAL__N_110StringViewC2EPKc end ;; $block ) @@ -92794,7 +92794,7 @@ call $__ZNK12_GLOBAL__N_116itanium_demangle4Node11hasFunctionERNS_12OutputStreamE br_if $block_0 local.get $5 - i32.const 18759 + i32.const 18761 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -92806,7 +92806,7 @@ br $block end ;; $block_0 local.get $4 - i32.const 18761 + i32.const 18763 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -92821,7 +92821,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $2 - i32.const 22674 + i32.const 22676 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -92864,7 +92864,7 @@ br $block end ;; $block_0 local.get $2 - i32.const 18757 + i32.const 18759 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -93061,7 +93061,7 @@ i32.ne if $if_0 local.get $4 - i32.const 18759 + i32.const 18761 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -93078,7 +93078,7 @@ local.get $3 i32.const 16 i32.add - i32.const 22734 + i32.const 22736 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -93135,7 +93135,7 @@ end ;; $if_4 end ;; $if_2 local.get $3 - i32.const 18395 + i32.const 18397 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -93276,7 +93276,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 22784 + i32.const 22786 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -93333,7 +93333,7 @@ end ;; $if_2 end ;; $if_0 local.get $2 - i32.const 18395 + i32.const 18397 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -93481,7 +93481,7 @@ local.get $2 i32.const 16 i32.add - i32.const 22840 + i32.const 22842 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -93508,7 +93508,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $2 - i32.const 18395 + i32.const 18397 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -93612,7 +93612,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $1 - i32.const 22916 + i32.const 22918 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -93646,7 +93646,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $1 - i32.const 22923 + i32.const 22925 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -93680,7 +93680,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $1 - i32.const 19047 + i32.const 19049 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -93828,7 +93828,7 @@ i32.and if $if local.get $4 - i32.const 22952 + i32.const 22954 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -93850,7 +93850,7 @@ i32.and if $if_0 local.get $4 - i32.const 22959 + i32.const 22961 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -93868,7 +93868,7 @@ i32.and if $if_1 local.get $2 - i32.const 22969 + i32.const 22971 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -93979,7 +93979,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 18759 + i32.const 18761 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -94105,7 +94105,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 18943 + i32.const 18945 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -94126,7 +94126,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $5 - i32.const 18836 + i32.const 18838 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -94269,7 +94269,7 @@ i32.add call_indirect $28 (type $3) local.get $2 - i32.const 18759 + i32.const 18761 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -94327,7 +94327,7 @@ i32.const 48 i32.add local.tee $4 - i32.const 18761 + i32.const 18763 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -94342,7 +94342,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle9NodeArray14printWithCommaERNS_12OutputStreamE local.get $5 - i32.const 18757 + i32.const 18759 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -94372,7 +94372,7 @@ i32.and if $if local.get $6 - i32.const 22952 + i32.const 22954 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -94390,7 +94390,7 @@ i32.and if $if_0 local.get $7 - i32.const 22959 + i32.const 22961 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -94408,7 +94408,7 @@ i32.and if $if_1 local.get $8 - i32.const 22969 + i32.const 22971 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $8 @@ -94430,7 +94430,7 @@ $block ;; default end ;; $block_1 local.get $9 - i32.const 23154 + i32.const 23156 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $9 @@ -94442,7 +94442,7 @@ br $block end ;; $block_0 local.get $3 - i32.const 23157 + i32.const 23159 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -94533,7 +94533,7 @@ i32.add local.set $3 local.get $2 - i32.const 23210 + i32.const 23212 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -94611,7 +94611,7 @@ i32.const 8 i32.add local.tee $4 - i32.const 23274 + i32.const 23276 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -94625,7 +94625,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $2 - i32.const 18757 + i32.const 18759 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -94844,7 +94844,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 21523 + i32.const 21525 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -94865,7 +94865,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $5 - i32.const 18757 + i32.const 18759 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -95159,7 +95159,7 @@ local.get $1 if $if_9 (result i32) local.get $0 - i32.const 23555 + i32.const 23557 local.get $2 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_11SpecialNameEJRA34_KcRPNS0_4NodeEEEESC_DpOT0_ else @@ -95676,7 +95676,7 @@ i32.eqz if $if_0 local.get $2 - i32.const 18759 + i32.const 18761 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -95740,7 +95740,7 @@ i32.const 48 i32.add local.tee $4 - i32.const 18761 + i32.const 18763 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -95755,7 +95755,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle9NodeArray14printWithCommaERNS_12OutputStreamE local.get $5 - i32.const 18757 + i32.const 18759 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -95788,7 +95788,7 @@ i32.and if $if_0 local.get $6 - i32.const 22952 + i32.const 22954 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -95806,7 +95806,7 @@ i32.and if $if_1 local.get $7 - i32.const 22959 + i32.const 22961 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -95824,7 +95824,7 @@ i32.and if $if_2 local.get $8 - i32.const 22969 + i32.const 22971 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $8 @@ -95846,7 +95846,7 @@ $block ;; default end ;; $block_1 local.get $9 - i32.const 23154 + i32.const 23156 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $9 @@ -95858,7 +95858,7 @@ br $block end ;; $block_0 local.get $3 - i32.const 23157 + i32.const 23159 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -95946,7 +95946,7 @@ i32.add local.set $3 local.get $2 - i32.const 23493 + i32.const 23495 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -96078,7 +96078,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 23589 + i32.const 23591 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -96117,7 +96117,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 23614 + i32.const 23616 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -96156,7 +96156,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 23634 + i32.const 23636 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -96195,7 +96195,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 23656 + i32.const 23658 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -96234,7 +96234,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 23674 + i32.const 23676 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -96302,7 +96302,7 @@ i32.const 8 i32.add local.tee $4 - i32.const 23715 + i32.const 23717 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -96316,7 +96316,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $2 - i32.const 23740 + i32.const 23742 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -96354,7 +96354,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 23803 + i32.const 23805 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -96393,7 +96393,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 23830 + i32.const 23832 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -96432,7 +96432,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 23849 + i32.const 23851 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -96471,7 +96471,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 23863 + i32.const 23865 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -96510,7 +96510,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 23872 + i32.const 23874 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -98352,5 +98352,5 @@ call_indirect $28 (type $9) ) ;; User section "emscripten_metadata": - ;; "\00\01\00\03\80\02\bf\03\80\08\e0\d5\c1\02\c0\d5\01\d0\d5\01" + ;; "\00\02\00\04\00\80\02\bf\03\80\08\e0\d5\c1\02\c0\d5\01\d0\d5\01" ) \ No newline at end of file diff --git a/test/extensions/filters/http/wasm/test_data/queue_cpp.wasm b/test/extensions/filters/http/wasm/test_data/queue_cpp.wasm index e9d59b3c273d5..74e0346a4d5ae 100644 Binary files a/test/extensions/filters/http/wasm/test_data/queue_cpp.wasm and b/test/extensions/filters/http/wasm/test_data/queue_cpp.wasm differ diff --git a/test/extensions/filters/http/wasm/test_data/queue_cpp.wat b/test/extensions/filters/http/wasm/test_data/queue_cpp.wat index 7fa29e5822ec8..fa12d1f8a84e0 100644 --- a/test/extensions/filters/http/wasm/test_data/queue_cpp.wat +++ b/test/extensions/filters/http/wasm/test_data/queue_cpp.wat @@ -110,8 +110,8 @@ (export "stackAlloc" (func $stackAlloc)) (export "stackRestore" (func $stackRestore)) (export "stackSave" (func $stackSave)) - (global $32 (mut i32) (i32.const 26640)) - (global $33 (mut i32) (i32.const 5269520)) + (global $32 (mut i32) (i32.const 26656)) + (global $33 (mut i32) (i32.const 5269536)) (elem $34 $28 (global.get $30) $b0 $__ZN7Context6asRootEv $__ZN7Context9asContextEv $__ZN14ExampleContext16onRequestHeadersEv $__ZN7Context6asRootEv $__ZN7Context6asRootEv $__ZN7Context6asRootEv $__ZN7Context6asRootEv $__ZN7Context6asRootEv $__ZN7Context9asContextEv $__ZN7Context6asRootEv $__ZN7Context6asRootEv $__ZN7Context6asRootEv $__ZNK6google8protobuf8internal12MapEntryImplINS0_27Struct_FieldsEntry_DoNotUseENS0_11MessageLiteENSt3__212basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEENS0_5ValueELNS1_14WireFormatLite9FieldTypeE9ELSE_11ELi0EE3NewEv $__ZNK6google8protobuf8internal12MapEntryImplINS0_27Struct_FieldsEntry_DoNotUseENS0_11MessageLiteENSt3__212basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEENS0_5ValueELNS1_14WireFormatLite9FieldTypeE9ELSE_11ELi0EE8GetArenaEv $__ZNK6google8protobuf11MessageLite20GetMaybeArenaPointerEv @@ -170,7 +170,7 @@ $b10 $b10 $b11 $__ZN11RootContext18onHttpCallResponseEjNSt3__210unique_ptrI8WasmDataNS0_14default_deleteIS2_EEEES5_S5_ $__ZNK10__cxxabiv117__class_type_info16search_below_dstEPNS_19__dynamic_cast_infoEPKvib $__ZNK10__cxxabiv120__si_class_type_info16search_below_dstEPNS_19__dynamic_cast_infoEPKvib $__ZNK10__cxxabiv121__vmi_class_type_info16search_below_dstEPNS_19__dynamic_cast_infoEPKvib $b11 $b11 $b11 $b12 $__ZNK10__cxxabiv117__class_type_info16search_above_dstEPNS_19__dynamic_cast_infoEPKvS4_ib $__ZNK10__cxxabiv120__si_class_type_info16search_above_dstEPNS_19__dynamic_cast_infoEPKvS4_ib $__ZNK10__cxxabiv121__vmi_class_type_info16search_above_dstEPNS_19__dynamic_cast_infoEPKvS4_ib $b13) (data $35 $29 (i32.const 1024) - "\98:\00\00\9d:\00\00\a5:\00\00\ab:") + "\9a:\00\00\9f:\00\00\a7:\00\00\ad:") (data $36 $29 (i32.const 1168) "\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0" "\f0\f0\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\02\03\03\03\03\03\03\03\03\03\03\03\03\07\03\03\04\05\05\05\06\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0" @@ -245,16 +245,16 @@ "\00\00\00g\00\00\00k\00\00\00m\00\00\00q\00\00\00y\00\00\00\7f\00\00\00\83\00\00\00\89\00\00\00\8b\00\00\00\8f\00\00\00\95\00\00\00\97\00\00\00\9d\00\00\00\a3\00\00\00\a7\00\00\00\a9" "\00\00\00\ad\00\00\00\b3\00\00\00\b5\00\00\00\bb\00\00\00\bf\00\00\00\c1\00\00\00\c5\00\00\00\c7\00\00\00\d1\00\00\00\ac\1e\00\00\e0+\00\00\d4\1e\00\00\d7+\00\00p\11\00\00\00\00\00\00\d4" "\1e\00\00\c6+\00\00x\11\00\00\00\00\00\00\d4\1e\00\00\03,\00\00p\11\00\00\00\00\00\00\d4\1e\00\00\ee+\00\00\98\11\00\00\00\00\00\00\ac\1e\00\00\11,\00\00\ac\1e\00\00\16,\00\00\ac" - "\1e\00\00\1b,\00\00\f0*\00\00\1d-\00\00\00\00\00\00\01\00\00\00\e8\11\00\00\00\00\00\00\ac\1e\00\00\\-\00\00\d4\1e\00\00?7\00\00\a0\12\00\00\00\00\00\00\d4\1e\00\00!6\00\00\10" - "\12\00\00\00\00\00\00\d4\1e\00\00\de/\00\00 \12\00\00\00\00\00\00\d4\1e\00\00\0e0\00\000\12\00\00\00\00\00\00\d4\1e\00\00\d40\00\00\a0\12\00\00\00\00\00\00\d4\1e\00\00\ee5\00\00\a0" - "\12\00\00\00\00\00\00\f0*\00\00\ac4\00\00\00\00\00\00\01\00\00\00h\12\00\00\00\00\00\00\ac\1e\00\00\195\00\00\d4\1e\00\00\086\00\00\a0\12\00\00\00\00\00\00\d4\1e\00\00\937\00\00\90" + "\1e\00\00\1b,\00\00\f0*\00\00\1d-\00\00\00\00\00\00\01\00\00\00\e8\11\00\00\00\00\00\00\ac\1e\00\00\\-\00\00\d4\1e\00\00A7\00\00\a0\12\00\00\00\00\00\00\d4\1e\00\00#6\00\00\10" + "\12\00\00\00\00\00\00\d4\1e\00\00\e0/\00\00 \12\00\00\00\00\00\00\d4\1e\00\00\100\00\000\12\00\00\00\00\00\00\d4\1e\00\00\d60\00\00\a0\12\00\00\00\00\00\00\d4\1e\00\00\f05\00\00\a0" + "\12\00\00\00\00\00\00\f0*\00\00\ae4\00\00\00\00\00\00\01\00\00\00h\12\00\00\00\00\00\00\ac\1e\00\00\1b5\00\00\d4\1e\00\00\n6\00\00\a0\12\00\00\00\00\00\00\d4\1e\00\00\957\00\00\90" "\14\00\00\00\00\00\00\ff\ff\ff\ff\ff\ff\ff\ff") (data $53 $29 (i32.const 4768) - "\ac\1e\00\00\97<\00\00\d4\1e\00\00h@\00\00\c8\12\00\00\00\00\00\00\d4\1e\00\00$A\00\00\c8\12\00\00\00\00\00\00\ac\1e\00\00\f0A\00\00\05") + "\ac\1e\00\00\99<\00\00\d4\1e\00\00j@\00\00\c8\12\00\00\00\00\00\00\d4\1e\00\00&A\00\00\c8\12\00\00\00\00\00\00\ac\1e\00\00\f2A\00\00\05") (data $54 $29 (i32.const 4828) "-") (data $55 $29 (i32.const 4852) - "\08\00\00\00\01\00\00\00H[\00\00\00\04") + "\08\00\00\00\01\00\00\00X[\00\00\00\04") (data $56 $29 (i32.const 4876) "\01") (data $57 $29 (i32.const 4891) @@ -264,7 +264,7 @@ (data $59 $29 (i32.const 4972) "-") (data $60 $29 (i32.const 4996) - "\09\00\00\00\01\00\00\006c") + "\09\00\00\00\01\00\00\00Fc") (data $61 $29 (i32.const 5020) "\02") (data $62 $29 (i32.const 5035) @@ -274,26 +274,26 @@ (data $64 $29 (i32.const 5179) "\ff\ff\ff\ff\ff") (data $65 $29 (i32.const 5248) - "\d4\1e\00\00gB\00\00\90\14\00\00\00\00\00\00\ac\1e\00\00&C\00\00\d4\1e\00\00\86C\00\00\a8\14\00\00\00\00\00\00\d4\1e\00\003C\00\00\b8\14\00\00\00\00\00\00\ac\1e\00\00TC\00\00" - "\d4\1e\00\00aC\00\00\98\14\00\00\00\00\00\00\d4\1e\00\00\16E\00\00\e0\14\00\00\00\00\00\00\ac\1e\00\00EE\00\00\d4\1e\00\00\f9E\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00F\00\00" + "\e0\14\00\00\00\00\00\00\d4\1e\00\00\8bF\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\d1F\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\01G\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00?G\00\00" + "\e0\14\00\00\00\00\00\00\d4\1e\00\00pG\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\c0G\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\f9G\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\004H\00\00" + "\e0\14\00\00\00\00\00\00\d4\1e\00\00pH\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\b3H\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\e1H\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\14I\00\00" + "\e0\14\00\00\00\00\00\00\d4\1e\00\00\d0I\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\fdI\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00.J\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00lJ\00\00" + "\e0\14\00\00\00\00\00\00\d4\1e\00\00\e4J\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\a9J\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00+K\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00tK\00\00" + "\e0\14\00\00\00\00\00\00\d4\1e\00\00\cfK\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\faK\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\004L\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00hL\00\00" + "\e0\14\00\00\00\00\00\00\d4\1e\00\00\b8L\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\e7L\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00 M\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00YM\00\00" + "\e0\14\00\00\00\00\00\00\d4\1e\00\00~O\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\ccO\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\07P\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\003P\00\00" + "\e0\14\00\00\00\00\00\00\d4\1e\00\00}P\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\b2P\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\e5P\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\1cQ\00\00" + "\e0\14\00\00\00\00\00\00\d4\1e\00\00QQ\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\e7Q\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\19R\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00KR\00\00" + "\e0\14\00\00\00\00\00\00\d4\1e\00\00\a3R\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\ebR\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00#S\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00qS\00\00" + "\e0\14\00\00\00\00\00\00\d4\1e\00\00\b0S\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\f3S\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00$T\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00^U\00\00" + "\e0\14\00\00\00\00\00\00\d4\1e\00\00\9eU\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\d1U\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\0bV\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00DV\00\00" + "\e0\14\00\00\00\00\00\00\d4\1e\00\00\81V\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\feV\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00*W\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00`W\00\00" + "\e0\14\00\00\00\00\00\00\d4\1e\00\00\b4W\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\ecW\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00/X\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00`X\00\00" + "\e0\14\00\00\00\00\00\00\d4\1e\00\00\90X\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\cbX\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\0dY\00\00\e0\14\00\00\00\00\00\00\d4\1e\00\00\fcY\00\00" + "\e0\14\00\00\00\00\00\00\d4\1e\00\00\87Z\00\00\90\14\00\00\00\00\00\00\d4\1e\00\00\97Z\00\00\08\19\00\00\00\00\00\00\d4\1e\00\00\a8Z\00\00\a8\14\00\00\00\00\00\00\d4\1e\00\00\caZ\00\00" + "(\19\00\00\00\00\00\00\d4\1e\00\00\eeZ\00\00\a8\14\00\00\00\00\00\00\d4*\00\00\16[\00\00\d4*\00\00\18[\00\00\d4*\00\00\1a[\00\00\d4\1e\00\00\1c[\00\00\98\14") (data $66 $29 (i32.const 6532) "\88\11\00\00\01\00\00\00\02\00\00\00\01\00\00\00\02\00\00\00\01\00\00\00\02\00\00\00\03\00\00\00\03\00\00\00\04\00\00\00\01\00\00\00\05\00\00\00\06\00\00\00\07\00\00\00\02\00\00\00\08\00\00\00" "\04\00\00\00\05\00\00\00\06\00\00\00\00\00\00\00\a8\11\00\00\07\00\00\00\08\00\00\00\09\00\00\00\n\00\00\00\01\00\00\00\02\00\00\00\01\00\00\00\02\00\00\00\09\00\00\00\03\00\00\00\01\00\00\00" @@ -319,9 +319,9 @@ "\01\00\00\00X\19\00\00\00\00\00\00\80\12\00\00\1b\00\00\00\1c\00\00\00+\00\00\00\00\00\00\00\a8\12\00\00\1d\00\00\00\1e\00\00\00\05\00\00\00\16\00\00\00\01\00\00\00\06\00\00\00,\00\00\00" "\00\00\00\00\b8\12\00\00\1d\00\00\00\1f\00\00\00\07\00\00\00\17\00\00\00\02\00\00\00\06\00\00\00,") (data $72 $29 (i32.const 7529) - "\01\00\00\00\09\00\00\00\00\00\00\08\00\00\00\01\00\00\00 \00\00\00\00\10\04\00\00(c\00\006c\00\00\10\0d\00\00\d0\12\00\00`\13") + "\01\00\00\00\09\00\00\00\00\00\00\08\00\00\00\01\00\00\00 \00\00\00\00\10\04\00\008c\00\00Fc\00\00\10\0d\00\00\d0\12\00\00`\13") (data $73 $29 (i32.const 7768) - "\bc`") + "\cc`") (data $74 $29 (i32.const 7828) "\80\14\00\00 \00\00\00!\00\00\00.\00\00\00\00\00\00\00\98\14\00\00\"\00\00\00#\00\00\00$\00\00\00%\00\00\00\0b\00\00\00\01\00\00\00\02\00\00\00\02\00\00\00\00\00\00\00\c0\14\00\00" "\"\00\00\00&\00\00\00$\00\00\00%\00\00\00\0b\00\00\00\02\00\00\00\03\00\00\00\03\00\00\00\00\00\00\00\d0\14\00\00\0c\00\00\00\0d\00\00\00\0e\00\00\00\0f\00\00\00\18\00\00\00\19\00\00\00" @@ -382,209 +382,209 @@ "ENS1_29InternalMetadataWithArenaLiteEE9ContainerE\00/usr/local/inc" "lude/google/protobuf/arenastring.h\00CHECK failed: initial_value !" "= NULL: \00NSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocato" - "rIcEEEE\00NSt3__221__basic_string_commonILb1EEE\00/home/jplev_google" - "_com/envoy/api/wasm/cpp/struct_lite.pb.cc\00/usr/local/include/goo" - "gle/protobuf/repeated_field.h\00CHECK failed: (index) >= (0): \00CHE" - "CK failed: (index) < (current_size_): \00/usr/local/include/google" - "/protobuf/map.h\00CHECK failed: (bucket_index_ & 1) == (0): \00CHECK" - " failed: m_->index_of_first_non_null_ == m_->num_buckets_ || m_-" - ">table_[m_->index_of_first_non_null_] != NULL: \00CHECK failed: !t" - "ree->empty(): \00CHECK failed: node_ != NULL && m_ != NULL: \00googl" - "e.protobuf.Value.string_value\00google.protobuf.Struct.FieldsEntry" - ".key\00CHECK failed: (&from) != (this): \00CHECK failed: (&other) !=" - " (this): \00N6google8protobuf27Struct_FieldsEntry_DoNotUseE\00N6goog" - "le8protobuf8internal12MapEntryLiteINS0_27Struct_FieldsEntry_DoNo" - "tUseENSt3__212basic_stringIcNS4_11char_traitsIcEENS4_9allocatorI" - "cEEEENS0_5ValueELNS1_14WireFormatLite9FieldTypeE9ELSD_11ELi0EEE\00" - "N6google8protobuf8internal12MapEntryImplINS0_27Struct_FieldsEntr" - "y_DoNotUseENS0_11MessageLiteENSt3__212basic_stringIcNS5_11char_t" - "raitsIcEENS5_9allocatorIcEEEENS0_5ValueELNS1_14WireFormatLite9Fi" - "eldTypeE9ELSE_11ELi0EEE\00CHECK failed: (it.m_) == (this): \00CHECK " - "failed: TableEntryIsNonEmptyList(b): \00CHECK failed: TableEntryIs" - "Tree(b): \00CHECK failed: GetArenaNoVirtual() == NULL: \00CHECK fail" - "ed: index_of_first_non_null_ == num_buckets_ || table_[index_of_" - "first_non_null_] != NULL: \00CHECK failed: find(*KeyPtrFromNodePtr" - "(node)) == end(): \00CHECK failed: (count) <= (kMaxLength): \00CHECK" - " failed: (result.bucket_index_) == (b & ~static_cast(" - "1)): \00CHECK failed: (table_[b]) == (table_[b ^ 1]): \00CHECK faile" - "d: !TableEntryIsTree(b) && !TableEntryIsTree(b ^ 1): \00CHECK fail" - "ed: (count) == (tree->size()): \00CHECK failed: (new_num_buckets) " - ">= (kMinTableSize): \00CHECK failed: n >= kMinTableSize: \00CHECK fa" - "iled: (n & (n - 1)) == (0): \00CHECK failed: table_[b] == table_[b" - " + 1] && (b & 1) == 0: \00N6google8protobuf3MapINSt3__212basic_str" - "ingIcNS2_11char_traitsIcEENS2_9allocatorIcEEEENS0_5ValueEE8Inner" - "MapE\00N6google8protobuf4hashINSt3__212basic_stringIcNS2_11char_tr" - "aitsIcEENS2_9allocatorIcEEEEEE\00f == NULL || dynamic_cast(f) " - "!= NULL\00/usr/local/include/google/protobuf/stubs/casts.h\00down_ca" - "st\00google.protobuf.Struct\00N6google8protobuf6StructE\00N6google8pro" - "tobuf5ValueE\00N6google8protobuf8internal12MapEntryImplINS0_27Stru" - "ct_FieldsEntry_DoNotUseENS0_11MessageLiteENSt3__212basic_stringI" - "cNS5_11char_traitsIcEENS5_9allocatorIcEEEENS0_5ValueELNS1_14Wire" - "FormatLite9FieldTypeE9ELSE_11ELi0EE15MapEntryWrapperE\00CHECK fail" - "ed: (n) >= (0): \00google.protobuf.ListValue\00N6google8protobuf9Lis" - "tValueE\00google.protobuf.Value\00no context factory for root_id: \00N" - "6google8protobuf14FatalExceptionE\00google/protobuf/stubs/common.c" - "c\00This program requires version \00%d.%d.%d\00 of the Protocol Buffe" - "r runtime library, but the installed version is \00. Please updat" - "e your library. If you compiled the program yourself, make sure" - " that your headers are from the same version of Protocol Buffers" - " as your link-time library. (Version verification failed in \"\00\"" - ".)\00This program was compiled against version \00 of the Protocol B" - "uffer runtime library, which is not compatible with the installe" - "d version (\00). Contact the program author for an update. If yo" - "u compiled the program yourself, make sure that your headers are" - " from the same version of Protocol Buffers as your link-time lib" - "rary. (Version verification failed in \"\00[libprotobuf %s %s:%d] " - "%s\n\00INFO\00WARNING\00ERROR\00FATAL\00allocator::allocate(size_t n) 'n" - "' exceeds maximum supported size\00%d\00%u\00google/protobuf/arena.cc\00" - "CHECK failed: (min_bytes) <= (std::numeric_limits::max()" - " - kBlockHeaderSize): \00google/protobuf/generated_message_util.cc" - "\00Not implemented field number \00 with type \00CHECK failed: (scc->v" - "isit_status.load(std::memory_order_relaxed)) == (SCCInfoBase::kR" - "unning): \00google/protobuf/message_lite.cc\00CHECK failed: !coded_o" - "ut.HadError(): \00(cannot determine missing fields for lite messag" - "e)\00N6google8protobuf11MessageLiteE\00google/protobuf/repeated_fiel" - "d.cc\00CHECK failed: (new_size) <= ((std::numeric_limits::" - "max() - kRepHeaderSize) / sizeof(old_rep->elements[0])): \00Reques" - "ted size is too large to fit into size_t.\00google/protobuf/wire_f" - "ormat_lite.cc\00CHECK failed: (value.size()) <= (kint32max): \00seri" - "alizing\00parsing\00 '%s'\00String field\00 contains invalid \00UTF-8 data" - " when \00 a protocol \00buffer. Use the 'bytes' type if you intend t" - "o send raw \00bytes. \00google/protobuf/io/coded_stream.cc\00CHECK fai" - "led: (buffer_size) >= (0): \00A protocol message was rejected beca" - "use it was too big (more than \00 bytes). To increase the limit (" - "or to disable these warnings), see CodedInputStream::SetTotalByt" - "esLimit() in google/protobuf/io/coded_stream.h.\00google/protobuf/" - "io/zero_copy_stream_impl_lite.cc\00CHECK failed: (count) >= (0): \00" - "CHECK failed: (last_returned_size_) > (0): \00BackUp() can only be" - " called after a successful Next().\00CHECK failed: (count) <= (las" - "t_returned_size_): \00N6google8protobuf2io17ArrayOutputStreamE\00CHE" - "CK failed: target_ != NULL: \00CHECK failed: (count) <= (target_->" - "size()): \00Cannot allocate buffer larger than kint32max for \00Stri" - "ngOutputStream.\00N6google8protobuf2io18StringOutputStreamE\00google" - "/protobuf/io/zero_copy_stream.cc\00This ZeroCopyOutputStream doesn" - "'t support aliasing. Reaching here usually means a ZeroCopyOutpu" - "tStream implementation bug.\00N6google8protobuf2io20ZeroCopyOutput" - "StreamE\00-+ 0X0x\00(null)\00-0X+0X 0X-0x+0x 0x\00inf\00INF\00nan\00NAN\00std:" - ":bad_function_call\00NSt3__217bad_function_callE\00mutex lock failed" - "\00terminating with %s exception of type %s: %s\00terminating with %" - "s exception of type %s\00terminating with %s foreign exception\00ter" - "minating\00uncaught\00St9exception\00N10__cxxabiv116__shim_type_infoE\00" - "St9type_info\00N10__cxxabiv120__si_class_type_infoE\00N10__cxxabiv11" - "7__class_type_infoE\00terminate_handler unexpectedly returned\00_Z\00_" - "__Z\00_block_invoke\00invocation function for block in \00void\00bool\00ch" - "ar\00signed char\00unsigned char\00short\00unsigned short\00int\00unsigned i" - "nt\00long\00unsigned long\00long long\00__int128\00unsigned __int128\00float" - "\00long double\00__float128\00...\00decimal64\00decimal128\00decimal32\00decim" - "al16\00char32_t\00char16_t\00auto\00decltype(auto)\00std::nullptr_t\00[abi:\00" - "]\00N12_GLOBAL__N_116itanium_demangle10AbiTagAttrE\00N12_GLOBAL__N_1" - "16itanium_demangle4NodeE\00allocator\00basic_string\00string\00istream\00o" - "stream\00iostream\00std::allocator\00std::basic_string\00std::string\00std" - "::istream\00std::ostream\00std::iostream\00N12_GLOBAL__N_116itanium_de" - "mangle19SpecialSubstitutionE\00 imaginary\00N12_GLOBAL__N_116itanium" - "_demangle20PostfixQualifiedTypeE\00 complex\00)\00 \00(\00&\00&&\00N12_GLOBAL_" - "_N_116itanium_demangle13ReferenceTypeE\00objc_object\00*\00id<\00>\00N12_G" - "LOBAL__N_116itanium_demangle11PointerTypeE\00N12_GLOBAL__N_116itan" - "ium_demangle20NameWithTemplateArgsE\00<\00, \00N12_GLOBAL__N_116itaniu" - "m_demangle12TemplateArgsE\00N12_GLOBAL__N_116itanium_demangle13Par" - "ameterPackE\00wchar_t\00b0E\00b1E\00u\00l\00ul\00ll\00ull\00N12_GLOBAL__N_116itani" - "um_demangle15IntegerCastExprE\00%LaL\00N12_GLOBAL__N_116itanium_dema" - "ngle16FloatLiteralImplIeEE\00%a\00N12_GLOBAL__N_116itanium_demangle1" - "6FloatLiteralImplIdEE\00%af\00N12_GLOBAL__N_116itanium_demangle16Flo" - "atLiteralImplIfEE\00true\00false\00N12_GLOBAL__N_116itanium_demangle8B" - "oolExprE\00-\00N12_GLOBAL__N_116itanium_demangle14IntegerLiteralE\00N1" - "2_GLOBAL__N_116itanium_demangle20TemplateArgumentPackE\00gs\00&=\00=\00a" - "lignof (\00,\00~\00.*\00/\00/=\00^\00^=\00==\00>=\00<=\00<<\00<<=\00-=\00*=\00--\00!=\00!\00||\00|\00|=\00" - "->*\00+\00+=\00++\00->\00%\00%=\00>>\00>>=\00sizeof (\00typeid (\00throw\00throw \00N12_GL" - "OBAL__N_116itanium_demangle9ThrowExprE\00N12_GLOBAL__N_116itanium_" - "demangle12InitListExprE\00N12_GLOBAL__N_116itanium_demangle13NodeA" - "rrayNodeE\00sizeof... (\00N12_GLOBAL__N_116itanium_demangle13Enclosi" - "ngExprE\00sizeof...(\00N12_GLOBAL__N_116itanium_demangle22ParameterP" - "ackExpansionE\00N12_GLOBAL__N_116itanium_demangle19SizeofParamPack" - "ExprE\00static_cast\00>(\00N12_GLOBAL__N_116itanium_demangle8CastExprE" - "\00reinterpret_cast\00) ? (\00) : (\00N12_GLOBAL__N_116itanium_demangle1" - "5ConditionalExprE\00noexcept (\00nw\00na\00pi\00::operator \00new\00[]\00N12_GLO" - "BAL__N_116itanium_demangle7NewExprE\00N12_GLOBAL__N_116itanium_dem" - "angle11PostfixExprE\00 ... \00 = \00N12_GLOBAL__N_116itanium_demangle1" - "5BracedRangeExprE\00N12_GLOBAL__N_116itanium_demangle10BracedExprE" - "\00_GLOBAL__N\00(anonymous namespace)\00N12_GLOBAL__N_116itanium_deman" - "gle8NameTypeE\00)[\00N12_GLOBAL__N_116itanium_demangle18ArraySubscri" - "ptExprE\00.\00N12_GLOBAL__N_116itanium_demangle10MemberExprE\00srN\00sr\00" - "::\00N12_GLOBAL__N_116itanium_demangle19GlobalQualifiedNameE\00dn\00on" - "\00operator&&\00operator&\00operator&=\00operator=\00operator()\00operator,\00" - "operator~\00operator delete[]\00operator*\00operator/\00operator/=\00opera" - "tor^\00operator^=\00operator==\00operator>=\00operator>\00operator[]\00opera" - "tor<=\00operator<<\00operator<<=\00operator<\00operator-\00operator-=\00oper" - "ator*=\00operator--\00operator new[]\00operator!=\00operator!\00operator n" - "ew\00operator||\00operator|\00operator|=\00operator->*\00operator+\00operato" - "r+=\00operator++\00operator->\00operator?\00operator%\00operator%=\00operato" - "r>>\00operator>>=\00operator<=>\00operator\"\" \00N12_GLOBAL__N_116itanium" - "_demangle15LiteralOperatorE\00operator delete\00operator \00N12_GLOBAL" - "__N_116itanium_demangle22ConversionOperatorTypeE\00N12_GLOBAL__N_1" - "16itanium_demangle8DtorNameE\00N12_GLOBAL__N_116itanium_demangle13" - "QualifiedNameE\00dynamic_cast\00delete\00[] \00N12_GLOBAL__N_116itanium_" - "demangle10DeleteExprE\00cv\00)(\00N12_GLOBAL__N_116itanium_demangle14C" - "onversionExprE\00N12_GLOBAL__N_116itanium_demangle8CallExprE\00const" - "_cast\00N12_GLOBAL__N_116itanium_demangle10PrefixExprE\00) \00 (\00N12_G" - "LOBAL__N_116itanium_demangle10BinaryExprE\00aa\00an\00aN\00aS\00cm\00ds\00dv\00d" - "V\00eo\00eO\00eq\00ge\00gt\00le\00ls\00lS\00lt\00mi\00mI\00ml\00mL\00ne\00oo\00or\00oR\00pl\00pL\00rm\00rM" - "\00rs\00rS\00... \00 ...\00N12_GLOBAL__N_116itanium_demangle8FoldExprE\00fp\00" - "fL\00N12_GLOBAL__N_116itanium_demangle13FunctionParamE\00N12_GLOBAL_" - "_N_116itanium_demangle24ForwardTemplateReferenceE\00Ts\00struct\00Tu\00u" - "nion\00Te\00enum\00N12_GLOBAL__N_116itanium_demangle22ElaboratedTypeSp" - "efTypeE\00StL\00St\00std::\00N12_GLOBAL__N_116itanium_demangle16StdQuali" - "fiedNameE\00DC\00N12_GLOBAL__N_116itanium_demangle21StructuredBindin" - "gNameE\00Ut\00Ul\00vE\00'lambda\00'(\00N12_GLOBAL__N_116itanium_demangle15Cl" - "osureTypeNameE\00'unnamed\00'\00N12_GLOBAL__N_116itanium_demangle15Unn" - "amedTypeNameE\00string literal\00N12_GLOBAL__N_116itanium_demangle9L" - "ocalNameE\00std\00N12_GLOBAL__N_116itanium_demangle12CtorDtorNameE\00b" - "asic_istream\00basic_ostream\00basic_iostream\00std::basic_string, std::allocator >\00std::basic_istr" - "eam >\00std::basic_ostream >\00std::basic_iostream >\00N12_GLOBAL__N_116itanium_demangle27ExpandedSpecialSubsti" - "tutionE\00N12_GLOBAL__N_116itanium_demangle10NestedNameE\00::*\00N12_G" - "LOBAL__N_116itanium_demangle19PointerToMemberTypeE\00[\00N12_GLOBAL_" - "_N_116itanium_demangle9ArrayTypeE\00Dv\00 vector[\00N12_GLOBAL__N_116i" - "tanium_demangle10VectorTypeE\00pixel vector[\00N12_GLOBAL__N_116itan" - "ium_demangle15PixelVectorTypeE\00decltype(\00double\00unsigned long lo" - "ng\00objcproto\00 const\00 volatile\00 restrict\00N12_GLOBAL__N_116itanium" - "_demangle8QualTypeE\00N12_GLOBAL__N_116itanium_demangle17VendorExt" - "QualTypeE\00N12_GLOBAL__N_116itanium_demangle13ObjCProtoNameE\00Do\00n" - "oexcept\00DO\00Dw\00Dx\00RE\00OE\00 &\00 &&\00N12_GLOBAL__N_116itanium_demangle1" - "2FunctionTypeE\00throw(\00N12_GLOBAL__N_116itanium_demangle20Dynamic" - "ExceptionSpecE\00noexcept(\00N12_GLOBAL__N_116itanium_demangle12Noex" - "ceptSpecE\00N12_GLOBAL__N_116itanium_demangle11SpecialNameE\00N12_GL" - "OBAL__N_116itanium_demangle9DotSuffixE\00Ua9enable_ifI\00N12_GLOBAL_" - "_N_116itanium_demangle16FunctionEncodingE\00 [enable_if:\00N12_GLOBA" - "L__N_116itanium_demangle12EnableIfAttrE\00thread-local wrapper rou" - "tine for \00reference temporary for \00guard variable for \00non-virtu" - "al thunk to \00virtual thunk to \00thread-local initialization routi" - "ne for \00construction vtable for \00-in-\00N12_GLOBAL__N_116itanium_d" - "emangle21CtorVtableSpecialNameE\00covariant return thunk to \00typei" - "nfo name for \00typeinfo for \00VTT for \00vtable for \00St11logic_error" - "\00St12length_error\00N10__cxxabiv117__pbase_type_infoE\00N10__cxxabiv" - "119__pointer_type_infoE\00N10__cxxabiv123__fundamental_type_infoE\00" - "v\00c\00h\00N10__cxxabiv121__vmi_class_type_infoE") + "rIcEEEE\00NSt3__221__basic_string_commonILb1EEE\00/home/piotrsikora/" + "Google/envoy/api/wasm/cpp/struct_lite.pb.cc\00/usr/local/include/g" + "oogle/protobuf/repeated_field.h\00CHECK failed: (index) >= (0): \00C" + "HECK failed: (index) < (current_size_): \00/usr/local/include/goog" + "le/protobuf/map.h\00CHECK failed: (bucket_index_ & 1) == (0): \00CHE" + "CK failed: m_->index_of_first_non_null_ == m_->num_buckets_ || m" + "_->table_[m_->index_of_first_non_null_] != NULL: \00CHECK failed: " + "!tree->empty(): \00CHECK failed: node_ != NULL && m_ != NULL: \00goo" + "gle.protobuf.Value.string_value\00google.protobuf.Struct.FieldsEnt" + "ry.key\00CHECK failed: (&from) != (this): \00CHECK failed: (&other) " + "!= (this): \00N6google8protobuf27Struct_FieldsEntry_DoNotUseE\00N6go" + "ogle8protobuf8internal12MapEntryLiteINS0_27Struct_FieldsEntry_Do" + "NotUseENSt3__212basic_stringIcNS4_11char_traitsIcEENS4_9allocato" + "rIcEEEENS0_5ValueELNS1_14WireFormatLite9FieldTypeE9ELSD_11ELi0EE" + "E\00N6google8protobuf8internal12MapEntryImplINS0_27Struct_FieldsEn" + "try_DoNotUseENS0_11MessageLiteENSt3__212basic_stringIcNS5_11char" + "_traitsIcEENS5_9allocatorIcEEEENS0_5ValueELNS1_14WireFormatLite9" + "FieldTypeE9ELSE_11ELi0EEE\00CHECK failed: (it.m_) == (this): \00CHEC" + "K failed: TableEntryIsNonEmptyList(b): \00CHECK failed: TableEntry" + "IsTree(b): \00CHECK failed: GetArenaNoVirtual() == NULL: \00CHECK fa" + "iled: index_of_first_non_null_ == num_buckets_ || table_[index_o" + "f_first_non_null_] != NULL: \00CHECK failed: find(*KeyPtrFromNodeP" + "tr(node)) == end(): \00CHECK failed: (count) <= (kMaxLength): \00CHE" + "CK failed: (result.bucket_index_) == (b & ~static_cast(1)): \00CHECK failed: (table_[b]) == (table_[b ^ 1]): \00CHECK fai" + "led: !TableEntryIsTree(b) && !TableEntryIsTree(b ^ 1): \00CHECK fa" + "iled: (count) == (tree->size()): \00CHECK failed: (new_num_buckets" + ") >= (kMinTableSize): \00CHECK failed: n >= kMinTableSize: \00CHECK " + "failed: (n & (n - 1)) == (0): \00CHECK failed: table_[b] == table_" + "[b + 1] && (b & 1) == 0: \00N6google8protobuf3MapINSt3__212basic_s" + "tringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEENS0_5ValueEE8Inn" + "erMapE\00N6google8protobuf4hashINSt3__212basic_stringIcNS2_11char_" + "traitsIcEENS2_9allocatorIcEEEEEE\00f == NULL || dynamic_cast(f" + ") != NULL\00/usr/local/include/google/protobuf/stubs/casts.h\00down_" + "cast\00google.protobuf.Struct\00N6google8protobuf6StructE\00N6google8p" + "rotobuf5ValueE\00N6google8protobuf8internal12MapEntryImplINS0_27St" + "ruct_FieldsEntry_DoNotUseENS0_11MessageLiteENSt3__212basic_strin" + "gIcNS5_11char_traitsIcEENS5_9allocatorIcEEEENS0_5ValueELNS1_14Wi" + "reFormatLite9FieldTypeE9ELSE_11ELi0EE15MapEntryWrapperE\00CHECK fa" + "iled: (n) >= (0): \00google.protobuf.ListValue\00N6google8protobuf9L" + "istValueE\00google.protobuf.Value\00no context factory for root_id: " + "\00N6google8protobuf14FatalExceptionE\00google/protobuf/stubs/common" + ".cc\00This program requires version \00%d.%d.%d\00 of the Protocol Buf" + "fer runtime library, but the installed version is \00. Please upd" + "ate your library. If you compiled the program yourself, make su" + "re that your headers are from the same version of Protocol Buffe" + "rs as your link-time library. (Version verification failed in \"" + "\00\".)\00This program was compiled against version \00 of the Protocol" + " Buffer runtime library, which is not compatible with the instal" + "led version (\00). Contact the program author for an update. If " + "you compiled the program yourself, make sure that your headers a" + "re from the same version of Protocol Buffers as your link-time l" + "ibrary. (Version verification failed in \"\00[libprotobuf %s %s:%d" + "] %s\n\00INFO\00WARNING\00ERROR\00FATAL\00allocator::allocate(size_t n) " + "'n' exceeds maximum supported size\00%d\00%u\00google/protobuf/arena.c" + "c\00CHECK failed: (min_bytes) <= (std::numeric_limits::max" + "() - kBlockHeaderSize): \00google/protobuf/generated_message_util." + "cc\00Not implemented field number \00 with type \00CHECK failed: (scc-" + ">visit_status.load(std::memory_order_relaxed)) == (SCCInfoBase::" + "kRunning): \00google/protobuf/message_lite.cc\00CHECK failed: !coded" + "_out.HadError(): \00(cannot determine missing fields for lite mess" + "age)\00N6google8protobuf11MessageLiteE\00google/protobuf/repeated_fi" + "eld.cc\00CHECK failed: (new_size) <= ((std::numeric_limits" + "::max() - kRepHeaderSize) / sizeof(old_rep->elements[0])): \00Requ" + "ested size is too large to fit into size_t.\00google/protobuf/wire" + "_format_lite.cc\00CHECK failed: (value.size()) <= (kint32max): \00se" + "rializing\00parsing\00 '%s'\00String field\00 contains invalid \00UTF-8 da" + "ta when \00 a protocol \00buffer. Use the 'bytes' type if you intend" + " to send raw \00bytes. \00google/protobuf/io/coded_stream.cc\00CHECK f" + "ailed: (buffer_size) >= (0): \00A protocol message was rejected be" + "cause it was too big (more than \00 bytes). To increase the limit" + " (or to disable these warnings), see CodedInputStream::SetTotalB" + "ytesLimit() in google/protobuf/io/coded_stream.h.\00google/protobu" + "f/io/zero_copy_stream_impl_lite.cc\00CHECK failed: (count) >= (0):" + " \00CHECK failed: (last_returned_size_) > (0): \00BackUp() can only " + "be called after a successful Next().\00CHECK failed: (count) <= (l" + "ast_returned_size_): \00N6google8protobuf2io17ArrayOutputStreamE\00C" + "HECK failed: target_ != NULL: \00CHECK failed: (count) <= (target_" + "->size()): \00Cannot allocate buffer larger than kint32max for \00St" + "ringOutputStream.\00N6google8protobuf2io18StringOutputStreamE\00goog" + "le/protobuf/io/zero_copy_stream.cc\00This ZeroCopyOutputStream doe" + "sn't support aliasing. Reaching here usually means a ZeroCopyOut" + "putStream implementation bug.\00N6google8protobuf2io20ZeroCopyOutp" + "utStreamE\00-+ 0X0x\00(null)\00-0X+0X 0X-0x+0x 0x\00inf\00INF\00nan\00NAN\00st" + "d::bad_function_call\00NSt3__217bad_function_callE\00mutex lock fail" + "ed\00terminating with %s exception of type %s: %s\00terminating with" + " %s exception of type %s\00terminating with %s foreign exception\00t" + "erminating\00uncaught\00St9exception\00N10__cxxabiv116__shim_type_info" + "E\00St9type_info\00N10__cxxabiv120__si_class_type_infoE\00N10__cxxabiv" + "117__class_type_infoE\00terminate_handler unexpectedly returned\00_Z" + "\00___Z\00_block_invoke\00invocation function for block in \00void\00bool\00" + "char\00signed char\00unsigned char\00short\00unsigned short\00int\00unsigned" + " int\00long\00unsigned long\00long long\00__int128\00unsigned __int128\00flo" + "at\00long double\00__float128\00...\00decimal64\00decimal128\00decimal32\00dec" + "imal16\00char32_t\00char16_t\00auto\00decltype(auto)\00std::nullptr_t\00[abi" + ":\00]\00N12_GLOBAL__N_116itanium_demangle10AbiTagAttrE\00N12_GLOBAL__N" + "_116itanium_demangle4NodeE\00allocator\00basic_string\00string\00istream" + "\00ostream\00iostream\00std::allocator\00std::basic_string\00std::string\00s" + "td::istream\00std::ostream\00std::iostream\00N12_GLOBAL__N_116itanium_" + "demangle19SpecialSubstitutionE\00 imaginary\00N12_GLOBAL__N_116itani" + "um_demangle20PostfixQualifiedTypeE\00 complex\00)\00 \00(\00&\00&&\00N12_GLOBA" + "L__N_116itanium_demangle13ReferenceTypeE\00objc_object\00*\00id<\00>\00N12" + "_GLOBAL__N_116itanium_demangle11PointerTypeE\00N12_GLOBAL__N_116it" + "anium_demangle20NameWithTemplateArgsE\00<\00, \00N12_GLOBAL__N_116itan" + "ium_demangle12TemplateArgsE\00N12_GLOBAL__N_116itanium_demangle13P" + "arameterPackE\00wchar_t\00b0E\00b1E\00u\00l\00ul\00ll\00ull\00N12_GLOBAL__N_116ita" + "nium_demangle15IntegerCastExprE\00%LaL\00N12_GLOBAL__N_116itanium_de" + "mangle16FloatLiteralImplIeEE\00%a\00N12_GLOBAL__N_116itanium_demangl" + "e16FloatLiteralImplIdEE\00%af\00N12_GLOBAL__N_116itanium_demangle16F" + "loatLiteralImplIfEE\00true\00false\00N12_GLOBAL__N_116itanium_demangle" + "8BoolExprE\00-\00N12_GLOBAL__N_116itanium_demangle14IntegerLiteralE\00" + "N12_GLOBAL__N_116itanium_demangle20TemplateArgumentPackE\00gs\00&=\00=" + "\00alignof (\00,\00~\00.*\00/\00/=\00^\00^=\00==\00>=\00<=\00<<\00<<=\00-=\00*=\00--\00!=\00!\00||\00|\00|" + "=\00->*\00+\00+=\00++\00->\00%\00%=\00>>\00>>=\00sizeof (\00typeid (\00throw\00throw \00N12_" + "GLOBAL__N_116itanium_demangle9ThrowExprE\00N12_GLOBAL__N_116itaniu" + "m_demangle12InitListExprE\00N12_GLOBAL__N_116itanium_demangle13Nod" + "eArrayNodeE\00sizeof... (\00N12_GLOBAL__N_116itanium_demangle13Enclo" + "singExprE\00sizeof...(\00N12_GLOBAL__N_116itanium_demangle22Paramete" + "rPackExpansionE\00N12_GLOBAL__N_116itanium_demangle19SizeofParamPa" + "ckExprE\00static_cast\00>(\00N12_GLOBAL__N_116itanium_demangle8CastExp" + "rE\00reinterpret_cast\00) ? (\00) : (\00N12_GLOBAL__N_116itanium_demangl" + "e15ConditionalExprE\00noexcept (\00nw\00na\00pi\00::operator \00new\00[]\00N12_G" + "LOBAL__N_116itanium_demangle7NewExprE\00N12_GLOBAL__N_116itanium_d" + "emangle11PostfixExprE\00 ... \00 = \00N12_GLOBAL__N_116itanium_demangl" + "e15BracedRangeExprE\00N12_GLOBAL__N_116itanium_demangle10BracedExp" + "rE\00_GLOBAL__N\00(anonymous namespace)\00N12_GLOBAL__N_116itanium_dem" + "angle8NameTypeE\00)[\00N12_GLOBAL__N_116itanium_demangle18ArraySubsc" + "riptExprE\00.\00N12_GLOBAL__N_116itanium_demangle10MemberExprE\00srN\00s" + "r\00::\00N12_GLOBAL__N_116itanium_demangle19GlobalQualifiedNameE\00dn\00" + "on\00operator&&\00operator&\00operator&=\00operator=\00operator()\00operator" + ",\00operator~\00operator delete[]\00operator*\00operator/\00operator/=\00ope" + "rator^\00operator^=\00operator==\00operator>=\00operator>\00operator[]\00ope" + "rator<=\00operator<<\00operator<<=\00operator<\00operator-\00operator-=\00op" + "erator*=\00operator--\00operator new[]\00operator!=\00operator!\00operator" + " new\00operator||\00operator|\00operator|=\00operator->*\00operator+\00opera" + "tor+=\00operator++\00operator->\00operator?\00operator%\00operator%=\00opera" + "tor>>\00operator>>=\00operator<=>\00operator\"\" \00N12_GLOBAL__N_116itani" + "um_demangle15LiteralOperatorE\00operator delete\00operator \00N12_GLOB" + "AL__N_116itanium_demangle22ConversionOperatorTypeE\00N12_GLOBAL__N" + "_116itanium_demangle8DtorNameE\00N12_GLOBAL__N_116itanium_demangle" + "13QualifiedNameE\00dynamic_cast\00delete\00[] \00N12_GLOBAL__N_116itaniu" + "m_demangle10DeleteExprE\00cv\00)(\00N12_GLOBAL__N_116itanium_demangle1" + "4ConversionExprE\00N12_GLOBAL__N_116itanium_demangle8CallExprE\00con" + "st_cast\00N12_GLOBAL__N_116itanium_demangle10PrefixExprE\00) \00 (\00N12" + "_GLOBAL__N_116itanium_demangle10BinaryExprE\00aa\00an\00aN\00aS\00cm\00ds\00dv" + "\00dV\00eo\00eO\00eq\00ge\00gt\00le\00ls\00lS\00lt\00mi\00mI\00ml\00mL\00ne\00oo\00or\00oR\00pl\00pL\00rm\00" + "rM\00rs\00rS\00... \00 ...\00N12_GLOBAL__N_116itanium_demangle8FoldExprE\00f" + "p\00fL\00N12_GLOBAL__N_116itanium_demangle13FunctionParamE\00N12_GLOBA" + "L__N_116itanium_demangle24ForwardTemplateReferenceE\00Ts\00struct\00Tu" + "\00union\00Te\00enum\00N12_GLOBAL__N_116itanium_demangle22ElaboratedType" + "SpefTypeE\00StL\00St\00std::\00N12_GLOBAL__N_116itanium_demangle16StdQua" + "lifiedNameE\00DC\00N12_GLOBAL__N_116itanium_demangle21StructuredBind" + "ingNameE\00Ut\00Ul\00vE\00'lambda\00'(\00N12_GLOBAL__N_116itanium_demangle15" + "ClosureTypeNameE\00'unnamed\00'\00N12_GLOBAL__N_116itanium_demangle15U" + "nnamedTypeNameE\00string literal\00N12_GLOBAL__N_116itanium_demangle" + "9LocalNameE\00std\00N12_GLOBAL__N_116itanium_demangle12CtorDtorNameE" + "\00basic_istream\00basic_ostream\00basic_iostream\00std::basic_string, std::allocator >\00std::basic_is" + "tream >\00std::basic_ostream >\00std::basic_iostream >\00N12_GLOBAL__N_116itanium_demangle27ExpandedSpecialSubs" + "titutionE\00N12_GLOBAL__N_116itanium_demangle10NestedNameE\00::*\00N12" + "_GLOBAL__N_116itanium_demangle19PointerToMemberTypeE\00[\00N12_GLOBA" + "L__N_116itanium_demangle9ArrayTypeE\00Dv\00 vector[\00N12_GLOBAL__N_11" + "6itanium_demangle10VectorTypeE\00pixel vector[\00N12_GLOBAL__N_116it" + "anium_demangle15PixelVectorTypeE\00decltype(\00double\00unsigned long " + "long\00objcproto\00 const\00 volatile\00 restrict\00N12_GLOBAL__N_116itani" + "um_demangle8QualTypeE\00N12_GLOBAL__N_116itanium_demangle17VendorE" + "xtQualTypeE\00N12_GLOBAL__N_116itanium_demangle13ObjCProtoNameE\00Do" + "\00noexcept\00DO\00Dw\00Dx\00RE\00OE\00 &\00 &&\00N12_GLOBAL__N_116itanium_demangl" + "e12FunctionTypeE\00throw(\00N12_GLOBAL__N_116itanium_demangle20Dynam" + "icExceptionSpecE\00noexcept(\00N12_GLOBAL__N_116itanium_demangle12No" + "exceptSpecE\00N12_GLOBAL__N_116itanium_demangle11SpecialNameE\00N12_" + "GLOBAL__N_116itanium_demangle9DotSuffixE\00Ua9enable_ifI\00N12_GLOBA" + "L__N_116itanium_demangle16FunctionEncodingE\00 [enable_if:\00N12_GLO" + "BAL__N_116itanium_demangle12EnableIfAttrE\00thread-local wrapper r" + "outine for \00reference temporary for \00guard variable for \00non-vir" + "tual thunk to \00virtual thunk to \00thread-local initialization rou" + "tine for \00construction vtable for \00-in-\00N12_GLOBAL__N_116itanium" + "_demangle21CtorVtableSpecialNameE\00covariant return thunk to \00typ" + "einfo name for \00typeinfo for \00VTT for \00vtable for \00St11logic_err" + "or\00St12length_error\00N10__cxxabiv117__pbase_type_infoE\00N10__cxxab" + "iv119__pointer_type_infoE\00N10__cxxabiv123__fundamental_type_info" + "E\00v\00c\00h\00N10__cxxabiv121__vmi_class_type_infoE") (func $globalCtors (type $8) call $__GLOBAL__sub_I_queue_cpp_cc - i32.const 24584 + i32.const 24600 i64.const 0 i64.store align=4 - i32.const 24592 + i32.const 24608 i64.const 0 i64.store align=4 - i32.const 24600 + i32.const 24616 i32.const 1065353216 i32.store - i32.const 24604 + i32.const 24620 i64.const 0 i64.store align=4 - i32.const 24612 + i32.const 24628 i64.const 0 i64.store align=4 - i32.const 24620 + i32.const 24636 i32.const 1065353216 i32.store call $__GLOBAL__sub_I_status_cc @@ -5034,7 +5034,7 @@ i32.const 6800 i32.store offset=12 local.get $0 - i32.const 25398 + i32.const 25414 i32.store local.get $0 i32.const 0 @@ -5282,33 +5282,33 @@ global.set $32 local.get $0 global.set $32 - i32.const 24412 + i32.const 24428 i32.const 0 i32.store - i32.const 24404 - i32.const 24552 + i32.const 24420 + i32.const 24568 i32.store - i32.const 24408 + i32.const 24424 i32.const 0 i32.store - i32.const 24416 + i32.const 24432 i32.const 0 i32.store - i32.const 24400 + i32.const 24416 i32.const 6840 i32.store - i32.const 24424 + i32.const 24440 call $__ZN6google8protobuf6StructC2Ev i32.const 115 - i32.const 24424 + i32.const 24440 call $__ZN6google8protobuf8internal13OnShutdownRunEPFvPKvES3_ - i32.const 24456 + i32.const 24472 i32.const 6928 i32.store - i32.const 24460 + i32.const 24476 i32.const 0 i32.store - i32.const 24472 + i32.const 24488 i32.const 0 i32.store i32.const 6816 @@ -5316,19 +5316,19 @@ if $if call $__ZN6google8protobuf8internal11InitSCCImplEPNS1_11SCCInfoBaseE end ;; $if - i32.const 24476 + i32.const 24492 i32.const 0 i32.store i32.const 115 - i32.const 24456 + i32.const 24472 call $__ZN6google8protobuf8internal13OnShutdownRunEPFvPKvES3_ - i32.const 24512 + i32.const 24528 call $__ZN6google8protobuf9ListValueC2Ev i32.const 115 - i32.const 24512 + i32.const 24528 call $__ZN6google8protobuf8internal13OnShutdownRunEPFvPKvES3_ - i32.const 24408 - i32.const 24456 + i32.const 24424 + i32.const 24472 i32.store ) @@ -5436,7 +5436,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 12830 + i32.const 12832 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -5570,19 +5570,19 @@ i32.const 25 i32.store offset=4 local.get $1 - i32.const 14117 + i32.const 14119 i64.load align=1 i64.store align=1 local.get $1 - i32.const 14125 + i32.const 14127 i64.load align=1 i64.store offset=8 align=1 local.get $1 - i32.const 14133 + i32.const 14135 i64.load align=1 i64.store offset=16 align=1 local.get $1 - i32.const 14141 + i32.const 14143 i32.load8_s i32.store8 offset=24 local.get $1 @@ -5694,10 +5694,10 @@ local.get $1 call $__ZN6google8protobuf9ListValue9MergeFromERKS1_ else - i32.const 13683 - i32.const 13724 + i32.const 13685 + i32.const 13726 i32.const 92 - i32.const 13773 + i32.const 13775 call $___assert_fail end ;; $if ) @@ -6111,7 +6111,7 @@ local.tee $1 i32.const -2 i32.and - i32.const 24552 + i32.const 24568 local.get $1 i32.const 1 i32.and @@ -6220,7 +6220,7 @@ local.tee $2 i32.const -2 i32.and - i32.const 24552 + i32.const 24568 local.get $2 i32.const 1 i32.and @@ -6239,7 +6239,7 @@ local.tee $0 i32.const -2 i32.and - i32.const 24552 + i32.const 24568 local.get $0 i32.const 1 i32.and @@ -6296,7 +6296,7 @@ i32.const 3 i32.store local.get $3 - i32.const 11710 + i32.const 11712 i32.store offset=4 local.get $3 i32.const 1505 @@ -6308,7 +6308,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 11762 + i32.const 11764 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -6338,7 +6338,7 @@ i32.const 3 i32.store local.get $2 - i32.const 11710 + i32.const 11712 i32.store offset=4 local.get $2 i32.const 1506 @@ -6350,7 +6350,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 11793 + i32.const 11795 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -6385,7 +6385,7 @@ local.tee $1 i32.const -2 i32.and - i32.const 24552 + i32.const 24568 local.get $1 i32.const 1 i32.and @@ -6536,7 +6536,7 @@ local.tee $1 i32.const -2 i32.and - i32.const 24552 + i32.const 24568 local.get $1 i32.const 1 i32.and @@ -6657,7 +6657,7 @@ local.tee $1 i32.const -2 i32.and - i32.const 24552 + i32.const 24568 local.get $1 i32.const 1 i32.and @@ -6774,7 +6774,7 @@ i32.store offset=12 end ;; $if_1 local.get $1 - i32.const 24552 + i32.const 24568 i32.store offset=4 local.get $1 i32.const 0 @@ -7008,7 +7008,7 @@ i32.const 3 i32.store local.get $3 - i32.const 11835 + i32.const 11837 i32.store offset=4 local.get $3 i32.const 418 @@ -7020,7 +7020,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 11919 + i32.const 11921 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -7106,7 +7106,7 @@ i32.const 3 i32.store local.get $2 - i32.const 11835 + i32.const 11837 i32.store offset=4 local.get $2 i32.const 427 @@ -7118,7 +7118,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 12036 + i32.const 12038 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -7189,7 +7189,7 @@ i32.const 3 i32.store local.get $2 - i32.const 11835 + i32.const 11837 i32.store offset=4 local.get $2 i32.const 451 @@ -7201,7 +7201,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 11876 + i32.const 11878 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -7337,7 +7337,7 @@ i32.const 3 i32.store local.get $3 - i32.const 11835 + i32.const 11837 i32.store offset=4 local.get $3 i32.const 476 @@ -7349,7 +7349,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 12067 + i32.const 12069 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -8006,7 +8006,7 @@ local.get $0 i32.load offset=4 local.tee $1 - i32.const 24552 + i32.const 24568 i32.eq local.get $1 i32.eqz @@ -8059,7 +8059,7 @@ local.get $0 i32.load offset=4 local.tee $1 - i32.const 24552 + i32.const 24568 i32.eq local.get $1 i32.eqz @@ -8120,7 +8120,7 @@ i32.const 0 i32.store offset=12 local.get $0 - i32.const 24552 + i32.const 24568 i32.store offset=4 local.get $0 i32.const 0 @@ -8156,7 +8156,7 @@ local.get $0 i32.load offset=4 local.tee $1 - i32.const 24552 + i32.const 24568 i32.ne if $if local.get $1 @@ -8239,10 +8239,10 @@ local.get $1 call $__ZN6google8protobuf8internal12MapEntryImplINS0_27Struct_FieldsEntry_DoNotUseENS0_11MessageLiteENSt3__212basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEENS0_5ValueELNS1_14WireFormatLite9FieldTypeE9ELSE_11ELi0EE17MergeFromInternalERKSF_ else - i32.const 13683 - i32.const 13724 + i32.const 13685 + i32.const 13726 i32.const 92 - i32.const 13773 + i32.const 13775 call $___assert_fail end ;; $if ) @@ -8332,13 +8332,13 @@ local.get $5 i32.load local.tee $2 - i32.const 24552 + i32.const 24568 i32.eq if $if_0 local.get $5 local.get $0 i32.load offset=12 - i32.const 24552 + i32.const 24568 call $__ZN6google8protobuf8internal14ArenaStringPtr14CreateInstanceEPNS0_5ArenaEPKNSt3__212basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEE local.get $5 i32.load @@ -9172,7 +9172,7 @@ i32.const 3 i32.store offset=20 local.get $5 - i32.const 24552 + i32.const 24568 i32.store end ;; $if_5 local.get $0 @@ -9194,12 +9194,12 @@ local.get $5 i32.load local.tee $3 - i32.const 24552 + i32.const 24568 i32.eq if $if_7 (result i32) local.get $5 local.get $2 - i32.const 24552 + i32.const 24568 call $__ZN6google8protobuf8internal14ArenaStringPtr14CreateInstanceEPNS0_5ArenaEPKNSt3__212basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEE local.get $5 i32.load @@ -9220,9 +9220,9 @@ i32.load local.tee $2 else - i32.const 24552 + i32.const 24568 local.set $2 - i32.const 24552 + i32.const 24568 end ;; $if_8 i32.load8_s offset=11 i32.const 0 @@ -9239,9 +9239,9 @@ i32.load local.tee $3 else - i32.const 24552 + i32.const 24568 local.set $3 - i32.const 24552 + i32.const 24568 end ;; $if_10 i32.load8_s offset=11 local.tee $2 @@ -9256,7 +9256,7 @@ i32.and end ;; $if_11 i32.const 0 - i32.const 12111 + i32.const 12113 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ br_if $loop i32.const 0 @@ -9653,7 +9653,7 @@ local.get $0 i32.load offset=8 local.tee $1 - i32.const 24552 + i32.const 24568 i32.eq local.get $1 i32.eqz @@ -9996,7 +9996,7 @@ local.get $6 select i32.const 0 - i32.const 12146 + i32.const 12148 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ select br $block_4 @@ -10501,7 +10501,7 @@ i32.const 0 i32.store offset=12 local.get $2 - i32.const 24552 + i32.const 24568 i32.store offset=4 local.get $2 i32.const 0 @@ -10546,13 +10546,13 @@ local.tee $3 i32.load local.tee $5 - i32.const 24552 + i32.const 24568 i32.eq if $if_14 (result i32) local.get $3 local.get $2 i32.load offset=12 - i32.const 24552 + i32.const 24568 call $__ZN6google8protobuf8internal14ArenaStringPtr14CreateInstanceEPNS0_5ArenaEPKNSt3__212basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEE local.get $3 i32.load @@ -10828,7 +10828,7 @@ i32.const 0 i32.store offset=12 local.get $2 - i32.const 24552 + i32.const 24568 i32.store offset=4 local.get $2 i32.const 0 @@ -10909,13 +10909,13 @@ local.tee $3 i32.load local.tee $2 - i32.const 24552 + i32.const 24568 i32.eq if $if_2 local.get $3 local.get $4 i32.load offset=12 - i32.const 24552 + i32.const 24568 call $__ZN6google8protobuf8internal14ArenaStringPtr14CreateInstanceEPNS0_5ArenaEPKNSt3__212basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEE local.get $3 i32.load @@ -11088,7 +11088,7 @@ i32.store offset=12 end ;; $if local.get $0 - i32.const 24552 + i32.const 24568 i32.store offset=4 local.get $0 i32.const 0 @@ -11460,7 +11460,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 12185 + i32.const 12187 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -11589,7 +11589,7 @@ i32.const 8 i32.add local.tee $0 - i32.const 24552 + i32.const 24568 i32.store end ;; $if_4 local.get $2 @@ -11609,7 +11609,7 @@ local.get $0 i32.load local.tee $2 - i32.const 24552 + i32.const 24568 i32.eq if $if_6 local.get $0 @@ -11685,7 +11685,7 @@ i32.const 5 i32.eq br_if $block_8 - i32.const 24424 + i32.const 24440 end ;; $if_8 br $block_7 end ;; $block_8 @@ -11739,7 +11739,7 @@ i32.const 6 i32.eq br_if $block_10 - i32.const 24512 + i32.const 24528 end ;; $if_10 br $block_9 end ;; $block_10 @@ -11794,7 +11794,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 12185 + i32.const 12187 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -11989,7 +11989,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 12185 + i32.const 12187 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -12086,7 +12086,7 @@ i32.const 3 i32.store local.get $2 - i32.const 11710 + i32.const 11712 i32.store offset=4 local.get $2 i32.const 1586 @@ -12098,7 +12098,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 12219 + i32.const 12221 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -12326,7 +12326,7 @@ i32.const 3 i32.store local.get $2 - i32.const 11835 + i32.const 11837 i32.store offset=4 local.get $2 i32.const 601 @@ -12338,7 +12338,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 12716 + i32.const 12718 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -12400,7 +12400,7 @@ i32.const 3 i32.store local.get $2 - i32.const 11835 + i32.const 11837 i32.store offset=4 local.get $2 i32.const 607 @@ -12412,7 +12412,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 12750 + i32.const 12752 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -12455,7 +12455,7 @@ i32.const 3 i32.store local.get $3 - i32.const 11835 + i32.const 11837 i32.store offset=4 local.get $3 i32.const 612 @@ -12467,7 +12467,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 12794 + i32.const 12796 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -13548,7 +13548,7 @@ i32.const 0 i32.store offset=20 local.get $1 - i32.const 12830 + i32.const 12832 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $1 @@ -13905,7 +13905,7 @@ i32.const 3 i32.store local.get $2 - i32.const 11835 + i32.const 11837 i32.store offset=4 local.get $2 i32.const 765 @@ -13917,7 +13917,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 13300 + i32.const 13302 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -14106,7 +14106,7 @@ i32.const 3 i32.store local.get $4 - i32.const 11835 + i32.const 11837 i32.store offset=4 local.get $4 i32.const 672 @@ -14118,7 +14118,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 12874 + i32.const 12876 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -14144,7 +14144,7 @@ i32.const 3 i32.store local.get $4 - i32.const 11835 + i32.const 11837 i32.store offset=4 local.get $4 i32.const 678 @@ -14156,7 +14156,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 12975 + i32.const 12977 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -14238,7 +14238,7 @@ i32.const 3 i32.store local.get $6 - i32.const 11835 + i32.const 11837 i32.store offset=4 local.get $6 i32.const 878 @@ -14250,7 +14250,7 @@ i32.const 0 i32.store offset=20 local.get $6 - i32.const 13031 + i32.const 13033 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $6 @@ -14282,7 +14282,7 @@ i32.const 3 i32.store local.get $5 - i32.const 11835 + i32.const 11837 i32.store offset=4 local.get $5 i32.const 685 @@ -14294,7 +14294,7 @@ i32.const 0 i32.store offset=20 local.get $5 - i32.const 13071 + i32.const 13073 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $5 @@ -14411,7 +14411,7 @@ i32.const 3 i32.store local.get $2 - i32.const 11835 + i32.const 11837 i32.store offset=4 local.get $2 i32.const 837 @@ -14423,7 +14423,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 13193 + i32.const 13195 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -14695,7 +14695,7 @@ i32.const 3 i32.store local.get $2 - i32.const 11835 + i32.const 11837 i32.store offset=4 local.get $2 i32.const 848 @@ -14707,7 +14707,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 13258 + i32.const 13260 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -14769,7 +14769,7 @@ i32.const 3 i32.store local.get $4 - i32.const 11835 + i32.const 11837 i32.store offset=4 local.get $4 i32.const 713 @@ -14781,7 +14781,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 13146 + i32.const 13148 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -16066,7 +16066,7 @@ i32.const 3 i32.store local.get $2 - i32.const 11835 + i32.const 11837 i32.store offset=4 local.get $2 i32.const 926 @@ -16078,7 +16078,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 13353 + i32.const 13355 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -16094,7 +16094,7 @@ i32.const 3 i32.store local.get $3 - i32.const 11835 + i32.const 11837 i32.store offset=4 local.get $3 i32.const 927 @@ -16106,7 +16106,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 13388 + i32.const 13390 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -16687,7 +16687,7 @@ i32.const 3 i32.store local.get $5 - i32.const 11835 + i32.const 11837 i32.store offset=4 local.get $5 i32.const 527 @@ -16699,7 +16699,7 @@ i32.const 0 i32.store offset=20 local.get $5 - i32.const 13425 + i32.const 13427 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $5 @@ -16975,7 +16975,7 @@ i32.const 0 i32.store offset=20 local.get $1 - i32.const 12830 + i32.const 12832 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $1 @@ -17057,19 +17057,19 @@ i32.const 22 i32.store offset=4 local.get $1 - i32.const 13783 + i32.const 13785 i64.load align=1 i64.store align=1 local.get $1 - i32.const 13791 + i32.const 13793 i64.load align=1 i64.store offset=8 align=1 local.get $1 - i32.const 13799 + i32.const 13801 i32.load align=1 i32.store offset=16 align=1 local.get $1 - i32.const 13803 + i32.const 13805 i32.load16_s align=1 i32.store16 offset=20 align=1 local.get $1 @@ -17147,10 +17147,10 @@ local.get $1 call $__ZN6google8protobuf6Struct9MergeFromERKS1_ else - i32.const 13683 - i32.const 13724 + i32.const 13685 + i32.const 13726 i32.const 92 - i32.const 13773 + i32.const 13775 call $___assert_fail end ;; $if ) @@ -17259,7 +17259,7 @@ i32.store offset=12 end ;; $if_1 local.get $2 - i32.const 24552 + i32.const 24568 i32.store offset=4 local.get $2 i32.const 0 @@ -17329,7 +17329,7 @@ local.get $2 local.get $4 i32.const 1 - i32.const 12146 + i32.const 12148 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ drop local.get $5 @@ -17468,7 +17468,7 @@ i32.store offset=12 end ;; $if_8 local.get $2 - i32.const 24552 + i32.const 24568 i32.store offset=4 local.get $2 i32.const 0 @@ -17537,7 +17537,7 @@ local.get $2 local.get $4 i32.const 1 - i32.const 12146 + i32.const 12148 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ drop local.get $8 @@ -17570,7 +17570,7 @@ local.tee $2 i32.const -2 i32.and - i32.const 24552 + i32.const 24568 local.get $2 i32.const 1 i32.and @@ -17589,7 +17589,7 @@ local.tee $0 i32.const -2 i32.and - i32.const 24552 + i32.const 24568 local.get $0 i32.const 1 i32.and @@ -20630,13 +20630,13 @@ i32.add local.tee $2 i32.load - i32.const 24552 + i32.const 24568 i32.eq if $if_1 local.get $2 local.get $0 i32.load offset=12 - i32.const 24552 + i32.const 24568 call $__ZN6google8protobuf8internal14ArenaStringPtr14CreateInstanceEPNS0_5ArenaEPKNSt3__212basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEE end ;; $if_1 local.get $1 @@ -20652,7 +20652,7 @@ local.get $2 i32.load local.tee $4 - i32.const 24552 + i32.const 24568 i32.eq if $if_2 local.get $2 @@ -20720,7 +20720,7 @@ local.get $0 i32.load offset=8 local.tee $0 - i32.const 24408 + i32.const 24424 i32.load local.get $0 select @@ -20750,7 +20750,7 @@ i32.const 3 i32.store local.get $1 - i32.const 11710 + i32.const 11712 i32.store offset=4 local.get $1 i32.const 1567 @@ -20762,7 +20762,7 @@ i32.const 0 i32.store offset=20 local.get $1 - i32.const 14090 + i32.const 14092 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $1 @@ -20966,19 +20966,19 @@ i32.const 21 i32.store offset=4 local.get $1 - i32.const 14172 + i32.const 14174 i64.load align=1 i64.store align=1 local.get $1 - i32.const 14180 + i32.const 14182 i64.load align=1 i64.store offset=8 align=1 local.get $1 - i32.const 14188 + i32.const 14190 i32.load align=1 i32.store offset=16 align=1 local.get $1 - i32.const 14192 + i32.const 14194 i32.load8_s i32.store8 offset=20 local.get $1 @@ -21054,10 +21054,10 @@ local.get $1 call $__ZN6google8protobuf5Value9MergeFromERKS1_ else - i32.const 13683 - i32.const 13724 + i32.const 13685 + i32.const 13726 i32.const 92 - i32.const 13773 + i32.const 13775 call $___assert_fail end ;; $if ) @@ -21120,7 +21120,7 @@ local.get $2 local.get $3 i32.const 1 - i32.const 12111 + i32.const 12113 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ drop local.get $0 @@ -21131,7 +21131,7 @@ local.get $0 i32.load offset=8 else - i32.const 24552 + i32.const 24568 end ;; $if_3 local.get $1 call $__ZN6google8protobuf8internal14WireFormatLite23WriteStringMaybeAliasedEiRKNSt3__212basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEPNS0_2io17CodedOutputStreamE @@ -21181,7 +21181,7 @@ local.tee $2 i32.const -2 i32.and - i32.const 24552 + i32.const 24568 local.get $2 i32.const 1 i32.and @@ -21200,7 +21200,7 @@ local.tee $0 i32.const -2 i32.and - i32.const 24552 + i32.const 24568 local.get $0 i32.const 1 i32.and @@ -21340,13 +21340,13 @@ i32.store offset=4 block $block block $block_0 - i32.const 24588 + i32.const 24604 i32.load local.tee $3 i32.eqz local.tee $11 br_if $block_0 - i32.const 24584 + i32.const 24600 i32.load local.get $3 local.get $3 @@ -21457,13 +21457,13 @@ br $block end ;; $block_0 local.get $11 - i32.const 24600 + i32.const 24616 f32.load local.tee $14 local.get $3 f32.convert_i32_u f32.mul - i32.const 24596 + i32.const 24612 i32.load i32.const 1 i32.add @@ -21522,7 +21522,7 @@ i32.lt_u select call $__ZNSt3__212__hash_tableINS_17__hash_value_typeIiNS_10unique_ptrI11ContextBaseNS_14default_deleteIS3_EEEEEENS_22__unordered_map_hasherIiS7_NS_4hashIiEELb1EEENS_21__unordered_map_equalIiS7_NS_8equal_toIiEELb1EEENS_9allocatorIS7_EEE6rehashEm - i32.const 24588 + i32.const 24604 i32.load local.set $3 local.get $4 @@ -21533,7 +21533,7 @@ local.set $2 block $block_2 block $block_3 - i32.const 24584 + i32.const 24600 i32.load local.get $3 local.get $3 @@ -21578,14 +21578,14 @@ br $block_3 else local.get $4 - i32.const 24592 + i32.const 24608 i32.load i32.store - i32.const 24592 + i32.const 24608 local.get $4 i32.store local.get $11 - i32.const 24592 + i32.const 24608 i32.store local.get $4 i32.load @@ -21594,7 +21594,7 @@ local.get $2 i32.load offset=4 local.set $2 - i32.const 24584 + i32.const 24600 i32.load local.get $10 if $if_14 (result i32) @@ -21631,8 +21631,8 @@ local.get $4 i32.store end ;; $block_2 - i32.const 24596 - i32.const 24596 + i32.const 24612 + i32.const 24612 i32.load i32.const 1 i32.add @@ -21756,7 +21756,7 @@ i32.add i32.const 0 i32.store8 - i32.const 24628 + i32.const 24644 i32.load local.tee $1 if $if_21 @@ -22601,12 +22601,12 @@ local.set $12 block $block block $block_0 - i32.const 24588 + i32.const 24604 i32.load local.tee $5 i32.eqz br_if $block_0 - i32.const 24584 + i32.const 24600 i32.load local.get $5 local.get $5 @@ -22742,7 +22742,7 @@ local.set $0 br $block end ;; $block_0 - i32.const 24624 + i32.const 24640 i32.load i32.eqz if $if_7 @@ -22970,7 +22970,7 @@ i32.add i32.const 0 i32.store8 - i32.const 24624 + i32.const 24640 i32.load local.get $7 call $__ZNSt3__212__hash_tableINS_17__hash_value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEENS_8functionIFNS_10unique_ptrI11RootContextNS_14default_deleteISA_EEEEjNS_17basic_string_viewIcS4_EEEEEEENS_22__unordered_map_hasherIS7_SI_NS_4hashIS7_EELb1EEENS_21__unordered_map_equalIS7_SI_NS_8equal_toIS7_EELb1EEENS5_ISI_EEE4findIS7_EENS_15__hash_iteratorIPNS_11__hash_nodeISI_PvEEEERKT_ @@ -23321,7 +23321,7 @@ (local $3 i32) (local $4 i32) (local $5 i32) - i32.const 24588 + i32.const 24604 i32.load local.tee $1 i32.eqz @@ -23329,7 +23329,7 @@ i32.const 0 return end ;; $if - i32.const 24584 + i32.const 24600 i32.load local.get $1 local.get $1 @@ -23497,7 +23497,7 @@ local.get $0 i32.load local.set $4 - i32.const 24588 + i32.const 24604 i32.load local.tee $2 i32.eqz @@ -23506,7 +23506,7 @@ i32.const 0 local.set $0 else - i32.const 24584 + i32.const 24600 i32.load local.get $2 local.get $2 @@ -23645,13 +23645,13 @@ i32.const 0 i32.store local.get $6 - i32.const 24600 + i32.const 24616 f32.load local.tee $8 local.get $2 f32.convert_i32_u f32.mul - i32.const 24596 + i32.const 24612 i32.load i32.const 1 i32.add @@ -23711,7 +23711,7 @@ i32.lt_u select call $__ZNSt3__212__hash_tableINS_17__hash_value_typeIiNS_10unique_ptrI11ContextBaseNS_14default_deleteIS3_EEEEEENS_22__unordered_map_hasherIiS7_NS_4hashIiEELb1EEENS_21__unordered_map_equalIiS7_NS_8equal_toIiEELb1EEENS_9allocatorIS7_EEE6rehashEm - i32.const 24588 + i32.const 24604 i32.load local.tee $1 i32.const -1 @@ -23748,7 +23748,7 @@ end ;; $if_9 block $block_3 block $block_4 - i32.const 24584 + i32.const 24600 i32.load local.get $0 i32.const 2 @@ -23765,14 +23765,14 @@ br $block_4 else local.get $3 - i32.const 24592 + i32.const 24608 i32.load i32.store - i32.const 24592 + i32.const 24608 local.get $3 i32.store local.get $2 - i32.const 24592 + i32.const 24608 i32.store local.get $3 i32.load @@ -23781,7 +23781,7 @@ local.get $0 i32.load offset=4 local.set $0 - i32.const 24584 + i32.const 24600 i32.load local.get $1 local.get $1 @@ -23823,8 +23823,8 @@ local.get $3 i32.store end ;; $block_3 - i32.const 24596 - i32.const 24596 + i32.const 24612 + i32.const 24612 i32.load i32.const 1 i32.add @@ -24400,7 +24400,7 @@ i32.xor local.set $6 block $block_3 - i32.const 24608 + i32.const 24624 i32.load local.tee $2 i32.eqz @@ -24409,7 +24409,7 @@ i32.const 0 local.set $5 else - i32.const 24604 + i32.const 24620 i32.load local.get $2 local.get $2 @@ -24757,13 +24757,13 @@ i32.const 0 i32.store local.get $12 - i32.const 24620 + i32.const 24636 f32.load local.tee $13 local.get $2 f32.convert_i32_u f32.mul - i32.const 24616 + i32.const 24632 i32.load i32.const 1 i32.add @@ -24823,7 +24823,7 @@ i32.lt_u select call $__ZNSt3__212__hash_tableINS_17__hash_value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEP11RootContextEENS_22__unordered_map_hasherIS7_SA_NS_4hashIS7_EELb1EEENS_21__unordered_map_equalIS7_SA_NS_8equal_toIS7_EELb1EEENS5_ISA_EEE6rehashEm - i32.const 24608 + i32.const 24624 i32.load local.tee $0 i32.const -1 @@ -24860,7 +24860,7 @@ end ;; $if_21 block $block_12 block $block_13 - i32.const 24604 + i32.const 24620 i32.load local.get $5 i32.const 2 @@ -24879,14 +24879,14 @@ br $block_13 else local.get $4 - i32.const 24612 + i32.const 24628 i32.load i32.store - i32.const 24612 + i32.const 24628 local.get $4 i32.store local.get $2 - i32.const 24612 + i32.const 24628 i32.store local.get $4 i32.load @@ -24895,7 +24895,7 @@ local.get $1 i32.load offset=4 local.set $1 - i32.const 24604 + i32.const 24620 i32.load local.get $0 local.get $0 @@ -24937,8 +24937,8 @@ local.get $4 i32.store end ;; $block_12 - i32.const 24616 - i32.const 24616 + i32.const 24632 + i32.const 24632 i32.load i32.const 1 i32.add @@ -24978,7 +24978,7 @@ end ;; $if_0 end ;; $if local.tee $1 - i32.const 24608 + i32.const 24624 i32.load local.tee $0 i32.gt_u @@ -25004,10 +25004,10 @@ i32.gt_u i32.and local.set $3 - i32.const 24616 + i32.const 24632 i32.load f32.convert_i32_u - i32.const 24620 + i32.const 24636 f32.load f32.div f32.ceil @@ -25089,10 +25089,10 @@ local.get $0 i32.eqz if $if - i32.const 24604 + i32.const 24620 i32.load local.set $0 - i32.const 24604 + i32.const 24620 i32.const 0 i32.store local.get $0 @@ -25100,7 +25100,7 @@ local.get $0 call $_free end ;; $if_0 - i32.const 24608 + i32.const 24624 i32.const 0 i32.store return @@ -25126,10 +25126,10 @@ i32.shl call $__Znwm local.set $2 - i32.const 24604 + i32.const 24620 i32.load local.set $1 - i32.const 24604 + i32.const 24620 local.get $2 i32.store local.get $1 @@ -25137,13 +25137,13 @@ local.get $1 call $_free end ;; $if_2 - i32.const 24608 + i32.const 24624 local.get $0 i32.store i32.const 0 local.set $1 loop $loop - i32.const 24604 + i32.const 24620 i32.load local.get $1 i32.const 2 @@ -25159,7 +25159,7 @@ i32.ne br_if $loop end ;; $loop - i32.const 24612 + i32.const 24628 i32.load local.tee $6 i32.eqz @@ -25169,7 +25169,7 @@ local.get $6 i32.load offset=4 local.set $1 - i32.const 24604 + i32.const 24620 i32.load local.get $0 local.get $0 @@ -25204,7 +25204,7 @@ i32.const 2 i32.shl i32.add - i32.const 24612 + i32.const 24628 i32.store local.get $6 i32.load @@ -25246,7 +25246,7 @@ local.get $4 else block $block (result i32) - i32.const 24604 + i32.const 24620 i32.load local.get $8 i32.const 2 @@ -25474,7 +25474,7 @@ i32.load i32.store local.get $1 - i32.const 24604 + i32.const 24620 i32.load local.get $8 i32.const 2 @@ -25483,7 +25483,7 @@ i32.load i32.load i32.store - i32.const 24604 + i32.const 24620 i32.load local.get $8 i32.const 2 @@ -25531,7 +25531,7 @@ end ;; $if_0 end ;; $if local.tee $1 - i32.const 24588 + i32.const 24604 i32.load local.tee $0 i32.gt_u @@ -25557,10 +25557,10 @@ i32.gt_u i32.and local.set $3 - i32.const 24596 + i32.const 24612 i32.load f32.convert_i32_u - i32.const 24600 + i32.const 24616 f32.load f32.div f32.ceil @@ -25636,10 +25636,10 @@ local.get $0 i32.eqz if $if - i32.const 24584 + i32.const 24600 i32.load local.set $0 - i32.const 24584 + i32.const 24600 i32.const 0 i32.store local.get $0 @@ -25647,7 +25647,7 @@ local.get $0 call $_free end ;; $if_0 - i32.const 24588 + i32.const 24604 i32.const 0 i32.store return @@ -25673,10 +25673,10 @@ i32.shl call $__Znwm local.set $2 - i32.const 24584 + i32.const 24600 i32.load local.set $1 - i32.const 24584 + i32.const 24600 local.get $2 i32.store local.get $1 @@ -25684,13 +25684,13 @@ local.get $1 call $_free end ;; $if_2 - i32.const 24588 + i32.const 24604 local.get $0 i32.store i32.const 0 local.set $1 loop $loop - i32.const 24584 + i32.const 24600 i32.load local.get $1 i32.const 2 @@ -25706,7 +25706,7 @@ i32.ne br_if $loop end ;; $loop - i32.const 24592 + i32.const 24608 i32.load local.tee $4 i32.eqz @@ -25716,7 +25716,7 @@ local.get $4 i32.load offset=4 local.set $1 - i32.const 24584 + i32.const 24600 i32.load local.get $0 local.get $0 @@ -25751,7 +25751,7 @@ i32.const 2 i32.shl i32.add - i32.const 24592 + i32.const 24608 i32.store local.get $4 i32.load @@ -25778,7 +25778,7 @@ local.get $0 else block $block (result i32) - i32.const 24584 + i32.const 24600 i32.load local.get $3 i32.const 2 @@ -25837,7 +25837,7 @@ i32.load i32.store local.get $1 - i32.const 24584 + i32.const 24600 i32.load local.get $3 i32.const 2 @@ -25846,7 +25846,7 @@ i32.load i32.load i32.store - i32.const 24584 + i32.const 24600 i32.load local.get $3 i32.const 2 @@ -25893,7 +25893,7 @@ local.get $1 else block $block_2 (result i32) - i32.const 24584 + i32.const 24600 i32.load local.get $3 i32.const 2 @@ -25952,7 +25952,7 @@ i32.load i32.store local.get $2 - i32.const 24584 + i32.const 24600 i32.load local.get $3 i32.const 2 @@ -25961,7 +25961,7 @@ i32.load i32.load i32.store - i32.const 24584 + i32.const 24600 i32.load local.get $3 i32.const 2 @@ -25988,7 +25988,7 @@ (local $3 i32) (local $4 i32) (local $5 i32) - i32.const 24588 + i32.const 24604 i32.load local.tee $1 i32.eqz @@ -25996,7 +25996,7 @@ i32.const 0 return end ;; $if - i32.const 24584 + i32.const 24600 i32.load local.get $1 local.get $1 @@ -26163,14 +26163,14 @@ local.get $0 i32.load local.set $3 - i32.const 24588 + i32.const 24604 i32.load local.tee $2 i32.eqz if $if return end ;; $if - i32.const 24584 + i32.const 24600 i32.load local.tee $4 local.get $2 @@ -26338,7 +26338,7 @@ block $block_1 (result i32) block $block_2 local.get $3 - i32.const 24592 + i32.const 24608 i32.eq br_if $block_2 local.get $3 @@ -26448,7 +26448,7 @@ local.tee $2 i32.ne if $if_26 (result i32) - i32.const 24584 + i32.const 24600 i32.load local.get $2 i32.const 2 @@ -26468,8 +26468,8 @@ local.get $8 i32.const 0 i32.store - i32.const 24596 - i32.const 24596 + i32.const 24612 + i32.const 24612 i32.load i32.const -1 i32.add @@ -26518,7 +26518,7 @@ i32.const 16 i32.add global.set $32 - i32.const 24624 + i32.const 24640 i32.load i32.eqz if $if @@ -26533,7 +26533,7 @@ local.get $3 i32.const 1065353216 i32.store offset=16 - i32.const 24624 + i32.const 24640 local.get $3 i32.store i32.const 20 @@ -26547,7 +26547,7 @@ local.get $3 i32.const 1065353216 i32.store offset=16 - i32.const 24628 + i32.const 24644 local.get $3 i32.store end ;; $if @@ -26558,7 +26558,7 @@ i32.load8_s offset=8 i32.eqz if $if_0 - i32.const 24628 + i32.const 24644 i32.load local.set $6 local.get $3 @@ -26704,7 +26704,7 @@ global.set $32 return end ;; $if_7 - i32.const 24624 + i32.const 24640 i32.load local.set $5 local.get $3 @@ -28928,7 +28928,7 @@ local.get $1 i32.const 3 i32.store - i32.const 24632 + i32.const 24648 i32.load i32.const -1 i32.ne @@ -28942,7 +28942,7 @@ local.get $2 call $__ZNSt3__211__call_onceERVmPvPFvS2_E end ;; $if_0 - i32.const 24636 + i32.const 24652 i32.load drop local.get $0 @@ -29013,7 +29013,7 @@ local.get $0 i32.const 0 i32.store offset=24 - i32.const 24636 + i32.const 24652 local.get $0 i32.store i32.const 118 @@ -29098,14 +29098,14 @@ (func $__ZN6google8protobuf8internal22DeleteLogSilencerCountEv (type $8) (local $0 i32) - i32.const 24636 + i32.const 24652 i32.load local.tee $0 if $if local.get $0 call $_free end ;; $if - i32.const 24636 + i32.const 24652 i32.const 0 i32.store ) @@ -29131,11 +29131,11 @@ i32.const 16 i32.add global.set $32 - i32.const 24544 + i32.const 24560 i32.load8_s i32.eqz if $if - i32.const 24544 + i32.const 24560 i32.load8_s i32.const 0 i32.ne @@ -29159,21 +29159,21 @@ local.get $2 i64.const 0 i64.store offset=32 align=4 - i32.const 24640 + i32.const 24656 local.get $2 i32.store - i32.const 24544 + i32.const 24560 i32.const 0 i32.store - i32.const 24544 - i32.const 24544 + i32.const 24560 + i32.const 24560 i32.load i32.const 1 i32.or i32.store end ;; $if_0 end ;; $if - i32.const 24640 + i32.const 24656 i32.load local.set $2 local.get $3 @@ -29390,7 +29390,7 @@ i32.store local.get $2 i32.const 128 - i32.const 15093 + i32.const 15095 local.get $3 call $_snprintf drop @@ -29428,7 +29428,7 @@ i32.store local.get $2 i32.const 128 - i32.const 15096 + i32.const 15098 local.get $3 call $_snprintf drop @@ -29469,14 +29469,14 @@ i32.const 16 i32.add global.set $32 - i32.const 24644 + i32.const 24660 i64.const 0 i64.store align=4 - i32.const 24652 + i32.const 24668 i64.const 0 i64.store align=4 local.get $0 - i32.const 25398 + i32.const 25414 i32.store local.get $0 i32.const 0 @@ -29488,12 +29488,12 @@ local.get $0 i64.load align=4 i64.store align=4 - i32.const 24660 + i32.const 24676 i32.const 1 local.get $1 call $__ZN6google8protobuf4util6StatusC2ENS1_5error4CodeENS0_11StringPieceE local.get $0 - i32.const 25398 + i32.const 25414 i32.store local.get $0 i32.const 0 @@ -29502,7 +29502,7 @@ local.get $0 i64.load align=4 i64.store align=4 - i32.const 24676 + i32.const 24692 i32.const 2 local.get $1 call $__ZN6google8protobuf4util6StatusC2ENS1_5error4CodeENS0_11StringPieceE @@ -29717,7 +29717,7 @@ i32.const 3 i32.store local.get $3 - i32.const 15099 + i32.const 15101 i32.store offset=4 local.get $3 i32.const 116 @@ -29729,7 +29729,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 15124 + i32.const 15126 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -40593,7 +40593,7 @@ i32.const 3 i32.store local.get $11 - i32.const 15211 + i32.const 15213 i32.store offset=4 local.get $11 i32.const 571 @@ -40605,7 +40605,7 @@ i32.const 0 i32.store offset=20 local.get $11 - i32.const 15253 + i32.const 15255 call $__ZN6google8protobuf8internal10LogMessagelsEPKc local.get $4 call $__ZN6google8protobuf8internal10LogMessagelsEi @@ -40642,7 +40642,7 @@ i32.const 3 i32.store local.get $1 - i32.const 15211 + i32.const 15213 i32.store offset=4 local.get $1 i32.const 534 @@ -40654,12 +40654,12 @@ i32.const 0 i32.store offset=20 local.get $1 - i32.const 15253 + i32.const 15255 call $__ZN6google8protobuf8internal10LogMessagelsEPKc local.get $0 i32.load offset=4 call $__ZN6google8protobuf8internal10LogMessagelsEj - i32.const 15283 + i32.const 15285 call $__ZN6google8protobuf8internal10LogMessagelsEPKc local.get $0 i32.load offset=12 @@ -40679,29 +40679,29 @@ i32.const 32 i32.add global.set $32 - i32.const 24576 + i32.const 24592 i32.load8_s i32.eqz if $if - i32.const 24576 + i32.const 24592 i32.load8_s i32.const 0 i32.ne i32.const 1 i32.xor if $if_0 - i32.const 24576 + i32.const 24592 i32.const 0 i32.store - i32.const 24576 - i32.const 24576 + i32.const 24592 + i32.const 24592 i32.load i32.const 1 i32.or i32.store end ;; $if_0 end ;; $if - i32.const 24720 + i32.const 24736 i32.load i32.const 7580 call $_pthread_equal @@ -40719,7 +40719,7 @@ i32.const 3 i32.store local.get $0 - i32.const 15211 + i32.const 15213 i32.store offset=4 local.get $0 i32.const 801 @@ -40731,7 +40731,7 @@ i32.const 0 i32.store offset=20 local.get $0 - i32.const 15295 + i32.const 15297 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $0 @@ -40740,43 +40740,43 @@ global.set $32 return end ;; $if_1 - i32.const 24568 + i32.const 24584 i32.load8_s i32.eqz if $if_3 - i32.const 24568 + i32.const 24584 i32.load8_s i32.const 0 i32.ne i32.const 1 i32.xor if $if_4 - i32.const 24552 + i32.const 24568 i64.const 0 i64.store - i32.const 24560 + i32.const 24576 i32.const 0 i32.store i32.const 119 - i32.const 24552 - call $__ZN6google8protobuf8internal13OnShutdownRunEPFvPKvES3_ i32.const 24568 + call $__ZN6google8protobuf8internal13OnShutdownRunEPFvPKvES3_ + i32.const 24584 i32.const 0 i32.store - i32.const 24568 - i32.const 24568 + i32.const 24584 + i32.const 24584 i32.load i32.const 1 i32.or i32.store end ;; $if_4 end ;; $if_3 - i32.const 24720 + i32.const 24736 i32.const 7580 i32.store i32.const 6816 call $__ZN6google8protobuf8internal12_GLOBAL__N_111InitSCC_DFSEPNS1_11SCCInfoBaseE - i32.const 24720 + i32.const 24736 i32.const 0 i32.store local.get $0 @@ -40868,31 +40868,31 @@ i32.const 50 i32.store offset=4 local.get $1 - i32.const 15460 + i32.const 15462 i64.load align=1 i64.store align=1 local.get $1 - i32.const 15468 + i32.const 15470 i64.load align=1 i64.store offset=8 align=1 local.get $1 - i32.const 15476 + i32.const 15478 i64.load align=1 i64.store offset=16 align=1 local.get $1 - i32.const 15484 + i32.const 15486 i64.load align=1 i64.store offset=24 align=1 local.get $1 - i32.const 15492 + i32.const 15494 i64.load align=1 i64.store offset=32 align=1 local.get $1 - i32.const 15500 + i32.const 15502 i64.load align=1 i64.store offset=40 align=1 local.get $1 - i32.const 15508 + i32.const 15510 i32.load16_s align=1 i32.store16 offset=48 align=1 local.get $1 @@ -40912,7 +40912,7 @@ i32.load local.set $2 local.get $0 - i32.const 25389 + i32.const 25405 i32.load8_s i32.const 1 i32.and @@ -41029,7 +41029,7 @@ i32.const 3 i32.store local.get $4 - i32.const 15390 + i32.const 15392 i32.store offset=4 local.get $4 i32.const 373 @@ -41041,7 +41041,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 15422 + i32.const 15424 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -41124,7 +41124,7 @@ i32.const 3 i32.store local.get $3 - i32.const 15543 + i32.const 15545 i32.store offset=4 local.get $3 i32.const 59 @@ -41136,9 +41136,9 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 15577 + i32.const 15579 call $__ZN6google8protobuf8internal10LogMessagelsEPKc - i32.const 15694 + i32.const 15696 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -42821,7 +42821,7 @@ i32.const 3 i32.store local.get $4 - i32.const 15742 + i32.const 15744 i32.store offset=4 local.get $4 i32.const 507 @@ -42833,7 +42833,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 15778 + i32.const 15780 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -43033,7 +43033,7 @@ i32.const 3 i32.store local.get $4 - i32.const 15742 + i32.const 15744 i32.store offset=4 local.get $4 i32.const 516 @@ -43045,7 +43045,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 15778 + i32.const 15780 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -43724,13 +43724,13 @@ i32.load offset=8 i32.store offset=8 end ;; $if_0 - i32.const 15824 + i32.const 15826 i32.const 0 local.get $2 i32.const 1 i32.eq select - i32.const 15836 + i32.const 15838 local.get $2 select local.set $3 @@ -43742,7 +43742,7 @@ i32.const 2 i32.store local.get $1 - i32.const 15742 + i32.const 15744 i32.store offset=4 local.get $1 i32.const 626 @@ -43754,21 +43754,21 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 15850 + i32.const 15852 call $__ZN6google8protobuf8internal10LogMessagelsEPKc local.get $0 call $__ZN6google8protobuf8internal10LogMessagelsERKNSt3__212basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEE - i32.const 15863 + i32.const 15865 call $__ZN6google8protobuf8internal10LogMessagelsEPKc - i32.const 15882 + i32.const 15884 call $__ZN6google8protobuf8internal10LogMessagelsEPKc local.get $3 call $__ZN6google8protobuf8internal10LogMessagelsEPKc - i32.const 15899 + i32.const 15901 call $__ZN6google8protobuf8internal10LogMessagelsEPKc - i32.const 15912 + i32.const 15914 call $__ZN6google8protobuf8internal10LogMessagelsEPKc - i32.const 15968 + i32.const 15970 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -44538,7 +44538,7 @@ i32.const 3 i32.store local.get $2 - i32.const 15976 + i32.const 15978 i32.store offset=4 local.get $2 i32.const 591 @@ -44550,7 +44550,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 16011 + i32.const 16013 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -44693,7 +44693,7 @@ i32.const 2 i32.store local.get $1 - i32.const 15976 + i32.const 15978 i32.store offset=4 local.get $1 i32.const 190 @@ -44705,12 +44705,12 @@ i32.const 0 i32.store offset=20 local.get $1 - i32.const 16048 + i32.const 16050 call $__ZN6google8protobuf8internal10LogMessagelsEPKc local.get $0 i32.load offset=36 call $__ZN6google8protobuf8internal10LogMessagelsEi - i32.const 16115 + i32.const 16117 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $1 @@ -47174,7 +47174,7 @@ i32.const 3 i32.store local.get $2 - i32.const 16260 + i32.const 16262 i32.store offset=4 local.get $2 i32.const 132 @@ -47186,9 +47186,9 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 16340 + i32.const 16342 call $__ZN6google8protobuf8internal10LogMessagelsEPKc - i32.const 16384 + i32.const 16386 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -47209,7 +47209,7 @@ i32.const 3 i32.store local.get $2 - i32.const 16260 + i32.const 16262 i32.store offset=4 local.get $2 i32.const 134 @@ -47221,7 +47221,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 16439 + i32.const 16441 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -47248,7 +47248,7 @@ i32.const 3 i32.store local.get $3 - i32.const 16260 + i32.const 16262 i32.store offset=4 local.get $3 i32.const 135 @@ -47260,7 +47260,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 16309 + i32.const 16311 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -47316,7 +47316,7 @@ i32.const 3 i32.store local.get $3 - i32.const 16260 + i32.const 16262 i32.store offset=4 local.get $3 i32.const 151 @@ -47328,7 +47328,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 16529 + i32.const 16531 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -47402,7 +47402,7 @@ i32.const 2 i32.store local.get $5 - i32.const 16260 + i32.const 16262 i32.store offset=4 local.get $5 i32.const 164 @@ -47414,9 +47414,9 @@ i32.const 0 i32.store offset=20 local.get $5 - i32.const 16606 + i32.const 16608 call $__ZN6google8protobuf8internal10LogMessagelsEPKc - i32.const 16656 + i32.const 16658 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $5 @@ -47491,7 +47491,7 @@ i32.const 3 i32.store local.get $2 - i32.const 16260 + i32.const 16262 i32.store offset=4 local.get $2 i32.const 182 @@ -47503,7 +47503,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 16309 + i32.const 16311 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -47524,7 +47524,7 @@ i32.const 3 i32.store local.get $2 - i32.const 16260 + i32.const 16262 i32.store offset=4 local.get $2 i32.const 183 @@ -47536,7 +47536,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 16529 + i32.const 16531 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -47566,7 +47566,7 @@ i32.const 3 i32.store local.get $3 - i32.const 16260 + i32.const 16262 i32.store offset=4 local.get $3 i32.const 184 @@ -47578,7 +47578,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 16561 + i32.const 16563 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -47639,7 +47639,7 @@ i32.const 3 i32.store local.get $1 - i32.const 16260 + i32.const 16262 i32.store offset=4 local.get $1 i32.const 189 @@ -47651,7 +47651,7 @@ i32.const 0 i32.store offset=20 local.get $1 - i32.const 16529 + i32.const 16531 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $1 @@ -47706,7 +47706,7 @@ i32.add local.tee $3 i32.const 1024 - i32.const 15844 + i32.const 15846 local.get $2 call $_vsnprintf local.tee $4 @@ -47739,7 +47739,7 @@ i32.store local.get $3 local.get $5 - i32.const 15844 + i32.const 15846 local.get $2 call $_vsnprintf local.tee $1 @@ -48286,7 +48286,7 @@ i32.const 3 i32.store local.get $0 - i32.const 16718 + i32.const 16720 i32.store offset=4 local.get $0 i32.const 47 @@ -48298,7 +48298,7 @@ i32.const 0 i32.store offset=20 local.get $0 - i32.const 16757 + i32.const 16759 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $0 @@ -48329,7 +48329,7 @@ i32.const -4096 i32.gt_u if $if - i32.const 24788 + i32.const 24804 i32.const 0 local.get $0 i32.sub @@ -48438,7 +48438,7 @@ i32.const -4096 i32.gt_u if $if (result i32) - i32.const 24788 + i32.const 24804 i32.const 0 local.get $0 i32.sub @@ -48466,7 +48466,7 @@ (func $___errno_location (type $14) (result i32) - i32.const 24788 + i32.const 24804 ) (func $___stdio_write (type $5) @@ -48537,7 +48537,7 @@ i32.const -4096 i32.gt_u if $if - i32.const 24788 + i32.const 24804 i32.const 0 local.get $1 i32.sub @@ -48614,7 +48614,7 @@ i32.const -4096 i32.gt_u if $if_1 - i32.const 24788 + i32.const 24804 i32.const 0 local.get $1 i32.sub @@ -49119,7 +49119,7 @@ br_if $block_0 local.get $1 if $if (result i32) - i32.const 24788 + i32.const 24804 i32.const 75 i32.store i32.const -1 @@ -49267,13 +49267,13 @@ local.tee $1 i64.reinterpret_f64 local.set $25 - i32.const 16941 + i32.const 16943 local.set $18 i32.const 1 else + i32.const 16946 + i32.const 16949 i32.const 16944 - i32.const 16947 - i32.const 16942 local.get $4 i32.const 1 i32.and @@ -49296,8 +49296,8 @@ i64.const 9218868437227405312 i64.eq if $if_0 (result i32) - i32.const 16968 - i32.const 16972 + i32.const 16970 + i32.const 16974 local.get $5 i32.const 32 i32.and @@ -49305,8 +49305,8 @@ i32.ne local.tee $3 select - i32.const 16960 - i32.const 16964 + i32.const 16962 + i32.const 16966 local.get $3 select local.get $1 @@ -50654,7 +50654,7 @@ i32.eqz if $if_54 local.get $0 - i32.const 19740 + i32.const 19742 i32.const 1 call $_out end ;; $if_54 @@ -50813,7 +50813,7 @@ br $block_4 end ;; $if_61 local.get $0 - i32.const 19740 + i32.const 19742 i32.const 1 call $_out local.get $6 @@ -51187,7 +51187,7 @@ i32.sub i32.gt_s if $if_0 (result i32) - i32.const 24788 + i32.const 24804 i32.const 75 i32.store i32.const -1 @@ -51903,7 +51903,7 @@ local.set $1 i32.const 0 local.set $12 - i32.const 16924 + i32.const 16926 local.set $8 br $block_14 end ;; $block_25 @@ -51919,13 +51919,13 @@ i64.sub local.tee $25 i64.store - i32.const 16924 + i32.const 16926 local.set $8 i32.const 1 else - i32.const 16925 + i32.const 16927 + i32.const 16928 i32.const 16926 - i32.const 16924 local.get $7 i32.const 1 i32.and @@ -51949,7 +51949,7 @@ local.set $25 i32.const 0 local.set $12 - i32.const 16924 + i32.const 16926 local.set $8 br $block_16 end ;; $block_23 @@ -51965,7 +51965,7 @@ local.set $5 i32.const 0 local.set $12 - i32.const 16924 + i32.const 16926 local.set $8 local.get $18 local.set $1 @@ -51974,7 +51974,7 @@ local.get $10 i32.load local.tee $5 - i32.const 16934 + i32.const 16936 local.get $5 select local.tee $6 @@ -51994,7 +51994,7 @@ local.set $5 i32.const 0 local.set $12 - i32.const 16924 + i32.const 16926 local.set $8 local.get $1 local.get $6 @@ -52055,7 +52055,7 @@ local.set $5 i32.const 0 local.set $12 - i32.const 16924 + i32.const 16926 local.set $8 local.get $18 local.set $1 @@ -52083,11 +52083,11 @@ local.tee $8 select local.set $12 - i32.const 16924 + i32.const 16926 local.get $6 i32.const 4 i32.shr_u - i32.const 16924 + i32.const 16926 i32.add local.get $8 select @@ -52939,7 +52939,7 @@ i32.const 1 br $block else - i32.const 24788 + i32.const 24804 i32.const 84 i32.store i32.const -1 @@ -53044,7 +53044,7 @@ i32.store8 offset=3 i32.const 4 else - i32.const 24788 + i32.const 24804 i32.const 84 i32.store i32.const -1 @@ -53272,7 +53272,7 @@ local.get $1 i32.store local.get $0 - i32.const 14973 + i32.const 14975 local.get $2 call $_vfprintf drop @@ -53389,9 +53389,9 @@ end ;; $if_1 local.set $0 block $block_0 (result i32) - i32.const 24792 + i32.const 24808 call $___lock - i32.const 24800 + i32.const 24816 i32.load local.tee $1 end ;; $block_0 @@ -53425,7 +53425,7 @@ br_if $loop end ;; $loop end ;; $if_2 - i32.const 24792 + i32.const 24808 call $___unlock end ;; $if local.get $0 @@ -53607,7 +53607,7 @@ i32.const 245 i32.lt_u if $if (result i32) - i32.const 24804 + i32.const 24820 i32.load local.tee $6 i32.const 16 @@ -53639,7 +53639,7 @@ local.tee $0 i32.const 3 i32.shl - i32.const 24844 + i32.const 24860 i32.add local.tee $3 i32.load offset=8 @@ -53652,7 +53652,7 @@ local.get $3 i32.eq if $if_1 - i32.const 24804 + i32.const 24820 local.get $6 i32.const 1 local.get $0 @@ -53662,7 +53662,7 @@ i32.and i32.store else - i32.const 24820 + i32.const 24836 i32.load local.get $4 i32.gt_u @@ -53707,7 +53707,7 @@ return end ;; $if_0 local.get $14 - i32.const 24812 + i32.const 24828 i32.load local.tee $13 i32.gt_u @@ -53786,7 +53786,7 @@ local.tee $0 i32.const 3 i32.shl - i32.const 24844 + i32.const 24860 i32.add local.tee $1 i32.load offset=8 @@ -53799,7 +53799,7 @@ local.get $1 i32.eq if $if_6 - i32.const 24804 + i32.const 24820 local.get $6 i32.const 1 local.get $0 @@ -53810,7 +53810,7 @@ local.tee $8 i32.store else - i32.const 24820 + i32.const 24836 i32.load local.get $2 i32.gt_u @@ -53860,7 +53860,7 @@ i32.store local.get $13 if $if_9 - i32.const 24824 + i32.const 24840 i32.load local.set $10 local.get $13 @@ -53869,7 +53869,7 @@ local.tee $0 i32.const 3 i32.shl - i32.const 24844 + i32.const 24860 i32.add local.set $2 local.get $8 @@ -53879,7 +53879,7 @@ local.tee $0 i32.and if $if_10 - i32.const 24820 + i32.const 24836 i32.load local.get $2 i32.const 8 @@ -53897,7 +53897,7 @@ local.set $4 end ;; $if_11 else - i32.const 24804 + i32.const 24820 local.get $0 local.get $8 i32.or @@ -53922,10 +53922,10 @@ local.get $2 i32.store offset=12 end ;; $if_9 - i32.const 24812 + i32.const 24828 local.get $6 i32.store - i32.const 24824 + i32.const 24840 local.get $3 i32.store local.get $17 @@ -53933,7 +53933,7 @@ local.get $9 return end ;; $if_5 - i32.const 24808 + i32.const 24824 i32.load local.tee $11 if $if_12 (result i32) @@ -53996,7 +53996,7 @@ i32.add i32.const 2 i32.shl - i32.const 25108 + i32.const 25124 i32.add i32.load local.tee $0 @@ -54046,7 +54046,7 @@ br $loop end ;; $block end ;; $loop - i32.const 24820 + i32.const 24836 i32.load local.tee $7 local.get $9 @@ -54170,7 +54170,7 @@ local.tee $1 i32.const 2 i32.shl - i32.const 25108 + i32.const 25124 i32.add local.tee $0 i32.load @@ -54183,7 +54183,7 @@ local.get $3 i32.eqz if $if_25 - i32.const 24808 + i32.const 24824 local.get $11 i32.const 1 local.get $1 @@ -54195,7 +54195,7 @@ br $block_2 end ;; $if_25 else - i32.const 24820 + i32.const 24836 i32.load local.get $18 i32.gt_u @@ -54220,7 +54220,7 @@ br_if $block_2 end ;; $if_26 end ;; $if_24 - i32.const 24820 + i32.const 24836 i32.load local.tee $0 local.get $3 @@ -54253,7 +54253,7 @@ i32.load offset=20 local.tee $0 if $if_30 - i32.const 24820 + i32.const 24836 i32.load local.get $0 i32.gt_u @@ -54309,7 +54309,7 @@ i32.store local.get $13 if $if_33 - i32.const 24824 + i32.const 24840 i32.load local.set $4 local.get $13 @@ -54318,7 +54318,7 @@ local.tee $0 i32.const 3 i32.shl - i32.const 24844 + i32.const 24860 i32.add local.set $3 local.get $6 @@ -54328,7 +54328,7 @@ local.tee $0 i32.and if $if_34 - i32.const 24820 + i32.const 24836 i32.load local.get $3 i32.const 8 @@ -54346,7 +54346,7 @@ local.set $12 end ;; $if_35 else - i32.const 24804 + i32.const 24820 local.get $0 local.get $6 i32.or @@ -54371,10 +54371,10 @@ local.get $3 i32.store offset=12 end ;; $if_33 - i32.const 24812 + i32.const 24828 local.get $10 i32.store - i32.const 24824 + i32.const 24840 local.get $5 i32.store end ;; $if_32 @@ -54405,7 +54405,7 @@ i32.const -8 i32.and local.set $15 - i32.const 24808 + i32.const 24824 i32.load local.tee $4 if $if_37 (result i32) @@ -54485,7 +54485,7 @@ local.tee $19 i32.const 2 i32.shl - i32.const 25108 + i32.const 25124 i32.add i32.load local.tee $0 @@ -54650,7 +54650,7 @@ i32.add i32.const 2 i32.shl - i32.const 25108 + i32.const 25124 i32.add i32.load local.set $0 @@ -54713,13 +54713,13 @@ local.get $2 if $if_47 (result i32) local.get $7 - i32.const 24812 + i32.const 24828 i32.load local.get $15 i32.sub i32.lt_u if $if_48 (result i32) - i32.const 24820 + i32.const 24836 i32.load local.tee $12 local.get $2 @@ -54843,7 +54843,7 @@ local.tee $3 i32.const 2 i32.shl - i32.const 25108 + i32.const 25124 i32.add local.tee $0 i32.load @@ -54856,7 +54856,7 @@ local.get $13 i32.eqz if $if_60 - i32.const 24808 + i32.const 24824 local.get $4 i32.const 1 local.get $3 @@ -54869,7 +54869,7 @@ br $block_9 end ;; $if_60 else - i32.const 24820 + i32.const 24836 i32.load local.get $8 i32.gt_u @@ -54898,7 +54898,7 @@ end ;; $if_62 end ;; $if_61 end ;; $if_59 - i32.const 24820 + i32.const 24836 i32.load local.tee $0 local.get $13 @@ -54931,7 +54931,7 @@ i32.load offset=20 local.tee $0 if $if_66 - i32.const 24820 + i32.const 24836 i32.load local.get $0 i32.gt_u @@ -55005,10 +55005,10 @@ local.get $0 i32.const 3 i32.shl - i32.const 24844 + i32.const 24860 i32.add local.set $3 - i32.const 24804 + i32.const 24820 i32.load local.tee $1 i32.const 1 @@ -55017,7 +55017,7 @@ local.tee $0 i32.and if $if_70 - i32.const 24820 + i32.const 24836 i32.load local.get $3 i32.const 8 @@ -55035,7 +55035,7 @@ local.set $11 end ;; $if_71 else - i32.const 24804 + i32.const 24820 local.get $0 local.get $1 i32.or @@ -55131,7 +55131,7 @@ local.tee $4 i32.const 2 i32.shl - i32.const 25108 + i32.const 25124 i32.add local.set $3 local.get $5 @@ -55151,7 +55151,7 @@ i32.and i32.eqz if $if_74 - i32.const 24808 + i32.const 24824 local.get $0 local.get $1 i32.or @@ -55232,7 +55232,7 @@ unreachable end ;; $if_76 end ;; $loop_4 - i32.const 24820 + i32.const 24836 i32.load local.get $4 i32.gt_u @@ -55255,7 +55255,7 @@ end ;; $if_78 end ;; $block_11 end ;; $if_75 - i32.const 24820 + i32.const 24836 i32.load local.tee $0 local.get $6 @@ -55308,13 +55308,13 @@ local.set $11 block $block_12 block $block_13 - i32.const 24812 + i32.const 24828 i32.load local.tee $3 local.get $11 i32.ge_u if $if_80 - i32.const 24824 + i32.const 24840 i32.load local.set $0 local.get $3 @@ -55324,13 +55324,13 @@ i32.const 15 i32.gt_u if $if_81 - i32.const 24824 + i32.const 24840 local.get $0 local.get $11 i32.add local.tee $1 i32.store - i32.const 24812 + i32.const 24828 local.get $2 i32.store local.get $1 @@ -55349,10 +55349,10 @@ i32.or i32.store offset=4 else - i32.const 24812 + i32.const 24828 i32.const 0 i32.store - i32.const 24824 + i32.const 24840 i32.const 0 i32.store local.get $0 @@ -55373,13 +55373,13 @@ br $block_13 end ;; $if_80 block $block_14 - i32.const 24816 + i32.const 24832 i32.load local.tee $12 local.get $11 i32.gt_u if $if_82 - i32.const 24816 + i32.const 24832 local.get $12 local.get $11 i32.sub @@ -55387,31 +55387,31 @@ i32.store br $block_14 end ;; $if_82 - i32.const 25276 + i32.const 25292 i32.load if $if_83 (result i32) - i32.const 25284 + i32.const 25300 i32.load else - i32.const 25284 + i32.const 25300 i32.const 4096 i32.store - i32.const 25280 + i32.const 25296 i32.const 4096 i32.store - i32.const 25288 + i32.const 25304 i32.const -1 i32.store - i32.const 25292 + i32.const 25308 i32.const -1 i32.store - i32.const 25296 + i32.const 25312 i32.const 0 i32.store - i32.const 25248 + i32.const 25264 i32.const 0 i32.store - i32.const 25276 + i32.const 25292 local.get $17 i32.const -16 i32.and @@ -55438,11 +55438,11 @@ if $if_84 br $block_12 end ;; $if_84 - i32.const 25244 + i32.const 25260 i32.load local.tee $2 if $if_85 - i32.const 25236 + i32.const 25252 i32.load local.tee $1 local.get $8 @@ -55464,7 +55464,7 @@ local.set $7 block $block_15 block $block_16 - i32.const 25248 + i32.const 25264 i32.load i32.const 4 i32.and @@ -55475,12 +55475,12 @@ block $block_17 block $block_18 block $block_19 - i32.const 24828 + i32.const 24844 i32.load local.tee $1 i32.eqz br_if $block_19 - i32.const 25252 + i32.const 25268 local.set $2 loop $loop_5 block $block_20 @@ -55543,11 +55543,11 @@ if $if_90 (result i32) i32.const 0 else - i32.const 25236 + i32.const 25252 i32.load local.tee $4 local.get $0 - i32.const 25280 + i32.const 25296 i32.load local.tee $2 i32.const -1 @@ -55578,7 +55578,7 @@ i32.gt_u i32.and if $if_91 (result i32) - i32.const 25244 + i32.const 25260 i32.load local.tee $1 if $if_92 @@ -55636,7 +55636,7 @@ end ;; $if_95 unreachable end ;; $if_94 - i32.const 25284 + i32.const 25300 i32.load local.tee $1 local.get $6 @@ -55673,8 +55673,8 @@ end ;; $if_96 local.set $3 end ;; $block_17 - i32.const 25248 - i32.const 25248 + i32.const 25264 + i32.const 25264 i32.load i32.const 4 i32.or @@ -55729,28 +55729,28 @@ end ;; $if_97 br $block_15 end ;; $block_16 - i32.const 25236 - i32.const 25236 + i32.const 25252 + i32.const 25252 i32.load local.get $3 i32.add local.tee $1 i32.store local.get $1 - i32.const 25240 + i32.const 25256 i32.load i32.gt_u if $if_98 - i32.const 25240 + i32.const 25256 local.get $1 i32.store end ;; $if_98 - i32.const 24828 + i32.const 24844 i32.load local.tee $6 if $if_99 block $block_21 - i32.const 25252 + i32.const 25268 local.set $2 block $block_22 block $block_23 @@ -55808,7 +55808,7 @@ local.tee $1 i32.add local.set $2 - i32.const 24816 + i32.const 24832 i32.load local.get $3 i32.add @@ -55816,10 +55816,10 @@ local.get $1 i32.sub local.set $1 - i32.const 24828 + i32.const 24844 local.get $2 i32.store - i32.const 24816 + i32.const 24832 local.get $1 i32.store local.get $2 @@ -55832,8 +55832,8 @@ i32.add i32.const 40 i32.store offset=4 - i32.const 24832 - i32.const 25292 + i32.const 24848 + i32.const 25308 i32.load i32.store br $block_21 @@ -55841,12 +55841,12 @@ end ;; $if_100 end ;; $block_22 local.get $0 - i32.const 24820 + i32.const 24836 i32.load local.tee $2 i32.lt_u if $if_102 - i32.const 24820 + i32.const 24836 local.get $0 i32.store local.get $0 @@ -55856,7 +55856,7 @@ local.get $3 i32.add local.set $1 - i32.const 25252 + i32.const 25268 local.set $8 block $block_24 block $block_25 @@ -55937,14 +55937,14 @@ local.get $6 i32.eq if $if_104 - i32.const 24816 - i32.const 24816 + i32.const 24832 + i32.const 24832 i32.load local.get $7 i32.add local.tee $0 i32.store - i32.const 24828 + i32.const 24844 local.get $5 i32.store local.get $5 @@ -55954,19 +55954,19 @@ i32.store offset=4 else block $block_26 - i32.const 24824 + i32.const 24840 i32.load local.get $3 i32.eq if $if_105 - i32.const 24812 - i32.const 24812 + i32.const 24828 + i32.const 24828 i32.load local.get $7 i32.add local.tee $0 i32.store - i32.const 24824 + i32.const 24840 local.get $5 i32.store local.get $5 @@ -56011,7 +56011,7 @@ local.get $1 i32.const 3 i32.shl - i32.const 24844 + i32.const 24860 i32.add local.tee $0 i32.ne @@ -56035,8 +56035,8 @@ local.get $6 i32.eq if $if_110 - i32.const 24804 - i32.const 24804 + i32.const 24820 + i32.const 24820 i32.load i32.const 1 local.get $1 @@ -56194,7 +56194,7 @@ local.tee $1 i32.const 2 i32.shl - i32.const 25108 + i32.const 25124 i32.add local.tee $0 i32.load @@ -56207,8 +56207,8 @@ i32.store local.get $16 br_if $block_32 - i32.const 24808 - i32.const 24808 + i32.const 24824 + i32.const 24824 i32.load i32.const 1 local.get $1 @@ -56220,7 +56220,7 @@ br $block_27 end ;; $block_32 else - i32.const 24820 + i32.const 24836 i32.load local.get $8 i32.gt_u @@ -56245,7 +56245,7 @@ br_if $block_27 end ;; $if_122 end ;; $if_121 - i32.const 24820 + i32.const 24836 i32.load local.tee $0 local.get $16 @@ -56279,7 +56279,7 @@ local.tee $0 i32.eqz br_if $block_27 - i32.const 24820 + i32.const 24836 i32.load local.get $0 i32.gt_u @@ -56331,10 +56331,10 @@ local.get $0 i32.const 3 i32.shl - i32.const 24844 + i32.const 24860 i32.add local.set $2 - i32.const 24804 + i32.const 24820 i32.load local.tee $1 i32.const 1 @@ -56344,7 +56344,7 @@ i32.and if $if_128 block $block_33 - i32.const 24820 + i32.const 24836 i32.load local.get $2 i32.const 8 @@ -56363,7 +56363,7 @@ call $_abort end ;; $block_33 else - i32.const 24804 + i32.const 24820 local.get $0 local.get $1 i32.or @@ -56459,7 +56459,7 @@ local.tee $3 i32.const 2 i32.shl - i32.const 25108 + i32.const 25124 i32.add local.set $2 local.get $5 @@ -56471,7 +56471,7 @@ local.get $5 i32.const 0 i32.store offset=16 - i32.const 24808 + i32.const 24824 i32.load local.tee $1 i32.const 1 @@ -56481,7 +56481,7 @@ i32.and i32.eqz if $if_132 - i32.const 24808 + i32.const 24824 local.get $0 local.get $1 i32.or @@ -56562,7 +56562,7 @@ unreachable end ;; $if_134 end ;; $loop_9 - i32.const 24820 + i32.const 24836 i32.load local.get $2 i32.gt_u @@ -56585,7 +56585,7 @@ end ;; $if_136 end ;; $block_34 end ;; $if_133 - i32.const 24820 + i32.const 24836 i32.load local.tee $0 local.get $9 @@ -56625,7 +56625,7 @@ return end ;; $if_103 end ;; $block_24 - i32.const 25252 + i32.const 25268 local.set $2 loop $loop_10 block $block_35 @@ -56650,7 +56650,7 @@ br $loop_10 end ;; $block_35 end ;; $loop_10 - i32.const 24828 + i32.const 24844 i32.const 0 local.get $0 i32.const 8 @@ -56669,7 +56669,7 @@ i32.add local.tee $4 i32.store - i32.const 24816 + i32.const 24832 local.get $3 i32.const -40 i32.add @@ -56688,8 +56688,8 @@ i32.add i32.const 40 i32.store offset=4 - i32.const 24832 - i32.const 25292 + i32.const 24848 + i32.const 25308 i32.load i32.store local.get $6 @@ -56722,23 +56722,23 @@ i32.const 27 i32.store offset=4 local.get $2 - i32.const 25252 + i32.const 25268 i64.load align=4 i64.store offset=8 align=4 local.get $2 - i32.const 25260 + i32.const 25276 i64.load align=4 i64.store offset=16 align=4 - i32.const 25252 + i32.const 25268 local.get $0 i32.store - i32.const 25256 + i32.const 25272 local.get $3 i32.store - i32.const 25264 + i32.const 25280 i32.const 0 i32.store - i32.const 25260 + i32.const 25276 local.get $2 i32.const 8 i32.add @@ -56797,10 +56797,10 @@ local.get $0 i32.const 3 i32.shl - i32.const 24844 + i32.const 24860 i32.add local.set $2 - i32.const 24804 + i32.const 24820 i32.load local.tee $1 i32.const 1 @@ -56809,7 +56809,7 @@ local.tee $0 i32.and if $if_142 - i32.const 24820 + i32.const 24836 i32.load local.get $2 i32.const 8 @@ -56827,7 +56827,7 @@ local.set $5 end ;; $if_143 else - i32.const 24804 + i32.const 24820 local.get $0 local.get $1 i32.or @@ -56923,7 +56923,7 @@ local.tee $3 i32.const 2 i32.shl - i32.const 25108 + i32.const 25124 i32.add local.set $2 local.get $6 @@ -56935,7 +56935,7 @@ local.get $6 i32.const 0 i32.store offset=16 - i32.const 24808 + i32.const 24824 i32.load local.tee $1 i32.const 1 @@ -56945,7 +56945,7 @@ i32.and i32.eqz if $if_146 - i32.const 24808 + i32.const 24824 local.get $0 local.get $1 i32.or @@ -57026,7 +57026,7 @@ unreachable end ;; $if_148 end ;; $loop_12 - i32.const 24820 + i32.const 24836 i32.load local.get $3 i32.gt_u @@ -57049,7 +57049,7 @@ end ;; $if_150 end ;; $block_36 end ;; $if_147 - i32.const 24820 + i32.const 24836 i32.load local.tee $0 local.get $10 @@ -57082,7 +57082,7 @@ end ;; $if_140 end ;; $block_21 else - i32.const 24820 + i32.const 24836 i32.load local.tee $1 i32.eqz @@ -57091,37 +57091,25 @@ i32.lt_u i32.or if $if_152 - i32.const 24820 + i32.const 24836 local.get $0 i32.store end ;; $if_152 - i32.const 25252 + i32.const 25268 local.get $0 i32.store - i32.const 25256 + i32.const 25272 local.get $3 i32.store - i32.const 25264 + i32.const 25280 i32.const 0 i32.store - i32.const 24840 - i32.const 25276 - i32.load - i32.store - i32.const 24836 - i32.const -1 - i32.store i32.const 24856 - i32.const 24844 - i32.store - i32.const 24852 - i32.const 24844 - i32.store - i32.const 24864 - i32.const 24852 + i32.const 25292 + i32.load i32.store - i32.const 24860 i32.const 24852 + i32.const -1 i32.store i32.const 24872 i32.const 24860 @@ -57303,7 +57291,19 @@ i32.const 25100 i32.const 25092 i32.store - i32.const 24828 + i32.const 25112 + i32.const 25100 + i32.store + i32.const 25108 + i32.const 25100 + i32.store + i32.const 25120 + i32.const 25108 + i32.store + i32.const 25116 + i32.const 25108 + i32.store + i32.const 24844 i32.const 0 local.get $0 i32.const 8 @@ -57322,7 +57322,7 @@ i32.add local.tee $4 i32.store - i32.const 24816 + i32.const 24832 local.get $3 i32.const -40 i32.add @@ -57341,18 +57341,18 @@ i32.add i32.const 40 i32.store offset=4 - i32.const 24832 - i32.const 25292 + i32.const 24848 + i32.const 25308 i32.load i32.store end ;; $if_99 - i32.const 24816 + i32.const 24832 i32.load local.tee $0 local.get $11 i32.gt_u if $if_153 - i32.const 24816 + i32.const 24832 local.get $0 local.get $11 i32.sub @@ -57361,13 +57361,13 @@ br $block_14 end ;; $if_153 end ;; $block_15 - i32.const 24788 + i32.const 24804 i32.const 12 i32.store br $block_12 end ;; $block_14 - i32.const 24828 - i32.const 24828 + i32.const 24844 + i32.const 24844 i32.load local.tee $0 local.get $11 @@ -57425,7 +57425,7 @@ i32.const -8 i32.add local.tee $5 - i32.const 24820 + i32.const 24836 i32.load local.tee $11 i32.lt_u @@ -57484,7 +57484,7 @@ local.get $10 i32.add local.set $5 - i32.const 24824 + i32.const 24840 i32.load local.get $0 i32.eq @@ -57504,7 +57504,7 @@ local.set $1 br $block end ;; $if_6 - i32.const 24812 + i32.const 24828 local.get $5 i32.store local.get $7 @@ -57541,7 +57541,7 @@ local.get $2 i32.const 3 i32.shl - i32.const 24844 + i32.const 24860 i32.add local.tee $4 i32.ne @@ -57564,8 +57564,8 @@ local.get $3 i32.eq if $if_11 - i32.const 24804 - i32.const 24804 + i32.const 24820 + i32.const 24820 i32.load i32.const 1 local.get $2 @@ -57731,7 +57731,7 @@ local.tee $2 i32.const 2 i32.shl - i32.const 25108 + i32.const 25124 i32.add local.tee $6 i32.load @@ -57744,8 +57744,8 @@ local.get $8 i32.eqz if $if_24 - i32.const 24808 - i32.const 24808 + i32.const 24824 + i32.const 24824 i32.load i32.const 1 local.get $2 @@ -57762,7 +57762,7 @@ br $block end ;; $if_24 else - i32.const 24820 + i32.const 24836 i32.load local.get $13 i32.gt_u @@ -57795,7 +57795,7 @@ end ;; $if_26 end ;; $if_25 end ;; $if_23 - i32.const 24820 + i32.const 24836 i32.load local.tee $6 local.get $8 @@ -57828,7 +57828,7 @@ i32.load offset=20 local.tee $2 if $if_30 - i32.const 24820 + i32.const 24836 i32.load local.get $2 i32.gt_u @@ -57898,19 +57898,19 @@ local.get $1 i32.store else - i32.const 24828 + i32.const 24844 i32.load local.get $7 i32.eq if $if_35 - i32.const 24816 - i32.const 24816 + i32.const 24832 + i32.const 24832 i32.load local.get $1 i32.add local.tee $0 i32.store - i32.const 24828 + i32.const 24844 local.get $3 i32.store local.get $3 @@ -57919,33 +57919,33 @@ i32.or i32.store offset=4 local.get $3 - i32.const 24824 + i32.const 24840 i32.load i32.ne if $if_36 return end ;; $if_36 - i32.const 24824 + i32.const 24840 i32.const 0 i32.store - i32.const 24812 + i32.const 24828 i32.const 0 i32.store return end ;; $if_35 - i32.const 24824 + i32.const 24840 i32.load local.get $7 i32.eq if $if_37 - i32.const 24812 - i32.const 24812 + i32.const 24828 + i32.const 24828 i32.load local.get $1 i32.add local.tee $0 i32.store - i32.const 24824 + i32.const 24840 local.get $4 i32.store local.get $3 @@ -57984,12 +57984,12 @@ local.get $6 i32.const 3 i32.shl - i32.const 24844 + i32.const 24860 i32.add local.tee $0 i32.ne if $if_39 - i32.const 24820 + i32.const 24836 i32.load local.get $2 i32.gt_u @@ -58008,8 +58008,8 @@ local.get $2 i32.eq if $if_42 - i32.const 24804 - i32.const 24804 + i32.const 24820 + i32.const 24820 i32.load i32.const 1 local.get $6 @@ -58029,7 +58029,7 @@ i32.add local.set $16 else - i32.const 24820 + i32.const 24836 i32.load local.get $1 i32.gt_u @@ -58112,7 +58112,7 @@ br $loop_0 end ;; $block_4 end ;; $loop_0 - i32.const 24820 + i32.const 24836 i32.load local.get $1 i32.gt_u @@ -58127,7 +58127,7 @@ end ;; $if_49 end ;; $block_3 else - i32.const 24820 + i32.const 24836 i32.load local.get $7 i32.load offset=8 @@ -58167,7 +58167,7 @@ local.tee $0 i32.const 2 i32.shl - i32.const 25108 + i32.const 25124 i32.add local.tee $1 i32.load @@ -58180,8 +58180,8 @@ local.get $9 i32.eqz if $if_55 - i32.const 24808 - i32.const 24808 + i32.const 24824 + i32.const 24824 i32.load i32.const 1 local.get $0 @@ -58193,7 +58193,7 @@ br $block_2 end ;; $if_55 else - i32.const 24820 + i32.const 24836 i32.load local.get $8 i32.gt_u @@ -58219,7 +58219,7 @@ br_if $block_2 end ;; $if_56 end ;; $if_54 - i32.const 24820 + i32.const 24836 i32.load local.tee $1 local.get $9 @@ -58252,7 +58252,7 @@ i32.load offset=20 local.tee $0 if $if_60 - i32.const 24820 + i32.const 24836 i32.load local.get $0 i32.gt_u @@ -58280,12 +58280,12 @@ i32.add local.get $5 i32.store - i32.const 24824 + i32.const 24840 i32.load local.get $3 i32.eq if $if_62 (result i32) - i32.const 24812 + i32.const 24828 local.get $5 i32.store return @@ -58305,10 +58305,10 @@ local.get $4 i32.const 3 i32.shl - i32.const 24844 + i32.const 24860 i32.add local.set $0 - i32.const 24804 + i32.const 24820 i32.load local.tee $1 i32.const 1 @@ -58317,7 +58317,7 @@ local.tee $4 i32.and if $if_64 - i32.const 24820 + i32.const 24836 i32.load local.get $0 i32.const 8 @@ -58335,7 +58335,7 @@ local.set $15 end ;; $if_65 else - i32.const 24804 + i32.const 24820 local.get $1 local.get $4 i32.or @@ -58432,7 +58432,7 @@ local.tee $4 i32.const 2 i32.shl - i32.const 25108 + i32.const 25124 i32.add local.set $0 local.get $3 @@ -58444,7 +58444,7 @@ local.get $3 i32.const 0 i32.store offset=16 - i32.const 24808 + i32.const 24824 i32.load local.tee $5 i32.const 1 @@ -58516,7 +58516,7 @@ unreachable end ;; $if_70 end ;; $loop_1 - i32.const 24820 + i32.const 24836 i32.load local.get $2 i32.gt_u @@ -58539,7 +58539,7 @@ end ;; $if_72 end ;; $block_6 end ;; $if_69 - i32.const 24820 + i32.const 24836 i32.load local.tee $0 local.get $14 @@ -58571,7 +58571,7 @@ end ;; $if_73 end ;; $block_5 else - i32.const 24808 + i32.const 24824 local.get $2 local.get $5 i32.or @@ -58589,8 +58589,8 @@ local.get $3 i32.store offset=8 end ;; $if_68 - i32.const 24836 - i32.const 24836 + i32.const 24852 + i32.const 24852 i32.load i32.const -1 i32.add @@ -58600,7 +58600,7 @@ if $if_74 return end ;; $if_74 - i32.const 25260 + i32.const 25276 local.set $0 loop $loop_2 local.get $0 @@ -58612,7 +58612,7 @@ local.get $4 br_if $loop_2 end ;; $loop_2 - i32.const 24836 + i32.const 24852 i32.const -1 i32.store ) @@ -58634,7 +58634,7 @@ i32.const -65 i32.gt_u if $if_0 - i32.const 24788 + i32.const 24804 i32.const 12 i32.store i32.const 0 @@ -58730,7 +58730,7 @@ local.tee $8 i32.const 1 i32.ne - i32.const 24820 + i32.const 24836 i32.load local.tee $10 local.get $0 @@ -58767,7 +58767,7 @@ local.get $2 local.get $1 i32.sub - i32.const 25284 + i32.const 25300 i32.load i32.const 1 i32.shl @@ -58822,12 +58822,12 @@ local.get $0 return end ;; $if_4 - i32.const 24828 + i32.const 24844 i32.load local.get $4 i32.eq if $if_6 - i32.const 24816 + i32.const 24832 i32.load local.get $2 i32.add @@ -58855,21 +58855,21 @@ i32.const 1 i32.or i32.store offset=4 - i32.const 24828 + i32.const 24844 local.get $2 i32.store - i32.const 24816 + i32.const 24832 local.get $1 i32.store local.get $0 return end ;; $if_6 - i32.const 24824 + i32.const 24840 i32.load local.get $4 i32.eq if $if_7 - i32.const 24812 + i32.const 24828 i32.load local.get $2 i32.add @@ -58937,10 +58937,10 @@ i32.const 0 local.set $3 end ;; $if_8 - i32.const 24812 + i32.const 24828 local.get $3 i32.store - i32.const 24824 + i32.const 24840 local.get $1 i32.store local.get $0 @@ -58981,7 +58981,7 @@ local.get $2 i32.const 3 i32.shl - i32.const 24844 + i32.const 24860 i32.add local.tee $8 i32.ne @@ -59004,8 +59004,8 @@ local.get $6 i32.eq if $if_13 - i32.const 24804 - i32.const 24804 + i32.const 24820 + i32.const 24820 i32.load i32.const 1 local.get $2 @@ -59160,7 +59160,7 @@ local.tee $3 i32.const 2 i32.shl - i32.const 25108 + i32.const 25124 i32.add local.tee $2 i32.load @@ -59173,8 +59173,8 @@ local.get $5 i32.eqz if $if_26 - i32.const 24808 - i32.const 24808 + i32.const 24824 + i32.const 24824 i32.load i32.const 1 local.get $3 @@ -59186,7 +59186,7 @@ br $block_0 end ;; $if_26 else - i32.const 24820 + i32.const 24836 i32.load local.get $9 i32.gt_u @@ -59212,7 +59212,7 @@ br_if $block_0 end ;; $if_27 end ;; $if_25 - i32.const 24820 + i32.const 24836 i32.load local.tee $2 local.get $5 @@ -59245,7 +59245,7 @@ i32.load offset=20 local.tee $3 if $if_31 - i32.const 24820 + i32.const 24836 i32.load local.get $3 i32.gt_u @@ -59369,7 +59369,7 @@ local.get $4 i32.sub local.tee $0 - i32.const 24820 + i32.const 24836 i32.load local.tee $11 i32.lt_u @@ -59380,7 +59380,7 @@ local.get $4 i32.add local.set $1 - i32.const 24824 + i32.const 24840 i32.load local.get $0 i32.eq @@ -59399,7 +59399,7 @@ local.set $5 br $block end ;; $if_3 - i32.const 24812 + i32.const 24828 local.get $1 i32.store local.get $6 @@ -59434,7 +59434,7 @@ local.get $8 i32.const 3 i32.shl - i32.const 24844 + i32.const 24860 i32.add local.tee $5 i32.ne @@ -59457,8 +59457,8 @@ local.get $4 i32.eq if $if_8 - i32.const 24804 - i32.const 24804 + i32.const 24820 + i32.const 24820 i32.load i32.const 1 local.get $8 @@ -59622,7 +59622,7 @@ local.tee $3 i32.const 2 i32.shl - i32.const 25108 + i32.const 25124 i32.add local.tee $4 i32.load @@ -59635,8 +59635,8 @@ local.get $7 i32.eqz if $if_21 - i32.const 24808 - i32.const 24808 + i32.const 24824 + i32.const 24824 i32.load i32.const 1 local.get $3 @@ -59652,7 +59652,7 @@ br $block end ;; $if_21 else - i32.const 24820 + i32.const 24836 i32.load local.get $10 i32.gt_u @@ -59684,7 +59684,7 @@ end ;; $if_23 end ;; $if_22 end ;; $if_20 - i32.const 24820 + i32.const 24836 i32.load local.tee $4 local.get $7 @@ -59717,7 +59717,7 @@ i32.load offset=20 local.tee $3 if $if_27 - i32.const 24820 + i32.const 24836 i32.load local.get $3 i32.gt_u @@ -59750,7 +59750,7 @@ end ;; $block end ;; $if local.get $6 - i32.const 24820 + i32.const 24836 i32.load local.tee $8 i32.lt_u @@ -59779,19 +59779,19 @@ local.get $5 i32.store else - i32.const 24828 + i32.const 24844 i32.load local.get $6 i32.eq if $if_31 - i32.const 24816 - i32.const 24816 + i32.const 24832 + i32.const 24832 i32.load local.get $5 i32.add local.tee $0 i32.store - i32.const 24828 + i32.const 24844 local.get $2 i32.store local.get $2 @@ -59800,33 +59800,33 @@ i32.or i32.store offset=4 local.get $2 - i32.const 24824 + i32.const 24840 i32.load i32.ne if $if_32 return end ;; $if_32 - i32.const 24824 + i32.const 24840 i32.const 0 i32.store - i32.const 24812 + i32.const 24828 i32.const 0 i32.store return end ;; $if_31 - i32.const 24824 + i32.const 24840 i32.load local.get $6 i32.eq if $if_33 - i32.const 24812 - i32.const 24812 + i32.const 24828 + i32.const 24828 i32.load local.get $5 i32.add local.tee $0 i32.store - i32.const 24824 + i32.const 24840 local.get $2 i32.store local.get $2 @@ -59865,7 +59865,7 @@ local.get $4 i32.const 3 i32.shl - i32.const 24844 + i32.const 24860 i32.add local.tee $0 i32.ne @@ -59888,8 +59888,8 @@ local.get $3 i32.eq if $if_38 - i32.const 24804 - i32.const 24804 + i32.const 24820 + i32.const 24820 i32.load i32.const 1 local.get $4 @@ -60044,7 +60044,7 @@ local.tee $0 i32.const 2 i32.shl - i32.const 25108 + i32.const 25124 i32.add local.tee $1 i32.load @@ -60057,8 +60057,8 @@ local.get $9 i32.eqz if $if_51 - i32.const 24808 - i32.const 24808 + i32.const 24824 + i32.const 24824 i32.load i32.const 1 local.get $0 @@ -60070,7 +60070,7 @@ br $block_2 end ;; $if_51 else - i32.const 24820 + i32.const 24836 i32.load local.get $7 i32.gt_u @@ -60096,7 +60096,7 @@ br_if $block_2 end ;; $if_52 end ;; $if_50 - i32.const 24820 + i32.const 24836 i32.load local.tee $1 local.get $9 @@ -60129,7 +60129,7 @@ i32.load offset=20 local.tee $0 if $if_56 - i32.const 24820 + i32.const 24836 i32.load local.get $0 i32.gt_u @@ -60157,12 +60157,12 @@ i32.add local.get $5 i32.store - i32.const 24824 + i32.const 24840 i32.load local.get $2 i32.eq if $if_58 - i32.const 24812 + i32.const 24828 local.get $5 i32.store return @@ -60179,10 +60179,10 @@ local.get $1 i32.const 3 i32.shl - i32.const 24844 + i32.const 24860 i32.add local.set $0 - i32.const 24804 + i32.const 24820 i32.load local.tee $5 i32.const 1 @@ -60191,7 +60191,7 @@ local.tee $1 i32.and if $if_60 - i32.const 24820 + i32.const 24836 i32.load local.get $0 i32.const 8 @@ -60209,7 +60209,7 @@ local.set $13 end ;; $if_61 else - i32.const 24804 + i32.const 24820 local.get $1 local.get $5 i32.or @@ -60306,7 +60306,7 @@ local.tee $1 i32.const 2 i32.shl - i32.const 25108 + i32.const 25124 i32.add local.set $0 local.get $2 @@ -60319,7 +60319,7 @@ i32.const 0 i32.store offset=16 block $block_5 - i32.const 24808 + i32.const 24824 i32.load local.tee $3 i32.const 1 @@ -60329,7 +60329,7 @@ i32.and i32.eqz if $if_64 - i32.const 24808 + i32.const 24824 local.get $3 local.get $4 i32.or @@ -60398,7 +60398,7 @@ unreachable end ;; $if_66 end ;; $loop_1 - i32.const 24820 + i32.const 24836 i32.load local.get $4 i32.gt_u @@ -60411,7 +60411,7 @@ br $block_5 end ;; $block_6 end ;; $if_65 - i32.const 24820 + i32.const 24836 i32.load local.tee $1 local.get $0 @@ -60464,7 +60464,7 @@ (func $__ZNKSt3__217bad_function_call4whatEv (type $4) (param $0 i32) (result i32) - i32.const 16976 + i32.const 16978 ) (func $__ZNSt3__212__next_primeEm (type $4) @@ -62351,29 +62351,29 @@ (func $__ZNSt3__211__call_onceERVmPvPFvS2_E (type $0) (param $0 i32) loop $loop - i32.const 24632 + i32.const 24648 i32.load i32.const 1 i32.eq if $if - i32.const 25328 - i32.const 25300 + i32.const 25344 + i32.const 25316 call $_pthread_cond_wait drop br $loop end ;; $if end ;; $loop - i32.const 24632 + i32.const 24648 i32.load i32.eqz if $if_0 - i32.const 24632 + i32.const 24648 i32.const 1 i32.store local.get $0 i32.const 277 call_indirect $28 (type $0) - i32.const 24632 + i32.const 24648 i32.const -1 i32.store end ;; $if_0 @@ -62401,7 +62401,7 @@ (param $0 i32) (local $1 i32) (local $2 i32) - i32.const 15025 + i32.const 15027 call $_strlen local.tee $2 i32.const 13 @@ -62420,7 +62420,7 @@ i32.const 12 i32.add local.tee $1 - i32.const 15025 + i32.const 15027 local.get $2 i32.const 1 i32.add @@ -63547,7 +63547,7 @@ local.set $0 end ;; $if_0 local.get $0 - i32.const 14194 + i32.const 14196 local.get $1 call $__ZNSt3__211char_traitsIcE4copyEPcPKcm local.get $3 @@ -63594,7 +63594,7 @@ end ;; $if end ;; $loop local.get $0 - i32.const 14194 + i32.const 14196 call $_strlen local.tee $2 local.get $2 @@ -63665,7 +63665,7 @@ i32.const 1060 i32.add local.set $7 - i32.const 25376 + i32.const 25392 i32.load local.tee $0 if $if @@ -63677,9 +63677,9 @@ i64.ne if $if_0 local.get $1 - i32.const 17181 + i32.const 17183 i32.store - i32.const 17131 + i32.const 17133 local.get $1 call $_abort_message end ;; $if_0 @@ -63744,7 +63744,7 @@ call_indirect $28 (type $4) local.set $0 local.get $4 - i32.const 17181 + i32.const 17183 i32.store local.get $4 local.get $1 @@ -63752,22 +63752,22 @@ local.get $4 local.get $0 i32.store offset=8 - i32.const 17045 + i32.const 17047 local.get $4 call $_abort_message else local.get $3 - i32.const 17181 + i32.const 17183 i32.store local.get $3 local.get $1 i32.store offset=4 - i32.const 17090 + i32.const 17092 local.get $3 call $_abort_message end ;; $if_3 end ;; $if - i32.const 17169 + i32.const 17171 local.get $2 i32.const 1056 i32.add @@ -64732,7 +64732,7 @@ local.get $3 i32.const 24 i32.add - i32.const 17360 + i32.const 17362 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $3 @@ -64806,7 +64806,7 @@ else block $block (result i32) local.get $2 - i32.const 17363 + i32.const 17365 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $2 @@ -64836,7 +64836,7 @@ local.get $2 if $if_4 (result i32) local.get $4 - i32.const 17368 + i32.const 17370 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $4 @@ -64897,7 +64897,7 @@ i32.const 0 else local.get $0 - i32.const 17382 + i32.const 17384 local.get $3 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_11SpecialNameEJRA34_KcRPNS0_4NodeEEEESC_DpOT0_ end ;; $if_9 @@ -65094,7 +65094,7 @@ (func $__ZSt9terminatev (type $8) (local $0 i32) - i32.const 25376 + i32.const 25392 i32.load local.tee $0 if $if @@ -65129,7 +65129,7 @@ i32.const 152 i32.add call_indirect $28 (type $8) - i32.const 17320 + i32.const 17322 local.get $1 call $_abort_message ) @@ -65366,7 +65366,7 @@ i32.const 0 i32.store local.get $5 - i32.const 22715 + i32.const 22717 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -65886,7 +65886,7 @@ i32.add i32.store local.get $0 - i32.const 17416 + i32.const 17418 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_35 @@ -65909,7 +65909,7 @@ i32.add i32.store local.get $0 - i32.const 17421 + i32.const 17423 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_33 @@ -65920,7 +65920,7 @@ i32.add i32.store local.get $0 - i32.const 17426 + i32.const 17428 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_32 @@ -65931,7 +65931,7 @@ i32.add i32.store local.get $0 - i32.const 17431 + i32.const 17433 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_31 @@ -65942,7 +65942,7 @@ i32.add i32.store local.get $0 - i32.const 17443 + i32.const 17445 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_30 @@ -65953,7 +65953,7 @@ i32.add i32.store local.get $0 - i32.const 17457 + i32.const 17459 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_29 @@ -65964,7 +65964,7 @@ i32.add i32.store local.get $0 - i32.const 17463 + i32.const 17465 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_28 @@ -65975,7 +65975,7 @@ i32.add i32.store local.get $0 - i32.const 17478 + i32.const 17480 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_27 @@ -65986,7 +65986,7 @@ i32.add i32.store local.get $0 - i32.const 17482 + i32.const 17484 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_26 @@ -65997,7 +65997,7 @@ i32.add i32.store local.get $0 - i32.const 17495 + i32.const 17497 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_25 @@ -66008,7 +66008,7 @@ i32.add i32.store local.get $0 - i32.const 17500 + i32.const 17502 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_24 @@ -66019,7 +66019,7 @@ i32.add i32.store local.get $0 - i32.const 17514 + i32.const 17516 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_23 @@ -66042,7 +66042,7 @@ i32.add i32.store local.get $0 - i32.const 17524 + i32.const 17526 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_21 @@ -66053,7 +66053,7 @@ i32.add i32.store local.get $0 - i32.const 17533 + i32.const 17535 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_20 @@ -66064,7 +66064,7 @@ i32.add i32.store local.get $0 - i32.const 17551 + i32.const 17553 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_19 @@ -66087,7 +66087,7 @@ i32.add i32.store local.get $0 - i32.const 17557 + i32.const 17559 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_17 @@ -66098,7 +66098,7 @@ i32.add i32.store local.get $0 - i32.const 17569 + i32.const 17571 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_16 @@ -66109,7 +66109,7 @@ i32.add i32.store local.get $0 - i32.const 17580 + i32.const 17582 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_15 @@ -66183,7 +66183,7 @@ i32.add i32.store local.get $0 - i32.const 17584 + i32.const 17586 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_53 @@ -66194,7 +66194,7 @@ i32.add i32.store local.get $0 - i32.const 17594 + i32.const 17596 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_52 @@ -66205,7 +66205,7 @@ i32.add i32.store local.get $0 - i32.const 17605 + i32.const 17607 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_51 @@ -66216,7 +66216,7 @@ i32.add i32.store local.get $0 - i32.const 17615 + i32.const 17617 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_50 @@ -66227,7 +66227,7 @@ i32.add i32.store local.get $0 - i32.const 17625 + i32.const 17627 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_49 @@ -66238,7 +66238,7 @@ i32.add i32.store local.get $0 - i32.const 17634 + i32.const 17636 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_48 @@ -66249,7 +66249,7 @@ i32.add i32.store local.get $0 - i32.const 17643 + i32.const 17645 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_47 @@ -66260,7 +66260,7 @@ i32.add i32.store local.get $0 - i32.const 17648 + i32.const 17650 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_46 @@ -66271,7 +66271,7 @@ i32.add i32.store local.get $0 - i32.const 17663 + i32.const 17665 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_45 @@ -66746,7 +66746,7 @@ i32.const 0 i32.store local.get $3 - i32.const 22416 + i32.const 22418 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $3 @@ -66760,14 +66760,14 @@ if $if (result i32) local.get $6 local.get $0 - i32.const 22419 + i32.const 22421 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ i32.store br $block_0 else block $block_1 (result i32) local.get $4 - i32.const 22428 + i32.const 22430 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $4 @@ -66804,7 +66804,7 @@ br $block_0 end ;; $if_0 local.get $5 - i32.const 22431 + i32.const 22433 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $5 @@ -66867,7 +66867,7 @@ br $block end ;; $block_0 local.get $8 - i32.const 22434 + i32.const 22436 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $8 @@ -66923,7 +66923,7 @@ i32.eqz if $if_4 local.get $9 - i32.const 22437 + i32.const 22439 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $9 @@ -66934,7 +66934,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE br_if $block_7 local.get $10 - i32.const 22440 + i32.const 22442 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $10 @@ -67046,7 +67046,7 @@ else block $block (result i32) local.get $5 - i32.const 22231 + i32.const 22233 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -67341,7 +67341,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfEc if $if_2 (result i32) local.get $0 - i32.const 22195 + i32.const 22197 local.get $1 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_13EnclosingExprEJRA10_KcRPNS0_4NodeERA2_S8_EEESC_DpOT0_ else @@ -67379,7 +67379,7 @@ local.get $1 i32.const 8 i32.add - i32.const 22070 + i32.const 22072 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -67768,7 +67768,7 @@ i32.const 24 i32.add local.tee $5 - i32.const 21126 + i32.const 21128 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -67779,12 +67779,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if local.get $1 - i32.const 21129 + i32.const 21131 call $__ZN12_GLOBAL__N_110StringViewC2EPKc else block $block local.get $3 - i32.const 21136 + i32.const 21138 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -67795,12 +67795,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_0 local.get $1 - i32.const 21139 + i32.const 21141 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $if_0 local.get $4 - i32.const 21145 + i32.const 21147 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -67811,7 +67811,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_1 local.get $1 - i32.const 21148 + i32.const 21150 call $__ZN12_GLOBAL__N_110StringViewC2EPKc end ;; $if_1 end ;; $block @@ -67904,7 +67904,7 @@ i32.load8_s offset=362 if $if_2 local.get $0 - i32.const 17643 + i32.const 17645 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $if_2 @@ -68927,7 +68927,7 @@ i32.add call_indirect $28 (type $3) local.get $4 - i32.const 17678 + i32.const 17680 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -68948,7 +68948,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $5 - i32.const 17684 + i32.const 17686 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -69160,7 +69160,7 @@ $block ;; default end ;; $block_5 local.get $4 - i32.const 17828 + i32.const 17830 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -69172,7 +69172,7 @@ br $block end ;; $block_4 local.get $5 - i32.const 17843 + i32.const 17845 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -69184,7 +69184,7 @@ br $block end ;; $block_3 local.get $6 - i32.const 17861 + i32.const 17863 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -69196,7 +69196,7 @@ br $block end ;; $block_2 local.get $7 - i32.const 17873 + i32.const 17875 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -69208,7 +69208,7 @@ br $block end ;; $block_1 local.get $8 - i32.const 17886 + i32.const 17888 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $8 @@ -69220,7 +69220,7 @@ br $block end ;; $block_0 local.get $3 - i32.const 17899 + i32.const 17901 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -69251,32 +69251,32 @@ $block ;; default end ;; $block_5 local.get $0 - i32.const 17773 + i32.const 17775 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_4 local.get $0 - i32.const 17783 + i32.const 17785 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_3 local.get $0 - i32.const 17796 + i32.const 17798 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_2 local.get $0 - i32.const 17803 + i32.const 17805 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_1 local.get $0 - i32.const 17811 + i32.const 17813 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_0 local.get $0 - i32.const 17819 + i32.const 17821 call $__ZN12_GLOBAL__N_110StringViewC2EPKc end ;; $block ) @@ -69305,7 +69305,7 @@ i32.load local.set $1 local.get $2 - i32.const 17969 + i32.const 17971 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -69421,7 +69421,7 @@ i32.load local.set $1 local.get $2 - i32.const 18037 + i32.const 18039 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -69562,7 +69562,7 @@ call $__ZNK12_GLOBAL__N_116itanium_demangle4Node8hasArrayERNS_12OutputStreamE if $if_0 local.get $7 - i32.const 18048 + i32.const 18050 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $7 @@ -69585,7 +69585,7 @@ br $block end ;; $block_0 local.get $8 - i32.const 18050 + i32.const 18052 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $8 @@ -69596,8 +69596,8 @@ call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE end ;; $block local.get $2 + i32.const 18056 i32.const 18054 - i32.const 18052 local.get $6 i32.load select @@ -69688,7 +69688,7 @@ br $block end ;; $block_0 local.get $2 - i32.const 18046 + i32.const 18048 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $5 local.get $2 @@ -69961,7 +69961,7 @@ i32.load offset=8 local.set $0 local.get $8 - i32.const 18121 + i32.const 18123 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $8 @@ -69982,7 +69982,7 @@ local.get $2 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $9 - i32.const 18125 + i32.const 18127 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $9 @@ -70015,7 +70015,7 @@ call $__ZNK12_GLOBAL__N_116itanium_demangle4Node8hasArrayERNS_12OutputStreamE if $if_0 local.get $5 - i32.const 18048 + i32.const 18050 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -70040,7 +70040,7 @@ br $block_1 end ;; $block_2 local.get $6 - i32.const 18050 + i32.const 18052 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -70051,7 +70051,7 @@ call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE end ;; $block_1 local.get $7 - i32.const 18119 + i32.const 18121 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -70115,7 +70115,7 @@ br $block_1 end ;; $block_2 local.get $3 - i32.const 18046 + i32.const 18048 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $4 local.get $3 @@ -70171,7 +70171,7 @@ i64.load offset=8 align=4 i64.store align=4 local.get $1 - i32.const 18107 + i32.const 18109 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -70813,7 +70813,7 @@ local.get $2 i32.const 16 i32.add - i32.const 18232 + i32.const 18234 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -70847,7 +70847,7 @@ i32.eq if $if_0 local.get $4 - i32.const 18048 + i32.const 18050 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -70858,7 +70858,7 @@ call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE end ;; $if_0 local.get $2 - i32.const 18125 + i32.const 18127 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -70905,7 +70905,7 @@ i32.eqz if $if_0 local.get $2 - i32.const 18234 + i32.const 18236 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $4 local.get $2 @@ -71657,7 +71657,7 @@ local.get $3 i32.const 328 i32.add - i32.const 18763 + i32.const 18765 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -71809,7 +71809,7 @@ i32.add i32.store local.get $6 - i32.const 18054 + i32.const 18056 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -71826,7 +71826,7 @@ i32.add i32.store local.get $7 - i32.const 18052 + i32.const 18054 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -71843,7 +71843,7 @@ i32.add i32.store local.get $8 - i32.const 18052 + i32.const 18054 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $8 @@ -71860,7 +71860,7 @@ i32.add i32.store local.get $9 - i32.const 18766 + i32.const 18768 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $9 @@ -71877,7 +71877,7 @@ i32.add i32.store local.get $10 - i32.const 18769 + i32.const 18771 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $10 @@ -71901,7 +71901,7 @@ local.get $1 if $if_2 (result i32) local.get $0 - i32.const 18771 + i32.const 18773 local.get $2 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_13EnclosingExprEJRA10_KcRPNS0_4NodeERA2_S8_EEESC_DpOT0_ else @@ -71922,7 +71922,7 @@ local.get $1 if $if_3 (result i32) local.get $0 - i32.const 18771 + i32.const 18773 local.get $2 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_13EnclosingExprEJRA10_KcRPNS0_4NodeERA2_S8_EEESC_DpOT0_ else @@ -72052,7 +72052,7 @@ i32.add i32.store local.get $11 - i32.const 18781 + i32.const 18783 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $11 @@ -72069,7 +72069,7 @@ i32.add i32.store local.get $12 - i32.const 18783 + i32.const 18785 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $12 @@ -72171,7 +72171,7 @@ i32.add i32.store local.get $13 - i32.const 18119 + i32.const 18121 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $13 @@ -72232,7 +72232,7 @@ if $if_12 (result i32) local.get $0 local.get $2 - i32.const 18785 + i32.const 18787 local.get $4 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_10MemberExprEJRPNS0_4NodeERA3_KcSA_EEES9_DpOT0_ else @@ -72282,7 +72282,7 @@ i32.add i32.store local.get $14 - i32.const 18788 + i32.const 18790 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $14 @@ -72299,7 +72299,7 @@ i32.add i32.store local.get $15 - i32.const 18790 + i32.const 18792 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $15 @@ -72333,7 +72333,7 @@ i32.add i32.store local.get $16 - i32.const 18793 + i32.const 18795 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $16 @@ -72350,7 +72350,7 @@ i32.add i32.store local.get $17 - i32.const 18795 + i32.const 18797 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $17 @@ -72367,7 +72367,7 @@ i32.add i32.store local.get $18 - i32.const 18798 + i32.const 18800 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $18 @@ -72398,7 +72398,7 @@ i32.add i32.store local.get $19 - i32.const 18801 + i32.const 18803 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $19 @@ -72415,7 +72415,7 @@ i32.add i32.store local.get $20 - i32.const 18125 + i32.const 18127 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $20 @@ -72555,7 +72555,7 @@ i32.add i32.store local.get $21 - i32.const 18804 + i32.const 18806 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $21 @@ -72572,7 +72572,7 @@ i32.add i32.store local.get $22 - i32.const 18807 + i32.const 18809 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $22 @@ -72589,7 +72589,7 @@ i32.add i32.store local.get $23 - i32.const 18810 + i32.const 18812 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $23 @@ -72606,7 +72606,7 @@ i32.add i32.store local.get $24 - i32.const 18232 + i32.const 18234 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $24 @@ -72642,7 +72642,7 @@ i32.add i32.store local.get $25 - i32.const 18653 + i32.const 18655 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $25 @@ -72659,7 +72659,7 @@ i32.add i32.store local.get $26 - i32.const 18814 + i32.const 18816 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $26 @@ -72676,7 +72676,7 @@ i32.add i32.store local.get $27 - i32.const 18119 + i32.const 18121 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $27 @@ -72693,7 +72693,7 @@ i32.add i32.store local.get $28 - i32.const 18817 + i32.const 18819 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $28 @@ -72714,7 +72714,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfEc if $if_17 local.get $29 - i32.const 18820 + i32.const 18822 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $29 @@ -72734,7 +72734,7 @@ if $if_18 (result i32) local.get $0 local.get $2 - i32.const 18820 + i32.const 18822 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_11PostfixExprEJRPNS0_4NodeERA3_KcEEES9_DpOT0_ else i32.const 0 @@ -72769,7 +72769,7 @@ i32.add i32.store local.get $30 - i32.const 18823 + i32.const 18825 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $30 @@ -72786,7 +72786,7 @@ i32.add i32.store local.get $31 - i32.const 18653 + i32.const 18655 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $31 @@ -72803,7 +72803,7 @@ i32.add i32.store local.get $32 - i32.const 18826 + i32.const 18828 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $32 @@ -72864,7 +72864,7 @@ i32.add i32.store local.get $33 - i32.const 18828 + i32.const 18830 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $33 @@ -72881,7 +72881,7 @@ i32.add i32.store local.get $34 - i32.const 18831 + i32.const 18833 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $34 @@ -72898,7 +72898,7 @@ i32.add i32.store local.get $35 - i32.const 18833 + i32.const 18835 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $35 @@ -72935,7 +72935,7 @@ i32.add i32.store local.get $36 - i32.const 18836 + i32.const 18838 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $36 @@ -72952,7 +72952,7 @@ i32.add i32.store local.get $37 - i32.const 18840 + i32.const 18842 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $37 @@ -72969,7 +72969,7 @@ i32.add i32.store local.get $38 - i32.const 18842 + i32.const 18844 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $38 @@ -72990,7 +72990,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfEc if $if_20 local.get $39 - i32.const 18845 + i32.const 18847 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $39 @@ -73010,7 +73010,7 @@ if $if_21 (result i32) local.get $0 local.get $2 - i32.const 18845 + i32.const 18847 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_11PostfixExprEJRPNS0_4NodeERA3_KcEEES9_DpOT0_ else i32.const 0 @@ -73023,7 +73023,7 @@ i32.add i32.store local.get $40 - i32.const 18840 + i32.const 18842 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $40 @@ -73055,7 +73055,7 @@ if $if_23 (result i32) local.get $0 local.get $2 - i32.const 18848 + i32.const 18850 local.get $4 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_10MemberExprEJRPNS0_4NodeERA3_KcSA_EEES9_DpOT0_ else @@ -73182,7 +73182,7 @@ i32.add i32.store local.get $41 - i32.const 18851 + i32.const 18853 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $41 @@ -73199,7 +73199,7 @@ i32.add i32.store local.get $42 - i32.const 18853 + i32.const 18855 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $42 @@ -73216,7 +73216,7 @@ i32.add i32.store local.get $43 - i32.const 18856 + i32.const 18858 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $43 @@ -73233,7 +73233,7 @@ i32.add i32.store local.get $44 - i32.const 18859 + i32.const 18861 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $44 @@ -73335,7 +73335,7 @@ local.get $1 if $if_32 (result i32) local.get $0 - i32.const 18863 + i32.const 18865 local.get $2 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_13EnclosingExprEJRA10_KcRPNS0_4NodeERA2_S8_EEESC_DpOT0_ else @@ -73356,7 +73356,7 @@ local.get $1 if $if_33 (result i32) local.get $0 - i32.const 18863 + i32.const 18865 local.get $2 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_13EnclosingExprEJRA10_KcRPNS0_4NodeERA2_S8_EEESC_DpOT0_ else @@ -73520,7 +73520,7 @@ local.get $1 if $if_37 (result i32) local.get $0 - i32.const 18872 + i32.const 18874 local.get $2 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_13EnclosingExprEJRA10_KcRPNS0_4NodeERA2_S8_EEESC_DpOT0_ else @@ -73541,7 +73541,7 @@ local.get $1 if $if_38 (result i32) local.get $0 - i32.const 18872 + i32.const 18874 local.get $2 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_13EnclosingExprEJRA10_KcRPNS0_4NodeERA2_S8_EEESC_DpOT0_ else @@ -73620,7 +73620,7 @@ i32.add i32.store local.get $0 - i32.const 18881 + i32.const 18883 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_111 @@ -73825,7 +73825,7 @@ i32.add i32.store local.get $3 - i32.const 18336 + i32.const 18338 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $3 @@ -73837,7 +73837,7 @@ br $block end ;; $block_18 local.get $4 - i32.const 18344 + i32.const 18346 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $4 @@ -73856,7 +73856,7 @@ br $block end ;; $if_1 local.get $5 - i32.const 18348 + i32.const 18350 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $5 @@ -73884,7 +73884,7 @@ i32.add i32.store local.get $6 - i32.const 17426 + i32.const 17428 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $6 @@ -73902,7 +73902,7 @@ i32.add i32.store local.get $7 - i32.const 17431 + i32.const 17433 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $7 @@ -73920,7 +73920,7 @@ i32.add i32.store local.get $8 - i32.const 17443 + i32.const 17445 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $8 @@ -73938,7 +73938,7 @@ i32.add i32.store local.get $9 - i32.const 17457 + i32.const 17459 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $9 @@ -73956,7 +73956,7 @@ i32.add i32.store local.get $10 - i32.const 17463 + i32.const 17465 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $10 @@ -73974,7 +73974,7 @@ i32.add i32.store local.get $11 - i32.const 25398 + i32.const 25414 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $11 @@ -73992,7 +73992,7 @@ i32.add i32.store local.get $12 - i32.const 18352 + i32.const 18354 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $12 @@ -74010,7 +74010,7 @@ i32.add i32.store local.get $13 - i32.const 18354 + i32.const 18356 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $13 @@ -74028,7 +74028,7 @@ i32.add i32.store local.get $14 - i32.const 18356 + i32.const 18358 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $14 @@ -74046,7 +74046,7 @@ i32.add i32.store local.get $15 - i32.const 18359 + i32.const 18361 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $15 @@ -74064,7 +74064,7 @@ i32.add i32.store local.get $16 - i32.const 18362 + i32.const 18364 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $16 @@ -74082,7 +74082,7 @@ i32.add i32.store local.get $17 - i32.const 17524 + i32.const 17526 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $17 @@ -74100,7 +74100,7 @@ i32.add i32.store local.get $18 - i32.const 17533 + i32.const 17535 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $18 @@ -74142,7 +74142,7 @@ br $block end ;; $block_1 local.get $19 - i32.const 17360 + i32.const 17362 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $19 @@ -74686,7 +74686,7 @@ i32.const 16 i32.add local.tee $5 - i32.const 18050 + i32.const 18052 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -74700,7 +74700,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 18046 + i32.const 18048 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -74927,7 +74927,7 @@ f64.store local.get $2 i32.const 40 - i32.const 18418 + i32.const 18420 local.get $5 call $_snprintf local.get $2 @@ -75149,7 +75149,7 @@ f64.store local.get $2 i32.const 32 - i32.const 18479 + i32.const 18481 local.get $4 call $_snprintf local.get $2 @@ -75369,7 +75369,7 @@ f64.store local.get $2 i32.const 24 - i32.const 18538 + i32.const 18540 local.get $4 call $_snprintf local.get $2 @@ -75435,11 +75435,11 @@ i32.load8_s offset=8 if $if local.get $2 - i32.const 18598 + i32.const 18600 call $__ZN12_GLOBAL__N_110StringViewC2EPKc else local.get $2 - i32.const 18603 + i32.const 18605 call $__ZN12_GLOBAL__N_110StringViewC2EPKc end ;; $if local.get $2 @@ -75574,7 +75574,7 @@ i32.gt_u if $if local.get $4 - i32.const 18050 + i32.const 18052 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -75595,7 +75595,7 @@ local.get $2 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $5 - i32.const 18046 + i32.const 18048 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -75623,7 +75623,7 @@ i32.eq if $if_0 local.get $4 - i32.const 18653 + i32.const 18655 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -75786,7 +75786,7 @@ local.get $2 i32.const 8 i32.add - i32.const 21009 + i32.const 21011 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $2 @@ -75815,7 +75815,7 @@ end ;; $if_0 else local.get $2 - i32.const 21012 + i32.const 21014 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $2 @@ -76113,7 +76113,7 @@ i32.const 0 i32.store offset=4 local.get $3 - i32.const 20862 + i32.const 20864 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $3 @@ -76126,13 +76126,13 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_1 local.get $1 - i32.const 18054 + i32.const 18056 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 else block $block_5 local.get $4 - i32.const 20865 + i32.const 20867 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $4 @@ -76143,12 +76143,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_2 local.get $1 - i32.const 18052 + i32.const 18054 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_2 local.get $8 - i32.const 20868 + i32.const 20870 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $8 @@ -76159,12 +76159,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_3 local.get $1 - i32.const 18766 + i32.const 18768 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_3 local.get $9 - i32.const 20871 + i32.const 20873 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $9 @@ -76175,12 +76175,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_4 local.get $1 - i32.const 18769 + i32.const 18771 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_4 local.get $10 - i32.const 20874 + i32.const 20876 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $10 @@ -76191,12 +76191,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_5 local.get $1 - i32.const 18781 + i32.const 18783 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_5 local.get $11 - i32.const 20877 + i32.const 20879 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $11 @@ -76207,12 +76207,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_6 local.get $1 - i32.const 18785 + i32.const 18787 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_6 local.get $12 - i32.const 20880 + i32.const 20882 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $12 @@ -76223,12 +76223,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_7 local.get $1 - i32.const 18788 + i32.const 18790 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_7 local.get $13 - i32.const 20883 + i32.const 20885 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $13 @@ -76239,12 +76239,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_8 local.get $1 - i32.const 18790 + i32.const 18792 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_8 local.get $14 - i32.const 20886 + i32.const 20888 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $14 @@ -76255,12 +76255,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_9 local.get $1 - i32.const 18793 + i32.const 18795 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_9 local.get $15 - i32.const 20889 + i32.const 20891 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $15 @@ -76271,12 +76271,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_10 local.get $1 - i32.const 18795 + i32.const 18797 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_10 local.get $16 - i32.const 20892 + i32.const 20894 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $16 @@ -76287,12 +76287,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_11 local.get $1 - i32.const 18798 + i32.const 18800 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_11 local.get $17 - i32.const 20895 + i32.const 20897 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $17 @@ -76303,12 +76303,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_12 local.get $1 - i32.const 18801 + i32.const 18803 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_12 local.get $18 - i32.const 20898 + i32.const 20900 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $18 @@ -76319,12 +76319,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_13 local.get $1 - i32.const 18125 + i32.const 18127 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_13 local.get $19 - i32.const 20901 + i32.const 20903 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $19 @@ -76335,12 +76335,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_14 local.get $1 - i32.const 18804 + i32.const 18806 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_14 local.get $20 - i32.const 20904 + i32.const 20906 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $20 @@ -76351,12 +76351,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_15 local.get $1 - i32.const 18807 + i32.const 18809 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_15 local.get $21 - i32.const 20907 + i32.const 20909 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $21 @@ -76367,12 +76367,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_16 local.get $1 - i32.const 18810 + i32.const 18812 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_16 local.get $22 - i32.const 20910 + i32.const 20912 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $22 @@ -76383,12 +76383,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_17 local.get $1 - i32.const 18232 + i32.const 18234 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_17 local.get $23 - i32.const 20913 + i32.const 20915 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $23 @@ -76399,12 +76399,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_18 local.get $1 - i32.const 18653 + i32.const 18655 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_18 local.get $24 - i32.const 20916 + i32.const 20918 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $24 @@ -76415,12 +76415,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_19 local.get $1 - i32.const 18814 + i32.const 18816 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_19 local.get $25 - i32.const 20919 + i32.const 20921 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $25 @@ -76431,12 +76431,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_20 local.get $1 - i32.const 18119 + i32.const 18121 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_20 local.get $26 - i32.const 20922 + i32.const 20924 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $26 @@ -76447,12 +76447,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_21 local.get $1 - i32.const 18817 + i32.const 18819 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_21 local.get $27 - i32.const 20925 + i32.const 20927 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $27 @@ -76463,12 +76463,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_22 local.get $1 - i32.const 18823 + i32.const 18825 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_22 local.get $28 - i32.const 20928 + i32.const 20930 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $28 @@ -76479,12 +76479,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_23 local.get $1 - i32.const 18828 + i32.const 18830 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_23 local.get $29 - i32.const 20931 + i32.const 20933 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $29 @@ -76495,12 +76495,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_24 local.get $1 - i32.const 18831 + i32.const 18833 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_24 local.get $30 - i32.const 20934 + i32.const 20936 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $30 @@ -76511,12 +76511,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_25 local.get $1 - i32.const 18833 + i32.const 18835 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_25 local.get $31 - i32.const 20937 + i32.const 20939 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $31 @@ -76527,12 +76527,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_26 local.get $1 - i32.const 18840 + i32.const 18842 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_26 local.get $32 - i32.const 20940 + i32.const 20942 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $32 @@ -76543,12 +76543,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_27 local.get $1 - i32.const 18842 + i32.const 18844 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_27 local.get $33 - i32.const 20943 + i32.const 20945 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $33 @@ -76559,12 +76559,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_28 local.get $1 - i32.const 18851 + i32.const 18853 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_28 local.get $34 - i32.const 20946 + i32.const 20948 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $34 @@ -76575,12 +76575,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_29 local.get $1 - i32.const 18853 + i32.const 18855 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_29 local.get $35 - i32.const 20949 + i32.const 20951 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $35 @@ -76591,12 +76591,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_30 local.get $1 - i32.const 18856 + i32.const 18858 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_30 local.get $36 - i32.const 20952 + i32.const 20954 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $36 @@ -76612,7 +76612,7 @@ br $block_5 end ;; $if_31 local.get $1 - i32.const 18859 + i32.const 18861 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $block_5 @@ -76813,7 +76813,7 @@ local.get $2 i32.const 16 i32.add - i32.const 20650 + i32.const 20652 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -76991,7 +76991,7 @@ local.get $4 i32.const 24 i32.add - i32.const 19789 + i32.const 19791 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -77098,7 +77098,7 @@ end ;; $if_0 else local.get $1 - i32.const 18763 + i32.const 18765 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -77109,7 +77109,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE local.set $5 local.get $4 - i32.const 19793 + i32.const 19795 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -77573,7 +77573,7 @@ local.get $2 i32.const 40 i32.add - i32.const 18763 + i32.const 18765 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $2 @@ -77607,7 +77607,7 @@ i32.eq i32.store8 local.get $4 - i32.const 19377 + i32.const 19379 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $4 @@ -77620,7 +77620,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE br_if $block_0 local.get $3 - i32.const 19380 + i32.const 19382 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $3 @@ -77685,7 +77685,7 @@ if $if_1 (result i32) block $block_3 (result i32) local.get $5 - i32.const 19383 + i32.const 19385 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $5 @@ -77840,7 +77840,7 @@ i32.add local.set $3 local.get $2 - i32.const 18887 + i32.const 18889 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -78035,13 +78035,13 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $5 - i32.const 19038 + i32.const 19040 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load local.set $1 local.get $2 - i32.const 18046 + i32.const 18048 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $4 local.get $5 @@ -78203,7 +78203,7 @@ i32.const 24 i32.add local.tee $5 - i32.const 19100 + i32.const 19102 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -78220,7 +78220,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle22ParameterPackExpansion9printLeftERNS_12OutputStreamE local.get $2 - i32.const 18046 + i32.const 18048 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -78342,7 +78342,7 @@ $block_0 ;; default end ;; $block_2 local.get $8 - i32.const 17580 + i32.const 17582 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $5 local.get $8 @@ -78366,7 +78366,7 @@ i32.ge_u br_if $block local.get $2 - i32.const 18234 + i32.const 18236 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $5 local.get $2 @@ -78451,7 +78451,7 @@ i32.load local.set $1 local.get $3 - i32.const 18046 + i32.const 18048 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $5 local.get $6 @@ -78493,7 +78493,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $3 - i32.const 19226 + i32.const 19228 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -78592,7 +78592,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $4 - i32.const 18232 + i32.const 18234 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -78616,7 +78616,7 @@ i32.add call_indirect $28 (type $3) local.get $5 - i32.const 19238 + i32.const 19240 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -78640,7 +78640,7 @@ i32.add call_indirect $28 (type $3) local.get $6 - i32.const 18046 + i32.const 18048 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $6 @@ -78675,7 +78675,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $3 - i32.const 19285 + i32.const 19287 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -78761,7 +78761,7 @@ i32.const 24 i32.add local.tee $6 - i32.const 18050 + i32.const 18052 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -78775,7 +78775,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 19302 + i32.const 19304 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -78789,7 +78789,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $5 - i32.const 19308 + i32.const 19310 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -78803,7 +78803,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $3 - i32.const 18046 + i32.const 18048 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -78847,13 +78847,13 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $5 - i32.const 19366 + i32.const 19368 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load local.set $1 local.get $2 - i32.const 18046 + i32.const 18048 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $4 local.get $5 @@ -79018,7 +79018,7 @@ i32.load8_s offset=28 if $if local.get $4 - i32.const 19386 + i32.const 19388 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -79047,7 +79047,7 @@ local.get $3 i32.const 40 i32.add - i32.const 19398 + i32.const 19400 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -79060,7 +79060,7 @@ i32.load8_s offset=29 if $if_0 local.get $4 - i32.const 19402 + i32.const 19404 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -79080,7 +79080,7 @@ i32.load offset=4 if $if_1 local.get $5 - i32.const 18050 + i32.const 18052 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -79093,7 +79093,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle9NodeArray14printWithCommaERNS_12OutputStreamE local.get $6 - i32.const 18046 + i32.const 18048 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -79114,7 +79114,7 @@ i32.load offset=4 if $if_2 local.get $7 - i32.const 18050 + i32.const 18052 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -79127,7 +79127,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle9NodeArray14printWithCommaERNS_12OutputStreamE local.get $3 - i32.const 18046 + i32.const 18048 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -79312,7 +79312,7 @@ i32.add i32.store local.get $1 - i32.const 19605 + i32.const 19607 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $4 local.get $1 @@ -79427,7 +79427,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 19496 + i32.const 19498 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -79459,7 +79459,7 @@ i32.ge_s if $if (result i32) local.get $2 - i32.const 19502 + i32.const 19504 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -79569,7 +79569,7 @@ i32.ge_s if $if_0 (result i32) local.get $2 - i32.const 19502 + i32.const 19504 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -79772,7 +79772,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $1 - i32.const 19616 + i32.const 19618 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -79905,7 +79905,7 @@ i32.const 16 i32.add local.tee $5 - i32.const 18050 + i32.const 18052 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -79919,7 +79919,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 19682 + i32.const 19684 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -79933,7 +79933,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $2 - i32.const 17684 + i32.const 17686 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -79971,7 +79971,7 @@ i32.load local.set $1 local.get $3 - i32.const 19740 + i32.const 19742 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 i32.load @@ -80335,7 +80335,7 @@ else block $block (result i32) local.get $1 - i32.const 19855 + i32.const 19857 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $1 @@ -80350,7 +80350,7 @@ br $block end ;; $if_1 local.get $4 - i32.const 19858 + i32.const 19860 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -80474,7 +80474,7 @@ i32.add local.set $3 local.get $2 - i32.const 19796 + i32.const 19798 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -80654,7 +80654,7 @@ i32.add i32.store local.get $0 - i32.const 19861 + i32.const 19863 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -80666,7 +80666,7 @@ i32.add i32.store local.get $0 - i32.const 19872 + i32.const 19874 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -80678,7 +80678,7 @@ i32.add i32.store local.get $0 - i32.const 19882 + i32.const 19884 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -80690,7 +80690,7 @@ i32.add i32.store local.get $0 - i32.const 19893 + i32.const 19895 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -80735,7 +80735,7 @@ i32.add i32.store local.get $0 - i32.const 19903 + i32.const 19905 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -80747,7 +80747,7 @@ i32.add i32.store local.get $0 - i32.const 19914 + i32.const 19916 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -80759,7 +80759,7 @@ i32.add i32.store local.get $0 - i32.const 19924 + i32.const 19926 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -80894,7 +80894,7 @@ i32.add i32.store local.get $0 - i32.const 19934 + i32.const 19936 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -80906,7 +80906,7 @@ i32.add i32.store local.get $0 - i32.const 19952 + i32.const 19954 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -80931,7 +80931,7 @@ i32.add i32.store local.get $0 - i32.const 19962 + i32.const 19964 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -80943,7 +80943,7 @@ i32.add i32.store local.get $0 - i32.const 19972 + i32.const 19974 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -80989,7 +80989,7 @@ i32.add i32.store local.get $0 - i32.const 19983 + i32.const 19985 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81001,7 +81001,7 @@ i32.add i32.store local.get $0 - i32.const 19993 + i32.const 19995 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81013,7 +81013,7 @@ i32.add i32.store local.get $0 - i32.const 20004 + i32.const 20006 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81056,7 +81056,7 @@ i32.add i32.store local.get $0 - i32.const 20015 + i32.const 20017 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81068,7 +81068,7 @@ i32.add i32.store local.get $0 - i32.const 20026 + i32.const 20028 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81103,7 +81103,7 @@ i32.add i32.store local.get $0 - i32.const 20036 + i32.const 20038 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ else i32.const 0 @@ -81150,7 +81150,7 @@ i32.add i32.store local.get $0 - i32.const 20047 + i32.const 20049 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81186,7 +81186,7 @@ i32.add i32.store local.get $0 - i32.const 20058 + i32.const 20060 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81198,7 +81198,7 @@ i32.add i32.store local.get $0 - i32.const 20069 + i32.const 20071 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81210,7 +81210,7 @@ i32.add i32.store local.get $0 - i32.const 20081 + i32.const 20083 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81258,7 +81258,7 @@ i32.add i32.store local.get $0 - i32.const 20091 + i32.const 20093 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81270,7 +81270,7 @@ i32.add i32.store local.get $0 - i32.const 20101 + i32.const 20103 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81282,7 +81282,7 @@ i32.add i32.store local.get $0 - i32.const 19952 + i32.const 19954 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81294,7 +81294,7 @@ i32.add i32.store local.get $0 - i32.const 20112 + i32.const 20114 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81306,7 +81306,7 @@ i32.add i32.store local.get $0 - i32.const 20123 + i32.const 20125 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81353,7 +81353,7 @@ i32.add i32.store local.get $0 - i32.const 20134 + i32.const 20136 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81365,7 +81365,7 @@ i32.add i32.store local.get $0 - i32.const 20149 + i32.const 20151 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81377,7 +81377,7 @@ i32.add i32.store local.get $0 - i32.const 20091 + i32.const 20093 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81389,7 +81389,7 @@ i32.add i32.store local.get $0 - i32.const 20160 + i32.const 20162 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81401,7 +81401,7 @@ i32.add i32.store local.get $0 - i32.const 20170 + i32.const 20172 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81447,7 +81447,7 @@ i32.add i32.store local.get $0 - i32.const 20183 + i32.const 20185 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81459,7 +81459,7 @@ i32.add i32.store local.get $0 - i32.const 20194 + i32.const 20196 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81471,7 +81471,7 @@ i32.add i32.store local.get $0 - i32.const 20204 + i32.const 20206 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81520,7 +81520,7 @@ i32.add i32.store local.get $0 - i32.const 20215 + i32.const 20217 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81532,7 +81532,7 @@ i32.add i32.store local.get $0 - i32.const 20227 + i32.const 20229 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81544,7 +81544,7 @@ i32.add i32.store local.get $0 - i32.const 20237 + i32.const 20239 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81556,7 +81556,7 @@ i32.add i32.store local.get $0 - i32.const 20248 + i32.const 20250 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81568,7 +81568,7 @@ i32.add i32.store local.get $0 - i32.const 20227 + i32.const 20229 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81580,7 +81580,7 @@ i32.add i32.store local.get $0 - i32.const 20259 + i32.const 20261 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81615,7 +81615,7 @@ i32.add i32.store local.get $0 - i32.const 20270 + i32.const 20272 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ else i32.const 0 @@ -81661,7 +81661,7 @@ i32.add i32.store local.get $0 - i32.const 20280 + i32.const 20282 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81673,7 +81673,7 @@ i32.add i32.store local.get $0 - i32.const 20290 + i32.const 20292 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81685,7 +81685,7 @@ i32.add i32.store local.get $0 - i32.const 20301 + i32.const 20303 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81697,7 +81697,7 @@ i32.add i32.store local.get $0 - i32.const 20312 + i32.const 20314 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81732,7 +81732,7 @@ i32.add i32.store local.get $0 - i32.const 20324 + i32.const 20326 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ else i32.const 0 @@ -81865,7 +81865,7 @@ i32.add local.set $3 local.get $2 - i32.const 20336 + i32.const 20338 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -81902,7 +81902,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $1 - i32.const 20400 + i32.const 20402 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -81958,7 +81958,7 @@ i32.add local.set $3 local.get $2 - i32.const 20416 + i32.const 20418 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -82028,7 +82028,7 @@ i32.add local.set $3 local.get $2 - i32.const 18783 + i32.const 18785 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -82105,7 +82105,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $2 - i32.const 19796 + i32.const 19798 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -82164,7 +82164,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $3 - i32.const 20579 + i32.const 20581 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -82272,7 +82272,7 @@ i32.load8_s offset=12 if $if local.get $4 - i32.const 19796 + i32.const 19798 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -82286,7 +82286,7 @@ i32.const 8 i32.add local.tee $4 - i32.const 20592 + i32.const 20594 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -82299,7 +82299,7 @@ i32.load8_s offset=13 if $if_0 local.get $2 - i32.const 20599 + i32.const 20601 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -82414,7 +82414,7 @@ i32.const 16 i32.add local.tee $5 - i32.const 18050 + i32.const 18052 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -82428,7 +82428,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 20653 + i32.const 20655 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -82443,7 +82443,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle9NodeArray14printWithCommaERNS_12OutputStreamE local.get $2 - i32.const 18046 + i32.const 18048 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -82553,7 +82553,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 18050 + i32.const 18052 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -82568,7 +82568,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle9NodeArray14printWithCommaERNS_12OutputStreamE local.get $2 - i32.const 18046 + i32.const 18048 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -82603,7 +82603,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $3 - i32.const 20751 + i32.const 20753 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -82733,7 +82733,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $4 - i32.const 18050 + i32.const 18052 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -82747,7 +82747,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $5 - i32.const 18046 + i32.const 18048 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -82891,14 +82891,14 @@ i32.const 56 i32.add local.tee $2 - i32.const 18125 + i32.const 18127 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $4 local.get $2 call $__ZN12_GLOBAL__N_1eqERKNS_10StringViewES2_ if $if local.get $5 - i32.const 18050 + i32.const 18052 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -82909,7 +82909,7 @@ call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE end ;; $if local.get $6 - i32.const 18050 + i32.const 18052 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -82923,7 +82923,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $7 - i32.const 20809 + i32.const 20811 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -82944,7 +82944,7 @@ local.get $2 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $8 - i32.const 20812 + i32.const 20814 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $8 @@ -82958,7 +82958,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $9 - i32.const 18046 + i32.const 18048 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $9 @@ -82968,14 +82968,14 @@ local.get $2 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $2 - i32.const 18125 + i32.const 18127 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $4 local.get $2 call $__ZN12_GLOBAL__N_1eqERKNS_10StringViewES2_ if $if_0 local.get $10 - i32.const 18046 + i32.const 18048 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $10 @@ -83158,7 +83158,7 @@ local.set $0 end ;; $if_0 local.get $6 - i32.const 20955 + i32.const 20957 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $6 @@ -83201,7 +83201,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $4 - i32.const 20960 + i32.const 20962 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -83411,7 +83411,7 @@ i32.const 8 i32.add local.tee $4 - i32.const 21009 + i32.const 21011 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -84228,7 +84228,7 @@ local.get $8 i32.store offset=8 local.get $4 - i32.const 21216 + i32.const 21218 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $6 local.get $4 @@ -84240,7 +84240,7 @@ if $if_4 local.get $2 local.get $0 - i32.const 21534 + i32.const 21536 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ i32.store end ;; $if_4 @@ -84560,7 +84560,7 @@ i32.store local.get $2 local.get $0 - i32.const 21474 + i32.const 21476 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ i32.store local.get $0 @@ -84659,7 +84659,7 @@ local.get $2 i32.const 8 i32.add - i32.const 21212 + i32.const 21214 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -84672,7 +84672,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE br_if $block_0 local.get $2 - i32.const 21216 + i32.const 21218 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -84775,7 +84775,7 @@ br $block_1 end ;; $if_1 local.get $4 - i32.const 21278 + i32.const 21280 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -84915,7 +84915,7 @@ i32.add local.set $3 local.get $2 - i32.const 21219 + i32.const 21221 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -84966,7 +84966,7 @@ local.get $2 i32.const 32 i32.add - i32.const 21339 + i32.const 21341 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $2 @@ -84995,7 +84995,7 @@ local.set $0 else local.get $5 - i32.const 21342 + i32.const 21344 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $5 @@ -85027,7 +85027,7 @@ i32.const 1 i32.store8 offset=362 local.get $4 - i32.const 21345 + i32.const 21347 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $4 @@ -85296,7 +85296,7 @@ i32.const 24 i32.add local.tee $6 - i32.const 21348 + i32.const 21350 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -85317,7 +85317,7 @@ local.get $2 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $4 - i32.const 21356 + i32.const 21358 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -85332,7 +85332,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle9NodeArray14printWithCommaERNS_12OutputStreamE local.get $5 - i32.const 18046 + i32.const 18048 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -85420,7 +85420,7 @@ i32.const 16 i32.add local.tee $5 - i32.const 21411 + i32.const 21413 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -85441,7 +85441,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $4 - i32.const 21420 + i32.const 21422 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -85985,7 +85985,7 @@ i32.load8_s offset=12 if $if local.get $4 - i32.const 18783 + i32.const 18785 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -86111,7 +86111,7 @@ $block ;; default end ;; $block_5 local.get $4 - i32.const 17828 + i32.const 17830 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -86123,7 +86123,7 @@ br $block end ;; $block_4 local.get $5 - i32.const 17843 + i32.const 17845 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -86135,7 +86135,7 @@ br $block end ;; $block_3 local.get $6 - i32.const 21630 + i32.const 21632 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -86147,7 +86147,7 @@ br $block end ;; $block_2 local.get $7 - i32.const 21701 + i32.const 21703 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -86159,7 +86159,7 @@ br $block end ;; $block_1 local.get $8 - i32.const 21751 + i32.const 21753 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $8 @@ -86171,7 +86171,7 @@ br $block end ;; $block_0 local.get $3 - i32.const 21801 + i32.const 21803 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -86202,32 +86202,32 @@ $block ;; default end ;; $block_5 local.get $0 - i32.const 17773 + i32.const 17775 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_4 local.get $0 - i32.const 17783 + i32.const 17785 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_3 local.get $0 - i32.const 17783 + i32.const 17785 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_2 local.get $0 - i32.const 21587 + i32.const 21589 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_1 local.get $0 - i32.const 21601 + i32.const 21603 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_0 local.get $0 - i32.const 21615 + i32.const 21617 call $__ZN12_GLOBAL__N_110StringViewC2EPKc end ;; $block ) @@ -86360,7 +86360,7 @@ call $__ZNK12_GLOBAL__N_116itanium_demangle4Node11hasFunctionERNS_12OutputStreamE br_if $block_0 local.get $5 - i32.const 18048 + i32.const 18050 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -86372,7 +86372,7 @@ br $block end ;; $block_0 local.get $4 - i32.const 18050 + i32.const 18052 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -86387,7 +86387,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $2 - i32.const 21963 + i32.const 21965 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -86430,7 +86430,7 @@ br $block end ;; $block_0 local.get $2 - i32.const 18046 + i32.const 18048 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -86627,7 +86627,7 @@ i32.ne if $if_0 local.get $4 - i32.const 18048 + i32.const 18050 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -86644,7 +86644,7 @@ local.get $3 i32.const 16 i32.add - i32.const 22023 + i32.const 22025 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -86701,7 +86701,7 @@ end ;; $if_4 end ;; $if_2 local.get $3 - i32.const 17684 + i32.const 17686 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -86842,7 +86842,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 22073 + i32.const 22075 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -86899,7 +86899,7 @@ end ;; $if_2 end ;; $if_0 local.get $2 - i32.const 17684 + i32.const 17686 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -87047,7 +87047,7 @@ local.get $2 i32.const 16 i32.add - i32.const 22129 + i32.const 22131 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -87074,7 +87074,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $2 - i32.const 17684 + i32.const 17686 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -87178,7 +87178,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $1 - i32.const 22205 + i32.const 22207 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -87212,7 +87212,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $1 - i32.const 22212 + i32.const 22214 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -87246,7 +87246,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $1 - i32.const 18336 + i32.const 18338 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -87394,7 +87394,7 @@ i32.and if $if local.get $4 - i32.const 22241 + i32.const 22243 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -87416,7 +87416,7 @@ i32.and if $if_0 local.get $4 - i32.const 22248 + i32.const 22250 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -87434,7 +87434,7 @@ i32.and if $if_1 local.get $2 - i32.const 22258 + i32.const 22260 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -87545,7 +87545,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 18048 + i32.const 18050 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -87671,7 +87671,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 18232 + i32.const 18234 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -87692,7 +87692,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $5 - i32.const 18125 + i32.const 18127 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -87835,7 +87835,7 @@ i32.add call_indirect $28 (type $3) local.get $2 - i32.const 18048 + i32.const 18050 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -87893,7 +87893,7 @@ i32.const 48 i32.add local.tee $4 - i32.const 18050 + i32.const 18052 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -87908,7 +87908,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle9NodeArray14printWithCommaERNS_12OutputStreamE local.get $5 - i32.const 18046 + i32.const 18048 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -87938,7 +87938,7 @@ i32.and if $if local.get $6 - i32.const 22241 + i32.const 22243 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -87956,7 +87956,7 @@ i32.and if $if_0 local.get $7 - i32.const 22248 + i32.const 22250 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -87974,7 +87974,7 @@ i32.and if $if_1 local.get $8 - i32.const 22258 + i32.const 22260 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $8 @@ -87996,7 +87996,7 @@ $block ;; default end ;; $block_1 local.get $9 - i32.const 22443 + i32.const 22445 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $9 @@ -88008,7 +88008,7 @@ br $block end ;; $block_0 local.get $3 - i32.const 22446 + i32.const 22448 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -88099,7 +88099,7 @@ i32.add local.set $3 local.get $2 - i32.const 22499 + i32.const 22501 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -88177,7 +88177,7 @@ i32.const 8 i32.add local.tee $4 - i32.const 22563 + i32.const 22565 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -88191,7 +88191,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $2 - i32.const 18046 + i32.const 18048 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -88410,7 +88410,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 20812 + i32.const 20814 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -88431,7 +88431,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $5 - i32.const 18046 + i32.const 18048 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -88725,7 +88725,7 @@ local.get $1 if $if_9 (result i32) local.get $0 - i32.const 22844 + i32.const 22846 local.get $2 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_11SpecialNameEJRA34_KcRPNS0_4NodeEEEESC_DpOT0_ else @@ -89242,7 +89242,7 @@ i32.eqz if $if_0 local.get $2 - i32.const 18048 + i32.const 18050 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -89306,7 +89306,7 @@ i32.const 48 i32.add local.tee $4 - i32.const 18050 + i32.const 18052 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -89321,7 +89321,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle9NodeArray14printWithCommaERNS_12OutputStreamE local.get $5 - i32.const 18046 + i32.const 18048 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -89354,7 +89354,7 @@ i32.and if $if_0 local.get $6 - i32.const 22241 + i32.const 22243 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -89372,7 +89372,7 @@ i32.and if $if_1 local.get $7 - i32.const 22248 + i32.const 22250 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -89390,7 +89390,7 @@ i32.and if $if_2 local.get $8 - i32.const 22258 + i32.const 22260 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $8 @@ -89412,7 +89412,7 @@ $block ;; default end ;; $block_1 local.get $9 - i32.const 22443 + i32.const 22445 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $9 @@ -89424,7 +89424,7 @@ br $block end ;; $block_0 local.get $3 - i32.const 22446 + i32.const 22448 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -89512,7 +89512,7 @@ i32.add local.set $3 local.get $2 - i32.const 22782 + i32.const 22784 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -89644,7 +89644,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 22878 + i32.const 22880 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -89683,7 +89683,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 22903 + i32.const 22905 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -89722,7 +89722,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 22923 + i32.const 22925 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -89761,7 +89761,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 22945 + i32.const 22947 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -89800,7 +89800,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 22963 + i32.const 22965 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -89868,7 +89868,7 @@ i32.const 8 i32.add local.tee $4 - i32.const 23004 + i32.const 23006 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -89882,7 +89882,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $2 - i32.const 23029 + i32.const 23031 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -89920,7 +89920,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 23092 + i32.const 23094 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -89959,7 +89959,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 23119 + i32.const 23121 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -89998,7 +89998,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 23138 + i32.const 23140 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -90037,7 +90037,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 23152 + i32.const 23154 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -90076,7 +90076,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 23161 + i32.const 23163 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -91918,5 +91918,5 @@ call_indirect $28 (type $9) ) ;; User section "emscripten_metadata": - ;; "\00\01\00\03\80\02\bf\03\80\08\90\d0\c1\02\f0\cf\01\80\d0\01" + ;; "\00\02\00\04\00\80\02\bf\03\80\08\a0\d0\c1\02\80\d0\01\90\d0\01" ) \ No newline at end of file diff --git a/test/extensions/filters/http/wasm/test_data/shared_cpp.wasm b/test/extensions/filters/http/wasm/test_data/shared_cpp.wasm index 54b57e6f6f172..9b3493c880868 100644 Binary files a/test/extensions/filters/http/wasm/test_data/shared_cpp.wasm and b/test/extensions/filters/http/wasm/test_data/shared_cpp.wasm differ diff --git a/test/extensions/filters/http/wasm/test_data/shared_cpp.wat b/test/extensions/filters/http/wasm/test_data/shared_cpp.wat index 112892f291351..e45f12c846d6d 100644 --- a/test/extensions/filters/http/wasm/test_data/shared_cpp.wat +++ b/test/extensions/filters/http/wasm/test_data/shared_cpp.wat @@ -167,7 +167,7 @@ $__ZNSt3__210__function16__policy_invokerIFNS_10unique_ptrI11RootContextNS_14default_deleteIS3_EEEEjNS_17basic_string_viewIcNS_11char_traitsIcEEEEEE12__call_emptyEPKNS0_16__policy_storageEjOSA_ $__ZNSt3__210__function16__policy_invokerIFNS_10unique_ptrI11RootContextNS_14default_deleteIS3_EEEEjNS_17basic_string_viewIcNS_11char_traitsIcEEEEEE12__call_emptyEPKNS0_16__policy_storageEjOSA_ $b11 $__ZN11RootContext18onHttpCallResponseEjNSt3__210unique_ptrI8WasmDataNS0_14default_deleteIS2_EEEES5_S5_ $__ZNK10__cxxabiv117__class_type_info16search_below_dstEPNS_19__dynamic_cast_infoEPKvib $__ZNK10__cxxabiv120__si_class_type_info16search_below_dstEPNS_19__dynamic_cast_infoEPKvib $__ZNK10__cxxabiv121__vmi_class_type_info16search_below_dstEPNS_19__dynamic_cast_infoEPKvib $b11 $b11 $b11 $b12 $__ZNK10__cxxabiv117__class_type_info16search_above_dstEPNS_19__dynamic_cast_infoEPKvS4_ib $__ZNK10__cxxabiv120__si_class_type_info16search_above_dstEPNS_19__dynamic_cast_infoEPKvS4_ib $__ZNK10__cxxabiv121__vmi_class_type_info16search_above_dstEPNS_19__dynamic_cast_infoEPKvS4_ib $b13) (data $35 $29 (i32.const 1024) - "\d5:\00\00\da:\00\00\e2:\00\00\e8:") + "\d7:\00\00\dc:\00\00\e4:\00\00\ea:") (data $36 $29 (i32.const 1168) "\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0" "\f0\f0\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\01\02\03\03\03\03\03\03\03\03\03\03\03\03\07\03\03\04\05\05\05\06\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0\f0" @@ -242,11 +242,11 @@ "\00\00\00g\00\00\00k\00\00\00m\00\00\00q\00\00\00y\00\00\00\7f\00\00\00\83\00\00\00\89\00\00\00\8b\00\00\00\8f\00\00\00\95\00\00\00\97\00\00\00\9d\00\00\00\a3\00\00\00\a7\00\00\00\a9" "\00\00\00\ad\00\00\00\b3\00\00\00\b5\00\00\00\bb\00\00\00\bf\00\00\00\c1\00\00\00\c5\00\00\00\c7\00\00\00\d1\00\00\00<\1e\00\00\a3+\00\00d\1e\00\00\9a+\00\00p\11\00\00\00\00\00\00d" "\1e\00\00\89+\00\00x\11\00\00\00\00\00\00<\1e\00\00E,\00\00<\1e\00\00J,\00\00\80*\00\00L-\00\00\00\00\00\00\01\00\00\00\c0\11\00\00\00\00\00\00<\1e\00\00\8b-\00\00d" - "\1e\00\00n7\00\00\88\12\00\00\00\00\00\00d\1e\00\00P6\00\00\e8\11\00\00\00\00\00\00d\1e\00\00\0d0\00\00\f8\11\00\00\00\00\00\00d\1e\00\00=0\00\00\08\12\00\00\00\00\00\00d" - "\1e\00\00\031\00\00\88\12\00\00\00\00\00\00d\1e\00\00\1d6\00\00\88\12\00\00\00\00\00\00\80*\00\00\db4\00\00\00\00\00\00\01\00\00\00@\12\00\00\00\00\00\00<\1e\00\00H5\00\00d" - "\1e\00\0076\00\00\88\12\00\00\00\00\00\00d\1e\00\00\a17\00\00p\11\00\00\00\00\00\00d\1e\00\00\d07\00\00x\14\00\00\00\00\00\00\ff\ff\ff\ff\ff\ff\ff\ff") + "\1e\00\00p7\00\00\88\12\00\00\00\00\00\00d\1e\00\00R6\00\00\e8\11\00\00\00\00\00\00d\1e\00\00\0f0\00\00\f8\11\00\00\00\00\00\00d\1e\00\00?0\00\00\08\12\00\00\00\00\00\00d" + "\1e\00\00\051\00\00\88\12\00\00\00\00\00\00d\1e\00\00\1f6\00\00\88\12\00\00\00\00\00\00\80*\00\00\dd4\00\00\00\00\00\00\01\00\00\00@\12\00\00\00\00\00\00<\1e\00\00J5\00\00d" + "\1e\00\0096\00\00\88\12\00\00\00\00\00\00d\1e\00\00\a37\00\00p\11\00\00\00\00\00\00d\1e\00\00\d27\00\00x\14\00\00\00\00\00\00\ff\ff\ff\ff\ff\ff\ff\ff") (data $53 $29 (i32.const 4744) - "<\1e\00\00\d4<\00\00d\1e\00\00\a5@\00\00\b0\12\00\00\00\00\00\00d\1e\00\00aA\00\00\b0\12\00\00\00\00\00\00<\1e\00\00-B\00\00\05") + "<\1e\00\00\d6<\00\00d\1e\00\00\a7@\00\00\b0\12\00\00\00\00\00\00d\1e\00\00cA\00\00\b0\12\00\00\00\00\00\00<\1e\00\00/B\00\00\05") (data $54 $29 (i32.const 4804) "-") (data $55 $29 (i32.const 4828) @@ -270,26 +270,26 @@ (data $64 $29 (i32.const 5155) "\ff\ff\ff\ff\ff") (data $65 $29 (i32.const 5224) - "d\1e\00\00\a4B\00\00x\14\00\00\00\00\00\00<\1e\00\00cC\00\00d\1e\00\00\c3C\00\00\90\14\00\00\00\00\00\00d\1e\00\00pC\00\00\a0\14\00\00\00\00\00\00<\1e\00\00\91C\00\00" - "d\1e\00\00\9eC\00\00\80\14\00\00\00\00\00\00d\1e\00\00SE\00\00\c8\14\00\00\00\00\00\00<\1e\00\00\82E\00\00d\1e\00\006F\00\00\c8\14\00\00\00\00\00\00d\1e\00\00yF\00\00" - "\c8\14\00\00\00\00\00\00d\1e\00\00\c6F\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\0cG\00\00\c8\14\00\00\00\00\00\00d\1e\00\00G\00\00\c8\14\00\00\00\00\00\00d\1e\00\00|G\00\00" + "\c8\14\00\00\00\00\00\00d\1e\00\00\adG\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\fdG\00\00\c8\14\00\00\00\00\00\00d\1e\00\006H\00\00\c8\14\00\00\00\00\00\00d\1e\00\00qH\00\00" + "\c8\14\00\00\00\00\00\00d\1e\00\00\adH\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\f0H\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\1eI\00\00\c8\14\00\00\00\00\00\00d\1e\00\00QI\00\00" + "\c8\14\00\00\00\00\00\00d\1e\00\00\0dJ\00\00\c8\14\00\00\00\00\00\00d\1e\00\00:J\00\00\c8\14\00\00\00\00\00\00d\1e\00\00kJ\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\a9J\00\00" + "\c8\14\00\00\00\00\00\00d\1e\00\00!K\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\e6J\00\00\c8\14\00\00\00\00\00\00d\1e\00\00hK\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\b1K\00\00" + "\c8\14\00\00\00\00\00\00d\1e\00\00\0cL\00\00\c8\14\00\00\00\00\00\00d\1e\00\007L\00\00\c8\14\00\00\00\00\00\00d\1e\00\00qL\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\a5L\00\00" + "\c8\14\00\00\00\00\00\00d\1e\00\00\f5L\00\00\c8\14\00\00\00\00\00\00d\1e\00\00$M\00\00\c8\14\00\00\00\00\00\00d\1e\00\00]M\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\96M\00\00" + "\c8\14\00\00\00\00\00\00d\1e\00\00\bbO\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\09P\00\00\c8\14\00\00\00\00\00\00d\1e\00\00DP\00\00\c8\14\00\00\00\00\00\00d\1e\00\00pP\00\00" + "\c8\14\00\00\00\00\00\00d\1e\00\00\baP\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\efP\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\"Q\00\00\c8\14\00\00\00\00\00\00d\1e\00\00YQ\00\00" + "\c8\14\00\00\00\00\00\00d\1e\00\00\8eQ\00\00\c8\14\00\00\00\00\00\00d\1e\00\00$R\00\00\c8\14\00\00\00\00\00\00d\1e\00\00VR\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\88R\00\00" + "\c8\14\00\00\00\00\00\00d\1e\00\00\e0R\00\00\c8\14\00\00\00\00\00\00d\1e\00\00(S\00\00\c8\14\00\00\00\00\00\00d\1e\00\00`S\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\aeS\00\00" + "\c8\14\00\00\00\00\00\00d\1e\00\00\edS\00\00\c8\14\00\00\00\00\00\00d\1e\00\000T\00\00\c8\14\00\00\00\00\00\00d\1e\00\00aT\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\9bU\00\00" + "\c8\14\00\00\00\00\00\00d\1e\00\00\dbU\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\0eV\00\00\c8\14\00\00\00\00\00\00d\1e\00\00HV\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\81V\00\00" + "\c8\14\00\00\00\00\00\00d\1e\00\00\beV\00\00\c8\14\00\00\00\00\00\00d\1e\00\00;W\00\00\c8\14\00\00\00\00\00\00d\1e\00\00gW\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\9dW\00\00" + "\c8\14\00\00\00\00\00\00d\1e\00\00\f1W\00\00\c8\14\00\00\00\00\00\00d\1e\00\00)X\00\00\c8\14\00\00\00\00\00\00d\1e\00\00lX\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\9dX\00\00" + "\c8\14\00\00\00\00\00\00d\1e\00\00\cdX\00\00\c8\14\00\00\00\00\00\00d\1e\00\00\08Y\00\00\c8\14\00\00\00\00\00\00d\1e\00\00JY\00\00\c8\14\00\00\00\00\00\00d\1e\00\009Z\00\00" + "\c8\14\00\00\00\00\00\00d\1e\00\00\c4Z\00\00x\14\00\00\00\00\00\00d\1e\00\00\d4Z\00\00\f0\18\00\00\00\00\00\00d\1e\00\00\e5Z\00\00\90\14\00\00\00\00\00\00d\1e\00\00\07[\00\00" + "\10\19\00\00\00\00\00\00d\1e\00\00+[\00\00\90\14\00\00\00\00\00\00d*\00\00S[\00\00d*\00\00U[\00\00d*\00\00W[\00\00d\1e\00\00Y[\00\00\80\14") (data $66 $29 (i32.const 6508) "\88\11\00\00\01\00\00\00\02\00\00\00\01\00\00\00\02\00\00\00\01\00\00\00\02\00\00\00\03\00\00\00\03\00\00\00\04\00\00\00\01\00\00\00\05\00\00\00\06\00\00\00\07\00\00\00\02\00\00\00\08\00\00\00" "\04\00\00\00\05\00\00\00\06\00\00\00\00\00\00\00p\11\00\00\01\00\00\00\07\00\00\00\09\00\00\00\n\00\00\00\01\00\00\00\02") @@ -382,190 +382,190 @@ "ernalMetadataWithArenaLiteEE9ContainerE\00/usr/local/include/googl" "e/protobuf/arenastring.h\00CHECK failed: initial_value != NULL: \00N" "St3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEE\00NS" - "t3__221__basic_string_commonILb1EEE\00/home/jplev_google_com/envoy" - "/api/wasm/cpp/struct_lite.pb.cc\00/usr/local/include/google/protob" - "uf/repeated_field.h\00CHECK failed: (index) >= (0): \00CHECK failed:" - " (index) < (current_size_): \00/usr/local/include/google/protobuf/" - "map.h\00CHECK failed: (bucket_index_ & 1) == (0): \00CHECK failed: m" - "_->index_of_first_non_null_ == m_->num_buckets_ || m_->table_[m_" - "->index_of_first_non_null_] != NULL: \00CHECK failed: !tree->empty" - "(): \00CHECK failed: node_ != NULL && m_ != NULL: \00google.protobuf" - ".Value.string_value\00google.protobuf.Struct.FieldsEntry.key\00CHECK" - " failed: (&from) != (this): \00CHECK failed: (&other) != (this): \00" - "N6google8protobuf27Struct_FieldsEntry_DoNotUseE\00N6google8protobu" - "f8internal12MapEntryLiteINS0_27Struct_FieldsEntry_DoNotUseENSt3_" - "_212basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEENS0_5" - "ValueELNS1_14WireFormatLite9FieldTypeE9ELSD_11ELi0EEE\00N6google8p" - "rotobuf8internal12MapEntryImplINS0_27Struct_FieldsEntry_DoNotUse" - "ENS0_11MessageLiteENSt3__212basic_stringIcNS5_11char_traitsIcEEN" - "S5_9allocatorIcEEEENS0_5ValueELNS1_14WireFormatLite9FieldTypeE9E" - "LSE_11ELi0EEE\00CHECK failed: (it.m_) == (this): \00CHECK failed: Ta" - "bleEntryIsNonEmptyList(b): \00CHECK failed: TableEntryIsTree(b): \00" - "CHECK failed: GetArenaNoVirtual() == NULL: \00CHECK failed: index_" - "of_first_non_null_ == num_buckets_ || table_[index_of_first_non_" - "null_] != NULL: \00CHECK failed: find(*KeyPtrFromNodePtr(node)) ==" - " end(): \00CHECK failed: (count) <= (kMaxLength): \00CHECK failed: (" - "result.bucket_index_) == (b & ~static_cast(1)): \00CHEC" - "K failed: (table_[b]) == (table_[b ^ 1]): \00CHECK failed: !TableE" - "ntryIsTree(b) && !TableEntryIsTree(b ^ 1): \00CHECK failed: (count" - ") == (tree->size()): \00CHECK failed: (new_num_buckets) >= (kMinTa" - "bleSize): \00CHECK failed: n >= kMinTableSize: \00CHECK failed: (n &" - " (n - 1)) == (0): \00CHECK failed: table_[b] == table_[b + 1] && (" - "b & 1) == 0: \00N6google8protobuf3MapINSt3__212basic_stringIcNS2_1" - "1char_traitsIcEENS2_9allocatorIcEEEENS0_5ValueEE8InnerMapE\00N6goo" - "gle8protobuf4hashINSt3__212basic_stringIcNS2_11char_traitsIcEENS" - "2_9allocatorIcEEEEEE\00f == NULL || dynamic_cast(f) != NULL\00/u" - "sr/local/include/google/protobuf/stubs/casts.h\00down_cast\00google." - "protobuf.Struct\00N6google8protobuf6StructE\00N6google8protobuf5Valu" - "eE\00N6google8protobuf8internal12MapEntryImplINS0_27Struct_FieldsE" - "ntry_DoNotUseENS0_11MessageLiteENSt3__212basic_stringIcNS5_11cha" - "r_traitsIcEENS5_9allocatorIcEEEENS0_5ValueELNS1_14WireFormatLite" - "9FieldTypeE9ELSE_11ELi0EE15MapEntryWrapperE\00CHECK failed: (n) >=" - " (0): \00google.protobuf.ListValue\00N6google8protobuf9ListValueE\00go" - "ogle.protobuf.Value\0011RootContext\00no context factory for root_id" - ": \00N6google8protobuf14FatalExceptionE\00google/protobuf/stubs/comm" - "on.cc\00This program requires version \00%d.%d.%d\00 of the Protocol B" - "uffer runtime library, but the installed version is \00. Please u" - "pdate your library. If you compiled the program yourself, make " - "sure that your headers are from the same version of Protocol Buf" - "fers as your link-time library. (Version verification failed in" - " \"\00\".)\00This program was compiled against version \00 of the Protoc" - "ol Buffer runtime library, which is not compatible with the inst" - "alled version (\00). Contact the program author for an update. I" - "f you compiled the program yourself, make sure that your headers" - " are from the same version of Protocol Buffers as your link-time" - " library. (Version verification failed in \"\00[libprotobuf %s %s:" - "%d] %s\n\00INFO\00WARNING\00ERROR\00FATAL\00allocator::allocate(size_t n" - ") 'n' exceeds maximum supported size\00%d\00%u\00google/protobuf/arena" - ".cc\00CHECK failed: (min_bytes) <= (std::numeric_limits::m" - "ax() - kBlockHeaderSize): \00google/protobuf/generated_message_uti" - "l.cc\00Not implemented field number \00 with type \00CHECK failed: (sc" - "c->visit_status.load(std::memory_order_relaxed)) == (SCCInfoBase" - "::kRunning): \00google/protobuf/message_lite.cc\00CHECK failed: !cod" - "ed_out.HadError(): \00(cannot determine missing fields for lite me" - "ssage)\00N6google8protobuf11MessageLiteE\00google/protobuf/repeated_" - "field.cc\00CHECK failed: (new_size) <= ((std::numeric_limits::max() - kRepHeaderSize) / sizeof(old_rep->elements[0])): \00Re" - "quested size is too large to fit into size_t.\00google/protobuf/wi" - "re_format_lite.cc\00CHECK failed: (value.size()) <= (kint32max): \00" - "serializing\00parsing\00 '%s'\00String field\00 contains invalid \00UTF-8 " - "data when \00 a protocol \00buffer. Use the 'bytes' type if you inte" - "nd to send raw \00bytes. \00google/protobuf/io/coded_stream.cc\00CHECK" - " failed: (buffer_size) >= (0): \00A protocol message was rejected " - "because it was too big (more than \00 bytes). To increase the lim" - "it (or to disable these warnings), see CodedInputStream::SetTota" - "lBytesLimit() in google/protobuf/io/coded_stream.h.\00google/proto" - "buf/io/zero_copy_stream_impl_lite.cc\00CHECK failed: (count) >= (0" - "): \00CHECK failed: (last_returned_size_) > (0): \00BackUp() can onl" - "y be called after a successful Next().\00CHECK failed: (count) <= " - "(last_returned_size_): \00N6google8protobuf2io17ArrayOutputStreamE" - "\00CHECK failed: target_ != NULL: \00CHECK failed: (count) <= (targe" - "t_->size()): \00Cannot allocate buffer larger than kint32max for \00" - "StringOutputStream.\00N6google8protobuf2io18StringOutputStreamE\00go" - "ogle/protobuf/io/zero_copy_stream.cc\00This ZeroCopyOutputStream d" - "oesn't support aliasing. Reaching here usually means a ZeroCopyO" - "utputStream implementation bug.\00N6google8protobuf2io20ZeroCopyOu" - "tputStreamE\00-+ 0X0x\00(null)\00-0X+0X 0X-0x+0x 0x\00inf\00INF\00nan\00NAN\00" - "std::bad_function_call\00NSt3__217bad_function_callE\00mutex lock fa" - "iled\00terminating with %s exception of type %s: %s\00terminating wi" - "th %s exception of type %s\00terminating with %s foreign exception" - "\00terminating\00uncaught\00St9exception\00N10__cxxabiv116__shim_type_in" - "foE\00St9type_info\00N10__cxxabiv120__si_class_type_infoE\00N10__cxxab" - "iv117__class_type_infoE\00terminate_handler unexpectedly returned\00" - "_Z\00___Z\00_block_invoke\00invocation function for block in \00void\00boo" - "l\00char\00signed char\00unsigned char\00short\00unsigned short\00int\00unsign" - "ed int\00long\00unsigned long\00long long\00__int128\00unsigned __int128\00f" - "loat\00long double\00__float128\00...\00decimal64\00decimal128\00decimal32\00d" - "ecimal16\00char32_t\00char16_t\00auto\00decltype(auto)\00std::nullptr_t\00[a" - "bi:\00]\00N12_GLOBAL__N_116itanium_demangle10AbiTagAttrE\00N12_GLOBAL_" - "_N_116itanium_demangle4NodeE\00allocator\00basic_string\00string\00istre" - "am\00ostream\00iostream\00std::allocator\00std::basic_string\00std::string" - "\00std::istream\00std::ostream\00std::iostream\00N12_GLOBAL__N_116itaniu" - "m_demangle19SpecialSubstitutionE\00 imaginary\00N12_GLOBAL__N_116ita" - "nium_demangle20PostfixQualifiedTypeE\00 complex\00)\00 \00(\00&\00&&\00N12_GLO" - "BAL__N_116itanium_demangle13ReferenceTypeE\00objc_object\00*\00id<\00>\00N" - "12_GLOBAL__N_116itanium_demangle11PointerTypeE\00N12_GLOBAL__N_116" - "itanium_demangle20NameWithTemplateArgsE\00<\00, \00N12_GLOBAL__N_116it" - "anium_demangle12TemplateArgsE\00N12_GLOBAL__N_116itanium_demangle1" - "3ParameterPackE\00wchar_t\00b0E\00b1E\00u\00l\00ul\00ll\00ull\00N12_GLOBAL__N_116i" - "tanium_demangle15IntegerCastExprE\00%LaL\00N12_GLOBAL__N_116itanium_" - "demangle16FloatLiteralImplIeEE\00%a\00N12_GLOBAL__N_116itanium_deman" - "gle16FloatLiteralImplIdEE\00%af\00N12_GLOBAL__N_116itanium_demangle1" - "6FloatLiteralImplIfEE\00true\00false\00N12_GLOBAL__N_116itanium_demang" - "le8BoolExprE\00-\00N12_GLOBAL__N_116itanium_demangle14IntegerLiteral" - "E\00N12_GLOBAL__N_116itanium_demangle20TemplateArgumentPackE\00gs\00&=" - "\00=\00alignof (\00,\00~\00.*\00/\00/=\00^\00^=\00==\00>=\00<=\00<<\00<<=\00-=\00*=\00--\00!=\00!\00||\00|" - "\00|=\00->*\00+\00+=\00++\00->\00%\00%=\00>>\00>>=\00sizeof (\00typeid (\00throw\00throw \00N1" - "2_GLOBAL__N_116itanium_demangle9ThrowExprE\00N12_GLOBAL__N_116itan" - "ium_demangle12InitListExprE\00N12_GLOBAL__N_116itanium_demangle13N" - "odeArrayNodeE\00sizeof... (\00N12_GLOBAL__N_116itanium_demangle13Enc" - "losingExprE\00sizeof...(\00N12_GLOBAL__N_116itanium_demangle22Parame" - "terPackExpansionE\00N12_GLOBAL__N_116itanium_demangle19SizeofParam" - "PackExprE\00static_cast\00>(\00N12_GLOBAL__N_116itanium_demangle8CastE" - "xprE\00reinterpret_cast\00) ? (\00) : (\00N12_GLOBAL__N_116itanium_deman" - "gle15ConditionalExprE\00noexcept (\00nw\00na\00pi\00::operator \00new\00[]\00N12" - "_GLOBAL__N_116itanium_demangle7NewExprE\00N12_GLOBAL__N_116itanium" - "_demangle11PostfixExprE\00 ... \00 = \00N12_GLOBAL__N_116itanium_deman" - "gle15BracedRangeExprE\00N12_GLOBAL__N_116itanium_demangle10BracedE" - "xprE\00_GLOBAL__N\00(anonymous namespace)\00N12_GLOBAL__N_116itanium_d" - "emangle8NameTypeE\00)[\00N12_GLOBAL__N_116itanium_demangle18ArraySub" - "scriptExprE\00.\00N12_GLOBAL__N_116itanium_demangle10MemberExprE\00srN" - "\00sr\00::\00N12_GLOBAL__N_116itanium_demangle19GlobalQualifiedNameE\00d" - "n\00on\00operator&&\00operator&\00operator&=\00operator=\00operator()\00operat" - "or,\00operator~\00operator delete[]\00operator*\00operator/\00operator/=\00o" - "perator^\00operator^=\00operator==\00operator>=\00operator>\00operator[]\00o" - "perator<=\00operator<<\00operator<<=\00operator<\00operator-\00operator-=\00" - "operator*=\00operator--\00operator new[]\00operator!=\00operator!\00operat" - "or new\00operator||\00operator|\00operator|=\00operator->*\00operator+\00ope" - "rator+=\00operator++\00operator->\00operator?\00operator%\00operator%=\00ope" - "rator>>\00operator>>=\00operator<=>\00operator\"\" \00N12_GLOBAL__N_116ita" - "nium_demangle15LiteralOperatorE\00operator delete\00operator \00N12_GL" - "OBAL__N_116itanium_demangle22ConversionOperatorTypeE\00N12_GLOBAL_" - "_N_116itanium_demangle8DtorNameE\00N12_GLOBAL__N_116itanium_demang" - "le13QualifiedNameE\00dynamic_cast\00delete\00[] \00N12_GLOBAL__N_116itan" - "ium_demangle10DeleteExprE\00cv\00)(\00N12_GLOBAL__N_116itanium_demangl" - "e14ConversionExprE\00N12_GLOBAL__N_116itanium_demangle8CallExprE\00c" - "onst_cast\00N12_GLOBAL__N_116itanium_demangle10PrefixExprE\00) \00 (\00N" - "12_GLOBAL__N_116itanium_demangle10BinaryExprE\00aa\00an\00aN\00aS\00cm\00ds\00" - "dv\00dV\00eo\00eO\00eq\00ge\00gt\00le\00ls\00lS\00lt\00mi\00mI\00ml\00mL\00ne\00oo\00or\00oR\00pl\00pL\00r" - "m\00rM\00rs\00rS\00... \00 ...\00N12_GLOBAL__N_116itanium_demangle8FoldExprE" - "\00fp\00fL\00N12_GLOBAL__N_116itanium_demangle13FunctionParamE\00N12_GLO" - "BAL__N_116itanium_demangle24ForwardTemplateReferenceE\00Ts\00struct\00" - "Tu\00union\00Te\00enum\00N12_GLOBAL__N_116itanium_demangle22ElaboratedTy" - "peSpefTypeE\00StL\00St\00std::\00N12_GLOBAL__N_116itanium_demangle16StdQ" - "ualifiedNameE\00DC\00N12_GLOBAL__N_116itanium_demangle21StructuredBi" - "ndingNameE\00Ut\00Ul\00vE\00'lambda\00'(\00N12_GLOBAL__N_116itanium_demangle" - "15ClosureTypeNameE\00'unnamed\00'\00N12_GLOBAL__N_116itanium_demangle1" - "5UnnamedTypeNameE\00string literal\00N12_GLOBAL__N_116itanium_demang" - "le9LocalNameE\00std\00N12_GLOBAL__N_116itanium_demangle12CtorDtorNam" - "eE\00basic_istream\00basic_ostream\00basic_iostream\00std::basic_string<" - "char, std::char_traits, std::allocator >\00std::basic_" - "istream >\00std::basic_ostream >\00std::basic_iostream >\00N12_GLOBAL__N_116itanium_demangle27ExpandedSpecialSu" - "bstitutionE\00N12_GLOBAL__N_116itanium_demangle10NestedNameE\00::*\00N" - "12_GLOBAL__N_116itanium_demangle19PointerToMemberTypeE\00[\00N12_GLO" - "BAL__N_116itanium_demangle9ArrayTypeE\00Dv\00 vector[\00N12_GLOBAL__N_" - "116itanium_demangle10VectorTypeE\00pixel vector[\00N12_GLOBAL__N_116" - "itanium_demangle15PixelVectorTypeE\00decltype(\00double\00unsigned lon" - "g long\00objcproto\00 const\00 volatile\00 restrict\00N12_GLOBAL__N_116ita" - "nium_demangle8QualTypeE\00N12_GLOBAL__N_116itanium_demangle17Vendo" - "rExtQualTypeE\00N12_GLOBAL__N_116itanium_demangle13ObjCProtoNameE\00" - "Do\00noexcept\00DO\00Dw\00Dx\00RE\00OE\00 &\00 &&\00N12_GLOBAL__N_116itanium_deman" - "gle12FunctionTypeE\00throw(\00N12_GLOBAL__N_116itanium_demangle20Dyn" - "amicExceptionSpecE\00noexcept(\00N12_GLOBAL__N_116itanium_demangle12" - "NoexceptSpecE\00N12_GLOBAL__N_116itanium_demangle11SpecialNameE\00N1" - "2_GLOBAL__N_116itanium_demangle9DotSuffixE\00Ua9enable_ifI\00N12_GLO" - "BAL__N_116itanium_demangle16FunctionEncodingE\00 [enable_if:\00N12_G" - "LOBAL__N_116itanium_demangle12EnableIfAttrE\00thread-local wrapper" - " routine for \00reference temporary for \00guard variable for \00non-v" - "irtual thunk to \00virtual thunk to \00thread-local initialization r" - "outine for \00construction vtable for \00-in-\00N12_GLOBAL__N_116itani" - "um_demangle21CtorVtableSpecialNameE\00covariant return thunk to \00t" - "ypeinfo name for \00typeinfo for \00VTT for \00vtable for \00St11logic_e" - "rror\00St12length_error\00N10__cxxabiv117__pbase_type_infoE\00N10__cxx" - "abiv119__pointer_type_infoE\00N10__cxxabiv123__fundamental_type_in" - "foE\00v\00c\00h\00N10__cxxabiv121__vmi_class_type_infoE") + "t3__221__basic_string_commonILb1EEE\00/home/piotrsikora/Google/env" + "oy/api/wasm/cpp/struct_lite.pb.cc\00/usr/local/include/google/prot" + "obuf/repeated_field.h\00CHECK failed: (index) >= (0): \00CHECK faile" + "d: (index) < (current_size_): \00/usr/local/include/google/protobu" + "f/map.h\00CHECK failed: (bucket_index_ & 1) == (0): \00CHECK failed:" + " m_->index_of_first_non_null_ == m_->num_buckets_ || m_->table_[" + "m_->index_of_first_non_null_] != NULL: \00CHECK failed: !tree->emp" + "ty(): \00CHECK failed: node_ != NULL && m_ != NULL: \00google.protob" + "uf.Value.string_value\00google.protobuf.Struct.FieldsEntry.key\00CHE" + "CK failed: (&from) != (this): \00CHECK failed: (&other) != (this):" + " \00N6google8protobuf27Struct_FieldsEntry_DoNotUseE\00N6google8proto" + "buf8internal12MapEntryLiteINS0_27Struct_FieldsEntry_DoNotUseENSt" + "3__212basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEENS0" + "_5ValueELNS1_14WireFormatLite9FieldTypeE9ELSD_11ELi0EEE\00N6google" + "8protobuf8internal12MapEntryImplINS0_27Struct_FieldsEntry_DoNotU" + "seENS0_11MessageLiteENSt3__212basic_stringIcNS5_11char_traitsIcE" + "ENS5_9allocatorIcEEEENS0_5ValueELNS1_14WireFormatLite9FieldTypeE" + "9ELSE_11ELi0EEE\00CHECK failed: (it.m_) == (this): \00CHECK failed: " + "TableEntryIsNonEmptyList(b): \00CHECK failed: TableEntryIsTree(b):" + " \00CHECK failed: GetArenaNoVirtual() == NULL: \00CHECK failed: inde" + "x_of_first_non_null_ == num_buckets_ || table_[index_of_first_no" + "n_null_] != NULL: \00CHECK failed: find(*KeyPtrFromNodePtr(node)) " + "== end(): \00CHECK failed: (count) <= (kMaxLength): \00CHECK failed:" + " (result.bucket_index_) == (b & ~static_cast(1)): \00CH" + "ECK failed: (table_[b]) == (table_[b ^ 1]): \00CHECK failed: !Tabl" + "eEntryIsTree(b) && !TableEntryIsTree(b ^ 1): \00CHECK failed: (cou" + "nt) == (tree->size()): \00CHECK failed: (new_num_buckets) >= (kMin" + "TableSize): \00CHECK failed: n >= kMinTableSize: \00CHECK failed: (n" + " & (n - 1)) == (0): \00CHECK failed: table_[b] == table_[b + 1] &&" + " (b & 1) == 0: \00N6google8protobuf3MapINSt3__212basic_stringIcNS2" + "_11char_traitsIcEENS2_9allocatorIcEEEENS0_5ValueEE8InnerMapE\00N6g" + "oogle8protobuf4hashINSt3__212basic_stringIcNS2_11char_traitsIcEE" + "NS2_9allocatorIcEEEEEE\00f == NULL || dynamic_cast(f) != NULL\00" + "/usr/local/include/google/protobuf/stubs/casts.h\00down_cast\00googl" + "e.protobuf.Struct\00N6google8protobuf6StructE\00N6google8protobuf5Va" + "lueE\00N6google8protobuf8internal12MapEntryImplINS0_27Struct_Field" + "sEntry_DoNotUseENS0_11MessageLiteENSt3__212basic_stringIcNS5_11c" + "har_traitsIcEENS5_9allocatorIcEEEENS0_5ValueELNS1_14WireFormatLi" + "te9FieldTypeE9ELSE_11ELi0EE15MapEntryWrapperE\00CHECK failed: (n) " + ">= (0): \00google.protobuf.ListValue\00N6google8protobuf9ListValueE\00" + "google.protobuf.Value\0011RootContext\00no context factory for root_" + "id: \00N6google8protobuf14FatalExceptionE\00google/protobuf/stubs/co" + "mmon.cc\00This program requires version \00%d.%d.%d\00 of the Protocol" + " Buffer runtime library, but the installed version is \00. Please" + " update your library. If you compiled the program yourself, mak" + "e sure that your headers are from the same version of Protocol B" + "uffers as your link-time library. (Version verification failed " + "in \"\00\".)\00This program was compiled against version \00 of the Prot" + "ocol Buffer runtime library, which is not compatible with the in" + "stalled version (\00). Contact the program author for an update. " + " If you compiled the program yourself, make sure that your heade" + "rs are from the same version of Protocol Buffers as your link-ti" + "me library. (Version verification failed in \"\00[libprotobuf %s %" + "s:%d] %s\n\00INFO\00WARNING\00ERROR\00FATAL\00allocator::allocate(size_t" + " n) 'n' exceeds maximum supported size\00%d\00%u\00google/protobuf/are" + "na.cc\00CHECK failed: (min_bytes) <= (std::numeric_limits:" + ":max() - kBlockHeaderSize): \00google/protobuf/generated_message_u" + "til.cc\00Not implemented field number \00 with type \00CHECK failed: (" + "scc->visit_status.load(std::memory_order_relaxed)) == (SCCInfoBa" + "se::kRunning): \00google/protobuf/message_lite.cc\00CHECK failed: !c" + "oded_out.HadError(): \00(cannot determine missing fields for lite " + "message)\00N6google8protobuf11MessageLiteE\00google/protobuf/repeate" + "d_field.cc\00CHECK failed: (new_size) <= ((std::numeric_limits::max() - kRepHeaderSize) / sizeof(old_rep->elements[0])): \00" + "Requested size is too large to fit into size_t.\00google/protobuf/" + "wire_format_lite.cc\00CHECK failed: (value.size()) <= (kint32max):" + " \00serializing\00parsing\00 '%s'\00String field\00 contains invalid \00UTF-" + "8 data when \00 a protocol \00buffer. Use the 'bytes' type if you in" + "tend to send raw \00bytes. \00google/protobuf/io/coded_stream.cc\00CHE" + "CK failed: (buffer_size) >= (0): \00A protocol message was rejecte" + "d because it was too big (more than \00 bytes). To increase the l" + "imit (or to disable these warnings), see CodedInputStream::SetTo" + "talBytesLimit() in google/protobuf/io/coded_stream.h.\00google/pro" + "tobuf/io/zero_copy_stream_impl_lite.cc\00CHECK failed: (count) >= " + "(0): \00CHECK failed: (last_returned_size_) > (0): \00BackUp() can o" + "nly be called after a successful Next().\00CHECK failed: (count) <" + "= (last_returned_size_): \00N6google8protobuf2io17ArrayOutputStrea" + "mE\00CHECK failed: target_ != NULL: \00CHECK failed: (count) <= (tar" + "get_->size()): \00Cannot allocate buffer larger than kint32max for" + " \00StringOutputStream.\00N6google8protobuf2io18StringOutputStreamE\00" + "google/protobuf/io/zero_copy_stream.cc\00This ZeroCopyOutputStream" + " doesn't support aliasing. Reaching here usually means a ZeroCop" + "yOutputStream implementation bug.\00N6google8protobuf2io20ZeroCopy" + "OutputStreamE\00-+ 0X0x\00(null)\00-0X+0X 0X-0x+0x 0x\00inf\00INF\00nan\00NA" + "N\00std::bad_function_call\00NSt3__217bad_function_callE\00mutex lock " + "failed\00terminating with %s exception of type %s: %s\00terminating " + "with %s exception of type %s\00terminating with %s foreign excepti" + "on\00terminating\00uncaught\00St9exception\00N10__cxxabiv116__shim_type_" + "infoE\00St9type_info\00N10__cxxabiv120__si_class_type_infoE\00N10__cxx" + "abiv117__class_type_infoE\00terminate_handler unexpectedly returne" + "d\00_Z\00___Z\00_block_invoke\00invocation function for block in \00void\00b" + "ool\00char\00signed char\00unsigned char\00short\00unsigned short\00int\00unsi" + "gned int\00long\00unsigned long\00long long\00__int128\00unsigned __int128" + "\00float\00long double\00__float128\00...\00decimal64\00decimal128\00decimal32" + "\00decimal16\00char32_t\00char16_t\00auto\00decltype(auto)\00std::nullptr_t\00" + "[abi:\00]\00N12_GLOBAL__N_116itanium_demangle10AbiTagAttrE\00N12_GLOBA" + "L__N_116itanium_demangle4NodeE\00allocator\00basic_string\00string\00ist" + "ream\00ostream\00iostream\00std::allocator\00std::basic_string\00std::stri" + "ng\00std::istream\00std::ostream\00std::iostream\00N12_GLOBAL__N_116itan" + "ium_demangle19SpecialSubstitutionE\00 imaginary\00N12_GLOBAL__N_116i" + "tanium_demangle20PostfixQualifiedTypeE\00 complex\00)\00 \00(\00&\00&&\00N12_G" + "LOBAL__N_116itanium_demangle13ReferenceTypeE\00objc_object\00*\00id<\00>" + "\00N12_GLOBAL__N_116itanium_demangle11PointerTypeE\00N12_GLOBAL__N_1" + "16itanium_demangle20NameWithTemplateArgsE\00<\00, \00N12_GLOBAL__N_116" + "itanium_demangle12TemplateArgsE\00N12_GLOBAL__N_116itanium_demangl" + "e13ParameterPackE\00wchar_t\00b0E\00b1E\00u\00l\00ul\00ll\00ull\00N12_GLOBAL__N_11" + "6itanium_demangle15IntegerCastExprE\00%LaL\00N12_GLOBAL__N_116itaniu" + "m_demangle16FloatLiteralImplIeEE\00%a\00N12_GLOBAL__N_116itanium_dem" + "angle16FloatLiteralImplIdEE\00%af\00N12_GLOBAL__N_116itanium_demangl" + "e16FloatLiteralImplIfEE\00true\00false\00N12_GLOBAL__N_116itanium_dema" + "ngle8BoolExprE\00-\00N12_GLOBAL__N_116itanium_demangle14IntegerLiter" + "alE\00N12_GLOBAL__N_116itanium_demangle20TemplateArgumentPackE\00gs\00" + "&=\00=\00alignof (\00,\00~\00.*\00/\00/=\00^\00^=\00==\00>=\00<=\00<<\00<<=\00-=\00*=\00--\00!=\00!\00||" + "\00|\00|=\00->*\00+\00+=\00++\00->\00%\00%=\00>>\00>>=\00sizeof (\00typeid (\00throw\00throw \00" + "N12_GLOBAL__N_116itanium_demangle9ThrowExprE\00N12_GLOBAL__N_116it" + "anium_demangle12InitListExprE\00N12_GLOBAL__N_116itanium_demangle1" + "3NodeArrayNodeE\00sizeof... (\00N12_GLOBAL__N_116itanium_demangle13E" + "nclosingExprE\00sizeof...(\00N12_GLOBAL__N_116itanium_demangle22Para" + "meterPackExpansionE\00N12_GLOBAL__N_116itanium_demangle19SizeofPar" + "amPackExprE\00static_cast\00>(\00N12_GLOBAL__N_116itanium_demangle8Cas" + "tExprE\00reinterpret_cast\00) ? (\00) : (\00N12_GLOBAL__N_116itanium_dem" + "angle15ConditionalExprE\00noexcept (\00nw\00na\00pi\00::operator \00new\00[]\00N" + "12_GLOBAL__N_116itanium_demangle7NewExprE\00N12_GLOBAL__N_116itani" + "um_demangle11PostfixExprE\00 ... \00 = \00N12_GLOBAL__N_116itanium_dem" + "angle15BracedRangeExprE\00N12_GLOBAL__N_116itanium_demangle10Brace" + "dExprE\00_GLOBAL__N\00(anonymous namespace)\00N12_GLOBAL__N_116itanium" + "_demangle8NameTypeE\00)[\00N12_GLOBAL__N_116itanium_demangle18ArrayS" + "ubscriptExprE\00.\00N12_GLOBAL__N_116itanium_demangle10MemberExprE\00s" + "rN\00sr\00::\00N12_GLOBAL__N_116itanium_demangle19GlobalQualifiedNameE" + "\00dn\00on\00operator&&\00operator&\00operator&=\00operator=\00operator()\00oper" + "ator,\00operator~\00operator delete[]\00operator*\00operator/\00operator/=" + "\00operator^\00operator^=\00operator==\00operator>=\00operator>\00operator[]" + "\00operator<=\00operator<<\00operator<<=\00operator<\00operator-\00operator-" + "=\00operator*=\00operator--\00operator new[]\00operator!=\00operator!\00oper" + "ator new\00operator||\00operator|\00operator|=\00operator->*\00operator+\00o" + "perator+=\00operator++\00operator->\00operator?\00operator%\00operator%=\00o" + "perator>>\00operator>>=\00operator<=>\00operator\"\" \00N12_GLOBAL__N_116i" + "tanium_demangle15LiteralOperatorE\00operator delete\00operator \00N12_" + "GLOBAL__N_116itanium_demangle22ConversionOperatorTypeE\00N12_GLOBA" + "L__N_116itanium_demangle8DtorNameE\00N12_GLOBAL__N_116itanium_dema" + "ngle13QualifiedNameE\00dynamic_cast\00delete\00[] \00N12_GLOBAL__N_116it" + "anium_demangle10DeleteExprE\00cv\00)(\00N12_GLOBAL__N_116itanium_deman" + "gle14ConversionExprE\00N12_GLOBAL__N_116itanium_demangle8CallExprE" + "\00const_cast\00N12_GLOBAL__N_116itanium_demangle10PrefixExprE\00) \00 (" + "\00N12_GLOBAL__N_116itanium_demangle10BinaryExprE\00aa\00an\00aN\00aS\00cm\00d" + "s\00dv\00dV\00eo\00eO\00eq\00ge\00gt\00le\00ls\00lS\00lt\00mi\00mI\00ml\00mL\00ne\00oo\00or\00oR\00pl\00pL" + "\00rm\00rM\00rs\00rS\00... \00 ...\00N12_GLOBAL__N_116itanium_demangle8FoldExp" + "rE\00fp\00fL\00N12_GLOBAL__N_116itanium_demangle13FunctionParamE\00N12_G" + "LOBAL__N_116itanium_demangle24ForwardTemplateReferenceE\00Ts\00struc" + "t\00Tu\00union\00Te\00enum\00N12_GLOBAL__N_116itanium_demangle22Elaborated" + "TypeSpefTypeE\00StL\00St\00std::\00N12_GLOBAL__N_116itanium_demangle16St" + "dQualifiedNameE\00DC\00N12_GLOBAL__N_116itanium_demangle21Structured" + "BindingNameE\00Ut\00Ul\00vE\00'lambda\00'(\00N12_GLOBAL__N_116itanium_demang" + "le15ClosureTypeNameE\00'unnamed\00'\00N12_GLOBAL__N_116itanium_demangl" + "e15UnnamedTypeNameE\00string literal\00N12_GLOBAL__N_116itanium_dema" + "ngle9LocalNameE\00std\00N12_GLOBAL__N_116itanium_demangle12CtorDtorN" + "ameE\00basic_istream\00basic_ostream\00basic_iostream\00std::basic_strin" + "g, std::allocator >\00std::basi" + "c_istream >\00std::basic_ostream >\00std::basic_iostream >\00N12_GLOBAL__N_116itanium_demangle27ExpandedSpecial" + "SubstitutionE\00N12_GLOBAL__N_116itanium_demangle10NestedNameE\00::*" + "\00N12_GLOBAL__N_116itanium_demangle19PointerToMemberTypeE\00[\00N12_G" + "LOBAL__N_116itanium_demangle9ArrayTypeE\00Dv\00 vector[\00N12_GLOBAL__" + "N_116itanium_demangle10VectorTypeE\00pixel vector[\00N12_GLOBAL__N_1" + "16itanium_demangle15PixelVectorTypeE\00decltype(\00double\00unsigned l" + "ong long\00objcproto\00 const\00 volatile\00 restrict\00N12_GLOBAL__N_116i" + "tanium_demangle8QualTypeE\00N12_GLOBAL__N_116itanium_demangle17Ven" + "dorExtQualTypeE\00N12_GLOBAL__N_116itanium_demangle13ObjCProtoName" + "E\00Do\00noexcept\00DO\00Dw\00Dx\00RE\00OE\00 &\00 &&\00N12_GLOBAL__N_116itanium_dem" + "angle12FunctionTypeE\00throw(\00N12_GLOBAL__N_116itanium_demangle20D" + "ynamicExceptionSpecE\00noexcept(\00N12_GLOBAL__N_116itanium_demangle" + "12NoexceptSpecE\00N12_GLOBAL__N_116itanium_demangle11SpecialNameE\00" + "N12_GLOBAL__N_116itanium_demangle9DotSuffixE\00Ua9enable_ifI\00N12_G" + "LOBAL__N_116itanium_demangle16FunctionEncodingE\00 [enable_if:\00N12" + "_GLOBAL__N_116itanium_demangle12EnableIfAttrE\00thread-local wrapp" + "er routine for \00reference temporary for \00guard variable for \00non" + "-virtual thunk to \00virtual thunk to \00thread-local initialization" + " routine for \00construction vtable for \00-in-\00N12_GLOBAL__N_116ita" + "nium_demangle21CtorVtableSpecialNameE\00covariant return thunk to " + "\00typeinfo name for \00typeinfo for \00VTT for \00vtable for \00St11logic" + "_error\00St12length_error\00N10__cxxabiv117__pbase_type_infoE\00N10__c" + "xxabiv119__pointer_type_infoE\00N10__cxxabiv123__fundamental_type_" + "infoE\00v\00c\00h\00N10__cxxabiv121__vmi_class_type_infoE") (func $globalCtors (type $8) call $__GLOBAL__sub_I_shared_cpp_cc @@ -2203,7 +2203,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 12877 + i32.const 12879 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -2337,19 +2337,19 @@ i32.const 25 i32.store offset=4 local.get $1 - i32.const 14164 + i32.const 14166 i64.load align=1 i64.store align=1 local.get $1 - i32.const 14172 + i32.const 14174 i64.load align=1 i64.store offset=8 align=1 local.get $1 - i32.const 14180 + i32.const 14182 i64.load align=1 i64.store offset=16 align=1 local.get $1 - i32.const 14188 + i32.const 14190 i32.load8_s i32.store8 offset=24 local.get $1 @@ -2461,10 +2461,10 @@ local.get $1 call $__ZN6google8protobuf9ListValue9MergeFromERKS1_ else - i32.const 13730 - i32.const 13771 + i32.const 13732 + i32.const 13773 i32.const 92 - i32.const 13820 + i32.const 13822 call $___assert_fail end ;; $if ) @@ -3063,7 +3063,7 @@ i32.const 3 i32.store local.get $3 - i32.const 11757 + i32.const 11759 i32.store offset=4 local.get $3 i32.const 1505 @@ -3075,7 +3075,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 11809 + i32.const 11811 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -3105,7 +3105,7 @@ i32.const 3 i32.store local.get $2 - i32.const 11757 + i32.const 11759 i32.store offset=4 local.get $2 i32.const 1506 @@ -3117,7 +3117,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 11840 + i32.const 11842 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -3775,7 +3775,7 @@ i32.const 3 i32.store local.get $3 - i32.const 11882 + i32.const 11884 i32.store offset=4 local.get $3 i32.const 418 @@ -3787,7 +3787,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 11966 + i32.const 11968 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -3873,7 +3873,7 @@ i32.const 3 i32.store local.get $2 - i32.const 11882 + i32.const 11884 i32.store offset=4 local.get $2 i32.const 427 @@ -3885,7 +3885,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 12083 + i32.const 12085 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -3956,7 +3956,7 @@ i32.const 3 i32.store local.get $2 - i32.const 11882 + i32.const 11884 i32.store offset=4 local.get $2 i32.const 451 @@ -3968,7 +3968,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 11923 + i32.const 11925 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -4104,7 +4104,7 @@ i32.const 3 i32.store local.get $3 - i32.const 11882 + i32.const 11884 i32.store offset=4 local.get $3 i32.const 476 @@ -4116,7 +4116,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 12114 + i32.const 12116 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -5006,10 +5006,10 @@ local.get $1 call $__ZN6google8protobuf8internal12MapEntryImplINS0_27Struct_FieldsEntry_DoNotUseENS0_11MessageLiteENSt3__212basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEENS0_5ValueELNS1_14WireFormatLite9FieldTypeE9ELSE_11ELi0EE17MergeFromInternalERKSF_ else - i32.const 13730 - i32.const 13771 + i32.const 13732 + i32.const 13773 i32.const 92 - i32.const 13820 + i32.const 13822 call $___assert_fail end ;; $if ) @@ -6023,7 +6023,7 @@ i32.and end ;; $if_11 i32.const 0 - i32.const 12158 + i32.const 12160 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ br_if $loop i32.const 0 @@ -6763,7 +6763,7 @@ local.get $6 select i32.const 0 - i32.const 12193 + i32.const 12195 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ select br $block_4 @@ -8227,7 +8227,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 12232 + i32.const 12234 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -8560,7 +8560,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 12232 + i32.const 12234 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -8754,7 +8754,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 12232 + i32.const 12234 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -8850,7 +8850,7 @@ i32.const 3 i32.store local.get $2 - i32.const 11757 + i32.const 11759 i32.store offset=4 local.get $2 i32.const 1586 @@ -8862,7 +8862,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 12266 + i32.const 12268 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -9090,7 +9090,7 @@ i32.const 3 i32.store local.get $2 - i32.const 11882 + i32.const 11884 i32.store offset=4 local.get $2 i32.const 601 @@ -9102,7 +9102,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 12763 + i32.const 12765 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -9164,7 +9164,7 @@ i32.const 3 i32.store local.get $2 - i32.const 11882 + i32.const 11884 i32.store offset=4 local.get $2 i32.const 607 @@ -9176,7 +9176,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 12797 + i32.const 12799 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -9219,7 +9219,7 @@ i32.const 3 i32.store local.get $3 - i32.const 11882 + i32.const 11884 i32.store offset=4 local.get $3 i32.const 612 @@ -9231,7 +9231,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 12841 + i32.const 12843 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -10312,7 +10312,7 @@ i32.const 0 i32.store offset=20 local.get $1 - i32.const 12877 + i32.const 12879 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $1 @@ -10669,7 +10669,7 @@ i32.const 3 i32.store local.get $2 - i32.const 11882 + i32.const 11884 i32.store offset=4 local.get $2 i32.const 765 @@ -10681,7 +10681,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 13347 + i32.const 13349 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -10870,7 +10870,7 @@ i32.const 3 i32.store local.get $4 - i32.const 11882 + i32.const 11884 i32.store offset=4 local.get $4 i32.const 672 @@ -10882,7 +10882,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 12921 + i32.const 12923 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -10908,7 +10908,7 @@ i32.const 3 i32.store local.get $4 - i32.const 11882 + i32.const 11884 i32.store offset=4 local.get $4 i32.const 678 @@ -10920,7 +10920,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 13022 + i32.const 13024 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -11002,7 +11002,7 @@ i32.const 3 i32.store local.get $6 - i32.const 11882 + i32.const 11884 i32.store offset=4 local.get $6 i32.const 878 @@ -11014,7 +11014,7 @@ i32.const 0 i32.store offset=20 local.get $6 - i32.const 13078 + i32.const 13080 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $6 @@ -11046,7 +11046,7 @@ i32.const 3 i32.store local.get $5 - i32.const 11882 + i32.const 11884 i32.store offset=4 local.get $5 i32.const 685 @@ -11058,7 +11058,7 @@ i32.const 0 i32.store offset=20 local.get $5 - i32.const 13118 + i32.const 13120 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $5 @@ -11175,7 +11175,7 @@ i32.const 3 i32.store local.get $2 - i32.const 11882 + i32.const 11884 i32.store offset=4 local.get $2 i32.const 837 @@ -11187,7 +11187,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 13240 + i32.const 13242 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -11459,7 +11459,7 @@ i32.const 3 i32.store local.get $2 - i32.const 11882 + i32.const 11884 i32.store offset=4 local.get $2 i32.const 848 @@ -11471,7 +11471,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 13305 + i32.const 13307 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -11533,7 +11533,7 @@ i32.const 3 i32.store local.get $4 - i32.const 11882 + i32.const 11884 i32.store offset=4 local.get $4 i32.const 713 @@ -11545,7 +11545,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 13193 + i32.const 13195 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -12830,7 +12830,7 @@ i32.const 3 i32.store local.get $2 - i32.const 11882 + i32.const 11884 i32.store offset=4 local.get $2 i32.const 926 @@ -12842,7 +12842,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 13400 + i32.const 13402 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -12858,7 +12858,7 @@ i32.const 3 i32.store local.get $3 - i32.const 11882 + i32.const 11884 i32.store offset=4 local.get $3 i32.const 927 @@ -12870,7 +12870,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 13435 + i32.const 13437 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -13451,7 +13451,7 @@ i32.const 3 i32.store local.get $5 - i32.const 11882 + i32.const 11884 i32.store offset=4 local.get $5 i32.const 527 @@ -13463,7 +13463,7 @@ i32.const 0 i32.store offset=20 local.get $5 - i32.const 13472 + i32.const 13474 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $5 @@ -13739,7 +13739,7 @@ i32.const 0 i32.store offset=20 local.get $1 - i32.const 12877 + i32.const 12879 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $1 @@ -13821,19 +13821,19 @@ i32.const 22 i32.store offset=4 local.get $1 - i32.const 13830 + i32.const 13832 i64.load align=1 i64.store align=1 local.get $1 - i32.const 13838 + i32.const 13840 i64.load align=1 i64.store offset=8 align=1 local.get $1 - i32.const 13846 + i32.const 13848 i32.load align=1 i32.store offset=16 align=1 local.get $1 - i32.const 13850 + i32.const 13852 i32.load16_s align=1 i32.store16 offset=20 align=1 local.get $1 @@ -13911,10 +13911,10 @@ local.get $1 call $__ZN6google8protobuf6Struct9MergeFromERKS1_ else - i32.const 13730 - i32.const 13771 + i32.const 13732 + i32.const 13773 i32.const 92 - i32.const 13820 + i32.const 13822 call $___assert_fail end ;; $if ) @@ -14093,7 +14093,7 @@ local.get $2 local.get $4 i32.const 1 - i32.const 12193 + i32.const 12195 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ drop local.get $5 @@ -14301,7 +14301,7 @@ local.get $2 local.get $4 i32.const 1 - i32.const 12193 + i32.const 12195 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ drop local.get $8 @@ -17514,7 +17514,7 @@ i32.const 3 i32.store local.get $1 - i32.const 11757 + i32.const 11759 i32.store offset=4 local.get $1 i32.const 1567 @@ -17526,7 +17526,7 @@ i32.const 0 i32.store offset=20 local.get $1 - i32.const 14137 + i32.const 14139 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $1 @@ -17730,19 +17730,19 @@ i32.const 21 i32.store offset=4 local.get $1 - i32.const 14219 + i32.const 14221 i64.load align=1 i64.store align=1 local.get $1 - i32.const 14227 + i32.const 14229 i64.load align=1 i64.store offset=8 align=1 local.get $1 - i32.const 14235 + i32.const 14237 i32.load align=1 i32.store offset=16 align=1 local.get $1 - i32.const 14239 + i32.const 14241 i32.load8_s i32.store8 offset=20 local.get $1 @@ -17818,10 +17818,10 @@ local.get $1 call $__ZN6google8protobuf5Value9MergeFromERKS1_ else - i32.const 13730 - i32.const 13771 + i32.const 13732 + i32.const 13773 i32.const 92 - i32.const 13820 + i32.const 13822 call $___assert_fail end ;; $if ) @@ -17884,7 +17884,7 @@ local.get $2 local.get $3 i32.const 1 - i32.const 12158 + i32.const 12160 call $__ZN6google8protobuf8internal14WireFormatLite16VerifyUtf8StringEPKciNS2_9OperationES4_ drop local.get $0 @@ -29834,7 +29834,7 @@ i32.store local.get $2 i32.const 128 - i32.const 15154 + i32.const 15156 local.get $3 call $_snprintf drop @@ -29871,7 +29871,7 @@ i32.store local.get $2 i32.const 128 - i32.const 15157 + i32.const 15159 local.get $3 call $_snprintf drop @@ -30159,7 +30159,7 @@ i32.const 3 i32.store local.get $3 - i32.const 15160 + i32.const 15162 i32.store offset=4 local.get $3 i32.const 116 @@ -30171,7 +30171,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 15185 + i32.const 15187 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -41035,7 +41035,7 @@ i32.const 3 i32.store local.get $11 - i32.const 15272 + i32.const 15274 i32.store offset=4 local.get $11 i32.const 571 @@ -41047,7 +41047,7 @@ i32.const 0 i32.store offset=20 local.get $11 - i32.const 15314 + i32.const 15316 call $__ZN6google8protobuf8internal10LogMessagelsEPKc local.get $4 call $__ZN6google8protobuf8internal10LogMessagelsEi @@ -41084,7 +41084,7 @@ i32.const 3 i32.store local.get $1 - i32.const 15272 + i32.const 15274 i32.store offset=4 local.get $1 i32.const 534 @@ -41096,12 +41096,12 @@ i32.const 0 i32.store offset=20 local.get $1 - i32.const 15314 + i32.const 15316 call $__ZN6google8protobuf8internal10LogMessagelsEPKc local.get $0 i32.load offset=4 call $__ZN6google8protobuf8internal10LogMessagelsEj - i32.const 15344 + i32.const 15346 call $__ZN6google8protobuf8internal10LogMessagelsEPKc local.get $0 i32.load offset=12 @@ -41161,7 +41161,7 @@ i32.const 3 i32.store local.get $0 - i32.const 15272 + i32.const 15274 i32.store offset=4 local.get $0 i32.const 801 @@ -41173,7 +41173,7 @@ i32.const 0 i32.store offset=20 local.get $0 - i32.const 15356 + i32.const 15358 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $0 @@ -41310,31 +41310,31 @@ i32.const 50 i32.store offset=4 local.get $1 - i32.const 15521 + i32.const 15523 i64.load align=1 i64.store align=1 local.get $1 - i32.const 15529 + i32.const 15531 i64.load align=1 i64.store offset=8 align=1 local.get $1 - i32.const 15537 + i32.const 15539 i64.load align=1 i64.store offset=16 align=1 local.get $1 - i32.const 15545 + i32.const 15547 i64.load align=1 i64.store offset=24 align=1 local.get $1 - i32.const 15553 + i32.const 15555 i64.load align=1 i64.store offset=32 align=1 local.get $1 - i32.const 15561 + i32.const 15563 i64.load align=1 i64.store offset=40 align=1 local.get $1 - i32.const 15569 + i32.const 15571 i32.load16_s align=1 i32.store16 offset=48 align=1 local.get $1 @@ -41471,7 +41471,7 @@ i32.const 3 i32.store local.get $4 - i32.const 15451 + i32.const 15453 i32.store offset=4 local.get $4 i32.const 373 @@ -41483,7 +41483,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 15483 + i32.const 15485 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -41566,7 +41566,7 @@ i32.const 3 i32.store local.get $3 - i32.const 15604 + i32.const 15606 i32.store offset=4 local.get $3 i32.const 59 @@ -41578,9 +41578,9 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 15638 + i32.const 15640 call $__ZN6google8protobuf8internal10LogMessagelsEPKc - i32.const 15755 + i32.const 15757 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -43263,7 +43263,7 @@ i32.const 3 i32.store local.get $4 - i32.const 15803 + i32.const 15805 i32.store offset=4 local.get $4 i32.const 507 @@ -43275,7 +43275,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 15839 + i32.const 15841 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -43475,7 +43475,7 @@ i32.const 3 i32.store local.get $4 - i32.const 15803 + i32.const 15805 i32.store offset=4 local.get $4 i32.const 516 @@ -43487,7 +43487,7 @@ i32.const 0 i32.store offset=20 local.get $4 - i32.const 15839 + i32.const 15841 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $4 @@ -44166,13 +44166,13 @@ i32.load offset=8 i32.store offset=8 end ;; $if_0 - i32.const 15885 + i32.const 15887 i32.const 0 local.get $2 i32.const 1 i32.eq select - i32.const 15897 + i32.const 15899 local.get $2 select local.set $3 @@ -44184,7 +44184,7 @@ i32.const 2 i32.store local.get $1 - i32.const 15803 + i32.const 15805 i32.store offset=4 local.get $1 i32.const 626 @@ -44196,21 +44196,21 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 15911 + i32.const 15913 call $__ZN6google8protobuf8internal10LogMessagelsEPKc local.get $0 call $__ZN6google8protobuf8internal10LogMessagelsERKNSt3__212basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEE - i32.const 15924 + i32.const 15926 call $__ZN6google8protobuf8internal10LogMessagelsEPKc - i32.const 15943 + i32.const 15945 call $__ZN6google8protobuf8internal10LogMessagelsEPKc local.get $3 call $__ZN6google8protobuf8internal10LogMessagelsEPKc - i32.const 15960 + i32.const 15962 call $__ZN6google8protobuf8internal10LogMessagelsEPKc - i32.const 15973 + i32.const 15975 call $__ZN6google8protobuf8internal10LogMessagelsEPKc - i32.const 16029 + i32.const 16031 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -44980,7 +44980,7 @@ i32.const 3 i32.store local.get $2 - i32.const 16037 + i32.const 16039 i32.store offset=4 local.get $2 i32.const 591 @@ -44992,7 +44992,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 16072 + i32.const 16074 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -45135,7 +45135,7 @@ i32.const 2 i32.store local.get $1 - i32.const 16037 + i32.const 16039 i32.store offset=4 local.get $1 i32.const 190 @@ -45147,12 +45147,12 @@ i32.const 0 i32.store offset=20 local.get $1 - i32.const 16109 + i32.const 16111 call $__ZN6google8protobuf8internal10LogMessagelsEPKc local.get $0 i32.load offset=36 call $__ZN6google8protobuf8internal10LogMessagelsEi - i32.const 16176 + i32.const 16178 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $1 @@ -47614,7 +47614,7 @@ i32.const 3 i32.store local.get $2 - i32.const 16321 + i32.const 16323 i32.store offset=4 local.get $2 i32.const 132 @@ -47626,9 +47626,9 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 16401 + i32.const 16403 call $__ZN6google8protobuf8internal10LogMessagelsEPKc - i32.const 16445 + i32.const 16447 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -47649,7 +47649,7 @@ i32.const 3 i32.store local.get $2 - i32.const 16321 + i32.const 16323 i32.store offset=4 local.get $2 i32.const 134 @@ -47661,7 +47661,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 16500 + i32.const 16502 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -47688,7 +47688,7 @@ i32.const 3 i32.store local.get $3 - i32.const 16321 + i32.const 16323 i32.store offset=4 local.get $3 i32.const 135 @@ -47700,7 +47700,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 16370 + i32.const 16372 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -47756,7 +47756,7 @@ i32.const 3 i32.store local.get $3 - i32.const 16321 + i32.const 16323 i32.store offset=4 local.get $3 i32.const 151 @@ -47768,7 +47768,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 16590 + i32.const 16592 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -47842,7 +47842,7 @@ i32.const 2 i32.store local.get $5 - i32.const 16321 + i32.const 16323 i32.store offset=4 local.get $5 i32.const 164 @@ -47854,9 +47854,9 @@ i32.const 0 i32.store offset=20 local.get $5 - i32.const 16667 + i32.const 16669 call $__ZN6google8protobuf8internal10LogMessagelsEPKc - i32.const 16717 + i32.const 16719 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $5 @@ -47931,7 +47931,7 @@ i32.const 3 i32.store local.get $2 - i32.const 16321 + i32.const 16323 i32.store offset=4 local.get $2 i32.const 182 @@ -47943,7 +47943,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 16370 + i32.const 16372 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -47964,7 +47964,7 @@ i32.const 3 i32.store local.get $2 - i32.const 16321 + i32.const 16323 i32.store offset=4 local.get $2 i32.const 183 @@ -47976,7 +47976,7 @@ i32.const 0 i32.store offset=20 local.get $2 - i32.const 16590 + i32.const 16592 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $2 @@ -48006,7 +48006,7 @@ i32.const 3 i32.store local.get $3 - i32.const 16321 + i32.const 16323 i32.store offset=4 local.get $3 i32.const 184 @@ -48018,7 +48018,7 @@ i32.const 0 i32.store offset=20 local.get $3 - i32.const 16622 + i32.const 16624 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $3 @@ -48079,7 +48079,7 @@ i32.const 3 i32.store local.get $1 - i32.const 16321 + i32.const 16323 i32.store offset=4 local.get $1 i32.const 189 @@ -48091,7 +48091,7 @@ i32.const 0 i32.store offset=20 local.get $1 - i32.const 16590 + i32.const 16592 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $1 @@ -48146,7 +48146,7 @@ i32.add local.tee $3 i32.const 1024 - i32.const 15905 + i32.const 15907 local.get $2 call $_vsnprintf local.tee $4 @@ -48178,7 +48178,7 @@ i32.store local.get $3 local.get $5 - i32.const 15905 + i32.const 15907 local.get $2 call $_vsnprintf local.tee $1 @@ -48724,7 +48724,7 @@ i32.const 3 i32.store local.get $0 - i32.const 16779 + i32.const 16781 i32.store offset=4 local.get $0 i32.const 47 @@ -48736,7 +48736,7 @@ i32.const 0 i32.store offset=20 local.get $0 - i32.const 16818 + i32.const 16820 call $__ZN6google8protobuf8internal10LogMessagelsEPKc call $__ZN6google8protobuf8internal10LogMessage6FinishEv local.get $0 @@ -49705,13 +49705,13 @@ local.tee $1 i64.reinterpret_f64 local.set $25 - i32.const 17002 + i32.const 17004 local.set $18 i32.const 1 else + i32.const 17007 + i32.const 17010 i32.const 17005 - i32.const 17008 - i32.const 17003 local.get $4 i32.const 1 i32.and @@ -49734,8 +49734,8 @@ i64.const 9218868437227405312 i64.eq if $if_0 (result i32) - i32.const 17029 - i32.const 17033 + i32.const 17031 + i32.const 17035 local.get $5 i32.const 32 i32.and @@ -49743,8 +49743,8 @@ i32.ne local.tee $3 select - i32.const 17021 - i32.const 17025 + i32.const 17023 + i32.const 17027 local.get $3 select local.get $1 @@ -51092,7 +51092,7 @@ i32.eqz if $if_54 local.get $0 - i32.const 19801 + i32.const 19803 i32.const 1 call $_out end ;; $if_54 @@ -51251,7 +51251,7 @@ br $block_4 end ;; $if_61 local.get $0 - i32.const 19801 + i32.const 19803 i32.const 1 call $_out local.get $6 @@ -52341,7 +52341,7 @@ local.set $1 i32.const 0 local.set $12 - i32.const 16985 + i32.const 16987 local.set $8 br $block_14 end ;; $block_25 @@ -52357,13 +52357,13 @@ i64.sub local.tee $25 i64.store - i32.const 16985 + i32.const 16987 local.set $8 i32.const 1 else - i32.const 16986 + i32.const 16988 + i32.const 16989 i32.const 16987 - i32.const 16985 local.get $7 i32.const 1 i32.and @@ -52387,7 +52387,7 @@ local.set $25 i32.const 0 local.set $12 - i32.const 16985 + i32.const 16987 local.set $8 br $block_16 end ;; $block_23 @@ -52403,7 +52403,7 @@ local.set $5 i32.const 0 local.set $12 - i32.const 16985 + i32.const 16987 local.set $8 local.get $18 local.set $1 @@ -52412,7 +52412,7 @@ local.get $10 i32.load local.tee $5 - i32.const 16995 + i32.const 16997 local.get $5 select local.tee $6 @@ -52432,7 +52432,7 @@ local.set $5 i32.const 0 local.set $12 - i32.const 16985 + i32.const 16987 local.set $8 local.get $1 local.get $6 @@ -52493,7 +52493,7 @@ local.set $5 i32.const 0 local.set $12 - i32.const 16985 + i32.const 16987 local.set $8 local.get $18 local.set $1 @@ -52521,11 +52521,11 @@ local.tee $8 select local.set $12 - i32.const 16985 + i32.const 16987 local.get $6 i32.const 4 i32.shr_u - i32.const 16985 + i32.const 16987 i32.add local.get $8 select @@ -53710,7 +53710,7 @@ local.get $1 i32.store local.get $0 - i32.const 15034 + i32.const 15036 local.get $2 call $_vfprintf drop @@ -60902,7 +60902,7 @@ (func $__ZNKSt3__217bad_function_call4whatEv (type $1) (param $0 i32) (result i32) - i32.const 17037 + i32.const 17039 ) (func $__ZNSt3__212__next_primeEm (type $1) @@ -62839,7 +62839,7 @@ (param $0 i32) (local $1 i32) (local $2 i32) - i32.const 15086 + i32.const 15088 call $_strlen local.tee $2 i32.const 13 @@ -62858,7 +62858,7 @@ i32.const 12 i32.add local.tee $1 - i32.const 15086 + i32.const 15088 local.get $2 i32.const 1 i32.add @@ -63991,7 +63991,7 @@ local.set $0 end ;; $if_0 local.get $0 - i32.const 14255 + i32.const 14257 local.get $1 call $__ZNSt3__211char_traitsIcE4copyEPcPKcm local.get $3 @@ -64038,7 +64038,7 @@ end ;; $if end ;; $loop local.get $0 - i32.const 14255 + i32.const 14257 call $_strlen local.tee $2 local.get $2 @@ -64120,9 +64120,9 @@ i64.ne if $if_0 local.get $1 - i32.const 17242 + i32.const 17244 i32.store - i32.const 17192 + i32.const 17194 local.get $1 call $_abort_message end ;; $if_0 @@ -64187,7 +64187,7 @@ call_indirect $28 (type $1) local.set $0 local.get $4 - i32.const 17242 + i32.const 17244 i32.store local.get $4 local.get $1 @@ -64195,22 +64195,22 @@ local.get $4 local.get $0 i32.store offset=8 - i32.const 17106 + i32.const 17108 local.get $4 call $_abort_message else local.get $3 - i32.const 17242 + i32.const 17244 i32.store local.get $3 local.get $1 i32.store offset=4 - i32.const 17151 + i32.const 17153 local.get $3 call $_abort_message end ;; $if_3 end ;; $if - i32.const 17230 + i32.const 17232 local.get $2 i32.const 1056 i32.add @@ -65175,7 +65175,7 @@ local.get $3 i32.const 24 i32.add - i32.const 17421 + i32.const 17423 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $3 @@ -65249,7 +65249,7 @@ else block $block (result i32) local.get $2 - i32.const 17424 + i32.const 17426 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $2 @@ -65279,7 +65279,7 @@ local.get $2 if $if_4 (result i32) local.get $4 - i32.const 17429 + i32.const 17431 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $4 @@ -65340,7 +65340,7 @@ i32.const 0 else local.get $0 - i32.const 17443 + i32.const 17445 local.get $3 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_11SpecialNameEJRA34_KcRPNS0_4NodeEEEESC_DpOT0_ end ;; $if_9 @@ -65572,7 +65572,7 @@ i32.const 152 i32.add call_indirect $28 (type $8) - i32.const 17381 + i32.const 17383 local.get $1 call $_abort_message ) @@ -65809,7 +65809,7 @@ i32.const 0 i32.store local.get $5 - i32.const 22776 + i32.const 22778 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -66329,7 +66329,7 @@ i32.add i32.store local.get $0 - i32.const 17477 + i32.const 17479 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_35 @@ -66352,7 +66352,7 @@ i32.add i32.store local.get $0 - i32.const 17482 + i32.const 17484 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_33 @@ -66363,7 +66363,7 @@ i32.add i32.store local.get $0 - i32.const 17487 + i32.const 17489 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_32 @@ -66374,7 +66374,7 @@ i32.add i32.store local.get $0 - i32.const 17492 + i32.const 17494 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_31 @@ -66385,7 +66385,7 @@ i32.add i32.store local.get $0 - i32.const 17504 + i32.const 17506 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_30 @@ -66396,7 +66396,7 @@ i32.add i32.store local.get $0 - i32.const 17518 + i32.const 17520 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_29 @@ -66407,7 +66407,7 @@ i32.add i32.store local.get $0 - i32.const 17524 + i32.const 17526 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_28 @@ -66418,7 +66418,7 @@ i32.add i32.store local.get $0 - i32.const 17539 + i32.const 17541 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_27 @@ -66429,7 +66429,7 @@ i32.add i32.store local.get $0 - i32.const 17543 + i32.const 17545 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_26 @@ -66440,7 +66440,7 @@ i32.add i32.store local.get $0 - i32.const 17556 + i32.const 17558 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_25 @@ -66451,7 +66451,7 @@ i32.add i32.store local.get $0 - i32.const 17561 + i32.const 17563 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_24 @@ -66462,7 +66462,7 @@ i32.add i32.store local.get $0 - i32.const 17575 + i32.const 17577 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_23 @@ -66485,7 +66485,7 @@ i32.add i32.store local.get $0 - i32.const 17585 + i32.const 17587 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_21 @@ -66496,7 +66496,7 @@ i32.add i32.store local.get $0 - i32.const 17594 + i32.const 17596 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_20 @@ -66507,7 +66507,7 @@ i32.add i32.store local.get $0 - i32.const 17612 + i32.const 17614 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_19 @@ -66530,7 +66530,7 @@ i32.add i32.store local.get $0 - i32.const 17618 + i32.const 17620 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_17 @@ -66541,7 +66541,7 @@ i32.add i32.store local.get $0 - i32.const 17630 + i32.const 17632 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_16 @@ -66552,7 +66552,7 @@ i32.add i32.store local.get $0 - i32.const 17641 + i32.const 17643 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_15 @@ -66626,7 +66626,7 @@ i32.add i32.store local.get $0 - i32.const 17645 + i32.const 17647 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_53 @@ -66637,7 +66637,7 @@ i32.add i32.store local.get $0 - i32.const 17655 + i32.const 17657 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_52 @@ -66648,7 +66648,7 @@ i32.add i32.store local.get $0 - i32.const 17666 + i32.const 17668 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_51 @@ -66659,7 +66659,7 @@ i32.add i32.store local.get $0 - i32.const 17676 + i32.const 17678 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_50 @@ -66670,7 +66670,7 @@ i32.add i32.store local.get $0 - i32.const 17686 + i32.const 17688 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_49 @@ -66681,7 +66681,7 @@ i32.add i32.store local.get $0 - i32.const 17695 + i32.const 17697 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_48 @@ -66692,7 +66692,7 @@ i32.add i32.store local.get $0 - i32.const 17704 + i32.const 17706 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_47 @@ -66703,7 +66703,7 @@ i32.add i32.store local.get $0 - i32.const 17709 + i32.const 17711 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_46 @@ -66714,7 +66714,7 @@ i32.add i32.store local.get $0 - i32.const 17724 + i32.const 17726 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_45 @@ -67189,7 +67189,7 @@ i32.const 0 i32.store local.get $3 - i32.const 22477 + i32.const 22479 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $3 @@ -67203,14 +67203,14 @@ if $if (result i32) local.get $6 local.get $0 - i32.const 22480 + i32.const 22482 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ i32.store br $block_0 else block $block_1 (result i32) local.get $4 - i32.const 22489 + i32.const 22491 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $4 @@ -67247,7 +67247,7 @@ br $block_0 end ;; $if_0 local.get $5 - i32.const 22492 + i32.const 22494 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $5 @@ -67310,7 +67310,7 @@ br $block end ;; $block_0 local.get $8 - i32.const 22495 + i32.const 22497 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $8 @@ -67366,7 +67366,7 @@ i32.eqz if $if_4 local.get $9 - i32.const 22498 + i32.const 22500 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $9 @@ -67377,7 +67377,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE br_if $block_7 local.get $10 - i32.const 22501 + i32.const 22503 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $10 @@ -67489,7 +67489,7 @@ else block $block (result i32) local.get $5 - i32.const 22292 + i32.const 22294 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -67784,7 +67784,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfEc if $if_2 (result i32) local.get $0 - i32.const 22256 + i32.const 22258 local.get $1 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_13EnclosingExprEJRA10_KcRPNS0_4NodeERA2_S8_EEESC_DpOT0_ else @@ -67822,7 +67822,7 @@ local.get $1 i32.const 8 i32.add - i32.const 22131 + i32.const 22133 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -68211,7 +68211,7 @@ i32.const 24 i32.add local.tee $5 - i32.const 21187 + i32.const 21189 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -68222,12 +68222,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if local.get $1 - i32.const 21190 + i32.const 21192 call $__ZN12_GLOBAL__N_110StringViewC2EPKc else block $block local.get $3 - i32.const 21197 + i32.const 21199 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -68238,12 +68238,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_0 local.get $1 - i32.const 21200 + i32.const 21202 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $if_0 local.get $4 - i32.const 21206 + i32.const 21208 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -68254,7 +68254,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_1 local.get $1 - i32.const 21209 + i32.const 21211 call $__ZN12_GLOBAL__N_110StringViewC2EPKc end ;; $if_1 end ;; $block @@ -68347,7 +68347,7 @@ i32.load8_s offset=362 if $if_2 local.get $0 - i32.const 17704 + i32.const 17706 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $if_2 @@ -69370,7 +69370,7 @@ i32.add call_indirect $28 (type $4) local.get $4 - i32.const 17739 + i32.const 17741 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -69391,7 +69391,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $5 - i32.const 17745 + i32.const 17747 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -69603,7 +69603,7 @@ $block ;; default end ;; $block_5 local.get $4 - i32.const 17889 + i32.const 17891 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -69615,7 +69615,7 @@ br $block end ;; $block_4 local.get $5 - i32.const 17904 + i32.const 17906 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -69627,7 +69627,7 @@ br $block end ;; $block_3 local.get $6 - i32.const 17922 + i32.const 17924 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -69639,7 +69639,7 @@ br $block end ;; $block_2 local.get $7 - i32.const 17934 + i32.const 17936 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -69651,7 +69651,7 @@ br $block end ;; $block_1 local.get $8 - i32.const 17947 + i32.const 17949 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $8 @@ -69663,7 +69663,7 @@ br $block end ;; $block_0 local.get $3 - i32.const 17960 + i32.const 17962 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -69694,32 +69694,32 @@ $block ;; default end ;; $block_5 local.get $0 - i32.const 17834 + i32.const 17836 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_4 local.get $0 - i32.const 17844 + i32.const 17846 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_3 local.get $0 - i32.const 17857 + i32.const 17859 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_2 local.get $0 - i32.const 17864 + i32.const 17866 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_1 local.get $0 - i32.const 17872 + i32.const 17874 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_0 local.get $0 - i32.const 17880 + i32.const 17882 call $__ZN12_GLOBAL__N_110StringViewC2EPKc end ;; $block ) @@ -69748,7 +69748,7 @@ i32.load local.set $1 local.get $2 - i32.const 18030 + i32.const 18032 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -69864,7 +69864,7 @@ i32.load local.set $1 local.get $2 - i32.const 18098 + i32.const 18100 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -70005,7 +70005,7 @@ call $__ZNK12_GLOBAL__N_116itanium_demangle4Node8hasArrayERNS_12OutputStreamE if $if_0 local.get $7 - i32.const 18109 + i32.const 18111 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $7 @@ -70028,7 +70028,7 @@ br $block end ;; $block_0 local.get $8 - i32.const 18111 + i32.const 18113 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $8 @@ -70039,8 +70039,8 @@ call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE end ;; $block local.get $2 + i32.const 18117 i32.const 18115 - i32.const 18113 local.get $6 i32.load select @@ -70131,7 +70131,7 @@ br $block end ;; $block_0 local.get $2 - i32.const 18107 + i32.const 18109 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $5 local.get $2 @@ -70404,7 +70404,7 @@ i32.load offset=8 local.set $0 local.get $8 - i32.const 18182 + i32.const 18184 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $8 @@ -70425,7 +70425,7 @@ local.get $2 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $9 - i32.const 18186 + i32.const 18188 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $9 @@ -70458,7 +70458,7 @@ call $__ZNK12_GLOBAL__N_116itanium_demangle4Node8hasArrayERNS_12OutputStreamE if $if_0 local.get $5 - i32.const 18109 + i32.const 18111 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -70483,7 +70483,7 @@ br $block_1 end ;; $block_2 local.get $6 - i32.const 18111 + i32.const 18113 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -70494,7 +70494,7 @@ call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE end ;; $block_1 local.get $7 - i32.const 18180 + i32.const 18182 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -70558,7 +70558,7 @@ br $block_1 end ;; $block_2 local.get $3 - i32.const 18107 + i32.const 18109 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $4 local.get $3 @@ -70614,7 +70614,7 @@ i64.load offset=8 align=4 i64.store align=4 local.get $1 - i32.const 18168 + i32.const 18170 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -71256,7 +71256,7 @@ local.get $2 i32.const 16 i32.add - i32.const 18293 + i32.const 18295 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -71290,7 +71290,7 @@ i32.eq if $if_0 local.get $4 - i32.const 18109 + i32.const 18111 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -71301,7 +71301,7 @@ call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE end ;; $if_0 local.get $2 - i32.const 18186 + i32.const 18188 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -71348,7 +71348,7 @@ i32.eqz if $if_0 local.get $2 - i32.const 18295 + i32.const 18297 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $4 local.get $2 @@ -72100,7 +72100,7 @@ local.get $3 i32.const 328 i32.add - i32.const 18824 + i32.const 18826 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -72252,7 +72252,7 @@ i32.add i32.store local.get $6 - i32.const 18115 + i32.const 18117 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -72269,7 +72269,7 @@ i32.add i32.store local.get $7 - i32.const 18113 + i32.const 18115 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -72286,7 +72286,7 @@ i32.add i32.store local.get $8 - i32.const 18113 + i32.const 18115 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $8 @@ -72303,7 +72303,7 @@ i32.add i32.store local.get $9 - i32.const 18827 + i32.const 18829 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $9 @@ -72320,7 +72320,7 @@ i32.add i32.store local.get $10 - i32.const 18830 + i32.const 18832 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $10 @@ -72344,7 +72344,7 @@ local.get $1 if $if_2 (result i32) local.get $0 - i32.const 18832 + i32.const 18834 local.get $2 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_13EnclosingExprEJRA10_KcRPNS0_4NodeERA2_S8_EEESC_DpOT0_ else @@ -72365,7 +72365,7 @@ local.get $1 if $if_3 (result i32) local.get $0 - i32.const 18832 + i32.const 18834 local.get $2 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_13EnclosingExprEJRA10_KcRPNS0_4NodeERA2_S8_EEESC_DpOT0_ else @@ -72495,7 +72495,7 @@ i32.add i32.store local.get $11 - i32.const 18842 + i32.const 18844 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $11 @@ -72512,7 +72512,7 @@ i32.add i32.store local.get $12 - i32.const 18844 + i32.const 18846 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $12 @@ -72614,7 +72614,7 @@ i32.add i32.store local.get $13 - i32.const 18180 + i32.const 18182 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $13 @@ -72675,7 +72675,7 @@ if $if_12 (result i32) local.get $0 local.get $2 - i32.const 18846 + i32.const 18848 local.get $4 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_10MemberExprEJRPNS0_4NodeERA3_KcSA_EEES9_DpOT0_ else @@ -72725,7 +72725,7 @@ i32.add i32.store local.get $14 - i32.const 18849 + i32.const 18851 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $14 @@ -72742,7 +72742,7 @@ i32.add i32.store local.get $15 - i32.const 18851 + i32.const 18853 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $15 @@ -72776,7 +72776,7 @@ i32.add i32.store local.get $16 - i32.const 18854 + i32.const 18856 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $16 @@ -72793,7 +72793,7 @@ i32.add i32.store local.get $17 - i32.const 18856 + i32.const 18858 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $17 @@ -72810,7 +72810,7 @@ i32.add i32.store local.get $18 - i32.const 18859 + i32.const 18861 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $18 @@ -72841,7 +72841,7 @@ i32.add i32.store local.get $19 - i32.const 18862 + i32.const 18864 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $19 @@ -72858,7 +72858,7 @@ i32.add i32.store local.get $20 - i32.const 18186 + i32.const 18188 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $20 @@ -72998,7 +72998,7 @@ i32.add i32.store local.get $21 - i32.const 18865 + i32.const 18867 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $21 @@ -73015,7 +73015,7 @@ i32.add i32.store local.get $22 - i32.const 18868 + i32.const 18870 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $22 @@ -73032,7 +73032,7 @@ i32.add i32.store local.get $23 - i32.const 18871 + i32.const 18873 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $23 @@ -73049,7 +73049,7 @@ i32.add i32.store local.get $24 - i32.const 18293 + i32.const 18295 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $24 @@ -73085,7 +73085,7 @@ i32.add i32.store local.get $25 - i32.const 18714 + i32.const 18716 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $25 @@ -73102,7 +73102,7 @@ i32.add i32.store local.get $26 - i32.const 18875 + i32.const 18877 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $26 @@ -73119,7 +73119,7 @@ i32.add i32.store local.get $27 - i32.const 18180 + i32.const 18182 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $27 @@ -73136,7 +73136,7 @@ i32.add i32.store local.get $28 - i32.const 18878 + i32.const 18880 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $28 @@ -73157,7 +73157,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfEc if $if_17 local.get $29 - i32.const 18881 + i32.const 18883 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $29 @@ -73177,7 +73177,7 @@ if $if_18 (result i32) local.get $0 local.get $2 - i32.const 18881 + i32.const 18883 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_11PostfixExprEJRPNS0_4NodeERA3_KcEEES9_DpOT0_ else i32.const 0 @@ -73212,7 +73212,7 @@ i32.add i32.store local.get $30 - i32.const 18884 + i32.const 18886 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $30 @@ -73229,7 +73229,7 @@ i32.add i32.store local.get $31 - i32.const 18714 + i32.const 18716 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $31 @@ -73246,7 +73246,7 @@ i32.add i32.store local.get $32 - i32.const 18887 + i32.const 18889 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $32 @@ -73307,7 +73307,7 @@ i32.add i32.store local.get $33 - i32.const 18889 + i32.const 18891 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $33 @@ -73324,7 +73324,7 @@ i32.add i32.store local.get $34 - i32.const 18892 + i32.const 18894 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $34 @@ -73341,7 +73341,7 @@ i32.add i32.store local.get $35 - i32.const 18894 + i32.const 18896 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $35 @@ -73378,7 +73378,7 @@ i32.add i32.store local.get $36 - i32.const 18897 + i32.const 18899 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $36 @@ -73395,7 +73395,7 @@ i32.add i32.store local.get $37 - i32.const 18901 + i32.const 18903 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $37 @@ -73412,7 +73412,7 @@ i32.add i32.store local.get $38 - i32.const 18903 + i32.const 18905 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $38 @@ -73433,7 +73433,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfEc if $if_20 local.get $39 - i32.const 18906 + i32.const 18908 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $39 @@ -73453,7 +73453,7 @@ if $if_21 (result i32) local.get $0 local.get $2 - i32.const 18906 + i32.const 18908 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_11PostfixExprEJRPNS0_4NodeERA3_KcEEES9_DpOT0_ else i32.const 0 @@ -73466,7 +73466,7 @@ i32.add i32.store local.get $40 - i32.const 18901 + i32.const 18903 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $40 @@ -73498,7 +73498,7 @@ if $if_23 (result i32) local.get $0 local.get $2 - i32.const 18909 + i32.const 18911 local.get $4 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_10MemberExprEJRPNS0_4NodeERA3_KcSA_EEES9_DpOT0_ else @@ -73625,7 +73625,7 @@ i32.add i32.store local.get $41 - i32.const 18912 + i32.const 18914 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $41 @@ -73642,7 +73642,7 @@ i32.add i32.store local.get $42 - i32.const 18914 + i32.const 18916 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $42 @@ -73659,7 +73659,7 @@ i32.add i32.store local.get $43 - i32.const 18917 + i32.const 18919 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $43 @@ -73676,7 +73676,7 @@ i32.add i32.store local.get $44 - i32.const 18920 + i32.const 18922 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $44 @@ -73778,7 +73778,7 @@ local.get $1 if $if_32 (result i32) local.get $0 - i32.const 18924 + i32.const 18926 local.get $2 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_13EnclosingExprEJRA10_KcRPNS0_4NodeERA2_S8_EEESC_DpOT0_ else @@ -73799,7 +73799,7 @@ local.get $1 if $if_33 (result i32) local.get $0 - i32.const 18924 + i32.const 18926 local.get $2 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_13EnclosingExprEJRA10_KcRPNS0_4NodeERA2_S8_EEESC_DpOT0_ else @@ -73963,7 +73963,7 @@ local.get $1 if $if_37 (result i32) local.get $0 - i32.const 18933 + i32.const 18935 local.get $2 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_13EnclosingExprEJRA10_KcRPNS0_4NodeERA2_S8_EEESC_DpOT0_ else @@ -73984,7 +73984,7 @@ local.get $1 if $if_38 (result i32) local.get $0 - i32.const 18933 + i32.const 18935 local.get $2 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_13EnclosingExprEJRA10_KcRPNS0_4NodeERA2_S8_EEESC_DpOT0_ else @@ -74063,7 +74063,7 @@ i32.add i32.store local.get $0 - i32.const 18942 + i32.const 18944 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ br $block end ;; $block_111 @@ -74268,7 +74268,7 @@ i32.add i32.store local.get $3 - i32.const 18397 + i32.const 18399 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $3 @@ -74280,7 +74280,7 @@ br $block end ;; $block_18 local.get $4 - i32.const 18405 + i32.const 18407 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $4 @@ -74299,7 +74299,7 @@ br $block end ;; $if_1 local.get $5 - i32.const 18409 + i32.const 18411 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $5 @@ -74327,7 +74327,7 @@ i32.add i32.store local.get $6 - i32.const 17487 + i32.const 17489 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $6 @@ -74345,7 +74345,7 @@ i32.add i32.store local.get $7 - i32.const 17492 + i32.const 17494 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $7 @@ -74363,7 +74363,7 @@ i32.add i32.store local.get $8 - i32.const 17504 + i32.const 17506 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $8 @@ -74381,7 +74381,7 @@ i32.add i32.store local.get $9 - i32.const 17518 + i32.const 17520 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $9 @@ -74399,7 +74399,7 @@ i32.add i32.store local.get $10 - i32.const 17524 + i32.const 17526 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $10 @@ -74435,7 +74435,7 @@ i32.add i32.store local.get $12 - i32.const 18413 + i32.const 18415 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $12 @@ -74453,7 +74453,7 @@ i32.add i32.store local.get $13 - i32.const 18415 + i32.const 18417 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $13 @@ -74471,7 +74471,7 @@ i32.add i32.store local.get $14 - i32.const 18417 + i32.const 18419 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $14 @@ -74489,7 +74489,7 @@ i32.add i32.store local.get $15 - i32.const 18420 + i32.const 18422 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $15 @@ -74507,7 +74507,7 @@ i32.add i32.store local.get $16 - i32.const 18423 + i32.const 18425 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $16 @@ -74525,7 +74525,7 @@ i32.add i32.store local.get $17 - i32.const 17585 + i32.const 17587 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $17 @@ -74543,7 +74543,7 @@ i32.add i32.store local.get $18 - i32.const 17594 + i32.const 17596 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $18 @@ -74585,7 +74585,7 @@ br $block end ;; $block_1 local.get $19 - i32.const 17421 + i32.const 17423 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $19 @@ -75129,7 +75129,7 @@ i32.const 16 i32.add local.tee $5 - i32.const 18111 + i32.const 18113 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -75143,7 +75143,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 18107 + i32.const 18109 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -75370,7 +75370,7 @@ f64.store local.get $2 i32.const 40 - i32.const 18479 + i32.const 18481 local.get $5 call $_snprintf local.get $2 @@ -75592,7 +75592,7 @@ f64.store local.get $2 i32.const 32 - i32.const 18540 + i32.const 18542 local.get $4 call $_snprintf local.get $2 @@ -75812,7 +75812,7 @@ f64.store local.get $2 i32.const 24 - i32.const 18599 + i32.const 18601 local.get $4 call $_snprintf local.get $2 @@ -75878,11 +75878,11 @@ i32.load8_s offset=8 if $if local.get $2 - i32.const 18659 + i32.const 18661 call $__ZN12_GLOBAL__N_110StringViewC2EPKc else local.get $2 - i32.const 18664 + i32.const 18666 call $__ZN12_GLOBAL__N_110StringViewC2EPKc end ;; $if local.get $2 @@ -76017,7 +76017,7 @@ i32.gt_u if $if local.get $4 - i32.const 18111 + i32.const 18113 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -76038,7 +76038,7 @@ local.get $2 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $5 - i32.const 18107 + i32.const 18109 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -76066,7 +76066,7 @@ i32.eq if $if_0 local.get $4 - i32.const 18714 + i32.const 18716 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -76229,7 +76229,7 @@ local.get $2 i32.const 8 i32.add - i32.const 21070 + i32.const 21072 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $2 @@ -76258,7 +76258,7 @@ end ;; $if_0 else local.get $2 - i32.const 21073 + i32.const 21075 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $2 @@ -76556,7 +76556,7 @@ i32.const 0 i32.store offset=4 local.get $3 - i32.const 20923 + i32.const 20925 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $3 @@ -76569,13 +76569,13 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_1 local.get $1 - i32.const 18115 + i32.const 18117 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 else block $block_5 local.get $4 - i32.const 20926 + i32.const 20928 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $4 @@ -76586,12 +76586,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_2 local.get $1 - i32.const 18113 + i32.const 18115 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_2 local.get $8 - i32.const 20929 + i32.const 20931 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $8 @@ -76602,12 +76602,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_3 local.get $1 - i32.const 18827 + i32.const 18829 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_3 local.get $9 - i32.const 20932 + i32.const 20934 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $9 @@ -76618,12 +76618,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_4 local.get $1 - i32.const 18830 + i32.const 18832 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_4 local.get $10 - i32.const 20935 + i32.const 20937 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $10 @@ -76634,12 +76634,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_5 local.get $1 - i32.const 18842 + i32.const 18844 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_5 local.get $11 - i32.const 20938 + i32.const 20940 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $11 @@ -76650,12 +76650,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_6 local.get $1 - i32.const 18846 + i32.const 18848 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_6 local.get $12 - i32.const 20941 + i32.const 20943 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $12 @@ -76666,12 +76666,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_7 local.get $1 - i32.const 18849 + i32.const 18851 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_7 local.get $13 - i32.const 20944 + i32.const 20946 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $13 @@ -76682,12 +76682,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_8 local.get $1 - i32.const 18851 + i32.const 18853 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_8 local.get $14 - i32.const 20947 + i32.const 20949 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $14 @@ -76698,12 +76698,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_9 local.get $1 - i32.const 18854 + i32.const 18856 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_9 local.get $15 - i32.const 20950 + i32.const 20952 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $15 @@ -76714,12 +76714,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_10 local.get $1 - i32.const 18856 + i32.const 18858 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_10 local.get $16 - i32.const 20953 + i32.const 20955 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $16 @@ -76730,12 +76730,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_11 local.get $1 - i32.const 18859 + i32.const 18861 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_11 local.get $17 - i32.const 20956 + i32.const 20958 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $17 @@ -76746,12 +76746,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_12 local.get $1 - i32.const 18862 + i32.const 18864 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_12 local.get $18 - i32.const 20959 + i32.const 20961 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $18 @@ -76762,12 +76762,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_13 local.get $1 - i32.const 18186 + i32.const 18188 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_13 local.get $19 - i32.const 20962 + i32.const 20964 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $19 @@ -76778,12 +76778,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_14 local.get $1 - i32.const 18865 + i32.const 18867 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_14 local.get $20 - i32.const 20965 + i32.const 20967 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $20 @@ -76794,12 +76794,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_15 local.get $1 - i32.const 18868 + i32.const 18870 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_15 local.get $21 - i32.const 20968 + i32.const 20970 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $21 @@ -76810,12 +76810,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_16 local.get $1 - i32.const 18871 + i32.const 18873 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_16 local.get $22 - i32.const 20971 + i32.const 20973 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $22 @@ -76826,12 +76826,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_17 local.get $1 - i32.const 18293 + i32.const 18295 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_17 local.get $23 - i32.const 20974 + i32.const 20976 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $23 @@ -76842,12 +76842,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_18 local.get $1 - i32.const 18714 + i32.const 18716 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_18 local.get $24 - i32.const 20977 + i32.const 20979 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $24 @@ -76858,12 +76858,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_19 local.get $1 - i32.const 18875 + i32.const 18877 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_19 local.get $25 - i32.const 20980 + i32.const 20982 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $25 @@ -76874,12 +76874,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_20 local.get $1 - i32.const 18180 + i32.const 18182 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_20 local.get $26 - i32.const 20983 + i32.const 20985 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $26 @@ -76890,12 +76890,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_21 local.get $1 - i32.const 18878 + i32.const 18880 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_21 local.get $27 - i32.const 20986 + i32.const 20988 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $27 @@ -76906,12 +76906,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_22 local.get $1 - i32.const 18884 + i32.const 18886 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_22 local.get $28 - i32.const 20989 + i32.const 20991 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $28 @@ -76922,12 +76922,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_23 local.get $1 - i32.const 18889 + i32.const 18891 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_23 local.get $29 - i32.const 20992 + i32.const 20994 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $29 @@ -76938,12 +76938,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_24 local.get $1 - i32.const 18892 + i32.const 18894 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_24 local.get $30 - i32.const 20995 + i32.const 20997 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $30 @@ -76954,12 +76954,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_25 local.get $1 - i32.const 18894 + i32.const 18896 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_25 local.get $31 - i32.const 20998 + i32.const 21000 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $31 @@ -76970,12 +76970,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_26 local.get $1 - i32.const 18901 + i32.const 18903 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_26 local.get $32 - i32.const 21001 + i32.const 21003 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $32 @@ -76986,12 +76986,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_27 local.get $1 - i32.const 18903 + i32.const 18905 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_27 local.get $33 - i32.const 21004 + i32.const 21006 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $33 @@ -77002,12 +77002,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_28 local.get $1 - i32.const 18912 + i32.const 18914 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_28 local.get $34 - i32.const 21007 + i32.const 21009 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $34 @@ -77018,12 +77018,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_29 local.get $1 - i32.const 18914 + i32.const 18916 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_29 local.get $35 - i32.const 21010 + i32.const 21012 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $35 @@ -77034,12 +77034,12 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE if $if_30 local.get $1 - i32.const 18917 + i32.const 18919 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $if_30 local.get $36 - i32.const 21013 + i32.const 21015 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $36 @@ -77055,7 +77055,7 @@ br $block_5 end ;; $if_31 local.get $1 - i32.const 18920 + i32.const 18922 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block_4 end ;; $block_5 @@ -77256,7 +77256,7 @@ local.get $2 i32.const 16 i32.add - i32.const 20711 + i32.const 20713 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -77434,7 +77434,7 @@ local.get $4 i32.const 24 i32.add - i32.const 19850 + i32.const 19852 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -77541,7 +77541,7 @@ end ;; $if_0 else local.get $1 - i32.const 18824 + i32.const 18826 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -77552,7 +77552,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE local.set $5 local.get $4 - i32.const 19854 + i32.const 19856 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -78016,7 +78016,7 @@ local.get $2 i32.const 40 i32.add - i32.const 18824 + i32.const 18826 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $2 @@ -78050,7 +78050,7 @@ i32.eq i32.store8 local.get $4 - i32.const 19438 + i32.const 19440 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $4 @@ -78063,7 +78063,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE br_if $block_0 local.get $3 - i32.const 19441 + i32.const 19443 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $3 @@ -78128,7 +78128,7 @@ if $if_1 (result i32) block $block_3 (result i32) local.get $5 - i32.const 19444 + i32.const 19446 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $5 @@ -78283,7 +78283,7 @@ i32.add local.set $3 local.get $2 - i32.const 18948 + i32.const 18950 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -78478,13 +78478,13 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $5 - i32.const 19099 + i32.const 19101 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load local.set $1 local.get $2 - i32.const 18107 + i32.const 18109 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $4 local.get $5 @@ -78646,7 +78646,7 @@ i32.const 24 i32.add local.tee $5 - i32.const 19161 + i32.const 19163 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -78663,7 +78663,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle22ParameterPackExpansion9printLeftERNS_12OutputStreamE local.get $2 - i32.const 18107 + i32.const 18109 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -78785,7 +78785,7 @@ $block_0 ;; default end ;; $block_2 local.get $8 - i32.const 17641 + i32.const 17643 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $5 local.get $8 @@ -78809,7 +78809,7 @@ i32.ge_u br_if $block local.get $2 - i32.const 18295 + i32.const 18297 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $5 local.get $2 @@ -78894,7 +78894,7 @@ i32.load local.set $1 local.get $3 - i32.const 18107 + i32.const 18109 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $5 local.get $6 @@ -78936,7 +78936,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $3 - i32.const 19287 + i32.const 19289 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -79035,7 +79035,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $4 - i32.const 18293 + i32.const 18295 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -79059,7 +79059,7 @@ i32.add call_indirect $28 (type $4) local.get $5 - i32.const 19299 + i32.const 19301 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -79083,7 +79083,7 @@ i32.add call_indirect $28 (type $4) local.get $6 - i32.const 18107 + i32.const 18109 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $6 @@ -79118,7 +79118,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $3 - i32.const 19346 + i32.const 19348 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -79204,7 +79204,7 @@ i32.const 24 i32.add local.tee $6 - i32.const 18111 + i32.const 18113 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -79218,7 +79218,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 19363 + i32.const 19365 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -79232,7 +79232,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $5 - i32.const 19369 + i32.const 19371 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -79246,7 +79246,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $3 - i32.const 18107 + i32.const 18109 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -79290,13 +79290,13 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $5 - i32.const 19427 + i32.const 19429 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load local.set $1 local.get $2 - i32.const 18107 + i32.const 18109 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $4 local.get $5 @@ -79461,7 +79461,7 @@ i32.load8_s offset=28 if $if local.get $4 - i32.const 19447 + i32.const 19449 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -79490,7 +79490,7 @@ local.get $3 i32.const 40 i32.add - i32.const 19459 + i32.const 19461 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -79503,7 +79503,7 @@ i32.load8_s offset=29 if $if_0 local.get $4 - i32.const 19463 + i32.const 19465 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -79523,7 +79523,7 @@ i32.load offset=4 if $if_1 local.get $5 - i32.const 18111 + i32.const 18113 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -79536,7 +79536,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle9NodeArray14printWithCommaERNS_12OutputStreamE local.get $6 - i32.const 18107 + i32.const 18109 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -79557,7 +79557,7 @@ i32.load offset=4 if $if_2 local.get $7 - i32.const 18111 + i32.const 18113 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -79570,7 +79570,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle9NodeArray14printWithCommaERNS_12OutputStreamE local.get $3 - i32.const 18107 + i32.const 18109 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -79755,7 +79755,7 @@ i32.add i32.store local.get $1 - i32.const 19666 + i32.const 19668 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $4 local.get $1 @@ -79870,7 +79870,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 19557 + i32.const 19559 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -79902,7 +79902,7 @@ i32.ge_s if $if (result i32) local.get $2 - i32.const 19563 + i32.const 19565 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -80012,7 +80012,7 @@ i32.ge_s if $if_0 (result i32) local.get $2 - i32.const 19563 + i32.const 19565 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -80215,7 +80215,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $1 - i32.const 19677 + i32.const 19679 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -80348,7 +80348,7 @@ i32.const 16 i32.add local.tee $5 - i32.const 18111 + i32.const 18113 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -80362,7 +80362,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 19743 + i32.const 19745 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -80376,7 +80376,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $2 - i32.const 17745 + i32.const 17747 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -80414,7 +80414,7 @@ i32.load local.set $1 local.get $3 - i32.const 19801 + i32.const 19803 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 i32.load @@ -80778,7 +80778,7 @@ else block $block (result i32) local.get $1 - i32.const 19916 + i32.const 19918 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $1 @@ -80793,7 +80793,7 @@ br $block end ;; $if_1 local.get $4 - i32.const 19919 + i32.const 19921 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -80917,7 +80917,7 @@ i32.add local.set $3 local.get $2 - i32.const 19857 + i32.const 19859 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -81097,7 +81097,7 @@ i32.add i32.store local.get $0 - i32.const 19922 + i32.const 19924 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81109,7 +81109,7 @@ i32.add i32.store local.get $0 - i32.const 19933 + i32.const 19935 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81121,7 +81121,7 @@ i32.add i32.store local.get $0 - i32.const 19943 + i32.const 19945 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81133,7 +81133,7 @@ i32.add i32.store local.get $0 - i32.const 19954 + i32.const 19956 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81178,7 +81178,7 @@ i32.add i32.store local.get $0 - i32.const 19964 + i32.const 19966 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81190,7 +81190,7 @@ i32.add i32.store local.get $0 - i32.const 19975 + i32.const 19977 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81202,7 +81202,7 @@ i32.add i32.store local.get $0 - i32.const 19985 + i32.const 19987 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81337,7 +81337,7 @@ i32.add i32.store local.get $0 - i32.const 19995 + i32.const 19997 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81349,7 +81349,7 @@ i32.add i32.store local.get $0 - i32.const 20013 + i32.const 20015 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81374,7 +81374,7 @@ i32.add i32.store local.get $0 - i32.const 20023 + i32.const 20025 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81386,7 +81386,7 @@ i32.add i32.store local.get $0 - i32.const 20033 + i32.const 20035 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81432,7 +81432,7 @@ i32.add i32.store local.get $0 - i32.const 20044 + i32.const 20046 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81444,7 +81444,7 @@ i32.add i32.store local.get $0 - i32.const 20054 + i32.const 20056 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81456,7 +81456,7 @@ i32.add i32.store local.get $0 - i32.const 20065 + i32.const 20067 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81499,7 +81499,7 @@ i32.add i32.store local.get $0 - i32.const 20076 + i32.const 20078 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81511,7 +81511,7 @@ i32.add i32.store local.get $0 - i32.const 20087 + i32.const 20089 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81546,7 +81546,7 @@ i32.add i32.store local.get $0 - i32.const 20097 + i32.const 20099 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ else i32.const 0 @@ -81593,7 +81593,7 @@ i32.add i32.store local.get $0 - i32.const 20108 + i32.const 20110 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81629,7 +81629,7 @@ i32.add i32.store local.get $0 - i32.const 20119 + i32.const 20121 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81641,7 +81641,7 @@ i32.add i32.store local.get $0 - i32.const 20130 + i32.const 20132 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81653,7 +81653,7 @@ i32.add i32.store local.get $0 - i32.const 20142 + i32.const 20144 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81701,7 +81701,7 @@ i32.add i32.store local.get $0 - i32.const 20152 + i32.const 20154 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81713,7 +81713,7 @@ i32.add i32.store local.get $0 - i32.const 20162 + i32.const 20164 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81725,7 +81725,7 @@ i32.add i32.store local.get $0 - i32.const 20013 + i32.const 20015 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81737,7 +81737,7 @@ i32.add i32.store local.get $0 - i32.const 20173 + i32.const 20175 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81749,7 +81749,7 @@ i32.add i32.store local.get $0 - i32.const 20184 + i32.const 20186 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81796,7 +81796,7 @@ i32.add i32.store local.get $0 - i32.const 20195 + i32.const 20197 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81808,7 +81808,7 @@ i32.add i32.store local.get $0 - i32.const 20210 + i32.const 20212 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81820,7 +81820,7 @@ i32.add i32.store local.get $0 - i32.const 20152 + i32.const 20154 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81832,7 +81832,7 @@ i32.add i32.store local.get $0 - i32.const 20221 + i32.const 20223 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81844,7 +81844,7 @@ i32.add i32.store local.get $0 - i32.const 20231 + i32.const 20233 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81890,7 +81890,7 @@ i32.add i32.store local.get $0 - i32.const 20244 + i32.const 20246 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81902,7 +81902,7 @@ i32.add i32.store local.get $0 - i32.const 20255 + i32.const 20257 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81914,7 +81914,7 @@ i32.add i32.store local.get $0 - i32.const 20265 + i32.const 20267 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81963,7 +81963,7 @@ i32.add i32.store local.get $0 - i32.const 20276 + i32.const 20278 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81975,7 +81975,7 @@ i32.add i32.store local.get $0 - i32.const 20288 + i32.const 20290 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81987,7 +81987,7 @@ i32.add i32.store local.get $0 - i32.const 20298 + i32.const 20300 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -81999,7 +81999,7 @@ i32.add i32.store local.get $0 - i32.const 20309 + i32.const 20311 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82011,7 +82011,7 @@ i32.add i32.store local.get $0 - i32.const 20288 + i32.const 20290 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82023,7 +82023,7 @@ i32.add i32.store local.get $0 - i32.const 20320 + i32.const 20322 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82058,7 +82058,7 @@ i32.add i32.store local.get $0 - i32.const 20331 + i32.const 20333 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ else i32.const 0 @@ -82104,7 +82104,7 @@ i32.add i32.store local.get $0 - i32.const 20341 + i32.const 20343 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82116,7 +82116,7 @@ i32.add i32.store local.get $0 - i32.const 20351 + i32.const 20353 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82128,7 +82128,7 @@ i32.add i32.store local.get $0 - i32.const 20362 + i32.const 20364 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82140,7 +82140,7 @@ i32.add i32.store local.get $0 - i32.const 20373 + i32.const 20375 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ local.set $0 br $block @@ -82175,7 +82175,7 @@ i32.add i32.store local.get $0 - i32.const 20385 + i32.const 20387 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ else i32.const 0 @@ -82308,7 +82308,7 @@ i32.add local.set $3 local.get $2 - i32.const 20397 + i32.const 20399 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -82345,7 +82345,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $1 - i32.const 20461 + i32.const 20463 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -82401,7 +82401,7 @@ i32.add local.set $3 local.get $2 - i32.const 20477 + i32.const 20479 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -82471,7 +82471,7 @@ i32.add local.set $3 local.get $2 - i32.const 18844 + i32.const 18846 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -82548,7 +82548,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $2 - i32.const 19857 + i32.const 19859 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -82607,7 +82607,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $3 - i32.const 20640 + i32.const 20642 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -82715,7 +82715,7 @@ i32.load8_s offset=12 if $if local.get $4 - i32.const 19857 + i32.const 19859 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -82729,7 +82729,7 @@ i32.const 8 i32.add local.tee $4 - i32.const 20653 + i32.const 20655 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -82742,7 +82742,7 @@ i32.load8_s offset=13 if $if_0 local.get $2 - i32.const 20660 + i32.const 20662 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -82857,7 +82857,7 @@ i32.const 16 i32.add local.tee $5 - i32.const 18111 + i32.const 18113 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -82871,7 +82871,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 20714 + i32.const 20716 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -82886,7 +82886,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle9NodeArray14printWithCommaERNS_12OutputStreamE local.get $2 - i32.const 18107 + i32.const 18109 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -82996,7 +82996,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 18111 + i32.const 18113 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -83011,7 +83011,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle9NodeArray14printWithCommaERNS_12OutputStreamE local.get $2 - i32.const 18107 + i32.const 18109 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -83046,7 +83046,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $3 - i32.const 20812 + i32.const 20814 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -83176,7 +83176,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $4 - i32.const 18111 + i32.const 18113 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -83190,7 +83190,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $5 - i32.const 18107 + i32.const 18109 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -83334,14 +83334,14 @@ i32.const 56 i32.add local.tee $2 - i32.const 18186 + i32.const 18188 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $4 local.get $2 call $__ZN12_GLOBAL__N_1eqERKNS_10StringViewES2_ if $if local.get $5 - i32.const 18111 + i32.const 18113 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -83352,7 +83352,7 @@ call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE end ;; $if local.get $6 - i32.const 18111 + i32.const 18113 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -83366,7 +83366,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $7 - i32.const 20870 + i32.const 20872 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -83387,7 +83387,7 @@ local.get $2 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $8 - i32.const 20873 + i32.const 20875 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $8 @@ -83401,7 +83401,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $9 - i32.const 18107 + i32.const 18109 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $9 @@ -83411,14 +83411,14 @@ local.get $2 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $2 - i32.const 18186 + i32.const 18188 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $4 local.get $2 call $__ZN12_GLOBAL__N_1eqERKNS_10StringViewES2_ if $if_0 local.get $10 - i32.const 18107 + i32.const 18109 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $10 @@ -83601,7 +83601,7 @@ local.set $0 end ;; $if_0 local.get $6 - i32.const 21016 + i32.const 21018 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $6 @@ -83644,7 +83644,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $4 - i32.const 21021 + i32.const 21023 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -83854,7 +83854,7 @@ i32.const 8 i32.add local.tee $4 - i32.const 21070 + i32.const 21072 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -84671,7 +84671,7 @@ local.get $8 i32.store offset=8 local.get $4 - i32.const 21277 + i32.const 21279 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $6 local.get $4 @@ -84683,7 +84683,7 @@ if $if_4 local.get $2 local.get $0 - i32.const 21595 + i32.const 21597 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ i32.store end ;; $if_4 @@ -85003,7 +85003,7 @@ i32.store local.get $2 local.get $0 - i32.const 21535 + i32.const 21537 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_8NameTypeEJRA5_KcEEEPNS0_4NodeEDpOT0_ i32.store local.get $0 @@ -85102,7 +85102,7 @@ local.get $2 i32.const 8 i32.add - i32.const 21273 + i32.const 21275 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -85115,7 +85115,7 @@ call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E9consumeIfENS_10StringViewE br_if $block_0 local.get $2 - i32.const 21277 + i32.const 21279 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -85218,7 +85218,7 @@ br $block_1 end ;; $if_1 local.get $4 - i32.const 21339 + i32.const 21341 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -85358,7 +85358,7 @@ i32.add local.set $3 local.get $2 - i32.const 21280 + i32.const 21282 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -85409,7 +85409,7 @@ local.get $2 i32.const 32 i32.add - i32.const 21400 + i32.const 21402 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $2 @@ -85438,7 +85438,7 @@ local.set $0 else local.get $5 - i32.const 21403 + i32.const 21405 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $5 @@ -85470,7 +85470,7 @@ i32.const 1 i32.store8 offset=362 local.get $4 - i32.const 21406 + i32.const 21408 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 local.get $4 @@ -85739,7 +85739,7 @@ i32.const 24 i32.add local.tee $6 - i32.const 21409 + i32.const 21411 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -85760,7 +85760,7 @@ local.get $2 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $4 - i32.const 21417 + i32.const 21419 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -85775,7 +85775,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle9NodeArray14printWithCommaERNS_12OutputStreamE local.get $5 - i32.const 18107 + i32.const 18109 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -85863,7 +85863,7 @@ i32.const 16 i32.add local.tee $5 - i32.const 21472 + i32.const 21474 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -85884,7 +85884,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $4 - i32.const 21481 + i32.const 21483 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -86428,7 +86428,7 @@ i32.load8_s offset=12 if $if local.get $4 - i32.const 18844 + i32.const 18846 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -86554,7 +86554,7 @@ $block ;; default end ;; $block_5 local.get $4 - i32.const 17889 + i32.const 17891 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -86566,7 +86566,7 @@ br $block end ;; $block_4 local.get $5 - i32.const 17904 + i32.const 17906 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -86578,7 +86578,7 @@ br $block end ;; $block_3 local.get $6 - i32.const 21691 + i32.const 21693 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -86590,7 +86590,7 @@ br $block end ;; $block_2 local.get $7 - i32.const 21762 + i32.const 21764 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -86602,7 +86602,7 @@ br $block end ;; $block_1 local.get $8 - i32.const 21812 + i32.const 21814 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $8 @@ -86614,7 +86614,7 @@ br $block end ;; $block_0 local.get $3 - i32.const 21862 + i32.const 21864 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -86645,32 +86645,32 @@ $block ;; default end ;; $block_5 local.get $0 - i32.const 17834 + i32.const 17836 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_4 local.get $0 - i32.const 17844 + i32.const 17846 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_3 local.get $0 - i32.const 17844 + i32.const 17846 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_2 local.get $0 - i32.const 21648 + i32.const 21650 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_1 local.get $0 - i32.const 21662 + i32.const 21664 call $__ZN12_GLOBAL__N_110StringViewC2EPKc br $block end ;; $block_0 local.get $0 - i32.const 21676 + i32.const 21678 call $__ZN12_GLOBAL__N_110StringViewC2EPKc end ;; $block ) @@ -86803,7 +86803,7 @@ call $__ZNK12_GLOBAL__N_116itanium_demangle4Node11hasFunctionERNS_12OutputStreamE br_if $block_0 local.get $5 - i32.const 18109 + i32.const 18111 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -86815,7 +86815,7 @@ br $block end ;; $block_0 local.get $4 - i32.const 18111 + i32.const 18113 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -86830,7 +86830,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $2 - i32.const 22024 + i32.const 22026 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -86873,7 +86873,7 @@ br $block end ;; $block_0 local.get $2 - i32.const 18107 + i32.const 18109 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -87070,7 +87070,7 @@ i32.ne if $if_0 local.get $4 - i32.const 18109 + i32.const 18111 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -87087,7 +87087,7 @@ local.get $3 i32.const 16 i32.add - i32.const 22084 + i32.const 22086 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -87144,7 +87144,7 @@ end ;; $if_4 end ;; $if_2 local.get $3 - i32.const 17745 + i32.const 17747 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -87285,7 +87285,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 22134 + i32.const 22136 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -87342,7 +87342,7 @@ end ;; $if_2 end ;; $if_0 local.get $2 - i32.const 17745 + i32.const 17747 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -87490,7 +87490,7 @@ local.get $2 i32.const 16 i32.add - i32.const 22190 + i32.const 22192 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -87517,7 +87517,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $2 - i32.const 17745 + i32.const 17747 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -87621,7 +87621,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $1 - i32.const 22266 + i32.const 22268 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -87655,7 +87655,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $1 - i32.const 22273 + i32.const 22275 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -87689,7 +87689,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $1 - i32.const 18397 + i32.const 18399 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $1 @@ -87837,7 +87837,7 @@ i32.and if $if local.get $4 - i32.const 22302 + i32.const 22304 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -87859,7 +87859,7 @@ i32.and if $if_0 local.get $4 - i32.const 22309 + i32.const 22311 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -87877,7 +87877,7 @@ i32.and if $if_1 local.get $2 - i32.const 22319 + i32.const 22321 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -87988,7 +87988,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 18109 + i32.const 18111 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -88114,7 +88114,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 18293 + i32.const 18295 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -88135,7 +88135,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $5 - i32.const 18186 + i32.const 18188 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -88278,7 +88278,7 @@ i32.add call_indirect $28 (type $4) local.get $2 - i32.const 18109 + i32.const 18111 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -88336,7 +88336,7 @@ i32.const 48 i32.add local.tee $4 - i32.const 18111 + i32.const 18113 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -88351,7 +88351,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle9NodeArray14printWithCommaERNS_12OutputStreamE local.get $5 - i32.const 18107 + i32.const 18109 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -88381,7 +88381,7 @@ i32.and if $if local.get $6 - i32.const 22302 + i32.const 22304 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -88399,7 +88399,7 @@ i32.and if $if_0 local.get $7 - i32.const 22309 + i32.const 22311 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -88417,7 +88417,7 @@ i32.and if $if_1 local.get $8 - i32.const 22319 + i32.const 22321 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $8 @@ -88439,7 +88439,7 @@ $block ;; default end ;; $block_1 local.get $9 - i32.const 22504 + i32.const 22506 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $9 @@ -88451,7 +88451,7 @@ br $block end ;; $block_0 local.get $3 - i32.const 22507 + i32.const 22509 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -88542,7 +88542,7 @@ i32.add local.set $3 local.get $2 - i32.const 22560 + i32.const 22562 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -88620,7 +88620,7 @@ i32.const 8 i32.add local.tee $4 - i32.const 22624 + i32.const 22626 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -88634,7 +88634,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $2 - i32.const 18107 + i32.const 18109 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -88853,7 +88853,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $4 - i32.const 20873 + i32.const 20875 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -88874,7 +88874,7 @@ local.get $3 call $__ZN12_GLOBAL__N_112OutputStreampLENS_10StringViewE local.get $5 - i32.const 18107 + i32.const 18109 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $5 @@ -89168,7 +89168,7 @@ local.get $1 if $if_9 (result i32) local.get $0 - i32.const 22905 + i32.const 22907 local.get $2 call $__ZN12_GLOBAL__N_116itanium_demangle22AbstractManglingParserINS0_14ManglingParserINS_16DefaultAllocatorEEES3_E4makeINS0_11SpecialNameEJRA34_KcRPNS0_4NodeEEEESC_DpOT0_ else @@ -89685,7 +89685,7 @@ i32.eqz if $if_0 local.get $2 - i32.const 18109 + i32.const 18111 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -89749,7 +89749,7 @@ i32.const 48 i32.add local.tee $4 - i32.const 18111 + i32.const 18113 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $4 @@ -89764,7 +89764,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle9NodeArray14printWithCommaERNS_12OutputStreamE local.get $5 - i32.const 18107 + i32.const 18109 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $5 @@ -89797,7 +89797,7 @@ i32.and if $if_0 local.get $6 - i32.const 22302 + i32.const 22304 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $6 @@ -89815,7 +89815,7 @@ i32.and if $if_1 local.get $7 - i32.const 22309 + i32.const 22311 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $7 @@ -89833,7 +89833,7 @@ i32.and if $if_2 local.get $8 - i32.const 22319 + i32.const 22321 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $8 @@ -89855,7 +89855,7 @@ $block ;; default end ;; $block_1 local.get $9 - i32.const 22504 + i32.const 22506 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $9 @@ -89867,7 +89867,7 @@ br $block end ;; $block_0 local.get $3 - i32.const 22507 + i32.const 22509 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $2 local.get $3 @@ -89955,7 +89955,7 @@ i32.add local.set $3 local.get $2 - i32.const 22843 + i32.const 22845 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -90087,7 +90087,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 22939 + i32.const 22941 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -90126,7 +90126,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 22964 + i32.const 22966 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -90165,7 +90165,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 22984 + i32.const 22986 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -90204,7 +90204,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 23006 + i32.const 23008 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -90243,7 +90243,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 23024 + i32.const 23026 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -90311,7 +90311,7 @@ i32.const 8 i32.add local.tee $4 - i32.const 23065 + i32.const 23067 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $4 @@ -90325,7 +90325,7 @@ local.get $1 call $__ZNK12_GLOBAL__N_116itanium_demangle4Node5printERNS_12OutputStreamE local.get $2 - i32.const 23090 + i32.const 23092 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $3 local.get $2 @@ -90363,7 +90363,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 23153 + i32.const 23155 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -90402,7 +90402,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 23180 + i32.const 23182 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -90441,7 +90441,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 23199 + i32.const 23201 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -90480,7 +90480,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 23213 + i32.const 23215 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -90519,7 +90519,7 @@ call $__ZN12_GLOBAL__N_120BumpPointerAllocator8allocateEm local.set $0 local.get $2 - i32.const 23222 + i32.const 23224 call $__ZN12_GLOBAL__N_110StringViewC2EPKc local.get $1 i32.load @@ -92361,5 +92361,5 @@ call_indirect $28 (type $9) ) ;; User section "emscripten_metadata": - ;; "\00\01\00\03\80\02\b7\03\80\08\d0\d0\c1\02\b0\d0\01\c0\d0\01" + ;; "\00\02\00\04\00\80\02\b7\03\80\08\d0\d0\c1\02\b0\d0\01\c0\d0\01" ) \ No newline at end of file diff --git a/test/extensions/filters/http/wasm/wasm_filter_test.cc b/test/extensions/filters/http/wasm/wasm_filter_test.cc index 69173af95936d..b675a354bb567 100644 --- a/test/extensions/filters/http/wasm/wasm_filter_test.cc +++ b/test/extensions/filters/http/wasm/wasm_filter_test.cc @@ -367,6 +367,42 @@ TEST_F(WasmHttpFilterTest, NullPluginRequestHeadersOnly) { filter_->onDestroy(); } +TEST_F(WasmHttpFilterTest, NullVmResolver) { + setupNullConfig("null_vm_plugin"); + setupFilter(); + envoy::api::v2::core::Node node_data; + ProtobufWkt::Value node_val; + node_val.set_string_value("sample_data"); + (*node_data.mutable_metadata()->mutable_fields())["istio.io/metadata"] = node_val; + EXPECT_CALL(local_info_, node()).WillRepeatedly(ReturnRef(node_data)); + + request_stream_info_.metadata_.mutable_filter_metadata()->insert( + Protobuf::MapPair( + HttpFilters::HttpFilterNames::get().Wasm, + MessageUtil::keyValueStruct("wasm_request_get_key", "wasm_request_get_value"))); + EXPECT_CALL(request_stream_info_, responseCode()).WillRepeatedly(Return(403)); + EXPECT_CALL(decoder_callbacks_, streamInfo()).WillRepeatedly(ReturnRef(request_stream_info_)); + EXPECT_CALL(*filter_, + scriptLog_(spdlog::level::debug, Eq(absl::string_view("onRequestHeaders 2")))); + EXPECT_CALL(*filter_, + scriptLog_(spdlog::level::info, Eq(absl::string_view("header path /test_context")))); + + // test outputs should match inputs + EXPECT_CALL(*filter_, scriptLog_(spdlog::level::warn, + Eq(absl::string_view("request.path: /test_context")))); + EXPECT_CALL(*filter_, + scriptLog_(spdlog::level::warn, Eq(absl::string_view("node.metadata: sample_data")))); + EXPECT_CALL(*filter_, scriptLog_(spdlog::level::warn, + Eq(absl::string_view("metadata: wasm_request_get_value")))); + EXPECT_CALL(*filter_, + scriptLog_(spdlog::level::warn, Eq(absl::string_view("response.code: 403")))); + + Http::TestHeaderMapImpl request_headers{{":path", "/test_context"}}; + EXPECT_EQ(Http::FilterHeadersStatus::Continue, filter_->decodeHeaders(request_headers, true)); + StreamInfo::MockStreamInfo log_stream_info; + filter_->log(&request_headers, nullptr, nullptr, log_stream_info); +} + TEST_P(WasmHttpFilterTest, SharedData) { setupConfig(TestEnvironment::readFileToStringForTest(TestEnvironment::substitute( "{{ test_rundir }}/test/extensions/filters/http/wasm/test_data/shared_cpp.wasm"))); diff --git a/test/extensions/wasm/test_data/asm2wasm_cpp.wasm b/test/extensions/wasm/test_data/asm2wasm_cpp.wasm index 4be52a27f4ebb..b8f6835cb95f9 100644 Binary files a/test/extensions/wasm/test_data/asm2wasm_cpp.wasm and b/test/extensions/wasm/test_data/asm2wasm_cpp.wasm differ diff --git a/test/extensions/wasm/test_data/asm2wasm_cpp.wat b/test/extensions/wasm/test_data/asm2wasm_cpp.wat index d58d12adf496c..0f0c6f1514d0a 100644 --- a/test/extensions/wasm/test_data/asm2wasm_cpp.wat +++ b/test/extensions/wasm/test_data/asm2wasm_cpp.wat @@ -12617,5 +12617,5 @@ call $abort ) ;; User section "emscripten_metadata": - ;; "\00\01\00\03\80\02\1d\80\08\d0\a0\c0\02\b0 \c0 " + ;; "\00\02\00\04\00\80\02\1d\80\08\d0\a0\c0\02\b0 \c0 " ) \ No newline at end of file diff --git a/test/extensions/wasm/test_data/bad_signature_cpp.wasm b/test/extensions/wasm/test_data/bad_signature_cpp.wasm index 5b4b43f40dbbb..2326f4f57a646 100644 Binary files a/test/extensions/wasm/test_data/bad_signature_cpp.wasm and b/test/extensions/wasm/test_data/bad_signature_cpp.wasm differ diff --git a/test/extensions/wasm/test_data/bad_signature_cpp.wat b/test/extensions/wasm/test_data/bad_signature_cpp.wat index 259085196652a..2069313f1af57 100644 --- a/test/extensions/wasm/test_data/bad_signature_cpp.wat +++ b/test/extensions/wasm/test_data/bad_signature_cpp.wat @@ -7997,5 +7997,5 @@ call $abort ) ;; User section "emscripten_metadata": - ;; "\00\01\00\03\80\02\17\80\08\90\99\c0\02\f0\18\80\19" + ;; "\00\02\00\04\00\80\02\17\80\08\90\99\c0\02\f0\18\80\19" ) \ No newline at end of file diff --git a/test/extensions/wasm/test_data/emscripten_cpp.cc b/test/extensions/wasm/test_data/emscripten_cpp.cc index 7f45b2678f45b..76c3fa15e3013 100644 --- a/test/extensions/wasm/test_data/emscripten_cpp.cc +++ b/test/extensions/wasm/test_data/emscripten_cpp.cc @@ -11,8 +11,7 @@ float gInfinity = INFINITY; extern "C" EMSCRIPTEN_KEEPALIVE void proxy_onStart(uint32_t, uint32_t, uint32_t, uint32_t, uint32_t) { logInfo(std::string("NaN ") + std::to_string(gNan)); - // For some reason these return "inf nan": - // logWarn("inf " + std::to_string(gInfinity)); - // logInfo("inf " + std::to_string(1.0/0.0)); + logWarn("inf " + std::to_string(gInfinity)); + logWarn("inf " + std::to_string(1.0 / 0.0)); logWarn(std::string("inf ") + (std::isinf(gInfinity) ? "inf" : "nan")); } diff --git a/test/extensions/wasm/test_data/emscripten_cpp.wasm b/test/extensions/wasm/test_data/emscripten_cpp.wasm index 440251548eeac..d1a0f54ad6445 100644 Binary files a/test/extensions/wasm/test_data/emscripten_cpp.wasm and b/test/extensions/wasm/test_data/emscripten_cpp.wasm differ diff --git a/test/extensions/wasm/test_data/emscripten_cpp.wat b/test/extensions/wasm/test_data/emscripten_cpp.wat index 09bb75c392c7b..80241df8e1af3 100644 --- a/test/extensions/wasm/test_data/emscripten_cpp.wat +++ b/test/extensions/wasm/test_data/emscripten_cpp.wat @@ -18,7 +18,9 @@ (type $16 (func (param i32 i32 i32 i32 i32 i32 i32))) (type $17 (func (param i32 f32))) (type $18 (func (param i32 i32 f32))) - (type $19 (func (param i32 i32 f64 i32 i32 i32 i32) (result i32))) + (type $19 (func (param i32 f64))) + (type $20 (func (param i32 i32 f64))) + (type $21 (func (param i32 i32 f64 i32 i32 i32 i32) (result i32))) (import "env" "abort" (func $abort (param i32))) (import "env" "___cxa_uncaught_exceptions" (func $___cxa_uncaught_exceptions (result i32))) (import "env" "___setErrNo" (func $___setErrNo (param i32))) @@ -28,11 +30,12 @@ (import "env" "_emscripten_resize_heap" (func $_emscripten_resize_heap (param i32) (result i32))) (import "env" "_proxy_log" (func $_proxy_log (param i32 i32 i32) (result i32))) (import "env" "abortOnCannotGrowMemory" (func $abortOnCannotGrowMemory (param i32) (result i32))) - (import "env" "__table_base" (global $22 i32)) - (import "env" "DYNAMICTOP_PTR" (global $23 i32)) - (import "global" "NaN" (global $24 f64)) - (import "env" "memory" (memory $21 256 256)) - (import "env" "table" (table $20 29 29 funcref)) + (import "env" "__table_base" (global $24 i32)) + (import "env" "DYNAMICTOP_PTR" (global $25 i32)) + (import "global" "NaN" (global $26 f64)) + (import "global" "Infinity" (global $27 f64)) + (import "env" "memory" (memory $23 256 256)) + (import "env" "table" (table $22 29 29 funcref)) (export "__GLOBAL__sub_I_status_cc" (func $__GLOBAL__sub_I_status_cc)) (export "__ZSt18uncaught_exceptionv" (func $__ZSt18uncaught_exceptionv)) (export "___cxa_can_catch" (func $___cxa_can_catch)) @@ -41,6 +44,7 @@ (export "_free" (func $_free)) (export "_malloc" (func $_malloc)) (export "_memcpy" (func $_memcpy)) + (export "_memmove" (func $_memmove)) (export "_memset" (func $_memset)) (export "_proxy_onStart" (func $_proxy_onStart)) (export "_sbrk" (func $_sbrk)) @@ -56,98 +60,99 @@ (export "stackAlloc" (func $stackAlloc)) (export "stackRestore" (func $stackRestore)) (export "stackSave" (func $stackSave)) - (global $25 (mut i32) (i32.const 4176)) - (global $26 (mut i32) (i32.const 5247056)) - (elem $27 $20 (global.get $22) + (global $28 (mut i32) (i32.const 4176)) + (global $29 (mut i32) (i32.const 5247056)) + (elem $30 $22 (global.get $24) $b0 $_fmt_fp $b1 $_sn_write $__ZNK10__cxxabiv117__class_type_info9can_catchEPKNS_16__shim_type_infoERPv $b1 $b2 $b3 $__ZN10__cxxabiv116__shim_type_infoD2Ev $__ZN10__cxxabiv117__class_type_infoD0Ev $__ZN10__cxxabiv116__shim_type_infoD2Ev $__ZN10__cxxabiv116__shim_type_infoD2Ev $__ZN10__cxxabiv117__class_type_infoD0Ev $b3 $b3 $b4 $_pop_arg_long_double $b5 $__ZNK10__cxxabiv117__class_type_info27has_unambiguous_public_baseEPNS_19__dynamic_cast_infoEPvi $__ZNK10__cxxabiv120__si_class_type_info27has_unambiguous_public_baseEPNS_19__dynamic_cast_infoEPvi $b5 $b6 $__ZNK10__cxxabiv117__class_type_info16search_below_dstEPNS_19__dynamic_cast_infoEPKvib $__ZNK10__cxxabiv120__si_class_type_info16search_below_dstEPNS_19__dynamic_cast_infoEPKvib $b6 $b7 $__ZNK10__cxxabiv117__class_type_info16search_above_dstEPNS_19__dynamic_cast_infoEPKvS4_ib $__ZNK10__cxxabiv120__si_class_type_info16search_above_dstEPNS_19__dynamic_cast_infoEPKvS4_ib $b7) - (data $28 $21 (i32.const 1024) + (data $31 $23 (i32.const 1024) "\11\00\n\00\11\11\11\00\00\00\00\05\00\00\00\00\00\00\09\00\00\00\00\0b") - (data $29 $21 (i32.const 1056) + (data $32 $23 (i32.const 1056) "\11\00\0f\n\11\11\11\03\n\07\00\01\13\09\0b\0b\00\00\09\06\0b\00\00\0b\00\06\11\00\00\00\11\11\11") - (data $30 $21 (i32.const 1105) + (data $33 $23 (i32.const 1105) "\0b") - (data $31 $21 (i32.const 1114) + (data $34 $23 (i32.const 1114) "\11\00\n\n\11\11\11\00\n\00\00\02\00\09\0b\00\00\00\09\00\0b\00\00\0b") - (data $32 $21 (i32.const 1163) + (data $35 $23 (i32.const 1163) "\0c") - (data $33 $21 (i32.const 1175) + (data $36 $23 (i32.const 1175) "\0c\00\00\00\00\0c\00\00\00\00\09\0c\00\00\00\00\00\0c\00\00\0c") - (data $34 $21 (i32.const 1221) + (data $37 $23 (i32.const 1221) "\0e") - (data $35 $21 (i32.const 1233) + (data $38 $23 (i32.const 1233) "\0d\00\00\00\04\0d\00\00\00\00\09\0e\00\00\00\00\00\0e\00\00\0e") - (data $36 $21 (i32.const 1279) + (data $39 $23 (i32.const 1279) "\10") - (data $37 $21 (i32.const 1291) + (data $40 $23 (i32.const 1291) "\0f\00\00\00\00\0f\00\00\00\00\09\10\00\00\00\00\00\10\00\00\10\00\00\12\00\00\00\12\12\12") - (data $38 $21 (i32.const 1346) + (data $41 $23 (i32.const 1346) "\12\00\00\00\12\12\12\00\00\00\00\00\00\09") - (data $39 $21 (i32.const 1395) + (data $42 $23 (i32.const 1395) "\0b") - (data $40 $21 (i32.const 1407) + (data $43 $23 (i32.const 1407) "\n\00\00\00\00\n\00\00\00\00\09\0b\00\00\00\00\00\0b\00\00\0b") - (data $41 $21 (i32.const 1453) + (data $44 $23 (i32.const 1453) "\0c") - (data $42 $21 (i32.const 1465) + (data $45 $23 (i32.const 1465) "\0c\00\00\00\00\0c\00\00\00\00\09\0c\00\00\00\00\00\0c\00\00\0c\00\000123456789ABCDEF") - (data $43 $21 (i32.const 1540) + (data $46 $23 (i32.const 1540) "\01") - (data $44 $21 (i32.const 1579) + (data $47 $23 (i32.const 1579) "\ff\ff\ff\ff\ff") - (data $45 $21 (i32.const 1648) - "\f0\07\00\00\9c\08\00\00\80\06\00\00\00\00\00\00\f0\07\00\00I\08\00\00\90\06\00\00\00\00\00\00\c8\07\00\00j\08\00\00\f0\07\00\00w\08\00\00p\06\00\00\00\00\00\00\f0\07\00\00\be\08\00\00" - "\80\06\00\00\00\00\00\00\f0\07\00\00\e0\08\00\00\a8\06") - (data $46 $21 (i32.const 1738) + (data $48 $23 (i32.const 1648) + "\f0\07\00\00\a1\08\00\00\80\06\00\00\00\00\00\00\f0\07\00\00N\08\00\00\90\06\00\00\00\00\00\00\c8\07\00\00o\08\00\00\f0\07\00\00|\08\00\00p\06\00\00\00\00\00\00\f0\07\00\00\c3\08\00\00" + "\80\06\00\00\00\00\00\00\f0\07\00\00\e5\08\00\00\a8\06") + (data $49 $23 (i32.const 1738) "\80\7f") - (data $47 $21 (i32.const 1928) + (data $50 $23 (i32.const 1928) "h\09") - (data $48 $21 (i32.const 1988) + (data $51 $23 (i32.const 1988) "p\06\00\00\01\00\00\00\02\00\00\00\03\00\00\00\04\00\00\00\02\00\00\00\01\00\00\00\01\00\00\00\01\00\00\00\00\00\00\00\98\06\00\00\01\00\00\00\05\00\00\00\03\00\00\00\04\00\00\00\02\00\00\00" - "\02\00\00\00\02\00\00\00\02\00\00\00-+ 0X0x\00(null)\00-0X+0X 0X-0x+0x 0x\00inf\00INF\00nan\00NAN\00" - ".\00%f\00N10__cxxabiv116__shim_type_infoE\00St9type_info\00N10__cxxabiv1" - "20__si_class_type_infoE\00N10__cxxabiv117__class_type_infoE\00N10__c" - "xxabiv117__pbase_type_infoE\00N10__cxxabiv119__pointer_type_infoE") + "\02\00\00\00\02\00\00\00\02\00\00\00inf \00-+ 0X0x\00(null)\00-0X+0X 0X-0x+0x 0x\00inf\00INF\00nan" + "\00NAN\00.\00%f\00N10__cxxabiv116__shim_type_infoE\00St9type_info\00N10__cxx" + "abiv120__si_class_type_infoE\00N10__cxxabiv117__class_type_infoE\00N" + "10__cxxabiv117__pbase_type_infoE\00N10__cxxabiv119__pointer_type_i" + "nfoE") (func $stackAlloc (type $9) (param $0 i32) (result i32) (local $1 i32) - global.get $25 + global.get $28 local.set $1 local.get $0 - global.get $25 + global.get $28 i32.add - global.set $25 - global.get $25 + global.set $28 + global.get $28 i32.const 15 i32.add i32.const -16 i32.and - global.set $25 + global.set $28 local.get $1 ) (func $stackSave (type $8) (result i32) - global.get $25 + global.get $28 ) (func $stackRestore (type $7) (param $0 i32) local.get $0 - global.set $25 + global.set $28 ) (func $establishStackSpace (type $2) (param $0 i32) (param $1 i32) local.get $0 - global.set $25 + global.set $28 local.get $1 - global.set $26 + global.set $29 ) (func $_proxy_onStart (type $6) @@ -157,18 +162,28 @@ (param $3 i32) (param $4 i32) (local $5 i32) - global.get $25 + (local $6 i32) + (local $7 i32) + global.get $28 local.set $0 - global.get $25 + global.get $28 + i32.const 80 + i32.add + global.set $28 + local.get $0 i32.const 48 i32.add - global.set $25 + local.set $2 local.get $0 i32.const 24 i32.add - local.set $2 + local.set $3 local.get $0 - i32.const 36 + i32.const 12 + i32.add + local.set $4 + local.get $0 + i32.const 60 i32.add local.tee $1 i64.const 0 @@ -186,43 +201,43 @@ i32.const 0 i32.store8 offset=4 local.get $0 - i32.const 12 + i32.const 36 i32.add - local.tee $3 - global.get $24 + local.tee $5 + global.get $26 f32.demote_f64 call $__ZNSt3__29to_stringEf local.get $2 local.get $1 - local.get $3 + local.get $5 i32.load - local.get $3 - local.get $3 + local.get $5 + local.get $5 i32.load8_s offset=11 - local.tee $4 + local.tee $6 i32.const 0 i32.lt_s - local.tee $5 + local.tee $7 select - local.get $3 + local.get $5 i32.load offset=4 - local.get $4 + local.get $6 i32.const 255 i32.and - local.get $5 + local.get $7 select call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKcm - local.tee $4 + local.tee $6 i64.load align=4 i64.store align=4 local.get $2 - local.get $4 + local.get $6 i32.load offset=8 i32.store offset=8 - local.get $4 + local.get $6 i64.const 0 i64.store align=4 - local.get $4 + local.get $6 i32.const 0 i32.store offset=8 i32.const 2 @@ -231,17 +246,17 @@ local.get $2 local.get $2 i32.load8_s offset=11 - local.tee $4 + local.tee $6 i32.const 0 i32.lt_s - local.tee $5 + local.tee $7 select local.get $2 i32.load offset=4 - local.get $4 + local.get $6 i32.const 255 i32.and - local.get $5 + local.get $7 select call $_proxy_log drop @@ -254,12 +269,12 @@ i32.load call $_free end ;; $if - local.get $3 + local.get $5 i32.load8_s offset=11 i32.const 0 i32.lt_s if $if_0 - local.get $3 + local.get $5 i32.load call $_free end ;; $if_0 @@ -273,6 +288,121 @@ call $_free end ;; $if_1 local.get $1 + global.get $27 + f32.demote_f64 + call $__ZNSt3__29to_stringEf + local.get $3 + local.get $1 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6insertEmPKc + local.tee $2 + i64.load align=4 + i64.store align=4 + local.get $3 + local.get $2 + i32.load offset=8 + i32.store offset=8 + local.get $2 + i64.const 0 + i64.store align=4 + local.get $2 + i32.const 0 + i32.store offset=8 + i32.const 3 + local.get $3 + i32.load + local.get $3 + local.get $3 + i32.load8_s offset=11 + local.tee $2 + i32.const 0 + i32.lt_s + local.tee $5 + select + local.get $3 + i32.load offset=4 + local.get $2 + i32.const 255 + i32.and + local.get $5 + select + call $_proxy_log + drop + local.get $3 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_2 + local.get $3 + i32.load + call $_free + end ;; $if_2 + local.get $1 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_3 + local.get $1 + i32.load + call $_free + end ;; $if_3 + local.get $1 + global.get $27 + call $__ZNSt3__29to_stringEd + local.get $4 + local.get $1 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6insertEmPKc + local.tee $2 + i64.load align=4 + i64.store align=4 + local.get $4 + local.get $2 + i32.load offset=8 + i32.store offset=8 + local.get $2 + i64.const 0 + i64.store align=4 + local.get $2 + i32.const 0 + i32.store offset=8 + i32.const 3 + local.get $4 + i32.load + local.get $4 + local.get $4 + i32.load8_s offset=11 + local.tee $2 + i32.const 0 + i32.lt_s + local.tee $3 + select + local.get $4 + i32.load offset=4 + local.get $2 + i32.const 255 + i32.and + local.get $3 + select + call $_proxy_log + drop + local.get $4 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_4 + local.get $4 + i32.load + call $_free + end ;; $if_4 + local.get $1 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_5 + local.get $1 + i32.load + call $_free + end ;; $if_5 + local.get $1 i64.const 0 i64.store align=4 local.get $1 @@ -289,8 +419,8 @@ i32.store8 offset=4 local.get $0 local.get $1 - i32.const 2100 - i32.const 2108 + i32.const 2105 + i32.const 2113 i32.const 1736 i32.load i32.const 2147483647 @@ -339,36 +469,36 @@ i32.load8_s offset=11 i32.const 0 i32.lt_s - if $if_2 + if $if_6 local.get $0 i32.load call $_free - end ;; $if_2 + end ;; $if_6 local.get $1 i32.load8_s offset=11 i32.const 0 i32.ge_s - if $if_3 + if $if_7 local.get $0 - global.set $25 + global.set $28 return - end ;; $if_3 + end ;; $if_7 local.get $1 i32.load call $_free local.get $0 - global.set $25 + global.set $28 ) (func $__GLOBAL__sub_I_status_cc (type $3) (local $0 i32) (local $1 i32) - global.get $25 + global.get $28 local.set $0 - global.get $25 + global.get $28 i32.const 16 i32.add - global.set $25 + global.set $28 i32.const 2320 i64.const 0 i64.store align=4 @@ -407,7 +537,7 @@ local.get $1 call $__ZN6google8protobuf4util6StatusC2ENS1_5error4CodeENS0_11StringPieceE local.get $0 - global.set $25 + global.set $28 ) (func $__ZN6google8protobuf4util6StatusC2ENS1_5error4CodeENS0_11StringPieceE (type $10) @@ -419,12 +549,12 @@ (local $5 i32) (local $6 i32) (local $7 i32) - global.get $25 + global.get $28 local.set $5 - global.get $25 + global.get $28 i32.const 16 i32.add - global.set $25 + global.set $28 local.get $0 local.get $1 i32.store @@ -441,7 +571,7 @@ i32.eqz if $if local.get $5 - global.set $25 + global.set $28 return end ;; $if local.get $5 @@ -572,7 +702,7 @@ i32.load offset=8 i32.store offset=8 local.get $5 - global.set $25 + global.set $28 ) (func $___errno_location (type $8) @@ -916,12 +1046,12 @@ (param $2 i32) (result i32) (local $3 i32) - global.get $25 + global.get $28 local.set $3 - global.get $25 + global.get $28 i32.const 16 i32.add - global.set $25 + global.set $28 local.get $3 local.get $2 i32.store @@ -931,7 +1061,7 @@ call $_vsnprintf local.set $0 local.get $3 - global.set $25 + global.set $28 local.get $0 ) @@ -942,12 +1072,12 @@ (result i32) (local $3 i32) (local $4 i32) - global.get $25 + global.get $28 local.set $3 - global.get $25 + global.get $28 i32.const 160 i32.add - global.set $25 + global.set $28 local.get $3 i32.const 144 i32.add @@ -1031,7 +1161,7 @@ end ;; $if_0 end ;; $block local.get $3 - global.set $25 + global.set $28 local.get $0 ) @@ -1066,12 +1196,12 @@ (local $26 i64) (local $27 i64) (local $28 f64) - global.get $25 + global.get $28 local.set $21 - global.get $25 + global.get $28 i32.const 560 i32.add - global.set $25 + global.set $28 local.get $21 i32.const 32 i32.add @@ -1103,13 +1233,13 @@ local.tee $1 i64.reinterpret_f64 local.set $25 - i32.const 2081 + i32.const 2086 local.set $18 i32.const 1 else - i32.const 2084 + i32.const 2089 + i32.const 2092 i32.const 2087 - i32.const 2082 local.get $4 i32.const 1 i32.and @@ -1132,8 +1262,8 @@ i64.const 9218868437227405312 i64.eq if $if_0 (result i32) - i32.const 2108 - i32.const 2112 + i32.const 2113 + i32.const 2117 local.get $5 i32.const 32 i32.and @@ -1141,8 +1271,8 @@ i32.ne local.tee $3 select - i32.const 2100 - i32.const 2104 + i32.const 2105 + i32.const 2109 local.get $3 select local.get $1 @@ -2490,7 +2620,7 @@ i32.eqz if $if_54 local.get $0 - i32.const 2116 + i32.const 2121 i32.const 1 call $_out end ;; $if_54 @@ -2649,7 +2779,7 @@ br $block_4 end ;; $if_61 local.get $0 - i32.const 2116 + i32.const 2121 i32.const 1 call $_out local.get $6 @@ -2733,7 +2863,7 @@ end ;; $if_0 local.set $0 local.get $21 - global.set $25 + global.set $28 local.get $2 local.get $0 local.get $0 @@ -2775,12 +2905,12 @@ (local $4 i32) (local $5 i32) (local $6 i32) - global.get $25 + global.get $28 local.set $2 - global.get $25 + global.get $28 i32.const 224 i32.add - global.set $25 + global.set $28 local.get $2 i32.const 160 i32.add @@ -2890,7 +3020,7 @@ i32.and i32.const 2 i32.add - call_indirect $20 (type $0) + call_indirect $22 (type $0) drop local.get $1 i32.const -1 @@ -2933,7 +3063,7 @@ end ;; $if local.set $0 local.get $2 - global.set $25 + global.set $28 local.get $0 ) @@ -2965,12 +3095,12 @@ (local $23 i32) (local $24 i32) (local $25 i64) - global.get $25 + global.get $28 local.set $15 - global.get $25 + global.get $28 i32.const -64 i32.sub - global.set $25 + global.set $28 local.get $15 i32.const 40 i32.add @@ -2987,7 +3117,7 @@ i32.const 56 i32.add local.tee $11 - i32.const 2118 + i32.const 2123 i32.store local.get $0 i32.const 0 @@ -3731,7 +3861,7 @@ local.set $4 i32.const 0 local.set $12 - i32.const 2064 + i32.const 2069 local.set $8 br $block_14 end ;; $block_25 @@ -3747,13 +3877,13 @@ i64.sub local.tee $25 i64.store - i32.const 2064 + i32.const 2069 local.set $8 i32.const 1 else - i32.const 2065 - i32.const 2066 - i32.const 2064 + i32.const 2070 + i32.const 2071 + i32.const 2069 local.get $7 i32.const 1 i32.and @@ -3777,7 +3907,7 @@ local.set $25 i32.const 0 local.set $12 - i32.const 2064 + i32.const 2069 local.set $8 br $block_16 end ;; $block_23 @@ -3793,7 +3923,7 @@ local.set $5 i32.const 0 local.set $12 - i32.const 2064 + i32.const 2069 local.set $8 local.get $18 local.set $4 @@ -3802,7 +3932,7 @@ local.get $10 i32.load local.tee $5 - i32.const 2074 + i32.const 2079 local.get $5 select local.tee $6 @@ -3822,7 +3952,7 @@ local.set $5 i32.const 0 local.set $12 - i32.const 2064 + i32.const 2069 local.set $8 local.get $4 local.get $6 @@ -3873,7 +4003,7 @@ local.get $7 local.get $6 i32.const 1 - call_indirect $20 (type $1) + call_indirect $22 (type $1) local.set $4 br $block_9 end ;; $block_18 @@ -3883,7 +4013,7 @@ local.set $5 i32.const 0 local.set $12 - i32.const 2064 + i32.const 2069 local.set $8 local.get $18 local.set $4 @@ -3911,11 +4041,11 @@ local.tee $8 select local.set $12 - i32.const 2064 + i32.const 2069 local.get $6 i32.const 4 i32.shr_u - i32.const 2064 + i32.const 2069 i32.add local.get $8 select @@ -4211,7 +4341,7 @@ end ;; $if_29 end ;; $block local.get $15 - global.set $25 + global.set $28 local.get $9 ) @@ -4499,7 +4629,7 @@ local.get $0 local.get $2 i32.const 16 - call_indirect $20 (type $2) + call_indirect $22 (type $2) end ;; $block end ;; $if ) @@ -4652,12 +4782,12 @@ (param $3 i32) (param $4 i32) (local $5 i32) - global.get $25 + global.get $28 local.set $5 - global.get $25 + global.get $28 i32.const 256 i32.add - global.set $25 + global.set $28 local.get $4 i32.const 73728 i32.and @@ -4716,7 +4846,7 @@ call $_out end ;; $if local.get $5 - global.set $25 + global.set $28 ) (func $_wctomb (type $12) @@ -4924,7 +5054,7 @@ i32.and i32.const 2 i32.add - call_indirect $20 (type $0) + call_indirect $22 (type $0) drop br $block end ;; $if_0 @@ -4971,7 +5101,7 @@ i32.and i32.const 2 i32.add - call_indirect $20 (type $0) + call_indirect $22 (type $0) local.get $3 i32.lt_u br_if $block @@ -5111,12 +5241,12 @@ (local $20 i32) (local $21 i32) (local $22 i32) - global.get $25 + global.get $28 local.set $17 - global.get $25 + global.get $28 i32.const 16 i32.add - global.set $25 + global.set $28 local.get $0 i32.const 245 i32.lt_u @@ -5216,7 +5346,7 @@ i32.or i32.store offset=4 local.get $17 - global.set $25 + global.set $28 local.get $1 return end ;; $if_0 @@ -5443,7 +5573,7 @@ local.get $3 i32.store local.get $17 - global.set $25 + global.set $28 local.get $9 return end ;; $if_5 @@ -5893,7 +6023,7 @@ i32.store end ;; $if_32 local.get $17 - global.set $25 + global.set $28 local.get $9 i32.const 8 i32.add @@ -6802,7 +6932,7 @@ end ;; $block_10 end ;; $if_68 local.get $17 - global.set $25 + global.set $28 local.get $2 i32.const 8 i32.add @@ -8132,7 +8262,7 @@ end ;; $block_26 end ;; $if_104 local.get $17 - global.set $25 + global.set $28 local.get $12 i32.const 8 i32.add @@ -8900,14 +9030,14 @@ i32.store offset=4 end ;; $block_13 local.get $17 - global.set $25 + global.set $28 local.get $0 i32.const 8 i32.add return end ;; $block_12 local.get $17 - global.set $25 + global.set $28 i32.const 0 ) @@ -10170,6 +10300,36 @@ end ;; $if ) + (func $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev (type $7) + (param $0 i32) + local.get $0 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if + local.get $0 + i32.load offset=8 + drop + local.get $0 + i32.load + call $_free + end ;; $if + ) + + (func $__ZNSt3__211char_traitsIcE4moveEPcPKcm (type $10) + (param $0 i32) + (param $1 i32) + (param $2 i32) + local.get $2 + if $if + local.get $0 + local.get $1 + local.get $2 + call $_memmove + drop + end ;; $if + ) + (func $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE21__grow_by_and_replaceEmmmmmmPKc (type $16) (param $0 i32) (param $1 i32) @@ -10181,12 +10341,12 @@ (local $7 i32) (local $8 i32) (local $9 i32) - global.get $25 + global.get $28 local.set $7 - global.get $25 + global.get $28 i32.const 16 i32.add - global.set $25 + global.set $28 i32.const -18 local.get $1 i32.sub @@ -10301,7 +10461,7 @@ i32.load8_s i32.store8 local.get $7 - global.set $25 + global.set $28 ) (func $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEmc (type $2) @@ -10310,12 +10470,12 @@ (local $2 i32) (local $3 i32) (local $4 i32) - global.get $25 + global.get $28 local.set $2 - global.get $25 + global.get $28 i32.const 16 i32.add - global.set $25 + global.set $28 local.get $0 i32.load8_s offset=11 local.tee $3 @@ -10373,7 +10533,7 @@ end ;; $if_1 end ;; $if_0 local.get $2 - global.set $25 + global.set $28 ) (func $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEmc (type $2) @@ -10383,12 +10543,12 @@ (local $3 i32) (local $4 i32) (local $5 i32) - global.get $25 + global.get $28 local.set $5 - global.get $25 + global.get $28 i32.const 16 i32.add - global.set $25 + global.set $28 local.get $1 if $if local.get $0 @@ -10482,7 +10642,7 @@ i32.store8 end ;; $if local.get $5 - global.set $25 + global.set $28 ) (func $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE9__grow_byEmmmmmm (type $6) @@ -10733,12 +10893,12 @@ (local $4 i32) (local $5 i32) (local $6 i32) - global.get $25 + global.get $28 local.set $5 - global.get $25 + global.get $28 i32.const 16 i32.add - global.set $25 + global.set $28 local.get $0 i32.load8_s offset=11 local.tee $4 @@ -10825,40 +10985,178 @@ end ;; $if_1 end ;; $if_0 local.get $5 - global.set $25 + global.set $28 local.get $0 ) - (func $__ZNSt3__29to_stringEf (type $17) + (func $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6insertEmPKcm (type $12) (param $0 i32) - (param $1 f32) + (param $1 i32) + (result i32) (local $2 i32) - global.get $25 - local.set $2 - global.get $25 + (local $3 i32) + (local $4 i32) + (local $5 i32) + (local $6 i32) + i32.const 2064 + local.set $6 + global.get $28 + local.set $5 + global.get $28 i32.const 16 i32.add - global.set $25 - local.get $2 - call $__ZNKSt3__212_GLOBAL__N_114initial_stringINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEfLb1EEclEv + global.set $28 local.get $0 - local.get $2 - local.get $1 - call $__ZNSt3__212_GLOBAL__N_19as_stringINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPFiPcmPKczEfEET_T0_SD_PKNSD_10value_typeET1_ - local.get $2 i32.load8_s offset=11 + local.tee $2 i32.const 0 i32.lt_s - if $if - local.get $2 - i32.load offset=8 - drop + local.tee $4 + if $if (result i32) + local.get $0 + i32.load offset=4 + else local.get $2 - i32.load - call $_free + i32.const 255 + i32.and end ;; $if + local.tee $2 + i32.const 0 + i32.lt_u + if $if_0 + call $_abort + end ;; $if_0 + local.get $4 + if $if_1 (result i32) + local.get $0 + i32.load offset=8 + i32.const 2147483647 + i32.and + i32.const -1 + i32.add + else + i32.const 10 + end ;; $if_1 + local.tee $3 local.get $2 - global.set $25 + i32.sub + local.get $1 + i32.lt_u + if $if_2 + local.get $0 + local.get $3 + local.get $1 + local.get $2 + i32.add + local.get $3 + i32.sub + local.get $2 + i32.const 0 + local.get $1 + i32.const 2064 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE21__grow_by_and_replaceEmmmmmmPKc + else + local.get $1 + if $if_3 + local.get $4 + if $if_4 (result i32) + local.get $0 + i32.load + else + local.get $0 + end ;; $if_4 + local.tee $4 + local.set $3 + local.get $2 + if $if_5 + local.get $1 + i32.const 2064 + i32.add + i32.const 2064 + local.get $3 + i32.const 2064 + i32.le_u + local.get $2 + local.get $4 + i32.add + i32.const 2064 + i32.gt_u + i32.and + select + local.set $6 + local.get $1 + local.get $3 + i32.add + local.get $3 + local.get $2 + call $__ZNSt3__211char_traitsIcE4moveEPcPKcm + end ;; $if_5 + local.get $3 + local.get $6 + local.get $1 + call $__ZNSt3__211char_traitsIcE4moveEPcPKcm + local.get $1 + local.get $2 + i32.add + local.set $1 + local.get $0 + i32.load8_s offset=11 + i32.const 0 + i32.lt_s + if $if_6 + local.get $0 + local.get $1 + i32.store offset=4 + else + local.get $0 + local.get $1 + i32.store8 offset=11 + end ;; $if_6 + local.get $5 + i32.const 0 + i32.store8 + local.get $1 + local.get $4 + i32.add + local.get $5 + i32.load8_s + i32.store8 + end ;; $if_3 + end ;; $if_2 + local.get $5 + global.set $28 + local.get $0 + ) + + (func $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6insertEmPKc (type $9) + (param $0 i32) + (result i32) + local.get $0 + i32.const 2064 + call $_strlen + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6insertEmPKcm + ) + + (func $__ZNSt3__29to_stringEf (type $17) + (param $0 i32) + (param $1 f32) + (local $2 i32) + global.get $28 + local.set $2 + global.get $28 + i32.const 16 + i32.add + global.set $28 + local.get $2 + call $__ZNKSt3__212_GLOBAL__N_114initial_stringINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEfLb1EEclEv + local.get $0 + local.get $2 + local.get $1 + call $__ZNSt3__212_GLOBAL__N_19as_stringINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPFiPcmPKczEfEET_T0_SD_PKNSD_10value_typeET1_ + local.get $2 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev + local.get $2 + global.set $28 ) (func $__ZNKSt3__212_GLOBAL__N_114initial_stringINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEfLb1EEclEv (type $7) @@ -10915,12 +11213,12 @@ (local $4 i32) (local $5 i32) (local $6 f64) - global.get $25 + global.get $28 local.set $5 - global.get $25 + global.get $28 i32.const 16 i32.add - global.set $25 + global.set $28 local.get $1 i32.load8_s offset=11 local.tee $3 @@ -11021,7 +11319,142 @@ end ;; $if_2 end ;; $loop_0 local.get $5 - global.set $25 + global.set $28 + ) + + (func $__ZNSt3__29to_stringEd (type $19) + (param $0 i32) + (param $1 f64) + (local $2 i32) + global.get $28 + local.set $2 + global.get $28 + i32.const 16 + i32.add + global.set $28 + local.get $2 + call $__ZNKSt3__212_GLOBAL__N_114initial_stringINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEfLb1EEclEv + local.get $0 + local.get $2 + local.get $1 + call $__ZNSt3__212_GLOBAL__N_19as_stringINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPFiPcmPKczEdEET_T0_SD_PKNSD_10value_typeET1_ + local.get $2 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev + local.get $2 + global.set $28 + ) + + (func $__ZNSt3__212_GLOBAL__N_19as_stringINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPFiPcmPKczEdEET_T0_SD_PKNSD_10value_typeET1_ (type $20) + (param $0 i32) + (param $1 i32) + (param $2 f64) + (local $3 i32) + (local $4 i32) + (local $5 i32) + global.get $28 + local.set $5 + global.get $28 + i32.const 16 + i32.add + global.set $28 + local.get $1 + i32.load8_s offset=11 + local.tee $3 + i32.const 0 + i32.lt_s + if $if (result i32) + local.get $1 + i32.load offset=4 + else + local.get $3 + i32.const 255 + i32.and + end ;; $if + local.set $4 + loop $loop + block $block + local.get $3 + i32.const 24 + i32.shl + i32.const 24 + i32.shr_s + i32.const 0 + i32.lt_s + if $if_0 (result i32) + local.get $1 + i32.load + else + local.get $1 + end ;; $if_0 + local.set $3 + local.get $5 + local.get $2 + f64.store + local.get $1 + local.get $3 + local.get $4 + i32.const 1 + i32.add + local.get $5 + call $_snprintf + local.tee $3 + i32.const -1 + i32.gt_s + if $if_1 (result i32) + local.get $3 + local.get $4 + i32.le_u + br_if $block + local.get $3 + else + local.get $4 + i32.const 1 + i32.shl + i32.const 1 + i32.or + end ;; $if_1 + local.tee $4 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEmc + local.get $1 + i32.load8_s offset=11 + local.set $3 + br $loop + end ;; $block + end ;; $loop + local.get $1 + local.get $3 + call $__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEmc + local.get $0 + local.get $1 + i64.load align=4 + i64.store align=4 + local.get $0 + local.get $1 + i32.load offset=8 + i32.store offset=8 + i32.const 0 + local.set $0 + loop $loop_0 + local.get $0 + i32.const 3 + i32.ne + if $if_2 + local.get $0 + i32.const 2 + i32.shl + local.get $1 + i32.add + i32.const 0 + i32.store + local.get $0 + i32.const 1 + i32.add + local.set $0 + br $loop_0 + end ;; $if_2 + end ;; $loop_0 + local.get $5 + global.set $28 ) (func $__ZN10__cxxabiv116__shim_type_infoD2Ev (type $7) @@ -11041,12 +11474,12 @@ (param $2 i32) (result i32) (local $3 i32) - global.get $25 + global.get $28 local.set $3 - global.get $25 + global.get $28 i32.const -64 i32.sub - global.set $25 + global.set $28 local.get $0 local.get $1 i32.const 0 @@ -11111,7 +11544,7 @@ i32.and i32.const 17 i32.add - call_indirect $20 (type $4) + call_indirect $22 (type $4) local.get $3 i32.load offset=24 i32.const 1 @@ -11134,7 +11567,7 @@ end ;; $if local.set $0 local.get $3 - global.set $25 + global.set $28 local.get $0 ) @@ -11437,12 +11870,12 @@ (local $2 i32) (local $3 i32) (local $4 i32) - global.get $25 + global.get $28 local.set $2 - global.get $25 + global.get $28 i32.const -64 i32.sub - global.set $25 + global.set $28 local.get $0 local.get $0 i32.load @@ -11511,7 +11944,7 @@ i32.and i32.const 25 i32.add - call_indirect $20 (type $5) + call_indirect $22 (type $5) local.get $4 i32.const 0 local.get $2 @@ -11533,7 +11966,7 @@ i32.and i32.const 21 i32.add - call_indirect $20 (type $6) + call_indirect $22 (type $6) block $block_0 block $block_1 block $block_2 @@ -11595,7 +12028,7 @@ end ;; $if local.set $0 local.get $2 - global.set $25 + global.set $28 local.get $0 ) @@ -11636,7 +12069,7 @@ i32.and i32.const 25 i32.add - call_indirect $20 (type $5) + call_indirect $22 (type $5) end ;; $if ) @@ -11693,7 +12126,7 @@ i32.and i32.const 21 i32.add - call_indirect $20 (type $6) + call_indirect $22 (type $6) br $block end ;; $if_2 local.get $1 @@ -11737,7 +12170,7 @@ i32.and i32.const 25 i32.add - call_indirect $20 (type $5) + call_indirect $22 (type $5) local.get $1 i32.load8_s offset=53 if $if_6 @@ -11826,7 +12259,7 @@ i32.and i32.const 17 i32.add - call_indirect $20 (type $4) + call_indirect $22 (type $4) end ;; $if ) @@ -11837,12 +12270,12 @@ (result i32) (local $3 i32) (local $4 i32) - global.get $25 + global.get $28 local.set $3 - global.get $25 + global.get $28 i32.const 16 i32.add - global.set $25 + global.set $28 local.get $3 local.get $2 i32.load @@ -11859,7 +12292,7 @@ i32.and i32.const 2 i32.add - call_indirect $20 (type $0) + call_indirect $22 (type $0) local.tee $0 if $if local.get $2 @@ -11868,7 +12301,7 @@ i32.store end ;; $if local.get $3 - global.set $25 + global.set $28 local.get $0 i32.const 1 i32.and @@ -12121,6 +12554,65 @@ local.get $4 ) + (func $_memmove (type $0) + (param $0 i32) + (param $1 i32) + (param $2 i32) + (result i32) + (local $3 i32) + local.get $1 + local.get $0 + i32.lt_s + local.get $0 + local.get $1 + local.get $2 + i32.add + i32.lt_s + i32.and + if $if + local.get $1 + local.get $2 + i32.add + local.set $1 + local.get $0 + local.tee $3 + local.get $2 + i32.add + local.set $0 + loop $loop + local.get $2 + i32.const 0 + i32.gt_s + if $if_0 + local.get $2 + i32.const 1 + i32.sub + local.set $2 + local.get $0 + i32.const 1 + i32.sub + local.tee $0 + local.get $1 + i32.const 1 + i32.sub + local.tee $1 + i32.load8_s + i32.store8 + br $loop + end ;; $if_0 + end ;; $loop + local.get $3 + local.set $0 + else + local.get $0 + local.get $1 + local.get $2 + call $_memcpy + drop + end ;; $if + local.get $0 + ) + (func $_memset (type $0) (param $0 i32) (param $1 i32) @@ -12283,7 +12775,7 @@ call $_emscripten_get_heap_size local.set $3 local.get $0 - global.get $23 + global.get $25 i32.load local.tee $2 i32.add @@ -12321,13 +12813,13 @@ return end ;; $if_1 end ;; $if_0 - global.get $23 + global.get $25 local.get $1 i32.store local.get $2 ) - (func $dynCall_iidiiii (type $19) + (func $dynCall_iidiiii (type $21) (param $0 i32) (param $1 i32) (param $2 f64) @@ -12345,7 +12837,7 @@ local.get $0 i32.const 1 i32.and - call_indirect $20 (type $1) + call_indirect $22 (type $1) ) (func $dynCall_iiii (type $13) @@ -12362,13 +12854,13 @@ i32.and i32.const 2 i32.add - call_indirect $20 (type $0) + call_indirect $22 (type $0) ) (func $dynCall_v (type $7) (param $0 i32) i32.const 6 - call_indirect $20 (type $3) + call_indirect $22 (type $3) ) (func $dynCall_vi (type $2) @@ -12380,7 +12872,7 @@ i32.and i32.const 7 i32.add - call_indirect $20 (type $7) + call_indirect $22 (type $7) ) (func $dynCall_vii (type $10) @@ -12394,7 +12886,7 @@ i32.and i32.const 15 i32.add - call_indirect $20 (type $2) + call_indirect $22 (type $2) ) (func $dynCall_viiii (type $6) @@ -12412,7 +12904,7 @@ i32.and i32.const 17 i32.add - call_indirect $20 (type $4) + call_indirect $22 (type $4) ) (func $dynCall_viiiii (type $5) @@ -12432,7 +12924,7 @@ i32.and i32.const 21 i32.add - call_indirect $20 (type $6) + call_indirect $22 (type $6) ) (func $dynCall_viiiiii (type $16) @@ -12454,7 +12946,7 @@ i32.and i32.const 25 i32.add - call_indirect $20 (type $5) + call_indirect $22 (type $5) ) (func $b0 (type $1) @@ -12528,5 +13020,5 @@ call $abort ) ;; User section "emscripten_metadata": - ;; "\00\01\00\03\80\02\1d\80\08\d0\a0\c0\02\b0 \c0 " + ;; "\00\02\00\04\00\80\02\1d\80\08\d0\a0\c0\02\b0 \c0 " ) \ No newline at end of file diff --git a/test/extensions/wasm/test_data/logging_cpp.wasm b/test/extensions/wasm/test_data/logging_cpp.wasm index 7042707f4a162..bfa2a230603bb 100644 Binary files a/test/extensions/wasm/test_data/logging_cpp.wasm and b/test/extensions/wasm/test_data/logging_cpp.wasm differ diff --git a/test/extensions/wasm/test_data/logging_cpp.wat b/test/extensions/wasm/test_data/logging_cpp.wat index 3dd6818a70739..e89a854746957 100644 --- a/test/extensions/wasm/test_data/logging_cpp.wat +++ b/test/extensions/wasm/test_data/logging_cpp.wat @@ -8064,5 +8064,5 @@ call $abort ) ;; User section "emscripten_metadata": - ;; "\00\01\00\03\80\02\17\80\08\a0\99\c0\02\80\19\90\19" + ;; "\00\02\00\04\00\80\02\17\80\08\a0\99\c0\02\80\19\90\19" ) \ No newline at end of file diff --git a/test/extensions/wasm/test_data/logging_rust.wasm b/test/extensions/wasm/test_data/logging_rust.wasm index a6bbacaf89a82..c39eeee071c85 100755 Binary files a/test/extensions/wasm/test_data/logging_rust.wasm and b/test/extensions/wasm/test_data/logging_rust.wasm differ diff --git a/test/extensions/wasm/test_data/logging_rust.wat b/test/extensions/wasm/test_data/logging_rust.wat index 469f16c2d8246..c94e8e67f5ba1 100644 --- a/test/extensions/wasm/test_data/logging_rust.wat +++ b/test/extensions/wasm/test_data/logging_rust.wat @@ -2,20 +2,20 @@ (type $0 (func (param i32 i32))) (type $1 (func (param i32 i32 i32) (result i32))) (type $2 (func (param i32 i32) (result i32))) - (type $3 (func)) - (type $4 (func (param i32 i32 i32))) - (type $5 (func (param i32 i32 i32 i32 i32))) - (type $6 (func (param i32))) - (type $7 (func (param i32) (result i32))) - (type $8 (func (param i64 i32) (result i32))) - (type $9 (func (param i32) (result i64))) - (type $10 (func (param i32 i32 i32 i32 i32) (result i32))) - (type $11 (func (param i32 i32 i32 i32) (result i32))) - (type $12 (func (param i32 i32 i32 i32))) + (type $3 (func (param i32 i32 i32))) + (type $4 (func (param i32 i32 i32 i32 i32))) + (type $5 (func (param i32))) + (type $6 (func)) + (type $7 (func (param i32 i32 i32 i32))) + (type $8 (func (param i32) (result i32))) + (type $9 (func (param i64 i32) (result i32))) + (type $10 (func (param i32) (result i64))) + (type $11 (func (param i32 i32 i32 i32 i32) (result i32))) + (type $12 (func (param i32 i32 i32 i32) (result i32))) (import "env" "_proxy_log" (func $_proxy_log (param i32 i32 i32) (result i32))) (export "memory" (memory $14)) - (export "__heap_base" (global $16)) - (export "__data_end" (global $17)) + (export "__data_end" (global $16)) + (export "__heap_base" (global $17)) (export "_proxy_onConfigure" (func $_proxy_onConfigure)) (export "_proxy_onStart" (func $_proxy_onStart)) (export "_proxy_onTick" (func $_proxy_onTick)) @@ -23,123 +23,125 @@ (export "_malloc" (func $_malloc)) (export "_free" (func $_free)) (memory $14 17) - (table $13 27 27 funcref) + (table $13 29 29 funcref) (global $15 (mut i32) (i32.const 1048576)) - (global $16 i32 (i32.const 1055076)) - (global $17 i32 (i32.const 1055076)) + (global $16 i32 (i32.const 1055168)) + (global $17 i32 (i32.const 1055168)) (elem $18 $13 (i32.const 1) - $<&T_as_core::fmt::Display>::fmt::h7b31b334e7b8b382 $core::fmt::ArgumentV1::show_usize::hf8ebfbd77fa8a93d $::fmt::hab9915d856568df0 $::fmt::h886976dffb9dde73 $<&T_as_core::fmt::Display>::fmt::hdf3341d54242ca4a $core::fmt::num::imp::::fmt::h4f3293445fab7cb7 $_as_core::fmt::Debug>::fmt::h6105e754ea0aeafb $::fmt::h7a420490f85a5bf3 - $core::ptr::real_drop_in_place::h0013f08692be52e6 $<&mut_W_as_core::fmt::Write>::write_str::hf2482d9015e58e57 $<&mut_W_as_core::fmt::Write>::write_char::h16378c8711c26c01 $<&mut_W_as_core::fmt::Write>::write_fmt::h8b5befc9d6ef0a73 $core::ptr::real_drop_in_place::h5a9a7fbf25605767 $::enabled::h8a7702bb390b0ea2 $::log::h0a6214a4920b004c $::flush::h5e0800c275585e5e - $::enabled::h498b43c893826962 $::log::h2ca6f3fe5cf690d4 $::type_id::h5fb1d47f0acdabcc $core::ptr::real_drop_in_place::h23040579a46f15a6 $::write_str::h7d69c319e62567ea $core::fmt::Write::write_char::he6255f3eabfceb48 $core::fmt::Write::write_fmt::hd43133c0fc77f05d $<&mut_W_as_core::fmt::Write>::write_str::h0573ddc37a895899 - $<&mut_W_as_core::fmt::Write>::write_char::hc454648cbae23e1c $<&mut_W_as_core::fmt::Write>::write_fmt::hc0aee806cb052974) + $<&T_as_core::fmt::Display>::fmt::h22df08b82f0869b0 $std::alloc::default_alloc_error_hook::ha6a42c7acd012d48 $core::fmt::ArgumentV1::show_usize::h42d8eed9ea762fba $<&T_as_core::fmt::Display>::fmt::h678bffb9cdc14530 $<&T_as_core::fmt::Debug>::fmt::h71574e0037640cf9 $core::fmt::num::imp::::fmt::h0a73e93540d1767b $_as_core::fmt::Debug>::fmt::haf7bc23b95386435 $::fmt::h27b79e1831e51870 + $core::ptr::real_drop_in_place::hb47e74d3b71496e8 $<&mut_W_as_core::fmt::Write>::write_str::h78ef2081843123b8 $<&mut_W_as_core::fmt::Write>::write_char::h4363fca537798ae0 $<&mut_W_as_core::fmt::Write>::write_fmt::hf8f3c5f5f4aa3d77 $core::ptr::real_drop_in_place::h38d0d042ad615819 $::enabled::hd59b56d376e99849 $::log::h69caf1c35822af17 $::flush::hf78c792c6fe83c70 + $::fmt::h99349d0cc7fe11e2 $::fmt::h323d5f06fc0398c5 $::enabled::h4d0d6b60212bce89 $::log::hab97ea506f147727 $::type_id::h0651535bade0637a $core::ptr::real_drop_in_place::h4acead9551505031 $::write_str::h3cfa2330727f68d0 $core::fmt::Write::write_char::hddeb2d341a4f7c8e + $core::fmt::Write::write_fmt::hdcf4af1ee4f15333 $<&mut_W_as_core::fmt::Write>::write_str::heb9faa6c9b7a53d6 $<&mut_W_as_core::fmt::Write>::write_char::h66c6e1685ede49cb $<&mut_W_as_core::fmt::Write>::write_fmt::hf64f7e3f726250ce) (data $19 $14 (i32.const 1048576) "warn \00\00\00\00\00\10\00\05\00\00\00logging_rustsrc/lib.rstest trace logging&\00\10\00\12\00\00\00" "test debug logging\00\00@\00\10\00\12\00\00\00test error logging\00\00\\\00\10\00\12\00\00\00test tic" - "k logging\00\00\00x\00\10\00\11\00\00\00\09\00\00\00\04\00\00\00\04\00\00\00\n\00\00\00\0b\00\00\00\0c\00\00\00 \02\10\00\00\00\00\00\e1\00\10\00\02\00\00\00\cc\00\10\00" - "\15\00\00\00\e7\03\00\00\05\00\00\00src/libcore/result.rs: \00\0d\00\00\00\00\00\00\00\01\00\00\00\0e\00\00\00\0f\00\00\00\10\00\00\00 \02\10\00" - "\00\00\00\00a Display implementation returned an error unexpectedlycalle" - "d `Result::unwrap()` on an `Err` value\00\00\80\01\10\00$\00\00\00\f9\01\10\00\17\00\00\00@\02\00\00\09\00\00\00" - "Tried to shrink to a larger capacity()\00\00\0d\00\00\00\00\00\00\00\01\00\00\00\11\00\00\00\12\00\00\00\10\00\00\00" - "SetLoggerError\00\00\e8\01\10\00\11\00\00\00\f9\01\10\00\17\00\00\00\ea\02\00\00\05\00\00\00capacity overflowsrc/lib" - "alloc/raw_vec.rs0\02\10\00 \00\00\00P\02\10\00\12\00\00\00\0d\00\00\00\00\00\00\00\01\00\00\00\13\00\00\00index out of bou" - "nds: the len is but the index is 000102030405060708091011121314" - "1516171819202122232425262728293031323334353637383940414243444546" - "4748495051525354555657585960616263646566676869707172737475767778" - "798081828384858687888990919293949596979899\00\00d\03\10\00\06\00\00\00j\03\10\00\"\00\00\00L\03\10\00" - "\18\00\00\00\09\n\00\00\05\00\00\00src/libcore/slice/mod.rsindex out of range for slic" - "e of length \ac\03\10\00\16\00\00\00\c2\03\10\00\0d\00\00\00L\03\10\00\18\00\00\00\0f\n\00\00\05\00\00\00slice index starts a" - "t but ends at `0x[...]\00\96\04\10\00\0b\00\00\00\n\17\10\00\16\00\00\00\cf\03\10\00\01\00\00\00\80\04\10\00\16\00\00\00\e1\07\00\00\09\00\00\00" - "\e8\16\10\00\0e\00\00\00\f6\16\10\00\04\00\00\00\fa\16\10\00\10\00\00\00\cf\03\10\00\01\00\00\00\80\04\10\00\16\00\00\00\e5\07\00\00\05\00\00\00\a8\16\10\00+\00\00\00\d3\16\10\00\15\00\00\00" - "[\01\00\00\15\00\00\00\96\04\10\00\0b\00\00\00\a1\04\10\00&\00\00\00\c7\04\10\00\08\00\00\00\cf\04\10\00\06\00\00\00\cf\03\10\00\01\00\00\00\80\04\10\00\16\00\00\00\f2\07\00\00\05\00\00\00" - "src/libcore/str/mod.rsbyte index is not a char boundary; it is " - "inside (bytes ) of `\00\00\00\16\05\10\00\02\00\00\00\00\05\10\00\16\00\00\00T\04\00\00\11\00\00\00\00\05\10\00\16\00\00\00H\04\00\00(\00\00\00" - "src/libcore/fmt/mod.rs..\00\01\03\05\05\06\06\03\07\06\08\08\09\11\n\1c\0b\19\0c\14\0d\12\0e\16\0f\04\10\03\12\12\13\09\16\01\17\05\18\02\19\03" - "\1a\07\1c\02\1d\01\1f\16 \03+\06,\02-\0b.\010\031\022\02\a9\02\aa\04\ab\08\fa\02\fb\05\fd\04\fe\03\ff\09\adxy\8b\8d\a20WX\8b\8c\90\1c\1d\dd\0e\0fKL\fb\fc./?" - "\\]_\b5\e2\84\8d\8e\91\92\a9\b1\ba\bb\c5\c6\c9\ca\de\e4\e5\ff\00\04\11\12)147:;=IJ]\84\8e\92\a9\b1\b4\ba\bb\c6\ca\ce\cf\e4\e5\00\04\0d\0e\11\12)14:;EFI" - "J^de\84\91\9b\9d\c9\ce\cf\0d\11)EIWde\8d\91\a9\b4\ba\bb\c5\c9\df\e4\e5\f0\04\0d\11EIde\80\81\84\b2\bc\be\bf\d5\d7\f0\f1\83\85\86\89\8b\8c\98\a0\a4\a6\a8\a9\ac\ba\be" - "\bf\c5\c7\ce\cf\da\dbH\98\bd\cd\c6\ce\cfINOWY^_\89\8e\8f\b1\b6\b7\bf\c1\c6\c7\d7\11\16\17[\\\f6\f7\fe\ff\80\0dmq\de\df\0e\0f\1fno\1c\1d_}~\ae\af\bb\bc\fa\16\17" - "\1e\1fFGNOXZ\\^~\7f\b5\c5\d4\d5\dc\f0\f1\f5rs\8ftu\96\97\c9\ff/_&./\a7\af\b7\bf\c7\cf\d7\df\9a@\97\980\8f\1f\ff\ce\ffNOZ[\07\08\0f\10'/\ee\ef" - "no7=?BE\90\91\fe\ffSgu\c8\c9\d0\d1\d8\d9\e7\fe\ff\00 _\"\82\df\04\82D\08\1b\04\06\11\81\ac\0e\80\ab5\1e\15\80\e0\03\19\08\01\04/\044\04\07\03\01\07\06\07\11\n" - "P\0f\12\07U\08\02\04\1c\n\09\03\08\03\07\03\02\03\03\03\0c\04\05\03\0b\06\01\0e\15\05:\03\11\07\06\05\10\08V\07\02\07\15\0dP\04C\03-\03\01\04\11\06\0f\0c:\04\1d%\0d\06L " - "m\04j%\80\c8\05\82\b0\03\1a\06\82\fd\03Y\07\15\0b\17\09\14\0c\14\0cj\06\n\06\1a\06Y\07+\05F\n,\04\0c\04\01\031\0b,\04\1a\06\0b\03\80\ac\06\n\06\1fAL\04-\03t\08" - "<\03\0f\03<\078\08*\06\82\ff\11\18\08/\11-\03 \10!\0f\80\8c\04\82\97\19\0b\15\88\94\05/\05;\07\02\0e\18\09\80\af1t\0c\80\d6\1a\0c\05\80\ff\05\80\b6\05$\0c\9b\c6\n\d2" - "0\10\84\8d\037\09\81\\\14\80\b8\08\80\ba=5\04\n\068\08F\08\0c\06t\0b\1e\03Z\04Y\09\80\83\18\1c\n\16\09F\n\80\8a\06\ab\a4\0c\17\041\a1\04\81\da&\07\0c\05\05\80\a5\11" - "\81m\10x(*\06L\04\80\8d\04\80\be\03\1b\03\0f\0d\00\06\01\01\03\01\04\02\08\08\09\02\n\05\0b\02\10\01\11\04\12\05\13\11\14\02\15\02\17\02\1a\02\1c\05\1d\08$\01j\03k\02\bc\02\d1" - "\02\d4\0c\d5\09\d6\02\d7\02\da\01\e0\05\e8\02\ee \f0\04\f9\04\0c';>NO\8f\9e\9e\9f\06\07\096=>V\f3\d0\d1\04\14\1867VW\bd5\ce\cf\e0\12\87\89\8e\9e\04\0d\0e\11\12)" - "14:EFIJNOdeZ\\\b6\b7\1b\1c\84\85\097\90\91\a8\07\n;>fi\8f\92o_\ee\efZb\9a\9b'(U\9d\a0\a1\a3\a4\a7\a8\ad\ba\bc\c4\06\0b\0c\15\1d:?EQ\a6" - "\a7\cc\cd\a0\07\19\1a\"%\c5\c6\04 #%&(38:HJLPSUVXZ\\^`cefksx}\7f\8a\a4\aa\af\b0\c0\d0?qr{^\"{\05\03\04-\03e\04\01/." - "\80\82\1d\031\0f\1c\04$\09\1e\05+\05D\04\0e*\80\aa\06$\04$\04(\084\0b\01\80\90\817\09\16\n\08\80\989\03c\08\090\16\05!\03\1b\05\01@8\04K\05/\04\n\07\09\07" - "@ '\04\0c\096\03:\05\1a\07\04\0c\07PI73\0d3\07.\08\n\81&\1f\80\81(\08*\80\a6N\04\1e\0fC\0e\19\07\n\06G\09'\09u\0b?A*\06;\05\n\06Q\06\01\05\10" - "\03\05\80\8b_!H\08\n\80\a6^\"E\0b\n\06\0d\138\08\n6,\04\10\80\c0?@ABCDEF\02\02\02G\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02" + "\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02:;<\02\02\02\02=\02\02>?@ABCDEF\02\02\02G" "\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02" "\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02" "\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02" "\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02" - "\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02H\02\02\02\02\02\02\02\02\02\02\02I\02\02\02\02\02;\02\00\01\02\02\02\02\03\02\02\02\02\04\02\05\06\02\02\02\02\02\02\02\02\02" + "\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02H\02\02\02" + "\02\02\02\02\02\02\02\02I\02\02\02\02\02;\02\00\01\02\02\02\02\03\02\02\02\02\04\02\05\06\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02" "\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02" "\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02" - "\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\07\02\02\02\02\02\02\02" - "\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\80\10\10\00 \00\00\00'\00\00\00\19\00\00\00\80\10\10\00 \00\00\00" - "(\00\00\00 \00\00\00\80\10\10\00 \00\00\00*\00\00\00\19\00\00\00\80\10\10\00 \00\00\00+\00\00\00\18\00\00\00\80\10\10\00 \00\00\00,\00\00\00 \00\00\00\00\00\00\00\00\00\00\00" - "src/libcore/unicode/bool_trie.rs\00\00\c0\fb\ef>\00\00\00\00\00\0e\00\00\00\00\00\00\00\00\00\00\00\00\00\00\f8\ff\fb\ff\ff\ff" - "\07\00\00\00\00\00\00\14\fe!\fe\00\0c\00\00\00\02\00\00\00\00\00\00P\1e \80\00\0c\00\00@\06\00\00\00\00\00\00\10\869\02\00\00\00#\00\be!\00\00\0c\00\00\fc\02\00\00\00\00\00\00\d0" - "\1e \c0\00\0c\00\00\00\04\00\00\00\00\00\00@\01 \80\00\00\00\00\00\11\00\00\00\00\00\00\c0\c1=`\00\0c\00\00\00\02\00\00\00\00\00\00\90D0`\00\0c\00\00\00\03\00\00\00\00\00\00X" - "\1e \80\00\0c\00\00\00\00\84\\\80\00\00\00\00\00\00\00\00\00\00\f2\07\80\7f\00\00\00\00\00\00\00\00\00\00\00\00\f2\1b\00?\00\00\00\00\00\00\00\00\00\03\00\00\a0\02\00\00\00\00\00\00\fe\7f" - "\df\e0\ff\fe\ff\ff\ff\1f@\00\00\00\00\00\00\00\00\00\00\00\00\e0\fdf\00\00\00\c3\01\00\1e\00d \00 \00\00\00\00\00\00\00\e0\00\00\00\00\00\00\1c\00\00\00\1c\00\00\00\0c\00\00\00\0c\00" - "\00\00\00\00\00\00\b0?@\fe\0f \00\00\00\00\008\00\00\00\00\00\00`\00\00\00\00\02\00\00\00\00\00\00\87\01\04\0e\00\00\80\09\00\00\00\00\00\00@\7f\e5\1f\f8\9f\00\00\00\00\00\00\ff\7f" - "\0f\00\00\00\00\00\d0\17\04\00\00\00\00\f8\0f\00\03\00\00\00<;\00\00\00\00\00\00@\a3\03\00\00\00\00\00\00\f0\cf\00\00\00\f7\ff\fd!\10\03\ff\ff\ff\ff\ff\ff\ff\fb\00\10\00\00\00\00\00\00" - "\00\00\ff\ff\ff\ff\01\00\00\00\00\00\00\80\03\00\00\00\00\00\00\00\00\80\00\00\00\00\ff\ff\ff\ff\00\00\00\00\00\fc\00\00\00\00\00\06\00\00\00\00\00\00\00\00\00\80\f7?\00\00\00\c0\00\00\00\00" - "\00\00\00\00\00\00\03\00D\08\00\00`\00\00\000\00\00\00\ff\ff\03\80\00\00\00\00\c0?\00\00\80\ff\03\00\00\00\00\00\07\00\00\00\00\00\c8\13\00\00\00\00 \00\00\00\00\00\00\00\00~f\00" - "\08\10\00\00\00\00\00\10\00\00\00\00\00\00\9d\c1\02\00\00\00\000@\00\00\00\00\00 !\00\00\00\00\00@\00\00\00\00\ff\ff\00\00\ff\ff\00\00\00\00\00\00\00\00\00\01\00\00\00\02\00\03\00\00" - "\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\04\00\00\05\00\00\00\00\00\00\00\00\06\00\00\00\00\00\00\00\00\07\00\00\08\09\n\00\0b\0c\0d\0e\0f\00\00\10\11\12\00\00" - "\13\14\15\16\00\00\17\18\19\1a\1b\00\1c\00\00\00\1d\00\00\00\00\00\00\00\1e\1f \00\00\00\00\00!\00\"\00#$%\00\00\00\00&\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00" + "\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\07\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02" + "\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\02\00\01\03\05\05\06\06\03\07\06\08\08\09\11\n\1c\0b\19\0c\14\0d\12\0e\0d\0f\04\10\03\12\12\13\09\16\01\17\05\18\02\19\03\1a\07\1c\02\1d\01\1f\16" + " \03+\04,\02-\0b.\010\031\022\01\a7\02\a9\02\aa\04\ab\08\fa\02\fb\05\fd\04\fe\03\ff\09\adxy\8b\8d\a20WX\8b\8c\90\1c\1d\dd\0e\0fKL\fb\fc./?\\]_\b5\e2\84" + "\8d\8e\91\92\a9\b1\ba\bb\c5\c6\c9\ca\de\e4\e5\ff\00\04\11\12)147:;=IJ]\84\8e\92\a9\b1\b4\ba\bb\c6\ca\ce\cf\e4\e5\00\04\0d\0e\11\12)14:;EFIJ^de\84\91" + "\9b\9d\c9\ce\cf\0d\11)EIWde\8d\91\a9\b4\ba\bb\c5\c9\df\e4\e5\f0\04\0d\11EIde\80\81\84\b2\bc\be\bf\d5\d7\f0\f1\83\85\8b\a4\a6\be\bf\c5\c7\ce\cf\da\dbH\98\bd\cd\c6\ce\cfI" + "NOWY^_\89\8e\8f\b1\b6\b7\bf\c1\c6\c7\d7\11\16\17[\\\f6\f7\fe\ff\80\0dmq\de\df\0e\0f\1fno\1c\1d_}~\ae\af\bb\bc\fa\16\17\1e\1fFGNOXZ\\^~\7f\b5\c5\d4" + "\d5\dc\f0\f1\f5rs\8ftu\96\97/_&./\a7\af\b7\bf\c7\cf\d7\df\9a@\97\980\8f\1f\c0\c1\ce\ffNOZ[\07\08\0f\10'/\ee\efno7=?BE\90\91\fe\ffSgu\c8\c9" + "\d0\d1\d8\d9\e7\fe\ff\00 _\"\82\df\04\82D\08\1b\04\06\11\81\ac\0e\80\ab5\1e\15\80\e0\03\19\08\01\04/\044\04\07\03\01\07\06\07\11\nP\0f\12\07U\08\02\04\1c\n\09\03\08\03\07\03" + "\02\03\03\03\0c\04\05\03\0b\06\01\0e\15\05:\03\11\07\06\05\10\07W\07\02\07\15\0dP\04C\03-\03\01\04\11\06\0f\0c:\04\1d%_ m\04j%\80\c8\05\82\b0\03\1a\06\82\fd\03Y\07\15" + "\0b\17\09\14\0c\14\0cj\06\n\06\1a\06Y\07+\05F\n,\04\0c\04\01\031\0b,\04\1a\06\0b\03\80\ac\06\n\06\1fAL\04-\03t\08<\03\0f\03<\078\08+\05\82\ff\11\18\08/\11-" + "\03 \10!\0f\80\8c\04\82\97\19\0b\15\88\94\05/\05;\07\02\0e\18\09\80\b00t\0c\80\d6\1a\0c\05\80\ff\05\80\b6\05$\0c\9b\c6\n\d20\10\84\8d\037\09\81\\\14\80\b8\08\80\c705\04" + "\n\068\08F\08\0c\06t\0b\1e\03Z\04Y\09\80\83\18\1c\n\16\09H\08\80\8a\06\ab\a4\0c\17\041\a1\04\81\da&\07\0c\05\05\80\a5\11\81m\10x(*\06L\04\80\8d\04\80\be\03\1b\03\0f" + "\0d\00\06\01\01\03\01\04\02\08\08\09\02\n\05\0b\02\10\01\11\04\12\05\13\11\14\02\15\02\17\02\19\04\1c\05\1d\08$\01j\03k\02\bc\02\d1\02\d4\0c\d5\09\d6\02\d7\02\da\01\e0\05\e1\02\e8\02\ee" + " \f0\04\f9\06\fa\02\0c';>NO\8f\9e\9e\9f\06\07\096=>V\f3\d0\d1\04\14\1867VW\bd5\ce\cf\e0\12\87\89\8e\9e\04\0d\0e\11\12)14:EFIJNOdeZ\\\b6" + "\b7\1b\1c\a8\a9\d8\d9\097\90\91\a8\07\n;>fi\8f\92o_\ee\efZb\9a\9b'(U\9d\a0\a1\a3\a4\a7\a8\ad\ba\bc\c4\06\0b\0c\15\1d:?EQ\a6\a7\cc\cd\a0\07\19\1a\"%>?\c5" + "\c6\04 #%&(38:HJLPSUVXZ\\^`cefksx}\7f\8a\a4\aa\af\b0\c0\d0\0cr\a3\a4\cb\ccno^\"{\05\03\04-\03e\04\01/.\80\82\1d\031\0f" + "\1c\04$\09\1e\05+\05D\04\0e*\80\aa\06$\04$\04(\084\0b\01\80\90\817\09\16\n\08\80\989\03c\08\090\16\05!\03\1b\05\01@8\04K\05/\04\n\07\09\07@ '\04\0c\09" + "6\03:\05\1a\07\04\0c\07PI73\0d3\07.\08\n\81&\1f\80\81(\08*\80\86\17\09N\04\1e\0fC\0e\19\07\n\06G\09'\09u\0b?A*\06;\05\n\06Q\06\01\05\10\03\05\80\8b" + "` H\08\n\80\a6^\"E\0b\n\06\0d\139\07\n6,\04\10\80\c0\00\00\00\00\00\0e\00\00\00\00\00\00\00\00\00\00\00\00\00\00\f8\ff\fb\ff\ff\ff\07\00\00\00\00\00\00\14\fe!\fe\00\0c\00\00\00\02\00\00\00\00\00\00P\1e \80\00\0c\00\00@" + "\06\00\00\00\00\00\00\10\869\02\00\00\00#\00\be!\00\00\0c\00\00\fc\02\00\00\00\00\00\00\d0\1e \c0\00\0c\00\00\00\04\00\00\00\00\00\00@\01 \80\00\00\00\00\00\11\00\00\00\00\00\00\c0" + "\c1=`\00\0c\00\00\00\02\00\00\00\00\00\00\90D0`\00\0c\00\00\00\03\00\00\00\00\00\00X\1e \80\00\0c\00\00\00\00\84\\\80\00\00\00\00\00\00\00\00\00\00\f2\07\80\7f\00\00\00\00\00\00" + "\00\00\00\00\00\00\f2\1f\00?\00\00\00\00\00\00\00\00\00\03\00\00\a0\02\00\00\00\00\00\00\fe\7f\df\e0\ff\fe\ff\ff\ff\1f@\00\00\00\00\00\00\00\00\00\00\00\00\e0\fdf\00\00\00\c3\01\00\1e\00" + "d \00 \00\00\00\00\00\00\00\e0\00\00\00\00\00\00\1c\00\00\00\1c\00\00\00\0c\00\00\00\0c\00\00\00\00\00\00\00\b0?@\fe\0f \00\00\00\00\008\00\00\00\00\00\00`\00\00\00\00\02\00\00" + "\00\00\00\00\87\01\04\0e\00\00\80\09\00\00\00\00\00\00@\7f\e5\1f\f8\9f\00\00\00\00\00\00\ff\7f\0f\00\00\00\00\00\f0\17\04\00\00\00\00\f8\0f\00\03\00\00\00<;\00\00\00\00\00\00@\a3\03\00" + "\00\00\00\00\00\f0\cf\00\00\00\f7\ff\fd!\10\03\ff\ff\ff\ff\ff\ff\ff\fb\00\10\00\00\00\00\00\00\00\00\ff\ff\ff\ff\01\00\00\00\00\00\00\80\03\00\00\00\00\00\00\00\00\80\00\00\00\00\ff\ff\ff\ff" + "\00\00\00\00\00\fc\00\00\00\00\00\06\00\00\00\00\00\00\00\00\00\80\f7?\00\00\00\c0\00\00\00\00\00\00\00\00\00\00\03\00D\08\00\00`\00\00\000\00\00\00\ff\ff\03\80\00\00\00\00\c0?\00\00" + "\80\ff\03\00\00\00\00\00\07\00\00\00\00\00\c83\00\00\00\00 \00\00\00\00\00\00\00\00~f\00\08\10\00\00\00\00\00\10\00\00\00\00\00\00\9d\c1\02\00\00\00\000@\00\00\00\00\00 !\00\00" + "\00\00\00@\00\00\00\00\ff\ff\00\00\ff\ff\00\00\00\00\00\00\00\00\00\01\00\00\00\02\00\03\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\04\00\00\05\00\00\00\00" + "\00\00\00\00\06\00\00\00\00\00\00\00\00\07\00\00\08\09\n\00\0b\0c\0d\0e\0f\00\00\10\11\12\00\00\13\14\15\16\00\00\17\18\19\1a\1b\00\1c\00\00\00\1d\00\00\00\00\00\00\1e\1f !\00\00\00\00\00" + "\"\00#\00$%&\00\00\00\00'\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00" + "\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00()\00\00\00" + "\00\00\00\00\00\00\00\00\00\00\00\00\00*+\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00" + "\00\00,\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00-.\00\00/\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00012\00\00\00\00\00" + "\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\003\00\00\00)\00\00\00\00\00\004\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\005\006\00\00\00\00\00\00\00\00\00\00" + "\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\0078\00\008889\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00" + "\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00 \00\00\00\00\01\00\00\00\00\00\00\00\00\00\c0\07n\f0\00\00\00\00\00\87\00\00\00\00`\00\00\00" + "\00\00\00\00\f0\00\00\00\c0\ff\01\00\00\00\00\00\02\00\00\00\00\00\00\ff\7f\00\00\00\00\00\00\80\03\00\00\00\00\00x\06\07\00\00\00\80\ef\1f\00\00\00\00\00\00\00\08\00\03\00\00\00\00\00\c0\7f" + "\00\1e\00\00\00\00\00\00\00\00\00\00\00\80\d3@\00\00\00\80\f8\07\00\00\03\00\00\00\00\00\00X\01\00\80\00\c0\1f\1f\00\00\00\00\00\00\00\00\ff\\\00\00@\00\00\00\00\00\00\00\00\00\00\f9\a5" + "\0d\00\00\00\00\00\00\00\00\00\00\00\00\80<\b0\01\00\000\00\00\00\00\00\00\00\00\00\00\f8\a7\01\00\00\00\00\00\00\00\00\00\00\00\00(\bf\00\00\00\00\e0\bc\0f\00\00\00\00\00\00\00\80\ff\06" + "\00\00\f0\0c\01\00\00\00\fe\07\00\00\00\00\f8y\80\00~\0e\00\00\00\00\00\fc\7f\03\00\00\00\00\00\00\00\00\00\00\7f\bf\00\00\fc\ff\ff\fcm\00\00\00\00\00\00\00~\b4\bf\00\00\00\00\00\00\00" + "\00\00\a3\00\00\00\00\00\00\00\00\00\00\00\18\00\00\00\00\00\00\00\1f\00\00\00\00\00\00\00\7f\00\00\80\00\00\00\00\00\00\00\80\07\00\00\00\00\00\00\00\00`\00\00\00\00\00\00\00\00\a0\c3\07\f8" + "\e7\0f\00\00\00<\00\00\1c\00\00\00\00\00\00\00\ff\ff\ff\ff\ff\ff\7f\f8\ff\ff\ff\ff\ff\1f \00\10\00\00\f8\fe\ff\00\00\7f\ff\ff\f9\db\07\00\00\00\00\00\00\00\f0\00\00\00\00\7f\00\00\00\00\00" + "\f0\07\00\00\00\00\00\00\00\00\00\00\ff\ff\ff\ff\ff\ff\ff\ff\ff\ff\ff\ff\ff\ff\ff\ff\ff\ff\00\00called `Option::unwrap()` on a `" + "None` valuesrc/libcore/option.rsbegin <= end ( <= ) when slicing" + " ` is out of bounds of `\1c\02\10\00\00\00\00\00h\17\10\00\02\00\00\00: \00\00|\17\10\00\15\00\00\00<\04\00\00\05\00\00\00src/" + "libcore/result.rs)\00\00\16\00\00\00\0c\00\00\00\04\00\00\00\17\00\00\00\18\00\00\00\19\00\00\00,\n\00\00\09\00\00\00\04\00\00\00\04\00\00\00\1a\00\00\00" + "\1b\00\00\00\1c\00\00\00 ((\nError") + (data $20 $14 (i32.const 1054680) "\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00" - "\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00'(\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00)\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00" - "\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00*\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00+,\00\00-\00\00\00\00\00\00" - "\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00./0\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\001\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00" - "\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\002\003\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\0045\00\005556\00\00\00\00\00\00\00\00" - "\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00 " - "\00\00\00\00\01\00\00\00\00\00\00\00\00\00\c0\07n\f0\00\00\00\00\00\87\00\00\00\00`\00\00\00\00\00\00\00\f0\00\00\00\c0\ff\01\00\00\00\00\00\02\00\00\00\00\00\00\ff\7f\00\00\00\00\00\00\80" - "\03\00\00\00\00\00x\06\07\00\00\00\80\ef\1f\00\00\00\00\00\00\00\08\00\03\00\00\00\00\00\c0\7f\00\1e\00\00\00\00\00\00\00\00\00\00\00\80\d3@\00\00\00\80\f8\07\00\00\03\00\00\00\00\00\00X" - "\01\00\80\00\c0\1f\1f\00\00\00\00\00\00\00\00\ff\\\00\00@\00\00\00\00\00\00\00\00\00\00\f9\a5\0d\00\00\00\00\00\00\00\00\00\00\00\00\80<\b0\01\00\000\00\00\00\00\00\00\00\00\00\00\f8\a7" - "\01\00\00\00\00\00\00\00\00\00\00\00\00(\bf\00\00\00\00\e0\bc\0f\00\00\00\00\00\00\00\80\ff\06\fe\07\00\00\00\00\f8y\80\00~\0e\00\00\00\00\00\fc\7f\03\00\00\00\00\00\00\00\00\00\00\7f\bf" - "\00\00\fc\ff\ff\fcm\00\00\00\00\00\00\00~\b4\bf\00\00\00\00\00\00\00\00\00\a3\00\00\00\00\00\00\00\00\00\00\00\18\00\00\00\00\00\00\00\1f\00\00\00\00\00\00\00\7f\00\00\80\07\00\00\00\00\00" - "\00\00\00`\00\00\00\00\00\00\00\00\a0\c3\07\f8\e7\0f\00\00\00<\00\00\1c\00\00\00\00\00\00\00\ff\ff\ff\ff\ff\ff\7f\f8\ff\ff\ff\ff\ff\1f \00\10\00\00\f8\fe\ff\00\00\7f\ff\ff\f9\db\07\00\00" - "\00\00\7f\00\00\00\00\00\f0\07\00\00\00\00\00\00\00\00\00\00\ff\ff\ff\ff\ff\ff\ff\ff\ff\ff\ff\ff\ff\ff\ff\ff\ff\ff\00\00called `Option::unwrap()" - "` on a `None` valuesrc/libcore/option.rsbegin <= end ( <= ) when" - " slicing ` is out of bounds of ` \14\00\00\00\0c\00\00\00\04\00\00\00\15\00\00\00\16\00\00\00\17\00\00\00,\n\00\00" - "\09\00\00\00\04\00\00\00\04\00\00\00\18\00\00\00\19\00\00\00\1a\00\00\00(\n()Error") - (data $20 $14 (i32.const 1054568) "\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00" "\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00" "\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00" "\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00" "\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00" "\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00" - "\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00" - "\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00") - (data $21 $14 (i32.const 1055044) - "p\17\10\00L\19\10\00\0d\00\00\00\00\00\00\00\01\00\00\00\11\00\00\00\12\00\00\00\10\00\00\00") + "\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00") + (data $21 $14 (i32.const 1055160) + "\e0\17\10\00\8c\01\10\00") - (func $_proxy_onConfigure (type $4) + (func $_proxy_onConfigure (type $3) (param $0 i32) (param $1 i32) (param $2 i32) @@ -158,7 +160,7 @@ i32.store block $block i32.const 0 - i32.load offset=1054568 + i32.load offset=1054680 i32.const 2 i32.lt_u br_if $block @@ -169,13 +171,13 @@ local.get $3 i32.store offset=8 i32.const 0 - i32.load offset=1055048 + i32.load offset=1055164 local.set $1 i32.const 0 - i32.load offset=1055044 + i32.load offset=1055160 local.set $2 i32.const 0 - i32.load offset=1054572 + i32.load offset=1054684 local.set $4 local.get $3 i32.const 72 @@ -230,7 +232,7 @@ i32.const 2 i32.store offset=16 local.get $2 - i32.const 1049000 + i32.const 1048972 local.get $4 i32.const 2 i32.eq @@ -240,7 +242,7 @@ i32.const 16 i32.add local.get $1 - i32.const 1049000 + i32.const 1048996 local.get $4 select i32.load offset=16 @@ -252,7 +254,7 @@ global.set $15 ) - (func $<&T_as_core::fmt::Display>::fmt::h7b31b334e7b8b382 (type $2) + (func $<&T_as_core::fmt::Display>::fmt::h22df08b82f0869b0 (type $2) (param $0 i32) (param $1 i32) (result i32) @@ -261,10 +263,10 @@ i32.load local.get $0 i32.load offset=4 - call $core::fmt::Formatter::pad::hacaebd5abd28adf1 + call $core::fmt::Formatter::pad::h65a2184638dd238f ) - (func $_proxy_onStart (type $5) + (func $_proxy_onStart (type $4) (param $0 i32) (param $1 i32) (param $2 i32) @@ -274,212 +276,30 @@ (local $6 i32) (local $7 i32) (local $8 i32) - (local $9 i32) global.get $15 i32.const 64 i32.sub local.tee $5 global.set $15 block $block - block $block_0 - block $block_1 - block $block_2 - block $block_3 - i32.const 0 - i32.load offset=1054568 - i32.const 5 - i32.ge_u - br_if $block_3 - i32.const 4 - local.set $6 - i32.const 0 - i32.load offset=1054568 - i32.const 4 - i32.ge_u - br_if $block_2 - br $block_1 - end ;; $block_3 - i32.const 0 - i32.load offset=1055048 - local.set $6 - i32.const 0 - i32.load offset=1055044 - local.set $7 - i32.const 0 - i32.load offset=1054572 - local.set $8 - local.get $5 - i32.const 56 - i32.add - i32.const 16 - i32.store - local.get $5 - i32.const 48 - i32.add - i64.const 4294967306 - i64.store - local.get $5 - i32.const 40 - i32.add - i32.const 12 - i32.store - local.get $5 - i32.const 32 - i32.add - i32.const 0 - i32.store - local.get $5 - i32.const 28 - i32.add - i32.const 1049120 - i32.store - local.get $5 - i32.const 16 - i32.add - i64.const 1 - i64.store - local.get $5 - i32.const 8 - i32.add - i32.const 12 - i32.store - local.get $5 - i32.const 1048604 - i32.store offset=44 - local.get $5 - i32.const 1048592 - i32.store offset=36 - local.get $5 - i32.const 1048632 - i32.store offset=12 - local.get $5 - i32.const 1048592 - i32.store offset=4 - local.get $5 - i32.const 5 - i32.store - local.get $7 - i32.const 1049000 - local.get $8 - i32.const 2 - i32.eq - local.tee $8 - select - local.get $5 - local.get $6 - i32.const 1049000 - local.get $8 - select - i32.load offset=16 - call_indirect $13 (type $0) - i32.const 4 - local.set $6 - i32.const 0 - i32.load offset=1054568 - i32.const 4 - i32.lt_u - br_if $block_1 - end ;; $block_2 - i32.const 0 - i32.load offset=1055048 - local.set $7 - i32.const 0 - i32.load offset=1055044 - local.set $8 - i32.const 0 - i32.load offset=1054572 - local.set $9 - local.get $5 - i32.const 56 - i32.add - i32.const 17 - i32.store - local.get $5 - i32.const 48 - i32.add - i64.const 4294967306 - i64.store - local.get $5 - i32.const 40 - i32.add - i32.const 12 - i32.store - local.get $5 - i32.const 32 - i32.add - i32.const 0 - i32.store - local.get $5 - i32.const 28 - i32.add - i32.const 1049120 - i32.store - local.get $5 - i32.const 16 - i32.add - i64.const 1 - i64.store - local.get $5 - i32.const 8 - i32.add - i32.const 12 - i32.store - local.get $5 - i32.const 1048604 - i32.store offset=44 - local.get $5 - i32.const 1048592 - i32.store offset=36 - local.get $5 - i32.const 1048660 - i32.store offset=12 - local.get $5 - i32.const 1048592 - i32.store offset=4 - local.get $5 - local.get $6 - i32.store - local.get $8 - i32.const 1049000 - local.get $9 - i32.const 2 - i32.eq - local.tee $6 - select - local.get $5 - local.get $7 - i32.const 1049000 - local.get $6 - select - i32.load offset=16 - call_indirect $13 (type $0) - i32.const 0 - local.set $6 - i32.const 0 - i32.load offset=1054568 - br_if $block_0 - br $block - end ;; $block_1 - i32.const 0 - local.set $6 - i32.const 0 - i32.load offset=1054568 - i32.eqz - br_if $block - end ;; $block_0 - local.get $6 - i32.load offset=1055048 + i32.const 0 + i32.load offset=1054680 + i32.const 5 + i32.lt_u + br_if $block + i32.const 0 + i32.load offset=1055164 + local.set $6 + i32.const 0 + i32.load offset=1055160 local.set $7 - local.get $6 - i32.load offset=1055044 + i32.const 0 + i32.load offset=1054684 local.set $8 - local.get $6 - i32.load offset=1054572 - local.set $9 local.get $5 i32.const 56 i32.add - i32.const 18 + i32.const 16 i32.store local.get $5 i32.const 48 @@ -494,12 +314,12 @@ local.get $5 i32.const 32 i32.add - local.get $6 + i32.const 0 i32.store local.get $5 i32.const 28 i32.add - i32.const 1049120 + i32.const 1049116 i32.store local.get $5 i32.const 16 @@ -518,6082 +338,5814 @@ i32.const 1048592 i32.store offset=36 local.get $5 - i32.const 1048688 + i32.const 1048632 i32.store offset=12 local.get $5 i32.const 1048592 i32.store offset=4 local.get $5 - i32.const 1 + i32.const 5 i32.store + local.get $7 + i32.const 1048972 local.get $8 - i32.const 1049000 - local.get $9 i32.const 2 i32.eq - local.tee $6 + local.tee $8 select local.get $5 - local.get $7 - i32.const 1049000 local.get $6 + i32.const 1048996 + local.get $8 select i32.load offset=16 call_indirect $13 (type $0) end ;; $block - local.get $5 - i32.const 64 - i32.add - global.set $15 - ) - - (func $_proxy_onTick (type $6) - (param $0 i32) - (local $1 i32) - (local $2 i32) - (local $3 i32) - (local $4 i32) - global.get $15 - i32.const 64 - i32.sub - local.tee $1 - global.set $15 - block $block + block $block_0 i32.const 0 - i32.load offset=1054568 - i32.const 3 + i32.load offset=1054680 + i32.const 4 i32.lt_u - br_if $block + br_if $block_0 i32.const 0 - i32.load offset=1055048 - local.set $2 + i32.load offset=1055164 + local.set $6 i32.const 0 - i32.load offset=1055044 - local.set $3 + i32.load offset=1055160 + local.set $7 i32.const 0 - i32.load offset=1054572 - local.set $4 - local.get $1 + i32.load offset=1054684 + local.set $8 + local.get $5 i32.const 56 i32.add - i32.const 24 + i32.const 17 i32.store - local.get $1 + local.get $5 i32.const 48 i32.add i64.const 4294967306 i64.store - local.get $1 + local.get $5 i32.const 40 i32.add i32.const 12 i32.store - local.get $1 + local.get $5 i32.const 32 i32.add i32.const 0 i32.store - local.get $1 + local.get $5 i32.const 28 i32.add - i32.const 1049120 + i32.const 1049116 i32.store - local.get $1 + local.get $5 i32.const 16 i32.add i64.const 1 i64.store - local.get $1 + local.get $5 i32.const 8 i32.add i32.const 12 i32.store - local.get $1 + local.get $5 i32.const 1048604 i32.store offset=44 - local.get $1 + local.get $5 i32.const 1048592 i32.store offset=36 - local.get $1 - i32.const 1048716 + local.get $5 + i32.const 1048660 i32.store offset=12 - local.get $1 + local.get $5 i32.const 1048592 i32.store offset=4 - local.get $1 - i32.const 3 + local.get $5 + i32.const 4 i32.store - local.get $3 - i32.const 1049000 - local.get $4 + local.get $7 + i32.const 1048972 + local.get $8 i32.const 2 i32.eq - local.tee $4 + local.tee $8 select - local.get $1 - local.get $2 - i32.const 1049000 - local.get $4 + local.get $5 + local.get $6 + i32.const 1048996 + local.get $8 select i32.load offset=16 call_indirect $13 (type $0) - end ;; $block - local.get $1 - i32.const 64 - i32.add - global.set $15 - ) - - (func $<&mut_W_as_core::fmt::Write>::write_str::hf2482d9015e58e57 (type $1) - (param $0 i32) - (param $1 i32) - (param $2 i32) - (result i32) - (local $3 i32) - (local $4 i32) - (local $5 i32) - block $block - block $block_0 - block $block_1 - block $block_2 - block $block_3 - block $block_4 - local.get $0 - i32.load - local.tee $0 - i32.const 4 - i32.add - i32.load - local.tee $3 - local.get $0 - i32.const 8 - i32.add - i32.load - local.tee $4 - i32.sub - local.get $2 - i32.ge_u - br_if $block_4 - local.get $4 - local.get $2 - i32.add - local.tee $5 - local.get $4 - i32.lt_u - br_if $block_1 - local.get $3 - i32.const 1 - i32.shl - local.tee $4 - local.get $5 - local.get $5 - local.get $4 - i32.lt_u - select - local.tee $4 - i32.const 0 - i32.lt_s - br_if $block_1 - local.get $3 - i32.eqz - br_if $block_3 - local.get $0 - i32.load - local.get $4 - call $__rust_realloc - local.tee $3 - i32.eqz - br_if $block_2 - br $block_0 - end ;; $block_4 - local.get $0 - i32.load - local.set $3 - br $block - end ;; $block_3 - local.get $4 - i32.const 1 - call $__rust_alloc - local.tee $3 - br_if $block_0 - end ;; $block_2 - unreachable - unreachable - end ;; $block_1 - call $alloc::raw_vec::capacity_overflow::hd685e916963b651d - unreachable - end ;; $block_0 - local.get $0 - local.get $3 + end ;; $block_0 + block $block_1 + i32.const 0 + i32.load offset=1054680 + i32.eqz + br_if $block_1 + i32.const 0 + i32.load offset=1055164 + local.set $6 + i32.const 0 + i32.load offset=1055160 + local.set $7 + i32.const 0 + i32.load offset=1054684 + local.set $8 + local.get $5 + i32.const 56 + i32.add + i32.const 18 i32.store - local.get $0 - i32.const 4 + local.get $5 + i32.const 48 i32.add - local.get $4 + i64.const 4294967306 + i64.store + local.get $5 + i32.const 40 + i32.add + i32.const 12 i32.store - local.get $0 + local.get $5 + i32.const 32 + i32.add + i32.const 0 + i32.store + local.get $5 + i32.const 28 + i32.add + i32.const 1049116 + i32.store + local.get $5 + i32.const 16 + i32.add + i64.const 1 + i64.store + local.get $5 i32.const 8 i32.add - i32.load - local.set $4 - end ;; $block - local.get $0 - i32.const 8 - i32.add - local.get $4 - local.get $2 - i32.add - i32.store - local.get $3 - local.get $4 + i32.const 12 + i32.store + local.get $5 + i32.const 1048604 + i32.store offset=44 + local.get $5 + i32.const 1048592 + i32.store offset=36 + local.get $5 + i32.const 1048688 + i32.store offset=12 + local.get $5 + i32.const 1048592 + i32.store offset=4 + local.get $5 + i32.const 1 + i32.store + local.get $7 + i32.const 1048972 + local.get $8 + i32.const 2 + i32.eq + local.tee $8 + select + local.get $5 + local.get $6 + i32.const 1048996 + local.get $8 + select + i32.load offset=16 + call_indirect $13 (type $0) + end ;; $block_1 + local.get $5 + i32.const 64 i32.add - local.get $1 - local.get $2 - call $memcpy - drop - i32.const 0 + global.set $15 ) - (func $__rust_realloc (type $2) + (func $_proxy_onTick (type $5) (param $0 i32) - (param $1 i32) - (result i32) - local.get $0 + (local $1 i32) + (local $2 i32) + (local $3 i32) + (local $4 i32) + global.get $15 + i32.const 64 + i32.sub + local.tee $1 + global.set $15 + block $block + i32.const 0 + i32.load offset=1054680 + i32.const 3 + i32.lt_u + br_if $block + i32.const 0 + i32.load offset=1055164 + local.set $2 + i32.const 0 + i32.load offset=1055160 + local.set $3 + i32.const 0 + i32.load offset=1054684 + local.set $4 + local.get $1 + i32.const 56 + i32.add + i32.const 24 + i32.store + local.get $1 + i32.const 48 + i32.add + i64.const 4294967306 + i64.store + local.get $1 + i32.const 40 + i32.add + i32.const 12 + i32.store + local.get $1 + i32.const 32 + i32.add + i32.const 0 + i32.store + local.get $1 + i32.const 28 + i32.add + i32.const 1049116 + i32.store + local.get $1 + i32.const 16 + i32.add + i64.const 1 + i64.store + local.get $1 + i32.const 8 + i32.add + i32.const 12 + i32.store + local.get $1 + i32.const 1048604 + i32.store offset=44 + local.get $1 + i32.const 1048592 + i32.store offset=36 + local.get $1 + i32.const 1048716 + i32.store offset=12 + local.get $1 + i32.const 1048592 + i32.store offset=4 + local.get $1 + i32.const 3 + i32.store + local.get $3 + i32.const 1048972 + local.get $4 + i32.const 2 + i32.eq + local.tee $4 + select + local.get $1 + local.get $2 + i32.const 1048996 + local.get $4 + select + i32.load offset=16 + call_indirect $13 (type $0) + end ;; $block local.get $1 - call $__rdl_realloc + i32.const 64 + i32.add + global.set $15 ) - (func $__rust_alloc (type $2) + (func $core::ptr::real_drop_in_place::hb47e74d3b71496e8 (type $5) (param $0 i32) - (param $1 i32) - (result i32) - local.get $0 - local.get $1 - call $__rdl_alloc - ) - - (func $alloc::raw_vec::capacity_overflow::hd685e916963b651d (type $3) - i32.const 1049040 - call $core::panicking::panic::h62fdcfa056e70982 - unreachable ) - (func $<&mut_W_as_core::fmt::Write>::write_char::h16378c8711c26c01 (type $2) + (func $<&mut_W_as_core::fmt::Write>::write_str::h78ef2081843123b8 (type $1) (param $0 i32) (param $1 i32) + (param $2 i32) (result i32) - (local $2 i32) (local $3 i32) (local $4 i32) (local $5 i32) - global.get $15 - i32.const 16 - i32.sub - local.tee $2 - global.set $15 - local.get $0 - i32.load - local.set $0 block $block block $block_0 block $block_1 block $block_2 - block $block_3 - block $block_4 - block $block_5 - block $block_6 - block $block_7 - block $block_8 - block $block_9 - block $block_10 - block $block_11 - local.get $1 - i32.const 128 - i32.ge_u - br_if $block_11 - local.get $0 - i32.load offset=8 - local.tee $3 - local.get $0 - i32.const 4 - i32.add - i32.load - i32.ne - br_if $block_10 - local.get $3 - i32.const 1 - i32.add - local.tee $4 - local.get $3 - i32.lt_u - br_if $block_0 - local.get $3 - i32.const 1 - i32.shl - local.tee $5 - local.get $4 - local.get $4 - local.get $5 - i32.lt_u - select - local.tee $5 - i32.const 0 - i32.lt_s - br_if $block_0 - local.get $3 - i32.eqz - br_if $block_7 - local.get $0 - i32.load - local.get $5 - call $__rust_realloc - local.tee $4 - br_if $block_6 - br $block - end ;; $block_11 - local.get $2 - i32.const 0 - i32.store offset=12 - local.get $1 - i32.const 2048 - i32.ge_u - br_if $block_9 - local.get $2 - local.get $1 - i32.const 63 - i32.and - i32.const 128 - i32.or - i32.store8 offset=13 - local.get $2 - local.get $1 - i32.const 6 - i32.shr_u - i32.const 31 - i32.and - i32.const 192 - i32.or - i32.store8 offset=12 - i32.const 2 - local.set $1 - br $block_8 - end ;; $block_10 - local.get $0 - i32.load - local.set $4 - br $block_5 - end ;; $block_9 - block $block_12 - local.get $1 - i32.const 65535 - i32.gt_u - br_if $block_12 - local.get $2 - local.get $1 - i32.const 63 - i32.and - i32.const 128 - i32.or - i32.store8 offset=14 - local.get $2 - local.get $1 - i32.const 6 - i32.shr_u - i32.const 63 - i32.and - i32.const 128 - i32.or - i32.store8 offset=13 - local.get $2 - local.get $1 - i32.const 12 - i32.shr_u - i32.const 15 - i32.and - i32.const 224 - i32.or - i32.store8 offset=12 - i32.const 3 - local.set $1 - br $block_8 - end ;; $block_12 - local.get $2 - local.get $1 - i32.const 63 - i32.and - i32.const 128 - i32.or - i32.store8 offset=15 - local.get $2 - local.get $1 - i32.const 18 - i32.shr_u - i32.const 240 - i32.or - i32.store8 offset=12 - local.get $2 - local.get $1 - i32.const 6 - i32.shr_u - i32.const 63 - i32.and - i32.const 128 - i32.or - i32.store8 offset=14 - local.get $2 - local.get $1 - i32.const 12 - i32.shr_u - i32.const 63 - i32.and - i32.const 128 - i32.or - i32.store8 offset=13 - i32.const 4 - local.set $1 - end ;; $block_8 - block $block_13 - local.get $0 - i32.const 4 - i32.add - i32.load - local.tee $4 - local.get $0 - i32.const 8 - i32.add - i32.load - local.tee $3 - i32.sub - local.get $1 - i32.ge_u - br_if $block_13 - local.get $3 - local.get $1 - i32.add - local.tee $5 - local.get $3 - i32.lt_u - br_if $block_0 - local.get $4 - i32.const 1 - i32.shl - local.tee $3 - local.get $5 - local.get $5 - local.get $3 - i32.lt_u - select - local.tee $3 - i32.const 0 - i32.lt_s - br_if $block_0 - local.get $4 - i32.eqz - br_if $block_4 - local.get $0 - i32.load - local.get $3 - call $__rust_realloc - local.tee $4 - br_if $block_3 - br $block - end ;; $block_13 - local.get $0 - i32.load - local.set $4 - br $block_2 - end ;; $block_7 - local.get $5 - i32.const 1 - call $__rust_alloc - local.tee $4 - i32.eqz - br_if $block - end ;; $block_6 - local.get $0 - local.get $4 - i32.store - local.get $0 - i32.const 4 - i32.add - local.get $5 - i32.store - local.get $0 - i32.const 8 - i32.add - i32.load - local.set $3 - end ;; $block_5 - local.get $4 - local.get $3 - i32.add - local.get $1 - i32.store8 - local.get $0 - i32.const 8 - i32.add - local.tee $0 - local.get $0 - i32.load - i32.const 1 - i32.add - i32.store - br $block_1 - end ;; $block_4 - local.get $3 - i32.const 1 - call $__rust_alloc - local.tee $4 - i32.eqz - br_if $block - end ;; $block_3 - local.get $0 - local.get $4 - i32.store local.get $0 + i32.load + local.tee $0 i32.const 4 i32.add - local.get $3 - i32.store + i32.load + local.tee $3 local.get $0 i32.const 8 i32.add i32.load + local.tee $4 + i32.sub + local.get $2 + i32.lt_u + br_if $block_2 + local.get $0 + i32.load local.set $3 + br $block_1 end ;; $block_2 - local.get $0 - i32.const 8 + local.get $4 + local.get $2 i32.add + local.tee $5 + local.get $4 + i32.lt_u + br_if $block local.get $3 - local.get $1 - i32.add - i32.store + i32.const 1 + i32.shl + local.tee $4 + local.get $5 + local.get $5 local.get $4 + i32.lt_u + select + local.tee $4 + i32.const 0 + i32.lt_s + br_if $block + block $block_3 + block $block_4 + local.get $3 + br_if $block_4 + local.get $4 + i32.const 1 + call $__rust_alloc + local.set $3 + br $block_3 + end ;; $block_4 + local.get $0 + i32.load + local.get $4 + call $__rust_realloc + local.set $3 + end ;; $block_3 + local.get $3 + i32.eqz + br_if $block_0 + local.get $0 local.get $3 + i32.store + local.get $0 + i32.const 4 i32.add - local.get $2 - i32.const 12 + local.get $4 + i32.store + local.get $0 + i32.const 8 i32.add - local.get $1 - call $memcpy - drop + i32.load + local.set $4 end ;; $block_1 + local.get $0 + i32.const 8 + i32.add + local.get $4 local.get $2 - i32.const 16 i32.add - global.set $15 + i32.store + local.get $3 + local.get $4 + i32.add + local.get $1 + local.get $2 + call $memcpy + drop i32.const 0 return end ;; $block_0 - call $alloc::raw_vec::capacity_overflow::hd685e916963b651d + local.get $4 + i32.const 1 + i32.const 0 + i32.load offset=1055156 + local.tee $0 + i32.const 2 + local.get $0 + select + call_indirect $13 (type $0) + unreachable unreachable end ;; $block - unreachable + call $alloc::raw_vec::capacity_overflow::h8b890ddaa46c20bf unreachable ) - (func $<&mut_W_as_core::fmt::Write>::write_fmt::h8b5befc9d6ef0a73 (type $2) + (func $__rust_alloc (type $2) (param $0 i32) (param $1 i32) (result i32) - (local $2 i32) - global.get $15 - i32.const 32 - i32.sub - local.tee $2 - global.set $15 - local.get $2 local.get $0 - i32.load - i32.store offset=4 - local.get $2 - i32.const 8 - i32.add - i32.const 16 - i32.add - local.get $1 - i32.const 16 - i32.add - i64.load align=4 - i64.store - local.get $2 - i32.const 8 - i32.add - i32.const 8 - i32.add - local.get $1 - i32.const 8 - i32.add - i64.load align=4 - i64.store - local.get $2 local.get $1 - i64.load align=4 - i64.store offset=8 - local.get $2 - i32.const 4 - i32.add - i32.const 1048724 - local.get $2 - i32.const 8 - i32.add - call $core::fmt::write::h8cfd01c67a4a46c9 - local.set $1 - local.get $2 - i32.const 32 - i32.add - global.set $15 + call $__rdl_alloc + ) + + (func $__rust_realloc (type $2) + (param $0 i32) + (param $1 i32) + (result i32) + local.get $0 local.get $1 + call $__rdl_realloc ) - (func $core::fmt::write::h8cfd01c67a4a46c9 (type $1) + (func $std::alloc::default_alloc_error_hook::ha6a42c7acd012d48 (type $0) + (param $0 i32) + (param $1 i32) + ) + + (func $alloc::raw_vec::capacity_overflow::h8b890ddaa46c20bf (type $6) + i32.const 1049036 + call $core::panicking::panic::h540eb5ee6ff533c2 + unreachable + ) + + (func $<&mut_W_as_core::fmt::Write>::write_char::h4363fca537798ae0 (type $2) (param $0 i32) (param $1 i32) - (param $2 i32) (result i32) + (local $2 i32) (local $3 i32) (local $4 i32) (local $5 i32) - (local $6 i32) - (local $7 i32) - (local $8 i32) - (local $9 i32) - (local $10 i32) - (local $11 i32) - (local $12 i32) global.get $15 - i32.const 64 + i32.const 16 i32.sub - local.tee $3 + local.tee $2 global.set $15 - local.get $3 - i32.const 36 - i32.add - local.get $1 - i32.store - local.get $3 - i32.const 52 - i32.add - local.get $2 - i32.const 20 - i32.add - i32.load - local.tee $4 - i32.store - local.get $3 - i32.const 3 - i32.store8 offset=56 - local.get $3 - i32.const 44 - i32.add - local.get $2 - i32.load offset=16 - local.tee $5 - local.get $4 - i32.const 3 - i32.shl - i32.add - i32.store - local.get $3 - i64.const 137438953472 - i64.store offset=8 - local.get $3 local.get $0 - i32.store offset=32 - i32.const 0 - local.set $6 - local.get $3 - i32.const 0 - i32.store offset=24 - local.get $3 - i32.const 0 - i32.store offset=16 - local.get $3 - local.get $5 - i32.store offset=48 - local.get $3 - local.get $5 - i32.store offset=40 + i32.load + local.set $0 block $block block $block_0 block $block_1 block $block_2 - local.get $2 - i32.load offset=8 - local.tee $7 - i32.eqz - br_if $block_2 - local.get $2 - i32.load - local.set $8 - local.get $2 - i32.load offset=4 - local.tee $9 - local.get $2 - i32.const 12 - i32.add - i32.load - local.tee $5 - local.get $5 - local.get $9 - i32.gt_u - select - local.tee $10 - i32.eqz - br_if $block_1 - local.get $0 - local.get $8 - i32.load - local.get $8 - i32.load offset=4 - local.get $1 - i32.load offset=12 - call_indirect $13 (type $1) - br_if $block_0 - local.get $8 - i32.const 8 - i32.add - local.set $5 - local.get $3 - i32.const 56 - i32.add - local.set $1 - local.get $3 - i32.const 52 - i32.add - local.set $11 - local.get $3 - i32.const 48 - i32.add - local.set $12 - i32.const 1 - local.set $6 block $block_3 - loop $loop + local.get $1 + i32.const 128 + i32.lt_u + br_if $block_3 + local.get $2 + i32.const 0 + i32.store offset=12 + block $block_4 + block $block_5 + local.get $1 + i32.const 2047 + i32.gt_u + br_if $block_5 + local.get $2 + local.get $1 + i32.const 63 + i32.and + i32.const 128 + i32.or + i32.store8 offset=13 + local.get $2 + local.get $1 + i32.const 6 + i32.shr_u + i32.const 31 + i32.and + i32.const 192 + i32.or + i32.store8 offset=12 + i32.const 2 + local.set $1 + br $block_4 + end ;; $block_5 + block $block_6 + local.get $1 + i32.const 65535 + i32.gt_u + br_if $block_6 + local.get $2 + local.get $1 + i32.const 63 + i32.and + i32.const 128 + i32.or + i32.store8 offset=14 + local.get $2 + local.get $1 + i32.const 6 + i32.shr_u + i32.const 63 + i32.and + i32.const 128 + i32.or + i32.store8 offset=13 + local.get $2 + local.get $1 + i32.const 12 + i32.shr_u + i32.const 15 + i32.and + i32.const 224 + i32.or + i32.store8 offset=12 + i32.const 3 + local.set $1 + br $block_4 + end ;; $block_6 + local.get $2 + local.get $1 + i32.const 63 + i32.and + i32.const 128 + i32.or + i32.store8 offset=15 + local.get $2 + local.get $1 + i32.const 18 + i32.shr_u + i32.const 240 + i32.or + i32.store8 offset=12 + local.get $2 + local.get $1 + i32.const 6 + i32.shr_u + i32.const 63 + i32.and + i32.const 128 + i32.or + i32.store8 offset=14 + local.get $2 local.get $1 - local.get $7 - i32.const 32 - i32.add - i32.load8_u - i32.store8 - local.get $3 - local.get $7 - i32.const 8 - i32.add - i32.load - i32.store offset=12 - local.get $3 - local.get $7 i32.const 12 - i32.add - i32.load - i32.store offset=8 - i32.const 0 - local.set $2 - block $block_4 - block $block_5 - block $block_6 - block $block_7 - block $block_8 - local.get $7 - i32.const 24 - i32.add - i32.load - local.tee $0 - i32.const 1 - i32.eq - br_if $block_8 - block $block_9 - local.get $0 - i32.const 2 - i32.eq - br_if $block_9 - local.get $0 - i32.const 3 - i32.eq - br_if $block_4 - local.get $7 - i32.const 28 - i32.add - i32.load - local.set $4 - br $block_7 - end ;; $block_9 - local.get $3 - i32.const 8 - i32.add - i32.const 32 - i32.add - local.tee $4 - i32.load - local.tee $0 - local.get $3 - i32.const 8 - i32.add - i32.const 36 - i32.add - i32.load - i32.eq - br_if $block_6 - local.get $4 - local.get $0 - i32.const 8 - i32.add - i32.store - local.get $0 - i32.load offset=4 - i32.const 2 - i32.ne - br_if $block_4 - local.get $0 - i32.load - i32.load - local.set $4 - br $block_7 - end ;; $block_8 - local.get $7 - i32.const 28 - i32.add - i32.load - local.tee $0 - local.get $11 - i32.load - local.tee $4 - i32.ge_u - br_if $block_5 - local.get $12 - i32.load - local.get $0 - i32.const 3 - i32.shl - i32.add - local.tee $0 - i32.load offset=4 - i32.const 2 - i32.ne - br_if $block_4 - local.get $0 - i32.load - i32.load - local.set $4 - end ;; $block_7 - i32.const 1 - local.set $2 - br $block_4 - end ;; $block_6 - br $block_4 - end ;; $block_5 - i32.const 1049824 + i32.shr_u + i32.const 63 + i32.and + i32.const 128 + i32.or + i32.store8 offset=13 + i32.const 4 + local.set $1 + end ;; $block_4 + block $block_7 + block $block_8 local.get $0 - local.get $4 - call $core::panicking::panic_bounds_check::h51667a9f831439a7 - unreachable - end ;; $block_4 - local.get $3 - i32.const 8 - i32.add - i32.const 12 + i32.const 4 + i32.add + i32.load + local.tee $3 + local.get $0 + i32.const 8 + i32.add + i32.load + local.tee $4 + i32.sub + local.get $1 + i32.lt_u + br_if $block_8 + local.get $0 + i32.load + local.set $3 + br $block_7 + end ;; $block_8 + local.get $4 + local.get $1 i32.add + local.tee $5 local.get $4 - i32.store + i32.lt_u + br_if $block local.get $3 - i32.const 8 - i32.add - i32.const 8 - i32.add - local.get $2 - i32.store + i32.const 1 + i32.shl + local.tee $4 + local.get $5 + local.get $5 + local.get $4 + i32.lt_u + select + local.tee $4 i32.const 0 - local.set $2 - block $block_10 - block $block_11 - block $block_12 - block $block_13 - block $block_14 - local.get $7 - i32.const 16 - i32.add - i32.load - local.tee $0 - i32.const 1 - i32.eq - br_if $block_14 - block $block_15 - local.get $0 - i32.const 2 - i32.eq - br_if $block_15 - local.get $0 - i32.const 3 - i32.eq - br_if $block_10 - local.get $7 - i32.const 20 - i32.add - i32.load - local.set $4 - br $block_13 - end ;; $block_15 - local.get $3 - i32.const 8 - i32.add - i32.const 32 - i32.add - local.tee $4 - i32.load - local.tee $0 - local.get $3 - i32.const 8 - i32.add - i32.const 36 - i32.add - i32.load - i32.eq - br_if $block_12 - local.get $4 - local.get $0 - i32.const 8 - i32.add - i32.store - local.get $0 - i32.load offset=4 - i32.const 2 - i32.ne - br_if $block_10 - local.get $0 - i32.load - i32.load - local.set $4 - br $block_13 - end ;; $block_14 - local.get $7 - i32.const 20 - i32.add - i32.load - local.tee $0 - local.get $11 - i32.load - local.tee $4 - i32.ge_u - br_if $block_11 - local.get $12 - i32.load - local.get $0 - i32.const 3 - i32.shl - i32.add - local.tee $0 - i32.load offset=4 - i32.const 2 - i32.ne - br_if $block_10 - local.get $0 - i32.load - i32.load - local.set $4 - end ;; $block_13 - i32.const 1 - local.set $2 - br $block_10 - end ;; $block_12 - br $block_10 - end ;; $block_11 - i32.const 1049824 + i32.lt_s + br_if $block + block $block_9 + block $block_10 + local.get $3 + br_if $block_10 + local.get $4 + i32.const 1 + call $__rust_alloc + local.set $3 + br $block_9 + end ;; $block_10 local.get $0 + i32.load local.get $4 - call $core::panicking::panic_bounds_check::h51667a9f831439a7 - unreachable - end ;; $block_10 + call $__rust_realloc + local.set $3 + end ;; $block_9 local.get $3 - i32.const 8 - i32.add - i32.const 20 + i32.eqz + br_if $block_1 + local.get $0 + local.get $3 + i32.store + local.get $0 + i32.const 4 i32.add local.get $4 i32.store - local.get $3 + local.get $0 i32.const 8 i32.add - i32.const 16 - i32.add - local.get $2 - i32.store - block $block_16 - block $block_17 - block $block_18 - local.get $7 - i32.load - i32.const 1 - i32.ne - br_if $block_18 - local.get $7 - i32.const 4 - i32.add - i32.load - local.tee $2 - local.get $11 - i32.load - local.tee $4 - i32.ge_u - br_if $block_16 - local.get $12 - i32.load - local.get $2 - i32.const 3 - i32.shl - i32.add - local.set $2 - br $block_17 - end ;; $block_18 - local.get $3 - i32.const 8 - i32.add - i32.const 32 - i32.add - local.tee $4 - i32.load - local.tee $2 - local.get $3 - i32.const 8 - i32.add - i32.const 36 - i32.add - i32.load - i32.eq - br_if $block_3 - local.get $4 - local.get $2 - i32.const 8 - i32.add - i32.store - end ;; $block_17 - local.get $2 - i32.load - local.get $3 - i32.const 8 - i32.add - local.get $2 - i32.const 4 - i32.add - i32.load - call_indirect $13 (type $2) - br_if $block_0 - local.get $6 - local.get $10 - i32.ge_u - br_if $block_1 - local.get $5 - i32.const 4 - i32.add - local.set $2 - local.get $5 - i32.load - local.set $4 - local.get $5 - i32.const 8 - i32.add - local.set $5 - local.get $7 - i32.const 36 - i32.add - local.set $7 - local.get $6 - i32.const 1 - i32.add - local.set $6 - local.get $3 - i32.const 8 - i32.add - i32.const 24 - i32.add - i32.load + i32.load + local.set $4 + end ;; $block_7 + local.get $0 + i32.const 8 + i32.add + local.get $4 + local.get $1 + i32.add + i32.store + local.get $3 + local.get $4 + i32.add + local.get $2 + i32.const 12 + i32.add + local.get $1 + call $memcpy + drop + br $block_2 + end ;; $block_3 + block $block_11 + local.get $0 + i32.load offset=8 + local.tee $4 + local.get $0 + i32.const 4 + i32.add + i32.load + i32.ne + br_if $block_11 + local.get $4 + i32.const 1 + i32.add + local.tee $3 + local.get $4 + i32.lt_u + br_if $block + local.get $4 + i32.const 1 + i32.shl + local.tee $5 + local.get $3 + local.get $3 + local.get $5 + i32.lt_u + select + local.tee $3 + i32.const 0 + i32.lt_s + br_if $block + block $block_12 + block $block_13 local.get $4 - local.get $2 - i32.load + br_if $block_13 local.get $3 - i32.const 8 - i32.add - i32.const 28 - i32.add - i32.load - i32.load offset=12 - call_indirect $13 (type $1) - i32.eqz - br_if $loop - br $block_0 - end ;; $block_16 - end ;; $loop - i32.const 1049840 - local.get $2 + i32.const 1 + call $__rust_alloc + local.set $4 + br $block_12 + end ;; $block_13 + local.get $0 + i32.load + local.get $3 + call $__rust_realloc + local.set $4 + end ;; $block_12 local.get $4 - call $core::panicking::panic_bounds_check::h51667a9f831439a7 - unreachable - end ;; $block_3 - i32.const 1049648 - call $core::panicking::panic::h62fdcfa056e70982 - unreachable - end ;; $block_2 - local.get $2 - i32.load - local.set $8 - local.get $2 - i32.load offset=4 - local.tee $9 - local.get $4 - local.get $4 - local.get $9 - i32.gt_u - select - local.tee $10 - i32.eqz - br_if $block_1 - local.get $0 - local.get $8 - i32.load - local.get $8 - i32.load offset=4 - local.get $1 - i32.load offset=12 - call_indirect $13 (type $1) - br_if $block_0 - local.get $8 - i32.const 8 - i32.add - local.set $7 - local.get $3 - i32.const 32 - i32.add - local.set $0 - local.get $3 - i32.const 36 - i32.add - local.set $1 - i32.const 1 - local.set $6 - loop $loop_0 - local.get $5 - i32.load - local.get $3 - i32.const 8 - i32.add - local.get $5 - i32.const 4 - i32.add - i32.load - call_indirect $13 (type $2) - br_if $block_0 - local.get $6 - local.get $10 - i32.ge_u - br_if $block_1 - local.get $7 - i32.const 4 - i32.add - local.set $2 - local.get $7 - i32.load - local.set $4 - local.get $5 - i32.const 8 - i32.add - local.set $5 - local.get $7 - i32.const 8 - i32.add - local.set $7 - local.get $6 - i32.const 1 - i32.add - local.set $6 + i32.eqz + br_if $block_0 + local.get $0 + local.get $4 + i32.store + local.get $0 + i32.const 4 + i32.add + local.get $3 + i32.store + local.get $0 + i32.load offset=8 + local.set $4 + end ;; $block_11 local.get $0 i32.load local.get $4 - local.get $2 - i32.load + i32.add local.get $1 - i32.load - i32.load offset=12 - call_indirect $13 (type $1) - i32.eqz - br_if $loop_0 - br $block_0 - end ;; $loop_0 + i32.store8 + local.get $0 + local.get $0 + i32.load offset=8 + i32.const 1 + i32.add + i32.store offset=8 + end ;; $block_2 + local.get $2 + i32.const 16 + i32.add + global.set $15 + i32.const 0 + return end ;; $block_1 - local.get $9 - local.get $6 - i32.le_u - br_if $block - local.get $3 - i32.const 32 - i32.add - i32.load - local.get $8 - local.get $6 - i32.const 3 - i32.shl - i32.add - local.tee $7 - i32.load - local.get $7 - i32.load offset=4 - local.get $3 - i32.const 36 - i32.add - i32.load - i32.load offset=12 - call_indirect $13 (type $1) - i32.eqz - br_if $block + local.get $4 + i32.const 1 + i32.const 0 + i32.load offset=1055156 + local.tee $0 + i32.const 2 + local.get $0 + select + call_indirect $13 (type $0) + unreachable + unreachable end ;; $block_0 local.get $3 - i32.const 64 - i32.add - global.set $15 i32.const 1 - return + i32.const 0 + i32.load offset=1055156 + local.tee $0 + i32.const 2 + local.get $0 + select + call_indirect $13 (type $0) + unreachable + unreachable end ;; $block - local.get $3 - i32.const 64 - i32.add - global.set $15 - i32.const 0 + call $alloc::raw_vec::capacity_overflow::h8b890ddaa46c20bf + unreachable ) - (func $core::result::unwrap_failed::h7b72eb0c479e1bd5 (type $3) - (local $0 i32) + (func $<&mut_W_as_core::fmt::Write>::write_fmt::hf8f3c5f5f4aa3d77 (type $2) + (param $0 i32) + (param $1 i32) + (result i32) + (local $2 i32) global.get $15 - i32.const 64 + i32.const 32 i32.sub - local.tee $0 + local.tee $2 global.set $15 + local.get $2 local.get $0 - i32.const 43 - i32.store offset=12 - local.get $0 - i32.const 1048891 - i32.store offset=8 - local.get $0 - i32.const 52 + i32.load + i32.store offset=4 + local.get $2 + i32.const 8 i32.add - i32.const 3 - i32.store - local.get $0 - i32.const 36 + i32.const 16 i32.add - i32.const 2 - i32.store - local.get $0 - i32.const 1 - i32.store offset=44 - local.get $0 - i64.const 2 - i64.store offset=20 align=4 - local.get $0 - i32.const 1048748 - i32.store offset=16 - local.get $0 - local.get $0 - i32.const 56 + local.get $1 + i32.const 16 i32.add - i32.store offset=48 - local.get $0 - local.get $0 + i64.load align=4 + i64.store + local.get $2 i32.const 8 i32.add - i32.store offset=40 - local.get $0 - local.get $0 - i32.const 40 + i32.const 8 i32.add - i32.store offset=32 - local.get $0 - i32.const 16 + local.get $1 + i32.const 8 i32.add - i32.const 1048764 - call $core::panicking::panic_fmt::hc4f83bfed80aeabd - unreachable + i64.load align=4 + i64.store + local.get $2 + local.get $1 + i64.load align=4 + i64.store offset=8 + local.get $2 + i32.const 4 + i32.add + i32.const 1048724 + local.get $2 + i32.const 8 + i32.add + call $core::fmt::write::h9ffb25a5a03fc281 + local.set $1 + local.get $2 + i32.const 32 + i32.add + global.set $15 + local.get $1 ) - (func $::fmt::hab9915d856568df0 (type $2) + (func $core::fmt::write::h9ffb25a5a03fc281 (type $1) (param $0 i32) (param $1 i32) + (param $2 i32) (result i32) - (local $2 i32) (local $3 i32) (local $4 i32) (local $5 i32) + (local $6 i32) + (local $7 i32) + (local $8 i32) + (local $9 i32) + (local $10 i32) global.get $15 - i32.const 80 + i32.const 64 i32.sub - local.tee $2 - global.set $15 - i32.const 1 - local.set $3 - block $block - local.get $1 - i32.load offset=24 - i32.const 1049024 - i32.const 14 - local.get $1 - i32.const 28 - i32.add - local.tee $4 - i32.load - i32.load offset=12 - call_indirect $13 (type $1) - br_if $block - local.get $1 - i32.const 24 - i32.add - i32.load - local.set $5 - local.get $4 - i32.load - i32.load offset=12 - local.set $4 - block $block_0 - block $block_1 - local.get $1 - i32.load8_u - i32.const 4 - i32.and - br_if $block_1 - i32.const 1 - local.set $3 - local.get $5 - i32.const 1054554 - i32.const 1 - local.get $4 - call_indirect $13 (type $1) - br_if $block - local.get $1 - i32.const 1048996 - i32.const 2 - call $core::fmt::Formatter::pad::hacaebd5abd28adf1 - i32.eqz - br_if $block_0 - br $block - end ;; $block_1 - local.get $5 - i32.const 1054552 - i32.const 2 - local.get $4 - call_indirect $13 (type $1) - br_if $block - local.get $1 - i32.load - local.set $4 - local.get $2 - i32.const 52 - i32.add - i32.const 1054500 - i32.store - i32.const 1 - local.set $3 - local.get $2 - i32.const 1 - i32.store8 offset=16 - local.get $2 - local.get $4 - i32.store offset=24 - local.get $2 - local.get $1 - i32.const 24 - i32.add - i64.load align=4 - i64.store offset=8 - local.get $2 - local.get $1 - i32.load8_u offset=48 - i32.store8 offset=72 - local.get $2 - local.get $1 - i32.load offset=4 - i32.store offset=28 - local.get $2 - local.get $1 - i64.load offset=8 align=4 - i64.store offset=32 - local.get $2 - local.get $1 - i64.load offset=40 align=4 - i64.store offset=64 - local.get $2 - local.get $1 - i64.load offset=32 align=4 - i64.store offset=56 - local.get $2 - local.get $1 - i64.load offset=16 align=4 - i64.store offset=40 - local.get $2 - local.get $2 - i32.const 8 - i32.add - i32.store offset=48 - local.get $2 - i32.const 24 - i32.add - i32.const 1048996 - i32.const 2 - call $core::fmt::Formatter::pad::hacaebd5abd28adf1 - br_if $block - local.get $2 - i32.const 8 - i32.add - i32.const 1054524 - i32.const 2 - call $::write_str::h7d69c319e62567ea - br_if $block - end ;; $block_0 - local.get $1 - i32.const 24 - i32.add - i32.load - i32.const 1054555 - i32.const 1 - local.get $1 - i32.const 28 - i32.add - i32.load - i32.load offset=12 - call_indirect $13 (type $1) - local.set $3 - end ;; $block - local.get $2 - i32.const 80 - i32.add + local.tee $3 global.set $15 local.get $3 - ) - - (func $core::panicking::panic_fmt::hc4f83bfed80aeabd (type $0) - (param $0 i32) - (param $1 i32) - (local $2 i32) - (local $3 i64) - global.get $15 - i32.const 32 - i32.sub - local.tee $2 - global.set $15 + i32.const 36 + i32.add local.get $1 - i64.load align=4 - local.set $3 + i32.store + local.get $3 + i32.const 52 + i32.add local.get $2 i32.const 20 i32.add - local.get $1 - i64.load offset=8 align=4 - i64.store align=4 - local.get $2 + i32.load + local.tee $4 + i32.store local.get $3 - i64.store offset=12 align=4 - local.get $2 - local.get $0 - i32.store offset=8 - local.get $2 - i32.const 1049120 - i32.store offset=4 + i32.const 3 + i32.store8 offset=56 + local.get $3 + i32.const 44 + i32.add local.get $2 - i32.const 1049120 + i32.load offset=16 + local.tee $5 + local.get $4 + i32.const 3 + i32.shl + i32.add i32.store - local.get $2 - call $rust_begin_unwind - unreachable - ) - - (func $core::result::unwrap_failed::hc7f92e904dbe4728 (type $3) - (local $0 i32) - global.get $15 - i32.const 64 - i32.sub - local.tee $0 - global.set $15 - local.get $0 - i32.const 55 - i32.store offset=12 - local.get $0 - i32.const 1048836 - i32.store offset=8 - local.get $0 - i32.const 52 - i32.add - i32.const 4 - i32.store - local.get $0 - i32.const 36 - i32.add - i32.const 2 - i32.store - local.get $0 - i32.const 1 - i32.store offset=44 - local.get $0 - i64.const 2 - i64.store offset=20 align=4 + local.get $3 + i64.const 137438953472 + i64.store offset=8 + local.get $3 local.get $0 - i32.const 1048748 + i32.store offset=32 + i32.const 0 + local.set $6 + local.get $3 + i32.const 0 + i32.store offset=24 + local.get $3 + i32.const 0 i32.store offset=16 - local.get $0 - local.get $0 - i32.const 56 - i32.add + local.get $3 + local.get $5 i32.store offset=48 - local.get $0 - local.get $0 - i32.const 8 - i32.add + local.get $3 + local.get $5 i32.store offset=40 - local.get $0 - local.get $0 - i32.const 40 - i32.add - i32.store offset=32 - local.get $0 - i32.const 16 - i32.add - i32.const 1048764 - call $core::panicking::panic_fmt::hc4f83bfed80aeabd - unreachable - ) - - (func $::fmt::h886976dffb9dde73 (type $2) - (param $0 i32) - (param $1 i32) - (result i32) - local.get $1 - i32.load offset=24 - i32.const 1054556 - i32.const 5 - local.get $1 - i32.const 28 - i32.add - i32.load - i32.load offset=12 - call_indirect $13 (type $1) - ) - - (func $core::fmt::Formatter::pad::hacaebd5abd28adf1 (type $1) - (param $0 i32) - (param $1 i32) - (param $2 i32) - (result i32) - (local $3 i32) - (local $4 i32) - (local $5 i32) - (local $6 i32) - (local $7 i32) - (local $8 i32) - (local $9 i32) - (local $10 i32) - (local $11 i32) - (local $12 i32) - (local $13 i32) - local.get $0 - i32.load offset=16 - local.set $3 block $block block $block_0 block $block_1 block $block_2 block $block_3 - block $block_4 - block $block_5 - block $block_6 - block $block_7 - block $block_8 - local.get $0 - i32.load offset=8 - local.tee $4 - i32.const 1 - i32.ne - br_if $block_8 - local.get $3 - br_if $block_7 - br $block_6 - end ;; $block_8 - local.get $3 - i32.eqz - br_if $block_0 - end ;; $block_7 - block $block_9 - local.get $2 - i32.eqz - br_if $block_9 - local.get $1 - local.get $2 - i32.add - local.set $5 - local.get $0 - i32.const 20 - i32.add - i32.load - i32.const -1 - i32.xor - local.set $6 - i32.const 0 - local.set $7 - local.get $1 - local.set $3 - local.get $1 - local.set $8 - block $block_10 - block $block_11 - loop $loop - local.get $3 - i32.const 1 - i32.add - local.set $9 - block $block_12 - block $block_13 - local.get $3 - i32.load8_s - local.tee $10 - i32.const 0 - i32.lt_s - br_if $block_13 - local.get $10 - i32.const 255 - i32.and - local.set $10 - local.get $9 - local.set $3 - local.get $6 - i32.const 1 - i32.add - local.tee $6 - br_if $block_12 - br $block_11 - end ;; $block_13 - block $block_14 - block $block_15 - block $block_16 - local.get $9 - local.get $5 - i32.eq - br_if $block_16 - local.get $9 - i32.load8_u - i32.const 63 - i32.and - local.set $11 - local.get $3 - i32.const 2 - i32.add - local.tee $3 - local.set $9 - local.get $10 - i32.const 31 - i32.and - local.set $12 - local.get $10 - i32.const 255 - i32.and - local.tee $10 - i32.const 224 - i32.lt_u - br_if $block_15 - br $block_14 - end ;; $block_16 - i32.const 0 - local.set $11 - local.get $5 - local.set $3 - local.get $10 - i32.const 31 - i32.and - local.set $12 - local.get $10 - i32.const 255 - i32.and - local.tee $10 - i32.const 224 - i32.ge_u - br_if $block_14 - end ;; $block_15 - local.get $11 - local.get $12 - i32.const 6 - i32.shl - i32.or - local.set $10 - local.get $9 - local.set $3 - local.get $6 - i32.const 1 - i32.add - local.tee $6 - br_if $block_12 - br $block_11 - end ;; $block_14 - block $block_17 - block $block_18 - block $block_19 - local.get $3 - local.get $5 - i32.eq - br_if $block_19 - local.get $3 - i32.const 1 - i32.add - local.tee $9 - local.set $13 - local.get $3 - i32.load8_u - i32.const 63 - i32.and - local.get $11 - i32.const 6 - i32.shl - i32.or - local.set $11 - local.get $10 - i32.const 240 - i32.lt_u - br_if $block_18 - br $block_17 - end ;; $block_19 - local.get $5 - local.set $13 - i32.const 0 - local.get $11 - i32.const 6 - i32.shl - i32.or - local.set $11 - local.get $10 - i32.const 240 - i32.ge_u - br_if $block_17 - end ;; $block_18 - local.get $11 - local.get $12 - i32.const 12 - i32.shl - i32.or - local.set $10 - local.get $9 - local.set $3 - local.get $6 - i32.const 1 - i32.add - local.tee $6 - br_if $block_12 - br $block_11 - end ;; $block_17 - block $block_20 - block $block_21 - local.get $13 - local.get $5 - i32.eq - br_if $block_21 - local.get $13 - i32.const 1 - i32.add - local.set $3 - local.get $13 - i32.load8_u - i32.const 63 - i32.and - local.set $10 - br $block_20 - end ;; $block_21 - i32.const 0 - local.set $10 - local.get $9 - local.set $3 - end ;; $block_20 - local.get $11 - i32.const 6 - i32.shl - local.get $12 - i32.const 18 - i32.shl - i32.const 1835008 - i32.and - i32.or - local.get $10 - i32.or - local.tee $10 - i32.const 1114112 - i32.eq - br_if $block_10 - local.get $6 - i32.const 1 - i32.add - local.tee $6 - i32.eqz - br_if $block_11 - end ;; $block_12 - local.get $7 - local.get $8 - i32.sub - local.get $3 - i32.add - local.set $7 - local.get $3 - local.set $8 - local.get $5 - local.get $3 - i32.ne - br_if $loop - br $block_10 - end ;; $loop - end ;; $block_11 - local.get $10 - i32.const 1114112 - i32.eq - br_if $block_10 - block $block_22 - block $block_23 - local.get $7 - i32.eqz - br_if $block_23 - local.get $7 - local.get $2 - i32.eq - br_if $block_23 - i32.const 0 - local.set $3 - local.get $7 - local.get $2 - i32.ge_u - br_if $block_22 - local.get $1 - local.get $7 - i32.add - i32.load8_s - i32.const -64 - i32.lt_s - br_if $block_22 - end ;; $block_23 - local.get $1 - local.set $3 - end ;; $block_22 - local.get $7 - local.get $2 - local.get $3 - select - local.set $2 - local.get $3 - local.get $1 - local.get $3 - select - local.set $1 - end ;; $block_10 - local.get $4 - i32.eqz - br_if $block_5 - br $block_6 - end ;; $block_9 - i32.const 0 - local.set $2 - local.get $4 - i32.eqz - br_if $block_5 - end ;; $block_6 - i32.const 0 - local.set $9 - block $block_24 - local.get $2 - i32.eqz - br_if $block_24 - local.get $2 - local.set $10 - local.get $1 - local.set $3 - loop $loop_0 - local.get $9 - local.get $3 - i32.load8_u - i32.const 192 - i32.and - i32.const 128 - i32.eq - i32.add - local.set $9 - local.get $3 - i32.const 1 - i32.add - local.set $3 - local.get $10 - i32.const -1 - i32.add - local.tee $10 - br_if $loop_0 - end ;; $loop_0 - end ;; $block_24 - local.get $2 - local.get $9 - i32.sub - local.get $0 - i32.const 12 - i32.add - i32.load - local.tee $6 - i32.ge_u - br_if $block_4 - i32.const 0 - local.set $9 - block $block_25 - local.get $2 - i32.eqz - br_if $block_25 - i32.const 0 - local.set $9 - local.get $2 - local.set $10 - local.get $1 - local.set $3 - loop $loop_1 - local.get $9 - local.get $3 - i32.load8_u - i32.const 192 - i32.and - i32.const 128 - i32.eq - i32.add - local.set $9 - local.get $3 - i32.const 1 - i32.add - local.set $3 - local.get $10 - i32.const -1 - i32.add - local.tee $10 - br_if $loop_1 - end ;; $loop_1 - end ;; $block_25 - local.get $9 - local.get $2 - i32.sub - local.get $6 - i32.add - local.set $9 - i32.const 0 - local.get $0 - i32.load8_u offset=48 - local.tee $3 + local.get $2 + i32.load offset=8 + local.tee $7 + br_if $block_3 + local.get $2 + i32.load + local.set $8 + local.get $2 + i32.load offset=4 + local.tee $9 + local.get $4 + local.get $4 + local.get $9 + i32.gt_u + select + local.tee $10 + i32.eqz + br_if $block_2 + i32.const 1 + local.set $4 + local.get $0 + local.get $8 + i32.load + local.get $8 + i32.load offset=4 + local.get $1 + i32.load offset=12 + call_indirect $13 (type $1) + br_if $block + local.get $8 + i32.const 8 + i32.add + local.set $2 + i32.const 1 + local.set $6 + loop $loop + block $block_4 + local.get $5 + i32.load local.get $3 - i32.const 3 - i32.eq - select - local.tee $3 - i32.const 3 - i32.and + i32.const 8 + i32.add + local.get $5 + i32.const 4 + i32.add + i32.load + call_indirect $13 (type $2) i32.eqz - br_if $block_3 - local.get $3 - i32.const 2 - i32.eq - br_if $block_2 - i32.const 0 - local.set $8 - br $block_1 - end ;; $block_5 - local.get $0 - i32.load offset=24 - local.get $1 + br_if $block_4 + i32.const 1 + local.set $4 + br $block + end ;; $block_4 + local.get $6 + local.get $10 + i32.ge_u + br_if $block_2 local.get $2 - local.get $0 - i32.const 28 + i32.const 4 + i32.add + local.set $0 + local.get $2 + i32.load + local.set $1 + local.get $5 + i32.const 8 + i32.add + local.set $5 + local.get $2 + i32.const 8 + i32.add + local.set $2 + i32.const 1 + local.set $4 + local.get $6 + i32.const 1 i32.add + local.set $6 + local.get $3 + i32.load offset=32 + local.get $1 + local.get $0 i32.load + local.get $3 + i32.load offset=36 i32.load offset=12 call_indirect $13 (type $1) - return - end ;; $block_4 - local.get $0 - i32.load offset=24 - local.get $1 - local.get $2 - local.get $0 - i32.const 28 - i32.add - i32.load - i32.load offset=12 - call_indirect $13 (type $1) - return + i32.eqz + br_if $loop + br $block + end ;; $loop end ;; $block_3 - local.get $9 + local.get $2 + i32.load local.set $8 - i32.const 0 - local.set $9 - br $block_1 - end ;; $block_2 - local.get $9 - i32.const 1 - i32.add - i32.const 1 - i32.shr_u - local.set $8 - local.get $9 - i32.const 1 - i32.shr_u - local.set $9 - end ;; $block_1 - i32.const -1 - local.set $3 - local.get $0 - i32.const 4 - i32.add - local.set $10 - local.get $0 - i32.const 24 - i32.add - local.set $6 - local.get $0 - i32.const 28 - i32.add - local.set $7 - block $block_26 - loop $loop_2 - local.get $3 - i32.const 1 + local.get $2 + i32.load offset=4 + local.tee $9 + local.get $2 + i32.const 12 i32.add - local.tee $3 - local.get $9 - i32.ge_u - br_if $block_26 - local.get $6 i32.load - local.get $10 - i32.load - local.get $7 - i32.load - i32.load offset=16 - call_indirect $13 (type $2) + local.tee $5 + local.get $5 + local.get $9 + i32.gt_u + select + local.tee $10 i32.eqz - br_if $loop_2 - end ;; $loop_2 - i32.const 1 - return - end ;; $block_26 - local.get $0 - i32.const 4 - i32.add - i32.load - local.set $9 - i32.const 1 - local.set $3 - local.get $0 - i32.const 24 - i32.add - local.tee $10 - i32.load - local.get $1 - local.get $2 - local.get $0 - i32.const 28 - i32.add - local.tee $6 - i32.load - i32.load offset=12 - call_indirect $13 (type $1) - br_if $block - local.get $10 - i32.load - local.set $10 - i32.const -1 - local.set $3 - local.get $6 - i32.load - i32.const 16 - i32.add - local.set $6 - block $block_27 - loop $loop_3 - local.get $3 + br_if $block_2 i32.const 1 - i32.add - local.tee $3 + local.set $4 + local.get $0 local.get $8 - i32.ge_u - br_if $block_27 - local.get $10 - local.get $9 - local.get $6 i32.load - call_indirect $13 (type $2) - i32.eqz - br_if $loop_3 - end ;; $loop_3 - i32.const 1 - return - end ;; $block_27 - i32.const 0 - return - end ;; $block_0 - local.get $0 - i32.load offset=24 - local.get $1 - local.get $2 - local.get $0 - i32.const 28 - i32.add - i32.load - i32.load offset=12 - call_indirect $13 (type $1) - local.set $3 - end ;; $block - local.get $3 - ) - - (func $<&T_as_core::fmt::Display>::fmt::hdf3341d54242ca4a (type $2) - (param $0 i32) - (param $1 i32) - (result i32) - (local $2 i32) - (local $3 i32) - (local $4 i32) - global.get $15 - i32.const 32 - i32.sub - local.tee $2 - global.set $15 - local.get $1 - i32.const 28 - i32.add - i32.load - local.set $3 - local.get $1 - i32.load offset=24 - local.set $4 - local.get $2 - i32.const 8 - i32.add - i32.const 16 - i32.add - local.get $0 - i32.load - local.tee $1 - i32.const 16 - i32.add - i64.load align=4 - i64.store - local.get $2 - i32.const 8 - i32.add - i32.const 8 - i32.add - local.get $1 - i32.const 8 - i32.add - i64.load align=4 - i64.store - local.get $2 - local.get $1 - i64.load align=4 - i64.store offset=8 - local.get $4 - local.get $3 - local.get $2 - i32.const 8 - i32.add - call $core::fmt::write::h8cfd01c67a4a46c9 - local.set $1 - local.get $2 - i32.const 32 - i32.add - global.set $15 - local.get $1 - ) - - (func $::enabled::h8a7702bb390b0ea2 (type $2) - (param $0 i32) - (param $1 i32) - (result i32) - i32.const 1 - ) - - (func $::log::h0a6214a4920b004c (type $0) - (param $0 i32) - (param $1 i32) - (local $2 i32) - (local $3 i32) - (local $4 i32) - (local $5 i32) - global.get $15 - i32.const 64 - i32.sub - local.tee $2 - global.set $15 - local.get $1 - i32.load - local.set $3 - local.get $2 - local.get $1 - i32.const 12 - i32.add - i32.store offset=4 - local.get $2 - i32.const 0 - i32.store offset=16 - local.get $2 - i64.const 1 - i64.store offset=8 - local.get $2 - i32.const 5 - i32.store offset=28 - local.get $2 - local.get $2 - i32.const 4 - i32.add - i32.store offset=24 - local.get $2 - local.get $2 - i32.const 8 - i32.add - i32.store offset=36 - local.get $2 - i32.const 60 - i32.add - i32.const 1 - i32.store - local.get $2 - i64.const 1 - i64.store offset=44 align=4 - local.get $2 - i32.const 1048828 - i32.store offset=40 - local.get $2 - local.get $2 - i32.const 24 - i32.add - i32.store offset=56 - block $block - block $block_0 - block $block_1 - local.get $2 - i32.const 36 - i32.add - i32.const 1048724 - local.get $2 - i32.const 40 - i32.add - call $core::fmt::write::h8cfd01c67a4a46c9 - br_if $block_1 - block $block_2 - block $block_3 - local.get $2 - i32.load offset=12 - local.tee $1 - local.get $2 - i32.const 16 + local.get $8 + i32.load offset=4 + local.get $1 + i32.load offset=12 + call_indirect $13 (type $1) + br_if $block + local.get $7 + i32.const 16 + i32.add + local.set $5 + local.get $8 + i32.const 8 + i32.add + local.set $2 + i32.const 1 + local.set $6 + loop $loop_0 + local.get $3 + local.get $5 + i32.const -8 i32.add i32.load - local.tee $4 - i32.ne - br_if $block_3 - local.get $2 - i32.load offset=8 - local.set $5 - br $block_2 - end ;; $block_3 - local.get $1 - local.get $4 - i32.lt_u - br_if $block_0 - block $block_4 - local.get $4 - i32.eqz - br_if $block_4 - local.get $2 - i32.load offset=8 - local.get $4 - call $__rust_realloc - local.tee $5 - i32.eqz - br_if $block - local.get $2 - local.get $4 i32.store offset=12 - local.get $2 + local.get $3 + local.get $5 + i32.const 16 + i32.add + i32.load8_u + i32.store8 offset=56 + local.get $3 local.get $5 + i32.const -4 + i32.add + i32.load i32.store offset=8 - local.get $4 + i32.const 0 local.set $1 - br $block_2 - end ;; $block_4 - block $block_5 - local.get $1 - i32.eqz - br_if $block_5 - local.get $2 - i32.load offset=8 - call $__rust_dealloc - end ;; $block_5 - local.get $2 - i64.const 1 - i64.store offset=8 - i32.const 1 - local.set $5 - i32.const 0 - local.set $1 - end ;; $block_2 - i32.const 5 - local.get $3 - i32.sub - local.get $5 - local.get $2 - i32.const 16 - i32.add - i32.load - call $_proxy_log - drop - block $block_6 - local.get $1 - i32.eqz - br_if $block_6 - local.get $5 - call $__rust_dealloc - end ;; $block_6 - local.get $2 - i32.const 64 - i32.add - global.set $15 - return - end ;; $block_1 - call $core::result::unwrap_failed::hc7f92e904dbe4728 - unreachable - end ;; $block_0 - i32.const 1048936 - call $core::panicking::panic::h62fdcfa056e70982 - unreachable - end ;; $block - unreachable - unreachable - ) - - (func $__rust_dealloc (type $6) - (param $0 i32) - local.get $0 - call $__rdl_dealloc - ) - - (func $core::panicking::panic::h62fdcfa056e70982 (type $6) - (param $0 i32) - (local $1 i32) - (local $2 i64) - (local $3 i64) - (local $4 i64) - global.get $15 - i32.const 48 - i32.sub - local.tee $1 - global.set $15 - local.get $0 - i64.load offset=8 align=4 - local.set $2 - local.get $0 - i64.load offset=16 align=4 - local.set $3 - local.get $0 - i64.load align=4 - local.set $4 - local.get $1 - i32.const 20 - i32.add - i32.const 0 - i32.store - local.get $1 - local.get $4 - i64.store offset=24 - local.get $1 - i32.const 1049120 - i32.store offset=16 - local.get $1 - i64.const 1 - i64.store offset=4 align=4 - local.get $1 - local.get $1 - i32.const 24 - i32.add - i32.store - local.get $1 - local.get $3 - i64.store offset=40 - local.get $1 - local.get $2 - i64.store offset=32 - local.get $1 - local.get $1 - i32.const 32 - i32.add - call $core::panicking::panic_fmt::hc4f83bfed80aeabd - unreachable - ) - - (func $__post_instantiate (type $3) - (local $0 i32) - i32.const 0 - i32.const 0 - i32.load offset=1054572 - local.tee $0 - i32.const 1 - local.get $0 - select - i32.store offset=1054572 - block $block - local.get $0 - i32.eqz - br_if $block - block $block_0 - local.get $0 - i32.const 1 - i32.ne - br_if $block_0 - loop $loop - i32.const 0 - i32.load offset=1054572 - i32.const 1 - i32.eq - br_if $loop - end ;; $loop - end ;; $block_0 - call $core::result::unwrap_failed::h7b72eb0c479e1bd5 - unreachable - end ;; $block - i32.const 0 - i32.const 1048804 - i32.store offset=1055048 - i32.const 0 - i32.const 1049120 - i32.store offset=1055044 - i32.const 0 - i32.const 2 - i32.store offset=1054572 - i32.const 0 - i32.const 5 - i32.store offset=1054568 - ) - - (func $_malloc (type $7) - (param $0 i32) - (result i32) - block $block - block $block_0 - local.get $0 - i32.const -1 - i32.le_s - br_if $block_0 - block $block_1 - local.get $0 - i32.eqz - br_if $block_1 - local.get $0 - i32.const 1 - call $__rust_alloc - local.tee $0 - i32.eqz - br_if $block - local.get $0 - return - end ;; $block_1 - i32.const 1 - return - end ;; $block_0 - call $alloc::raw_vec::RawVec::allocate_in::_7b__7b_closure_7d__7d_::h87cd55fc2e1e6651 - unreachable - end ;; $block - unreachable - unreachable - ) - - (func $alloc::raw_vec::RawVec::allocate_in::_7b__7b_closure_7d__7d_::h87cd55fc2e1e6651 (type $3) - call $alloc::raw_vec::capacity_overflow::hd685e916963b651d - unreachable - ) - - (func $_free (type $6) - (param $0 i32) - block $block - local.get $0 - i32.eqz - br_if $block - local.get $0 - call $__rust_dealloc - end ;; $block - ) - - (func $::enabled::h498b43c893826962 (type $2) - (param $0 i32) - (param $1 i32) - (result i32) - i32.const 0 - ) - - (func $::log::h2ca6f3fe5cf690d4 (type $0) - (param $0 i32) - (param $1 i32) - ) - - (func $::flush::h5e0800c275585e5e (type $6) - (param $0 i32) - ) - - (func $::write_str::h7d69c319e62567ea (type $1) - (param $0 i32) - (param $1 i32) - (param $2 i32) - (result i32) - (local $3 i32) - (local $4 i32) - (local $5 i32) - (local $6 i32) - (local $7 i32) - (local $8 i32) - (local $9 i32) - (local $10 i32) - (local $11 i32) - (local $12 i32) - (local $13 i32) - (local $14 i32) - (local $15 i32) - global.get $15 - i32.const 48 - i32.sub - local.tee $3 - global.set $15 - block $block - local.get $2 - i32.eqz - br_if $block - local.get $3 - i32.const 40 - i32.add - local.set $4 - local.get $0 - i32.const 8 - i32.add - local.set $5 - local.get $3 - i32.const 32 - i32.add - local.set $6 - local.get $3 - i32.const 28 - i32.add - local.set $7 - local.get $3 - i32.const 36 - i32.add - local.set $8 - local.get $0 - i32.const 4 - i32.add - local.set $9 - block $block_0 - block $block_1 - block $block_2 - block $block_3 - loop $loop - block $block_4 - local.get $5 - i32.load8_u - i32.eqz - br_if $block_4 - local.get $0 - i32.load - i32.const 1054496 - i32.const 4 - local.get $9 - i32.load - i32.load offset=12 - call_indirect $13 (type $1) - br_if $block_3 - end ;; $block_4 - local.get $4 - i32.const 10 - i32.store - local.get $6 - i64.const 4294967306 - i64.store - local.get $7 - local.get $2 - i32.store - local.get $3 - i32.const 16 - i32.add - i32.const 8 - i32.add - local.tee $10 + i32.const 0 + local.set $4 + block $block_5 + block $block_6 + block $block_7 + block $block_8 + local.get $5 + i32.const 8 + i32.add + i32.load + br_table + $block_8 $block_7 $block_6 $block_5 + $block_8 ;; default + end ;; $block_8 + local.get $5 + i32.const 12 + i32.add + i32.load + local.set $0 + i32.const 1 + local.set $4 + br $block_5 + end ;; $block_7 + block $block_9 + local.get $5 + i32.const 12 + i32.add + i32.load + local.tee $7 + local.get $3 + i32.load offset=52 + local.tee $4 + i32.ge_u + br_if $block_9 + i32.const 0 + local.set $4 + local.get $3 + i32.load offset=48 + local.get $7 + i32.const 3 + i32.shl + i32.add + local.tee $7 + i32.load offset=4 + i32.const 3 + i32.ne + br_if $block_5 + local.get $7 + i32.load + i32.load + local.set $0 + i32.const 1 + local.set $4 + br $block_5 + end ;; $block_9 + i32.const 1049820 + local.get $7 + local.get $4 + call $core::panicking::panic_bounds_check::hb65bbcdf415380e4 + unreachable + end ;; $block_6 i32.const 0 - i32.store + local.set $4 local.get $3 - local.get $2 - i32.store offset=20 + i32.load offset=40 + local.tee $7 local.get $3 - local.get $1 - i32.store offset=16 + i32.load offset=44 + i32.eq + br_if $block_5 local.get $3 + local.get $7 i32.const 8 i32.add - i32.const 10 - local.get $1 - local.get $2 - call $core::slice::memchr::memchr::h6bde110ce4c09380 - block $block_5 - block $block_6 - block $block_7 - block $block_8 - block $block_9 - local.get $3 - i32.load offset=8 - i32.const 1 - i32.ne - br_if $block_9 - local.get $3 - i32.load offset=12 - local.set $11 - loop $loop_0 - local.get $10 - local.get $11 - local.get $10 - i32.load - i32.add - i32.const 1 - i32.add - local.tee $11 - i32.store - block $block_10 - block $block_11 - local.get $11 - local.get $8 - i32.load - local.tee $12 - i32.ge_u - br_if $block_11 - local.get $3 - i32.load offset=20 - local.set $13 - local.get $7 - i32.load - local.tee $14 - local.get $11 - i32.ge_u - br_if $block_10 - br $block_8 - end ;; $block_11 - block $block_12 - local.get $3 - i32.load offset=20 - local.tee $13 - local.get $11 - i32.lt_u - br_if $block_12 - local.get $12 - i32.const 5 - i32.ge_u - br_if $block_6 - local.get $3 - i32.load offset=16 - local.get $11 - local.get $12 - i32.sub - local.tee $15 - i32.add - local.tee $14 - local.get $4 - i32.eq - br_if $block_7 - local.get $14 - local.get $4 - local.get $12 - call $memcmp - i32.eqz - br_if $block_7 - end ;; $block_12 - local.get $7 - i32.load - local.tee $14 - local.get $11 - i32.lt_u - br_if $block_8 - end ;; $block_10 - local.get $13 - local.get $14 - i32.lt_u - br_if $block_8 - local.get $3 - local.get $3 - i32.const 16 - i32.add - local.get $12 - i32.add - i32.const 23 - i32.add - i32.load8_u - local.get $3 - i32.load offset=16 - local.get $11 - i32.add - local.get $14 - local.get $11 - i32.sub - call $core::slice::memchr::memchr::h6bde110ce4c09380 - local.get $3 - i32.load offset=4 - local.set $11 - local.get $3 + i32.store offset=40 + i32.const 0 + local.set $4 + local.get $7 + i32.load offset=4 + i32.const 3 + i32.ne + br_if $block_5 + local.get $7 + i32.load + i32.load + local.set $0 + i32.const 1 + local.set $4 + end ;; $block_5 + local.get $3 + local.get $0 + i32.store offset=20 + local.get $3 + local.get $4 + i32.store offset=16 + block $block_10 + block $block_11 + block $block_12 + block $block_13 + block $block_14 + block $block_15 + block $block_16 + local.get $5 i32.load - i32.const 1 - i32.eq - br_if $loop_0 - end ;; $loop_0 - end ;; $block_9 - local.get $10 - local.get $7 + br_table + $block_12 $block_15 $block_16 $block_10 + $block_12 ;; default + end ;; $block_16 + local.get $3 + i32.load offset=40 + local.tee $0 + local.get $3 + i32.load offset=44 + i32.ne + br_if $block_14 + br $block_10 + end ;; $block_15 + local.get $5 + i32.const 4 + i32.add i32.load - i32.store - end ;; $block_8 - local.get $5 - i32.const 0 - i32.store8 - local.get $2 - local.set $11 - br $block_5 - end ;; $block_7 - local.get $5 - i32.const 1 - i32.store8 - local.get $15 - i32.const 1 - i32.add - local.set $11 - br $block_5 - end ;; $block_6 - local.get $12 + local.tee $0 + local.get $3 + i32.load offset=52 + local.tee $4 + i32.ge_u + br_if $block_13 + local.get $3 + i32.load offset=48 + local.get $0 + i32.const 3 + i32.shl + i32.add + local.tee $0 + i32.load offset=4 + i32.const 3 + i32.ne + br_if $block_10 + local.get $0 + i32.load + i32.load + local.set $4 + br $block_11 + end ;; $block_14 + local.get $3 + local.get $0 + i32.const 8 + i32.add + i32.store offset=40 + local.get $0 + i32.load offset=4 + i32.const 3 + i32.ne + br_if $block_10 + local.get $0 + i32.load + i32.load + local.set $4 + br $block_11 + end ;; $block_13 + i32.const 1049820 + local.get $0 + local.get $4 + call $core::panicking::panic_bounds_check::hb65bbcdf415380e4 + unreachable + end ;; $block_12 + local.get $5 i32.const 4 - call $core::slice::slice_index_len_fail::hb115deb2b20f49d8 - unreachable - end ;; $block_5 - local.get $9 - i32.load - local.set $14 - local.get $0 - i32.load - local.set $12 - block $block_13 - local.get $11 - i32.eqz - local.get $2 - local.get $11 - i32.eq - i32.or - local.tee $10 - br_if $block_13 - local.get $2 - local.get $11 - i32.le_u - br_if $block_1 - local.get $1 - local.get $11 i32.add - i32.load8_s - i32.const -65 - i32.le_s + i32.load + local.set $4 + end ;; $block_11 + i32.const 1 + local.set $1 + end ;; $block_10 + local.get $3 + local.get $4 + i32.store offset=28 + local.get $3 + local.get $1 + i32.store offset=24 + block $block_17 + block $block_18 + local.get $5 + i32.const -16 + i32.add + i32.load + i32.const 1 + i32.eq + br_if $block_18 + local.get $3 + i32.load offset=40 + local.tee $4 + local.get $3 + i32.load offset=44 + i32.eq br_if $block_1 - end ;; $block_13 - local.get $12 - local.get $1 - local.get $11 - local.get $14 - i32.load offset=12 - call_indirect $13 (type $1) - br_if $block_3 - block $block_14 - local.get $10 - br_if $block_14 - local.get $2 - local.get $11 - i32.le_u - br_if $block_0 - local.get $1 - local.get $11 + local.get $3 + local.get $4 + i32.const 8 i32.add - i32.load8_s - i32.const -65 - i32.le_s - br_if $block_0 - end ;; $block_14 - local.get $1 - local.get $11 + i32.store offset=40 + br $block_17 + end ;; $block_18 + local.get $5 + i32.const -12 i32.add - local.set $1 - local.get $2 - local.get $11 - i32.sub - local.tee $2 - br_if $loop - br $block_2 - end ;; $loop - end ;; $block_3 + i32.load + local.tee $4 + local.get $3 + i32.load offset=52 + local.tee $0 + i32.ge_u + br_if $block_0 + local.get $3 + i32.load offset=48 + local.get $4 + i32.const 3 + i32.shl + i32.add + local.set $4 + end ;; $block_17 + block $block_19 + local.get $4 + i32.load + local.get $3 + i32.const 8 + i32.add + local.get $4 + i32.const 4 + i32.add + i32.load + call_indirect $13 (type $2) + i32.eqz + br_if $block_19 + i32.const 1 + local.set $4 + br $block + end ;; $block_19 + local.get $6 + local.get $10 + i32.ge_u + br_if $block_2 + local.get $2 + i32.const 4 + i32.add + local.set $0 + local.get $2 + i32.load + local.set $1 + local.get $5 + i32.const 36 + i32.add + local.set $5 + local.get $2 + i32.const 8 + i32.add + local.set $2 + i32.const 1 + local.set $4 + local.get $6 + i32.const 1 + i32.add + local.set $6 + local.get $3 + i32.load offset=32 + local.get $1 + local.get $0 + i32.load + local.get $3 + i32.load offset=36 + i32.load offset=12 + call_indirect $13 (type $1) + i32.eqz + br_if $loop_0 + br $block + end ;; $loop_0 + end ;; $block_2 + block $block_20 + local.get $9 + local.get $6 + i32.le_u + br_if $block_20 + i32.const 1 + local.set $4 local.get $3 - i32.const 48 + i32.load offset=32 + local.get $8 + local.get $6 + i32.const 3 + i32.shl i32.add - global.set $15 - i32.const 1 - return - end ;; $block_2 - local.get $3 - i32.const 48 - i32.add - global.set $15 + local.tee $5 + i32.load + local.get $5 + i32.load offset=4 + local.get $3 + i32.load offset=36 + i32.load offset=12 + call_indirect $13 (type $1) + br_if $block + end ;; $block_20 i32.const 0 - return + local.set $4 + br $block end ;; $block_1 - local.get $1 - local.get $2 - i32.const 0 - local.get $11 - call $core::str::slice_error_fail::h3704ce74b976be71 + i32.const 1049644 + call $core::panicking::panic::h540eb5ee6ff533c2 unreachable end ;; $block_0 - local.get $1 - local.get $2 - local.get $11 - local.get $2 - call $core::str::slice_error_fail::h3704ce74b976be71 - unreachable + i32.const 1049836 + local.get $4 + local.get $0 + call $core::panicking::panic_bounds_check::hb65bbcdf415380e4 + unreachable end ;; $block local.get $3 - i32.const 48 + i32.const 64 i32.add global.set $15 - i32.const 0 + local.get $4 ) - (func $std::panicking::rust_panic_with_hook::h3f88564dfeb012eb (type $6) + (func $<&T_as_core::fmt::Display>::fmt::h678bffb9cdc14530 (type $2) (param $0 i32) - (local $1 i32) + (param $1 i32) + (result i32) (local $2 i32) - i32.const 1 - local.set $1 - block $block - block $block_0 - block $block_1 - block $block_2 - i32.const 0 - i32.load offset=1055032 - i32.const 1 - i32.ne - br_if $block_2 - i32.const 0 - i32.const 0 - i32.load offset=1055036 - i32.const 1 - i32.add - local.tee $1 - i32.store offset=1055036 - local.get $1 - i32.const 3 - i32.lt_u - br_if $block_1 - br $block_0 - end ;; $block_2 - i32.const 0 - i64.const 4294967297 - i64.store offset=1055032 - end ;; $block_1 - i32.const 0 - i32.load offset=1055040 - local.tee $2 - i32.const -1 - i32.le_s - br_if $block_0 - i32.const 0 - local.get $2 - i32.store offset=1055040 - local.get $1 - i32.const 2 - i32.lt_u - br_if $block - end ;; $block_0 - unreachable - unreachable - end ;; $block - call $rust_panic - unreachable - ) - - (func $rust_panic (type $3) - unreachable - unreachable - ) - - (func $std::panicking::continue_panic_fmt::he2d0fc2a935878af (type $6) - (param $0 i32) - (local $1 i32) + (local $3 i32) + (local $4 i32) global.get $15 - i32.const 16 + i32.const 32 i32.sub - local.tee $1 + local.tee $2 global.set $15 - local.get $0 - i32.load offset=8 - call $core::option::Option::unwrap::hcab2ea581bad05cd - drop local.get $1 + i32.const 28 + i32.add + i32.load + local.set $3 + local.get $1 + i32.load offset=24 + local.set $4 + local.get $2 + i32.const 8 + i32.add + i32.const 16 + i32.add local.get $0 - i32.const 20 + i32.load + local.tee $1 + i32.const 16 i32.add i64.load align=4 - i64.store offset=8 + i64.store + local.get $2 + i32.const 8 + i32.add + i32.const 8 + i32.add local.get $1 - local.get $0 - i64.load offset=12 align=4 + i32.const 8 + i32.add + i64.load align=4 i64.store + local.get $2 + local.get $1 + i64.load align=4 + i64.store offset=8 + local.get $4 + local.get $3 + local.get $2 + i32.const 8 + i32.add + call $core::fmt::write::h9ffb25a5a03fc281 + local.set $1 + local.get $2 + i32.const 32 + i32.add + global.set $15 local.get $1 - call $std::panicking::rust_panic_with_hook::h3f88564dfeb012eb + ) + + (func $alloc::raw_vec::RawVec::allocate_in::_7b__7b_closure_7d__7d_::ha9193fd2beb4c622 (type $6) + call $alloc::raw_vec::capacity_overflow::h8b890ddaa46c20bf unreachable ) - (func $core::option::Option::unwrap::hcab2ea581bad05cd (type $7) + (func $::enabled::hd59b56d376e99849 (type $2) (param $0 i32) + (param $1 i32) (result i32) - block $block - local.get $0 - i32.eqz - br_if $block - local.get $0 - return - end ;; $block - i32.const 1049648 - call $core::panicking::panic::h62fdcfa056e70982 - unreachable + i32.const 1 ) - (func $__rdl_alloc (type $2) + (func $::log::h69caf1c35822af17 (type $0) (param $0 i32) (param $1 i32) - (result i32) (local $2 i32) (local $3 i32) (local $4 i32) (local $5 i32) - (local $6 i32) + global.get $15 + i32.const 64 + i32.sub + local.tee $2 + global.set $15 + local.get $1 + i32.load + local.set $3 + local.get $2 + local.get $1 + i32.const 12 + i32.add + i32.store offset=4 + local.get $2 + i32.const 0 + i32.store offset=16 + local.get $2 + i64.const 1 + i64.store offset=8 + local.get $2 + i32.const 4 + i32.store offset=28 + local.get $2 + local.get $2 + i32.const 4 + i32.add + i32.store offset=24 + local.get $2 + local.get $2 + i32.const 8 + i32.add + i32.store offset=36 + local.get $2 + i32.const 60 + i32.add + i32.const 1 + i32.store + local.get $2 + i64.const 1 + i64.store offset=44 align=4 + local.get $2 + i32.const 1048832 + i32.store offset=40 + local.get $2 + local.get $2 + i32.const 24 + i32.add + i32.store offset=56 block $block block $block_0 block $block_1 + local.get $2 + i32.const 36 + i32.add + i32.const 1048724 + local.get $2 + i32.const 40 + i32.add + call $core::fmt::write::h9ffb25a5a03fc281 + br_if $block_1 block $block_2 block $block_3 - block $block_4 - local.get $1 - i32.const 8 - i32.le_u - br_if $block_4 - i32.const 0 - local.set $2 - i32.const -65587 - local.get $1 - i32.const 16 - local.get $1 - i32.const 16 - i32.gt_u - select - local.tee $1 - i32.sub - local.get $0 - i32.le_u - br_if $block - local.get $1 - i32.const 16 - local.get $0 - i32.const 11 - i32.add - i32.const -8 - i32.and - local.get $0 - i32.const 11 - i32.lt_u - select - local.tee $3 - i32.add - i32.const 12 - i32.add - call $dlmalloc::dlmalloc::Dlmalloc::malloc::h7ef7d8a98d4afe8d - local.tee $0 - i32.eqz - br_if $block - local.get $0 - i32.const -8 - i32.add - local.set $2 + local.get $2 + i32.load offset=12 + local.tee $1 + local.get $2 + i32.load offset=16 + local.tee $4 + i32.ne + br_if $block_3 + local.get $2 + i32.load offset=8 + local.set $5 + br $block_2 + end ;; $block_3 + local.get $1 + local.get $4 + i32.lt_u + br_if $block_0 + block $block_4 + local.get $4 + br_if $block_4 + block $block_5 local.get $1 - i32.const -1 - i32.add - local.tee $4 - local.get $0 - i32.and i32.eqz - br_if $block_3 - local.get $0 - i32.const -4 - i32.add - local.tee $5 - i32.load - local.tee $6 - i32.const -8 - i32.and - local.get $4 - local.get $0 - i32.add - i32.const 0 - local.get $1 - i32.sub - i32.and - i32.const -8 - i32.add - local.tee $0 - local.get $0 - local.get $1 - i32.add - local.get $0 - local.get $2 - i32.sub - i32.const 16 - i32.gt_u - select - local.tee $1 - local.get $2 - i32.sub - local.tee $0 - i32.sub - local.set $4 - local.get $6 - i32.const 3 - i32.and - i32.eqz - br_if $block_2 - local.get $1 - local.get $4 - local.get $1 - i32.load offset=4 - i32.const 1 - i32.and - i32.or - i32.const 2 - i32.or - i32.store offset=4 - local.get $1 - local.get $4 - i32.add - local.tee $4 - local.get $4 - i32.load offset=4 - i32.const 1 - i32.or - i32.store offset=4 - local.get $5 - local.get $0 - local.get $5 - i32.load - i32.const 1 - i32.and - i32.or - i32.const 2 - i32.or - i32.store - local.get $1 - local.get $1 - i32.load offset=4 - i32.const 1 - i32.or - i32.store offset=4 + br_if $block_5 local.get $2 - local.get $0 - call $dlmalloc::dlmalloc::Dlmalloc::dispose_chunk::h08c63a089677cf87 - local.get $1 - i32.load offset=4 - local.tee $0 - i32.const 3 - i32.and - br_if $block_1 - br $block_0 - end ;; $block_4 - local.get $0 - call $dlmalloc::dlmalloc::Dlmalloc::malloc::h7ef7d8a98d4afe8d - return - end ;; $block_3 + i32.load offset=8 + call $__rust_dealloc + end ;; $block_5 + local.get $2 + i64.const 1 + i64.store offset=8 + i32.const 1 + local.set $5 + i32.const 0 + local.set $1 + br $block_2 + end ;; $block_4 local.get $2 - local.tee $1 - i32.load offset=4 - local.tee $0 - i32.const 3 - i32.and - br_if $block_1 - br $block_0 + i32.load offset=8 + local.get $4 + call $__rust_realloc + local.tee $5 + i32.eqz + br_if $block + local.get $2 + local.get $4 + i32.store offset=12 + local.get $2 + local.get $5 + i32.store offset=8 + local.get $4 + local.set $1 end ;; $block_2 + i32.const 5 + local.get $3 + i32.sub + local.get $5 local.get $2 - i32.load - local.set $2 - local.get $1 - local.get $4 - i32.store offset=4 - local.get $1 + i32.load offset=16 + call $_proxy_log + drop + block $block_6 + local.get $1 + i32.eqz + br_if $block_6 + local.get $5 + call $__rust_dealloc + end ;; $block_6 local.get $2 - local.get $0 + i32.const 64 i32.add - i32.store - local.get $1 - i32.load offset=4 - local.tee $0 - i32.const 3 - i32.and - i32.eqz - br_if $block_0 + global.set $15 + return end ;; $block_1 - local.get $0 - i32.const -8 - i32.and - local.tee $2 - local.get $3 - i32.const 16 - i32.add - i32.le_u - br_if $block_0 - local.get $1 - i32.const 4 - i32.add - local.get $3 - local.get $0 - i32.const 1 - i32.and - i32.or - i32.const 2 - i32.or - i32.store - local.get $1 - local.get $3 - i32.add - local.tee $0 - local.get $2 - local.get $3 - i32.sub - local.tee $3 - i32.const 3 - i32.or - i32.store offset=4 - local.get $1 + i32.const 1048840 + i32.const 55 local.get $2 + i32.const 40 i32.add - local.tee $2 - local.get $2 - i32.load offset=4 - i32.const 1 - i32.or - i32.store offset=4 - local.get $0 - local.get $3 - call $dlmalloc::dlmalloc::Dlmalloc::dispose_chunk::h08c63a089677cf87 + i32.const 1048896 + call $core::result::unwrap_failed::h00271bebc73f1849 + unreachable end ;; $block_0 - local.get $1 - i32.const 8 - i32.add - local.set $2 + i32.const 1048748 + call $core::panicking::panic::h540eb5ee6ff533c2 + unreachable end ;; $block + local.get $4 + i32.const 1 + i32.const 0 + i32.load offset=1055156 + local.tee $2 + i32.const 2 local.get $2 + select + call_indirect $13 (type $0) + unreachable + unreachable ) - (func $dlmalloc::dlmalloc::Dlmalloc::malloc::h7ef7d8a98d4afe8d (type $7) + (func $__rust_dealloc (type $5) (param $0 i32) - (result i32) - (local $1 i32) - (local $2 i32) - (local $3 i32) + local.get $0 + call $__rdl_dealloc + ) + + (func $core::result::unwrap_failed::h00271bebc73f1849 (type $7) + (param $0 i32) + (param $1 i32) + (param $2 i32) + (param $3 i32) (local $4 i32) - (local $5 i32) - (local $6 i32) - (local $7 i32) - (local $8 i32) - (local $9 i32) - (local $10 i32) - (local $11 i32) - (local $12 i32) - (local $13 i32) - (local $14 i32) - (local $15 i32) - (local $16 i64) - block $block - block $block_0 - block $block_1 - block $block_2 - block $block_3 - block $block_4 - block $block_5 - block $block_6 - block $block_7 - block $block_8 - block $block_9 - block $block_10 - block $block_11 - block $block_12 - block $block_13 - block $block_14 - block $block_15 - block $block_16 - block $block_17 - block $block_18 - block $block_19 - block $block_20 - block $block_21 - block $block_22 - block $block_23 - block $block_24 - block $block_25 - block $block_26 - block $block_27 - block $block_28 - block $block_29 - block $block_30 - local.get $0 - i32.const 244 - i32.gt_u - br_if $block_30 - i32.const 0 - i32.load offset=1054576 - local.tee $1 - i32.const 16 - local.get $0 - i32.const 11 - i32.add - i32.const -8 - i32.and - local.get $0 - i32.const 11 - i32.lt_u - select - local.tee $2 - i32.const 3 - i32.shr_u - local.tee $3 - i32.const 31 - i32.and - local.tee $4 - i32.shr_u - local.tee $0 - i32.const 3 - i32.and - i32.eqz - br_if $block_29 - local.get $0 - i32.const -1 - i32.xor - i32.const 1 - i32.and - local.get $3 - i32.add - local.tee $2 - i32.const 3 - i32.shl - local.tee $5 - i32.const 1054592 - i32.add - i32.load - local.tee $0 - i32.const 8 - i32.add - local.set $6 - local.get $0 - i32.load offset=8 - local.tee $7 - local.get $5 - i32.const 1054584 - i32.add - local.tee $5 - i32.eq - br_if $block_28 - local.get $7 - local.get $5 - i32.store offset=12 - local.get $5 - i32.const 8 - i32.add - local.get $7 - i32.store - br $block_27 - end ;; $block_30 - i32.const 0 - local.set $6 - local.get $0 - i32.const -65588 - i32.gt_u - br_if $block - local.get $0 - i32.const 11 - i32.add - local.tee $0 - i32.const -8 - i32.and - local.set $2 - i32.const 0 - i32.load offset=1054580 - local.tee $1 - i32.eqz - br_if $block_20 - i32.const 0 - local.set $8 - block $block_31 - local.get $0 - i32.const 8 - i32.shr_u - local.tee $0 - i32.eqz - br_if $block_31 - i32.const 31 - local.set $8 - local.get $2 - i32.const 16777215 - i32.gt_u - br_if $block_31 - local.get $2 - i32.const 38 - local.get $0 - i32.clz - local.tee $0 - i32.sub - i32.const 31 - i32.and - i32.shr_u - i32.const 1 - i32.and - i32.const 31 - local.get $0 - i32.sub - i32.const 1 - i32.shl - i32.or - local.set $8 - end ;; $block_31 - i32.const 0 - local.get $2 - i32.sub - local.set $6 - local.get $8 - i32.const 2 - i32.shl - i32.const 1054848 - i32.add - i32.load - local.tee $0 - i32.eqz - br_if $block_23 - i32.const 0 - local.set $7 - local.get $2 - i32.const 0 - i32.const 25 - local.get $8 - i32.const 1 - i32.shr_u - i32.sub - i32.const 31 - i32.and - local.get $8 - i32.const 31 - i32.eq - select - i32.shl - local.set $9 - i32.const 0 - local.set $5 - loop $loop - block $block_32 - local.get $0 - i32.load offset=4 - i32.const -8 - i32.and - local.tee $3 - local.get $2 - i32.lt_u - br_if $block_32 - local.get $3 - local.get $2 - i32.sub - local.tee $3 - local.get $6 - i32.ge_u - br_if $block_32 - local.get $3 - local.set $6 - local.get $0 - local.set $5 - local.get $3 - i32.eqz - br_if $block_25 - end ;; $block_32 - local.get $0 - i32.const 20 - i32.add - i32.load - local.tee $3 - local.get $7 - local.get $3 - local.get $0 - local.get $9 - i32.const 29 - i32.shr_u - i32.const 4 - i32.and - i32.add - i32.const 16 - i32.add - i32.load - local.tee $0 - i32.ne - select - local.get $7 - local.get $3 - select - local.set $7 - local.get $9 - i32.const 1 - i32.shl - local.set $9 - local.get $0 - br_if $loop - end ;; $loop - local.get $7 - i32.eqz - br_if $block_24 - local.get $7 - local.set $0 - br $block_22 - end ;; $block_29 - local.get $2 - i32.const 0 - i32.load offset=1054976 - i32.le_u - br_if $block_20 - local.get $0 - i32.eqz - br_if $block_26 - local.get $0 - local.get $4 - i32.shl - i32.const 2 - local.get $4 - i32.shl - local.tee $0 - i32.const 0 - local.get $0 - i32.sub - i32.or - i32.and - local.tee $0 - i32.const 0 - local.get $0 - i32.sub - i32.and - i32.ctz - local.tee $6 - i32.const 3 - i32.shl - local.tee $5 - i32.const 1054592 - i32.add - i32.load - local.tee $0 - i32.load offset=8 - local.tee $7 - local.get $5 - i32.const 1054584 - i32.add - local.tee $5 - i32.eq - br_if $block_18 - local.get $7 - local.get $5 - i32.store offset=12 - local.get $5 - i32.const 8 - i32.add - local.get $7 - i32.store - br $block_17 - end ;; $block_28 - i32.const 0 - local.get $1 - i32.const -2 - local.get $2 - i32.rotl - i32.and - i32.store offset=1054576 - end ;; $block_27 - local.get $0 - local.get $2 - i32.const 3 - i32.shl - local.tee $2 - i32.const 3 - i32.or - i32.store offset=4 - local.get $0 - local.get $2 - i32.add - local.tee $0 - local.get $0 - i32.load offset=4 - i32.const 1 - i32.or - i32.store offset=4 - br $block - end ;; $block_26 - i32.const 0 - i32.load offset=1054580 - local.tee $0 - i32.eqz - br_if $block_20 - i32.const -8 - local.set $10 - local.get $0 - i32.const 0 - local.get $0 - i32.sub - i32.and - i32.ctz - i32.const 2 - i32.shl - i32.const 1054848 - i32.add - i32.load - local.tee $11 - i32.load offset=4 - i32.const -8 - i32.and - local.get $2 - i32.sub - local.set $12 - i32.const 20 - local.set $13 - local.get $11 - local.set $14 - local.get $11 - i32.load offset=16 - local.tee $15 - i32.eqz - br_if $block_3 - i32.const 3 - local.set $0 - br $block_1 - end ;; $block_25 - i32.const 0 - local.set $6 - local.get $0 - local.set $5 - br $block_22 - end ;; $block_24 - local.get $5 - br_if $block_21 - end ;; $block_23 - i32.const 0 - local.set $5 - i32.const 2 - local.get $8 - i32.const 31 - i32.and - i32.shl - local.tee $0 - i32.const 0 - local.get $0 - i32.sub - i32.or - local.get $1 - i32.and - local.tee $0 - i32.eqz - br_if $block_20 - local.get $0 - i32.const 0 - local.get $0 - i32.sub - i32.and - i32.ctz - i32.const 2 - i32.shl - i32.const 1054848 - i32.add - i32.load - local.tee $0 - i32.eqz - br_if $block_20 - end ;; $block_22 - block $block_33 - loop $loop_0 - local.get $0 - i32.load offset=4 - i32.const -8 - i32.and - local.tee $7 - local.get $2 - i32.ge_u - local.get $7 - local.get $2 - i32.sub - local.tee $3 - local.get $6 - i32.lt_u - i32.and - local.set $7 - block $block_34 - local.get $0 - i32.load offset=16 - local.tee $9 - i32.eqz - br_if $block_34 - local.get $0 - local.get $5 - local.get $7 - select - local.set $5 - local.get $3 - local.get $6 - local.get $7 - select - local.set $6 - local.get $9 - local.set $0 - local.get $9 - br_if $loop_0 - br $block_33 - end ;; $block_34 - local.get $0 - local.get $5 - local.get $7 - select - local.set $5 - local.get $3 - local.get $6 - local.get $7 - select - local.set $6 - local.get $0 - i32.const 20 - i32.add - i32.load - local.tee $7 - local.set $0 - local.get $7 - br_if $loop_0 - end ;; $loop_0 - end ;; $block_33 - local.get $5 - i32.eqz - br_if $block_20 - end ;; $block_21 - i32.const 0 - i32.load offset=1054976 - local.tee $0 - local.get $2 - i32.lt_u - br_if $block_19 - local.get $6 - local.get $0 - local.get $2 - i32.sub - i32.lt_u - br_if $block_19 - end ;; $block_20 - block $block_35 - block $block_36 - block $block_37 - i32.const 0 - i32.load offset=1054976 - local.tee $0 - local.get $2 - i32.ge_u - br_if $block_37 - i32.const 0 - i32.load offset=1054980 - local.tee $0 - local.get $2 - i32.le_u - br_if $block_36 - i32.const 0 - local.get $0 - local.get $2 - i32.sub - local.tee $6 - i32.store offset=1054980 - i32.const 0 - i32.const 0 - i32.load offset=1054988 - local.tee $0 - local.get $2 - i32.add - local.tee $7 - i32.store offset=1054988 - local.get $7 - local.get $6 - i32.const 1 - i32.or - i32.store offset=4 - local.get $0 - local.get $2 - i32.const 3 - i32.or - i32.store offset=4 - local.get $0 - i32.const 8 - i32.add - return - end ;; $block_37 - i32.const 0 - i32.load offset=1054984 - local.set $6 - local.get $0 - local.get $2 - i32.sub - local.tee $7 - i32.const 16 - i32.ge_u - br_if $block_35 - i32.const 0 - i32.const 0 - i32.store offset=1054984 - i32.const 0 - i32.const 0 - i32.store offset=1054976 - local.get $6 - local.get $0 - i32.const 3 - i32.or - i32.store offset=4 - local.get $6 - local.get $0 - i32.add - local.tee $0 - i32.const 4 - i32.add - local.get $0 - i32.load offset=4 - i32.const 1 - i32.or - i32.store - local.get $6 - i32.const 8 - i32.add - return - end ;; $block_36 - i32.const 0 - local.set $6 - local.get $2 - i32.const 65583 - i32.add - local.tee $7 - i32.const 16 - i32.shr_u - memory.grow - local.tee $0 - i32.const -1 - i32.eq - br_if $block - local.get $0 - i32.const 16 - i32.shl - local.tee $9 - i32.eqz - br_if $block - i32.const 0 - i32.const 0 - i32.load offset=1054992 - local.get $7 - i32.const -65536 - i32.and - local.tee $8 - i32.add - local.tee $0 - i32.store offset=1054992 - i32.const 0 - i32.const 0 - i32.load offset=1054996 - local.tee $6 - local.get $0 - local.get $0 - local.get $6 - i32.lt_u - select - i32.store offset=1054996 - i32.const 0 - i32.load offset=1054988 - local.tee $7 - i32.eqz - br_if $block_12 - i32.const 1055000 - local.set $0 - loop $loop_1 - local.get $0 - i32.load - local.tee $6 - local.get $0 - i32.load offset=4 - local.tee $5 - i32.add - local.get $9 - i32.eq - br_if $block_11 - local.get $0 - i32.load offset=8 - local.tee $0 - br_if $loop_1 - br $block_2 - end ;; $loop_1 - end ;; $block_35 - i32.const 0 - local.get $7 - i32.store offset=1054976 - i32.const 0 - local.get $6 - local.get $2 - i32.add - local.tee $5 - i32.store offset=1054984 - local.get $5 - local.get $7 - i32.const 1 - i32.or - i32.store offset=4 - local.get $6 - local.get $0 - i32.add - local.get $7 - i32.store - local.get $6 - i32.const 4 - i32.add - local.get $2 - i32.const 3 - i32.or - i32.store - local.get $6 - i32.const 8 - i32.add - return - end ;; $block_19 - local.get $5 - i32.load offset=24 - local.set $15 - local.get $5 - i32.load offset=12 - local.tee $7 - local.get $5 - i32.eq - br_if $block_16 - local.get $5 - i32.load offset=8 - local.tee $0 - local.get $7 - i32.store offset=12 - local.get $7 - local.get $0 - i32.store offset=8 - local.get $15 - br_if $block_9 - br $block_6 - end ;; $block_18 - i32.const 0 - local.get $1 - i32.const -2 - local.get $6 - i32.rotl - i32.and - i32.store offset=1054576 - end ;; $block_17 - local.get $0 - i32.const 8 - i32.add - local.set $7 - local.get $0 - local.get $2 - i32.const 3 - i32.or - i32.store offset=4 - local.get $0 - local.get $2 - i32.add - local.tee $5 - local.get $6 - i32.const 3 - i32.shl - local.tee $6 - local.get $2 - i32.sub - local.tee $2 - i32.const 1 - i32.or - i32.store offset=4 - local.get $0 - local.get $6 - i32.add - local.get $2 - i32.store - i32.const 0 - i32.load offset=1054976 - local.tee $0 - i32.eqz - br_if $block_13 - local.get $0 - i32.const 3 - i32.shr_u - local.tee $9 - i32.const 3 - i32.shl - i32.const 1054584 - i32.add - local.set $6 - i32.const 0 - i32.load offset=1054984 - local.set $0 - i32.const 0 - i32.load offset=1054576 - local.tee $3 - i32.const 1 - local.get $9 - i32.const 31 - i32.and - i32.shl - local.tee $9 - i32.and - i32.eqz - br_if $block_15 - local.get $6 - i32.load offset=8 - local.set $9 - br $block_14 - end ;; $block_16 - local.get $5 - i32.const 20 - i32.const 16 - local.get $5 - i32.const 20 - i32.add - local.tee $7 - i32.load - local.tee $9 - select - i32.add - i32.load - local.tee $0 - i32.eqz - br_if $block_10 - local.get $7 - local.get $5 - i32.const 16 - i32.add - local.get $9 - select - local.set $9 - block $block_38 - loop $loop_2 - local.get $9 - local.set $3 - block $block_39 - local.get $0 - local.tee $7 - i32.const 20 - i32.add - local.tee $9 - i32.load - local.tee $0 - i32.eqz - br_if $block_39 - local.get $0 - br_if $loop_2 - br $block_38 - end ;; $block_39 - local.get $7 - i32.const 16 - i32.add - local.set $9 - local.get $7 - i32.load offset=16 - local.tee $0 - br_if $loop_2 - end ;; $loop_2 - end ;; $block_38 - local.get $3 - i32.const 0 - i32.store - local.get $15 - br_if $block_9 - br $block_6 - end ;; $block_15 - i32.const 0 - local.get $3 - local.get $9 - i32.or - i32.store offset=1054576 - local.get $6 - local.set $9 - end ;; $block_14 - local.get $6 - local.get $0 - i32.store offset=8 - local.get $9 - local.get $0 - i32.store offset=12 - local.get $0 - local.get $6 - i32.store offset=12 - local.get $0 - local.get $9 - i32.store offset=8 - end ;; $block_13 - i32.const 0 - local.get $5 - i32.store offset=1054984 - i32.const 0 - local.get $2 - i32.store offset=1054976 - local.get $7 - return - end ;; $block_12 - block $block_40 - block $block_41 - i32.const 0 - i32.load offset=1055020 - local.tee $0 - i32.eqz - br_if $block_41 - local.get $0 - local.get $9 - i32.le_u - br_if $block_40 - end ;; $block_41 - i32.const 0 - local.get $9 - i32.store offset=1055020 - end ;; $block_40 - i32.const 0 - i32.const 4095 - i32.store offset=1055024 - i32.const 0 - local.get $8 - i32.store offset=1055004 - i32.const 0 - local.get $9 - i32.store offset=1055000 - i32.const 0 - i32.const 1054584 - i32.store offset=1054596 - i32.const 0 - i32.const 1054592 - i32.store offset=1054604 - i32.const 0 - i32.const 1054584 - i32.store offset=1054592 - i32.const 0 - i32.const 1054600 - i32.store offset=1054612 - i32.const 0 - i32.const 1054592 - i32.store offset=1054600 - i32.const 0 - i32.const 1054608 - i32.store offset=1054620 - i32.const 0 - i32.const 1054600 - i32.store offset=1054608 - i32.const 0 - i32.const 1054616 - i32.store offset=1054628 - i32.const 0 - i32.const 1054608 - i32.store offset=1054616 - i32.const 0 - i32.const 1054624 - i32.store offset=1054636 - i32.const 0 - i32.const 1054616 - i32.store offset=1054624 - i32.const 0 - i32.const 1054632 - i32.store offset=1054644 - i32.const 0 - i32.const 1054624 - i32.store offset=1054632 - i32.const 0 - i32.const 1054640 - i32.store offset=1054652 - i32.const 0 - i32.const 1054632 - i32.store offset=1054640 - i32.const 0 - i32.const 0 - i32.store offset=1055012 - i32.const 0 - i32.const 1054648 - i32.store offset=1054660 - i32.const 0 - i32.const 1054640 - i32.store offset=1054648 - i32.const 0 - i32.const 1054656 - i32.store offset=1054668 - i32.const 0 - i32.const 1054648 - i32.store offset=1054656 - i32.const 0 - i32.const 1054664 - i32.store offset=1054676 - i32.const 0 - i32.const 1054656 - i32.store offset=1054664 - i32.const 0 - i32.const 1054672 - i32.store offset=1054684 - i32.const 0 - i32.const 1054664 - i32.store offset=1054672 - i32.const 0 - i32.const 1054680 - i32.store offset=1054692 - i32.const 0 - i32.const 1054672 - i32.store offset=1054680 - i32.const 0 - i32.const 1054688 - i32.store offset=1054700 - i32.const 0 - i32.const 1054680 - i32.store offset=1054688 - i32.const 0 - i32.const 1054696 - i32.store offset=1054708 - i32.const 0 - i32.const 1054688 - i32.store offset=1054696 - i32.const 0 - i32.const 1054704 - i32.store offset=1054716 - i32.const 0 - i32.const 1054696 - i32.store offset=1054704 - i32.const 0 - i32.const 1054712 - i32.store offset=1054724 - i32.const 0 - i32.const 1054704 - i32.store offset=1054712 - i32.const 0 - i32.const 1054720 - i32.store offset=1054732 - i32.const 0 - i32.const 1054712 - i32.store offset=1054720 - i32.const 0 - i32.const 1054728 - i32.store offset=1054740 - i32.const 0 - i32.const 1054720 - i32.store offset=1054728 - i32.const 0 - i32.const 1054736 - i32.store offset=1054748 - i32.const 0 - i32.const 1054728 - i32.store offset=1054736 - i32.const 0 - i32.const 1054744 - i32.store offset=1054756 - i32.const 0 - i32.const 1054736 - i32.store offset=1054744 - i32.const 0 - i32.const 1054752 - i32.store offset=1054764 - i32.const 0 - i32.const 1054744 - i32.store offset=1054752 - i32.const 0 - i32.const 1054760 - i32.store offset=1054772 - i32.const 0 - i32.const 1054752 - i32.store offset=1054760 - i32.const 0 - i32.const 1054768 - i32.store offset=1054780 - i32.const 0 - i32.const 1054760 - i32.store offset=1054768 - i32.const 0 - i32.const 1054776 - i32.store offset=1054788 - i32.const 0 - i32.const 1054768 - i32.store offset=1054776 - i32.const 0 - i32.const 1054784 - i32.store offset=1054796 - i32.const 0 - i32.const 1054776 - i32.store offset=1054784 - i32.const 0 - i32.const 1054792 - i32.store offset=1054804 - i32.const 0 - i32.const 1054784 - i32.store offset=1054792 - i32.const 0 - i32.const 1054800 - i32.store offset=1054812 - i32.const 0 - i32.const 1054792 - i32.store offset=1054800 - i32.const 0 - i32.const 1054808 - i32.store offset=1054820 - i32.const 0 - i32.const 1054800 - i32.store offset=1054808 - i32.const 0 - i32.const 1054816 - i32.store offset=1054828 - i32.const 0 - i32.const 1054808 - i32.store offset=1054816 - i32.const 0 - i32.const 1054824 - i32.store offset=1054836 - i32.const 0 - i32.const 1054816 - i32.store offset=1054824 - i32.const 0 - i32.const 1054832 - i32.store offset=1054844 - i32.const 0 - i32.const 1054824 - i32.store offset=1054832 - i32.const 0 - local.get $9 - i32.store offset=1054988 - i32.const 0 - i32.const 1054832 - i32.store offset=1054840 - i32.const 0 - local.get $8 - i32.const -40 - i32.add - local.tee $0 - i32.store offset=1054980 - local.get $9 - local.get $0 - i32.const 1 - i32.or - i32.store offset=4 - local.get $9 - local.get $0 - i32.add - i32.const 40 - i32.store offset=4 - i32.const 0 - i32.const 2097152 - i32.store offset=1055016 - i32.const 0 - local.set $6 - i32.const 0 - i32.load offset=1054980 - local.tee $0 - local.get $2 - i32.le_u - br_if $block - br $block_0 + global.get $15 + i32.const 64 + i32.sub + local.tee $4 + global.set $15 + local.get $4 + local.get $1 + i32.store offset=12 + local.get $4 + local.get $0 + i32.store offset=8 + local.get $4 + local.get $3 + i32.store offset=20 + local.get $4 + local.get $2 + i32.store offset=16 + local.get $4 + i32.const 44 + i32.add + i32.const 2 + i32.store + local.get $4 + i32.const 60 + i32.add + i32.const 5 + i32.store + local.get $4 + i64.const 2 + i64.store offset=28 align=4 + local.get $4 + i32.const 1054552 + i32.store offset=24 + local.get $4 + i32.const 1 + i32.store offset=52 + local.get $4 + local.get $4 + i32.const 48 + i32.add + i32.store offset=40 + local.get $4 + local.get $4 + i32.const 16 + i32.add + i32.store offset=56 + local.get $4 + local.get $4 + i32.const 8 + i32.add + i32.store offset=48 + local.get $4 + i32.const 24 + i32.add + i32.const 1054572 + call $core::panicking::panic_fmt::h772cfe55da576359 + unreachable + ) + + (func $core::panicking::panic::h540eb5ee6ff533c2 (type $5) + (param $0 i32) + (local $1 i32) + (local $2 i64) + (local $3 i64) + (local $4 i64) + global.get $15 + i32.const 48 + i32.sub + local.tee $1 + global.set $15 + local.get $0 + i64.load offset=8 align=4 + local.set $2 + local.get $0 + i64.load offset=16 align=4 + local.set $3 + local.get $0 + i64.load align=4 + local.set $4 + local.get $1 + i32.const 20 + i32.add + i32.const 0 + i32.store + local.get $1 + i32.const 1049116 + i32.store offset=16 + local.get $1 + i64.const 1 + i64.store offset=4 align=4 + local.get $1 + local.get $4 + i64.store offset=24 + local.get $1 + local.get $1 + i32.const 24 + i32.add + i32.store + local.get $1 + local.get $3 + i64.store offset=40 + local.get $1 + local.get $2 + i64.store offset=32 + local.get $1 + local.get $1 + i32.const 32 + i32.add + call $core::panicking::panic_fmt::h772cfe55da576359 + unreachable + ) + + (func $__post_instantiate (type $6) + (local $0 i32) + (local $1 i32) + global.get $15 + i32.const 16 + i32.sub + local.tee $0 + global.set $15 + i32.const 0 + i32.const 0 + i32.load offset=1054684 + local.tee $1 + i32.const 1 + local.get $1 + select + i32.store offset=1054684 + block $block + block $block_0 + local.get $1 + i32.const 1 + i32.gt_u + br_if $block_0 + block $block_1 + local.get $1 + br_table + $block $block_1 + $block ;; default + end ;; $block_1 + loop $loop + i32.const 0 + i32.load offset=1054684 + i32.const 1 + i32.eq + br_if $loop + end ;; $loop + end ;; $block_0 + i32.const 1048912 + i32.const 43 + local.get $0 + i32.const 8 + i32.add + i32.const 1048956 + call $core::result::unwrap_failed::h00271bebc73f1849 + unreachable + end ;; $block + i32.const 0 + i32.const 1048808 + i32.store offset=1055164 + i32.const 0 + i32.const 1049116 + i32.store offset=1055160 + i32.const 0 + i32.const 2 + i32.store offset=1054684 + i32.const 0 + i32.const 5 + i32.store offset=1054680 + local.get $0 + i32.const 16 + i32.add + global.set $15 + ) + + (func $_malloc (type $8) + (param $0 i32) + (result i32) + (local $1 i32) + block $block + block $block_0 + local.get $0 + i32.const -1 + i32.le_s + br_if $block_0 + block $block_1 + local.get $0 + br_if $block_1 + i32.const 1 + return + end ;; $block_1 + local.get $0 + i32.const 1 + call $__rust_alloc + local.tee $1 + i32.eqz + br_if $block + local.get $1 + return + end ;; $block_0 + call $alloc::raw_vec::RawVec::allocate_in::_7b__7b_closure_7d__7d_::ha9193fd2beb4c622 + unreachable + end ;; $block + local.get $0 + i32.const 1 + i32.const 0 + i32.load offset=1055156 + local.tee $1 + i32.const 2 + local.get $1 + select + call_indirect $13 (type $0) + unreachable + unreachable + ) + + (func $_free (type $5) + (param $0 i32) + block $block + local.get $0 + i32.eqz + br_if $block + local.get $0 + call $__rust_dealloc + end ;; $block + ) + + (func $::enabled::h4d0d6b60212bce89 (type $2) + (param $0 i32) + (param $1 i32) + (result i32) + i32.const 0 + ) + + (func $::log::hab97ea506f147727 (type $0) + (param $0 i32) + (param $1 i32) + ) + + (func $::flush::hf78c792c6fe83c70 (type $5) + (param $0 i32) + ) + + (func $core::ptr::real_drop_in_place::h38d0d042ad615819 (type $5) + (param $0 i32) + ) + + (func $::fmt::h323d5f06fc0398c5 (type $2) + (param $0 i32) + (param $1 i32) + (result i32) + (local $2 i32) + (local $3 i32) + (local $4 i32) + (local $5 i32) + global.get $15 + i32.const 80 + i32.sub + local.tee $2 + global.set $15 + i32.const 1 + local.set $3 + block $block + local.get $1 + i32.load offset=24 + i32.const 1049020 + i32.const 14 + local.get $1 + i32.const 28 + i32.add + i32.load + i32.load offset=12 + call_indirect $13 (type $1) + br_if $block + local.get $1 + i32.load offset=24 + local.set $4 + local.get $1 + i32.load offset=28 + i32.load offset=12 + local.set $5 + block $block_0 + block $block_1 + local.get $1 + i32.load8_u + i32.const 4 + i32.and + br_if $block_1 + i32.const 1 + local.set $3 + local.get $4 + i32.const 1054668 + i32.const 1 + local.get $5 + call_indirect $13 (type $1) + br_if $block + local.get $1 + i32.const 1049034 + i32.const 2 + call $core::fmt::Formatter::pad::h65a2184638dd238f + i32.eqz + br_if $block_0 + br $block + end ;; $block_1 + local.get $4 + i32.const 1054669 + i32.const 2 + local.get $5 + call_indirect $13 (type $1) + br_if $block + local.get $1 + i32.load + local.set $4 + i32.const 1 + local.set $3 + local.get $2 + i32.const 1 + i32.store8 offset=23 + local.get $2 + i32.const 52 + i32.add + i32.const 1054612 + i32.store + local.get $2 + local.get $4 + i32.store offset=24 + local.get $2 + local.get $1 + i64.load offset=24 align=4 + i64.store offset=8 + local.get $2 + local.get $1 + i32.load8_u offset=48 + i32.store8 offset=72 + local.get $2 + local.get $1 + i32.load offset=4 + i32.store offset=28 + local.get $2 + local.get $1 + i64.load offset=40 align=4 + i64.store offset=64 + local.get $2 + local.get $1 + i64.load offset=32 align=4 + i64.store offset=56 + local.get $2 + local.get $1 + i64.load offset=16 align=4 + i64.store offset=40 + local.get $2 + local.get $1 + i64.load offset=8 align=4 + i64.store offset=32 + local.get $2 + local.get $2 + i32.const 23 + i32.add + i32.store offset=16 + local.get $2 + local.get $2 + i32.const 8 + i32.add + i32.store offset=48 + local.get $2 + i32.const 24 + i32.add + i32.const 1049034 + i32.const 2 + call $core::fmt::Formatter::pad::h65a2184638dd238f + br_if $block + local.get $2 + i32.const 8 + i32.add + i32.const 1054636 + i32.const 2 + call $::write_str::h3cfa2330727f68d0 + br_if $block + end ;; $block_0 + local.get $1 + i32.load offset=24 + i32.const 1054609 + i32.const 1 + local.get $1 + i32.load offset=28 + i32.load offset=12 + call_indirect $13 (type $1) + local.set $3 + end ;; $block + local.get $2 + i32.const 80 + i32.add + global.set $15 + local.get $3 + ) + + (func $core::fmt::Formatter::pad::h65a2184638dd238f (type $1) + (param $0 i32) + (param $1 i32) + (param $2 i32) + (result i32) + (local $3 i32) + (local $4 i32) + (local $5 i32) + (local $6 i32) + (local $7 i32) + (local $8 i32) + (local $9 i32) + (local $10 i32) + (local $11 i32) + (local $12 i32) + (local $13 i32) + (local $14 i32) + local.get $0 + i32.load offset=16 + local.set $3 + block $block + block $block_0 + block $block_1 + block $block_2 + local.get $0 + i32.load offset=8 + local.tee $4 + i32.const 1 + i32.eq + br_if $block_2 + local.get $3 + br_if $block_1 + local.get $0 + i32.load offset=24 + local.get $1 + local.get $2 + local.get $0 + i32.const 28 + i32.add + i32.load + i32.load offset=12 + call_indirect $13 (type $1) + local.set $3 + br $block + end ;; $block_2 + local.get $3 + i32.eqz + br_if $block_0 + end ;; $block_1 + block $block_3 + block $block_4 + local.get $2 + br_if $block_4 + i32.const 0 + local.set $2 + br $block_3 + end ;; $block_4 + local.get $1 + local.get $2 + i32.add + local.set $5 + local.get $0 + i32.const 20 + i32.add + i32.load + i32.const 1 + i32.add + local.set $6 + i32.const 0 + local.set $7 + local.get $1 + local.set $3 + local.get $1 + local.set $8 + loop $loop + local.get $3 + i32.const 1 + i32.add + local.set $9 + block $block_5 + block $block_6 + block $block_7 + local.get $3 + i32.load8_s + local.tee $10 + i32.const -1 + i32.gt_s + br_if $block_7 + block $block_8 + block $block_9 + local.get $9 + local.get $5 + i32.ne + br_if $block_9 + i32.const 0 + local.set $11 + local.get $5 + local.set $3 + br $block_8 + end ;; $block_9 + local.get $3 + i32.load8_u offset=1 + i32.const 63 + i32.and + local.set $11 + local.get $3 + i32.const 2 + i32.add + local.tee $9 + local.set $3 + end ;; $block_8 + local.get $10 + i32.const 31 + i32.and + local.set $12 + block $block_10 + local.get $10 + i32.const 255 + i32.and + local.tee $10 + i32.const 223 + i32.gt_u + br_if $block_10 + local.get $11 + local.get $12 + i32.const 6 + i32.shl + i32.or + local.set $10 + br $block_6 + end ;; $block_10 + block $block_11 + block $block_12 + local.get $3 + local.get $5 + i32.ne + br_if $block_12 + i32.const 0 + local.set $13 + local.get $5 + local.set $14 + br $block_11 + end ;; $block_12 + local.get $3 + i32.load8_u + i32.const 63 + i32.and + local.set $13 + local.get $3 + i32.const 1 + i32.add + local.tee $9 + local.set $14 + end ;; $block_11 + local.get $13 + local.get $11 + i32.const 6 + i32.shl + i32.or + local.set $11 + block $block_13 + local.get $10 + i32.const 240 + i32.ge_u + br_if $block_13 + local.get $11 + local.get $12 + i32.const 12 + i32.shl + i32.or + local.set $10 + br $block_6 + end ;; $block_13 + block $block_14 + block $block_15 + local.get $14 + local.get $5 + i32.ne + br_if $block_15 + i32.const 0 + local.set $10 + local.get $9 + local.set $3 + br $block_14 + end ;; $block_15 + local.get $14 + i32.const 1 + i32.add + local.set $3 + local.get $14 + i32.load8_u + i32.const 63 + i32.and + local.set $10 + end ;; $block_14 + local.get $11 + i32.const 6 + i32.shl + local.get $12 + i32.const 18 + i32.shl + i32.const 1835008 + i32.and + i32.or + local.get $10 + i32.or + local.tee $10 + i32.const 1114112 + i32.ne + br_if $block_5 + br $block_3 + end ;; $block_7 + local.get $10 + i32.const 255 + i32.and + local.set $10 + end ;; $block_6 + local.get $9 + local.set $3 + end ;; $block_5 + block $block_16 + local.get $6 + i32.const -1 + i32.add + local.tee $6 + i32.eqz + br_if $block_16 + local.get $7 + local.get $8 + i32.sub + local.get $3 + i32.add + local.set $7 + local.get $3 + local.set $8 + local.get $5 + local.get $3 + i32.ne + br_if $loop + br $block_3 + end ;; $block_16 + end ;; $loop + local.get $10 + i32.const 1114112 + i32.eq + br_if $block_3 + block $block_17 + block $block_18 + local.get $7 + i32.eqz + br_if $block_18 + local.get $7 + local.get $2 + i32.eq + br_if $block_18 + i32.const 0 + local.set $3 + local.get $7 + local.get $2 + i32.ge_u + br_if $block_17 + local.get $1 + local.get $7 + i32.add + i32.load8_s + i32.const -64 + i32.lt_s + br_if $block_17 + end ;; $block_18 + local.get $1 + local.set $3 + end ;; $block_17 + local.get $7 + local.get $2 + local.get $3 + select + local.set $2 + local.get $3 + local.get $1 + local.get $3 + select + local.set $1 + end ;; $block_3 + local.get $4 + br_if $block_0 + local.get $0 + i32.load offset=24 + local.get $1 + local.get $2 + local.get $0 + i32.const 28 + i32.add + i32.load + i32.load offset=12 + call_indirect $13 (type $1) + return + end ;; $block_0 + i32.const 0 + local.set $9 + block $block_19 + local.get $2 + i32.eqz + br_if $block_19 + local.get $2 + local.set $10 + local.get $1 + local.set $3 + loop $loop_0 + local.get $9 + local.get $3 + i32.load8_u + i32.const 192 + i32.and + i32.const 128 + i32.eq + i32.add + local.set $9 + local.get $3 + i32.const 1 + i32.add + local.set $3 + local.get $10 + i32.const -1 + i32.add + local.tee $10 + br_if $loop_0 + end ;; $loop_0 + end ;; $block_19 + block $block_20 + local.get $2 + local.get $9 + i32.sub + local.get $0 + i32.load offset=12 + local.tee $6 + i32.lt_u + br_if $block_20 + local.get $0 + i32.load offset=24 + local.get $1 + local.get $2 + local.get $0 + i32.const 28 + i32.add + i32.load + i32.load offset=12 + call_indirect $13 (type $1) + return + end ;; $block_20 + i32.const 0 + local.set $7 + i32.const 0 + local.set $9 + block $block_21 + local.get $2 + i32.eqz + br_if $block_21 + i32.const 0 + local.set $9 + local.get $2 + local.set $10 + local.get $1 + local.set $3 + loop $loop_1 + local.get $9 + local.get $3 + i32.load8_u + i32.const 192 + i32.and + i32.const 128 + i32.eq + i32.add + local.set $9 + local.get $3 + i32.const 1 + i32.add + local.set $3 + local.get $10 + i32.const -1 + i32.add + local.tee $10 + br_if $loop_1 + end ;; $loop_1 + end ;; $block_21 + local.get $9 + local.get $2 + i32.sub + local.get $6 + i32.add + local.set $10 + block $block_22 + block $block_23 + block $block_24 + i32.const 0 + local.get $0 + i32.load8_u offset=48 + local.tee $3 + local.get $3 + i32.const 3 + i32.eq + select + br_table + $block_22 $block_24 $block_23 $block_24 + $block_22 ;; default + end ;; $block_24 + local.get $10 + local.set $7 + i32.const 0 + local.set $10 + br $block_22 + end ;; $block_23 + local.get $10 + i32.const 1 + i32.shr_u + local.set $7 + local.get $10 + i32.const 1 + i32.add + i32.const 1 + i32.shr_u + local.set $10 + end ;; $block_22 + local.get $7 + i32.const 1 + i32.add + local.set $3 + block $block_25 + loop $loop_2 + local.get $3 + i32.const -1 + i32.add + local.tee $3 + i32.eqz + br_if $block_25 + local.get $0 + i32.load offset=24 + local.get $0 + i32.load offset=4 + local.get $0 + i32.load offset=28 + i32.load offset=16 + call_indirect $13 (type $2) + i32.eqz + br_if $loop_2 + end ;; $loop_2 + i32.const 1 + return + end ;; $block_25 + local.get $0 + i32.load offset=4 + local.set $9 + i32.const 1 + local.set $3 + local.get $0 + i32.load offset=24 + local.get $1 + local.get $2 + local.get $0 + i32.load offset=28 + i32.load offset=12 + call_indirect $13 (type $1) + br_if $block + local.get $10 + i32.const 1 + i32.add + local.set $3 + local.get $0 + i32.load offset=28 + local.set $10 + local.get $0 + i32.load offset=24 + local.set $0 + loop $loop_3 + block $block_26 + local.get $3 + i32.const -1 + i32.add + local.tee $3 + br_if $block_26 + i32.const 0 + return + end ;; $block_26 + local.get $0 + local.get $9 + local.get $10 + i32.load offset=16 + call_indirect $13 (type $2) + i32.eqz + br_if $loop_3 + end ;; $loop_3 + i32.const 1 + return + end ;; $block + local.get $3 + ) + + (func $::write_str::h3cfa2330727f68d0 (type $1) + (param $0 i32) + (param $1 i32) + (param $2 i32) + (result i32) + (local $3 i32) + (local $4 i32) + (local $5 i32) + (local $6 i32) + (local $7 i32) + (local $8 i32) + (local $9 i32) + global.get $15 + i32.const 48 + i32.sub + local.tee $3 + global.set $15 + block $block + block $block_0 + local.get $2 + br_if $block_0 + i32.const 0 + local.set $4 + br $block + end ;; $block_0 + local.get $3 + i32.const 40 + i32.add + local.set $5 + block $block_1 + block $block_2 + block $block_3 + block $block_4 + loop $loop + block $block_5 + local.get $0 + i32.load offset=8 + i32.load8_u + i32.eqz + br_if $block_5 + local.get $0 + i32.load + i32.const 1054664 + i32.const 4 + local.get $0 + i32.load offset=4 + i32.load offset=12 + call_indirect $13 (type $1) + br_if $block_1 + end ;; $block_5 + local.get $3 + i32.const 10 + i32.store offset=40 + local.get $3 + i64.const 4294967306 + i64.store offset=32 + local.get $3 + local.get $2 + i32.store offset=28 + local.get $3 + i32.const 0 + i32.store offset=24 + local.get $3 + local.get $2 + i32.store offset=20 + local.get $3 + local.get $1 + i32.store offset=16 + local.get $3 + i32.const 8 + i32.add + i32.const 10 + local.get $1 + local.get $2 + call $core::slice::memchr::memchr::h9a5a49faa1649096 + block $block_6 + block $block_7 + block $block_8 + block $block_9 + local.get $3 + i32.load offset=8 + i32.const 1 + i32.ne + br_if $block_9 + local.get $3 + i32.load offset=12 + local.set $4 + loop $loop_0 + local.get $3 + local.get $4 + local.get $3 + i32.load offset=24 + i32.add + i32.const 1 + i32.add + local.tee $4 + i32.store offset=24 + block $block_10 + block $block_11 + local.get $4 + local.get $3 + i32.load offset=36 + local.tee $6 + i32.ge_u + br_if $block_11 + local.get $3 + i32.load offset=20 + local.set $7 + br $block_10 end ;; $block_11 - local.get $0 + local.get $3 + i32.load offset=20 + local.tee $7 + local.get $4 + i32.lt_u + br_if $block_10 + local.get $6 + i32.const 5 + i32.ge_u + br_if $block_4 + local.get $3 + i32.load offset=16 + local.get $4 + local.get $6 + i32.sub + local.tee $8 + i32.add + local.tee $9 + local.get $5 + i32.eq + br_if $block_7 + local.get $9 + local.get $5 + local.get $6 + call $memcmp + i32.eqz + br_if $block_7 + end ;; $block_10 + local.get $3 + i32.load offset=28 + local.tee $9 + local.get $4 + i32.lt_u + br_if $block_8 + local.get $7 + local.get $9 + i32.lt_u + br_if $block_8 + local.get $3 + local.get $6 + local.get $3 + i32.const 16 + i32.add + i32.add + i32.const 23 + i32.add + i32.load8_u + local.get $3 + i32.load offset=16 + local.get $4 + i32.add + local.get $9 + local.get $4 + i32.sub + call $core::slice::memchr::memchr::h9a5a49faa1649096 + local.get $3 + i32.load offset=4 + local.set $4 + local.get $3 + i32.load + i32.const 1 + i32.eq + br_if $loop_0 + end ;; $loop_0 + end ;; $block_9 + local.get $3 + local.get $3 + i32.load offset=28 + i32.store offset=24 + end ;; $block_8 + local.get $0 + i32.load offset=8 + i32.const 0 + i32.store8 + local.get $2 + local.set $4 + br $block_6 + end ;; $block_7 + local.get $0 + i32.load offset=8 + i32.const 1 + i32.store8 + local.get $8 + i32.const 1 + i32.add + local.set $4 + end ;; $block_6 + local.get $0 + i32.load offset=4 + local.set $9 + local.get $0 + i32.load + local.set $6 + block $block_12 + local.get $4 + i32.eqz + local.get $2 + local.get $4 + i32.eq + i32.or + local.tee $7 + br_if $block_12 + local.get $2 + local.get $4 + i32.le_u + br_if $block_3 + local.get $1 + local.get $4 + i32.add + i32.load8_s + i32.const -65 + i32.le_s + br_if $block_3 + end ;; $block_12 + local.get $6 + local.get $1 + local.get $4 + local.get $9 + i32.load offset=12 + call_indirect $13 (type $1) + br_if $block_1 + block $block_13 + local.get $7 + br_if $block_13 + local.get $2 + local.get $4 + i32.le_u + br_if $block_2 + local.get $1 + local.get $4 + i32.add + i32.load8_s + i32.const -65 + i32.le_s + br_if $block_2 + end ;; $block_13 + local.get $1 + local.get $4 + i32.add + local.set $1 + local.get $2 + local.get $4 + i32.sub + local.tee $2 + br_if $loop + end ;; $loop + i32.const 0 + local.set $4 + br $block + end ;; $block_4 + local.get $6 + i32.const 4 + call $core::slice::slice_index_len_fail::h7c242876dcc4f7b2 + unreachable + end ;; $block_3 + local.get $1 + local.get $2 + i32.const 0 + local.get $4 + call $core::str::slice_error_fail::he0fc563abf615243 + unreachable + end ;; $block_2 + local.get $1 + local.get $2 + local.get $4 + local.get $2 + call $core::str::slice_error_fail::he0fc563abf615243 + unreachable + end ;; $block_1 + i32.const 1 + local.set $4 + end ;; $block + local.get $3 + i32.const 48 + i32.add + global.set $15 + local.get $4 + ) + + (func $std::panicking::rust_panic_with_hook::hd01e7017ef618665 (type $5) + (param $0 i32) + (local $1 i32) + (local $2 i32) + i32.const 1 + local.set $1 + block $block + block $block_0 + block $block_1 + i32.const 0 + i32.load offset=1055144 + i32.const 1 + i32.eq + br_if $block_1 + i32.const 0 + i64.const 4294967297 + i64.store offset=1055144 + br $block_0 + end ;; $block_1 + i32.const 0 + i32.const 0 + i32.load offset=1055148 + i32.const 1 + i32.add + local.tee $1 + i32.store offset=1055148 + local.get $1 + i32.const 2 + i32.gt_u + br_if $block + end ;; $block_0 + i32.const 0 + i32.load offset=1055152 + local.tee $2 + i32.const -1 + i32.le_s + br_if $block + i32.const 0 + local.get $2 + i32.store offset=1055152 + local.get $1 + i32.const 1 + i32.gt_u + br_if $block + call $rust_panic + unreachable + end ;; $block + unreachable + unreachable + ) + + (func $rust_panic (type $6) + unreachable + unreachable + ) + + (func $std::panicking::continue_panic_fmt::he42d474e4cddb3a9 (type $5) + (param $0 i32) + (local $1 i32) + global.get $15 + i32.const 16 + i32.sub + local.tee $1 + global.set $15 + local.get $0 + i32.load offset=8 + call $core::option::Option::unwrap::h129a791fa84208d0 + drop + local.get $1 + local.get $0 + i32.const 20 + i32.add + i64.load align=4 + i64.store offset=8 + local.get $1 + local.get $0 + i64.load offset=12 align=4 + i64.store + local.get $1 + call $std::panicking::rust_panic_with_hook::hd01e7017ef618665 + unreachable + ) + + (func $core::option::Option::unwrap::h129a791fa84208d0 (type $8) + (param $0 i32) + (result i32) + block $block + local.get $0 + br_if $block + i32.const 1049644 + call $core::panicking::panic::h540eb5ee6ff533c2 + unreachable + end ;; $block + local.get $0 + ) + + (func $__rdl_alloc (type $2) + (param $0 i32) + (param $1 i32) + (result i32) + (local $2 i32) + (local $3 i32) + (local $4 i32) + (local $5 i32) + (local $6 i32) + block $block + block $block_0 + local.get $1 + i32.const 9 + i32.lt_u + br_if $block_0 + i32.const 0 + local.set $2 + i32.const -65587 + local.get $1 + i32.const 16 + local.get $1 + i32.const 16 + i32.gt_u + select + local.tee $1 + i32.sub + local.get $0 + i32.le_u + br_if $block + local.get $1 + i32.const 16 + local.get $0 + i32.const 11 + i32.add + i32.const -8 + i32.and + local.get $0 + i32.const 11 + i32.lt_u + select + local.tee $3 + i32.add + i32.const 12 + i32.add + call $dlmalloc::dlmalloc::Dlmalloc::malloc::hec92e476cdfbbd60 + local.tee $0 + i32.eqz + br_if $block + local.get $0 + i32.const -8 + i32.add + local.set $2 + block $block_1 + block $block_2 + local.get $1 + i32.const -1 + i32.add + local.tee $4 + local.get $0 + i32.and + br_if $block_2 + local.get $2 + local.set $1 + br $block_1 + end ;; $block_2 + local.get $0 + i32.const -4 + i32.add + local.tee $5 + i32.load + local.tee $6 + i32.const -8 + i32.and + local.get $4 + local.get $0 + i32.add + i32.const 0 + local.get $1 + i32.sub + i32.and + i32.const -8 + i32.add + local.tee $0 + local.get $0 + local.get $1 + i32.add + local.get $0 + local.get $2 + i32.sub + i32.const 16 + i32.gt_u + select + local.tee $1 + local.get $2 + i32.sub + local.tee $0 + i32.sub + local.set $4 + block $block_3 + local.get $6 + i32.const 3 + i32.and + i32.eqz + br_if $block_3 + local.get $1 + local.get $4 + local.get $1 + i32.load offset=4 + i32.const 1 + i32.and + i32.or + i32.const 2 + i32.or + i32.store offset=4 + local.get $1 + local.get $4 + i32.add + local.tee $4 + local.get $4 + i32.load offset=4 + i32.const 1 + i32.or + i32.store offset=4 + local.get $5 + local.get $0 + local.get $5 + i32.load + i32.const 1 + i32.and + i32.or + i32.const 2 + i32.or + i32.store + local.get $1 + local.get $1 + i32.load offset=4 + i32.const 1 + i32.or + i32.store offset=4 + local.get $2 + local.get $0 + call $dlmalloc::dlmalloc::Dlmalloc::dispose_chunk::h1effa892c850b7b3 + br $block_1 + end ;; $block_3 + local.get $2 + i32.load + local.set $2 + local.get $1 + local.get $4 + i32.store offset=4 + local.get $1 + local.get $2 + local.get $0 + i32.add + i32.store + end ;; $block_1 + block $block_4 + local.get $1 + i32.load offset=4 + local.tee $0 + i32.const 3 + i32.and + i32.eqz + br_if $block_4 + local.get $0 + i32.const -8 + i32.and + local.tee $2 + local.get $3 + i32.const 16 + i32.add + i32.le_u + br_if $block_4 + local.get $1 + local.get $3 + local.get $0 + i32.const 1 + i32.and + i32.or + i32.const 2 + i32.or + i32.store offset=4 + local.get $1 + local.get $3 + i32.add + local.tee $0 + local.get $2 + local.get $3 + i32.sub + local.tee $3 + i32.const 3 + i32.or + i32.store offset=4 + local.get $1 + local.get $2 + i32.add + local.tee $2 + local.get $2 + i32.load offset=4 + i32.const 1 + i32.or + i32.store offset=4 + local.get $0 + local.get $3 + call $dlmalloc::dlmalloc::Dlmalloc::dispose_chunk::h1effa892c850b7b3 + end ;; $block_4 + local.get $1 + i32.const 8 + i32.add + return + end ;; $block_0 + local.get $0 + call $dlmalloc::dlmalloc::Dlmalloc::malloc::hec92e476cdfbbd60 + local.set $2 + end ;; $block + local.get $2 + ) + + (func $dlmalloc::dlmalloc::Dlmalloc::malloc::hec92e476cdfbbd60 (type $8) + (param $0 i32) + (result i32) + (local $1 i32) + (local $2 i32) + (local $3 i32) + (local $4 i32) + (local $5 i32) + (local $6 i32) + (local $7 i32) + (local $8 i32) + (local $9 i32) + (local $10 i64) + block $block + block $block_0 + block $block_1 + local.get $0 + i32.const 245 + i32.lt_u + br_if $block_1 + i32.const 0 + local.set $1 + local.get $0 + i32.const -65587 + i32.ge_u + br_if $block + local.get $0 + i32.const 11 + i32.add + local.tee $0 + i32.const -8 + i32.and + local.set $2 + i32.const 0 + i32.load offset=1054692 + local.tee $3 + i32.eqz + br_if $block_0 + i32.const 0 + local.set $4 + block $block_2 + local.get $0 + i32.const 8 + i32.shr_u + local.tee $0 + i32.eqz + br_if $block_2 + i32.const 31 + local.set $4 + local.get $2 + i32.const 16777215 + i32.gt_u + br_if $block_2 + local.get $2 + i32.const 6 + local.get $0 + i32.clz + local.tee $0 + i32.sub + i32.const 31 + i32.and + i32.shr_u + i32.const 1 + i32.and + local.get $0 + i32.const 1 + i32.shl + i32.sub + i32.const 62 + i32.add + local.set $4 + end ;; $block_2 + i32.const 0 + local.get $2 + i32.sub + local.set $1 + block $block_3 + block $block_4 + block $block_5 + local.get $4 + i32.const 2 + i32.shl + i32.const 1054960 + i32.add + i32.load + local.tee $0 + i32.eqz + br_if $block_5 + i32.const 0 + local.set $5 + local.get $2 + i32.const 0 + i32.const 25 + local.get $4 + i32.const 1 + i32.shr_u + i32.sub + i32.const 31 + i32.and + local.get $4 + i32.const 31 + i32.eq + select + i32.shl + local.set $6 + i32.const 0 + local.set $7 + loop $loop + block $block_6 + local.get $0 + i32.load offset=4 + i32.const -8 + i32.and + local.tee $8 + local.get $2 + i32.lt_u + br_if $block_6 + local.get $8 + local.get $2 + i32.sub + local.tee $8 + local.get $1 + i32.ge_u + br_if $block_6 + local.get $8 + local.set $1 + local.get $0 + local.set $7 + local.get $8 + br_if $block_6 + i32.const 0 + local.set $1 + local.get $0 + local.set $7 + br $block_4 + end ;; $block_6 + local.get $0 + i32.const 20 + i32.add + i32.load + local.tee $8 + local.get $5 + local.get $8 + local.get $0 + local.get $6 + i32.const 29 + i32.shr_u + i32.const 4 + i32.and + i32.add + i32.const 16 + i32.add + i32.load + local.tee $0 + i32.ne + select + local.get $5 + local.get $8 + select + local.set $5 + local.get $6 + i32.const 1 + i32.shl + local.set $6 + local.get $0 + br_if $loop + end ;; $loop + block $block_7 + local.get $5 + i32.eqz + br_if $block_7 + local.get $5 + local.set $0 + br $block_4 + end ;; $block_7 + local.get $7 + br_if $block_3 + end ;; $block_5 + i32.const 0 + local.set $7 + i32.const 2 + local.get $4 + i32.const 31 + i32.and + i32.shl + local.tee $0 + i32.const 0 + local.get $0 + i32.sub + i32.or + local.get $3 + i32.and + local.tee $0 + i32.eqz + br_if $block_0 + local.get $0 + i32.const 0 + local.get $0 + i32.sub + i32.and + i32.ctz + i32.const 2 + i32.shl + i32.const 1054960 + i32.add + i32.load + local.tee $0 + i32.eqz + br_if $block_0 + end ;; $block_4 + loop $loop_0 + local.get $0 + i32.load offset=4 + i32.const -8 + i32.and + local.tee $5 + local.get $2 + i32.ge_u + local.get $5 + local.get $2 + i32.sub + local.tee $8 + local.get $1 + i32.lt_u + i32.and + local.set $6 + block $block_8 + local.get $0 + i32.load offset=16 + local.tee $5 + br_if $block_8 + local.get $0 + i32.const 20 + i32.add + i32.load + local.set $5 + end ;; $block_8 + local.get $0 + local.get $7 + local.get $6 + select + local.set $7 + local.get $8 + local.get $1 + local.get $6 + select + local.set $1 + local.get $5 + local.set $0 + local.get $5 + br_if $loop_0 + end ;; $loop_0 + local.get $7 + i32.eqz + br_if $block_0 + end ;; $block_3 + block $block_9 + i32.const 0 + i32.load offset=1055088 + local.tee $0 + local.get $2 + i32.lt_u + br_if $block_9 + local.get $1 + local.get $0 + local.get $2 + i32.sub + i32.ge_u + br_if $block_0 + end ;; $block_9 + local.get $7 + i32.load offset=24 + local.set $4 + block $block_10 + block $block_11 + block $block_12 + local.get $7 + i32.load offset=12 + local.tee $5 + local.get $7 + i32.ne + br_if $block_12 + local.get $7 + i32.const 20 + i32.const 16 + local.get $7 + i32.const 20 + i32.add + local.tee $5 + i32.load + local.tee $6 + select + i32.add + i32.load + local.tee $0 + br_if $block_11 + i32.const 0 + local.set $5 + br $block_10 + end ;; $block_12 + local.get $7 + i32.load offset=8 + local.tee $0 + local.get $5 + i32.store offset=12 + local.get $5 + local.get $0 + i32.store offset=8 + br $block_10 + end ;; $block_11 + local.get $5 + local.get $7 + i32.const 16 + i32.add + local.get $6 + select + local.set $6 + loop $loop_1 + local.get $6 + local.set $8 + block $block_13 + local.get $0 + local.tee $5 + i32.const 20 + i32.add + local.tee $6 + i32.load + local.tee $0 + br_if $block_13 + local.get $5 + i32.const 16 + i32.add + local.set $6 + local.get $5 + i32.load offset=16 + local.set $0 + end ;; $block_13 + local.get $0 + br_if $loop_1 + end ;; $loop_1 + local.get $8 + i32.const 0 + i32.store + end ;; $block_10 + block $block_14 + local.get $4 + i32.eqz + br_if $block_14 + block $block_15 + block $block_16 + local.get $7 + i32.load offset=28 + i32.const 2 + i32.shl + i32.const 1054960 + i32.add + local.tee $0 + i32.load + local.get $7 + i32.ne + br_if $block_16 + local.get $0 + local.get $5 + i32.store + local.get $5 + br_if $block_15 + i32.const 0 + i32.const 0 + i32.load offset=1054692 + i32.const -2 + local.get $7 + i32.load offset=28 + i32.rotl + i32.and + i32.store offset=1054692 + br $block_14 + end ;; $block_16 + local.get $4 + i32.const 16 + i32.const 20 + local.get $4 + i32.load offset=16 + local.get $7 + i32.eq + select + i32.add + local.get $5 + i32.store + local.get $5 + i32.eqz + br_if $block_14 + end ;; $block_15 + local.get $5 + local.get $4 + i32.store offset=24 + block $block_17 + local.get $7 + i32.load offset=16 + local.tee $0 + i32.eqz + br_if $block_17 + local.get $5 + local.get $0 + i32.store offset=16 + local.get $0 + local.get $5 + i32.store offset=24 + end ;; $block_17 + local.get $7 + i32.const 20 + i32.add + i32.load + local.tee $0 + i32.eqz + br_if $block_14 + local.get $5 + i32.const 20 + i32.add + local.get $0 + i32.store + local.get $0 + local.get $5 + i32.store offset=24 + end ;; $block_14 + block $block_18 + block $block_19 + local.get $1 + i32.const 16 + i32.lt_u + br_if $block_19 + local.get $7 + local.get $2 + i32.const 3 + i32.or + i32.store offset=4 + local.get $7 + local.get $2 + i32.add + local.tee $2 + local.get $1 + i32.const 1 + i32.or + i32.store offset=4 + local.get $2 + local.get $1 + i32.add + local.get $1 + i32.store + block $block_20 + local.get $1 + i32.const 256 + i32.lt_u + br_if $block_20 + i32.const 0 + local.set $0 + block $block_21 + local.get $1 + i32.const 8 + i32.shr_u + local.tee $5 + i32.eqz + br_if $block_21 + i32.const 31 + local.set $0 + local.get $1 + i32.const 16777215 + i32.gt_u + br_if $block_21 + local.get $1 + i32.const 6 + local.get $5 + i32.clz + local.tee $0 + i32.sub + i32.const 31 + i32.and + i32.shr_u + i32.const 1 + i32.and + local.get $0 + i32.const 1 + i32.shl + i32.sub + i32.const 62 + i32.add + local.set $0 + end ;; $block_21 + local.get $2 + i64.const 0 + i64.store offset=16 align=4 + local.get $2 + local.get $0 + i32.store offset=28 + local.get $0 + i32.const 2 + i32.shl + i32.const 1054960 + i32.add + local.set $5 + block $block_22 + block $block_23 + block $block_24 + block $block_25 + block $block_26 + i32.const 0 + i32.load offset=1054692 + local.tee $6 + i32.const 1 + local.get $0 + i32.const 31 + i32.and + i32.shl + local.tee $8 + i32.and + i32.eqz + br_if $block_26 + local.get $5 + i32.load + local.tee $6 + i32.load offset=4 + i32.const -8 + i32.and + local.get $1 + i32.ne + br_if $block_25 + local.get $6 + local.set $0 + br $block_24 + end ;; $block_26 + i32.const 0 + local.get $6 + local.get $8 + i32.or + i32.store offset=1054692 + local.get $5 + local.get $2 + i32.store + local.get $2 + local.get $5 + i32.store offset=24 + br $block_22 + end ;; $block_25 + local.get $1 + i32.const 0 + i32.const 25 + local.get $0 + i32.const 1 + i32.shr_u + i32.sub + i32.const 31 + i32.and + local.get $0 + i32.const 31 + i32.eq + select + i32.shl + local.set $5 + loop $loop_2 + local.get $6 + local.get $5 + i32.const 29 + i32.shr_u + i32.const 4 + i32.and + i32.add + i32.const 16 + i32.add + local.tee $8 + i32.load + local.tee $0 + i32.eqz + br_if $block_23 + local.get $5 + i32.const 1 + i32.shl + local.set $5 + local.get $0 + local.set $6 + local.get $0 + i32.load offset=4 + i32.const -8 + i32.and + local.get $1 + i32.ne + br_if $loop_2 + end ;; $loop_2 + end ;; $block_24 + local.get $0 + i32.load offset=8 + local.tee $1 + local.get $2 + i32.store offset=12 + local.get $0 + local.get $2 + i32.store offset=8 + local.get $2 + i32.const 0 + i32.store offset=24 + local.get $2 + local.get $0 + i32.store offset=12 + local.get $2 + local.get $1 + i32.store offset=8 + br $block_18 + end ;; $block_23 + local.get $8 + local.get $2 + i32.store + local.get $2 + local.get $6 + i32.store offset=24 + end ;; $block_22 + local.get $2 + local.get $2 + i32.store offset=12 + local.get $2 + local.get $2 + i32.store offset=8 + br $block_18 + end ;; $block_20 + local.get $1 + i32.const 3 + i32.shr_u + local.tee $1 + i32.const 3 + i32.shl + i32.const 1054696 + i32.add + local.set $0 + block $block_27 + block $block_28 + i32.const 0 + i32.load offset=1054688 + local.tee $5 + i32.const 1 + local.get $1 + i32.const 31 + i32.and + i32.shl + local.tee $1 + i32.and + i32.eqz + br_if $block_28 + local.get $0 + i32.load offset=8 + local.set $1 + br $block_27 + end ;; $block_28 + i32.const 0 + local.get $5 + local.get $1 + i32.or + i32.store offset=1054688 + local.get $0 + local.set $1 + end ;; $block_27 + local.get $0 + local.get $2 + i32.store offset=8 + local.get $1 + local.get $2 + i32.store offset=12 + local.get $2 + local.get $0 + i32.store offset=12 + local.get $2 + local.get $1 + i32.store offset=8 + br $block_18 + end ;; $block_19 + local.get $7 + local.get $1 + local.get $2 + i32.add + local.tee $0 + i32.const 3 + i32.or + i32.store offset=4 + local.get $7 + local.get $0 + i32.add + local.tee $0 + local.get $0 + i32.load offset=4 + i32.const 1 + i32.or + i32.store offset=4 + end ;; $block_18 + local.get $7 + i32.const 8 + i32.add + return + end ;; $block_1 + block $block_29 + block $block_30 + block $block_31 + i32.const 0 + i32.load offset=1054688 + local.tee $7 + i32.const 16 + local.get $0 + i32.const 11 + i32.add + i32.const -8 + i32.and + local.get $0 + i32.const 11 + i32.lt_u + select + local.tee $2 + i32.const 3 + i32.shr_u + local.tee $1 + i32.const 31 + i32.and + local.tee $5 + i32.shr_u + local.tee $0 + i32.const 3 + i32.and + br_if $block_31 + local.get $2 + i32.const 0 + i32.load offset=1055088 + i32.le_u + br_if $block_0 + local.get $0 + br_if $block_30 + i32.const 0 + i32.load offset=1054692 + local.tee $0 + i32.eqz + br_if $block_0 + local.get $0 + i32.const 0 + local.get $0 + i32.sub + i32.and + i32.ctz + i32.const 2 + i32.shl + i32.const 1054960 + i32.add + i32.load + local.tee $5 + i32.load offset=4 + i32.const -8 + i32.and + local.get $2 + i32.sub + local.set $1 + local.get $5 + local.set $6 + loop $loop_3 + block $block_32 + local.get $5 + i32.load offset=16 + local.tee $0 + br_if $block_32 + local.get $5 + i32.const 20 + i32.add + i32.load + local.tee $0 + i32.eqz + br_if $block_29 + end ;; $block_32 + local.get $0 + i32.load offset=4 + i32.const -8 + i32.and + local.get $2 + i32.sub + local.tee $5 + local.get $1 + local.get $5 + local.get $1 + i32.lt_u + local.tee $5 + select + local.set $1 + local.get $0 + local.get $6 + local.get $5 + select + local.set $6 + local.get $0 + local.set $5 + br $loop_3 + end ;; $loop_3 + end ;; $block_31 + local.get $0 + i32.const -1 + i32.xor + i32.const 1 + i32.and + local.get $1 + i32.add + local.tee $2 + i32.const 3 + i32.shl + local.tee $6 + i32.const 1054704 + i32.add + i32.load + local.tee $0 + i32.const 8 + i32.add + local.set $1 + block $block_33 + block $block_34 + local.get $0 + i32.load offset=8 + local.tee $5 + local.get $6 + i32.const 1054696 + i32.add + local.tee $6 + i32.eq + br_if $block_34 + local.get $5 + local.get $6 + i32.store offset=12 + local.get $6 + local.get $5 + i32.store offset=8 + br $block_33 + end ;; $block_34 + i32.const 0 + local.get $7 + i32.const -2 + local.get $2 + i32.rotl + i32.and + i32.store offset=1054688 + end ;; $block_33 + local.get $0 + local.get $2 + i32.const 3 + i32.shl + local.tee $2 + i32.const 3 + i32.or + i32.store offset=4 + local.get $0 + local.get $2 + i32.add + local.tee $0 + local.get $0 + i32.load offset=4 + i32.const 1 + i32.or + i32.store offset=4 + br $block + end ;; $block_30 + block $block_35 + block $block_36 + local.get $0 + local.get $5 + i32.shl + i32.const 2 + local.get $5 + i32.shl + local.tee $0 + i32.const 0 + local.get $0 + i32.sub + i32.or + i32.and + local.tee $0 + i32.const 0 + local.get $0 + i32.sub + i32.and + i32.ctz + local.tee $1 + i32.const 3 + i32.shl + local.tee $6 + i32.const 1054704 + i32.add + i32.load + local.tee $0 + i32.load offset=8 + local.tee $5 + local.get $6 + i32.const 1054696 + i32.add + local.tee $6 + i32.eq + br_if $block_36 + local.get $5 + local.get $6 + i32.store offset=12 + local.get $6 + local.get $5 + i32.store offset=8 + br $block_35 + end ;; $block_36 + i32.const 0 + local.get $7 + i32.const -2 + local.get $1 + i32.rotl + i32.and + i32.store offset=1054688 + end ;; $block_35 + local.get $0 + i32.const 8 + i32.add + local.set $5 + local.get $0 + local.get $2 + i32.const 3 + i32.or + i32.store offset=4 + local.get $0 + local.get $2 + i32.add + local.tee $6 + local.get $1 + i32.const 3 + i32.shl + local.tee $1 + local.get $2 + i32.sub + local.tee $2 + i32.const 1 + i32.or + i32.store offset=4 + local.get $0 + local.get $1 + i32.add + local.get $2 + i32.store + block $block_37 + i32.const 0 + i32.load offset=1055088 + local.tee $0 + i32.eqz + br_if $block_37 + local.get $0 + i32.const 3 + i32.shr_u + local.tee $7 + i32.const 3 + i32.shl + i32.const 1054696 + i32.add + local.set $1 + i32.const 0 + i32.load offset=1055096 + local.set $0 + block $block_38 + block $block_39 + i32.const 0 + i32.load offset=1054688 + local.tee $8 + i32.const 1 + local.get $7 + i32.const 31 + i32.and + i32.shl + local.tee $7 + i32.and + i32.eqz + br_if $block_39 + local.get $1 + i32.load offset=8 + local.set $7 + br $block_38 + end ;; $block_39 + i32.const 0 + local.get $8 + local.get $7 + i32.or + i32.store offset=1054688 + local.get $1 + local.set $7 + end ;; $block_38 + local.get $1 + local.get $0 + i32.store offset=8 + local.get $7 + local.get $0 + i32.store offset=12 + local.get $0 + local.get $1 + i32.store offset=12 + local.get $0 + local.get $7 + i32.store offset=8 + end ;; $block_37 + i32.const 0 + local.get $6 + i32.store offset=1055096 + i32.const 0 + local.get $2 + i32.store offset=1055088 + local.get $5 + return + end ;; $block_29 + local.get $6 + i32.load offset=24 + local.set $4 + block $block_40 + block $block_41 + block $block_42 + local.get $6 + i32.load offset=12 + local.tee $5 + local.get $6 + i32.ne + br_if $block_42 + local.get $6 + i32.const 20 + i32.const 16 + local.get $6 + i32.const 20 + i32.add + local.tee $5 + i32.load + local.tee $7 + select + i32.add + i32.load + local.tee $0 + br_if $block_41 + i32.const 0 + local.set $5 + br $block_40 + end ;; $block_42 + local.get $6 + i32.load offset=8 + local.tee $0 + local.get $5 + i32.store offset=12 + local.get $5 + local.get $0 + i32.store offset=8 + br $block_40 + end ;; $block_41 + local.get $5 + local.get $6 + i32.const 16 + i32.add + local.get $7 + select + local.set $7 + loop $loop_4 + local.get $7 + local.set $8 + block $block_43 + local.get $0 + local.tee $5 + i32.const 20 + i32.add + local.tee $7 + i32.load + local.tee $0 + br_if $block_43 + local.get $5 + i32.const 16 + i32.add + local.set $7 + local.get $5 + i32.load offset=16 + local.set $0 + end ;; $block_43 + local.get $0 + br_if $loop_4 + end ;; $loop_4 + local.get $8 + i32.const 0 + i32.store + end ;; $block_40 + block $block_44 + local.get $4 + i32.eqz + br_if $block_44 + block $block_45 + block $block_46 + local.get $6 + i32.load offset=28 + i32.const 2 + i32.shl + i32.const 1054960 + i32.add + local.tee $0 + i32.load + local.get $6 + i32.ne + br_if $block_46 + local.get $0 + local.get $5 + i32.store + local.get $5 + br_if $block_45 + i32.const 0 + i32.const 0 + i32.load offset=1054692 + i32.const -2 + local.get $6 + i32.load offset=28 + i32.rotl + i32.and + i32.store offset=1054692 + br $block_44 + end ;; $block_46 + local.get $4 + i32.const 16 + i32.const 20 + local.get $4 + i32.load offset=16 + local.get $6 + i32.eq + select + i32.add + local.get $5 + i32.store + local.get $5 + i32.eqz + br_if $block_44 + end ;; $block_45 + local.get $5 + local.get $4 + i32.store offset=24 + block $block_47 + local.get $6 + i32.load offset=16 + local.tee $0 + i32.eqz + br_if $block_47 + local.get $5 + local.get $0 + i32.store offset=16 + local.get $0 + local.get $5 + i32.store offset=24 + end ;; $block_47 + local.get $6 + i32.const 20 + i32.add + i32.load + local.tee $0 + i32.eqz + br_if $block_44 + local.get $5 + i32.const 20 + i32.add + local.get $0 + i32.store + local.get $0 + local.get $5 + i32.store offset=24 + end ;; $block_44 + block $block_48 + block $block_49 + local.get $1 + i32.const 16 + i32.lt_u + br_if $block_49 + local.get $6 + local.get $2 + i32.const 3 + i32.or + i32.store offset=4 + local.get $6 + local.get $2 + i32.add + local.tee $2 + local.get $1 + i32.const 1 + i32.or + i32.store offset=4 + local.get $2 + local.get $1 + i32.add + local.get $1 + i32.store + block $block_50 + i32.const 0 + i32.load offset=1055088 + local.tee $0 + i32.eqz + br_if $block_50 + local.get $0 + i32.const 3 + i32.shr_u + local.tee $7 + i32.const 3 + i32.shl + i32.const 1054696 + i32.add + local.set $5 + i32.const 0 + i32.load offset=1055096 + local.set $0 + block $block_51 + block $block_52 + i32.const 0 + i32.load offset=1054688 + local.tee $8 + i32.const 1 + local.get $7 + i32.const 31 + i32.and + i32.shl + local.tee $7 + i32.and + i32.eqz + br_if $block_52 + local.get $5 + i32.load offset=8 + local.set $7 + br $block_51 + end ;; $block_52 + i32.const 0 + local.get $8 + local.get $7 + i32.or + i32.store offset=1054688 + local.get $5 + local.set $7 + end ;; $block_51 + local.get $5 + local.get $0 + i32.store offset=8 + local.get $7 + local.get $0 + i32.store offset=12 + local.get $0 + local.get $5 + i32.store offset=12 + local.get $0 + local.get $7 + i32.store offset=8 + end ;; $block_50 + i32.const 0 + local.get $2 + i32.store offset=1055096 + i32.const 0 + local.get $1 + i32.store offset=1055088 + br $block_48 + end ;; $block_49 + local.get $6 + local.get $1 + local.get $2 + i32.add + local.tee $0 + i32.const 3 + i32.or + i32.store offset=4 + local.get $6 + local.get $0 + i32.add + local.tee $0 + local.get $0 + i32.load offset=4 + i32.const 1 + i32.or + i32.store offset=4 + end ;; $block_48 + local.get $6 + i32.const 8 + i32.add + return + end ;; $block_0 + block $block_53 + block $block_54 + block $block_55 + block $block_56 + block $block_57 + block $block_58 + i32.const 0 + i32.load offset=1055088 + local.tee $0 + local.get $2 + i32.ge_u + br_if $block_58 + i32.const 0 + i32.load offset=1055092 + local.tee $0 + local.get $2 + i32.gt_u + br_if $block_55 + i32.const 0 + local.set $1 + local.get $2 + i32.const 65583 + i32.add + local.tee $5 + i32.const 16 + i32.shr_u + memory.grow + local.tee $0 + i32.const -1 + i32.eq + br_if $block + local.get $0 + i32.const 16 + i32.shl + local.tee $6 + i32.eqz + br_if $block + i32.const 0 + i32.const 0 + i32.load offset=1055104 + local.get $5 + i32.const -65536 + i32.and + local.tee $8 + i32.add + local.tee $0 + i32.store offset=1055104 + i32.const 0 + i32.const 0 + i32.load offset=1055108 + local.tee $1 + local.get $0 + local.get $0 + local.get $1 + i32.lt_u + select + i32.store offset=1055108 + i32.const 0 + i32.load offset=1055100 + local.tee $1 + i32.eqz + br_if $block_57 + i32.const 1055112 + local.set $0 + loop $loop_5 + local.get $0 + i32.load + local.tee $5 + local.get $0 + i32.load offset=4 + local.tee $7 + i32.add + local.get $6 + i32.eq + br_if $block_56 + local.get $0 + i32.load offset=8 + local.tee $0 + br_if $loop_5 + br $block_54 + end ;; $loop_5 + end ;; $block_58 + i32.const 0 + i32.load offset=1055096 + local.set $1 + block $block_59 + block $block_60 + local.get $0 + local.get $2 + i32.sub + local.tee $5 + i32.const 15 + i32.gt_u + br_if $block_60 + i32.const 0 + i32.const 0 + i32.store offset=1055096 + i32.const 0 + i32.const 0 + i32.store offset=1055088 + local.get $1 + local.get $0 + i32.const 3 + i32.or + i32.store offset=4 + local.get $1 + local.get $0 + i32.add + local.tee $2 + i32.const 4 + i32.add + local.set $0 + local.get $2 + i32.load offset=4 + i32.const 1 + i32.or + local.set $2 + br $block_59 + end ;; $block_60 + i32.const 0 + local.get $5 + i32.store offset=1055088 + i32.const 0 + local.get $1 + local.get $2 + i32.add + local.tee $6 + i32.store offset=1055096 + local.get $6 + local.get $5 + i32.const 1 + i32.or + i32.store offset=4 + local.get $1 + local.get $0 + i32.add + local.get $5 + i32.store + local.get $2 + i32.const 3 + i32.or + local.set $2 + local.get $1 + i32.const 4 + i32.add + local.set $0 + end ;; $block_59 + local.get $0 + local.get $2 + i32.store + local.get $1 + i32.const 8 + i32.add + return + end ;; $block_57 + block $block_61 + block $block_62 + i32.const 0 + i32.load offset=1055132 + local.tee $0 + i32.eqz + br_if $block_62 + local.get $0 + local.get $6 + i32.le_u + br_if $block_61 + end ;; $block_62 + i32.const 0 + local.get $6 + i32.store offset=1055132 + end ;; $block_61 + i32.const 0 + i32.const 4095 + i32.store offset=1055136 + i32.const 0 + local.get $8 + i32.store offset=1055116 + i32.const 0 + local.get $6 + i32.store offset=1055112 + i32.const 0 + i32.const 1054696 + i32.store offset=1054708 + i32.const 0 + i32.const 1054704 + i32.store offset=1054716 + i32.const 0 + i32.const 1054696 + i32.store offset=1054704 + i32.const 0 + i32.const 1054712 + i32.store offset=1054724 + i32.const 0 + i32.const 1054704 + i32.store offset=1054712 + i32.const 0 + i32.const 1054720 + i32.store offset=1054732 + i32.const 0 + i32.const 1054712 + i32.store offset=1054720 + i32.const 0 + i32.const 1054728 + i32.store offset=1054740 + i32.const 0 + i32.const 1054720 + i32.store offset=1054728 + i32.const 0 + i32.const 1054736 + i32.store offset=1054748 + i32.const 0 + i32.const 1054728 + i32.store offset=1054736 + i32.const 0 + i32.const 1054744 + i32.store offset=1054756 + i32.const 0 + i32.const 1054736 + i32.store offset=1054744 + i32.const 0 + i32.const 1054752 + i32.store offset=1054764 + i32.const 0 + i32.const 1054744 + i32.store offset=1054752 + i32.const 0 + i32.const 0 + i32.store offset=1055124 + i32.const 0 + i32.const 1054760 + i32.store offset=1054772 + i32.const 0 + i32.const 1054752 + i32.store offset=1054760 + i32.const 0 + i32.const 1054760 + i32.store offset=1054768 + i32.const 0 + i32.const 1054768 + i32.store offset=1054780 + i32.const 0 + i32.const 1054768 + i32.store offset=1054776 + i32.const 0 + i32.const 1054776 + i32.store offset=1054788 + i32.const 0 + i32.const 1054776 + i32.store offset=1054784 + i32.const 0 + i32.const 1054784 + i32.store offset=1054796 + i32.const 0 + i32.const 1054784 + i32.store offset=1054792 + i32.const 0 + i32.const 1054792 + i32.store offset=1054804 + i32.const 0 + i32.const 1054792 + i32.store offset=1054800 + i32.const 0 + i32.const 1054800 + i32.store offset=1054812 + i32.const 0 + i32.const 1054800 + i32.store offset=1054808 + i32.const 0 + i32.const 1054808 + i32.store offset=1054820 + i32.const 0 + i32.const 1054808 + i32.store offset=1054816 + i32.const 0 + i32.const 1054816 + i32.store offset=1054828 + i32.const 0 + i32.const 1054816 + i32.store offset=1054824 + i32.const 0 + i32.const 1054824 + i32.store offset=1054836 + i32.const 0 + i32.const 1054832 + i32.store offset=1054844 + i32.const 0 + i32.const 1054824 + i32.store offset=1054832 + i32.const 0 + i32.const 1054840 + i32.store offset=1054852 + i32.const 0 + i32.const 1054832 + i32.store offset=1054840 + i32.const 0 + i32.const 1054848 + i32.store offset=1054860 + i32.const 0 + i32.const 1054840 + i32.store offset=1054848 + i32.const 0 + i32.const 1054856 + i32.store offset=1054868 + i32.const 0 + i32.const 1054848 + i32.store offset=1054856 + i32.const 0 + i32.const 1054864 + i32.store offset=1054876 + i32.const 0 + i32.const 1054856 + i32.store offset=1054864 + i32.const 0 + i32.const 1054872 + i32.store offset=1054884 + i32.const 0 + i32.const 1054864 + i32.store offset=1054872 + i32.const 0 + i32.const 1054880 + i32.store offset=1054892 + i32.const 0 + i32.const 1054872 + i32.store offset=1054880 + i32.const 0 + i32.const 1054888 + i32.store offset=1054900 + i32.const 0 + i32.const 1054880 + i32.store offset=1054888 + i32.const 0 + i32.const 1054896 + i32.store offset=1054908 + i32.const 0 + i32.const 1054888 + i32.store offset=1054896 + i32.const 0 + i32.const 1054904 + i32.store offset=1054916 + i32.const 0 + i32.const 1054896 + i32.store offset=1054904 + i32.const 0 + i32.const 1054912 + i32.store offset=1054924 + i32.const 0 + i32.const 1054904 + i32.store offset=1054912 + i32.const 0 + i32.const 1054920 + i32.store offset=1054932 + i32.const 0 + i32.const 1054912 + i32.store offset=1054920 + i32.const 0 + i32.const 1054928 + i32.store offset=1054940 + i32.const 0 + i32.const 1054920 + i32.store offset=1054928 + i32.const 0 + i32.const 1054936 + i32.store offset=1054948 + i32.const 0 + i32.const 1054928 + i32.store offset=1054936 + i32.const 0 + i32.const 1054944 + i32.store offset=1054956 + i32.const 0 + i32.const 1054936 + i32.store offset=1054944 + i32.const 0 + local.get $6 + i32.store offset=1055100 + i32.const 0 + i32.const 1054944 + i32.store offset=1054952 + i32.const 0 + local.get $8 + i32.const -40 + i32.add + local.tee $0 + i32.store offset=1055092 + local.get $6 + local.get $0 + i32.const 1 + i32.or + i32.store offset=4 + local.get $6 + local.get $0 + i32.add + i32.const 40 + i32.store offset=4 + i32.const 0 + i32.const 2097152 + i32.store offset=1055128 + br $block_53 + end ;; $block_56 + local.get $0 + i32.load offset=12 + br_if $block_54 + local.get $6 + local.get $1 + i32.le_u + br_if $block_54 + local.get $5 + local.get $1 + i32.gt_u + br_if $block_54 + local.get $0 + local.get $7 + local.get $8 + i32.add + i32.store offset=4 + i32.const 0 + i32.const 0 + i32.load offset=1055100 + local.tee $0 + i32.const 15 + i32.add + i32.const -8 + i32.and + local.tee $1 + i32.const -8 + i32.add + i32.store offset=1055100 + i32.const 0 + local.get $0 + local.get $1 + i32.sub + i32.const 0 + i32.load offset=1055092 + local.get $8 + i32.add + local.tee $5 + i32.add + i32.const 8 + i32.add + local.tee $6 + i32.store offset=1055092 + local.get $1 + i32.const -4 + i32.add + local.get $6 + i32.const 1 + i32.or + i32.store + local.get $0 + local.get $5 + i32.add + i32.const 40 + i32.store offset=4 + i32.const 0 + i32.const 2097152 + i32.store offset=1055128 + br $block_53 + end ;; $block_55 + i32.const 0 + local.get $0 + local.get $2 + i32.sub + local.tee $1 + i32.store offset=1055092 + i32.const 0 + i32.const 0 + i32.load offset=1055100 + local.tee $0 + local.get $2 + i32.add + local.tee $5 + i32.store offset=1055100 + local.get $5 + local.get $1 + i32.const 1 + i32.or + i32.store offset=4 + local.get $0 + local.get $2 + i32.const 3 + i32.or + i32.store offset=4 + local.get $0 + i32.const 8 + i32.add + return + end ;; $block_54 + i32.const 0 + i32.const 0 + i32.load offset=1055132 + local.tee $0 + local.get $6 + local.get $0 + local.get $6 + i32.lt_u + select + i32.store offset=1055132 + local.get $6 + local.get $8 + i32.add + local.set $5 + i32.const 1055112 + local.set $0 + block $block_63 + block $block_64 + loop $loop_6 + local.get $0 + i32.load + local.get $5 + i32.eq + br_if $block_64 + local.get $0 + i32.load offset=8 + local.tee $0 + br_if $loop_6 + br $block_63 + end ;; $loop_6 + end ;; $block_64 + local.get $0 + i32.load offset=12 + br_if $block_63 + local.get $0 + local.get $6 + i32.store + local.get $0 + local.get $0 + i32.load offset=4 + local.get $8 + i32.add + i32.store offset=4 + local.get $6 + local.get $2 + i32.const 3 + i32.or + i32.store offset=4 + local.get $6 + local.get $2 + i32.add + local.set $0 + local.get $5 + local.get $6 + i32.sub + local.get $2 + i32.sub + local.set $2 + block $block_65 + block $block_66 + block $block_67 + i32.const 0 + i32.load offset=1055100 + local.get $5 + i32.eq + br_if $block_67 + i32.const 0 + i32.load offset=1055096 + local.get $5 + i32.eq + br_if $block_66 + block $block_68 + local.get $5 + i32.load offset=4 + local.tee $1 + i32.const 3 + i32.and + i32.const 1 + i32.ne + br_if $block_68 + block $block_69 + block $block_70 + local.get $1 + i32.const -8 + i32.and + local.tee $3 + i32.const 256 + i32.lt_u + br_if $block_70 + local.get $5 + i32.load offset=24 + local.set $9 + block $block_71 + block $block_72 + block $block_73 + local.get $5 i32.load offset=12 - i32.eqz - br_if $block_8 - br $block_2 - end ;; $block_10 - i32.const 0 - local.set $7 - local.get $15 - i32.eqz - br_if $block_6 - end ;; $block_9 - block $block_42 - block $block_43 + local.tee $7 local.get $5 - i32.load offset=28 - i32.const 2 - i32.shl - i32.const 1054848 + i32.ne + br_if $block_73 + local.get $5 + i32.const 20 + i32.const 16 + local.get $5 + i32.load offset=20 + local.tee $7 + select + i32.add + i32.load + local.tee $1 + br_if $block_72 + i32.const 0 + local.set $7 + br $block_71 + end ;; $block_73 + local.get $5 + i32.load offset=8 + local.tee $1 + local.get $7 + i32.store offset=12 + local.get $7 + local.get $1 + i32.store offset=8 + br $block_71 + end ;; $block_72 + local.get $5 + i32.const 20 + i32.add + local.get $5 + i32.const 16 + i32.add + local.get $7 + select + local.set $8 + loop $loop_7 + local.get $8 + local.set $4 + block $block_74 + local.get $1 + local.tee $7 + i32.const 20 i32.add - local.tee $0 + local.tee $8 i32.load - local.get $5 - i32.eq - br_if $block_43 - local.get $15 + local.tee $1 + br_if $block_74 + local.get $7 i32.const 16 - i32.const 20 - local.get $15 - i32.load offset=16 - local.get $5 - i32.eq - select i32.add + local.set $8 local.get $7 - i32.store - local.get $7 - br_if $block_42 - br $block_6 - end ;; $block_43 - local.get $0 + i32.load offset=16 + local.set $1 + end ;; $block_74 + local.get $1 + br_if $loop_7 + end ;; $loop_7 + local.get $4 + i32.const 0 + i32.store + end ;; $block_71 + local.get $9 + i32.eqz + br_if $block_69 + block $block_75 + block $block_76 + local.get $5 + i32.load offset=28 + i32.const 2 + i32.shl + i32.const 1054960 + i32.add + local.tee $1 + i32.load + local.get $5 + i32.ne + br_if $block_76 + local.get $1 local.get $7 i32.store local.get $7 - i32.eqz - br_if $block_7 - end ;; $block_42 - local.get $7 - local.get $15 - i32.store offset=24 - block $block_44 + br_if $block_75 + i32.const 0 + i32.const 0 + i32.load offset=1054692 + i32.const -2 local.get $5 - i32.load offset=16 - local.tee $0 - i32.eqz - br_if $block_44 - local.get $7 - local.get $0 - i32.store offset=16 - local.get $0 - local.get $7 - i32.store offset=24 - end ;; $block_44 - local.get $5 + i32.load offset=28 + i32.rotl + i32.and + i32.store offset=1054692 + br $block_69 + end ;; $block_76 + local.get $9 + i32.const 16 i32.const 20 + local.get $9 + i32.load offset=16 + local.get $5 + i32.eq + select i32.add - i32.load - local.tee $0 - i32.eqz - br_if $block_6 local.get $7 - i32.const 20 - i32.add - local.get $0 i32.store - local.get $0 local.get $7 - i32.store offset=24 - local.get $6 - i32.const 15 - i32.le_u - br_if $block_5 - br $block_4 - end ;; $block_8 - local.get $9 - local.get $7 - i32.le_u - br_if $block_2 - local.get $6 + i32.eqz + br_if $block_69 + end ;; $block_75 local.get $7 - i32.gt_u - br_if $block_2 - local.get $0 - i32.const 4 - i32.add + local.get $9 + i32.store offset=24 + block $block_77 + local.get $5 + i32.load offset=16 + local.tee $1 + i32.eqz + br_if $block_77 + local.get $7 + local.get $1 + i32.store offset=16 + local.get $1 + local.get $7 + i32.store offset=24 + end ;; $block_77 local.get $5 - local.get $8 + i32.load offset=20 + local.tee $1 + i32.eqz + br_if $block_69 + local.get $7 + i32.const 20 i32.add + local.get $1 i32.store - i32.const 0 - i32.const 0 - i32.load offset=1054988 - local.tee $0 - i32.const 15 - i32.add - i32.const -8 - i32.and - local.tee $6 - i32.const -8 - i32.add + local.get $1 + local.get $7 + i32.store offset=24 + br $block_69 + end ;; $block_70 + block $block_78 + local.get $5 + i32.load offset=12 local.tee $7 - i32.store offset=1054988 - i32.const 0 - i32.const 0 - i32.load offset=1054980 + local.get $5 + i32.load offset=8 + local.tee $8 + i32.eq + br_if $block_78 local.get $8 - i32.add - local.tee $5 - local.get $0 - i32.const 8 - i32.add - local.get $6 - i32.sub - i32.add - local.tee $6 - i32.store offset=1054980 local.get $7 - local.get $6 - i32.const 1 - i32.or - i32.store offset=4 - local.get $0 - local.get $5 - i32.add - i32.const 40 - i32.store offset=4 - i32.const 0 - i32.const 2097152 - i32.store offset=1055016 - i32.const 0 - local.set $6 - i32.const 0 - i32.load offset=1054980 - local.tee $0 - local.get $2 - i32.le_u - br_if $block - br $block_0 - end ;; $block_7 + i32.store offset=12 + local.get $7 + local.get $8 + i32.store offset=8 + br $block_69 + end ;; $block_78 i32.const 0 i32.const 0 - i32.load offset=1054580 + i32.load offset=1054688 i32.const -2 - local.get $5 - i32.const 28 - i32.add - i32.load + local.get $1 + i32.const 3 + i32.shr_u i32.rotl i32.and - i32.store offset=1054580 - end ;; $block_6 - local.get $6 - i32.const 15 - i32.gt_u - br_if $block_4 - end ;; $block_5 + i32.store offset=1054688 + end ;; $block_69 + local.get $3 + local.get $2 + i32.add + local.set $2 + local.get $5 + local.get $3 + i32.add + local.set $5 + end ;; $block_68 local.get $5 - local.get $6 - local.get $2 - i32.add - local.tee $0 - i32.const 3 - i32.or - i32.store offset=4 local.get $5 - local.get $0 - i32.add - local.tee $0 - local.get $0 i32.load offset=4 + i32.const -2 + i32.and + i32.store offset=4 + local.get $0 + local.get $2 i32.const 1 i32.or i32.store offset=4 - local.get $5 - i32.const 8 + local.get $0 + local.get $2 i32.add - return - end ;; $block_4 - local.get $5 - local.get $2 - i32.const 3 - i32.or - i32.store offset=4 - local.get $5 - local.get $2 - i32.add - local.tee $2 - local.get $6 - i32.const 1 - i32.or - i32.store offset=4 - local.get $2 - local.get $6 - i32.add - local.get $6 - i32.store - block $block_45 - block $block_46 - block $block_47 - block $block_48 - block $block_49 - block $block_50 - block $block_51 - block $block_52 - local.get $6 - i32.const 255 - i32.gt_u - br_if $block_52 - local.get $6 - i32.const 3 - i32.shr_u - local.tee $6 - i32.const 3 - i32.shl - i32.const 1054584 - i32.add - local.set $0 - i32.const 0 - i32.load offset=1054576 - local.tee $7 - i32.const 1 - local.get $6 - i32.const 31 - i32.and - i32.shl - local.tee $6 - i32.and - i32.eqz - br_if $block_51 - local.get $0 - i32.load offset=8 - local.set $6 - br $block_50 - end ;; $block_52 - i32.const 0 - local.set $0 - block $block_53 - local.get $6 - i32.const 8 - i32.shr_u - local.tee $7 - i32.eqz - br_if $block_53 - i32.const 31 - local.set $0 - local.get $6 - i32.const 16777215 - i32.gt_u - br_if $block_53 - local.get $6 - i32.const 38 - local.get $7 - i32.clz - local.tee $0 - i32.sub - i32.const 31 - i32.and - i32.shr_u - i32.const 1 - i32.and - i32.const 31 - local.get $0 - i32.sub - i32.const 1 - i32.shl - i32.or - local.set $0 - end ;; $block_53 - local.get $2 - i64.const 0 - i64.store offset=16 align=4 - local.get $2 - local.get $0 - i32.store offset=28 - local.get $0 - i32.const 2 - i32.shl - i32.const 1054848 - i32.add - local.set $7 + local.get $2 + i32.store + block $block_79 + local.get $2 + i32.const 256 + i32.lt_u + br_if $block_79 + i32.const 0 + local.set $1 + block $block_80 + local.get $2 + i32.const 8 + i32.shr_u + local.tee $5 + i32.eqz + br_if $block_80 + i32.const 31 + local.set $1 + local.get $2 + i32.const 16777215 + i32.gt_u + br_if $block_80 + local.get $2 + i32.const 6 + local.get $5 + i32.clz + local.tee $1 + i32.sub + i32.const 31 + i32.and + i32.shr_u + i32.const 1 + i32.and + local.get $1 + i32.const 1 + i32.shl + i32.sub + i32.const 62 + i32.add + local.set $1 + end ;; $block_80 + local.get $0 + i64.const 0 + i64.store offset=16 align=4 + local.get $0 + local.get $1 + i32.store offset=28 + local.get $1 + i32.const 2 + i32.shl + i32.const 1054960 + i32.add + local.set $5 + block $block_81 + block $block_82 + block $block_83 + block $block_84 + block $block_85 i32.const 0 - i32.load offset=1054580 - local.tee $9 + i32.load offset=1054692 + local.tee $7 i32.const 1 - local.get $0 + local.get $1 i32.const 31 i32.and i32.shl - local.tee $3 + local.tee $8 i32.and i32.eqz - br_if $block_49 - local.get $7 + br_if $block_85 + local.get $5 i32.load - local.tee $9 + local.tee $7 i32.load offset=4 i32.const -8 i32.and - local.get $6 + local.get $2 i32.ne - br_if $block_48 - local.get $9 - local.set $0 - br $block_47 - end ;; $block_51 + br_if $block_84 + local.get $7 + local.set $1 + br $block_83 + end ;; $block_85 i32.const 0 local.get $7 - local.get $6 + local.get $8 i32.or - i32.store offset=1054576 - local.get $0 - local.set $6 - end ;; $block_50 - local.get $0 - local.get $2 - i32.store offset=8 - local.get $6 - local.get $2 - i32.store offset=12 - local.get $2 - local.get $0 - i32.store offset=12 - local.get $2 - local.get $6 - i32.store offset=8 - local.get $5 - i32.const 8 - i32.add - return - end ;; $block_49 - i32.const 0 - local.get $9 - local.get $3 - i32.or - i32.store offset=1054580 - local.get $7 - local.get $2 - i32.store - local.get $2 - local.get $7 - i32.store offset=24 - br $block_45 - end ;; $block_48 - local.get $6 - i32.const 0 - i32.const 25 - local.get $0 - i32.const 1 - i32.shr_u - i32.sub - i32.const 31 - i32.and - local.get $0 - i32.const 31 - i32.eq - select - i32.shl - local.set $7 - loop $loop_3 - local.get $9 - local.get $7 - i32.const 29 - i32.shr_u - i32.const 4 - i32.and - i32.add - i32.const 16 - i32.add - local.tee $3 - i32.load - local.tee $0 - i32.eqz - br_if $block_46 - local.get $7 - i32.const 1 - i32.shl - local.set $7 - local.get $0 - local.set $9 - local.get $0 - i32.load offset=4 - i32.const -8 - i32.and - local.get $6 - i32.ne - br_if $loop_3 - end ;; $loop_3 - end ;; $block_47 - local.get $0 - i32.load offset=8 - local.tee $6 - local.get $2 - i32.store offset=12 - local.get $0 - local.get $2 - i32.store offset=8 - local.get $2 - i32.const 0 - i32.store offset=24 - local.get $2 - local.get $0 - i32.store offset=12 - local.get $2 - local.get $6 - i32.store offset=8 - local.get $5 - i32.const 8 - i32.add - return - end ;; $block_46 - local.get $3 - local.get $2 - i32.store - local.get $2 - local.get $9 - i32.store offset=24 - end ;; $block_45 - local.get $2 - local.get $2 - i32.store offset=12 - local.get $2 - local.get $2 - i32.store offset=8 - local.get $5 - i32.const 8 - i32.add - return - end ;; $block_3 - i32.const 0 - local.set $0 - br $block_1 - end ;; $block_2 - i32.const 0 - i32.const 0 - i32.load offset=1055020 - local.tee $0 - local.get $9 - local.get $0 - local.get $9 - i32.lt_u - select - i32.store offset=1055020 - local.get $9 - local.get $8 - i32.add - local.set $6 - i32.const 1055000 - local.set $0 - block $block_54 - block $block_55 - block $block_56 - block $block_57 - loop $loop_4 - local.get $0 - i32.load - local.get $6 - i32.eq - br_if $block_57 - local.get $0 - i32.load offset=8 - local.tee $0 - br_if $loop_4 - br $block_56 - end ;; $loop_4 - end ;; $block_57 - local.get $0 - i32.load offset=12 - i32.eqz - br_if $block_55 - end ;; $block_56 - i32.const 1055000 - local.set $6 - i32.const 1055000 - i32.load - local.tee $5 - local.get $7 - i32.le_u - br_if $block_54 - i32.const 2 - local.set $0 - br $block_1 - end ;; $block_55 - local.get $0 - local.get $9 - i32.store - local.get $0 - local.get $0 - i32.load offset=4 - local.get $8 - i32.add - i32.store offset=4 - local.get $9 - local.get $2 - i32.const 3 - i32.or - i32.store offset=4 - local.get $9 - local.get $2 - i32.add - local.set $0 - local.get $6 - local.get $9 - i32.sub - local.get $2 - i32.sub - local.set $2 - block $block_58 - block $block_59 - block $block_60 - block $block_61 - block $block_62 - block $block_63 - block $block_64 - block $block_65 - i32.const 0 - i32.load offset=1054988 - local.get $6 - i32.eq - br_if $block_65 - i32.const 0 - i32.load offset=1054984 - local.get $6 - i32.eq - br_if $block_64 - local.get $6 - i32.load offset=4 - local.tee $7 - i32.const 3 - i32.and - i32.const 1 - i32.ne - br_if $block_58 - local.get $7 - i32.const -8 - i32.and - local.tee $12 - i32.const 255 - i32.gt_u - br_if $block_63 - local.get $6 - i32.load offset=12 - local.tee $5 - local.get $6 - i32.load offset=8 - local.tee $3 - i32.eq - br_if $block_62 - local.get $3 - local.get $5 - i32.store offset=12 - local.get $5 - local.get $3 - i32.store offset=8 - br $block_59 - end ;; $block_65 - i32.const 0 + i32.store offset=1054692 + local.get $5 local.get $0 - i32.store offset=1054988 - i32.const 0 - i32.const 0 - i32.load offset=1054980 - local.get $2 - i32.add - local.tee $2 - i32.store offset=1054980 + i32.store local.get $0 - local.get $2 - i32.const 1 - i32.or - i32.store offset=4 - local.get $9 - i32.const 8 - i32.add - return - end ;; $block_64 - i32.const 0 - local.get $0 - i32.store offset=1054984 - i32.const 0 - i32.const 0 - i32.load offset=1054976 - local.get $2 - i32.add - local.tee $2 - i32.store offset=1054976 - local.get $0 + local.get $5 + i32.store offset=24 + br $block_81 + end ;; $block_84 local.get $2 + i32.const 0 + i32.const 25 + local.get $1 i32.const 1 - i32.or - i32.store offset=4 - local.get $0 - local.get $2 - i32.add - local.get $2 - i32.store - local.get $9 - i32.const 8 - i32.add - return - end ;; $block_63 - local.get $6 - i32.load offset=24 - local.set $14 - local.get $6 - i32.load offset=12 - local.tee $5 - local.get $6 - i32.eq - br_if $block_61 - local.get $6 + i32.shr_u + i32.sub + i32.const 31 + i32.and + local.get $1 + i32.const 31 + i32.eq + select + i32.shl + local.set $5 + loop $loop_8 + local.get $7 + local.get $5 + i32.const 29 + i32.shr_u + i32.const 4 + i32.and + i32.add + i32.const 16 + i32.add + local.tee $8 + i32.load + local.tee $1 + i32.eqz + br_if $block_82 + local.get $5 + i32.const 1 + i32.shl + local.set $5 + local.get $1 + local.set $7 + local.get $1 + i32.load offset=4 + i32.const -8 + i32.and + local.get $2 + i32.ne + br_if $loop_8 + end ;; $loop_8 + end ;; $block_83 + local.get $1 i32.load offset=8 - local.tee $7 - local.get $5 + local.tee $2 + local.get $0 i32.store offset=12 - local.get $5 - local.get $7 + local.get $1 + local.get $0 i32.store offset=8 - local.get $14 - br_if $block_60 - br $block_59 - end ;; $block_62 - i32.const 0 - i32.const 0 - i32.load offset=1054576 - i32.const -2 + local.get $0 + i32.const 0 + i32.store offset=24 + local.get $0 + local.get $1 + i32.store offset=12 + local.get $0 + local.get $2 + i32.store offset=8 + br $block_65 + end ;; $block_82 + local.get $8 + local.get $0 + i32.store + local.get $0 local.get $7 - i32.const 3 - i32.shr_u - i32.rotl - i32.and - i32.store offset=1054576 - br $block_59 - end ;; $block_61 - block $block_66 - local.get $6 - i32.const 20 - i32.const 16 - local.get $6 - i32.load offset=20 + i32.store offset=24 + end ;; $block_81 + local.get $0 + local.get $0 + i32.store offset=12 + local.get $0 + local.get $0 + i32.store offset=8 + br $block_65 + end ;; $block_79 + local.get $2 + i32.const 3 + i32.shr_u + local.tee $1 + i32.const 3 + i32.shl + i32.const 1054696 + i32.add + local.set $2 + block $block_86 + block $block_87 + i32.const 0 + i32.load offset=1054688 local.tee $5 - select - i32.add - i32.load - local.tee $7 + i32.const 1 + local.get $1 + i32.const 31 + i32.and + i32.shl + local.tee $1 + i32.and i32.eqz - br_if $block_66 - local.get $6 - i32.const 20 - i32.add - local.get $6 - i32.const 16 - i32.add - local.get $5 - select - local.set $3 - loop $loop_5 - local.get $3 - local.set $15 - block $block_67 - local.get $7 - local.tee $5 - i32.const 20 - i32.add - local.tee $3 - i32.load - local.tee $7 - br_if $block_67 - local.get $5 - i32.const 16 - i32.add - local.set $3 - local.get $5 - i32.load offset=16 - local.set $7 - end ;; $block_67 - local.get $7 - br_if $loop_5 - end ;; $loop_5 - local.get $15 - i32.const 0 - i32.store - local.get $14 - br_if $block_60 - br $block_59 - end ;; $block_66 + br_if $block_87 + local.get $2 + i32.load offset=8 + local.set $1 + br $block_86 + end ;; $block_87 i32.const 0 - local.set $5 - local.get $14 - i32.eqz - br_if $block_59 - end ;; $block_60 - block $block_68 - block $block_69 - block $block_70 - local.get $6 - i32.load offset=28 - i32.const 2 - i32.shl - i32.const 1054848 - i32.add - local.tee $7 - i32.load - local.get $6 - i32.eq - br_if $block_70 - local.get $14 - i32.const 16 - i32.const 20 - local.get $14 - i32.load offset=16 - local.get $6 - i32.eq - select - i32.add - local.get $5 - i32.store - local.get $5 - br_if $block_69 - br $block_59 - end ;; $block_70 - local.get $7 - local.get $5 - i32.store - local.get $5 - i32.eqz - br_if $block_68 - end ;; $block_69 - local.get $5 - local.get $14 - i32.store offset=24 - block $block_71 - local.get $6 - i32.load offset=16 - local.tee $7 - i32.eqz - br_if $block_71 - local.get $5 - local.get $7 - i32.store offset=16 - local.get $7 - local.get $5 - i32.store offset=24 - end ;; $block_71 - local.get $6 - i32.load offset=20 - local.tee $7 - i32.eqz - br_if $block_59 - local.get $5 - i32.const 20 - i32.add - local.get $7 - i32.store - local.get $7 local.get $5 - i32.store offset=24 - br $block_59 - end ;; $block_68 - i32.const 0 - i32.const 0 - i32.load offset=1054580 - i32.const -2 - local.get $6 - i32.const 28 - i32.add - i32.load - i32.rotl - i32.and - i32.store offset=1054580 - end ;; $block_59 - local.get $12 + local.get $1 + i32.or + i32.store offset=1054688 + local.get $2 + local.set $1 + end ;; $block_86 + local.get $2 + local.get $0 + i32.store offset=8 + local.get $1 + local.get $0 + i32.store offset=12 + local.get $0 + local.get $2 + i32.store offset=12 + local.get $0 + local.get $1 + i32.store offset=8 + br $block_65 + end ;; $block_67 + i32.const 0 + local.get $0 + i32.store offset=1055100 + i32.const 0 + i32.const 0 + i32.load offset=1055092 local.get $2 i32.add - local.set $2 - local.get $6 - local.get $12 + local.tee $2 + i32.store offset=1055092 + local.get $0 + local.get $2 + i32.const 1 + i32.or + i32.store offset=4 + br $block_65 + end ;; $block_66 + i32.const 0 + local.get $0 + i32.store offset=1055096 + i32.const 0 + i32.const 0 + i32.load offset=1055088 + local.get $2 + i32.add + local.tee $2 + i32.store offset=1055088 + local.get $0 + local.get $2 + i32.const 1 + i32.or + i32.store offset=4 + local.get $0 + local.get $2 + i32.add + local.get $2 + i32.store + end ;; $block_65 + local.get $6 + i32.const 8 + i32.add + return + end ;; $block_63 + i32.const 1055112 + local.set $0 + block $block_88 + loop $loop_9 + block $block_89 + local.get $0 + i32.load + local.tee $5 + local.get $1 + i32.gt_u + br_if $block_89 + local.get $5 + local.get $0 + i32.load offset=4 i32.add - local.set $6 - end ;; $block_58 + local.tee $5 + local.get $1 + i32.gt_u + br_if $block_88 + end ;; $block_89 + local.get $0 + i32.load offset=8 + local.set $0 + br $loop_9 + end ;; $loop_9 + end ;; $block_88 + i32.const 0 + local.get $6 + i32.store offset=1055100 + i32.const 0 + local.get $8 + i32.const -40 + i32.add + local.tee $0 + i32.store offset=1055092 + local.get $6 + local.get $0 + i32.const 1 + i32.or + i32.store offset=4 + local.get $6 + local.get $0 + i32.add + i32.const 40 + i32.store offset=4 + i32.const 0 + i32.const 2097152 + i32.store offset=1055128 + local.get $1 + local.get $5 + i32.const -32 + i32.add + i32.const -8 + i32.and + i32.const -8 + i32.add + local.tee $0 + local.get $0 + local.get $1 + i32.const 16 + i32.add + i32.lt_u + select + local.tee $7 + i32.const 27 + i32.store offset=4 + i32.const 0 + i64.load offset=1055112 align=4 + local.set $10 + local.get $7 + i32.const 16 + i32.add + i32.const 0 + i64.load offset=1055120 align=4 + i64.store align=4 + local.get $7 + local.get $10 + i64.store offset=8 align=4 + i32.const 0 + local.get $8 + i32.store offset=1055116 + i32.const 0 + local.get $6 + i32.store offset=1055112 + i32.const 0 + local.get $7 + i32.const 8 + i32.add + i32.store offset=1055120 + i32.const 0 + i32.const 0 + i32.store offset=1055124 + local.get $7 + i32.const 28 + i32.add + local.set $0 + loop $loop_10 + local.get $0 + i32.const 7 + i32.store + local.get $5 + local.get $0 + i32.const 4 + i32.add + local.tee $0 + i32.gt_u + br_if $loop_10 + end ;; $loop_10 + local.get $7 + local.get $1 + i32.eq + br_if $block_53 + local.get $7 + local.get $7 + i32.load offset=4 + i32.const -2 + i32.and + i32.store offset=4 + local.get $1 + local.get $7 + local.get $1 + i32.sub + local.tee $6 + i32.const 1 + i32.or + i32.store offset=4 + local.get $7 + local.get $6 + i32.store + block $block_90 + local.get $6 + i32.const 256 + i32.lt_u + br_if $block_90 + i32.const 0 + local.set $0 + block $block_91 local.get $6 + i32.const 8 + i32.shr_u + local.tee $5 + i32.eqz + br_if $block_91 + i32.const 31 + local.set $0 local.get $6 - i32.load offset=4 - i32.const -2 + i32.const 16777215 + i32.gt_u + br_if $block_91 + local.get $6 + i32.const 6 + local.get $5 + i32.clz + local.tee $0 + i32.sub + i32.const 31 i32.and - i32.store offset=4 - local.get $0 - local.get $2 + i32.shr_u i32.const 1 - i32.or - i32.store offset=4 + i32.and local.get $0 - local.get $2 + i32.const 1 + i32.shl + i32.sub + i32.const 62 i32.add - local.get $2 - i32.store - block $block_72 - block $block_73 - block $block_74 - block $block_75 - block $block_76 - block $block_77 - block $block_78 - block $block_79 - local.get $2 - i32.const 255 - i32.gt_u - br_if $block_79 - local.get $2 - i32.const 3 - i32.shr_u - local.tee $6 - i32.const 3 - i32.shl - i32.const 1054584 - i32.add - local.set $2 - i32.const 0 - i32.load offset=1054576 - local.tee $7 - i32.const 1 - local.get $6 - i32.const 31 - i32.and - i32.shl - local.tee $6 - i32.and - i32.eqz - br_if $block_78 - local.get $2 - i32.load offset=8 - local.set $6 - br $block_77 - end ;; $block_79 - i32.const 0 - local.set $6 - block $block_80 - local.get $2 - i32.const 8 - i32.shr_u - local.tee $7 - i32.eqz - br_if $block_80 - i32.const 31 - local.set $6 - local.get $2 - i32.const 16777215 - i32.gt_u - br_if $block_80 - local.get $2 - i32.const 38 - local.get $7 - i32.clz - local.tee $6 - i32.sub - i32.const 31 - i32.and - i32.shr_u - i32.const 1 - i32.and - i32.const 31 - local.get $6 - i32.sub - i32.const 1 - i32.shl - i32.or - local.set $6 - end ;; $block_80 - local.get $0 - i64.const 0 - i64.store offset=16 align=4 - local.get $0 - local.get $6 - i32.store offset=28 - local.get $6 - i32.const 2 - i32.shl - i32.const 1054848 - i32.add - local.set $7 - i32.const 0 - i32.load offset=1054580 - local.tee $5 - i32.const 1 - local.get $6 - i32.const 31 - i32.and - i32.shl - local.tee $3 - i32.and - i32.eqz - br_if $block_76 - local.get $7 - i32.load - local.tee $5 - i32.load offset=4 - i32.const -8 - i32.and - local.get $2 - i32.ne - br_if $block_75 - local.get $5 - local.set $6 - br $block_74 - end ;; $block_78 - i32.const 0 - local.get $7 - local.get $6 - i32.or - i32.store offset=1054576 - local.get $2 - local.set $6 - end ;; $block_77 - local.get $2 - local.get $0 - i32.store offset=8 - local.get $6 - local.get $0 - i32.store offset=12 - local.get $0 - local.get $2 - i32.store offset=12 - local.get $0 - local.get $6 - i32.store offset=8 - local.get $9 - i32.const 8 - i32.add - return - end ;; $block_76 + local.set $0 + end ;; $block_91 + local.get $1 + i64.const 0 + i64.store offset=16 align=4 + local.get $1 + i32.const 28 + i32.add + local.get $0 + i32.store + local.get $0 + i32.const 2 + i32.shl + i32.const 1054960 + i32.add + local.set $5 + block $block_92 + block $block_93 + block $block_94 + block $block_95 + block $block_96 i32.const 0 - local.get $5 - local.get $3 - i32.or - i32.store offset=1054580 - local.get $7 - local.get $0 - i32.store + i32.load offset=1054692 + local.tee $7 + i32.const 1 local.get $0 - local.get $7 - i32.store offset=24 - br $block_72 - end ;; $block_75 - local.get $2 - i32.const 0 - i32.const 25 - local.get $6 - i32.const 1 - i32.shr_u - i32.sub - i32.const 31 - i32.and - local.get $6 - i32.const 31 - i32.eq - select - i32.shl - local.set $7 - loop $loop_6 - local.get $5 - local.get $7 - i32.const 29 - i32.shr_u - i32.const 4 + i32.const 31 i32.and - i32.add - i32.const 16 - i32.add - local.tee $3 - i32.load - local.tee $6 - i32.eqz - br_if $block_73 - local.get $7 - i32.const 1 i32.shl - local.set $7 - local.get $6 - local.set $5 - local.get $6 + local.tee $8 + i32.and + i32.eqz + br_if $block_96 + local.get $5 + i32.load + local.tee $7 i32.load offset=4 i32.const -8 i32.and - local.get $2 + local.get $6 i32.ne - br_if $loop_6 - end ;; $loop_6 - end ;; $block_74 - local.get $6 - i32.load offset=8 - local.tee $2 - local.get $0 - i32.store offset=12 + br_if $block_95 + local.get $7 + local.set $0 + br $block_94 + end ;; $block_96 + i32.const 0 + local.get $7 + local.get $8 + i32.or + i32.store offset=1054692 + local.get $5 + local.get $1 + i32.store + local.get $1 + i32.const 24 + i32.add + local.get $5 + i32.store + br $block_92 + end ;; $block_95 local.get $6 - local.get $0 - i32.store offset=8 - local.get $0 i32.const 0 - i32.store offset=24 + i32.const 25 local.get $0 - local.get $6 - i32.store offset=12 + i32.const 1 + i32.shr_u + i32.sub + i32.const 31 + i32.and local.get $0 - local.get $2 - i32.store offset=8 - local.get $9 - i32.const 8 - i32.add - return - end ;; $block_73 - local.get $3 + i32.const 31 + i32.eq + select + i32.shl + local.set $5 + loop $loop_11 + local.get $7 + local.get $5 + i32.const 29 + i32.shr_u + i32.const 4 + i32.and + i32.add + i32.const 16 + i32.add + local.tee $8 + i32.load + local.tee $0 + i32.eqz + br_if $block_93 + local.get $5 + i32.const 1 + i32.shl + local.set $5 + local.get $0 + local.set $7 + local.get $0 + i32.load offset=4 + i32.const -8 + i32.and + local.get $6 + i32.ne + br_if $loop_11 + end ;; $loop_11 + end ;; $block_94 + local.get $0 + i32.load offset=8 + local.tee $5 + local.get $1 + i32.store offset=12 local.get $0 + local.get $1 + i32.store offset=8 + local.get $1 + i32.const 24 + i32.add + i32.const 0 i32.store + local.get $1 local.get $0 + i32.store offset=12 + local.get $1 local.get $5 - i32.store offset=24 - end ;; $block_72 - local.get $0 - local.get $0 - i32.store offset=12 - local.get $0 - local.get $0 - i32.store offset=8 - local.get $9 - i32.const 8 + i32.store offset=8 + br $block_53 + end ;; $block_93 + local.get $8 + local.get $1 + i32.store + local.get $1 + i32.const 24 i32.add - return - end ;; $block_54 - i32.const 1 - local.set $0 - end ;; $block_1 - loop $loop_7 - block $block_81 - block $block_82 - block $block_83 - block $block_84 - block $block_85 - block $block_86 - block $block_87 - block $block_88 - block $block_89 - block $block_90 - block $block_91 - block $block_92 - block $block_93 - block $block_94 - block $block_95 - block $block_96 - block $block_97 - block $block_98 - block $block_99 - block $block_100 - block $block_101 - block $block_102 - block $block_103 - local.get $0 - br_table - $block_102 $block_100 $block_101 $block_103 - $block_103 ;; default - end ;; $block_103 - local.get $15 - i32.load offset=4 - local.get $10 - i32.and - local.get $2 - i32.sub - local.tee $0 - local.get $12 - local.get $0 - local.get $12 - i32.lt_u - local.tee $0 - select - local.set $12 - local.get $15 - local.get $14 - local.get $0 - select - local.set $14 - local.get $15 - local.tee $11 - i32.load offset=16 - local.tee $15 - br_if $block_84 - i32.const 0 - local.set $0 - br $loop_7 - end ;; $block_102 - local.get $11 - local.get $13 - i32.add - i32.load - local.tee $15 - br_if $block_81 - local.get $14 - i32.load offset=24 - local.set $9 - local.get $14 - i32.load offset=12 - local.tee $6 - local.get $14 - i32.eq - br_if $block_99 - local.get $14 - i32.load offset=8 - local.tee $0 - local.get $6 - i32.store offset=12 - local.get $6 - local.get $0 - i32.store offset=8 - local.get $9 - br_if $block_96 - br $block_95 - end ;; $block_101 - local.get $6 - i32.load offset=8 - local.tee $6 - i32.load - local.tee $5 - local.get $7 - i32.gt_u - br_if $block_83 - i32.const 1 - local.set $0 - br $loop_7 - end ;; $block_100 - local.get $5 - local.get $6 - i32.load offset=4 - i32.add - local.tee $3 - local.get $7 - i32.le_u - br_if $block_82 - i32.const 0 - local.get $9 - i32.store offset=1054988 - i32.const 0 - local.get $8 - i32.const -40 - i32.add - local.tee $0 - i32.store offset=1054980 - local.get $9 - local.get $0 - i32.const 1 - i32.or - i32.store offset=4 - local.get $9 - local.get $0 - i32.add - i32.const 40 - i32.store offset=4 - i32.const 0 - i32.const 2097152 - i32.store offset=1055016 - local.get $7 - local.get $3 - i32.const -32 - i32.add - i32.const -8 - i32.and - i32.const -8 - i32.add - local.tee $0 - local.get $0 - local.get $7 - i32.const 16 - i32.add - i32.lt_u - select - local.tee $6 - i32.const 27 - i32.store offset=4 - i32.const 0 - i64.load offset=1055000 align=4 - local.set $16 - local.get $6 - i32.const 16 - i32.add - i32.const 0 - i64.load offset=1055008 align=4 - i64.store align=4 - local.get $6 - local.get $16 - i64.store offset=8 align=4 - i32.const 0 - local.get $8 - i32.store offset=1055004 - i32.const 0 - local.get $9 - i32.store offset=1055000 - i32.const 0 - local.get $6 - i32.const 8 - i32.add - i32.store offset=1055008 - i32.const 0 - i32.const 0 - i32.store offset=1055012 - local.get $6 - i32.const 28 - i32.add - local.set $0 - loop $loop_8 - local.get $0 - i32.const 7 - i32.store - local.get $3 - local.get $0 - i32.const 4 - i32.add - local.tee $0 - i32.gt_u - br_if $loop_8 - end ;; $loop_8 - local.get $6 - local.get $7 - i32.eq - br_if $block_85 - local.get $6 - local.get $6 - i32.load offset=4 - i32.const -2 - i32.and - i32.store offset=4 - local.get $7 - local.get $6 - local.get $7 - i32.sub - local.tee $5 - i32.const 1 - i32.or - i32.store offset=4 - local.get $6 - local.get $5 - i32.store - local.get $5 - i32.const 255 - i32.gt_u - br_if $block_98 - local.get $5 - i32.const 3 - i32.shr_u - local.tee $6 - i32.const 3 - i32.shl - i32.const 1054584 - i32.add - local.set $0 - i32.const 0 - i32.load offset=1054576 - local.tee $5 - i32.const 1 - local.get $6 - i32.const 31 - i32.and - i32.shl - local.tee $6 - i32.and - i32.eqz - br_if $block_92 - local.get $0 - i32.load offset=8 - local.set $6 - br $block_91 - end ;; $block_99 - local.get $14 - i32.const 20 - i32.const 16 - local.get $14 - i32.const 20 - i32.add - local.tee $6 - i32.load - local.tee $7 - select - i32.add - i32.load - local.tee $0 - i32.eqz - br_if $block_97 - local.get $6 - local.get $14 - i32.const 16 - i32.add - local.get $7 - select - local.set $7 - block $block_104 - loop $loop_9 - local.get $7 - local.set $5 - block $block_105 - local.get $0 - local.tee $6 - i32.const 20 - i32.add - local.tee $7 - i32.load - local.tee $0 - i32.eqz - br_if $block_105 - local.get $0 - br_if $loop_9 - br $block_104 - end ;; $block_105 - local.get $6 - i32.const 16 - i32.add - local.set $7 - local.get $6 - i32.load offset=16 - local.tee $0 - br_if $loop_9 - end ;; $loop_9 - end ;; $block_104 - local.get $5 - i32.const 0 - i32.store - local.get $9 - br_if $block_96 - br $block_95 - end ;; $block_98 - i32.const 0 - local.set $0 - block $block_106 - local.get $5 - i32.const 8 - i32.shr_u - local.tee $6 - i32.eqz - br_if $block_106 - i32.const 31 - local.set $0 - local.get $5 - i32.const 16777215 - i32.gt_u - br_if $block_106 - local.get $5 - i32.const 38 - local.get $6 - i32.clz - local.tee $0 - i32.sub - i32.const 31 - i32.and - i32.shr_u - i32.const 1 - i32.and - i32.const 31 - local.get $0 - i32.sub - i32.const 1 - i32.shl - i32.or - local.set $0 - end ;; $block_106 - local.get $7 - i64.const 0 - i64.store offset=16 align=4 - local.get $7 - i32.const 28 - i32.add - local.get $0 - i32.store - local.get $0 - i32.const 2 - i32.shl - i32.const 1054848 - i32.add - local.set $6 - i32.const 0 - i32.load offset=1054580 - local.tee $9 - i32.const 1 - local.get $0 - i32.const 31 - i32.and - i32.shl - local.tee $3 - i32.and - i32.eqz - br_if $block_90 - local.get $6 - i32.load - local.tee $9 - i32.load offset=4 - i32.const -8 - i32.and - local.get $5 - i32.ne - br_if $block_89 - local.get $9 - local.set $0 - br $block_88 - end ;; $block_97 - i32.const 0 - local.set $6 - local.get $9 - i32.eqz - br_if $block_95 - end ;; $block_96 - block $block_107 - block $block_108 - block $block_109 - local.get $14 - i32.load offset=28 - i32.const 2 - i32.shl - i32.const 1054848 - i32.add - local.tee $0 - i32.load - local.get $14 - i32.eq - br_if $block_109 - local.get $9 - i32.const 16 - i32.const 20 - local.get $9 - i32.load offset=16 - local.get $14 - i32.eq - select - i32.add - local.get $6 - i32.store - local.get $6 - br_if $block_108 - br $block_95 - end ;; $block_109 - local.get $0 - local.get $6 - i32.store - local.get $6 - i32.eqz - br_if $block_107 - end ;; $block_108 - local.get $6 - local.get $9 - i32.store offset=24 - block $block_110 - local.get $14 - i32.load offset=16 - local.tee $0 - i32.eqz - br_if $block_110 - local.get $6 - local.get $0 - i32.store offset=16 - local.get $0 - local.get $6 - i32.store offset=24 - end ;; $block_110 - local.get $14 - i32.const 20 - i32.add - i32.load - local.tee $0 - i32.eqz - br_if $block_95 - local.get $6 - i32.const 20 - i32.add - local.get $0 - i32.store - local.get $0 - local.get $6 - i32.store offset=24 - local.get $12 - i32.const 16 - i32.lt_u - br_if $block_94 - br $block_93 - end ;; $block_107 - i32.const 0 - i32.const 0 - i32.load offset=1054580 - i32.const -2 - local.get $14 - i32.const 28 - i32.add - i32.load - i32.rotl - i32.and - i32.store offset=1054580 - end ;; $block_95 - local.get $12 - i32.const 16 - i32.ge_u - br_if $block_93 - end ;; $block_94 - local.get $14 - local.get $12 - local.get $2 - i32.add - local.tee $0 - i32.const 3 - i32.or - i32.store offset=4 - local.get $14 - local.get $0 - i32.add - local.tee $0 - local.get $0 - i32.load offset=4 - i32.const 1 - i32.or - i32.store offset=4 - local.get $14 - i32.const 8 - i32.add - return - end ;; $block_93 - local.get $14 - local.get $2 - i32.const 3 - i32.or - i32.store offset=4 - local.get $14 - local.get $2 - i32.add - local.tee $2 - local.get $12 - i32.const 1 - i32.or - i32.store offset=4 - local.get $2 - local.get $12 - i32.add - local.get $12 - i32.store - block $block_111 - i32.const 0 - i32.load offset=1054976 - local.tee $0 - i32.eqz - br_if $block_111 - local.get $0 - i32.const 3 - i32.shr_u - local.tee $7 - i32.const 3 - i32.shl - i32.const 1054584 - i32.add - local.set $6 - i32.const 0 - i32.load offset=1054984 - local.set $0 - block $block_112 - block $block_113 - i32.const 0 - i32.load offset=1054576 - local.tee $5 - i32.const 1 - local.get $7 - i32.const 31 - i32.and - i32.shl - local.tee $7 - i32.and - i32.eqz - br_if $block_113 - local.get $6 - i32.load offset=8 - local.set $7 - br $block_112 - end ;; $block_113 - i32.const 0 - local.get $5 - local.get $7 - i32.or - i32.store offset=1054576 - local.get $6 - local.set $7 - end ;; $block_112 - local.get $6 - local.get $0 - i32.store offset=8 - local.get $7 - local.get $0 - i32.store offset=12 - local.get $0 - local.get $6 - i32.store offset=12 - local.get $0 - local.get $7 - i32.store offset=8 - end ;; $block_111 - i32.const 0 - local.get $2 - i32.store offset=1054984 - i32.const 0 - local.get $12 - i32.store offset=1054976 - local.get $14 - i32.const 8 - i32.add - return - end ;; $block_92 - i32.const 0 - local.get $5 - local.get $6 - i32.or - i32.store offset=1054576 - local.get $0 - local.set $6 - end ;; $block_91 - local.get $0 - local.get $7 - i32.store offset=8 - local.get $6 - local.get $7 - i32.store offset=12 - local.get $7 - local.get $0 - i32.store offset=12 - local.get $7 - local.get $6 - i32.store offset=8 - i32.const 0 - local.set $6 - i32.const 0 - i32.load offset=1054980 - local.tee $0 - local.get $2 - i32.le_u - br_if $block - br $block_0 - end ;; $block_90 - i32.const 0 - local.get $9 - local.get $3 - i32.or - i32.store offset=1054580 - local.get $6 - local.get $7 - i32.store - local.get $7 - i32.const 24 - i32.add - local.get $6 - i32.store - br $block_86 - end ;; $block_89 - local.get $5 - i32.const 0 - i32.const 25 - local.get $0 - i32.const 1 - i32.shr_u - i32.sub - i32.const 31 - i32.and - local.get $0 - i32.const 31 - i32.eq - select - i32.shl - local.set $6 - loop $loop_10 - local.get $9 - local.get $6 - i32.const 29 - i32.shr_u - i32.const 4 - i32.and - i32.add - i32.const 16 - i32.add - local.tee $3 - i32.load - local.tee $0 - i32.eqz - br_if $block_87 - local.get $6 - i32.const 1 - i32.shl - local.set $6 - local.get $0 - local.set $9 - local.get $0 - i32.load offset=4 - i32.const -8 - i32.and - local.get $5 - i32.ne - br_if $loop_10 - end ;; $loop_10 - end ;; $block_88 - local.get $0 - i32.load offset=8 - local.tee $6 - local.get $7 - i32.store offset=12 - local.get $0 - local.get $7 - i32.store offset=8 - local.get $7 - i32.const 24 - i32.add - i32.const 0 - i32.store - local.get $7 - local.get $0 - i32.store offset=12 - local.get $7 - local.get $6 - i32.store offset=8 - i32.const 0 - local.set $6 - i32.const 0 - i32.load offset=1054980 - local.tee $0 - local.get $2 - i32.le_u - br_if $block - br $block_0 - end ;; $block_87 - local.get $3 - local.get $7 - i32.store - local.get $7 - i32.const 24 - i32.add - local.get $9 - i32.store - end ;; $block_86 - local.get $7 - local.get $7 - i32.store offset=12 - local.get $7 - local.get $7 - i32.store offset=8 - end ;; $block_85 - i32.const 0 - local.set $6 - i32.const 0 - i32.load offset=1054980 - local.tee $0 - local.get $2 - i32.le_u - br_if $block - br $block_0 - end ;; $block_84 - i32.const 3 - local.set $0 - br $loop_7 - end ;; $block_83 - i32.const 2 - local.set $0 - br $loop_7 - end ;; $block_82 - i32.const 2 - local.set $0 - br $loop_7 - end ;; $block_81 - i32.const 3 - local.set $0 - br $loop_7 - end ;; $loop_7 - end ;; $block_0 + local.get $7 + i32.store + end ;; $block_92 + local.get $1 + local.get $1 + i32.store offset=12 + local.get $1 + local.get $1 + i32.store offset=8 + br $block_53 + end ;; $block_90 + local.get $6 + i32.const 3 + i32.shr_u + local.tee $5 + i32.const 3 + i32.shl + i32.const 1054696 + i32.add + local.set $0 + block $block_97 + block $block_98 + i32.const 0 + i32.load offset=1054688 + local.tee $6 + i32.const 1 + local.get $5 + i32.const 31 + i32.and + i32.shl + local.tee $5 + i32.and + i32.eqz + br_if $block_98 + local.get $0 + i32.load offset=8 + local.set $5 + br $block_97 + end ;; $block_98 + i32.const 0 + local.get $6 + local.get $5 + i32.or + i32.store offset=1054688 + local.get $0 + local.set $5 + end ;; $block_97 + local.get $0 + local.get $1 + i32.store offset=8 + local.get $5 + local.get $1 + i32.store offset=12 + local.get $1 + local.get $0 + i32.store offset=12 + local.get $1 + local.get $5 + i32.store offset=8 + end ;; $block_53 + i32.const 0 + local.set $1 + i32.const 0 + i32.load offset=1055092 + local.tee $0 + local.get $2 + i32.le_u + br_if $block i32.const 0 local.get $0 local.get $2 i32.sub - local.tee $6 - i32.store offset=1054980 + local.tee $1 + i32.store offset=1055092 i32.const 0 i32.const 0 - i32.load offset=1054988 + i32.load offset=1055100 local.tee $0 local.get $2 i32.add - local.tee $7 - i32.store offset=1054988 - local.get $7 - local.get $6 + local.tee $5 + i32.store offset=1055100 + local.get $5 + local.get $1 i32.const 1 i32.or i32.store offset=4 @@ -6607,10 +6159,10 @@ i32.add return end ;; $block - local.get $6 + local.get $1 ) - (func $dlmalloc::dlmalloc::Dlmalloc::dispose_chunk::h08c63a089677cf87 (type $0) + (func $dlmalloc::dlmalloc::Dlmalloc::dispose_chunk::h1effa892c850b7b3 (type $0) (param $0 i32) (param $1 i32) (local $2 i32) @@ -6628,385 +6180,290 @@ block $block_1 block $block_2 block $block_3 + local.get $0 + i32.load offset=4 + local.tee $3 + i32.const 1 + i32.and + br_if $block_3 + local.get $3 + i32.const 3 + i32.and + i32.eqz + br_if $block_2 + local.get $0 + i32.load + local.tee $3 + local.get $1 + i32.add + local.set $1 block $block_4 - block $block_5 - block $block_6 - block $block_7 - block $block_8 - block $block_9 - block $block_10 - block $block_11 - local.get $0 - i32.load offset=4 - local.tee $3 - i32.const 1 - i32.and - br_if $block_11 - local.get $3 - i32.const 3 - i32.and - i32.eqz - br_if $block_7 - local.get $0 - i32.load - local.tee $3 - local.get $1 - i32.add - local.set $1 - block $block_12 - block $block_13 - block $block_14 - block $block_15 - block $block_16 - i32.const 0 - i32.load offset=1054984 - local.get $0 - local.get $3 - i32.sub - local.tee $0 - i32.eq - br_if $block_16 - local.get $3 - i32.const 255 - i32.gt_u - br_if $block_15 - local.get $0 - i32.load offset=12 - local.tee $4 - local.get $0 - i32.load offset=8 - local.tee $5 - i32.eq - br_if $block_14 - local.get $5 - local.get $4 - i32.store offset=12 - local.get $4 - local.get $5 - i32.store offset=8 - local.get $2 - i32.load offset=4 - local.tee $3 - i32.const 2 - i32.and - i32.eqz - br_if $block_8 - br $block_9 - end ;; $block_16 - local.get $2 - i32.load offset=4 - i32.const 3 - i32.and - i32.const 3 - i32.ne - br_if $block_11 - i32.const 0 - local.get $1 - i32.store offset=1054976 - local.get $2 - i32.const 4 - i32.add - local.tee $3 - local.get $3 - i32.load - i32.const -2 - i32.and - i32.store - local.get $0 - local.get $1 - i32.const 1 - i32.or - i32.store offset=4 - local.get $2 - local.get $1 - i32.store - return - end ;; $block_15 - local.get $0 - i32.load offset=24 - local.set $6 - local.get $0 - i32.load offset=12 - local.tee $4 - local.get $0 - i32.eq - br_if $block_13 - local.get $0 - i32.load offset=8 - local.tee $3 - local.get $4 - i32.store offset=12 - local.get $4 - local.get $3 - i32.store offset=8 - local.get $6 - br_if $block_12 - br $block_11 - end ;; $block_14 - i32.const 0 - i32.const 0 - i32.load offset=1054576 - i32.const -2 - local.get $3 - i32.const 3 - i32.shr_u - i32.rotl - i32.and - i32.store offset=1054576 - local.get $2 - i32.load offset=4 - local.tee $3 - i32.const 2 - i32.and - i32.eqz - br_if $block_8 - br $block_9 - end ;; $block_13 - block $block_17 - local.get $0 - i32.const 20 - i32.const 16 - local.get $0 - i32.load offset=20 - local.tee $4 - select - i32.add - i32.load - local.tee $3 - i32.eqz - br_if $block_17 - local.get $0 - i32.const 20 - i32.add - local.get $0 - i32.const 16 - i32.add - local.get $4 - select - local.set $5 - block $block_18 - loop $loop - local.get $5 - local.set $7 - block $block_19 - local.get $3 - local.tee $4 - i32.const 20 - i32.add - local.tee $5 - i32.load - local.tee $3 - i32.eqz - br_if $block_19 - local.get $3 - br_if $loop - br $block_18 - end ;; $block_19 - local.get $4 - i32.const 16 - i32.add - local.set $5 - local.get $4 - i32.load offset=16 - local.tee $3 - br_if $loop - end ;; $loop - end ;; $block_18 - local.get $7 - i32.const 0 - i32.store - local.get $6 - br_if $block_12 - br $block_11 - end ;; $block_17 - i32.const 0 - local.set $4 - local.get $6 - i32.eqz - br_if $block_11 - end ;; $block_12 - block $block_20 - block $block_21 - local.get $0 - i32.load offset=28 - i32.const 2 - i32.shl - i32.const 1054848 - i32.add - local.tee $3 - i32.load - local.get $0 - i32.eq - br_if $block_21 - local.get $6 - i32.const 16 - i32.const 20 - local.get $6 - i32.load offset=16 - local.get $0 - i32.eq - select - i32.add - local.get $4 - i32.store - local.get $4 - br_if $block_20 - br $block_11 - end ;; $block_21 - local.get $3 - local.get $4 - i32.store - local.get $4 - i32.eqz - br_if $block_10 - end ;; $block_20 - local.get $4 - local.get $6 - i32.store offset=24 - block $block_22 - local.get $0 - i32.load offset=16 - local.tee $3 - i32.eqz - br_if $block_22 - local.get $4 - local.get $3 - i32.store offset=16 - local.get $3 - local.get $4 - i32.store offset=24 - end ;; $block_22 - local.get $0 - i32.load offset=20 - local.tee $3 - i32.eqz - br_if $block_11 - local.get $4 - i32.const 20 - i32.add - local.get $3 - i32.store - local.get $3 - local.get $4 - i32.store offset=24 - end ;; $block_11 - local.get $2 - i32.load offset=4 - local.tee $3 - i32.const 2 - i32.and - br_if $block_9 - br $block_8 - end ;; $block_10 - i32.const 0 - i32.const 0 - i32.load offset=1054580 - i32.const -2 - local.get $0 - i32.const 28 - i32.add - i32.load - i32.rotl - i32.and - i32.store offset=1054580 - local.get $2 - i32.load offset=4 - local.tee $3 - i32.const 2 - i32.and - i32.eqz - br_if $block_8 - end ;; $block_9 - local.get $2 - i32.const 4 - i32.add - local.get $3 - i32.const -2 - i32.and - i32.store - local.get $0 - local.get $1 - i32.const 1 - i32.or - i32.store offset=4 - local.get $0 - local.get $1 - i32.add - local.get $1 - i32.store - br $block - end ;; $block_8 - block $block_23 - i32.const 0 - i32.load offset=1054988 - local.get $2 - i32.eq - br_if $block_23 - i32.const 0 - i32.load offset=1054984 - local.get $2 - i32.eq - br_if $block_6 - local.get $3 - i32.const -8 - i32.and - local.tee $4 - local.get $1 - i32.add - local.set $1 - local.get $4 - i32.const 255 - i32.gt_u - br_if $block_5 - local.get $2 - i32.load offset=12 - local.tee $4 - local.get $2 - i32.load offset=8 - local.tee $2 - i32.eq - br_if $block_3 - local.get $2 - local.get $4 - i32.store offset=12 - local.get $4 - local.get $2 - i32.store offset=8 - br $block_0 - end ;; $block_23 - i32.const 0 + i32.const 0 + i32.load offset=1055096 + local.get $0 + local.get $3 + i32.sub + local.tee $0 + i32.ne + br_if $block_4 + local.get $2 + i32.load offset=4 + i32.const 3 + i32.and + i32.const 3 + i32.ne + br_if $block_3 + i32.const 0 + local.get $1 + i32.store offset=1055088 + local.get $2 + local.get $2 + i32.load offset=4 + i32.const -2 + i32.and + i32.store offset=4 + local.get $0 + local.get $1 + i32.const 1 + i32.or + i32.store offset=4 + local.get $2 + local.get $1 + i32.store + return + end ;; $block_4 + block $block_5 + local.get $3 + i32.const 256 + i32.lt_u + br_if $block_5 + local.get $0 + i32.load offset=24 + local.set $4 + block $block_6 + block $block_7 + block $block_8 local.get $0 - i32.store offset=1054988 - i32.const 0 + i32.load offset=12 + local.tee $5 + local.get $0 + i32.ne + br_if $block_8 + local.get $0 + i32.const 20 + i32.const 16 + local.get $0 + i32.load offset=20 + local.tee $5 + select + i32.add + i32.load + local.tee $3 + br_if $block_7 i32.const 0 - i32.load offset=1054980 - local.get $1 + local.set $5 + br $block_6 + end ;; $block_8 + local.get $0 + i32.load offset=8 + local.tee $3 + local.get $5 + i32.store offset=12 + local.get $5 + local.get $3 + i32.store offset=8 + br $block_6 + end ;; $block_7 + local.get $0 + i32.const 20 + i32.add + local.get $0 + i32.const 16 + i32.add + local.get $5 + select + local.set $6 + loop $loop + local.get $6 + local.set $7 + block $block_9 + local.get $3 + local.tee $5 + i32.const 20 i32.add - local.tee $1 - i32.store offset=1054980 - local.get $0 - local.get $1 - i32.const 1 - i32.or - i32.store offset=4 - local.get $0 - i32.const 0 - i32.load offset=1054984 - i32.eq - br_if $block_4 - end ;; $block_7 - return - end ;; $block_6 + local.tee $6 + i32.load + local.tee $3 + br_if $block_9 + local.get $5 + i32.const 16 + i32.add + local.set $6 + local.get $5 + i32.load offset=16 + local.set $3 + end ;; $block_9 + local.get $3 + br_if $loop + end ;; $loop + local.get $7 + i32.const 0 + i32.store + end ;; $block_6 + local.get $4 + i32.eqz + br_if $block_3 + block $block_10 + block $block_11 + local.get $0 + i32.load offset=28 + i32.const 2 + i32.shl + i32.const 1054960 + i32.add + local.tee $3 + i32.load + local.get $0 + i32.ne + br_if $block_11 + local.get $3 + local.get $5 + i32.store + local.get $5 + br_if $block_10 + i32.const 0 + i32.const 0 + i32.load offset=1054692 + i32.const -2 + local.get $0 + i32.load offset=28 + i32.rotl + i32.and + i32.store offset=1054692 + br $block_3 + end ;; $block_11 + local.get $4 + i32.const 16 + i32.const 20 + local.get $4 + i32.load offset=16 + local.get $0 + i32.eq + select + i32.add + local.get $5 + i32.store + local.get $5 + i32.eqz + br_if $block_3 + end ;; $block_10 + local.get $5 + local.get $4 + i32.store offset=24 + block $block_12 + local.get $0 + i32.load offset=16 + local.tee $3 + i32.eqz + br_if $block_12 + local.get $5 + local.get $3 + i32.store offset=16 + local.get $3 + local.get $5 + i32.store offset=24 + end ;; $block_12 + local.get $0 + i32.load offset=20 + local.tee $3 + i32.eqz + br_if $block_3 + local.get $5 + i32.const 20 + i32.add + local.get $3 + i32.store + local.get $3 + local.get $5 + i32.store offset=24 + br $block_3 + end ;; $block_5 + block $block_13 + local.get $0 + i32.load offset=12 + local.tee $5 + local.get $0 + i32.load offset=8 + local.tee $6 + i32.eq + br_if $block_13 + local.get $6 + local.get $5 + i32.store offset=12 + local.get $5 + local.get $6 + i32.store offset=8 + br $block_3 + end ;; $block_13 + i32.const 0 + i32.const 0 + i32.load offset=1054688 + i32.const -2 + local.get $3 + i32.const 3 + i32.shr_u + i32.rotl + i32.and + i32.store offset=1054688 + end ;; $block_3 + block $block_14 + block $block_15 + local.get $2 + i32.load offset=4 + local.tee $3 + i32.const 2 + i32.and + i32.eqz + br_if $block_15 + local.get $2 + local.get $3 + i32.const -2 + i32.and + i32.store offset=4 + local.get $0 + local.get $1 + i32.const 1 + i32.or + i32.store offset=4 + local.get $0 + local.get $1 + i32.add + local.get $1 + i32.store + br $block_14 + end ;; $block_15 + block $block_16 + block $block_17 + i32.const 0 + i32.load offset=1055100 + local.get $2 + i32.eq + br_if $block_17 + i32.const 0 + i32.load offset=1055096 + local.get $2 + i32.ne + br_if $block_16 i32.const 0 local.get $0 - i32.store offset=1054984 + i32.store offset=1055096 i32.const 0 i32.const 0 - i32.load offset=1054976 + i32.load offset=1055088 local.get $1 i32.add local.tee $1 - i32.store offset=1054976 + i32.store offset=1055088 local.get $0 local.get $1 i32.const 1 @@ -7018,452 +6475,483 @@ local.get $1 i32.store return - end ;; $block_5 - local.get $2 - i32.load offset=24 - local.set $6 - local.get $2 - i32.load offset=12 - local.tee $4 - local.get $2 - i32.eq + end ;; $block_17 + i32.const 0 + local.get $0 + i32.store offset=1055100 + i32.const 0 + i32.const 0 + i32.load offset=1055092 + local.get $1 + i32.add + local.tee $1 + i32.store offset=1055092 + local.get $0 + local.get $1 + i32.const 1 + i32.or + i32.store offset=4 + local.get $0 + i32.const 0 + i32.load offset=1055096 + i32.ne br_if $block_2 - local.get $2 - i32.load offset=8 - local.tee $3 - local.get $4 - i32.store offset=12 - local.get $4 - local.get $3 - i32.store offset=8 - local.get $6 - br_if $block_1 - br $block_0 - end ;; $block_4 - i32.const 0 - i32.const 0 - i32.store offset=1054976 - i32.const 0 - i32.const 0 - i32.store offset=1054984 - return - end ;; $block_3 - i32.const 0 - i32.const 0 - i32.load offset=1054576 - i32.const -2 - local.get $3 - i32.const 3 - i32.shr_u - i32.rotl - i32.and - i32.store offset=1054576 - br $block_0 - end ;; $block_2 - block $block_24 - local.get $2 - i32.const 20 - i32.const 16 - local.get $2 - i32.load offset=20 - local.tee $4 - select - i32.add - i32.load - local.tee $3 - i32.eqz - br_if $block_24 - local.get $2 - i32.const 20 - i32.add - local.get $2 - i32.const 16 - i32.add - local.get $4 - select - local.set $5 - block $block_25 - loop $loop_0 - local.get $5 - local.set $7 - block $block_26 - local.get $3 - local.tee $4 + i32.const 0 + i32.const 0 + i32.store offset=1055088 + i32.const 0 + i32.const 0 + i32.store offset=1055096 + return + end ;; $block_16 + local.get $3 + i32.const -8 + i32.and + local.tee $5 + local.get $1 + i32.add + local.set $1 + block $block_18 + block $block_19 + local.get $5 + i32.const 256 + i32.lt_u + br_if $block_19 + local.get $2 + i32.load offset=24 + local.set $4 + block $block_20 + block $block_21 + block $block_22 + local.get $2 + i32.load offset=12 + local.tee $5 + local.get $2 + i32.ne + br_if $block_22 + local.get $2 + i32.const 20 + i32.const 16 + local.get $2 + i32.load offset=20 + local.tee $5 + select + i32.add + i32.load + local.tee $3 + br_if $block_21 + i32.const 0 + local.set $5 + br $block_20 + end ;; $block_22 + local.get $2 + i32.load offset=8 + local.tee $3 + local.get $5 + i32.store offset=12 + local.get $5 + local.get $3 + i32.store offset=8 + br $block_20 + end ;; $block_21 + local.get $2 + i32.const 20 + i32.add + local.get $2 + i32.const 16 + i32.add + local.get $5 + select + local.set $6 + loop $loop_0 + local.get $6 + local.set $7 + block $block_23 + local.get $3 + local.tee $5 + i32.const 20 + i32.add + local.tee $6 + i32.load + local.tee $3 + br_if $block_23 + local.get $5 + i32.const 16 + i32.add + local.set $6 + local.get $5 + i32.load offset=16 + local.set $3 + end ;; $block_23 + local.get $3 + br_if $loop_0 + end ;; $loop_0 + local.get $7 + i32.const 0 + i32.store + end ;; $block_20 + local.get $4 + i32.eqz + br_if $block_18 + block $block_24 + block $block_25 + local.get $2 + i32.load offset=28 + i32.const 2 + i32.shl + i32.const 1054960 + i32.add + local.tee $3 + i32.load + local.get $2 + i32.ne + br_if $block_25 + local.get $3 + local.get $5 + i32.store + local.get $5 + br_if $block_24 + i32.const 0 + i32.const 0 + i32.load offset=1054692 + i32.const -2 + local.get $2 + i32.load offset=28 + i32.rotl + i32.and + i32.store offset=1054692 + br $block_18 + end ;; $block_25 + local.get $4 + i32.const 16 + i32.const 20 + local.get $4 + i32.load offset=16 + local.get $2 + i32.eq + select + i32.add + local.get $5 + i32.store + local.get $5 + i32.eqz + br_if $block_18 + end ;; $block_24 + local.get $5 + local.get $4 + i32.store offset=24 + block $block_26 + local.get $2 + i32.load offset=16 + local.tee $3 + i32.eqz + br_if $block_26 + local.get $5 + local.get $3 + i32.store offset=16 + local.get $3 + local.get $5 + i32.store offset=24 + end ;; $block_26 + local.get $2 + i32.load offset=20 + local.tee $2 + i32.eqz + br_if $block_18 + local.get $5 i32.const 20 i32.add + local.get $2 + i32.store + local.get $2 + local.get $5 + i32.store offset=24 + br $block_18 + end ;; $block_19 + block $block_27 + local.get $2 + i32.load offset=12 local.tee $5 - i32.load - local.tee $3 - i32.eqz - br_if $block_26 - local.get $3 - br_if $loop_0 - br $block_25 - end ;; $block_26 - local.get $4 - i32.const 16 - i32.add - local.set $5 - local.get $4 - i32.load offset=16 - local.tee $3 - br_if $loop_0 - end ;; $loop_0 - end ;; $block_25 - local.get $7 - i32.const 0 - i32.store - local.get $6 - br_if $block_1 - br $block_0 - end ;; $block_24 - i32.const 0 - local.set $4 - local.get $6 - i32.eqz - br_if $block_0 - end ;; $block_1 - block $block_27 - block $block_28 - block $block_29 - local.get $2 - i32.load offset=28 - i32.const 2 - i32.shl - i32.const 1054848 - i32.add - local.tee $3 - i32.load - local.get $2 - i32.eq - br_if $block_29 - local.get $6 - i32.const 16 - i32.const 20 - local.get $6 - i32.load offset=16 - local.get $2 - i32.eq - select + local.get $2 + i32.load offset=8 + local.tee $2 + i32.eq + br_if $block_27 + local.get $2 + local.get $5 + i32.store offset=12 + local.get $5 + local.get $2 + i32.store offset=8 + br $block_18 + end ;; $block_27 + i32.const 0 + i32.const 0 + i32.load offset=1054688 + i32.const -2 + local.get $3 + i32.const 3 + i32.shr_u + i32.rotl + i32.and + i32.store offset=1054688 + end ;; $block_18 + local.get $0 + local.get $1 + i32.const 1 + i32.or + i32.store offset=4 + local.get $0 + local.get $1 i32.add - local.get $4 + local.get $1 i32.store - local.get $4 - br_if $block_28 - br $block_0 - end ;; $block_29 - local.get $3 - local.get $4 - i32.store - local.get $4 - i32.eqz - br_if $block_27 - end ;; $block_28 - local.get $4 - local.get $6 - i32.store offset=24 - block $block_30 - local.get $2 - i32.load offset=16 - local.tee $3 - i32.eqz - br_if $block_30 - local.get $4 - local.get $3 - i32.store offset=16 - local.get $3 - local.get $4 - i32.store offset=24 - end ;; $block_30 - local.get $2 - i32.load offset=20 - local.tee $2 - i32.eqz - br_if $block_0 - local.get $4 - i32.const 20 - i32.add - local.get $2 - i32.store - local.get $2 - local.get $4 - i32.store offset=24 - br $block_0 - end ;; $block_27 - i32.const 0 - i32.const 0 - i32.load offset=1054580 - i32.const -2 - local.get $2 - i32.const 28 - i32.add - i32.load - i32.rotl - i32.and - i32.store offset=1054580 - end ;; $block_0 - local.get $0 - local.get $1 - i32.const 1 - i32.or - i32.store offset=4 - local.get $0 - local.get $1 - i32.add - local.get $1 - i32.store - local.get $0 - i32.const 0 - i32.load offset=1054984 - i32.ne - br_if $block - i32.const 0 - local.get $1 - i32.store offset=1054976 - return - end ;; $block - block $block_31 - block $block_32 - block $block_33 - block $block_34 - block $block_35 - block $block_36 - block $block_37 - local.get $1 - i32.const 255 - i32.gt_u - br_if $block_37 - local.get $1 - i32.const 3 - i32.shr_u - local.tee $2 - i32.const 3 - i32.shl - i32.const 1054584 - i32.add - local.set $1 + local.get $0 + i32.const 0 + i32.load offset=1055096 + i32.ne + br_if $block_14 + i32.const 0 + local.get $1 + i32.store offset=1055088 + return + end ;; $block_14 + local.get $1 + i32.const 256 + i32.lt_u + br_if $block + i32.const 0 + local.set $2 + block $block_28 + local.get $1 + i32.const 8 + i32.shr_u + local.tee $3 + i32.eqz + br_if $block_28 + i32.const 31 + local.set $2 + local.get $1 + i32.const 16777215 + i32.gt_u + br_if $block_28 + local.get $1 + i32.const 6 + local.get $3 + i32.clz + local.tee $2 + i32.sub + i32.const 31 + i32.and + i32.shr_u + i32.const 1 + i32.and + local.get $2 + i32.const 1 + i32.shl + i32.sub + i32.const 62 + i32.add + local.set $2 + end ;; $block_28 + local.get $0 + i64.const 0 + i64.store offset=16 align=4 + local.get $0 + i32.const 28 + i32.add + local.get $2 + i32.store + local.get $2 + i32.const 2 + i32.shl + i32.const 1054960 + i32.add + local.set $3 + block $block_29 + block $block_30 + block $block_31 i32.const 0 - i32.load offset=1054576 - local.tee $3 + i32.load offset=1054692 + local.tee $5 i32.const 1 local.get $2 i32.const 31 i32.and i32.shl - local.tee $2 + local.tee $6 i32.and i32.eqz - br_if $block_36 - local.get $1 - i32.load offset=8 - local.set $2 - br $block_35 - end ;; $block_37 - i32.const 0 - local.set $2 - block $block_38 - local.get $1 - i32.const 8 - i32.shr_u - local.tee $3 - i32.eqz - br_if $block_38 - i32.const 31 - local.set $2 - local.get $1 - i32.const 16777215 - i32.gt_u - br_if $block_38 - local.get $1 - i32.const 38 + br_if $block_31 local.get $3 - i32.clz - local.tee $2 - i32.sub - i32.const 31 - i32.and - i32.shr_u - i32.const 1 + i32.load + local.tee $5 + i32.load offset=4 + i32.const -8 i32.and - i32.const 31 - local.get $2 - i32.sub - i32.const 1 - i32.shl - i32.or + local.get $1 + i32.ne + br_if $block_30 + local.get $5 local.set $2 - end ;; $block_38 + br $block_29 + end ;; $block_31 + i32.const 0 + local.get $5 + local.get $6 + i32.or + i32.store offset=1054692 + local.get $3 local.get $0 - i64.const 0 - i64.store offset=16 align=4 + i32.store local.get $0 - i32.const 28 + i32.const 24 i32.add - local.get $2 + local.get $3 i32.store - local.get $2 - i32.const 2 - i32.shl - i32.const 1054848 - i32.add - local.set $3 - i32.const 0 - i32.load offset=1054580 - local.tee $4 - i32.const 1 - local.get $2 - i32.const 31 - i32.and - i32.shl - local.tee $5 + br $block_0 + end ;; $block_30 + local.get $1 + i32.const 0 + i32.const 25 + local.get $2 + i32.const 1 + i32.shr_u + i32.sub + i32.const 31 + i32.and + local.get $2 + i32.const 31 + i32.eq + select + i32.shl + local.set $3 + loop $loop_1 + local.get $5 + local.get $3 + i32.const 29 + i32.shr_u + i32.const 4 i32.and + i32.add + i32.const 16 + i32.add + local.tee $6 + i32.load + local.tee $2 i32.eqz - br_if $block_34 + br_if $block_1 local.get $3 - i32.load - local.tee $4 + i32.const 1 + i32.shl + local.set $3 + local.get $2 + local.set $5 + local.get $2 i32.load offset=4 i32.const -8 i32.and local.get $1 i32.ne - br_if $block_33 - local.get $4 - local.set $2 - br $block_32 - end ;; $block_36 - i32.const 0 - local.get $3 - local.get $2 - i32.or - i32.store offset=1054576 - local.get $1 - local.set $2 - end ;; $block_35 - local.get $1 - local.get $0 - i32.store offset=8 + br_if $loop_1 + end ;; $loop_1 + end ;; $block_29 local.get $2 + i32.load offset=8 + local.tee $1 local.get $0 i32.store offset=12 + local.get $2 local.get $0 - local.get $1 - i32.store offset=12 + i32.store offset=8 + local.get $0 + i32.const 24 + i32.add + i32.const 0 + i32.store local.get $0 local.get $2 + i32.store offset=12 + local.get $0 + local.get $1 i32.store offset=8 - return - end ;; $block_34 - i32.const 0 - local.get $4 - local.get $5 - i32.or - i32.store offset=1054580 - local.get $3 - local.get $0 - i32.store - local.get $0 - i32.const 24 - i32.add - local.get $3 - i32.store - local.get $0 - local.get $0 - i32.store offset=12 - local.get $0 - local.get $0 - i32.store offset=8 + end ;; $block_2 return - end ;; $block_33 - local.get $1 - i32.const 0 - i32.const 25 - local.get $2 - i32.const 1 - i32.shr_u - i32.sub - i32.const 31 - i32.and - local.get $2 - i32.const 31 - i32.eq - select - i32.shl - local.set $3 - loop $loop_1 - local.get $4 - local.get $3 - i32.const 29 - i32.shr_u - i32.const 4 - i32.and - i32.add - i32.const 16 - i32.add - local.tee $5 - i32.load - local.tee $2 - i32.eqz - br_if $block_31 - local.get $3 - i32.const 1 - i32.shl - local.set $3 - local.get $2 - local.set $4 - local.get $2 - i32.load offset=4 - i32.const -8 - i32.and - local.get $1 - i32.ne - br_if $loop_1 - end ;; $loop_1 - end ;; $block_32 - local.get $2 - i32.load offset=8 - local.tee $1 - local.get $0 - i32.store offset=12 - local.get $2 - local.get $0 - i32.store offset=8 - local.get $0 - i32.const 24 - i32.add - i32.const 0 - i32.store + end ;; $block_1 + local.get $6 + local.get $0 + i32.store + local.get $0 + i32.const 24 + i32.add + local.get $5 + i32.store + end ;; $block_0 + local.get $0 local.get $0 - local.get $2 i32.store offset=12 local.get $0 - local.get $1 + local.get $0 i32.store offset=8 return - end ;; $block_31 - local.get $5 - local.get $0 - i32.store - local.get $0 - i32.const 24 + end ;; $block + local.get $1 + i32.const 3 + i32.shr_u + local.tee $2 + i32.const 3 + i32.shl + i32.const 1054696 i32.add - local.get $4 - i32.store + local.set $1 + block $block_32 + block $block_33 + i32.const 0 + i32.load offset=1054688 + local.tee $3 + i32.const 1 + local.get $2 + i32.const 31 + i32.and + i32.shl + local.tee $2 + i32.and + i32.eqz + br_if $block_33 + local.get $1 + i32.load offset=8 + local.set $2 + br $block_32 + end ;; $block_33 + i32.const 0 + local.get $3 + local.get $2 + i32.or + i32.store offset=1054688 + local.get $1 + local.set $2 + end ;; $block_32 + local.get $1 local.get $0 + i32.store offset=8 + local.get $2 local.get $0 i32.store offset=12 local.get $0 + local.get $1 + i32.store offset=12 local.get $0 + local.get $2 i32.store offset=8 ) - (func $__rdl_dealloc (type $6) + (func $__rdl_dealloc (type $5) (param $0 i32) local.get $0 - call $dlmalloc::dlmalloc::Dlmalloc::free::he25d64d2cc54b15f + call $dlmalloc::dlmalloc::Dlmalloc::free::h6ea6f2ba0e2c950d ) - (func $dlmalloc::dlmalloc::Dlmalloc::free::he25d64d2cc54b15f (type $6) + (func $dlmalloc::dlmalloc::Dlmalloc::free::h6ea6f2ba0e2c950d (type $5) (param $0 i32) (local $1 i32) (local $2 i32) @@ -7490,1423 +6978,1279 @@ block $block_0 block $block_1 block $block_2 + local.get $2 + i32.const 1 + i32.and + br_if $block_2 + local.get $2 + i32.const 3 + i32.and + i32.eqz + br_if $block_1 + local.get $1 + i32.load + local.tee $2 + local.get $0 + i32.add + local.set $0 block $block_3 - block $block_4 - block $block_5 - local.get $2 - i32.const 1 - i32.and - br_if $block_5 - local.get $2 - i32.const 3 - i32.and - i32.eqz - br_if $block - local.get $1 - i32.load - local.tee $2 - local.get $0 - i32.add - local.set $0 - block $block_6 - block $block_7 - block $block_8 - block $block_9 - block $block_10 - i32.const 0 - i32.load offset=1054984 - local.get $1 - local.get $2 - i32.sub - local.tee $1 - i32.eq - br_if $block_10 - local.get $2 - i32.const 255 - i32.gt_u - br_if $block_9 - local.get $1 - i32.load offset=12 - local.tee $4 - local.get $1 - i32.load offset=8 - local.tee $5 - i32.eq - br_if $block_8 - local.get $5 - local.get $4 - i32.store offset=12 - local.get $4 - local.get $5 - i32.store offset=8 - local.get $3 - i32.load offset=4 - local.tee $2 - i32.const 2 - i32.and - i32.eqz - br_if $block_2 - br $block_3 - end ;; $block_10 - local.get $3 - i32.load offset=4 - i32.const 3 - i32.and - i32.const 3 - i32.ne - br_if $block_5 - i32.const 0 - local.get $0 - i32.store offset=1054976 - local.get $3 - i32.const 4 - i32.add - local.tee $3 - local.get $3 - i32.load - i32.const -2 - i32.and - i32.store - local.get $1 - local.get $0 - i32.const 1 - i32.or - i32.store offset=4 - local.get $1 - local.get $0 - i32.add - local.get $0 - i32.store - return - end ;; $block_9 - local.get $1 - i32.load offset=24 - local.set $6 - local.get $1 - i32.load offset=12 - local.tee $4 - local.get $1 - i32.eq - br_if $block_7 - local.get $1 - i32.load offset=8 - local.tee $2 - local.get $4 - i32.store offset=12 - local.get $4 - local.get $2 - i32.store offset=8 - local.get $6 - br_if $block_6 - br $block_5 - end ;; $block_8 - i32.const 0 - i32.const 0 - i32.load offset=1054576 - i32.const -2 - local.get $2 - i32.const 3 - i32.shr_u - i32.rotl - i32.and - i32.store offset=1054576 - local.get $3 - i32.load offset=4 - local.tee $2 - i32.const 2 - i32.and - i32.eqz - br_if $block_2 - br $block_3 - end ;; $block_7 - block $block_11 - local.get $1 - i32.const 20 - i32.const 16 - local.get $1 - i32.load offset=20 - local.tee $4 - select - i32.add - i32.load - local.tee $2 - i32.eqz - br_if $block_11 - local.get $1 - i32.const 20 - i32.add - local.get $1 - i32.const 16 - i32.add - local.get $4 - select - local.set $5 - block $block_12 - loop $loop - local.get $5 - local.set $7 - block $block_13 - local.get $2 - local.tee $4 - i32.const 20 - i32.add - local.tee $5 - i32.load - local.tee $2 - i32.eqz - br_if $block_13 - local.get $2 - br_if $loop - br $block_12 - end ;; $block_13 - local.get $4 - i32.const 16 - i32.add - local.set $5 - local.get $4 - i32.load offset=16 - local.tee $2 - br_if $loop - end ;; $loop - end ;; $block_12 - local.get $7 - i32.const 0 - i32.store - local.get $6 - br_if $block_6 - br $block_5 - end ;; $block_11 - i32.const 0 - local.set $4 - local.get $6 - i32.eqz - br_if $block_5 - end ;; $block_6 - block $block_14 - block $block_15 - local.get $1 - i32.load offset=28 - i32.const 2 - i32.shl - i32.const 1054848 - i32.add - local.tee $2 - i32.load - local.get $1 - i32.eq - br_if $block_15 - local.get $6 - i32.const 16 - i32.const 20 - local.get $6 - i32.load offset=16 - local.get $1 - i32.eq - select - i32.add - local.get $4 - i32.store - local.get $4 - br_if $block_14 - br $block_5 - end ;; $block_15 - local.get $2 - local.get $4 - i32.store - local.get $4 - i32.eqz - br_if $block_4 - end ;; $block_14 - local.get $4 - local.get $6 - i32.store offset=24 - block $block_16 + i32.const 0 + i32.load offset=1055096 + local.get $1 + local.get $2 + i32.sub + local.tee $1 + i32.ne + br_if $block_3 + local.get $3 + i32.load offset=4 + i32.const 3 + i32.and + i32.const 3 + i32.ne + br_if $block_2 + i32.const 0 + local.get $0 + i32.store offset=1055088 + local.get $3 + local.get $3 + i32.load offset=4 + i32.const -2 + i32.and + i32.store offset=4 + local.get $1 + local.get $0 + i32.const 1 + i32.or + i32.store offset=4 + local.get $1 + local.get $0 + i32.add + local.get $0 + i32.store + return + end ;; $block_3 + block $block_4 + local.get $2 + i32.const 256 + i32.lt_u + br_if $block_4 + local.get $1 + i32.load offset=24 + local.set $4 + block $block_5 + block $block_6 + block $block_7 local.get $1 - i32.load offset=16 + i32.load offset=12 + local.tee $5 + local.get $1 + i32.ne + br_if $block_7 + local.get $1 + i32.const 20 + i32.const 16 + local.get $1 + i32.load offset=20 + local.tee $5 + select + i32.add + i32.load local.tee $2 - i32.eqz - br_if $block_16 - local.get $4 - local.get $2 - i32.store offset=16 + br_if $block_6 + i32.const 0 + local.set $5 + br $block_5 + end ;; $block_7 + local.get $1 + i32.load offset=8 + local.tee $2 + local.get $5 + i32.store offset=12 + local.get $5 + local.get $2 + i32.store offset=8 + br $block_5 + end ;; $block_6 + local.get $1 + i32.const 20 + i32.add + local.get $1 + i32.const 16 + i32.add + local.get $5 + select + local.set $6 + loop $loop + local.get $6 + local.set $7 + block $block_8 local.get $2 - local.get $4 - i32.store offset=24 - end ;; $block_16 + local.tee $5 + i32.const 20 + i32.add + local.tee $6 + i32.load + local.tee $2 + br_if $block_8 + local.get $5 + i32.const 16 + i32.add + local.set $6 + local.get $5 + i32.load offset=16 + local.set $2 + end ;; $block_8 + local.get $2 + br_if $loop + end ;; $loop + local.get $7 + i32.const 0 + i32.store + end ;; $block_5 + local.get $4 + i32.eqz + br_if $block_2 + block $block_9 + block $block_10 + local.get $1 + i32.load offset=28 + i32.const 2 + i32.shl + i32.const 1054960 + i32.add + local.tee $2 + i32.load + local.get $1 + i32.ne + br_if $block_10 + local.get $2 + local.get $5 + i32.store + local.get $5 + br_if $block_9 + i32.const 0 + i32.const 0 + i32.load offset=1054692 + i32.const -2 + local.get $1 + i32.load offset=28 + i32.rotl + i32.and + i32.store offset=1054692 + br $block_2 + end ;; $block_10 + local.get $4 + i32.const 16 + i32.const 20 + local.get $4 + i32.load offset=16 + local.get $1 + i32.eq + select + i32.add + local.get $5 + i32.store + local.get $5 + i32.eqz + br_if $block_2 + end ;; $block_9 + local.get $5 + local.get $4 + i32.store offset=24 + block $block_11 + local.get $1 + i32.load offset=16 + local.tee $2 + i32.eqz + br_if $block_11 + local.get $5 + local.get $2 + i32.store offset=16 + local.get $2 + local.get $5 + i32.store offset=24 + end ;; $block_11 + local.get $1 + i32.load offset=20 + local.tee $2 + i32.eqz + br_if $block_2 + local.get $5 + i32.const 20 + i32.add + local.get $2 + i32.store + local.get $2 + local.get $5 + i32.store offset=24 + br $block_2 + end ;; $block_4 + block $block_12 + local.get $1 + i32.load offset=12 + local.tee $5 + local.get $1 + i32.load offset=8 + local.tee $6 + i32.eq + br_if $block_12 + local.get $6 + local.get $5 + i32.store offset=12 + local.get $5 + local.get $6 + i32.store offset=8 + br $block_2 + end ;; $block_12 + i32.const 0 + i32.const 0 + i32.load offset=1054688 + i32.const -2 + local.get $2 + i32.const 3 + i32.shr_u + i32.rotl + i32.and + i32.store offset=1054688 + end ;; $block_2 + block $block_13 + block $block_14 + local.get $3 + i32.load offset=4 + local.tee $2 + i32.const 2 + i32.and + i32.eqz + br_if $block_14 + local.get $3 + local.get $2 + i32.const -2 + i32.and + i32.store offset=4 + local.get $1 + local.get $0 + i32.const 1 + i32.or + i32.store offset=4 + local.get $1 + local.get $0 + i32.add + local.get $0 + i32.store + br $block_13 + end ;; $block_14 + block $block_15 + block $block_16 + i32.const 0 + i32.load offset=1055100 + local.get $3 + i32.eq + br_if $block_16 + i32.const 0 + i32.load offset=1055096 + local.get $3 + i32.ne + br_if $block_15 + i32.const 0 + local.get $1 + i32.store offset=1055096 + i32.const 0 + i32.const 0 + i32.load offset=1055088 + local.get $0 + i32.add + local.tee $0 + i32.store offset=1055088 + local.get $1 + local.get $0 + i32.const 1 + i32.or + i32.store offset=4 + local.get $1 + local.get $0 + i32.add + local.get $0 + i32.store + return + end ;; $block_16 + i32.const 0 + local.get $1 + i32.store offset=1055100 + i32.const 0 + i32.const 0 + i32.load offset=1055092 + local.get $0 + i32.add + local.tee $0 + i32.store offset=1055092 + local.get $1 + local.get $0 + i32.const 1 + i32.or + i32.store offset=4 + block $block_17 + local.get $1 + i32.const 0 + i32.load offset=1055096 + i32.ne + br_if $block_17 + i32.const 0 + i32.const 0 + i32.store offset=1055088 + i32.const 0 + i32.const 0 + i32.store offset=1055096 + end ;; $block_17 + i32.const 0 + i32.load offset=1055128 + local.tee $2 + local.get $0 + i32.ge_u + br_if $block_1 + i32.const 0 + i32.load offset=1055100 + local.tee $0 + i32.eqz + br_if $block_1 + block $block_18 + i32.const 0 + i32.load offset=1055092 + local.tee $5 + i32.const 41 + i32.lt_u + br_if $block_18 + i32.const 1055112 + local.set $1 + loop $loop_0 + block $block_19 + local.get $1 + i32.load + local.tee $3 + local.get $0 + i32.gt_u + br_if $block_19 + local.get $3 + local.get $1 + i32.load offset=4 + i32.add + local.get $0 + i32.gt_u + br_if $block_18 + end ;; $block_19 local.get $1 - i32.load offset=20 - local.tee $2 - i32.eqz - br_if $block_5 - local.get $4 - i32.const 20 + i32.load offset=8 + local.tee $1 + br_if $loop_0 + end ;; $loop_0 + end ;; $block_18 + block $block_20 + block $block_21 + i32.const 0 + i32.load offset=1055120 + local.tee $0 + br_if $block_21 + i32.const 4095 + local.set $1 + br $block_20 + end ;; $block_21 + i32.const 0 + local.set $1 + loop $loop_1 + local.get $1 + i32.const 1 i32.add - local.get $2 - i32.store - local.get $2 - local.get $4 - i32.store offset=24 - end ;; $block_5 - local.get $3 - i32.load offset=4 - local.tee $2 - i32.const 2 - i32.and - br_if $block_3 - br $block_2 - end ;; $block_4 - i32.const 0 + local.set $1 + local.get $0 + i32.load offset=8 + local.tee $0 + br_if $loop_1 + end ;; $loop_1 + local.get $1 + i32.const 4095 + local.get $1 + i32.const 4095 + i32.gt_u + select + local.set $1 + end ;; $block_20 i32.const 0 - i32.load offset=1054580 - i32.const -2 local.get $1 - i32.const 28 - i32.add - i32.load - i32.rotl - i32.and - i32.store offset=1054580 - local.get $3 - i32.load offset=4 - local.tee $2 - i32.const 2 - i32.and - i32.eqz - br_if $block_2 - end ;; $block_3 - local.get $3 - i32.const 4 - i32.add + i32.store offset=1055136 + local.get $5 + local.get $2 + i32.le_u + br_if $block_1 + i32.const 0 + i32.const -1 + i32.store offset=1055128 + return + end ;; $block_15 local.get $2 - i32.const -2 + i32.const -8 i32.and - i32.store - local.get $1 - local.get $0 - i32.const 1 - i32.or - i32.store offset=4 - local.get $1 + local.tee $5 local.get $0 i32.add - local.get $0 - i32.store - br $block_1 - end ;; $block_2 - block $block_17 - block $block_18 - block $block_19 - block $block_20 - block $block_21 - block $block_22 - block $block_23 - block $block_24 - i32.const 0 - i32.load offset=1054988 - local.get $3 - i32.eq - br_if $block_24 - i32.const 0 - i32.load offset=1054984 - local.get $3 - i32.eq - br_if $block_23 - local.get $2 - i32.const -8 - i32.and - local.tee $4 - local.get $0 - i32.add - local.set $0 - local.get $4 - i32.const 255 - i32.gt_u - br_if $block_22 - local.get $3 - i32.load offset=12 - local.tee $4 - local.get $3 - i32.load offset=8 - local.tee $3 - i32.eq - br_if $block_20 - local.get $3 - local.get $4 - i32.store offset=12 - local.get $4 - local.get $3 - i32.store offset=8 - br $block_17 - end ;; $block_24 - i32.const 0 - local.get $1 - i32.store offset=1054988 - i32.const 0 - i32.const 0 - i32.load offset=1054980 - local.get $0 - i32.add - local.tee $0 - i32.store offset=1054980 - local.get $1 - local.get $0 - i32.const 1 - i32.or - i32.store offset=4 - local.get $1 - i32.const 0 - i32.load offset=1054984 - i32.eq - br_if $block_21 - i32.const 0 - local.set $1 - i32.const 0 - i32.load offset=1055016 - local.tee $2 - local.get $0 - i32.ge_u - br_if $block - br $block_0 - end ;; $block_23 - i32.const 0 - local.get $1 - i32.store offset=1054984 - i32.const 0 - i32.const 0 - i32.load offset=1054976 - local.get $0 - i32.add - local.tee $0 - i32.store offset=1054976 - local.get $1 - local.get $0 - i32.const 1 - i32.or - i32.store offset=4 - local.get $1 - local.get $0 + local.set $0 + block $block_22 + block $block_23 + local.get $5 + i32.const 256 + i32.lt_u + br_if $block_23 + local.get $3 + i32.load offset=24 + local.set $4 + block $block_24 + block $block_25 + block $block_26 + local.get $3 + i32.load offset=12 + local.tee $5 + local.get $3 + i32.ne + br_if $block_26 + local.get $3 + i32.const 20 + i32.const 16 + local.get $3 + i32.load offset=20 + local.tee $5 + select i32.add - local.get $0 - i32.store - return - end ;; $block_22 - local.get $3 - i32.load offset=24 - local.set $6 - local.get $3 - i32.load offset=12 - local.tee $4 - local.get $3 - i32.eq - br_if $block_19 + i32.load + local.tee $2 + br_if $block_25 + i32.const 0 + local.set $5 + br $block_24 + end ;; $block_26 local.get $3 i32.load offset=8 local.tee $2 - local.get $4 + local.get $5 i32.store offset=12 - local.get $4 + local.get $5 local.get $2 i32.store offset=8 + br $block_24 + end ;; $block_25 + local.get $3 + i32.const 20 + i32.add + local.get $3 + i32.const 16 + i32.add + local.get $5 + select + local.set $6 + loop $loop_2 local.get $6 - br_if $block_18 - br $block_17 - end ;; $block_21 - i32.const 0 - i32.const 0 - i32.store offset=1054976 - i32.const 0 - i32.const 0 - i32.store offset=1054984 - i32.const 0 - local.set $1 - i32.const 0 - i32.load offset=1055016 - local.tee $2 - local.get $0 - i32.lt_u - br_if $block_0 - br $block - end ;; $block_20 - i32.const 0 - i32.const 0 - i32.load offset=1054576 - i32.const -2 - local.get $2 - i32.const 3 - i32.shr_u - i32.rotl - i32.and - i32.store offset=1054576 - br $block_17 - end ;; $block_19 - block $block_25 - local.get $3 - i32.const 20 - i32.const 16 - local.get $3 - i32.load offset=20 - local.tee $4 - select - i32.add - i32.load - local.tee $2 - i32.eqz - br_if $block_25 - local.get $3 - i32.const 20 - i32.add - local.get $3 - i32.const 16 - i32.add - local.get $4 - select - local.set $5 - block $block_26 - loop $loop_0 - local.get $5 local.set $7 block $block_27 local.get $2 - local.tee $4 + local.tee $5 i32.const 20 i32.add - local.tee $5 + local.tee $6 i32.load local.tee $2 - i32.eqz br_if $block_27 - local.get $2 - br_if $loop_0 - br $block_26 + local.get $5 + i32.const 16 + i32.add + local.set $6 + local.get $5 + i32.load offset=16 + local.set $2 end ;; $block_27 - local.get $4 - i32.const 16 + local.get $2 + br_if $loop_2 + end ;; $loop_2 + local.get $7 + i32.const 0 + i32.store + end ;; $block_24 + local.get $4 + i32.eqz + br_if $block_22 + block $block_28 + block $block_29 + local.get $3 + i32.load offset=28 + i32.const 2 + i32.shl + i32.const 1054960 i32.add - local.set $5 - local.get $4 - i32.load offset=16 local.tee $2 - br_if $loop_0 - end ;; $loop_0 - end ;; $block_26 - local.get $7 - i32.const 0 - i32.store - local.get $6 - br_if $block_18 - br $block_17 - end ;; $block_25 - i32.const 0 - local.set $4 - local.get $6 - i32.eqz - br_if $block_17 - end ;; $block_18 - block $block_28 - block $block_29 - block $block_30 - local.get $3 - i32.load offset=28 - i32.const 2 - i32.shl - i32.const 1054848 - i32.add - local.tee $2 - i32.load - local.get $3 - i32.eq - br_if $block_30 - local.get $6 + i32.load + local.get $3 + i32.ne + br_if $block_29 + local.get $2 + local.get $5 + i32.store + local.get $5 + br_if $block_28 + i32.const 0 + i32.const 0 + i32.load offset=1054692 + i32.const -2 + local.get $3 + i32.load offset=28 + i32.rotl + i32.and + i32.store offset=1054692 + br $block_22 + end ;; $block_29 + local.get $4 i32.const 16 i32.const 20 - local.get $6 + local.get $4 i32.load offset=16 local.get $3 i32.eq select i32.add - local.get $4 + local.get $5 i32.store - local.get $4 - br_if $block_29 - br $block_17 - end ;; $block_30 - local.get $2 - local.get $4 - i32.store + local.get $5 + i32.eqz + br_if $block_22 + end ;; $block_28 + local.get $5 local.get $4 + i32.store offset=24 + block $block_30 + local.get $3 + i32.load offset=16 + local.tee $2 + i32.eqz + br_if $block_30 + local.get $5 + local.get $2 + i32.store offset=16 + local.get $2 + local.get $5 + i32.store offset=24 + end ;; $block_30 + local.get $3 + i32.load offset=20 + local.tee $3 i32.eqz - br_if $block_28 - end ;; $block_29 - local.get $4 - local.get $6 - i32.store offset=24 + br_if $block_22 + local.get $5 + i32.const 20 + i32.add + local.get $3 + i32.store + local.get $3 + local.get $5 + i32.store offset=24 + br $block_22 + end ;; $block_23 block $block_31 local.get $3 - i32.load offset=16 - local.tee $2 - i32.eqz + i32.load offset=12 + local.tee $5 + local.get $3 + i32.load offset=8 + local.tee $3 + i32.eq br_if $block_31 - local.get $4 - local.get $2 - i32.store offset=16 - local.get $2 - local.get $4 - i32.store offset=24 + local.get $3 + local.get $5 + i32.store offset=12 + local.get $5 + local.get $3 + i32.store offset=8 + br $block_22 end ;; $block_31 - local.get $3 - i32.load offset=20 - local.tee $3 - i32.eqz - br_if $block_17 - local.get $4 - i32.const 20 - i32.add - local.get $3 - i32.store - local.get $3 - local.get $4 - i32.store offset=24 - br $block_17 - end ;; $block_28 + i32.const 0 + i32.const 0 + i32.load offset=1054688 + i32.const -2 + local.get $2 + i32.const 3 + i32.shr_u + i32.rotl + i32.and + i32.store offset=1054688 + end ;; $block_22 + local.get $1 + local.get $0 + i32.const 1 + i32.or + i32.store offset=4 + local.get $1 + local.get $0 + i32.add + local.get $0 + i32.store + local.get $1 i32.const 0 + i32.load offset=1055096 + i32.ne + br_if $block_13 i32.const 0 - i32.load offset=1054580 - i32.const -2 - local.get $3 - i32.const 28 - i32.add - i32.load - i32.rotl - i32.and - i32.store offset=1054580 - end ;; $block_17 - local.get $1 - local.get $0 - i32.const 1 - i32.or - i32.store offset=4 - local.get $1 - local.get $0 - i32.add + local.get $0 + i32.store offset=1055088 + return + end ;; $block_13 local.get $0 - i32.store - local.get $1 - i32.const 0 - i32.load offset=1054984 - i32.ne - br_if $block_1 + i32.const 256 + i32.lt_u + br_if $block_0 i32.const 0 - local.get $0 - i32.store offset=1054976 - return - end ;; $block_1 - block $block_32 - block $block_33 - block $block_34 - block $block_35 - block $block_36 - block $block_37 - block $block_38 - block $block_39 - block $block_40 - local.get $0 - i32.const 255 - i32.gt_u - br_if $block_40 - local.get $0 - i32.const 3 - i32.shr_u - local.tee $3 - i32.const 3 - i32.shl - i32.const 1054584 - i32.add - local.set $0 - i32.const 0 - i32.load offset=1054576 - local.tee $2 - i32.const 1 - local.get $3 - i32.const 31 - i32.and - i32.shl - local.tee $3 - i32.and - i32.eqz - br_if $block_39 - local.get $0 - i32.load offset=8 - local.set $3 - br $block_38 - end ;; $block_40 - i32.const 0 - local.set $3 - block $block_41 - local.get $0 - i32.const 8 - i32.shr_u - local.tee $2 - i32.eqz - br_if $block_41 - i32.const 31 - local.set $3 - local.get $0 - i32.const 16777215 - i32.gt_u - br_if $block_41 - local.get $0 - i32.const 38 - local.get $2 - i32.clz - local.tee $3 - i32.sub - i32.const 31 - i32.and - i32.shr_u - i32.const 1 - i32.and - i32.const 31 - local.get $3 - i32.sub - i32.const 1 - i32.shl - i32.or - local.set $3 - end ;; $block_41 - local.get $1 - i64.const 0 - i64.store offset=16 align=4 - local.get $1 - i32.const 28 - i32.add - local.get $3 - i32.store - local.get $3 - i32.const 2 - i32.shl - i32.const 1054848 - i32.add - local.set $2 - i32.const 0 - i32.load offset=1054580 - local.tee $4 - i32.const 1 - local.get $3 - i32.const 31 - i32.and - i32.shl - local.tee $5 - i32.and - i32.eqz - br_if $block_37 - local.get $2 - i32.load - local.tee $4 - i32.load offset=4 - i32.const -8 - i32.and - local.get $0 - i32.ne - br_if $block_36 - local.get $4 - local.set $3 - br $block_35 - end ;; $block_39 + local.set $3 + block $block_32 + local.get $0 + i32.const 8 + i32.shr_u + local.tee $2 + i32.eqz + br_if $block_32 + i32.const 31 + local.set $3 + local.get $0 + i32.const 16777215 + i32.gt_u + br_if $block_32 + local.get $0 + i32.const 6 + local.get $2 + i32.clz + local.tee $3 + i32.sub + i32.const 31 + i32.and + i32.shr_u + i32.const 1 + i32.and + local.get $3 + i32.const 1 + i32.shl + i32.sub + i32.const 62 + i32.add + local.set $3 + end ;; $block_32 + local.get $1 + i64.const 0 + i64.store offset=16 align=4 + local.get $1 + i32.const 28 + i32.add + local.get $3 + i32.store + local.get $3 + i32.const 2 + i32.shl + i32.const 1054960 + i32.add + local.set $2 + block $block_33 + block $block_34 + block $block_35 + block $block_36 + block $block_37 + block $block_38 i32.const 0 - local.get $2 + i32.load offset=1054692 + local.tee $5 + i32.const 1 local.get $3 - i32.or - i32.store offset=1054576 + i32.const 31 + i32.and + i32.shl + local.tee $6 + i32.and + i32.eqz + br_if $block_38 + local.get $2 + i32.load + local.tee $5 + i32.load offset=4 + i32.const -8 + i32.and local.get $0 + i32.ne + br_if $block_37 + local.get $5 local.set $3 + br $block_36 end ;; $block_38 - local.get $0 - local.get $1 - i32.store offset=8 - local.get $3 - local.get $1 - i32.store offset=12 + i32.const 0 + local.get $5 + local.get $6 + i32.or + i32.store offset=1054692 + local.get $2 local.get $1 - local.get $0 - i32.store offset=12 + i32.store local.get $1 - local.get $3 - i32.store offset=8 - return + i32.const 24 + i32.add + local.get $2 + i32.store + br $block_34 end ;; $block_37 + local.get $0 i32.const 0 - local.get $4 - local.get $5 - i32.or - i32.store offset=1054580 - local.get $2 - local.get $1 - i32.store - local.get $1 - i32.const 24 - i32.add - local.get $2 - i32.store - br $block_33 - end ;; $block_36 - local.get $0 - i32.const 0 - i32.const 25 - local.get $3 - i32.const 1 - i32.shr_u - i32.sub - i32.const 31 - i32.and - local.get $3 - i32.const 31 - i32.eq - select - i32.shl - local.set $2 - loop $loop_1 - local.get $4 - local.get $2 - i32.const 29 + i32.const 25 + local.get $3 + i32.const 1 i32.shr_u - i32.const 4 + i32.sub + i32.const 31 i32.and - i32.add - i32.const 16 - i32.add - local.tee $5 - i32.load - local.tee $3 - i32.eqz - br_if $block_34 - local.get $2 - i32.const 1 + local.get $3 + i32.const 31 + i32.eq + select i32.shl local.set $2 - local.get $3 - local.set $4 - local.get $3 - i32.load offset=4 - i32.const -8 - i32.and - local.get $0 - i32.ne - br_if $loop_1 - end ;; $loop_1 + loop $loop_3 + local.get $5 + local.get $2 + i32.const 29 + i32.shr_u + i32.const 4 + i32.and + i32.add + i32.const 16 + i32.add + local.tee $6 + i32.load + local.tee $3 + i32.eqz + br_if $block_35 + local.get $2 + i32.const 1 + i32.shl + local.set $2 + local.get $3 + local.set $5 + local.get $3 + i32.load offset=4 + i32.const -8 + i32.and + local.get $0 + i32.ne + br_if $loop_3 + end ;; $loop_3 + end ;; $block_36 + local.get $3 + i32.load offset=8 + local.tee $0 + local.get $1 + i32.store offset=12 + local.get $3 + local.get $1 + i32.store offset=8 + local.get $1 + i32.const 24 + i32.add + i32.const 0 + i32.store + local.get $1 + local.get $3 + i32.store offset=12 + local.get $1 + local.get $0 + i32.store offset=8 + br $block_33 end ;; $block_35 - local.get $3 - i32.load offset=8 - local.tee $0 - local.get $1 - i32.store offset=12 - local.get $3 + local.get $6 local.get $1 - i32.store offset=8 + i32.store local.get $1 i32.const 24 i32.add - i32.const 0 + local.get $5 i32.store - local.get $1 - local.get $3 - i32.store offset=12 - local.get $1 - local.get $0 - i32.store offset=8 - br $block_32 end ;; $block_34 - local.get $5 - local.get $1 - i32.store - local.get $1 - i32.const 24 - i32.add - local.get $4 - i32.store - end ;; $block_33 - local.get $1 - local.get $1 - i32.store offset=12 - local.get $1 - local.get $1 - i32.store offset=8 - end ;; $block_32 - i32.const 0 - i32.const 0 - i32.load offset=1055024 - i32.const -1 - i32.add - local.tee $1 - i32.store offset=1055024 - local.get $1 - br_if $block - block $block_42 - i32.const 0 - i32.load offset=1055008 - local.tee $0 - i32.eqz - br_if $block_42 - i32.const 0 - local.set $1 - loop $loop_2 - local.get $1 - i32.const 1 - i32.add - local.set $1 - local.get $0 - i32.load offset=8 - local.tee $0 - br_if $loop_2 - end ;; $loop_2 - i32.const 0 - local.get $1 - i32.const 4095 - local.get $1 - i32.const 4095 - i32.gt_u - select - i32.store offset=1055024 - return - end ;; $block_42 - i32.const 0 - i32.const 4095 - i32.store offset=1055024 - return - end ;; $block_0 - local.get $1 - i32.load offset=1054988 - local.tee $0 - i32.eqz - br_if $block - block $block_43 - i32.const 0 - i32.load offset=1054980 - local.tee $4 - i32.const 41 - i32.lt_u - br_if $block_43 - i32.const 1055000 - local.set $1 - loop $loop_3 - block $block_44 local.get $1 - i32.load - local.tee $3 - local.get $0 - i32.gt_u - br_if $block_44 - local.get $3 local.get $1 - i32.load offset=4 - i32.add - local.get $0 - i32.gt_u - br_if $block_43 - end ;; $block_44 - local.get $1 - i32.load offset=8 - local.tee $1 - br_if $loop_3 - end ;; $loop_3 - end ;; $block_43 - block $block_45 - block $block_46 - i32.const 0 - i32.load offset=1055008 - local.tee $0 - i32.eqz - br_if $block_46 - i32.const 0 - local.set $1 - loop $loop_4 + i32.store offset=12 local.get $1 - i32.const 1 - i32.add - local.set $1 - local.get $0 - i32.load offset=8 - local.tee $0 - br_if $loop_4 - end ;; $loop_4 + local.get $1 + i32.store offset=8 + end ;; $block_33 i32.const 0 - local.set $0 i32.const 0 + i32.load offset=1055136 + i32.const -1 + i32.add + local.tee $1 + i32.store offset=1055136 local.get $1 - i32.const 4095 - local.get $1 - i32.const 4095 - i32.gt_u - select - i32.store offset=1055024 - local.get $4 - local.get $2 - i32.gt_u - br_if $block_45 - br $block - end ;; $block_46 - i32.const 0 - local.set $0 + i32.eqz + br_if $block + end ;; $block_1 + return + end ;; $block_0 + local.get $0 + i32.const 3 + i32.shr_u + local.tee $3 + i32.const 3 + i32.shl + i32.const 1054696 + i32.add + local.set $0 + block $block_39 + block $block_40 + i32.const 0 + i32.load offset=1054688 + local.tee $2 + i32.const 1 + local.get $3 + i32.const 31 + i32.and + i32.shl + local.tee $3 + i32.and + i32.eqz + br_if $block_40 + local.get $0 + i32.load offset=8 + local.set $3 + br $block_39 + end ;; $block_40 i32.const 0 - i32.const 4095 - i32.store offset=1055024 - local.get $4 local.get $2 - i32.le_u - br_if $block - end ;; $block_45 + local.get $3 + i32.or + i32.store offset=1054688 + local.get $0 + local.set $3 + end ;; $block_39 local.get $0 - i32.const -1 - i32.store offset=1055016 + local.get $1 + i32.store offset=8 + local.get $3 + local.get $1 + i32.store offset=12 + local.get $1 + local.get $0 + i32.store offset=12 + local.get $1 + local.get $3 + i32.store offset=8 return end ;; $block - ) - - (func $__rdl_realloc (type $2) - (param $0 i32) - (param $1 i32) - (result i32) - (local $2 i32) - (local $3 i32) - (local $4 i32) - (local $5 i32) - (local $6 i32) - (local $7 i32) - (local $8 i32) - (local $9 i32) - (local $10 i32) - (local $11 i32) - i32.const 0 - local.set $2 - block $block - block $block_0 - block $block_1 - block $block_2 - block $block_3 - block $block_4 - block $block_5 - block $block_6 - block $block_7 - local.get $1 - i32.const -65588 - i32.gt_u - br_if $block_7 - i32.const 16 - local.get $1 - i32.const 11 - i32.add - i32.const -8 - i32.and - local.get $1 - i32.const 11 - i32.lt_u - select - local.set $3 - local.get $0 - i32.const -4 - i32.add - local.tee $4 - i32.load - local.tee $5 - i32.const -8 - i32.and - local.set $6 - block $block_8 - block $block_9 - block $block_10 - block $block_11 - block $block_12 - local.get $5 - i32.const 3 - i32.and - i32.eqz - br_if $block_12 - local.get $0 - i32.const -8 - i32.add - local.tee $7 - local.get $6 - i32.add - local.set $8 - local.get $6 - local.get $3 - i32.ge_u - br_if $block_11 - i32.const 0 - i32.load offset=1054988 - local.get $8 - i32.eq - br_if $block_10 - i32.const 0 - i32.load offset=1054984 - local.get $8 - i32.eq - br_if $block_9 - local.get $8 - i32.load offset=4 - local.tee $5 - i32.const 2 - i32.and - br_if $block_8 - local.get $5 - i32.const -8 - i32.and - local.tee $9 - local.get $6 - i32.add - local.tee $10 - local.get $3 - i32.lt_u - br_if $block_8 - local.get $10 - local.get $3 - i32.sub - local.set $11 - local.get $9 - i32.const 255 - i32.gt_u - br_if $block_5 - local.get $8 - i32.load offset=12 - local.tee $1 - local.get $8 - i32.load offset=8 - local.tee $2 - i32.eq - br_if $block_4 - local.get $2 - local.get $1 - i32.store offset=12 - local.get $1 - local.get $2 - i32.store offset=8 - local.get $11 - i32.const 15 - i32.le_u - br_if $block_0 - br $block - end ;; $block_12 - local.get $3 - i32.const 256 - i32.lt_u - br_if $block_8 - local.get $6 - local.get $3 - i32.const 4 - i32.or - i32.lt_u - br_if $block_8 - local.get $6 - local.get $3 - i32.sub - i32.const 131073 - i32.ge_u - br_if $block_8 - local.get $0 - return - end ;; $block_11 - block $block_13 - local.get $6 - local.get $3 - i32.sub - local.tee $1 - i32.const 16 - i32.ge_u - br_if $block_13 - local.get $0 - return - end ;; $block_13 - local.get $4 - local.get $3 - local.get $5 - i32.const 1 - i32.and - i32.or - i32.const 2 - i32.or - i32.store - local.get $7 - local.get $3 - i32.add - local.tee $2 - local.get $1 - i32.const 3 - i32.or - i32.store offset=4 - local.get $8 - local.get $8 - i32.load offset=4 - i32.const 1 - i32.or - i32.store offset=4 - local.get $2 - local.get $1 - call $dlmalloc::dlmalloc::Dlmalloc::dispose_chunk::h08c63a089677cf87 - local.get $0 - return - end ;; $block_10 - i32.const 0 - i32.load offset=1054980 - local.get $6 - i32.add - local.tee $6 - local.get $3 - i32.le_u - br_if $block_8 - local.get $4 - local.get $3 - local.get $5 - i32.const 1 - i32.and - i32.or - i32.const 2 - i32.or - i32.store - local.get $7 - local.get $3 - i32.add - local.tee $1 - local.get $6 - local.get $3 - i32.sub - local.tee $2 - i32.const 1 - i32.or - i32.store offset=4 - i32.const 0 - local.get $2 - i32.store offset=1054980 - i32.const 0 - local.get $1 - i32.store offset=1054988 - local.get $0 - return - end ;; $block_9 - i32.const 0 - i32.load offset=1054976 - local.get $6 - i32.add - local.tee $6 - local.get $3 - i32.ge_u - br_if $block_6 - end ;; $block_8 - local.get $1 - call $dlmalloc::dlmalloc::Dlmalloc::malloc::h7ef7d8a98d4afe8d - local.tee $3 - i32.eqz - br_if $block_7 - local.get $3 - local.get $0 - local.get $1 - local.get $4 - i32.load - local.tee $2 - i32.const -8 - i32.and - i32.const 4 - i32.const 8 - local.get $2 - i32.const 3 - i32.and - select - i32.sub - local.tee $2 - local.get $2 - local.get $1 - i32.gt_u - select - call $memcpy - local.set $1 - local.get $0 - call $dlmalloc::dlmalloc::Dlmalloc::free::he25d64d2cc54b15f - local.get $1 - local.set $2 - end ;; $block_7 - local.get $2 - return - end ;; $block_6 - block $block_14 - block $block_15 - local.get $6 - local.get $3 - i32.sub - local.tee $1 - i32.const 16 - i32.ge_u - br_if $block_15 - local.get $4 - local.get $5 - i32.const 1 - i32.and - local.get $6 - i32.or - i32.const 2 - i32.or - i32.store - local.get $7 - local.get $6 - i32.add - local.tee $1 - local.get $1 - i32.load offset=4 - i32.const 1 - i32.or - i32.store offset=4 - i32.const 0 - local.set $1 - i32.const 0 - local.set $2 - br $block_14 - end ;; $block_15 - local.get $4 - local.get $3 + block $block_41 + block $block_42 + i32.const 0 + i32.load offset=1055120 + local.tee $0 + br_if $block_42 + i32.const 4095 + local.set $1 + br $block_41 + end ;; $block_42 + i32.const 0 + local.set $1 + loop $loop_4 + local.get $1 + i32.const 1 + i32.add + local.set $1 + local.get $0 + i32.load offset=8 + local.tee $0 + br_if $loop_4 + end ;; $loop_4 + local.get $1 + i32.const 4095 + local.get $1 + i32.const 4095 + i32.gt_u + select + local.set $1 + end ;; $block_41 + i32.const 0 + local.get $1 + i32.store offset=1055136 + ) + + (func $__rdl_realloc (type $2) + (param $0 i32) + (param $1 i32) + (result i32) + (local $2 i32) + (local $3 i32) + (local $4 i32) + (local $5 i32) + (local $6 i32) + (local $7 i32) + (local $8 i32) + (local $9 i32) + (local $10 i32) + (local $11 i32) + i32.const 0 + local.set $2 + block $block + local.get $1 + i32.const -65588 + i32.gt_u + br_if $block + i32.const 16 + local.get $1 + i32.const 11 + i32.add + i32.const -8 + i32.and + local.get $1 + i32.const 11 + i32.lt_u + select + local.set $3 + local.get $0 + i32.const -4 + i32.add + local.tee $4 + i32.load + local.tee $5 + i32.const -8 + i32.and + local.set $6 + block $block_0 + block $block_1 + block $block_2 + block $block_3 + block $block_4 + block $block_5 + block $block_6 local.get $5 - i32.const 1 + i32.const 3 i32.and - i32.or - i32.const 2 - i32.or - i32.store - local.get $7 + i32.eqz + br_if $block_6 + local.get $0 + i32.const -8 + i32.add + local.tee $7 + local.get $6 + i32.add + local.set $8 + local.get $6 local.get $3 + i32.ge_u + br_if $block_5 + i32.const 0 + i32.load offset=1055100 + local.get $8 + i32.eq + br_if $block_4 + i32.const 0 + i32.load offset=1055096 + local.get $8 + i32.eq + br_if $block_3 + local.get $8 + i32.load offset=4 + local.tee $5 + i32.const 2 + i32.and + br_if $block_0 + local.get $5 + i32.const -8 + i32.and + local.tee $9 + local.get $6 i32.add + local.tee $10 + local.get $3 + i32.ge_u + br_if $block_2 + br $block_0 + end ;; $block_6 + local.get $3 + i32.const 256 + i32.lt_u + br_if $block_0 + local.get $6 + local.get $3 + i32.const 4 + i32.or + i32.lt_u + br_if $block_0 + local.get $6 + local.get $3 + i32.sub + i32.const 131073 + i32.ge_u + br_if $block_0 + br $block_1 + end ;; $block_5 + local.get $6 + local.get $3 + i32.sub + local.tee $1 + i32.const 16 + i32.lt_u + br_if $block_1 + local.get $4 + local.get $3 + local.get $5 + i32.const 1 + i32.and + i32.or + i32.const 2 + i32.or + i32.store + local.get $7 + local.get $3 + i32.add + local.tee $2 + local.get $1 + i32.const 3 + i32.or + i32.store offset=4 + local.get $8 + local.get $8 + i32.load offset=4 + i32.const 1 + i32.or + i32.store offset=4 + local.get $2 + local.get $1 + call $dlmalloc::dlmalloc::Dlmalloc::dispose_chunk::h1effa892c850b7b3 + br $block_1 + end ;; $block_4 + i32.const 0 + i32.load offset=1055092 + local.get $6 + i32.add + local.tee $6 + local.get $3 + i32.le_u + br_if $block_0 + local.get $4 + local.get $3 + local.get $5 + i32.const 1 + i32.and + i32.or + i32.const 2 + i32.or + i32.store + local.get $7 + local.get $3 + i32.add + local.tee $1 + local.get $6 + local.get $3 + i32.sub + local.tee $2 + i32.const 1 + i32.or + i32.store offset=4 + i32.const 0 + local.get $2 + i32.store offset=1055092 + i32.const 0 + local.get $1 + i32.store offset=1055100 + br $block_1 + end ;; $block_3 + i32.const 0 + i32.load offset=1055088 + local.get $6 + i32.add + local.tee $6 + local.get $3 + i32.lt_u + br_if $block_0 + block $block_7 + block $block_8 + local.get $6 + local.get $3 + i32.sub + local.tee $1 + i32.const 15 + i32.gt_u + br_if $block_8 + local.get $4 + local.get $5 + i32.const 1 + i32.and + local.get $6 + i32.or + i32.const 2 + i32.or + i32.store + local.get $7 + local.get $6 + i32.add + local.tee $1 + local.get $1 + i32.load offset=4 + i32.const 1 + i32.or + i32.store offset=4 + i32.const 0 + local.set $1 + i32.const 0 + local.set $2 + br $block_7 + end ;; $block_8 + local.get $4 + local.get $3 + local.get $5 + i32.const 1 + i32.and + i32.or + i32.const 2 + i32.or + i32.store + local.get $7 + local.get $3 + i32.add + local.tee $2 + local.get $1 + i32.const 1 + i32.or + i32.store offset=4 + local.get $7 + local.get $6 + i32.add + local.tee $3 + local.get $1 + i32.store + local.get $3 + local.get $3 + i32.load offset=4 + i32.const -2 + i32.and + i32.store offset=4 + end ;; $block_7 + i32.const 0 + local.get $2 + i32.store offset=1055096 + i32.const 0 + local.get $1 + i32.store offset=1055088 + br $block_1 + end ;; $block_2 + local.get $10 + local.get $3 + i32.sub + local.set $11 + block $block_9 + block $block_10 + local.get $9 + i32.const 256 + i32.lt_u + br_if $block_10 + local.get $8 + i32.load offset=24 + local.set $9 + block $block_11 + block $block_12 + block $block_13 + local.get $8 + i32.load offset=12 local.tee $2 - local.get $1 - i32.const 1 - i32.or - i32.store offset=4 - local.get $7 - local.get $6 + local.get $8 + i32.ne + br_if $block_13 + local.get $8 + i32.const 20 + i32.const 16 + local.get $8 + i32.load offset=20 + local.tee $2 + select i32.add - local.tee $3 - local.get $1 - i32.store - local.get $3 - local.get $3 - i32.load offset=4 - i32.const -2 - i32.and - i32.store offset=4 - end ;; $block_14 - i32.const 0 + i32.load + local.tee $1 + br_if $block_12 + i32.const 0 + local.set $2 + br $block_11 + end ;; $block_13 + local.get $8 + i32.load offset=8 + local.tee $1 + local.get $2 + i32.store offset=12 local.get $2 - i32.store offset=1054984 - i32.const 0 local.get $1 - i32.store offset=1054976 - local.get $0 - return - end ;; $block_5 - local.get $8 - i32.load offset=24 - local.set $9 - local.get $8 - i32.load offset=12 - local.tee $2 + i32.store offset=8 + br $block_11 + end ;; $block_12 local.get $8 - i32.eq - br_if $block_3 + i32.const 20 + i32.add local.get $8 - i32.load offset=8 - local.tee $1 - local.get $2 - i32.store offset=12 + i32.const 16 + i32.add local.get $2 - local.get $1 - i32.store offset=8 - local.get $9 - br_if $block_2 - br $block_1 - end ;; $block_4 - i32.const 0 - i32.const 0 - i32.load offset=1054576 - i32.const -2 - local.get $5 - i32.const 3 - i32.shr_u - i32.rotl - i32.and - i32.store offset=1054576 - local.get $11 - i32.const 15 - i32.le_u - br_if $block_0 - br $block - end ;; $block_3 - block $block_16 - local.get $8 - i32.const 20 - i32.const 16 - local.get $8 - i32.load offset=20 - local.tee $2 - select - i32.add - i32.load - local.tee $1 - i32.eqz - br_if $block_16 - local.get $8 - i32.const 20 - i32.add - local.get $8 - i32.const 16 - i32.add - local.get $2 - select - local.set $6 - loop $loop - local.get $6 - local.set $5 - block $block_17 + select + local.set $6 + loop $loop + local.get $6 + local.set $5 + block $block_14 + local.get $1 + local.tee $2 + i32.const 20 + i32.add + local.tee $6 + i32.load + local.tee $1 + br_if $block_14 + local.get $2 + i32.const 16 + i32.add + local.set $6 + local.get $2 + i32.load offset=16 + local.set $1 + end ;; $block_14 local.get $1 - local.tee $2 - i32.const 20 + br_if $loop + end ;; $loop + local.get $5 + i32.const 0 + i32.store + end ;; $block_11 + local.get $9 + i32.eqz + br_if $block_9 + block $block_15 + block $block_16 + local.get $8 + i32.load offset=28 + i32.const 2 + i32.shl + i32.const 1054960 i32.add - local.tee $6 - i32.load local.tee $1 - br_if $block_17 + i32.load + local.get $8 + i32.ne + br_if $block_16 + local.get $1 local.get $2 - i32.const 16 - i32.add - local.set $6 + i32.store local.get $2 - i32.load offset=16 - local.set $1 - end ;; $block_17 - local.get $1 - br_if $loop - end ;; $loop - local.get $5 - i32.const 0 - i32.store - local.get $9 - br_if $block_2 - br $block_1 - end ;; $block_16 - i32.const 0 - local.set $2 - local.get $9 - i32.eqz - br_if $block_1 - end ;; $block_2 - block $block_18 - block $block_19 - block $block_20 - local.get $8 - i32.load offset=28 - i32.const 2 - i32.shl - i32.const 1054848 - i32.add - local.tee $1 - i32.load - local.get $8 - i32.eq - br_if $block_20 + br_if $block_15 + i32.const 0 + i32.const 0 + i32.load offset=1054692 + i32.const -2 + local.get $8 + i32.load offset=28 + i32.rotl + i32.and + i32.store offset=1054692 + br $block_9 + end ;; $block_16 local.get $9 i32.const 16 i32.const 20 @@ -8919,131 +8263,172 @@ local.get $2 i32.store local.get $2 - br_if $block_19 - br $block_1 - end ;; $block_20 - local.get $1 - local.get $2 - i32.store + i32.eqz + br_if $block_9 + end ;; $block_15 local.get $2 - i32.eqz - br_if $block_18 - end ;; $block_19 - local.get $2 - local.get $9 - i32.store offset=24 - block $block_21 + local.get $9 + i32.store offset=24 + block $block_17 + local.get $8 + i32.load offset=16 + local.tee $1 + i32.eqz + br_if $block_17 + local.get $2 + local.get $1 + i32.store offset=16 + local.get $1 + local.get $2 + i32.store offset=24 + end ;; $block_17 local.get $8 - i32.load offset=16 + i32.load offset=20 local.tee $1 i32.eqz - br_if $block_21 + br_if $block_9 local.get $2 + i32.const 20 + i32.add local.get $1 - i32.store offset=16 + i32.store local.get $1 local.get $2 i32.store offset=24 - end ;; $block_21 - local.get $8 - i32.load offset=20 + br $block_9 + end ;; $block_10 + block $block_18 + local.get $8 + i32.load offset=12 + local.tee $1 + local.get $8 + i32.load offset=8 + local.tee $2 + i32.eq + br_if $block_18 + local.get $2 + local.get $1 + i32.store offset=12 + local.get $1 + local.get $2 + i32.store offset=8 + br $block_9 + end ;; $block_18 + i32.const 0 + i32.const 0 + i32.load offset=1054688 + i32.const -2 + local.get $5 + i32.const 3 + i32.shr_u + i32.rotl + i32.and + i32.store offset=1054688 + end ;; $block_9 + block $block_19 + local.get $11 + i32.const 16 + i32.lt_u + br_if $block_19 + local.get $4 + local.get $3 + local.get $4 + i32.load + i32.const 1 + i32.and + i32.or + i32.const 2 + i32.or + i32.store + local.get $7 + local.get $3 + i32.add local.tee $1 - i32.eqz - br_if $block_1 - local.get $2 - i32.const 20 + local.get $11 + i32.const 3 + i32.or + i32.store offset=4 + local.get $7 + local.get $10 i32.add - local.get $1 - i32.store - local.get $1 + local.tee $2 local.get $2 - i32.store offset=24 + i32.load offset=4 + i32.const 1 + i32.or + i32.store offset=4 + local.get $1 local.get $11 - i32.const 15 - i32.le_u - br_if $block_0 - br $block - end ;; $block_18 - i32.const 0 - i32.const 0 - i32.load offset=1054580 - i32.const -2 - local.get $8 - i32.const 28 - i32.add + call $dlmalloc::dlmalloc::Dlmalloc::dispose_chunk::h1effa892c850b7b3 + br $block_1 + end ;; $block_19 + local.get $4 + local.get $10 + local.get $4 i32.load - i32.rotl + i32.const 1 i32.and - i32.store offset=1054580 + i32.or + i32.const 2 + i32.or + i32.store + local.get $7 + local.get $10 + i32.add + local.tee $1 + local.get $1 + i32.load offset=4 + i32.const 1 + i32.or + i32.store offset=4 end ;; $block_1 - local.get $11 - i32.const 15 - i32.gt_u - br_if $block + local.get $0 + local.set $2 + br $block end ;; $block_0 - local.get $4 - local.get $10 + local.get $1 + call $dlmalloc::dlmalloc::Dlmalloc::malloc::hec92e476cdfbbd60 + local.tee $3 + i32.eqz + br_if $block + local.get $3 + local.get $0 + local.get $1 local.get $4 i32.load - i32.const 1 + local.tee $2 + i32.const -8 i32.and - i32.or - i32.const 2 - i32.or - i32.store - local.get $7 - local.get $10 - i32.add - local.tee $1 + i32.const 4 + i32.const 8 + local.get $2 + i32.const 3 + i32.and + select + i32.sub + local.tee $2 + local.get $2 local.get $1 - i32.load offset=4 - i32.const 1 - i32.or - i32.store offset=4 + i32.gt_u + select + call $memcpy + local.set $1 local.get $0 + call $dlmalloc::dlmalloc::Dlmalloc::free::h6ea6f2ba0e2c950d + local.get $1 return end ;; $block - local.get $4 - local.get $3 - local.get $4 - i32.load - i32.const 1 - i32.and - i32.or - i32.const 2 - i32.or - i32.store - local.get $7 - local.get $3 - i32.add - local.tee $1 - local.get $11 - i32.const 3 - i32.or - i32.store offset=4 - local.get $7 - local.get $10 - i32.add - local.tee $2 local.get $2 - i32.load offset=4 - i32.const 1 - i32.or - i32.store offset=4 - local.get $1 - local.get $11 - call $dlmalloc::dlmalloc::Dlmalloc::dispose_chunk::h08c63a089677cf87 - local.get $0 ) - (func $rust_begin_unwind (type $6) + (func $rust_begin_unwind (type $5) (param $0 i32) local.get $0 - call $std::panicking::continue_panic_fmt::he2d0fc2a935878af + call $std::panicking::continue_panic_fmt::he42d474e4cddb3a9 unreachable ) - (func $core::slice::slice_index_len_fail::hb115deb2b20f49d8 (type $0) + (func $core::slice::slice_index_len_fail::h7c242876dcc4f7b2 (type $0) (param $0 i32) (param $1 i32) (local $2 i32) @@ -9059,25 +8444,30 @@ local.get $0 i32.store local.get $2 - i32.const 44 - i32.add - i32.const 6 - i32.store - local.get $2 i32.const 28 i32.add i32.const 2 i32.store local.get $2 + i32.const 44 + i32.add i32.const 6 - i32.store offset=36 + i32.store local.get $2 i64.const 2 i64.store offset=12 align=4 local.get $2 - i32.const 1049388 + i32.const 1049384 i32.store offset=8 local.get $2 + i32.const 6 + i32.store offset=36 + local.get $2 + local.get $2 + i32.const 32 + i32.add + i32.store offset=24 + local.get $2 local.get $2 i32.const 4 i32.add @@ -9086,29 +8476,60 @@ local.get $2 i32.store offset=32 local.get $2 - local.get $2 - i32.const 32 - i32.add - i32.store offset=24 - local.get $2 i32.const 8 i32.add - i32.const 1049404 - call $core::panicking::panic_fmt::hc4f83bfed80aeabd + i32.const 1049400 + call $core::panicking::panic_fmt::h772cfe55da576359 unreachable ) - (func $core::fmt::num::imp::::fmt::h4f3293445fab7cb7 (type $2) + (func $core::fmt::num::imp::::fmt::h0a73e93540d1767b (type $2) (param $0 i32) (param $1 i32) (result i32) local.get $0 i64.load32_u local.get $1 - call $core::fmt::num::imp::fmt_u64::h4648b2300e699242 + call $core::fmt::num::imp::fmt_u64::hbf92ea5b56adc693 + ) + + (func $core::panicking::panic_fmt::h772cfe55da576359 (type $0) + (param $0 i32) + (param $1 i32) + (local $2 i32) + (local $3 i64) + global.get $15 + i32.const 32 + i32.sub + local.tee $2 + global.set $15 + local.get $1 + i64.load align=4 + local.set $3 + local.get $2 + i32.const 20 + i32.add + local.get $1 + i64.load offset=8 align=4 + i64.store align=4 + local.get $2 + local.get $3 + i64.store offset=12 align=4 + local.get $2 + local.get $0 + i32.store offset=8 + local.get $2 + i32.const 1049116 + i32.store offset=4 + local.get $2 + i32.const 1049116 + i32.store + local.get $2 + call $rust_begin_unwind + unreachable ) - (func $core::panicking::panic_bounds_check::h51667a9f831439a7 (type $4) + (func $core::panicking::panic_bounds_check::hb65bbcdf415380e4 (type $3) (param $0 i32) (param $1 i32) (param $2 i32) @@ -9125,142 +8546,141 @@ local.get $1 i32.store local.get $3 - i32.const 44 - i32.add - i32.const 6 - i32.store - local.get $3 i32.const 28 i32.add i32.const 2 i32.store local.get $3 + i32.const 44 + i32.add i32.const 6 - i32.store offset=36 + i32.store local.get $3 i64.const 2 i64.store offset=12 align=4 local.get $3 - i32.const 1049104 + i32.const 1049100 i32.store offset=8 local.get $3 + i32.const 6 + i32.store offset=36 local.get $3 - i32.store offset=40 - local.get $3 - local.get $3 - i32.const 4 - i32.add - i32.store offset=32 - local.get $3 - local.get $3 - i32.const 32 - i32.add - i32.store offset=24 local.get $3 - i32.const 8 - i32.add - local.get $0 - call $core::panicking::panic_fmt::hc4f83bfed80aeabd - unreachable - ) - - (func $core::fmt::num::imp::fmt_u64::h4648b2300e699242 (type $8) - (param $0 i64) - (param $1 i32) - (result i32) - (local $2 i32) - (local $3 i32) - (local $4 i32) - (local $5 i64) - (local $6 i32) - (local $7 i32) - global.get $15 - i32.const 48 - i32.sub - local.tee $2 - global.set $15 - i32.const 39 - local.set $3 - block $block - block $block_0 - block $block_1 - local.get $0 - i64.const 10000 - i64.lt_u - br_if $block_1 - i32.const 39 - local.set $3 - loop $loop - local.get $2 - i32.const 9 - i32.add - local.get $3 - i32.add - local.tee $4 - i32.const -4 - i32.add - local.get $0 - local.get $0 - i64.const 10000 - i64.div_u - local.tee $5 - i64.const -10000 - i64.mul - i64.add - i32.wrap_i64 - local.tee $6 - i32.const 100 - i32.div_u - local.tee $7 - i32.const 1 - i32.shl - i32.const 1049186 - i32.add - i32.load16_u align=1 - i32.store16 align=1 - local.get $4 - i32.const -2 - i32.add - local.get $7 - i32.const -100 - i32.mul - local.get $6 - i32.add - i32.const 1 - i32.shl - i32.const 1049186 - i32.add - i32.load16_u align=1 - i32.store16 align=1 - local.get $3 - i32.const -4 - i32.add - local.set $3 - local.get $0 - i64.const 99999999 - i64.gt_u - local.set $4 - local.get $5 - local.set $0 - local.get $4 - br_if $loop - end ;; $loop - local.get $5 - i32.wrap_i64 - local.tee $4 - i32.const 99 - i32.le_s - br_if $block - br $block_0 - end ;; $block_1 + i32.const 32 + i32.add + i32.store offset=24 + local.get $3 + local.get $3 + i32.store offset=40 + local.get $3 + local.get $3 + i32.const 4 + i32.add + i32.store offset=32 + local.get $3 + i32.const 8 + i32.add + local.get $0 + call $core::panicking::panic_fmt::h772cfe55da576359 + unreachable + ) + + (func $core::fmt::num::imp::fmt_u64::hbf92ea5b56adc693 (type $9) + (param $0 i64) + (param $1 i32) + (result i32) + (local $2 i32) + (local $3 i32) + (local $4 i64) + (local $5 i32) + (local $6 i32) + (local $7 i32) + global.get $15 + i32.const 48 + i32.sub + local.tee $2 + global.set $15 + i32.const 39 + local.set $3 + block $block + block $block_0 local.get $0 + i64.const 10000 + i64.ge_u + br_if $block_0 + local.get $0 + local.set $4 + br $block + end ;; $block_0 + i32.const 39 + local.set $3 + loop $loop + local.get $2 + i32.const 9 + i32.add + local.get $3 + i32.add local.tee $5 - i32.wrap_i64 + i32.const -4 + i32.add + local.get $0 + local.get $0 + i64.const 10000 + i64.div_u local.tee $4 - i32.const 99 - i32.le_s - br_if $block - end ;; $block_0 + i64.const -10000 + i64.mul + i64.add + i32.wrap_i64 + local.tee $6 + i32.const 65535 + i32.and + i32.const 100 + i32.div_u + local.tee $7 + i32.const 1 + i32.shl + i32.const 1049182 + i32.add + i32.load16_u align=1 + i32.store16 align=1 + local.get $5 + i32.const -2 + i32.add + local.get $7 + i32.const -100 + i32.mul + local.get $6 + i32.add + i32.const 65535 + i32.and + i32.const 1 + i32.shl + i32.const 1049182 + i32.add + i32.load16_u align=1 + i32.store16 align=1 + local.get $3 + i32.const -4 + i32.add + local.set $3 + local.get $0 + i64.const 99999999 + i64.gt_u + local.set $5 + local.get $4 + local.set $0 + local.get $5 + br_if $loop + end ;; $loop + end ;; $block + block $block_1 + local.get $4 + i32.wrap_i64 + local.tee $5 + i32.const 99 + i32.le_s + br_if $block_1 local.get $2 i32.const 9 i32.add @@ -9269,14 +8689,14 @@ i32.add local.tee $3 i32.add - local.get $5 + local.get $4 i32.wrap_i64 local.tee $6 i32.const 65535 i32.and i32.const 100 i32.div_u - local.tee $4 + local.tee $5 i32.const -100 i32.mul local.get $6 @@ -9285,49 +8705,49 @@ i32.and i32.const 1 i32.shl - i32.const 1049186 + i32.const 1049182 i32.add i32.load16_u align=1 i32.store16 align=1 - end ;; $block + end ;; $block_1 block $block_2 block $block_3 - local.get $4 - i32.const 9 - i32.gt_s + local.get $5 + i32.const 10 + i32.lt_s br_if $block_3 local.get $2 i32.const 9 i32.add local.get $3 - i32.const -1 + i32.const -2 i32.add local.tee $3 i32.add - local.get $4 - i32.const 48 + local.get $5 + i32.const 1 + i32.shl + i32.const 1049182 i32.add - i32.store8 + i32.load16_u align=1 + i32.store16 align=1 br $block_2 end ;; $block_3 local.get $2 i32.const 9 i32.add local.get $3 - i32.const -2 + i32.const -1 i32.add local.tee $3 i32.add - local.get $4 - i32.const 1 - i32.shl - i32.const 1049186 + local.get $5 + i32.const 48 i32.add - i32.load16_u align=1 - i32.store16 align=1 + i32.store8 end ;; $block_2 local.get $1 - i32.const 1049120 + i32.const 1049116 i32.const 0 local.get $2 i32.const 9 @@ -9337,7 +8757,7 @@ i32.const 39 local.get $3 i32.sub - call $core::fmt::Formatter::pad_integral::h17dddcbb38d9710f + call $core::fmt::Formatter::pad_integral::h0e630a1dafcc54e1 local.set $3 local.get $2 i32.const 48 @@ -9346,17 +8766,13 @@ local.get $3 ) - (func $core::ptr::real_drop_in_place::h5a9a7fbf25605767 (type $6) - (param $0 i32) - ) - - (func $::type_id::h5fb1d47f0acdabcc (type $9) + (func $::type_id::h0651535bade0637a (type $10) (param $0 i32) (result i64) - i64.const -670765639137414048 + i64.const 455982915832198545 ) - (func $core::fmt::Formatter::pad_integral::h17dddcbb38d9710f (type $10) + (func $core::fmt::Formatter::pad_integral::h0e630a1dafcc54e1 (type $11) (param $0 i32) (param $1 i32) (param $2 i32) @@ -9369,7 +8785,6 @@ (local $8 i32) (local $9 i32) (local $10 i32) - (local $11 i32) local.get $0 i32.load local.tee $5 @@ -9381,436 +8796,361 @@ local.set $7 block $block block $block_0 - block $block_1 - block $block_2 - local.get $5 - i32.const 4 - i32.and - br_if $block_2 - i32.const 0 - local.set $1 - i32.const 43 - i32.const 1114112 - local.get $6 - select - local.set $6 - local.get $0 - i32.load offset=8 - i32.const 1 - i32.eq - br_if $block_1 - br $block_0 - end ;; $block_2 - i32.const 0 + local.get $5 + i32.const 4 + i32.and + br_if $block_0 + i32.const 0 + local.set $1 + br $block + end ;; $block_0 + i32.const 0 + local.set $8 + block $block_1 + local.get $2 + i32.eqz + br_if $block_1 + local.get $2 + local.set $9 + local.get $1 + local.set $10 + loop $loop + local.get $8 + local.get $10 + i32.load8_u + i32.const 192 + i32.and + i32.const 128 + i32.eq + i32.add + local.set $8 + local.get $10 + i32.const 1 + i32.add + local.set $10 + local.get $9 + i32.const -1 + i32.add + local.tee $9 + br_if $loop + end ;; $loop + end ;; $block_1 + local.get $7 + local.get $2 + i32.add + local.get $8 + i32.sub + local.set $7 + end ;; $block + i32.const 43 + i32.const 1114112 + local.get $6 + select + local.set $8 + block $block_2 + block $block_3 + local.get $0 + i32.load offset=8 + i32.const 1 + i32.eq + br_if $block_3 + i32.const 1 + local.set $10 + local.get $0 + local.get $8 + local.get $1 + local.get $2 + call $core::fmt::Formatter::pad_integral::write_prefix::h9e67c72a92bd1433 + br_if $block_2 + local.get $0 + i32.load offset=24 + local.get $3 + local.get $4 + local.get $0 + i32.const 28 + i32.add + i32.load + i32.load offset=12 + call_indirect $13 (type $1) + return + end ;; $block_3 + block $block_4 + local.get $0 + i32.const 12 + i32.add + i32.load + local.tee $9 + local.get $7 + i32.gt_u + br_if $block_4 + i32.const 1 + local.set $10 + local.get $0 + local.get $8 + local.get $1 + local.get $2 + call $core::fmt::Formatter::pad_integral::write_prefix::h9e67c72a92bd1433 + br_if $block_2 + local.get $0 + i32.load offset=24 + local.get $3 + local.get $4 + local.get $0 + i32.const 28 + i32.add + i32.load + i32.load offset=12 + call_indirect $13 (type $1) + return + end ;; $block_4 + block $block_5 + block $block_6 + local.get $5 + i32.const 8 + i32.and + br_if $block_6 + local.get $9 + local.get $7 + i32.sub local.set $9 - block $block_3 - local.get $2 - i32.eqz - br_if $block_3 - local.get $2 - local.set $10 - local.get $1 - local.set $8 - loop $loop + i32.const 0 + local.set $10 + block $block_7 + block $block_8 + block $block_9 + i32.const 1 + local.get $0 + i32.load8_u offset=48 + local.tee $7 + local.get $7 + i32.const 3 + i32.eq + select + br_table + $block_7 $block_9 $block_8 $block_9 + $block_7 ;; default + end ;; $block_9 local.get $9 - local.get $8 - i32.load8_u - i32.const 192 - i32.and - i32.const 128 - i32.eq - i32.add + local.set $10 + i32.const 0 local.set $9 - local.get $8 - i32.const 1 - i32.add - local.set $8 - local.get $10 - i32.const -1 - i32.add - local.tee $10 - br_if $loop - end ;; $loop - end ;; $block_3 - local.get $7 - local.get $2 + br $block_7 + end ;; $block_8 + local.get $9 + i32.const 1 + i32.shr_u + local.set $10 + local.get $9 + i32.const 1 + i32.add + i32.const 1 + i32.shr_u + local.set $9 + end ;; $block_7 + local.get $10 + i32.const 1 i32.add - local.get $9 - i32.sub - local.set $7 - i32.const 43 - i32.const 1114112 - local.get $6 - select - local.set $6 - local.get $0 - i32.load offset=8 + local.set $10 + loop $loop_0 + local.get $10 + i32.const -1 + i32.add + local.tee $10 + i32.eqz + br_if $block_5 + local.get $0 + i32.load offset=24 + local.get $0 + i32.load offset=4 + local.get $0 + i32.load offset=28 + i32.load offset=16 + call_indirect $13 (type $2) + i32.eqz + br_if $loop_0 + end ;; $loop_0 i32.const 1 - i32.ne - br_if $block_0 - end ;; $block_1 - block $block_4 - block $block_5 - block $block_6 - block $block_7 - block $block_8 - block $block_9 - block $block_10 - block $block_11 - block $block_12 - block $block_13 - block $block_14 - block $block_15 - local.get $0 - i32.const 12 - i32.add - i32.load - local.tee $9 - local.get $7 - i32.le_u - br_if $block_15 - local.get $5 - i32.const 8 - i32.and - br_if $block_14 - local.get $9 - local.get $7 - i32.sub - local.set $8 - i32.const 1 - local.get $0 - i32.load8_u offset=48 - local.tee $9 - local.get $9 - i32.const 3 - i32.eq - select - local.tee $9 - i32.const 3 - i32.and - i32.eqz - br_if $block_13 - local.get $9 - i32.const 2 - i32.eq - br_if $block_12 - i32.const 0 - local.set $11 - local.get $8 - local.set $9 - br $block_11 - end ;; $block_15 - i32.const 1 - local.set $8 - local.get $0 - local.get $6 - local.get $1 - local.get $2 - call $core::fmt::Formatter::pad_integral::write_prefix::h80e5cb0c85711a72 - br_if $block - local.get $0 - i32.load offset=24 - local.get $3 - local.get $4 - local.get $0 - i32.const 28 - i32.add - i32.load - i32.load offset=12 - call_indirect $13 (type $1) - return - end ;; $block_14 - i32.const 1 - local.set $8 - local.get $0 - i32.const 1 - i32.store8 offset=48 - local.get $0 - i32.const 48 - i32.store offset=4 - local.get $0 - local.get $6 - local.get $1 - local.get $2 - call $core::fmt::Formatter::pad_integral::write_prefix::h80e5cb0c85711a72 - br_if $block - local.get $9 - local.get $7 - i32.sub - local.set $8 - i32.const 1 - local.get $0 - i32.const 48 - i32.add - i32.load8_u - local.tee $9 - local.get $9 - i32.const 3 - i32.eq - select - local.tee $9 - i32.const 3 - i32.and - i32.eqz - br_if $block_10 - local.get $9 - i32.const 2 - i32.eq - br_if $block_9 - i32.const 0 - local.set $7 - local.get $8 - local.set $9 - br $block_8 - end ;; $block_13 - i32.const 0 - local.set $9 - local.get $8 - local.set $11 - br $block_11 - end ;; $block_12 - local.get $8 - i32.const 1 - i32.shr_u - local.set $9 - local.get $8 - i32.const 1 - i32.add - i32.const 1 - i32.shr_u - local.set $11 - end ;; $block_11 - i32.const -1 - local.set $8 - local.get $0 - i32.const 4 - i32.add - local.set $10 - local.get $0 - i32.const 24 - i32.add - local.set $7 - local.get $0 - i32.const 28 - i32.add - local.set $5 - block $block_16 - loop $loop_0 - local.get $8 - i32.const 1 - i32.add - local.tee $8 - local.get $9 - i32.ge_u - br_if $block_16 - local.get $7 - i32.load - local.get $10 - i32.load - local.get $5 - i32.load - i32.load offset=16 - call_indirect $13 (type $2) - i32.eqz - br_if $loop_0 - br $block_7 - end ;; $loop_0 - end ;; $block_16 - local.get $0 - i32.const 4 - i32.add - i32.load - local.set $10 - i32.const 1 - local.set $8 - local.get $0 - local.get $6 - local.get $1 - local.get $2 - call $core::fmt::Formatter::pad_integral::write_prefix::h80e5cb0c85711a72 - br_if $block - local.get $0 - i32.const 24 - i32.add - local.tee $9 - i32.load - local.get $3 - local.get $4 - local.get $0 - i32.const 28 - i32.add - local.tee $2 - i32.load - i32.load offset=12 - call_indirect $13 (type $1) - br_if $block - local.get $9 - i32.load - local.set $0 - i32.const -1 - local.set $9 - local.get $2 - i32.load - i32.const 16 - i32.add - local.set $2 - loop $loop_1 - local.get $9 - i32.const 1 - i32.add - local.tee $9 - local.get $11 - i32.ge_u - br_if $block_5 - i32.const 1 - local.set $8 - local.get $0 - local.get $10 - local.get $2 - i32.load - call_indirect $13 (type $2) - i32.eqz - br_if $loop_1 - br $block - end ;; $loop_1 - end ;; $block_10 - i32.const 0 - local.set $9 - local.get $8 - local.set $7 - br $block_8 - end ;; $block_9 - local.get $8 - i32.const 1 - i32.shr_u - local.set $9 - local.get $8 - i32.const 1 - i32.add - i32.const 1 - i32.shr_u - local.set $7 - end ;; $block_8 - i32.const -1 - local.set $8 - local.get $0 - i32.const 4 - i32.add - local.set $10 - local.get $0 - i32.const 24 - i32.add - local.set $2 - local.get $0 - i32.const 28 - i32.add - local.set $1 - loop $loop_2 - local.get $8 - i32.const 1 - i32.add - local.tee $8 - local.get $9 - i32.ge_u - br_if $block_6 - local.get $2 - i32.load - local.get $10 - i32.load - local.get $1 - i32.load - i32.load offset=16 - call_indirect $13 (type $2) - i32.eqz - br_if $loop_2 - end ;; $loop_2 - end ;; $block_7 + return + end ;; $block_6 + i32.const 1 + local.set $10 + local.get $0 + i32.const 1 + i32.store8 offset=48 + local.get $0 + i32.const 48 + i32.store offset=4 + local.get $0 + local.get $8 + local.get $1 + local.get $2 + call $core::fmt::Formatter::pad_integral::write_prefix::h9e67c72a92bd1433 + br_if $block_2 + local.get $9 + local.get $7 + i32.sub + local.set $8 + i32.const 0 + local.set $10 + block $block_10 + block $block_11 + block $block_12 i32.const 1 - local.set $8 - br $block - end ;; $block_6 - local.get $0 - i32.const 4 - i32.add - i32.load + local.get $0 + i32.load8_u offset=48 + local.tee $9 + local.get $9 + i32.const 3 + i32.eq + select + br_table + $block_10 $block_12 $block_11 $block_12 + $block_10 ;; default + end ;; $block_12 + local.get $8 local.set $10 - i32.const 1 + i32.const 0 local.set $8 - local.get $0 - i32.const 24 + br $block_10 + end ;; $block_11 + local.get $8 + i32.const 1 + i32.shr_u + local.set $10 + local.get $8 + i32.const 1 + i32.add + i32.const 1 + i32.shr_u + local.set $8 + end ;; $block_10 + local.get $10 + i32.const 1 + i32.add + local.set $10 + block $block_13 + loop $loop_1 + local.get $10 + i32.const -1 i32.add - local.tee $9 - i32.load - local.get $3 - local.get $4 + local.tee $10 + i32.eqz + br_if $block_13 local.get $0 - i32.const 28 - i32.add - local.tee $2 - i32.load - i32.load offset=12 - call_indirect $13 (type $1) - br_if $block - local.get $9 - i32.load - local.set $0 + i32.load offset=24 + local.get $0 + i32.load offset=4 + local.get $0 + i32.load offset=28 + i32.load offset=16 + call_indirect $13 (type $2) + i32.eqz + br_if $loop_1 + end ;; $loop_1 + i32.const 1 + return + end ;; $block_13 + local.get $0 + i32.load offset=4 + local.set $9 + i32.const 1 + local.set $10 + local.get $0 + i32.load offset=24 + local.get $3 + local.get $4 + local.get $0 + i32.load offset=28 + i32.load offset=12 + call_indirect $13 (type $1) + br_if $block_2 + local.get $8 + i32.const 1 + i32.add + local.set $8 + local.get $0 + i32.load offset=28 + local.set $2 + local.get $0 + i32.load offset=24 + local.set $0 + loop $loop_2 + block $block_14 + local.get $8 i32.const -1 - local.set $9 - local.get $2 - i32.load - i32.const 16 i32.add - local.set $2 - loop $loop_3 - local.get $9 - i32.const 1 - i32.add - local.tee $9 - local.get $7 - i32.ge_u - br_if $block_4 - i32.const 1 - local.set $8 - local.get $0 - local.get $10 - local.get $2 - i32.load - call_indirect $13 (type $2) - i32.eqz - br_if $loop_3 - br $block - end ;; $loop_3 - end ;; $block_5 - i32.const 0 - return - end ;; $block_4 - i32.const 0 - return - end ;; $block_0 + local.tee $8 + br_if $block_14 + i32.const 0 + return + end ;; $block_14 + i32.const 1 + local.set $10 + local.get $0 + local.get $9 + local.get $2 + i32.load offset=16 + call_indirect $13 (type $2) + i32.eqz + br_if $loop_2 + br $block_2 + end ;; $loop_2 + end ;; $block_5 + local.get $0 + i32.load offset=4 + local.set $7 i32.const 1 - local.set $8 + local.set $10 local.get $0 - local.get $6 + local.get $8 local.get $1 local.get $2 - call $core::fmt::Formatter::pad_integral::write_prefix::h80e5cb0c85711a72 - br_if $block + call $core::fmt::Formatter::pad_integral::write_prefix::h9e67c72a92bd1433 + br_if $block_2 local.get $0 i32.load offset=24 local.get $3 local.get $4 local.get $0 - i32.const 28 - i32.add - i32.load + i32.load offset=28 i32.load offset=12 call_indirect $13 (type $1) - return - end ;; $block - local.get $8 + br_if $block_2 + local.get $9 + i32.const 1 + i32.add + local.set $8 + local.get $0 + i32.load offset=28 + local.set $9 + local.get $0 + i32.load offset=24 + local.set $0 + loop $loop_3 + block $block_15 + local.get $8 + i32.const -1 + i32.add + local.tee $8 + br_if $block_15 + i32.const 0 + return + end ;; $block_15 + i32.const 1 + local.set $10 + local.get $0 + local.get $7 + local.get $9 + i32.load offset=16 + call_indirect $13 (type $2) + i32.eqz + br_if $loop_3 + end ;; $loop_3 + end ;; $block_2 + local.get $10 ) - (func $core::fmt::Formatter::pad_integral::write_prefix::h80e5cb0c85711a72 (type $11) + (func $core::fmt::Formatter::pad_integral::write_prefix::h9e67c72a92bd1433 (type $12) (param $0 i32) (param $1 i32) (param $2 i32) @@ -9819,46 +9159,45 @@ (local $4 i32) block $block block $block_0 - block $block_1 - local.get $1 - i32.const 1114112 - i32.eq - br_if $block_1 - i32.const 1 - local.set $4 - local.get $0 - i32.load offset=24 - local.get $1 - local.get $0 - i32.const 28 - i32.add - i32.load - i32.load offset=16 - call_indirect $13 (type $2) - br_if $block_0 - end ;; $block_1 - local.get $2 - i32.eqz - br_if $block + local.get $1 + i32.const 1114112 + i32.eq + br_if $block_0 + i32.const 1 + local.set $4 local.get $0 i32.load offset=24 - local.get $2 - local.get $3 + local.get $1 local.get $0 i32.const 28 i32.add i32.load - i32.load offset=12 - call_indirect $13 (type $1) - local.set $4 + i32.load offset=16 + call_indirect $13 (type $2) + br_if $block end ;; $block_0 - local.get $4 - return + block $block_1 + local.get $2 + br_if $block_1 + i32.const 0 + return + end ;; $block_1 + local.get $0 + i32.load offset=24 + local.get $2 + local.get $3 + local.get $0 + i32.const 28 + i32.add + i32.load + i32.load offset=12 + call_indirect $13 (type $1) + local.set $4 end ;; $block - i32.const 0 + local.get $4 ) - (func $core::slice::slice_index_order_fail::h719e3c8ae46c9d99 (type $0) + (func $core::slice::slice_index_order_fail::h52dc23ecec067d2f (type $0) (param $0 i32) (param $1 i32) (local $2 i32) @@ -9874,25 +9213,30 @@ local.get $0 i32.store local.get $2 - i32.const 44 - i32.add - i32.const 6 - i32.store - local.get $2 i32.const 28 i32.add i32.const 2 i32.store local.get $2 + i32.const 44 + i32.add i32.const 6 - i32.store offset=36 + i32.store local.get $2 i64.const 2 i64.store offset=12 align=4 local.get $2 - i32.const 1049484 + i32.const 1049480 i32.store offset=8 local.get $2 + i32.const 6 + i32.store offset=36 + local.get $2 + local.get $2 + i32.const 32 + i32.add + i32.store offset=24 + local.get $2 local.get $2 i32.const 4 i32.add @@ -9901,19 +9245,14 @@ local.get $2 i32.store offset=32 local.get $2 - local.get $2 - i32.const 32 - i32.add - i32.store offset=24 - local.get $2 i32.const 8 i32.add - i32.const 1049500 - call $core::panicking::panic_fmt::hc4f83bfed80aeabd + i32.const 1049496 + call $core::panicking::panic_fmt::h772cfe55da576359 unreachable ) - (func $core::str::slice_error_fail::h3704ce74b976be71 (type $12) + (func $core::str::slice_error_fail::he0fc563abf615243 (type $7) (param $0 i32) (param $1 i32) (param $2 i32) @@ -9950,48 +9289,46 @@ local.set $7 i32.const 256 local.set $8 - block $block_0 - loop $loop - block $block_1 - local.get $8 - local.get $1 - i32.ge_u - br_if $block_1 - local.get $0 - local.get $8 - i32.add - i32.load8_s - i32.const -65 - i32.gt_s - br_if $block_0 - end ;; $block_1 + loop $loop + block $block_0 + local.get $8 + local.get $1 + i32.ge_u + br_if $block_0 + local.get $0 local.get $8 - i32.const -1 i32.add - local.set $6 + i32.load8_s + i32.const -65 + i32.le_s + br_if $block_0 i32.const 0 local.set $5 local.get $8 - i32.const 1 - i32.eq - br_if $block - local.get $7 - local.get $8 - i32.add - local.set $9 - local.get $6 - local.set $8 - local.get $9 - i32.const 1 - i32.ne - br_if $loop + local.set $6 br $block - end ;; $loop - end ;; $block_0 - i32.const 0 - local.set $5 - local.get $8 - local.set $6 + end ;; $block_0 + local.get $8 + i32.const -1 + i32.add + local.set $6 + i32.const 0 + local.set $5 + local.get $8 + i32.const 1 + i32.eq + br_if $block + local.get $7 + local.get $8 + i32.add + local.set $9 + local.get $6 + local.set $8 + local.get $9 + i32.const 1 + i32.ne + br_if $loop + end ;; $loop end ;; $block local.get $4 local.get $6 @@ -10006,361 +9343,166 @@ select i32.store offset=28 local.get $4 - i32.const 1049120 - i32.const 1049554 + i32.const 1049116 + i32.const 1049550 local.get $5 select i32.store offset=24 - block $block_2 - block $block_3 - block $block_4 - local.get $2 - local.get $1 - i32.gt_u - local.tee $8 - br_if $block_4 - local.get $3 - local.get $1 - i32.gt_u - br_if $block_4 - local.get $2 - local.get $3 - i32.gt_u - br_if $block_3 - block $block_5 - block $block_6 - local.get $2 - i32.eqz - br_if $block_6 - local.get $1 - local.get $2 - i32.eq - br_if $block_6 - local.get $1 - local.get $2 - i32.le_u - br_if $block_5 - local.get $0 - local.get $2 - i32.add - i32.load8_s - i32.const -64 - i32.lt_s - br_if $block_5 - end ;; $block_6 + block $block_1 + block $block_2 + block $block_3 + block $block_4 + local.get $2 + local.get $1 + i32.gt_u + local.tee $8 + br_if $block_4 local.get $3 - local.set $2 - end ;; $block_5 - local.get $4 - local.get $2 - i32.store offset=32 - block $block_7 - block $block_8 - local.get $2 - i32.eqz - br_if $block_8 - local.get $2 - local.get $1 - i32.eq - br_if $block_8 - local.get $1 - i32.const 1 - i32.add - local.set $9 - loop $loop_0 - block $block_9 - local.get $2 - local.get $1 - i32.ge_u - br_if $block_9 - local.get $0 - local.get $2 - i32.add - i32.load8_s - i32.const -64 - i32.ge_s - br_if $block_8 - end ;; $block_9 + local.get $1 + i32.gt_u + br_if $block_4 + local.get $2 + local.get $3 + i32.gt_u + br_if $block_3 + block $block_5 + block $block_6 local.get $2 - i32.const -1 - i32.add - local.set $8 + i32.eqz + br_if $block_6 + local.get $1 local.get $2 - i32.const 1 i32.eq - br_if $block_7 - local.get $9 + br_if $block_6 + local.get $1 local.get $2 - i32.eq - local.set $6 - local.get $8 - local.set $2 - local.get $6 - i32.eqz - br_if $loop_0 - br $block_7 - end ;; $loop_0 - end ;; $block_8 - local.get $2 - local.set $8 - end ;; $block_7 - local.get $8 - local.get $1 - i32.eq - br_if $block_2 - i32.const 1 - local.set $6 - i32.const 0 - local.set $5 - block $block_10 - block $block_11 - local.get $0 - local.get $8 - i32.add - local.tee $9 - i32.load8_s - local.tee $2 - i32.const 0 - i32.lt_s - br_if $block_11 - local.get $4 - local.get $2 - i32.const 255 - i32.and - i32.store offset=36 - local.get $4 - i32.const 40 - i32.add + i32.le_u + br_if $block_5 + local.get $0 + local.get $2 + i32.add + i32.load8_s + i32.const -64 + i32.lt_s + br_if $block_5 + end ;; $block_6 + local.get $3 local.set $2 - br $block_10 - end ;; $block_11 - local.get $0 - local.get $1 - i32.add - local.tee $6 - local.set $1 - block $block_12 - local.get $9 - i32.const 1 - i32.add - local.get $6 - i32.eq - br_if $block_12 - local.get $9 - i32.const 2 - i32.add - local.set $1 - local.get $9 - i32.const 1 - i32.add - i32.load8_u - i32.const 63 - i32.and - local.set $5 - end ;; $block_12 - local.get $2 - i32.const 31 - i32.and - local.set $9 - block $block_13 - block $block_14 - block $block_15 - local.get $2 - i32.const 255 - i32.and - i32.const 224 - i32.lt_u - br_if $block_15 - i32.const 0 - local.set $0 - local.get $6 - local.set $7 - block $block_16 - local.get $1 - local.get $6 - i32.eq - br_if $block_16 - local.get $1 - i32.const 1 - i32.add - local.set $7 - local.get $1 - i32.load8_u - i32.const 63 - i32.and - local.set $0 - end ;; $block_16 - local.get $0 - local.get $5 - i32.const 6 - i32.shl - i32.or - local.set $1 - local.get $2 - i32.const 255 - i32.and - i32.const 240 - i32.lt_u - br_if $block_14 - i32.const 0 - local.set $2 - block $block_17 - local.get $7 - local.get $6 - i32.eq - br_if $block_17 - local.get $7 - i32.load8_u - i32.const 63 - i32.and - local.set $2 - end ;; $block_17 - local.get $1 - i32.const 6 - i32.shl - local.get $9 - i32.const 18 - i32.shl - i32.const 1835008 - i32.and - i32.or - local.get $2 - i32.or - local.tee $1 - i32.const 1114112 - i32.eq - br_if $block_2 - br $block_13 - end ;; $block_15 - local.get $5 - local.get $9 - i32.const 6 - i32.shl - i32.or - local.set $1 - br $block_13 - end ;; $block_14 - local.get $1 - local.get $9 - i32.const 12 - i32.shl - i32.or - local.set $1 - end ;; $block_13 - local.get $4 - local.get $1 - i32.store offset=36 - i32.const 1 - local.set $6 + end ;; $block_5 local.get $4 - i32.const 40 - i32.add - local.set $2 - local.get $1 - i32.const 128 - i32.lt_u - br_if $block_10 - i32.const 2 - local.set $6 + local.get $2 + i32.store offset=32 + local.get $2 + i32.eqz + br_if $block_2 + local.get $2 local.get $1 - i32.const 2048 - i32.lt_u - br_if $block_10 - i32.const 3 - i32.const 4 + i32.eq + br_if $block_2 local.get $1 - i32.const 65536 - i32.lt_u - select - local.set $6 - end ;; $block_10 + i32.const 1 + i32.add + local.set $9 + loop $loop_0 + block $block_7 + local.get $2 + local.get $1 + i32.ge_u + br_if $block_7 + local.get $0 + local.get $2 + i32.add + i32.load8_s + i32.const -64 + i32.ge_s + br_if $block_2 + end ;; $block_7 + local.get $2 + i32.const -1 + i32.add + local.set $8 + local.get $2 + i32.const 1 + i32.eq + br_if $block_1 + local.get $9 + local.get $2 + i32.eq + local.set $6 + local.get $8 + local.set $2 + local.get $6 + i32.eqz + br_if $loop_0 + br $block_1 + end ;; $loop_0 + end ;; $block_4 local.get $4 + local.get $2 + local.get $3 local.get $8 + select i32.store offset=40 local.get $4 - local.get $6 - local.get $8 - i32.add - i32.store offset=44 - local.get $4 - i32.const 108 + i32.const 48 i32.add - i32.const 1 - i32.store - local.get $4 - i32.const 100 + i32.const 20 i32.add - i32.const 1 + i32.const 3 i32.store local.get $4 i32.const 72 i32.add i32.const 20 i32.add - i32.const 7 + i32.const 1 i32.store local.get $4 i32.const 84 i32.add - i32.const 8 + i32.const 1 i32.store local.get $4 - i32.const 48 - i32.add - i32.const 20 - i32.add - i32.const 5 - i32.store + i64.const 3 + i64.store offset=52 align=4 local.get $4 - local.get $2 - i32.store offset=88 + i32.const 1049556 + i32.store offset=48 local.get $4 i32.const 6 i32.store offset=76 local.get $4 - i64.const 5 - i64.store offset=52 align=4 local.get $4 - i32.const 1049672 - i32.store offset=48 + i32.const 72 + i32.add + i32.store offset=64 local.get $4 local.get $4 i32.const 24 i32.add - i32.store offset=104 + i32.store offset=88 local.get $4 local.get $4 i32.const 16 i32.add - i32.store offset=96 - local.get $4 - local.get $4 - i32.const 36 - i32.add i32.store offset=80 local.get $4 local.get $4 - i32.const 32 + i32.const 40 i32.add i32.store offset=72 local.get $4 - local.get $4 - i32.const 72 - i32.add - i32.store offset=64 - local.get $4 i32.const 48 i32.add - i32.const 1049712 - call $core::panicking::panic_fmt::hc4f83bfed80aeabd + i32.const 1049580 + call $core::panicking::panic_fmt::h772cfe55da576359 unreachable - end ;; $block_4 + end ;; $block_3 local.get $4 - local.get $2 - local.get $3 - local.get $8 - select - i32.store offset=40 + i32.const 100 + i32.add + i32.const 1 + i32.store local.get $4 i32.const 72 i32.add @@ -10369,124 +9511,317 @@ i32.const 1 i32.store local.get $4 - i32.const 84 - i32.add + i32.const 84 + i32.add + i32.const 6 + i32.store + local.get $4 + i32.const 48 + i32.add + i32.const 20 + i32.add + i32.const 4 + i32.store + local.get $4 + i64.const 4 + i64.store offset=52 align=4 + local.get $4 + i32.const 1049596 + i32.store offset=48 + local.get $4 + i32.const 6 + i32.store offset=76 + local.get $4 + local.get $4 + i32.const 72 + i32.add + i32.store offset=64 + local.get $4 + local.get $4 + i32.const 24 + i32.add + i32.store offset=96 + local.get $4 + local.get $4 + i32.const 16 + i32.add + i32.store offset=88 + local.get $4 + local.get $4 + i32.const 12 + i32.add + i32.store offset=80 + local.get $4 + local.get $4 + i32.const 8 + i32.add + i32.store offset=72 + local.get $4 + i32.const 48 + i32.add + i32.const 1049628 + call $core::panicking::panic_fmt::h772cfe55da576359 + unreachable + end ;; $block_2 + local.get $2 + local.set $8 + end ;; $block_1 + block $block_8 + local.get $8 + local.get $1 + i32.eq + br_if $block_8 + i32.const 1 + local.set $6 + block $block_9 + block $block_10 + block $block_11 + block $block_12 + local.get $0 + local.get $8 + i32.add + local.tee $9 + i32.load8_s + local.tee $2 + i32.const -1 + i32.gt_s + br_if $block_12 + i32.const 0 + local.set $5 + local.get $0 + local.get $1 + i32.add + local.tee $6 + local.set $1 + block $block_13 + local.get $9 + i32.const 1 + i32.add + local.get $6 + i32.eq + br_if $block_13 + local.get $9 + i32.const 2 + i32.add + local.set $1 + local.get $9 + i32.load8_u offset=1 + i32.const 63 + i32.and + local.set $5 + end ;; $block_13 + local.get $2 + i32.const 31 + i32.and + local.set $9 + local.get $2 + i32.const 255 + i32.and + i32.const 223 + i32.gt_u + br_if $block_11 + local.get $5 + local.get $9 + i32.const 6 + i32.shl + i32.or + local.set $1 + br $block_10 + end ;; $block_12 + local.get $4 + local.get $2 + i32.const 255 + i32.and + i32.store offset=36 + local.get $4 + i32.const 40 + i32.add + local.set $2 + br $block_9 + end ;; $block_11 + i32.const 0 + local.set $0 + local.get $6 + local.set $7 + block $block_14 + local.get $1 + local.get $6 + i32.eq + br_if $block_14 + local.get $1 + i32.const 1 + i32.add + local.set $7 + local.get $1 + i32.load8_u + i32.const 63 + i32.and + local.set $0 + end ;; $block_14 + local.get $0 + local.get $5 + i32.const 6 + i32.shl + i32.or + local.set $1 + block $block_15 + local.get $2 + i32.const 255 + i32.and + i32.const 240 + i32.ge_u + br_if $block_15 + local.get $1 + local.get $9 + i32.const 12 + i32.shl + i32.or + local.set $1 + br $block_10 + end ;; $block_15 + i32.const 0 + local.set $2 + block $block_16 + local.get $7 + local.get $6 + i32.eq + br_if $block_16 + local.get $7 + i32.load8_u + i32.const 63 + i32.and + local.set $2 + end ;; $block_16 + local.get $1 + i32.const 6 + i32.shl + local.get $9 + i32.const 18 + i32.shl + i32.const 1835008 + i32.and + i32.or + local.get $2 + i32.or + local.tee $1 + i32.const 1114112 + i32.eq + br_if $block_8 + end ;; $block_10 + local.get $4 + local.get $1 + i32.store offset=36 i32.const 1 - i32.store - local.get $4 - i32.const 48 - i32.add - i32.const 20 - i32.add - i32.const 3 - i32.store - local.get $4 - i32.const 6 - i32.store offset=76 - local.get $4 - i64.const 3 - i64.store offset=52 align=4 - local.get $4 - i32.const 1049560 - i32.store offset=48 - local.get $4 - local.get $4 - i32.const 24 - i32.add - i32.store offset=88 - local.get $4 - local.get $4 - i32.const 16 - i32.add - i32.store offset=80 - local.get $4 + local.set $6 local.get $4 i32.const 40 i32.add - i32.store offset=72 - local.get $4 - local.get $4 - i32.const 72 - i32.add - i32.store offset=64 - local.get $4 - i32.const 48 - i32.add - i32.const 1049584 - call $core::panicking::panic_fmt::hc4f83bfed80aeabd - unreachable - end ;; $block_3 + local.set $2 + local.get $1 + i32.const 128 + i32.lt_u + br_if $block_9 + i32.const 2 + local.set $6 + local.get $1 + i32.const 2048 + i32.lt_u + br_if $block_9 + i32.const 3 + i32.const 4 + local.get $1 + i32.const 65536 + i32.lt_u + select + local.set $6 + end ;; $block_9 local.get $4 - i32.const 100 + local.get $8 + i32.store offset=40 + local.get $4 + local.get $6 + local.get $8 i32.add - i32.const 1 - i32.store + i32.store offset=44 local.get $4 - i32.const 72 + i32.const 48 i32.add i32.const 20 i32.add + i32.const 5 + i32.store + local.get $4 + i32.const 108 + i32.add i32.const 1 i32.store local.get $4 - i32.const 84 + i32.const 100 i32.add - i32.const 6 + i32.const 1 i32.store local.get $4 - i32.const 48 + i32.const 72 i32.add i32.const 20 i32.add - i32.const 4 + i32.const 7 i32.store local.get $4 - i32.const 6 - i32.store offset=76 + i32.const 84 + i32.add + i32.const 8 + i32.store local.get $4 - i64.const 4 + i64.const 5 i64.store offset=52 align=4 local.get $4 - i32.const 1049600 + i32.const 1049668 i32.store offset=48 local.get $4 + local.get $2 + i32.store offset=88 + local.get $4 + i32.const 6 + i32.store offset=76 + local.get $4 + local.get $4 + i32.const 72 + i32.add + i32.store offset=64 + local.get $4 local.get $4 i32.const 24 i32.add - i32.store offset=96 + i32.store offset=104 local.get $4 local.get $4 i32.const 16 i32.add - i32.store offset=88 + i32.store offset=96 local.get $4 local.get $4 - i32.const 12 + i32.const 36 i32.add i32.store offset=80 local.get $4 local.get $4 - i32.const 8 + i32.const 32 i32.add i32.store offset=72 local.get $4 - local.get $4 - i32.const 72 - i32.add - i32.store offset=64 - local.get $4 i32.const 48 i32.add - i32.const 1049632 - call $core::panicking::panic_fmt::hc4f83bfed80aeabd + i32.const 1049708 + call $core::panicking::panic_fmt::h772cfe55da576359 unreachable - end ;; $block_2 - i32.const 1049648 - call $core::panicking::panic::h62fdcfa056e70982 + end ;; $block_8 + i32.const 1049644 + call $core::panicking::panic::h540eb5ee6ff533c2 unreachable ) - (func $_as_core::fmt::Debug>::fmt::h6105e754ea0aeafb (type $2) + (func $_as_core::fmt::Debug>::fmt::haf7bc23b95386435 (type $2) (param $0 i32) (param $1 i32) (result i32) @@ -10499,985 +9834,866 @@ local.tee $2 global.set $15 block $block - block $block_0 - local.get $0 - i32.load - local.get $1 - call $core::fmt::num::::fmt::h5c9a921f5b6ae7be - br_if $block_0 - local.get $1 - i32.const 28 - i32.add - i32.load - local.set $3 - local.get $1 - i32.load offset=24 - local.set $4 - local.get $2 - i32.const 28 - i32.add - i32.const 0 - i32.store - local.get $2 - i32.const 1049120 - i32.store offset=24 - local.get $2 - i64.const 1 - i64.store offset=12 align=4 - local.get $2 - i32.const 1049816 - i32.store offset=8 - local.get $4 - local.get $3 - local.get $2 - i32.const 8 - i32.add - call $core::fmt::write::h8cfd01c67a4a46c9 - i32.eqz - br_if $block - end ;; $block_0 + local.get $0 + i32.load + local.get $1 + call $core::fmt::num::::fmt::hb54eecdb0d5e8e4a + br_if $block + local.get $1 + i32.const 28 + i32.add + i32.load + local.set $3 + local.get $1 + i32.load offset=24 + local.set $4 + local.get $2 + i32.const 28 + i32.add + i32.const 0 + i32.store + local.get $2 + i32.const 1049116 + i32.store offset=24 + local.get $2 + i64.const 1 + i64.store offset=12 align=4 + local.get $2 + i32.const 1049812 + i32.store offset=8 + local.get $4 + local.get $3 + local.get $2 + i32.const 8 + i32.add + call $core::fmt::write::h9ffb25a5a03fc281 + br_if $block + local.get $0 + i32.load offset=4 + local.get $1 + call $core::fmt::num::::fmt::hb54eecdb0d5e8e4a + local.set $1 local.get $2 i32.const 32 i32.add global.set $15 - i32.const 1 + local.get $1 return end ;; $block - local.get $0 - i32.load offset=4 - local.get $1 - call $core::fmt::num::::fmt::h5c9a921f5b6ae7be - local.set $1 local.get $2 i32.const 32 i32.add global.set $15 - local.get $1 - ) - - (func $::fmt::h7a420490f85a5bf3 (type $2) - (param $0 i32) - (param $1 i32) - (result i32) - (local $2 i32) - (local $3 i32) - (local $4 i32) - (local $5 i64) - (local $6 i32) - (local $7 i32) - (local $8 i32) - (local $9 i32) - (local $10 i32) - (local $11 i32) - (local $12 i32) - (local $13 i32) - (local $14 i32) - (local $15 i32) - (local $16 i32) - (local $17 i32) - (local $18 i32) - (local $19 i32) - (local $20 i32) - (local $21 i32) - (local $22 i32) - (local $23 i32) - (local $24 i32) - (local $25 i32) - (local $26 i32) i32.const 1 - local.set $2 - block $block - local.get $1 - i32.load offset=24 - i32.const 39 - local.get $1 - i32.const 28 - i32.add - i32.load - i32.load offset=16 - call_indirect $13 (type $2) - br_if $block - i32.const 2 - local.set $2 - block $block_0 - block $block_1 - block $block_2 - block $block_3 - block $block_4 - block $block_5 - block $block_6 - block $block_7 - block $block_8 - block $block_9 - block $block_10 - block $block_11 - block $block_12 - block $block_13 - block $block_14 - block $block_15 - block $block_16 - local.get $0 - i32.load - local.tee $0 - i32.const -9 - i32.add - local.tee $3 - i32.const 30 - i32.gt_u - br_if $block_16 - i32.const 116 - local.set $4 - block $block_17 - local.get $3 - br_table - $block_0 $block_17 $block_15 $block_15 $block_14 $block_15 $block_15 $block_15 $block_15 $block_15 $block_15 $block_15 $block_15 $block_15 $block_15 $block_15 - $block_15 $block_15 $block_15 $block_15 $block_15 $block_15 $block_15 $block_15 $block_15 $block_2 $block_15 $block_15 $block_15 $block_15 $block_2 - $block_0 ;; default - end ;; $block_17 - i32.const 110 - local.set $4 - br $block_13 - end ;; $block_16 - local.get $0 - i32.const 92 - i32.eq - br_if $block_2 - end ;; $block_15 - local.get $0 - i32.const 2047 - i32.gt_u - br_if $block_12 - local.get $0 - i32.const 3 - i32.shr_u - i32.const 262136 - i32.and - i32.const 1051184 - i32.add - local.set $2 - br $block_11 - end ;; $block_14 - i32.const 114 - local.set $4 - end ;; $block_13 - br $block_0 - end ;; $block_12 - block $block_18 - local.get $0 - i32.const 65535 - i32.gt_u - br_if $block_18 - local.get $0 - i32.const 6 - i32.shr_u - i32.const -32 - i32.add - local.tee $2 - i32.const 991 - i32.gt_u - br_if $block_10 - local.get $2 - i32.const 1051464 - i32.add - i32.load8_u - local.tee $2 - i32.const 73 - i32.gt_u - br_if $block_9 - local.get $2 - i32.const 3 - i32.shl - i32.const 1052832 - i32.add - local.set $2 - br $block_11 - end ;; $block_18 - local.get $0 - i32.const 12 - i32.shr_u - i32.const -16 - i32.add - local.tee $2 - i32.const 255 - i32.gt_u - br_if $block_8 - local.get $2 - i32.const 1052456 - i32.add - i32.load8_u - i32.const 6 - i32.shl - local.get $0 - i32.const 6 - i32.shr_u - i32.const 63 - i32.and - i32.or - local.tee $2 - i32.const 511 - i32.gt_u - br_if $block_7 - local.get $2 - i32.const 1053424 - i32.add - i32.load8_u - local.tee $2 - i32.const 54 - i32.gt_u - br_if $block_6 - local.get $2 - i32.const 3 - i32.shl - i32.const 1053936 - i32.add - local.set $2 - end ;; $block_11 - block $block_19 - local.get $2 - i64.load - i64.const 1 - local.get $0 - i32.const 63 - i32.and - i64.extend_i32_u - i64.shl - i64.and - i64.eqz - br_if $block_19 - local.get $0 - i32.const 1 - i32.or - i32.clz - i32.const 2 - i32.shr_u - i32.const 7 - i32.xor - i64.extend_i32_u - i64.const 21474836480 - i64.or - local.set $5 - br $block_3 - end ;; $block_19 - block $block_20 - local.get $0 - i32.const 65535 - i32.gt_u - br_if $block_20 - local.get $0 - i32.const 65280 - i32.and - i32.const 8 - i32.shr_u - local.set $6 - i32.const 1049880 - local.set $7 - i32.const 0 - local.set $8 - i32.const 2 - local.set $9 - i32.const 304 - local.set $10 - i32.const 1049960 - local.set $11 - i32.const 1049960 - local.set $12 - i32.const -1 - local.set $13 - i32.const 1 - local.set $14 - local.get $0 - i32.const 255 - i32.and - local.set $15 - i32.const 0 - local.set $2 - br $block_5 - end ;; $block_20 - block $block_21 - local.get $0 - i32.const 131071 - i32.gt_u - br_if $block_21 - local.get $0 - i32.const 65280 - i32.and - i32.const 8 - i32.shr_u - local.set $19 - i32.const 1050579 - local.set $20 - i32.const 0 - local.set $21 - i32.const 2 - local.set $22 - i32.const 159 - local.set $23 - i32.const 1050645 - local.set $24 - i32.const 1050645 - local.set $25 - i32.const -1 - local.set $26 - i32.const 1 - local.set $18 - local.get $0 - i32.const 255 - i32.and - local.set $17 - i32.const 1 - local.set $2 - br $block_5 - end ;; $block_21 - local.get $0 - i32.const 917999 - i32.gt_u - br_if $block_4 - local.get $0 - i32.const -195102 - i32.add - i32.const 722658 - i32.lt_u - br_if $block_4 - local.get $0 - i32.const -191457 - i32.add - i32.const 3103 - i32.lt_u - br_if $block_4 + ) + + (func $::fmt::h27b79e1831e51870 (type $2) + (param $0 i32) + (param $1 i32) + (result i32) + (local $2 i32) + (local $3 i32) + (local $4 i32) + (local $5 i32) + (local $6 i32) + (local $7 i32) + (local $8 i32) + (local $9 i64) + i32.const 1 + local.set $2 + block $block + local.get $1 + i32.load offset=24 + i32.const 39 + local.get $1 + i32.const 28 + i32.add + i32.load + i32.load offset=16 + call_indirect $13 (type $2) + br_if $block + i32.const 2 + local.set $3 + block $block_0 + block $block_1 + block $block_2 + block $block_3 + block $block_4 + local.get $0 + i32.load + local.tee $0 + i32.const -9 + i32.add + local.tee $4 + i32.const 30 + i32.le_u + br_if $block_4 + local.get $0 + i32.const 92 + i32.ne + br_if $block_3 + br $block_2 + end ;; $block_4 + i32.const 116 + local.set $5 + block $block_5 + block $block_6 + local.get $4 + br_table + $block_0 $block_5 $block_3 $block_3 $block_6 $block_3 $block_3 $block_3 $block_3 $block_3 $block_3 $block_3 $block_3 $block_3 $block_3 $block_3 + $block_3 $block_3 $block_3 $block_3 $block_3 $block_3 $block_3 $block_3 $block_3 $block_2 $block_3 $block_3 $block_3 $block_3 $block_2 + $block_0 ;; default + end ;; $block_6 + i32.const 114 + local.set $5 + br $block_0 + end ;; $block_5 + i32.const 110 + local.set $5 + br $block_0 + end ;; $block_3 + block $block_7 + block $block_8 + local.get $0 + i32.const 2048 + i32.lt_u + br_if $block_8 + block $block_9 + block $block_10 + block $block_11 + block $block_12 + block $block_13 + block $block_14 local.get $0 - i32.const -183970 - i32.add - i32.const 14 + i32.const 65536 i32.lt_u - br_if $block_4 - local.get $0 - i32.const 2097150 - i32.and - i32.const 178206 - i32.eq - br_if $block_4 + br_if $block_14 local.get $0 - i32.const -173783 + i32.const 12 + i32.shr_u + i32.const -16 i32.add - i32.const 41 + local.tee $3 + i32.const 256 i32.lt_u - br_if $block_4 - local.get $0 - i32.const -177973 - i32.add - i32.const 10 - i32.le_u - br_if $block_4 - i32.const 1 - local.set $2 - br $block_2 - end ;; $block_10 - i32.const 1052712 - local.get $2 - i32.const 992 - call $core::panicking::panic_bounds_check::h51667a9f831439a7 - unreachable - end ;; $block_9 - i32.const 1052728 - local.get $2 - i32.const 74 - call $core::panicking::panic_bounds_check::h51667a9f831439a7 - unreachable - end ;; $block_8 + br_if $block_13 + i32.const 1052776 + local.get $3 + i32.const 256 + call $core::panicking::panic_bounds_check::hb65bbcdf415380e4 + unreachable + end ;; $block_14 + local.get $0 + i32.const 6 + i32.shr_u + i32.const -32 + i32.add + local.tee $3 + i32.const 991 + i32.gt_u + br_if $block_12 + local.get $3 + i32.const 1050160 + i32.add + i32.load8_u + local.tee $3 + i32.const 73 + i32.gt_u + br_if $block_11 + local.get $3 + i32.const 3 + i32.shl + i32.const 1052864 + i32.add + local.set $3 + br $block_7 + end ;; $block_13 + local.get $3 + i32.const 1051152 + i32.add + i32.load8_u + i32.const 6 + i32.shl + local.get $0 + i32.const 6 + i32.shr_u + i32.const 63 + i32.and + i32.or + local.tee $3 + i32.const 511 + i32.gt_u + br_if $block_10 + local.get $3 + i32.const 1053456 + i32.add + i32.load8_u + local.tee $3 + i32.const 57 + i32.gt_u + br_if $block_9 + local.get $3 + i32.const 3 + i32.shl + i32.const 1053968 + i32.add + local.set $3 + br $block_7 + end ;; $block_12 i32.const 1052744 - local.get $2 - i32.const 256 - call $core::panicking::panic_bounds_check::h51667a9f831439a7 + local.get $3 + i32.const 992 + call $core::panicking::panic_bounds_check::hb65bbcdf415380e4 unreachable - end ;; $block_7 + end ;; $block_11 i32.const 1052760 - local.get $2 - i32.const 512 - call $core::panicking::panic_bounds_check::h51667a9f831439a7 + local.get $3 + i32.const 74 + call $core::panicking::panic_bounds_check::hb65bbcdf415380e4 unreachable - end ;; $block_6 - i32.const 1052776 - local.get $2 - i32.const 55 - call $core::panicking::panic_bounds_check::h51667a9f831439a7 + end ;; $block_10 + i32.const 1052792 + local.get $3 + i32.const 512 + call $core::panicking::panic_bounds_check::hb65bbcdf415380e4 unreachable - end ;; $block_5 - loop $loop - block $block_22 - block $block_23 - block $block_24 - block $block_25 - block $block_26 - block $block_27 - block $block_28 - block $block_29 - block $block_30 - block $block_31 - block $block_32 - block $block_33 - local.get $2 - br_table - $block_33 $block_32 - $block_32 ;; default - end ;; $block_33 - local.get $7 - local.get $9 - i32.add - local.set $16 + end ;; $block_9 + i32.const 1052808 + local.get $3 + i32.const 58 + call $core::panicking::panic_bounds_check::hb65bbcdf415380e4 + unreachable + end ;; $block_8 + local.get $0 + i32.const 3 + i32.shr_u + i32.const 262136 + i32.and + i32.const 1049880 + i32.add + local.set $3 + end ;; $block_7 + block $block_15 + block $block_16 + block $block_17 + block $block_18 + block $block_19 + block $block_20 + block $block_21 + local.get $3 + i64.load + i64.const 1 + local.get $0 + i32.const 63 + i32.and + i64.extend_i32_u + i64.shl + i64.and + i64.const 0 + i64.ne + br_if $block_21 + block $block_22 + block $block_23 + block $block_24 + block $block_25 + block $block_26 + block $block_27 + local.get $0 + i32.const 65536 + i32.lt_u + br_if $block_27 + local.get $0 + i32.const 131072 + i32.lt_u + br_if $block_26 + local.get $0 + i32.const -918000 + i32.add + i32.const 196112 + i32.lt_u + br_if $block_17 + local.get $0 + i32.const -195102 + i32.add + i32.const 722658 + i32.lt_u + br_if $block_17 + local.get $0 + i32.const -191457 + i32.add + i32.const 3103 + i32.lt_u + br_if $block_17 + local.get $0 + i32.const -183970 + i32.add + i32.const 14 + i32.lt_u + br_if $block_17 + local.get $0 + i32.const 2097150 + i32.and + i32.const 178206 + i32.eq + br_if $block_17 + local.get $0 + i32.const -173783 + i32.add + i32.const 41 + i32.lt_u + br_if $block_17 + local.get $0 + i32.const -177973 + i32.add + i32.const 10 + i32.le_u + br_if $block_17 + i32.const 1 + local.set $3 + br $block_1 + end ;; $block_27 + local.get $0 + i32.const 65280 + i32.and + i32.const 8 + i32.shr_u + local.set $6 + i32.const 1051408 + local.set $4 + i32.const 0 + local.set $2 + local.get $0 + i32.const 255 + i32.and + local.set $5 + loop $loop + local.get $4 + i32.const 2 + i32.add + local.set $7 + local.get $2 + local.get $4 + i32.load8_u offset=1 + local.tee $3 + i32.add + local.set $8 + block $block_28 + local.get $4 + i32.load8_u + local.tee $4 + local.get $6 + i32.eq + br_if $block_28 + local.get $4 + local.get $6 + i32.gt_u + br_if $block_19 local.get $8 + local.set $2 local.get $7 - i32.load8_u offset=1 - local.tee $2 - i32.add - local.set $3 - block $block_34 - block $block_35 - block $block_36 - local.get $7 - i32.load8_u - local.tee $4 - local.get $6 - i32.ne - br_if $block_36 - local.get $3 - local.get $8 - i32.lt_u - br_if $block_31 - local.get $3 - local.get $10 - i32.ge_u - br_if $block_30 - local.get $8 - local.get $11 - i32.add - local.set $4 - loop $loop_0 - local.get $2 - i32.eqz - br_if $block_35 - local.get $2 - local.get $13 - i32.add - local.set $2 - local.get $4 - i32.load8_u - local.set $7 - local.get $4 - local.get $14 - i32.add - local.set $4 - local.get $7 - local.get $15 - i32.ne - br_if $loop_0 - br $block_4 - end ;; $loop_0 - end ;; $block_36 - local.get $4 - local.get $6 - i32.gt_u - br_if $block_34 - local.get $3 - local.set $8 - local.get $16 - local.set $7 - local.get $16 - local.get $12 - i32.ne - br_if $block_25 - br $block_34 - end ;; $block_35 + local.set $4 + local.get $7 + i32.const 1051490 + i32.ne + br_if $loop + br $block_19 + end ;; $block_28 + local.get $8 + local.get $2 + i32.lt_u + br_if $block_25 + local.get $8 + i32.const 293 + i32.gt_u + br_if $block_24 + local.get $2 + i32.const 1051490 + i32.add + local.set $4 + block $block_29 + loop $loop_0 + local.get $3 + i32.eqz + br_if $block_29 local.get $3 - local.set $8 - local.get $16 - local.set $7 - local.get $16 - local.get $12 + i32.const -1 + i32.add + local.set $3 + local.get $4 + i32.load8_u + local.set $2 + local.get $4 + i32.const 1 + i32.add + local.set $4 + local.get $2 + local.get $5 i32.ne - br_if $block_24 - end ;; $block_34 - local.get $0 - i32.const 65535 - i32.and - local.set $15 - i32.const 1050263 - local.set $2 - i32.const 1 - local.set $14 - block $block_37 - loop $loop_1 - local.get $2 - i32.const 1 - i32.add - local.set $13 - block $block_38 - block $block_39 - local.get $2 - i32.load8_u - local.tee $17 - i32.const 24 - i32.shl - i32.const 24 - i32.shr_s - local.tee $18 - i32.const -1 - i32.le_s - br_if $block_39 - local.get $13 - local.set $2 - local.get $15 - local.get $17 - i32.sub - local.tee $15 - i32.const 0 - i32.ge_s - br_if $block_38 - br $block_37 - end ;; $block_39 - local.get $13 - i32.const 1050579 - i32.eq - br_if $block_27 - local.get $2 - i32.const 1 - i32.add - local.set $13 - local.get $2 - i32.const 2 - i32.add - local.set $2 - local.get $15 - local.get $18 - i32.const 127 - i32.and - i32.const 8 - i32.shl - local.get $13 - i32.load8_u - i32.or - i32.sub - local.tee $15 - i32.const 0 - i32.lt_s - br_if $block_37 - end ;; $block_38 - local.get $14 - i32.const 1 - i32.xor - local.set $14 - local.get $2 - i32.const 1050579 - i32.ne - br_if $loop_1 - end ;; $loop_1 - end ;; $block_37 - i32.const 1 + br_if $loop_0 + br $block_17 + end ;; $loop_0 + end ;; $block_29 + local.get $8 + local.set $2 + local.get $7 + local.set $4 + local.get $7 + i32.const 1051490 + i32.ne + br_if $loop + br $block_19 + end ;; $loop + end ;; $block_26 + local.get $0 + i32.const 65280 + i32.and + i32.const 8 + i32.shr_u + local.set $6 + i32.const 1052097 + local.set $4 + i32.const 0 + local.set $2 + local.get $0 + i32.const 255 + i32.and + local.set $5 + loop $loop_1 + local.get $4 + i32.const 2 + i32.add + local.set $7 + local.get $2 + local.get $4 + i32.load8_u offset=1 + local.tee $3 + i32.add + local.set $8 + block $block_30 + local.get $4 + i32.load8_u + local.tee $4 + local.get $6 + i32.eq + br_if $block_30 + local.get $4 + local.get $6 + i32.gt_u + br_if $block_20 + local.get $8 + local.set $2 + local.get $7 + local.set $4 + local.get $7 + i32.const 1052167 + i32.ne + br_if $loop_1 + br $block_20 + end ;; $block_30 + local.get $8 + local.get $2 + i32.lt_u + br_if $block_23 + local.get $8 + i32.const 166 + i32.gt_u + br_if $block_22 + local.get $2 + i32.const 1052167 + i32.add + local.set $4 + block $block_31 + loop $loop_2 + local.get $3 + i32.eqz + br_if $block_31 + local.get $3 + i32.const -1 + i32.add + local.set $3 + local.get $4 + i32.load8_u local.set $2 - local.get $14 + local.get $4 i32.const 1 - i32.and - br_if $block_2 - br $block_4 - end ;; $block_32 - local.get $20 - local.get $22 - i32.add - local.set $16 - local.get $21 - local.get $20 - i32.load8_u offset=1 - local.tee $2 - i32.add - local.set $3 - block $block_40 - block $block_41 - block $block_42 - local.get $20 - i32.load8_u - local.tee $4 - local.get $19 - i32.ne - br_if $block_42 - local.get $3 - local.get $21 - i32.lt_u - br_if $block_29 - local.get $3 - local.get $23 - i32.ge_u - br_if $block_28 - local.get $21 - local.get $24 - i32.add - local.set $4 - loop $loop_2 - local.get $2 - i32.eqz - br_if $block_41 - local.get $2 - local.get $26 - i32.add - local.set $2 - local.get $4 - i32.load8_u - local.set $20 - local.get $4 - local.get $18 - i32.add - local.set $4 - local.get $20 - local.get $17 - i32.ne - br_if $loop_2 - br $block_4 - end ;; $loop_2 - end ;; $block_42 - local.get $4 - local.get $19 - i32.gt_u - br_if $block_40 - local.get $3 - local.set $21 - local.get $16 - local.set $20 - local.get $16 - local.get $25 - i32.ne - br_if $block_23 - br $block_40 - end ;; $block_41 - local.get $3 - local.set $21 - local.get $16 - local.set $20 - local.get $16 - local.get $25 + i32.add + local.set $4 + local.get $2 + local.get $5 i32.ne - br_if $block_22 - end ;; $block_40 - local.get $0 - i32.const 65535 - i32.and - local.set $15 - i32.const 1050803 - local.set $2 - i32.const 1 - local.set $14 - block $block_43 - loop $loop_3 - local.get $2 - i32.const 1 - i32.add - local.set $13 - block $block_44 - block $block_45 - local.get $2 - i32.load8_u - local.tee $17 - i32.const 24 - i32.shl - i32.const 24 - i32.shr_s - local.tee $18 - i32.const -1 - i32.le_s - br_if $block_45 - local.get $13 - local.set $2 - local.get $15 - local.get $17 - i32.sub - local.tee $15 - i32.const 0 - i32.ge_s - br_if $block_44 - br $block_43 - end ;; $block_45 - local.get $13 - i32.const 1051184 - i32.eq - br_if $block_26 - local.get $2 - i32.const 1 - i32.add - local.set $13 - local.get $2 - i32.const 2 - i32.add - local.set $2 - local.get $15 - local.get $18 - i32.const 127 - i32.and - i32.const 8 - i32.shl - local.get $13 - i32.load8_u - i32.or - i32.sub - local.tee $15 - i32.const 0 - i32.lt_s - br_if $block_43 - end ;; $block_44 - local.get $14 - i32.const 1 - i32.xor - local.set $14 - local.get $2 - i32.const 1051184 - i32.ne - br_if $loop_3 - end ;; $loop_3 - end ;; $block_43 - i32.const 1 - local.set $2 - local.get $14 - i32.const 1 - i32.and - br_if $block_2 - br $block_4 + br_if $loop_2 + br $block_17 + end ;; $loop_2 end ;; $block_31 local.get $8 - local.get $3 - call $core::slice::slice_index_order_fail::h719e3c8ae46c9d99 - unreachable - end ;; $block_30 - local.get $3 - i32.const 303 - call $core::slice::slice_index_len_fail::hb115deb2b20f49d8 - unreachable - end ;; $block_29 - local.get $21 - local.get $3 - call $core::slice::slice_index_order_fail::h719e3c8ae46c9d99 + local.set $2 + local.get $7 + local.set $4 + local.get $7 + i32.const 1052167 + i32.ne + br_if $loop_1 + br $block_20 + end ;; $loop_1 + end ;; $block_25 + local.get $2 + local.get $8 + call $core::slice::slice_index_order_fail::h52dc23ecec067d2f unreachable - end ;; $block_28 - local.get $3 - i32.const 158 - call $core::slice::slice_index_len_fail::hb115deb2b20f49d8 + end ;; $block_24 + local.get $8 + i32.const 293 + call $core::slice::slice_index_len_fail::h7c242876dcc4f7b2 unreachable - end ;; $block_27 - i32.const 1049648 - call $core::panicking::panic::h62fdcfa056e70982 + end ;; $block_23 + local.get $2 + local.get $8 + call $core::slice::slice_index_order_fail::h52dc23ecec067d2f unreachable - end ;; $block_26 - i32.const 1049648 - call $core::panicking::panic::h62fdcfa056e70982 + end ;; $block_22 + local.get $8 + i32.const 166 + call $core::slice::slice_index_len_fail::h7c242876dcc4f7b2 unreachable - end ;; $block_25 - i32.const 0 - local.set $2 - br $loop - end ;; $block_24 - i32.const 0 - local.set $2 - br $loop - end ;; $block_23 - i32.const 1 - local.set $2 - br $loop - end ;; $block_22 - i32.const 1 - local.set $2 - br $loop - end ;; $loop - end ;; $block_4 - local.get $0 - i32.const 1 - i32.or - i32.clz - i32.const 2 - i32.shr_u - i32.const 7 - i32.xor - i64.extend_i32_u - i64.const 21474836480 - i64.or - local.set $5 - end ;; $block_3 - i32.const 3 - local.set $2 - br $block_1 - end ;; $block_2 - end ;; $block_1 - local.get $0 - local.set $4 - end ;; $block_0 - local.get $1 - i32.const 24 - i32.add - local.set $15 - local.get $1 - i32.const 28 - i32.add - local.set $14 - block $block_46 - loop $loop_4 - block $block_47 - block $block_48 - block $block_49 - block $block_50 - block $block_51 - block $block_52 - block $block_53 - local.get $2 + end ;; $block_21 + local.get $0 i32.const 1 - i32.eq - br_if $block_53 - i32.const 92 - local.set $0 - block $block_54 - local.get $2 - i32.const 2 - i32.eq - br_if $block_54 + i32.or + i32.clz + i32.const 2 + i32.shr_u + i32.const 7 + i32.xor + i64.extend_i32_u + i64.const 21474836480 + i64.or + local.set $9 + br $block_16 + end ;; $block_20 + local.get $0 + i32.const 65535 + i32.and + local.set $5 + i32.const 1052333 + local.set $3 + i32.const 1 + local.set $4 + block $block_32 + loop $loop_3 + local.get $3 + i32.const 1 + i32.add + local.set $8 + block $block_33 + block $block_34 + local.get $3 + i32.load8_u + local.tee $2 + i32.const 24 + i32.shl + i32.const 24 + i32.shr_s + local.tee $7 + i32.const 0 + i32.lt_s + br_if $block_34 + local.get $8 + local.set $3 + br $block_33 + end ;; $block_34 + local.get $8 + i32.const 1052741 + i32.eq + br_if $block_32 + local.get $7 + i32.const 127 + i32.and + i32.const 8 + i32.shl + local.get $3 + i32.load8_u offset=1 + i32.or + local.set $2 + local.get $3 + i32.const 2 + i32.add + local.set $3 + end ;; $block_33 + local.get $5 local.get $2 - i32.const 3 + i32.sub + local.tee $5 + i32.const 0 + i32.lt_s + br_if $block_18 + local.get $4 + i32.const 1 + i32.xor + local.set $4 + local.get $3 + i32.const 1052741 i32.ne - br_if $block_46 - local.get $5 - i64.const 32 - i64.shr_u - i32.wrap_i64 - i32.const 255 - i32.and - i32.const -1 - i32.add + br_if $loop_3 + br $block_18 + end ;; $loop_3 + end ;; $block_32 + i32.const 1049644 + call $core::panicking::panic::h540eb5ee6ff533c2 + unreachable + end ;; $block_19 + local.get $0 + i32.const 65535 + i32.and + local.set $5 + i32.const 1051783 + local.set $3 + i32.const 1 + local.set $4 + loop $loop_4 + local.get $3 + i32.const 1 + i32.add + local.set $8 + block $block_35 + block $block_36 + local.get $3 + i32.load8_u local.tee $2 - i32.const 4 - i32.gt_u - br_if $block_46 - block $block_55 - local.get $2 - br_table - $block_55 $block_49 $block_51 $block_50 $block_52 - $block_55 ;; default - end ;; $block_55 - local.get $5 - i64.const -1095216660481 - i64.and - local.set $5 - i32.const 125 - local.set $0 - br $block_48 - end ;; $block_54 - i32.const 1 + i32.const 24 + i32.shl + i32.const 24 + i32.shr_s + local.tee $7 + i32.const 0 + i32.lt_s + br_if $block_36 + local.get $8 + local.set $3 + br $block_35 + end ;; $block_36 + local.get $8 + i32.const 1052097 + i32.eq + br_if $block_15 + local.get $7 + i32.const 127 + i32.and + i32.const 8 + i32.shl + local.get $3 + i32.load8_u offset=1 + i32.or local.set $2 - br $block_47 - end ;; $block_53 + local.get $3 + i32.const 2 + i32.add + local.set $3 + end ;; $block_35 + local.get $5 + local.get $2 + i32.sub + local.tee $5 i32.const 0 - local.set $2 + i32.lt_s + br_if $block_18 local.get $4 - local.set $0 - br $block_47 - end ;; $block_52 - local.get $5 + i32.const 1 + i32.xor + local.set $4 + local.get $3 + i32.const 1052097 + i32.ne + br_if $loop_4 + end ;; $loop_4 + end ;; $block_18 + i32.const 1 + local.set $3 + local.get $4 + i32.const 1 + i32.and + br_if $block_2 + end ;; $block_17 + local.get $0 + i32.const 1 + i32.or + i32.clz + i32.const 2 + i32.shr_u + i32.const 7 + i32.xor + i64.extend_i32_u + i64.const 21474836480 + i64.or + local.set $9 + end ;; $block_16 + i32.const 3 + local.set $3 + br $block_1 + end ;; $block_15 + i32.const 1049644 + call $core::panicking::panic::h540eb5ee6ff533c2 + unreachable + end ;; $block_2 + end ;; $block_1 + local.get $0 + local.set $5 + end ;; $block_0 + loop $loop_5 + local.get $3 + local.set $4 + i32.const 92 + local.set $0 + i32.const 1 + local.set $2 + i32.const 1 + local.set $3 + block $block_37 + block $block_38 + block $block_39 + block $block_40 + local.get $4 + br_table + $block_39 $block_38 $block_37 $block_40 + $block_39 ;; default + end ;; $block_40 + block $block_41 + block $block_42 + block $block_43 + block $block_44 + block $block_45 + local.get $9 + i64.const 32 + i64.shr_u + i32.wrap_i64 + i32.const 255 + i32.and + br_table + $block_39 $block_41 $block_42 $block_43 $block_44 $block_45 + $block_39 ;; default + end ;; $block_45 + local.get $9 + i64.const -1095216660481 + i64.and + i64.const 17179869184 + i64.or + local.set $9 + i32.const 3 + local.set $3 + br $block_37 + end ;; $block_44 + local.get $9 i64.const -1095216660481 i64.and - i64.const 17179869184 + i64.const 12884901888 i64.or - local.set $5 - br $block_48 - end ;; $block_51 - local.get $5 + local.set $9 + i32.const 117 + local.set $0 + i32.const 3 + local.set $3 + br $block_37 + end ;; $block_43 + local.get $9 i64.const -1095216660481 i64.and i64.const 8589934592 i64.or - local.set $5 - i32.const 123 - local.set $0 - br $block_48 - end ;; $block_50 - local.get $5 - i64.const -1095216660481 - i64.and - i64.const 12884901888 - i64.or - local.set $5 - i32.const 117 - local.set $0 - br $block_48 - end ;; $block_49 - local.get $4 - local.get $5 - i32.wrap_i64 - local.tee $13 - i32.const 2 - i32.shl - i32.const 28 - i32.and - i32.shr_u - i32.const 15 - i32.and - local.tee $2 - i32.const 48 - i32.or - local.get $2 - i32.const 87 - i32.add - local.get $2 - i32.const 10 - i32.lt_u - select - local.set $0 - block $block_56 - local.get $13 - i32.eqz - br_if $block_56 - local.get $5 - i64.const -1 - i64.add - i64.const 4294967295 - i64.and + local.set $9 + i32.const 123 + local.set $0 + i32.const 3 + local.set $3 + br $block_37 + end ;; $block_42 local.get $5 - i64.const -4294967296 + local.get $9 + i32.wrap_i64 + local.tee $4 + i32.const 2 + i32.shl + i32.const 28 + i32.and + i32.shr_u + i32.const 15 + i32.and + local.tee $3 + i32.const 48 + i32.or + local.get $3 + i32.const 87 + i32.add + local.get $3 + i32.const 10 + i32.lt_u + select + local.set $0 + block $block_46 + local.get $4 + i32.eqz + br_if $block_46 + local.get $9 + i64.const -1 + i64.add + i64.const 4294967295 + i64.and + local.get $9 + i64.const -4294967296 + i64.and + i64.or + local.set $9 + i32.const 3 + local.set $3 + br $block_37 + end ;; $block_46 + local.get $9 + i64.const -1095216660481 i64.and + i64.const 4294967296 i64.or - local.set $5 - br $block_48 - end ;; $block_56 - local.get $5 + local.set $9 + i32.const 3 + local.set $3 + br $block_37 + end ;; $block_41 + local.get $9 i64.const -1095216660481 i64.and - i64.const 4294967296 - i64.or - local.set $5 - end ;; $block_48 - i32.const 3 - local.set $2 - end ;; $block_47 - local.get $15 - i32.load - local.get $0 - local.get $14 - i32.load - i32.load offset=16 - call_indirect $13 (type $2) - i32.eqz - br_if $loop_4 - end ;; $loop_4 - i32.const 1 - return - end ;; $block_46 - local.get $1 - i32.const 24 - i32.add - i32.load - i32.const 39 - local.get $1 - i32.const 28 - i32.add - i32.load - i32.load offset=16 - call_indirect $13 (type $2) - local.set $2 + local.set $9 + i32.const 125 + local.set $0 + i32.const 3 + local.set $3 + br $block_37 + end ;; $block_39 + local.get $1 + i32.load offset=24 + i32.const 39 + local.get $1 + i32.load offset=28 + i32.load offset=16 + call_indirect $13 (type $2) + return + end ;; $block_38 + i32.const 0 + local.set $3 + local.get $5 + local.set $0 + end ;; $block_37 + local.get $1 + i32.load offset=24 + local.get $0 + local.get $1 + i32.load offset=28 + i32.load offset=16 + call_indirect $13 (type $2) + i32.eqz + br_if $loop_5 + end ;; $loop_5 end ;; $block local.get $2 ) - (func $core::fmt::num::::fmt::h5c9a921f5b6ae7be (type $2) + (func $core::fmt::num::::fmt::hb54eecdb0d5e8e4a (type $2) (param $0 i32) (param $1 i32) (result i32) @@ -11493,31 +10709,81 @@ block $block_0 block $block_1 block $block_2 - local.get $1 - i32.load - local.tee $3 - i32.const 16 - i32.and - br_if $block_2 + block $block_3 + local.get $1 + i32.load + local.tee $3 + i32.const 16 + i32.and + br_if $block_3 + local.get $3 + i32.const 32 + i32.and + br_if $block_2 + local.get $0 + i64.extend_i32_u + local.get $1 + call $core::fmt::num::imp::fmt_u64::hbf92ea5b56adc693 + local.set $0 + br $block_1 + end ;; $block_3 + i32.const 0 + local.set $3 + loop $loop + local.get $2 + local.get $3 + i32.add + i32.const 127 + i32.add + local.get $0 + i32.const 15 + i32.and + local.tee $4 + i32.const 48 + i32.or + local.get $4 + i32.const 87 + i32.add + local.get $4 + i32.const 10 + i32.lt_u + select + i32.store8 + local.get $3 + i32.const -1 + i32.add + local.set $3 + local.get $0 + i32.const 4 + i32.shr_u + local.tee $0 + br_if $loop + end ;; $loop local.get $3 - i32.const 32 - i32.and - br_if $block_1 - local.get $0 - i64.extend_i32_u + i32.const 128 + i32.add + local.tee $0 + i32.const 129 + i32.ge_u + br_if $block_0 local.get $1 - call $core::fmt::num::imp::fmt_u64::h4648b2300e699242 - local.set $0 + i32.const 1049548 + i32.const 2 local.get $2 + local.get $3 + i32.add i32.const 128 i32.add - global.set $15 - local.get $0 - return + i32.const 0 + local.get $3 + i32.sub + call $core::fmt::Formatter::pad_integral::h0e630a1dafcc54e1 + local.set $0 + br $block_1 end ;; $block_2 i32.const 0 local.set $3 - loop $loop + loop $loop_0 local.get $2 local.get $3 i32.add @@ -11530,7 +10796,7 @@ i32.const 48 i32.or local.get $4 - i32.const 87 + i32.const 55 i32.add local.get $4 i32.const 10 @@ -11545,17 +10811,17 @@ i32.const 4 i32.shr_u local.tee $0 - br_if $loop - end ;; $loop + br_if $loop_0 + end ;; $loop_0 local.get $3 i32.const 128 i32.add local.tee $0 i32.const 129 i32.ge_u - br_if $block_0 + br_if $block local.get $1 - i32.const 1049552 + i32.const 1049548 i32.const 2 local.get $2 local.get $3 @@ -11565,67 +10831,9 @@ i32.const 0 local.get $3 i32.sub - call $core::fmt::Formatter::pad_integral::h17dddcbb38d9710f + call $core::fmt::Formatter::pad_integral::h0e630a1dafcc54e1 local.set $0 - local.get $2 - i32.const 128 - i32.add - global.set $15 - local.get $0 - return end ;; $block_1 - i32.const 0 - local.set $3 - loop $loop_0 - local.get $2 - local.get $3 - i32.add - i32.const 127 - i32.add - local.get $0 - i32.const 15 - i32.and - local.tee $4 - i32.const 48 - i32.or - local.get $4 - i32.const 55 - i32.add - local.get $4 - i32.const 10 - i32.lt_u - select - i32.store8 - local.get $3 - i32.const -1 - i32.add - local.set $3 - local.get $0 - i32.const 4 - i32.shr_u - local.tee $0 - br_if $loop_0 - end ;; $loop_0 - local.get $3 - i32.const 128 - i32.add - local.tee $0 - i32.const 129 - i32.ge_u - br_if $block - local.get $1 - i32.const 1049552 - i32.const 2 - local.get $2 - local.get $3 - i32.add - i32.const 128 - i32.add - i32.const 0 - local.get $3 - i32.sub - call $core::fmt::Formatter::pad_integral::h17dddcbb38d9710f - local.set $0 local.get $2 i32.const 128 i32.add @@ -11635,81 +10843,142 @@ end ;; $block_0 local.get $0 i32.const 128 - call $core::slice::slice_index_order_fail::h719e3c8ae46c9d99 + call $core::slice::slice_index_order_fail::h52dc23ecec067d2f unreachable end ;; $block local.get $0 i32.const 128 - call $core::slice::slice_index_order_fail::h719e3c8ae46c9d99 + call $core::slice::slice_index_order_fail::h52dc23ecec067d2f unreachable ) - (func $core::fmt::ArgumentV1::show_usize::hf8ebfbd77fa8a93d (type $2) + (func $core::fmt::ArgumentV1::show_usize::h42d8eed9ea762fba (type $2) (param $0 i32) (param $1 i32) (result i32) local.get $0 i64.load32_u local.get $1 - call $core::fmt::num::imp::fmt_u64::h4648b2300e699242 + call $core::fmt::num::imp::fmt_u64::hbf92ea5b56adc693 ) - (func $core::slice::memchr::memchr::h6bde110ce4c09380 (type $12) + (func $<&T_as_core::fmt::Debug>::fmt::h71574e0037640cf9 (type $2) (param $0 i32) - (param $1 i32) - (param $2 i32) - (param $3 i32) - (local $4 i32) - (local $5 i32) - (local $6 i32) - (local $7 i32) - (local $8 i32) - (local $9 i32) - (local $10 i32) - i32.const 0 - local.set $4 - block $block - local.get $2 - i32.const 3 - i32.and - local.tee $5 - i32.eqz - br_if $block - i32.const 4 - local.get $5 - i32.sub - local.tee $5 - i32.eqz - br_if $block - local.get $2 - local.get $3 - local.get $5 - local.get $5 - local.get $3 - i32.gt_u - select - local.tee $4 - i32.add - local.set $6 - i32.const 0 - local.set $5 - local.get $1 - i32.const 255 - i32.and - local.set $7 - local.get $4 - local.set $8 - local.get $2 - local.set $9 + (param $1 i32) + (result i32) + local.get $0 + i32.load + local.get $1 + local.get $0 + i32.load offset=4 + i32.load offset=12 + call_indirect $13 (type $2) + ) + + (func $core::slice::memchr::memchr::h9a5a49faa1649096 (type $7) + (param $0 i32) + (param $1 i32) + (param $2 i32) + (param $3 i32) + (local $4 i32) + (local $5 i32) + (local $6 i32) + (local $7 i32) + (local $8 i32) + (local $9 i32) + (local $10 i32) + i32.const 0 + local.set $4 + block $block block $block_0 + local.get $2 + i32.const 3 + i32.and + local.tee $5 + i32.eqz + br_if $block_0 + i32.const 4 + local.get $5 + i32.sub + local.tee $5 + i32.eqz + br_if $block_0 + local.get $2 + local.get $3 + local.get $5 + local.get $5 + local.get $3 + i32.gt_u + select + local.tee $4 + i32.add + local.set $6 + i32.const 0 + local.set $5 + local.get $1 + i32.const 255 + i32.and + local.set $7 + local.get $4 + local.set $8 + local.get $2 + local.set $9 block $block_1 loop $loop - local.get $6 - local.get $9 - i32.sub - i32.const 3 - i32.le_u - br_if $block_1 + block $block_2 + local.get $6 + local.get $9 + i32.sub + i32.const 3 + i32.gt_u + br_if $block_2 + i32.const 0 + local.set $7 + local.get $1 + i32.const 255 + i32.and + local.set $6 + loop $loop_0 + local.get $8 + i32.eqz + br_if $block_0 + local.get $9 + local.get $7 + i32.add + local.set $10 + local.get $8 + i32.const -1 + i32.add + local.set $8 + local.get $7 + i32.const 1 + i32.add + local.set $7 + local.get $10 + i32.load8_u + local.tee $10 + local.get $6 + i32.ne + br_if $loop_0 + end ;; $loop_0 + local.get $5 + local.get $10 + local.get $1 + i32.const 255 + i32.and + i32.eq + i32.const 1 + i32.add + i32.const 1 + i32.and + i32.add + local.get $7 + i32.add + i32.const -1 + i32.add + local.set $5 + br $block_1 + end ;; $block_2 local.get $5 local.get $9 i32.load8_u @@ -11721,7 +10990,7 @@ local.get $10 local.get $7 i32.eq - br_if $block_0 + br_if $block_1 local.get $5 local.get $9 i32.const 1 @@ -11735,7 +11004,7 @@ local.get $10 local.get $7 i32.eq - br_if $block_0 + br_if $block_1 local.get $5 local.get $9 i32.const 2 @@ -11749,7 +11018,7 @@ local.get $10 local.get $7 i32.eq - br_if $block_0 + br_if $block_1 local.get $5 local.get $9 i32.const 3 @@ -11772,155 +11041,151 @@ local.get $7 i32.ne br_if $loop - br $block_0 end ;; $loop end ;; $block_1 - i32.const 0 - local.set $7 - local.get $1 - i32.const 255 - i32.and - local.set $6 - loop $loop_0 - local.get $8 - i32.eqz - br_if $block - local.get $9 - local.get $7 - i32.add - local.set $10 - local.get $8 - i32.const -1 - i32.add - local.set $8 - local.get $7 - i32.const 1 - i32.add - local.set $7 - local.get $10 - i32.load8_u - local.tee $10 - local.get $6 - i32.ne - br_if $loop_0 - end ;; $loop_0 - local.get $10 - local.get $1 - i32.const 255 - i32.and - i32.eq - i32.const 1 - i32.add i32.const 1 - i32.and - local.get $5 - i32.add - local.get $7 - i32.add - i32.const -1 - i32.add - local.set $5 + local.set $9 + br $block end ;; $block_0 - local.get $0 - local.get $5 - i32.store offset=4 - local.get $0 - i32.const 1 - i32.store - return - end ;; $block - local.get $1 - i32.const 255 - i32.and - local.set $7 - block $block_2 + local.get $1 + i32.const 255 + i32.and + local.set $7 block $block_3 - local.get $3 - i32.const 8 - i32.lt_u - br_if $block_3 - local.get $4 - local.get $3 - i32.const -8 - i32.add - local.tee $10 - i32.gt_u - br_if $block_3 - local.get $7 - i32.const 16843009 - i32.mul - local.set $5 block $block_4 - loop $loop_1 - local.get $2 - local.get $4 - i32.add - local.tee $9 - i32.const 4 - i32.add - i32.load - local.get $5 - i32.xor - local.tee $8 - i32.const -1 - i32.xor - local.get $8 - i32.const -16843009 - i32.add - i32.and - local.get $9 - i32.load - local.get $5 - i32.xor - local.tee $9 - i32.const -1 - i32.xor - local.get $9 - i32.const -16843009 - i32.add - i32.and - i32.or - i32.const -2139062144 - i32.and - br_if $block_4 - local.get $4 - i32.const 8 - i32.add - local.tee $4 - local.get $10 - i32.le_u - br_if $loop_1 - end ;; $loop_1 + local.get $3 + i32.const 8 + i32.lt_u + br_if $block_4 + local.get $4 + local.get $3 + i32.const -8 + i32.add + local.tee $10 + i32.gt_u + br_if $block_4 + local.get $7 + i32.const 16843009 + i32.mul + local.set $5 + block $block_5 + loop $loop_1 + local.get $2 + local.get $4 + i32.add + local.tee $9 + i32.const 4 + i32.add + i32.load + local.get $5 + i32.xor + local.tee $8 + i32.const -1 + i32.xor + local.get $8 + i32.const -16843009 + i32.add + i32.and + local.get $9 + i32.load + local.get $5 + i32.xor + local.tee $9 + i32.const -1 + i32.xor + local.get $9 + i32.const -16843009 + i32.add + i32.and + i32.or + i32.const -2139062144 + i32.and + br_if $block_5 + local.get $4 + i32.const 8 + i32.add + local.tee $4 + local.get $10 + i32.le_u + br_if $loop_1 + end ;; $loop_1 + end ;; $block_5 + local.get $4 + local.get $3 + i32.gt_u + br_if $block_3 end ;; $block_4 + local.get $2 local.get $4 + i32.add + local.set $9 + local.get $2 local.get $3 - i32.gt_u - br_if $block_2 - end ;; $block_3 - local.get $2 - local.get $4 - i32.add - local.set $9 - local.get $2 - local.get $3 - i32.add - local.set $2 - local.get $3 - local.get $4 - i32.sub - local.set $8 - i32.const 0 - local.set $5 - block $block_5 + i32.add + local.set $2 + local.get $3 + local.get $4 + i32.sub + local.set $8 + i32.const 0 + local.set $5 block $block_6 block $block_7 loop $loop_2 - local.get $2 - local.get $9 - i32.sub - i32.const 3 - i32.le_u - br_if $block_7 + block $block_8 + local.get $2 + local.get $9 + i32.sub + i32.const 3 + i32.gt_u + br_if $block_8 + i32.const 0 + local.set $7 + local.get $1 + i32.const 255 + i32.and + local.set $2 + loop $loop_3 + local.get $8 + i32.eqz + br_if $block_6 + local.get $9 + local.get $7 + i32.add + local.set $10 + local.get $8 + i32.const -1 + i32.add + local.set $8 + local.get $7 + i32.const 1 + i32.add + local.set $7 + local.get $10 + i32.load8_u + local.tee $10 + local.get $2 + i32.ne + br_if $loop_3 + end ;; $loop_3 + local.get $10 + local.get $1 + i32.const 255 + i32.and + i32.eq + i32.const 1 + i32.add + i32.const 1 + i32.and + local.get $5 + i32.add + local.get $7 + i32.add + i32.const -1 + i32.add + local.set $5 + br $block_7 + end ;; $block_8 local.get $5 local.get $9 i32.load8_u @@ -11932,7 +11197,7 @@ local.get $10 local.get $7 i32.eq - br_if $block_6 + br_if $block_7 local.get $5 local.get $9 i32.const 1 @@ -11946,7 +11211,7 @@ local.get $10 local.get $7 i32.eq - br_if $block_6 + br_if $block_7 local.get $5 local.get $9 i32.const 2 @@ -11960,7 +11225,7 @@ local.get $10 local.get $7 i32.eq - br_if $block_6 + br_if $block_7 local.get $5 local.get $9 i32.const 3 @@ -11983,88 +11248,44 @@ local.get $7 i32.ne br_if $loop_2 - br $block_6 end ;; $loop_2 end ;; $block_7 - i32.const 0 - local.set $7 - local.get $1 - i32.const 255 - i32.and - local.set $2 - loop $loop_3 - local.get $8 - i32.eqz - br_if $block_5 - local.get $9 - local.get $7 - i32.add - local.set $10 - local.get $8 - i32.const -1 - i32.add - local.set $8 - local.get $7 - i32.const 1 - i32.add - local.set $7 - local.get $10 - i32.load8_u - local.tee $10 - local.get $2 - i32.ne - br_if $loop_3 - end ;; $loop_3 - local.get $10 - local.get $1 - i32.const 255 - i32.and - i32.eq i32.const 1 - i32.add - i32.const 1 - i32.and + local.set $9 local.get $5 - i32.add - local.get $7 - i32.add - i32.const -1 + local.get $4 i32.add local.set $5 + br $block end ;; $block_6 - local.get $0 + i32.const 0 + local.set $9 local.get $5 + local.get $7 + i32.add local.get $4 i32.add - i32.store offset=4 - local.get $0 - i32.const 1 - i32.store - return - end ;; $block_5 - local.get $0 - local.get $5 - local.get $7 - i32.add + local.set $5 + br $block + end ;; $block_3 local.get $4 - i32.add - i32.store offset=4 - local.get $0 - i32.const 0 - i32.store - return - end ;; $block_2 - local.get $4 - local.get $3 - call $core::slice::slice_index_order_fail::h719e3c8ae46c9d99 - unreachable + local.get $3 + call $core::slice::slice_index_order_fail::h52dc23ecec067d2f + unreachable + end ;; $block + local.get $0 + local.get $5 + i32.store offset=4 + local.get $0 + local.get $9 + i32.store ) - (func $core::ptr::real_drop_in_place::h23040579a46f15a6 (type $6) + (func $core::ptr::real_drop_in_place::h4acead9551505031 (type $5) (param $0 i32) ) - (func $core::fmt::Write::write_char::he6255f3eabfceb48 (type $2) + (func $core::fmt::Write::write_char::hddeb2d341a4f7c8e (type $2) (param $0 i32) (param $1 i32) (result i32) @@ -12079,109 +11300,109 @@ i32.store offset=12 block $block block $block_0 - local.get $1 - i32.const 127 - i32.gt_u - br_if $block_0 - local.get $2 - local.get $1 - i32.store8 offset=12 - i32.const 1 - local.set $1 - br $block - end ;; $block_0 - block $block_1 - local.get $1 - i32.const 2047 - i32.gt_u - br_if $block_1 - local.get $2 - local.get $1 - i32.const 63 - i32.and - i32.const 128 - i32.or - i32.store8 offset=13 - local.get $2 - local.get $1 - i32.const 6 - i32.shr_u - i32.const 31 - i32.and - i32.const 192 - i32.or - i32.store8 offset=12 - i32.const 2 - local.set $1 - br $block - end ;; $block_1 - block $block_2 - local.get $1 - i32.const 65535 - i32.gt_u - br_if $block_2 - local.get $2 - local.get $1 - i32.const 63 - i32.and - i32.const 128 - i32.or - i32.store8 offset=14 - local.get $2 - local.get $1 - i32.const 6 - i32.shr_u - i32.const 63 - i32.and - i32.const 128 - i32.or - i32.store8 offset=13 + block $block_1 + local.get $1 + i32.const 128 + i32.lt_u + br_if $block_1 + local.get $1 + i32.const 2048 + i32.lt_u + br_if $block_0 + block $block_2 + local.get $1 + i32.const 65536 + i32.ge_u + br_if $block_2 + local.get $2 + local.get $1 + i32.const 63 + i32.and + i32.const 128 + i32.or + i32.store8 offset=14 + local.get $2 + local.get $1 + i32.const 6 + i32.shr_u + i32.const 63 + i32.and + i32.const 128 + i32.or + i32.store8 offset=13 + local.get $2 + local.get $1 + i32.const 12 + i32.shr_u + i32.const 15 + i32.and + i32.const 224 + i32.or + i32.store8 offset=12 + i32.const 3 + local.set $1 + br $block + end ;; $block_2 + local.get $2 + local.get $1 + i32.const 63 + i32.and + i32.const 128 + i32.or + i32.store8 offset=15 + local.get $2 + local.get $1 + i32.const 18 + i32.shr_u + i32.const 240 + i32.or + i32.store8 offset=12 + local.get $2 + local.get $1 + i32.const 6 + i32.shr_u + i32.const 63 + i32.and + i32.const 128 + i32.or + i32.store8 offset=14 + local.get $2 + local.get $1 + i32.const 12 + i32.shr_u + i32.const 63 + i32.and + i32.const 128 + i32.or + i32.store8 offset=13 + i32.const 4 + local.set $1 + br $block + end ;; $block_1 local.get $2 local.get $1 - i32.const 12 - i32.shr_u - i32.const 15 - i32.and - i32.const 224 - i32.or i32.store8 offset=12 - i32.const 3 + i32.const 1 local.set $1 br $block - end ;; $block_2 + end ;; $block_0 local.get $2 local.get $1 i32.const 63 i32.and i32.const 128 i32.or - i32.store8 offset=15 - local.get $2 - local.get $1 - i32.const 18 - i32.shr_u - i32.const 240 - i32.or - i32.store8 offset=12 + i32.store8 offset=13 local.get $2 local.get $1 i32.const 6 i32.shr_u - i32.const 63 - i32.and - i32.const 128 - i32.or - i32.store8 offset=14 - local.get $2 - local.get $1 - i32.const 12 - i32.shr_u - i32.const 63 + i32.const 31 i32.and - i32.const 128 + i32.const 192 i32.or - i32.store8 offset=13 - i32.const 4 + i32.store8 offset=12 + i32.const 2 local.set $1 end ;; $block local.get $0 @@ -12189,7 +11410,7 @@ i32.const 12 i32.add local.get $1 - call $::write_str::h7d69c319e62567ea + call $::write_str::h3cfa2330727f68d0 local.set $1 local.get $2 i32.const 16 @@ -12198,7 +11419,7 @@ local.get $1 ) - (func $core::fmt::Write::write_fmt::hd43133c0fc77f05d (type $2) + (func $core::fmt::Write::write_fmt::hdcf4af1ee4f15333 (type $2) (param $0 i32) (param $1 i32) (result i32) @@ -12238,11 +11459,11 @@ local.get $2 i32.const 4 i32.add - i32.const 1054528 + i32.const 1054640 local.get $2 i32.const 8 i32.add - call $core::fmt::write::h8cfd01c67a4a46c9 + call $core::fmt::write::h9ffb25a5a03fc281 local.set $1 local.get $2 i32.const 32 @@ -12251,11 +11472,7 @@ local.get $1 ) - (func $core::ptr::real_drop_in_place::h0013f08692be52e6 (type $6) - (param $0 i32) - ) - - (func $<&mut_W_as_core::fmt::Write>::write_str::h0573ddc37a895899 (type $1) + (func $<&mut_W_as_core::fmt::Write>::write_str::heb9faa6c9b7a53d6 (type $1) (param $0 i32) (param $1 i32) (param $2 i32) @@ -12264,10 +11481,10 @@ i32.load local.get $1 local.get $2 - call $::write_str::h7d69c319e62567ea + call $::write_str::h3cfa2330727f68d0 ) - (func $<&mut_W_as_core::fmt::Write>::write_char::hc454648cbae23e1c (type $2) + (func $<&mut_W_as_core::fmt::Write>::write_char::h66c6e1685ede49cb (type $2) (param $0 i32) (param $1 i32) (result i32) @@ -12285,10 +11502,85 @@ i32.store offset=12 block $block block $block_0 - local.get $1 - i32.const 127 - i32.gt_u - br_if $block_0 + block $block_1 + local.get $1 + i32.const 128 + i32.lt_u + br_if $block_1 + local.get $1 + i32.const 2048 + i32.lt_u + br_if $block_0 + block $block_2 + local.get $1 + i32.const 65536 + i32.ge_u + br_if $block_2 + local.get $2 + local.get $1 + i32.const 63 + i32.and + i32.const 128 + i32.or + i32.store8 offset=14 + local.get $2 + local.get $1 + i32.const 6 + i32.shr_u + i32.const 63 + i32.and + i32.const 128 + i32.or + i32.store8 offset=13 + local.get $2 + local.get $1 + i32.const 12 + i32.shr_u + i32.const 15 + i32.and + i32.const 224 + i32.or + i32.store8 offset=12 + i32.const 3 + local.set $1 + br $block + end ;; $block_2 + local.get $2 + local.get $1 + i32.const 63 + i32.and + i32.const 128 + i32.or + i32.store8 offset=15 + local.get $2 + local.get $1 + i32.const 18 + i32.shr_u + i32.const 240 + i32.or + i32.store8 offset=12 + local.get $2 + local.get $1 + i32.const 6 + i32.shr_u + i32.const 63 + i32.and + i32.const 128 + i32.or + i32.store8 offset=14 + local.get $2 + local.get $1 + i32.const 12 + i32.shr_u + i32.const 63 + i32.and + i32.const 128 + i32.or + i32.store8 offset=13 + i32.const 4 + local.set $1 + br $block + end ;; $block_1 local.get $2 local.get $1 i32.store8 offset=12 @@ -12296,98 +11588,23 @@ local.set $1 br $block end ;; $block_0 - block $block_1 - local.get $1 - i32.const 2047 - i32.gt_u - br_if $block_1 - local.get $2 - local.get $1 - i32.const 63 - i32.and - i32.const 128 - i32.or - i32.store8 offset=13 - local.get $2 - local.get $1 - i32.const 6 - i32.shr_u - i32.const 31 - i32.and - i32.const 192 - i32.or - i32.store8 offset=12 - i32.const 2 - local.set $1 - br $block - end ;; $block_1 - block $block_2 - local.get $1 - i32.const 65535 - i32.gt_u - br_if $block_2 - local.get $2 - local.get $1 - i32.const 63 - i32.and - i32.const 128 - i32.or - i32.store8 offset=14 - local.get $2 - local.get $1 - i32.const 6 - i32.shr_u - i32.const 63 - i32.and - i32.const 128 - i32.or - i32.store8 offset=13 - local.get $2 - local.get $1 - i32.const 12 - i32.shr_u - i32.const 15 - i32.and - i32.const 224 - i32.or - i32.store8 offset=12 - i32.const 3 - local.set $1 - br $block - end ;; $block_2 local.get $2 local.get $1 i32.const 63 i32.and i32.const 128 i32.or - i32.store8 offset=15 - local.get $2 - local.get $1 - i32.const 18 - i32.shr_u - i32.const 240 - i32.or - i32.store8 offset=12 + i32.store8 offset=13 local.get $2 local.get $1 i32.const 6 i32.shr_u - i32.const 63 - i32.and - i32.const 128 - i32.or - i32.store8 offset=14 - local.get $2 - local.get $1 - i32.const 12 - i32.shr_u - i32.const 63 + i32.const 31 i32.and - i32.const 128 + i32.const 192 i32.or - i32.store8 offset=13 - i32.const 4 + i32.store8 offset=12 + i32.const 2 local.set $1 end ;; $block local.get $0 @@ -12395,7 +11612,7 @@ i32.const 12 i32.add local.get $1 - call $::write_str::h7d69c319e62567ea + call $::write_str::h3cfa2330727f68d0 local.set $1 local.get $2 i32.const 16 @@ -12404,7 +11621,7 @@ local.get $1 ) - (func $<&mut_W_as_core::fmt::Write>::write_fmt::hc0aee806cb052974 (type $2) + (func $<&mut_W_as_core::fmt::Write>::write_fmt::hf64f7e3f726250ce (type $2) (param $0 i32) (param $1 i32) (result i32) @@ -12445,11 +11662,11 @@ local.get $2 i32.const 4 i32.add - i32.const 1054528 + i32.const 1054640 local.get $2 i32.const 8 i32.add - call $core::fmt::write::h8cfd01c67a4a46c9 + call $core::fmt::write::h9ffb25a5a03fc281 local.set $1 local.get $2 i32.const 32 @@ -12458,6 +11675,22 @@ local.get $1 ) + (func $::fmt::h99349d0cc7fe11e2 (type $2) + (param $0 i32) + (param $1 i32) + (result i32) + local.get $1 + i32.load offset=24 + i32.const 1054671 + i32.const 5 + local.get $1 + i32.const 28 + i32.add + i32.load + i32.load offset=12 + call_indirect $13 (type $1) + ) + (func $memcpy (type $1) (param $0 i32) (param $1 i32) @@ -12501,46 +11734,48 @@ (local $3 i32) (local $4 i32) (local $5 i32) + i32.const 0 + local.set $3 block $block + local.get $2 + i32.eqz + br_if $block block $block_0 - local.get $2 - i32.eqz - br_if $block_0 - i32.const 0 - local.set $3 loop $loop local.get $0 - local.get $3 - i32.add i32.load8_u local.tee $4 local.get $1 - local.get $3 - i32.add i32.load8_u local.tee $5 i32.ne - br_if $block - local.get $3 + br_if $block_0 + local.get $1 i32.const 1 i32.add - local.tee $3 + local.set $1 + local.get $0 + i32.const 1 + i32.add + local.set $0 local.get $2 - i32.lt_u - br_if $loop + i32.const -1 + i32.add + local.tee $2 + i32.eqz + br_if $block + br $loop end ;; $loop - i32.const 0 - return end ;; $block_0 - i32.const 0 - return + local.get $4 + local.get $5 + i32.sub + local.set $3 end ;; $block - local.get $4 - local.get $5 - i32.sub + local.get $3 ) ;; User section "producers": - ;; "\02\08language\01\04Rust\042018\0cprocessed-" - ;; "by\01\05rustc\1d1.36.0 (a53f9df32 2019" - ;; "-07-03)" + ;; "\02\08language\01\04Rust\00\0cprocessed-by\01\05" + ;; "rustc%1.39.0-nightly (2111aed0a " + ;; "2019-08-17)" ) \ No newline at end of file diff --git a/test/extensions/wasm/test_data/missing_cpp.wasm b/test/extensions/wasm/test_data/missing_cpp.wasm index a00eae0cc7343..2e3db3135d4f0 100644 Binary files a/test/extensions/wasm/test_data/missing_cpp.wasm and b/test/extensions/wasm/test_data/missing_cpp.wasm differ diff --git a/test/extensions/wasm/test_data/missing_cpp.wat b/test/extensions/wasm/test_data/missing_cpp.wat index a2c7955941ea1..3996dba231c2f 100644 --- a/test/extensions/wasm/test_data/missing_cpp.wat +++ b/test/extensions/wasm/test_data/missing_cpp.wat @@ -7058,5 +7058,5 @@ call $abort ) ;; User section "emscripten_metadata": - ;; "\00\01\00\03\80\02\17\80\08\e0\98\c0\02\c0\18\d0\18" + ;; "\00\02\00\04\00\80\02\17\80\08\e0\98\c0\02\c0\18\d0\18" ) \ No newline at end of file diff --git a/test/extensions/wasm/test_data/segv_cpp.wasm b/test/extensions/wasm/test_data/segv_cpp.wasm index 07c81fc53bb02..da9497d585275 100644 Binary files a/test/extensions/wasm/test_data/segv_cpp.wasm and b/test/extensions/wasm/test_data/segv_cpp.wasm differ diff --git a/test/extensions/wasm/test_data/segv_cpp.wat b/test/extensions/wasm/test_data/segv_cpp.wat index 9f0f9a86ea901..681f26ce0748b 100644 --- a/test/extensions/wasm/test_data/segv_cpp.wat +++ b/test/extensions/wasm/test_data/segv_cpp.wat @@ -12512,5 +12512,5 @@ call $abort ) ;; User section "emscripten_metadata": - ;; "\00\01\00\03\80\02\1d\80\08\90\a1\c0\02\f0 \80!" + ;; "\00\02\00\04\00\80\02\1d\80\08\90\a1\c0\02\f0 \80!" ) \ No newline at end of file diff --git a/test/extensions/wasm/test_data/stats_cpp.wasm b/test/extensions/wasm/test_data/stats_cpp.wasm index 83574cdf569f8..3bb294399084b 100644 Binary files a/test/extensions/wasm/test_data/stats_cpp.wasm and b/test/extensions/wasm/test_data/stats_cpp.wasm differ diff --git a/test/extensions/wasm/test_data/stats_cpp.wat b/test/extensions/wasm/test_data/stats_cpp.wat index 06abe7a567eba..7d79228ba2e65 100644 --- a/test/extensions/wasm/test_data/stats_cpp.wat +++ b/test/extensions/wasm/test_data/stats_cpp.wat @@ -28802,5 +28802,5 @@ call $abort ) ;; User section "emscripten_metadata": - ;; "\00\01\00\03\80\02'\80\08\b0\ab\c0\02\90+\a0+" + ;; "\00\02\00\04\00\80\02'\80\08\b0\ab\c0\02\90+\a0+" ) \ No newline at end of file diff --git a/test/extensions/wasm/wasm_test.cc b/test/extensions/wasm/wasm_test.cc index 24c19154bc3cb..bb6e5d00bd3a9 100644 --- a/test/extensions/wasm/wasm_test.cc +++ b/test/extensions/wasm/wasm_test.cc @@ -175,10 +175,10 @@ TEST_P(WasmTest, EmscriptenVersion) { uint32_t major = 9, minor = 9, abi_major = 9, abi_minor = 9; EXPECT_TRUE(wasm->getEmscriptenVersion(&major, &minor, &abi_major, &abi_minor)); EXPECT_EQ(major, 0); - EXPECT_LE(minor, 1); - // Up to (at least) emsdk 1.38.39. + EXPECT_LE(minor, 2); + // Up to (at least) emsdk 1.38.42. EXPECT_EQ(abi_major, 0); - EXPECT_LE(abi_minor, 3); + EXPECT_LE(abi_minor, 4); } TEST_P(WasmTest, IntrinsicGlobals) { @@ -197,7 +197,7 @@ TEST_P(WasmTest, IntrinsicGlobals) { EXPECT_FALSE(code.empty()); auto context = std::make_unique(wasm.get()); EXPECT_CALL(*context, scriptLog_(spdlog::level::info, Eq("NaN nan"))); - EXPECT_CALL(*context, scriptLog_(spdlog::level::warn, Eq("inf inf"))); + EXPECT_CALL(*context, scriptLog_(spdlog::level::warn, Eq("inf inf"))).Times(3); EXPECT_TRUE(wasm->initialize(code, "", false)); wasm->startForTesting(std::move(context)); } diff --git a/test/test_common/environment.cc b/test/test_common/environment.cc index 86b0a0ec3bdd1..d0f0577f47635 100644 --- a/test/test_common/environment.cc +++ b/test/test_common/environment.cc @@ -8,7 +8,7 @@ #if defined(_LIBCPP_VERSION) && !defined(__APPLE__) #include #elif defined __has_include -#if __has_include() +#if __has_include() && !defined(__APPLE__) #include #endif #endif @@ -44,7 +44,7 @@ std::string makeTempDir(char* name_template) { name_template, strerror(errno))); #if defined(_LIBCPP_VERSION) && _LIBCPP_VERSION >= 9000 && !defined(__APPLE__) std::__fs::filesystem::create_directories(dirname); -#elif defined __cpp_lib_experimental_filesystem +#elif defined __cpp_lib_experimental_filesystem && !defined(__APPLE__) std::experimental::filesystem::create_directories(dirname); #endif #else @@ -102,7 +102,7 @@ void TestEnvironment::createParentPath(const std::string& path) { // We don't want to rely on mkdir etc. if we can avoid it, since it might not // exist in some environments such as ClusterFuzz. std::__fs::filesystem::create_directories(std::__fs::filesystem::path(path).parent_path()); -#elif defined __cpp_lib_experimental_filesystem +#elif defined __cpp_lib_experimental_filesystem && !defined(__APPLE__) std::experimental::filesystem::create_directories( std::experimental::filesystem::path(path).parent_path()); #else @@ -120,7 +120,7 @@ void TestEnvironment::removePath(const std::string& path) { return; } std::__fs::filesystem::remove_all(std::__fs::filesystem::path(path)); -#elif defined __cpp_lib_experimental_filesystem +#elif defined __cpp_lib_experimental_filesystem && !defined(__APPLE__) if (!std::experimental::filesystem::exists(path)) { return; }