diff options
author | Sam Clegg <sbc@chromium.org> | 2021-04-21 14:13:35 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-21 14:13:35 -0700 |
commit | cb776da297a845e15171405b7f7518619122d7aa (patch) | |
tree | b61d7702b1403e7b433c5ee788440a8e9d042671 /src/tools/wasm-metadce.cpp | |
parent | 3d8fafdffa9799d73c9cfd5e0df11f9ffe53b34f (diff) | |
download | binaryen-cb776da297a845e15171405b7f7518619122d7aa.tar.gz binaryen-cb776da297a845e15171405b7f7518619122d7aa.tar.bz2 binaryen-cb776da297a845e15171405b7f7518619122d7aa.zip |
wasm-metadce: Keep symbols alive if there is any refeence to corresponding GOT.mem or GOT.func import (#3831)
This prevents the DCE of used symbols in emscripten's `MAIN_MODULE=2`
use case which we are starting to use and recommend a lot more.
Part of the fix for https://github.com/emscripten-core/emscripten/issues/13786
Diffstat (limited to 'src/tools/wasm-metadce.cpp')
-rw-r--r-- | src/tools/wasm-metadce.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/tools/wasm-metadce.cpp b/src/tools/wasm-metadce.cpp index 5ddf52dae..a0890c8c4 100644 --- a/src/tools/wasm-metadce.cpp +++ b/src/tools/wasm-metadce.cpp @@ -26,6 +26,7 @@ #include <memory> +#include "asmjs/shared-constants.h" #include "ir/element-utils.h" #include "ir/module-utils.h" #include "pass.h" @@ -71,6 +72,16 @@ struct MetaDCEGraph { typedef Name ImportId; ImportId getImportId(Name module, Name base) { + if (module == "GOT.func" || module == "GOT.mem") { + // If a module imports a symbol from `GOT.func` of `GOT.mem` that + // corresponds to the address of a symbol in the `env` namespace. The + // `GOT.func` and `GOT.mem` don't actually exist anywhere but reference + // other symbols. For this reason we treat an import from one of these + // namespaces as an import from the `env` namespace. (i.e. any usage of + // a `GOT.mem` or `GOT.func` import requires the corresponding env import + // to be kept alive. + module = ENV; + } return std::string(module.str) + " (*) " + std::string(base.str); } |