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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
|
/*
* Copyright 2022 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/iteration.h"
#include "ir/local-structural-dominance.h"
#include "support/small_vector.h"
namespace wasm {
LocalStructuralDominance::LocalStructuralDominance(Function* func,
Module& wasm,
Mode mode) {
if (!wasm.features.hasReferenceTypes()) {
// No references, so nothing to look at.
return;
}
bool hasRefVar = false;
for (auto var : func->vars) {
for (auto type : var) {
if (type.isRef()) {
hasRefVar = true;
break;
}
}
}
if (!hasRefVar) {
return;
}
if (mode == NonNullableOnly) {
bool hasNonNullableVar = false;
for (auto var : func->vars) {
for (auto type : var) {
// Check if we have any non-nullable vars (or tuple vars with
// non-nullable elements) at all.
if (type.isNonNullable()) {
hasNonNullableVar = true;
break;
}
}
}
if (!hasNonNullableVar) {
return;
}
}
struct Scanner : public PostWalker<Scanner> {
std::set<Index>& nonDominatingIndices;
// The locals that have been set, and so at the current time, they
// structurally dominate.
std::vector<bool> localsSet;
Scanner(Function* func, Mode mode, std::set<Index>& nonDominatingIndices)
: nonDominatingIndices(nonDominatingIndices) {
localsSet.resize(func->getNumLocals());
// Parameters always dominate.
for (Index i = 0; i < func->getNumParams(); i++) {
localsSet[i] = true;
}
for (Index i = func->getNumParams(); i < func->getNumLocals(); i++) {
auto localType = func->getLocalType(i);
bool interesting = false;
for (auto type : localType) {
if (type.isRef() && (mode == All || type.isNonNullable())) {
interesting = true;
break;
}
}
// Mark locals we don't need to care about as "set". We never do any
// work for such a local.
if (!interesting) {
localsSet[i] = true;
}
}
// Note that we do not need to start a scope for the function body.
// Logically there is a scope there, but there is no code after it, so
// there is nothing to clean up when that scope exits, so we may as well
// not even create a scope. Just start walking the body now.
walk(func->body);
}
using Locals = SmallVector<Index, 5>;
// When we exit a control flow scope, we must undo the locals that it set.
std::vector<Locals> cleanupStack;
static void doBeginScope(Scanner* self, Expression** currp) {
self->cleanupStack.emplace_back();
}
static void doEndScope(Scanner* self, Expression** currp) {
for (auto index : self->cleanupStack.back()) {
assert(self->localsSet[index]);
self->localsSet[index] = false;
}
self->cleanupStack.pop_back();
}
static void doLocalSet(Scanner* self, Expression** currp) {
auto index = (*currp)->cast<LocalSet>()->index;
if (!self->localsSet[index]) {
// This local is now set until the end of this scope.
self->localsSet[index] = true;
// If we are not in the topmost scope, note this for later cleanup.
if (!self->cleanupStack.empty()) {
self->cleanupStack.back().push_back(index);
}
}
}
static void scan(Scanner* self, Expression** currp) {
// Use a loop to avoid recursing on the last child - we can just go
// straight into a loop iteration for it.
while (1) {
Expression* curr = *currp;
switch (curr->_id) {
case Expression::Id::InvalidId:
WASM_UNREACHABLE("bad id");
// local.get can just be visited immediately, as it has no children.
case Expression::Id::LocalGetId: {
auto index = curr->cast<LocalGet>()->index;
if (!self->localsSet[index]) {
self->nonDominatingIndices.insert(index);
}
return;
}
case Expression::Id::LocalSetId: {
auto* set = curr->cast<LocalSet>();
if (!self->localsSet[set->index]) {
self->pushTask(doLocalSet, currp);
}
// Immediately continue in the loop.
currp = &set->value;
continue;
}
// Control flow structures.
case Expression::Id::BlockId: {
auto* block = curr->cast<Block>();
// Blocks with no name are never emitted in the binary format, so do
// not create a scope for them.
if (block->name.is()) {
self->pushTask(Scanner::doEndScope, currp);
}
auto& list = block->list;
for (int i = int(list.size()) - 1; i >= 0; i--) {
self->pushTask(Scanner::scan, &list[i]);
}
if (block->name.is()) {
// Just call the task immediately.
doBeginScope(self, currp);
}
return;
}
case Expression::Id::IfId: {
if (curr->cast<If>()->ifFalse) {
self->pushTask(Scanner::doEndScope, currp);
self->maybePushTask(Scanner::scan, &curr->cast<If>()->ifFalse);
self->pushTask(Scanner::doBeginScope, currp);
}
self->pushTask(Scanner::doEndScope, currp);
self->pushTask(Scanner::scan, &curr->cast<If>()->ifTrue);
self->pushTask(Scanner::doBeginScope, currp);
// Immediately continue in the loop.
currp = &curr->cast<If>()->condition;
continue;
}
case Expression::Id::LoopId: {
self->pushTask(Scanner::doEndScope, currp);
// Just call the task immediately.
doBeginScope(self, currp);
// Immediately continue in the loop.
currp = &curr->cast<Loop>()->body;
continue;
}
case Expression::Id::TryId: {
auto& list = curr->cast<Try>()->catchBodies;
for (int i = int(list.size()) - 1; i >= 0; i--) {
self->pushTask(Scanner::doEndScope, currp);
self->pushTask(Scanner::scan, &list[i]);
self->pushTask(Scanner::doBeginScope, currp);
}
self->pushTask(Scanner::doEndScope, currp);
// Just call the task immediately.
doBeginScope(self, currp);
// Immediately continue in the loop.
currp = &curr->cast<Try>()->body;
continue;
}
case Expression::Id::TryTableId: {
self->pushTask(Scanner::doEndScope, currp);
// Just call the task immediately.
doBeginScope(self, currp);
// Immediately continue in the try_table.
currp = &curr->cast<TryTable>()->body;
continue;
}
default: {
// Control flow structures have been handled. This is an expression,
// which we scan normally.
assert(!Properties::isControlFlowStructure(curr));
PostWalker<Scanner>::scan(self, currp);
return;
}
}
}
}
// Only local.set needs to be visited.
void pushTask(TaskFunc func, Expression** currp) {
// Visits to anything but a set can be ignored, so only very specific
// tasks need to actually be pushed here. In particular, we don't want to
// push tasks to call doVisit* when those callbacks do nothing.
if (func == scan || func == doLocalSet || func == doBeginScope ||
func == doEndScope) {
PostWalker<Scanner>::pushTask(func, currp);
}
}
void maybePushTask(TaskFunc func, Expression** currp) {
if (*currp) {
pushTask(func, currp);
}
}
};
Scanner(func, mode, nonDominatingIndices);
}
} // namespace wasm
|