summaryrefslogtreecommitdiff
path: root/src/wasm-features.h
diff options
context:
space:
mode:
authorJay Phelps <hello@jayphelps.com>2019-08-20 15:27:58 -0500
committerHeejin Ahn <aheejin@gmail.com>2019-08-20 13:27:58 -0700
commitdce1fe8c16559437cae05c0dd782237474ca6082 (patch)
tree811e57a34951ad316072d7da8838461c25fbf465 /src/wasm-features.h
parent86b8cf6c299d0189d7819cf5eabb1ea03d34ff3a (diff)
downloadbinaryen-dce1fe8c16559437cae05c0dd782237474ca6082.tar.gz
binaryen-dce1fe8c16559437cae05c0dd782237474ca6082.tar.bz2
binaryen-dce1fe8c16559437cae05c0dd782237474ca6082.zip
Add initial support for anyref as an opaque type (#2294)
Another round of trying to push upstream things from my fork. This PR only adds support for anyref itself as an opaque type. It does NOT implement the full [reference types proposal](https://github.com/WebAssembly/reference-types/blob/master/proposals/reference-types/Overview.md)--so no table.get/set/grow/etc or ref.null, ref.func, etc. Figured it was easier to review and merge as we go, especially if I did something fundamentally wrong. *** I did put it under the `--enable-reference-types` flag as I imagine that even though this PR doesn't complete the full feature set, it probably is the right home. Lmk if not. I'll also be adding a few github comments to places I want to point out/question.
Diffstat (limited to 'src/wasm-features.h')
-rw-r--r--src/wasm-features.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/wasm-features.h b/src/wasm-features.h
index d1789a67a..a645c93a8 100644
--- a/src/wasm-features.h
+++ b/src/wasm-features.h
@@ -33,7 +33,8 @@ struct FeatureSet {
SignExt = 1 << 5,
ExceptionHandling = 1 << 6,
TailCall = 1 << 7,
- All = (1 << 8) - 1
+ ReferenceTypes = 1 << 8,
+ All = (1 << 9) - 1
};
static std::string toString(Feature f) {
@@ -54,6 +55,8 @@ struct FeatureSet {
return "exception-handling";
case TailCall:
return "tail-call";
+ case ReferenceTypes:
+ return "reference-types";
default:
WASM_UNREACHABLE();
}
@@ -72,6 +75,7 @@ struct FeatureSet {
bool hasSignExt() const { return features & SignExt; }
bool hasExceptionHandling() const { return features & ExceptionHandling; }
bool hasTailCall() const { return features & TailCall; }
+ bool hasReferenceTypes() const { return features & ReferenceTypes; }
bool hasAll() const { return features & All; }
void makeMVP() { features = MVP; }
@@ -86,6 +90,7 @@ struct FeatureSet {
void setSignExt(bool v = true) { set(SignExt, v); }
void setExceptionHandling(bool v = true) { set(ExceptionHandling, v); }
void setTailCall(bool v = true) { set(TailCall, v); }
+ void setReferenceTypes(bool v = true) { set(ReferenceTypes, v); }
void setAll(bool v = true) { features = v ? All : MVP; }
void enable(const FeatureSet& other) { features |= other.features; }
@@ -118,6 +123,9 @@ struct FeatureSet {
if (hasTailCall()) {
f(TailCall);
}
+ if (hasReferenceTypes()) {
+ f(ReferenceTypes);
+ }
}
bool operator<=(const FeatureSet& other) const {