summaryrefslogtreecommitdiff
path: root/src/wasm/wasm-ir-builder.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/wasm/wasm-ir-builder.cpp')
-rw-r--r--src/wasm/wasm-ir-builder.cpp38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/wasm/wasm-ir-builder.cpp b/src/wasm/wasm-ir-builder.cpp
index dadda0f25..bd3a3ad11 100644
--- a/src/wasm/wasm-ir-builder.cpp
+++ b/src/wasm/wasm-ir-builder.cpp
@@ -576,6 +576,22 @@ Result<> IRBuilder::visitStringEncode(StringEncode* curr) {
WASM_UNREACHABLE("unexpected op");
}
+Result<> IRBuilder::visitResume(Resume* curr) {
+ auto cont = pop();
+ CHECK_ERR(cont);
+ curr->cont = *cont;
+
+ auto sig = curr->contType.getContinuation().type.getSignature();
+ auto size = sig.params.size();
+ curr->operands.resize(size);
+ for (size_t i = 0; i < size; ++i) {
+ auto val = pop();
+ CHECK_ERR(val);
+ curr->operands[size - i - 1] = *val;
+ }
+ return Ok{};
+}
+
Result<> IRBuilder::visitTupleMake(TupleMake* curr) {
assert(curr->operands.size() >= 2);
for (size_t i = 0, size = curr->operands.size(); i < size; ++i) {
@@ -1767,4 +1783,26 @@ Result<> IRBuilder::makeStringSliceIter() {
return Ok{};
}
+Result<> IRBuilder::makeResume(HeapType ct,
+ const std::vector<Name>& tags,
+ const std::vector<Index>& labels) {
+ if (!ct.isContinuation()) {
+ return Err{"expected continuation type"};
+ }
+ Resume curr(wasm.allocator);
+ curr.contType = ct;
+ CHECK_ERR(visitResume(&curr));
+
+ std::vector<Name> labelNames;
+ labelNames.reserve(labels.size());
+ for (auto label : labels) {
+ auto name = getLabelName(label);
+ CHECK_ERR(name);
+ labelNames.push_back(*name);
+ }
+ std::vector<Expression*> operands(curr.operands.begin(), curr.operands.end());
+ push(builder.makeResume(ct, tags, labelNames, operands, curr.cont));
+ return Ok{};
+}
+
} // namespace wasm