summaryrefslogtreecommitdiff
path: root/src/passes/StackCheck.cpp
diff options
context:
space:
mode:
authorSam Clegg <sbc@chromium.org>2022-05-04 08:27:16 -0700
committerGitHub <noreply@github.com>2022-05-04 08:27:16 -0700
commitcc192b7ed0d80647c39442227f68b907528bc6de (patch)
treeaaabdc598b1b6fd21b66ac5f3cbf71e199656032 /src/passes/StackCheck.cpp
parent60e602896e82e988e4fcbfac74aa9639b4ac8814 (diff)
downloadbinaryen-cc192b7ed0d80647c39442227f68b907528bc6de.tar.gz
binaryen-cc192b7ed0d80647c39442227f68b907528bc6de.tar.bz2
binaryen-cc192b7ed0d80647c39442227f68b907528bc6de.zip
Update StackCheck for memory64 (#4636)
Diffstat (limited to 'src/passes/StackCheck.cpp')
-rw-r--r--src/passes/StackCheck.cpp18
1 files changed, 11 insertions, 7 deletions
diff --git a/src/passes/StackCheck.cpp b/src/passes/StackCheck.cpp
index 07cf46aee..4b1054597 100644
--- a/src/passes/StackCheck.cpp
+++ b/src/passes/StackCheck.cpp
@@ -21,6 +21,7 @@
//
#include "abi/js.h"
+#include "ir/abstract.h"
#include "ir/import-utils.h"
#include "ir/names.h"
#include "pass.h"
@@ -87,16 +88,17 @@ struct EnforceStackLimits : public WalkerPass<PostWalker<EnforceStackLimits>> {
} else {
handlerExpr = builder.makeUnreachable();
}
+
// If it is >= the base or <= the limit, then error.
auto check = builder.makeIf(
builder.makeBinary(
BinaryOp::OrInt32,
builder.makeBinary(
- BinaryOp::GtUInt32,
+ Abstract::getBinary(stackPointer->type, Abstract::GtU),
builder.makeLocalTee(newSP, value, stackPointer->type),
builder.makeGlobalGet(stackBase->name, stackBase->type)),
builder.makeBinary(
- BinaryOp::LtUInt32,
+ Abstract::getBinary(stackPointer->type, Abstract::LtU),
builder.makeLocalGet(newSP, stackPointer->type),
builder.makeGlobalGet(stackLimit->name, stackLimit->type))),
handlerExpr);
@@ -147,12 +149,12 @@ struct StackCheck : public Pass {
auto stackBase =
module->addGlobal(builder.makeGlobal(stackBaseName,
stackPointer->type,
- builder.makeConst(int32_t(0)),
+ builder.makeConstPtr(0),
Builder::Mutable));
auto stackLimit =
module->addGlobal(builder.makeGlobal(stackLimitName,
stackPointer->type,
- builder.makeConst(int32_t(0)),
+ builder.makeConstPtr(0),
Builder::Mutable));
// Instrument all the code.
@@ -162,10 +164,12 @@ struct StackCheck : public Pass {
// Generate the exported function.
auto limitsFunc = builder.makeFunction(
- SET_STACK_LIMITS, Signature({Type::i32, Type::i32}, Type::none), {});
- auto* getBase = builder.makeLocalGet(0, Type::i32);
+ SET_STACK_LIMITS,
+ Signature({stackPointer->type, stackPointer->type}, Type::none),
+ {});
+ auto* getBase = builder.makeLocalGet(0, stackPointer->type);
auto* storeBase = builder.makeGlobalSet(stackBaseName, getBase);
- auto* getLimit = builder.makeLocalGet(1, Type::i32);
+ auto* getLimit = builder.makeLocalGet(1, stackPointer->type);
auto* storeLimit = builder.makeGlobalSet(stackLimitName, getLimit);
limitsFunc->body = builder.makeBlock({storeBase, storeLimit});
addExportedFunction(*module, std::move(limitsFunc));