diff options
author | Wouter van Oortmerssen <aardappel@gmail.com> | 2020-12-14 14:18:16 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-14 14:18:16 -0800 |
commit | b4928af5e70c85d309f7a074ed80bbcd1ee414f9 (patch) | |
tree | d78f645fdacb4f2c961c2ab689b442b1e131355f /src/wasm/wasm-emscripten.cpp | |
parent | c1ab2b33f63d5e79143e05de4e8e9e0ddd970e77 (diff) | |
download | binaryen-b4928af5e70c85d309f7a074ed80bbcd1ee414f9.tar.gz binaryen-b4928af5e70c85d309f7a074ed80bbcd1ee414f9.tar.bz2 binaryen-b4928af5e70c85d309f7a074ed80bbcd1ee414f9.zip |
Fixed wasm-emscripten-finalize AsmConstWalker not handling 64-bit pointers (#3431)
Also improved the LLD test scripts to accomodate 64-bit tests.
Diffstat (limited to 'src/wasm/wasm-emscripten.cpp')
-rw-r--r-- | src/wasm/wasm-emscripten.cpp | 21 |
1 files changed, 15 insertions, 6 deletions
diff --git a/src/wasm/wasm-emscripten.cpp b/src/wasm/wasm-emscripten.cpp index f8dc16a32..fe9aeffeb 100644 --- a/src/wasm/wasm-emscripten.cpp +++ b/src/wasm/wasm-emscripten.cpp @@ -177,7 +177,7 @@ const char* stringAtAddr(Module& wasm, std::string codeForConstAddr(Module& wasm, std::vector<Address> const& segmentOffsets, - int32_t address) { + int64_t address) { const char* str = stringAtAddr(wasm, segmentOffsets, address); if (!str) { Fatal() << "unable to find data for ASM/EM_JS const at: " << address; @@ -232,7 +232,7 @@ struct AsmConstWalker : public LinearExecutionWalker<AsmConstWalker> { void process(); private: - void createAsmConst(uint32_t id, std::string code, Signature sig, Name name); + void createAsmConst(uint64_t id, std::string code, Signature sig, Name name); Signature asmConstSig(Signature baseSig); Name nameForImportWithSig(Signature sig, Proxying proxy); void addImports(); @@ -291,7 +291,7 @@ void AsmConstWalker::visitCall(Call* curr) { } if (auto* bin = arg->dynCast<Binary>()) { - if (bin->op == AddInt32) { + if (bin->op == AddInt32 || bin->op == AddInt64) { // In the dynamic linking case the address of the string constant // is the result of adding its offset to __memory_base. // In this case are only looking for the offset from __memory_base @@ -301,12 +301,21 @@ void AsmConstWalker::visitCall(Call* curr) { } } + if (auto* unary = arg->dynCast<Unary>()) { + if (unary->op == WrapInt64) { + // This cast may be inserted around the string constant in the + // Memory64Lowering pass. + arg = unary->value; + continue; + } + } + Fatal() << "Unexpected arg0 type (" << getExpressionName(arg) << ") in call to: " << importName; } auto* value = arg->cast<Const>(); - int32_t address = value->value.geti32(); + int64_t address = value->value.getInteger(); auto code = codeForConstAddr(wasm, segmentOffsets, address); createAsmConst(address, code, sig, importName); } @@ -328,7 +337,7 @@ void AsmConstWalker::process() { addImports(); } -void AsmConstWalker::createAsmConst(uint32_t id, +void AsmConstWalker::createAsmConst(uint64_t id, std::string code, Signature sig, Name name) { @@ -388,7 +397,7 @@ struct EmJsWalker : public PostWalker<EmJsWalker> { Fatal() << "Unexpected generated __em_js__ function body: " << curr->name; } auto* addrConst = consts.list[0]; - int32_t address = addrConst->value.geti32(); + int64_t address = addrConst->value.getInteger(); auto code = codeForConstAddr(wasm, segmentOffsets, address); codeByName[funcName] = code; } |