diff options
author | Ben Smith <binji@chromium.org> | 2020-02-28 20:42:39 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-28 20:42:39 -0800 |
commit | 7914f5f0182b5282d9de8399ba3ff264b5b5dea5 (patch) | |
tree | 308294028978a3c438895017fa8f4770ba9b831f /src/shared-validator.cc | |
parent | 2d5bdb4a3a1bf8541dda300ffc2d35ffd9d4f84b (diff) | |
download | wabt-7914f5f0182b5282d9de8399ba3ff264b5b5dea5.tar.gz wabt-7914f5f0182b5282d9de8399ba3ff264b5b5dea5.tar.bz2 wabt-7914f5f0182b5282d9de8399ba3ff264b5b5dea5.zip |
Update testsuite (w/ reference-types changes) (#1351)
The new table-sub test, checks whether the subtyping is handled
properly w/ table.init and table.copy instructions.
The BeginElemSegment callback can't pass the element type anymore, since
it's not known yet. The callback also can't be deferred, since the
BeginElemSegmentInitExpr callback has to happen after the
BeginElemSegment callback, but the reference type is not always known
until after the initializer expression is read. To work around this, I
added a new OnElemSegmentElemType callback.
Other element segment changes:
* The element type must be tracked in the SharedValidator
* A subtle fix: when writing out the segment flags, we need to take into
account whether the element type of the segment is not funcref, even
if there are no element expressions. In that case, we have to use flag
bit 0x4 (SegUseElemExprs).
In addition, the TableCopy and TableInit instructions weren't handling
table indexes fully.
* TableCopy variables are read in the parser (both optional)
* TableCopy names are now resolved + applied
* TableCopy indexes are now validated
* TableInit table variables are read in the parser; this is subtle,
since the text format has order $table $segment, but the $table is
optional.
Diffstat (limited to 'src/shared-validator.cc')
-rw-r--r-- | src/shared-validator.cc | 31 |
1 files changed, 20 insertions, 11 deletions
diff --git a/src/shared-validator.cc b/src/shared-validator.cc index 708d6189..e286dc96 100644 --- a/src/shared-validator.cc +++ b/src/shared-validator.cc @@ -287,16 +287,19 @@ Result SharedValidator::OnStart(const Location& loc, Var func_var) { Result SharedValidator::OnElemSegment(const Location& loc, Var table_var, - SegmentKind kind, - Type elem_type) { + SegmentKind kind) { Result result = Result::Ok; if (kind == SegmentKind::Active) { result |= CheckTableIndex(table_var); } - ++elem_segments_; + elems_.push_back(ElemType{Type::Void}); // Updated in OnElemSegmentElemType. return result; } +void SharedValidator::OnElemSegmentElemType(Type elem_type) { + elems_.back().element = elem_type; +} + Result SharedValidator::OnElemSegmentInitExpr_Const(const Location& loc, Type type) { return CheckType(loc, type, Type::I32, "elem segment offset"); @@ -450,8 +453,7 @@ Result SharedValidator::CheckMemoryIndex(Var memory_var, MemoryType* out) { } // TODO: Remove; this is only used to match previous error output. -Result SharedValidator::CheckMemoryIndex(Var memory_var, - Opcode opcode) { +Result SharedValidator::CheckMemoryIndex(Var memory_var, Opcode opcode) { if (memory_var.index() >= memories_.size()) { return PrintError(memory_var.loc, "%s requires an imported or defined memory.", @@ -483,8 +485,9 @@ Result SharedValidator::CheckEventIndex(Var event_var, EventType* out) { return CheckIndexWithValue(event_var, events_, out, "event"); } -Result SharedValidator::CheckElemSegmentIndex(Var elem_segment_var) { - return CheckIndex(elem_segment_var, elem_segments_, "elem_segment"); +Result SharedValidator::CheckElemSegmentIndex(Var elem_segment_var, + ElemType* out) { + return CheckIndexWithValue(elem_segment_var, elems_, out, "elem_segment"); } Result SharedValidator::CheckDataSegmentIndex(Var data_segment_var) { @@ -1052,9 +1055,12 @@ Result SharedValidator::OnTableCopy(const Location& loc, Var src_var) { Result result = Result::Ok; expr_loc_ = &loc; - result |= CheckTableIndex(dst_var, Opcode::TableCopy); - result |= CheckTableIndex(src_var, Opcode::TableCopy); + TableType dst_table; + TableType src_table; + result |= CheckTableIndex(dst_var, &dst_table); + result |= CheckTableIndex(src_var, &src_table); result |= typechecker_.OnTableCopy(); + result |= CheckType(loc, src_table.element, dst_table.element, "table.copy"); return result; } @@ -1090,9 +1096,12 @@ Result SharedValidator::OnTableInit(const Location& loc, Var table_var) { Result result = Result::Ok; expr_loc_ = &loc; - result |= CheckTableIndex(table_var, Opcode::TableInit); - result |= CheckElemSegmentIndex(segment_var); + TableType table_type; + ElemType elem_type; + result |= CheckTableIndex(table_var, &table_type); + result |= CheckElemSegmentIndex(segment_var, &elem_type); result |= typechecker_.OnTableInit(table_var.index(), segment_var.index()); + result |= CheckType(loc, elem_type.element, table_type.element, "table.init"); return result; } |