blob: b564b3bf17987b2fc0783dd569f9b2734648e3a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
/*
* Copyright 2021 WebAssembly Community Group participants
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "ir/properties.h"
#include "wasm-traversal.h"
namespace wasm::Properties {
bool isGenerative(Expression* curr, FeatureSet features) {
// Practically no wasm instructions are generative. Exceptions occur only in
// GC atm.
if (!features.hasGC()) {
return false;
}
struct Scanner : public PostWalker<Scanner> {
bool generative = false;
void visitStructNew(StructNew* curr) { generative = true; }
void visitArrayNew(ArrayNew* curr) { generative = true; }
void visitArrayNewFixed(ArrayNewFixed* curr) { generative = true; }
} scanner;
scanner.walk(curr);
return scanner.generative;
}
// Checks an expression in a shallow manner (i.e., does not check children) as
// to whether it is valid in a wasm constant expression.
static bool isValidInConstantExpression(Module& wasm, Expression* expr) {
if (isSingleConstantExpression(expr) || expr->is<StructNew>() ||
expr->is<ArrayNew>() || expr->is<ArrayNewFixed>() || expr->is<I31New>() ||
expr->is<StringConst>()) {
return true;
}
if (auto* refAs = expr->dynCast<RefAs>()) {
if (refAs->op == ExternExternalize || refAs->op == ExternInternalize) {
return true;
}
}
if (auto* get = expr->dynCast<GlobalGet>()) {
auto* g = wasm.getGlobalOrNull(get->name);
// This is called from the validator, so we have to handle non-existent
// globals gracefully.
if (!g) {
return false;
}
// Only gets of immutable globals are constant.
if (g->mutable_) {
return false;
}
// Only imported globals are available in constant expressions unless GC is
// enabled.
return g->imported() || wasm.features.hasGC();
// TODO: Check that there are no cycles between globals.
}
if (wasm.features.hasExtendedConst()) {
if (auto* bin = expr->dynCast<Binary>()) {
if (bin->op == AddInt64 || bin->op == SubInt64 || bin->op == MulInt64 ||
bin->op == AddInt32 || bin->op == SubInt32 || bin->op == MulInt32) {
return true;
}
}
}
return false;
}
bool isValidConstantExpression(Module& wasm, Expression* expr) {
struct Walker : public PostWalker<Walker, UnifiedExpressionVisitor<Walker>> {
bool valid = true;
void visitExpression(Expression* curr) {
if (!isValidInConstantExpression(*getModule(), curr)) {
valid = false;
}
}
} walker;
walker.setModule(&wasm);
walker.walk(expr);
return walker.valid;
}
} // namespace wasm::Properties
|