summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSoni L. <EnderMoneyMod@gmail.com>2024-10-07 20:03:35 -0300
committerGitHub <noreply@github.com>2024-10-07 16:03:35 -0700
commite1d84ff0466c269a457056a0420d1b6cc5cf3815 (patch)
tree4a909c0048a3a51c2cfba6084ba968913529e395 /src
parent7d229cf0965a41fe22338f08895231190573ca24 (diff)
downloadwabt-e1d84ff0466c269a457056a0420d1b6cc5cf3815.tar.gz
wabt-e1d84ff0466c269a457056a0420d1b6cc5cf3815.tar.bz2
wabt-e1d84ff0466c269a457056a0420d1b6cc5cf3815.zip
wasm-interp: Fix catch handlers correctly (#2483)
local decl count != local count
Diffstat (limited to 'src')
-rw-r--r--src/binary-reader-logging.cc1
-rw-r--r--src/binary-reader.cc1
-rw-r--r--src/interp/binary-reader-interp.cc32
3 files changed, 21 insertions, 13 deletions
diff --git a/src/binary-reader-logging.cc b/src/binary-reader-logging.cc
index 653e1e48..ea427391 100644
--- a/src/binary-reader-logging.cc
+++ b/src/binary-reader-logging.cc
@@ -795,6 +795,7 @@ DEFINE_BEGIN(BeginCodeSection)
DEFINE_INDEX(OnFunctionBodyCount)
DEFINE_INDEX(EndFunctionBody)
DEFINE_INDEX(OnLocalDeclCount)
+DEFINE0(EndLocalDecls)
DEFINE_LOAD_STORE_OPCODE(OnAtomicLoadExpr);
DEFINE_LOAD_STORE_OPCODE(OnAtomicRmwExpr);
DEFINE_LOAD_STORE_OPCODE(OnAtomicRmwCmpxchgExpr);
diff --git a/src/binary-reader.cc b/src/binary-reader.cc
index b4ad5b0c..b68562dd 100644
--- a/src/binary-reader.cc
+++ b/src/binary-reader.cc
@@ -2815,6 +2815,7 @@ Result BinaryReader::ReadCodeSection(Offset section_size) {
ERROR_UNLESS(IsConcreteType(local_type), "expected valid local type");
CALLBACK(OnLocalDecl, k, num_local_types, local_type);
}
+ CALLBACK(EndLocalDecls);
if (options_.skip_function_bodies) {
state_.offset = end_offset;
diff --git a/src/interp/binary-reader-interp.cc b/src/interp/binary-reader-interp.cc
index f4d05a19..dc7ec410 100644
--- a/src/interp/binary-reader-interp.cc
+++ b/src/interp/binary-reader-interp.cc
@@ -147,6 +147,7 @@ class BinaryReaderInterp : public BinaryReaderNop {
Result BeginFunctionBody(Index index, Offset size) override;
Result OnLocalDeclCount(Index count) override;
Result OnLocalDecl(Index decl_index, Index count, Type type) override;
+ Result EndLocalDecls() override;
Result OnOpcode(Opcode Opcode) override;
Result OnAtomicLoadExpr(Opcode opcode,
@@ -849,17 +850,6 @@ Result BinaryReaderInterp::EndFunctionBody(Index index) {
Result BinaryReaderInterp::OnLocalDeclCount(Index count) {
local_decl_count_ = count;
local_count_ = 0;
- // Continuation of the implicit func label, used for exception handling. (See
- // BeginFunctionBody.)
- // We need the local count for this, so we must do it here.
- // NOTE: we don't count the parameters, as they're not part of the frame.
- func_->handlers.push_back(HandlerDesc{HandlerKind::Catch,
- istream_.end(),
- Istream::kInvalidOffset,
- {},
- {Istream::kInvalidOffset},
- static_cast<u32>(local_decl_count_),
- 0});
return Result::Ok;
}
@@ -870,10 +860,26 @@ Result BinaryReaderInterp::OnLocalDecl(Index decl_index,
local_count_ += count;
func_->locals.push_back(LocalDesc{type, count, local_count_});
+ return Result::Ok;
+}
- if (decl_index == local_decl_count_ - 1) {
+Result BinaryReaderInterp::EndLocalDecls() {
+ if (local_count_ != 0) {
istream_.Emit(Opcode::InterpAlloca, local_count_);
}
+ // Continuation of the implicit func label, used for exception handling. (See
+ // BeginFunctionBody.)
+ // We need the local count for this, which is only available after processing
+ // all local decls.
+ // NOTE: we don't count the parameters, as they're not part of the frame.
+ func_->handlers.push_back(HandlerDesc{HandlerKind::Catch,
+ istream_.end(),
+ Istream::kInvalidOffset,
+ {},
+ {Istream::kInvalidOffset},
+ static_cast<u32>(local_count_),
+ 0});
+
return Result::Ok;
}
@@ -1522,7 +1528,7 @@ Result BinaryReaderInterp::OnTryExpr(Type sig_type) {
validator_.GetCatchCount(label_stack_.size() - 1, &exn_stack_height));
// NOTE: *NOT* GetLocalCount. we don't count the parameters, as they're not
// part of the frame.
- u32 value_stack_height = validator_.type_stack_size() + local_decl_count_;
+ u32 value_stack_height = validator_.type_stack_size() + local_count_;
CHECK_RESULT(validator_.OnTry(GetLocation(), sig_type));
// Push a label that tracks mapping of exn -> catch
PushLabel(LabelKind::Try, Istream::kInvalidOffset, Istream::kInvalidOffset,