summaryrefslogtreecommitdiff
path: root/src/wasm-interpreter.h
diff options
context:
space:
mode:
authorAlon Zakai <azakai@google.com>2020-12-09 11:17:28 -0800
committerGitHub <noreply@github.com>2020-12-09 11:17:28 -0800
commit823222ff566b38495327bc28b4726871b0a86b26 (patch)
treed0425f0c40d61e9085bc3a9880faa08eafd70276 /src/wasm-interpreter.h
parent63a042e3a94df7ba3a5c9dde03990a9813fdc366 (diff)
downloadbinaryen-823222ff566b38495327bc28b4726871b0a86b26.tar.gz
binaryen-823222ff566b38495327bc28b4726871b0a86b26.tar.bz2
binaryen-823222ff566b38495327bc28b4726871b0a86b26.zip
[GC] Add struct.new and start to test interesting execution (#3433)
With struct.new read/write support, we can start to do interesting things! This adds a test of creating a struct and seeing that references behave like references, that is, if we write to the value X refers to, and if Y refers to the same thing, when reading from Y's value we see the change as well. The test is run through all of -O1, which uncovered a minor issue in Precompute: We can't try to precompute a reference type, as we can't replace a reference with a value. Note btw that the test shows the optimizer properly running CoalesceLocals on reference types, merging two locals.
Diffstat (limited to 'src/wasm-interpreter.h')
-rw-r--r--src/wasm-interpreter.h21
1 files changed, 20 insertions, 1 deletions
diff --git a/src/wasm-interpreter.h b/src/wasm-interpreter.h
index 65a4417c8..bf02b7987 100644
--- a/src/wasm-interpreter.h
+++ b/src/wasm-interpreter.h
@@ -1398,7 +1398,26 @@ public:
}
Flow visitStructNew(StructNew* curr) {
NOTE_ENTER("StructNew");
- WASM_UNREACHABLE("TODO (gc): struct.new");
+ auto rtt = this->visit(curr->rtt);
+ if (rtt.breaking()) {
+ return rtt;
+ }
+ const auto& fields = curr->rtt->type.getHeapType().getStruct().fields;
+ Literals data;
+ data.resize(fields.size());
+ for (Index i = 0; i < fields.size(); i++) {
+ if (curr->isWithDefault()) {
+ data[i] = Literal::makeZero(fields[i].type);
+ } else {
+ auto value = this->visit(curr->operands[i]);
+ if (value.breaking()) {
+ return value;
+ }
+ data[i] = value.getSingleValue();
+ }
+ }
+ return Flow(
+ Literal(std::shared_ptr<Literals>(new Literals(data)), curr->type));
}
Flow visitStructGet(StructGet* curr) {
NOTE_ENTER("StructGet");