diff options
Diffstat (limited to 'src/ir/properties.h')
-rw-r--r-- | src/ir/properties.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/ir/properties.h b/src/ir/properties.h index b14910c5b..b4dfbbd5e 100644 --- a/src/ir/properties.h +++ b/src/ir/properties.h @@ -85,6 +85,32 @@ inline bool isConstantExpression(const Expression* curr) { return false; } +inline Literal getSingleLiteral(const Expression* curr) { + if (auto* c = curr->dynCast<Const>()) { + return c->value; + } else if (curr->is<RefNull>()) { + return Literal(Type::nullref); + } else if (auto* c = curr->dynCast<RefFunc>()) { + return Literal(c->func); + } else { + WASM_UNREACHABLE("non-constant expression"); + } +} + +inline Literals getLiterals(const Expression* curr) { + if (curr->is<Const>() || curr->is<RefNull>() || curr->is<RefFunc>()) { + return {getSingleLiteral(curr)}; + } else if (auto* tuple = curr->dynCast<TupleMake>()) { + Literals literals; + for (auto* op : tuple->operands) { + literals.push_back(getSingleLiteral(op)); + } + return literals; + } else { + WASM_UNREACHABLE("non-constant expression"); + } +} + // Check if an expression is a sign-extend, and if so, returns the value // that is extended, otherwise nullptr inline Expression* getSignExtValue(Expression* curr) { |