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
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
|
/*
* Copyright 2017 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.
*/
//
// Flattens code into "Flat IR" form. See ir/flat.h.
//
// TODO: handle non-nullability. for example:
//
// (module
// (type $none (func))
// (func $foo
// (drop
// (block (result funcref (ref $none))
// (tuple.make 2
// (ref.null func)
// (ref.func $foo)
// )
// )
// )
// )
// )
//
// The tuple has a non-nullable type, and so it cannot currently be set to a
// local, but in principle there's no reason it couldn't be. For now, error on
// this.
#include <ir/branch-utils.h>
#include <ir/effects.h>
#include <ir/eh-utils.h>
#include <ir/flat.h>
#include <ir/properties.h>
#include <ir/utils.h>
#include <pass.h>
#include <wasm-builder.h>
#include <wasm.h>
namespace wasm {
// We use the following algorithm: we maintain a list of "preludes", code
// that runs right before an expression. When we visit an expression we
// must handle it and its preludes. If the expression has side effects,
// we reduce it to a local.get and add a prelude for that. We then handle
// the preludes, by moving them to the parent or handling them directly.
// we can move them to the parent if the parent is not a control flow
// structure. Otherwise, if the parent is a control flow structure, it
// will incorporate the preludes of its children accordingly.
// As a result, when we reach a node, we know its children have no
// side effects (they have been moved to a prelude), or we are a
// control flow structure (which allows children with side effects,
// e.g. a return as a block element).
// Once exception is that we allow an (unreachable) node, which is used
// when we move something unreachable to another place, and need a
// placeholder. We will never reach that (unreachable) anyhow
struct Flatten
: public WalkerPass<
ExpressionStackWalker<Flatten, UnifiedExpressionVisitor<Flatten>>> {
bool isFunctionParallel() override { return true; }
// Flattening splits the original locals into a great many other ones, losing
// track of the originals that DWARF refers to.
// FIXME DWARF updating does not handle local changes yet.
bool invalidatesDWARF() override { return true; }
std::unique_ptr<Pass> create() override {
return std::make_unique<Flatten>();
}
// For each expression, a bunch of expressions that should execute right
// before it
std::unordered_map<Expression*, std::vector<Expression*>> preludes;
// Break values are sent through a temp local
std::unordered_map<Name, Index> breakTemps;
void visitExpression(Expression* curr) {
std::vector<Expression*> ourPreludes;
Builder builder(*getModule());
// Nothing to do for constants and nop.
if (Properties::isConstantExpression(curr) || curr->is<Nop>()) {
return;
}
if (Properties::isControlFlowStructure(curr)) {
// handle control flow explicitly. our children do not have control flow,
// but they do have preludes which we need to set up in the right place
// no one should have given us preludes, they are on the children
assert(preludes.find(curr) == preludes.end());
if (auto* block = curr->dynCast<Block>()) {
// make a new list, where each item's preludes are added before it
ExpressionList newList(getModule()->allocator);
for (auto* item : block->list) {
auto iter = preludes.find(item);
if (iter != preludes.end()) {
auto& itemPreludes = iter->second;
for (auto* prelude : itemPreludes) {
newList.push_back(prelude);
}
itemPreludes.clear();
}
newList.push_back(item);
}
block->list.swap(newList);
// remove a block return value
auto type = block->type;
if (type.isConcrete()) {
// if there is a temp index for breaking to the block, use that
Index temp;
auto iter = breakTemps.find(block->name);
if (iter != breakTemps.end()) {
temp = iter->second;
} else {
temp = builder.addVar(getFunction(), type);
}
auto*& last = block->list.back();
if (last->type.isConcrete()) {
last = builder.makeLocalSet(temp, last);
}
block->finalize(Type::none);
// and we leave just a get of the value
auto* rep = builder.makeLocalGet(temp, type);
replaceCurrent(rep);
// the whole block is now a prelude
ourPreludes.push_back(block);
}
// the block now has no return value, and may have become unreachable
block->finalize(Type::none);
} else if (auto* iff = curr->dynCast<If>()) {
// condition preludes go before the entire if
auto* rep = getPreludesWithExpression(iff->condition, iff);
// arm preludes go in the arms. we must also remove an if value
auto* originalIfTrue = iff->ifTrue;
auto* originalIfFalse = iff->ifFalse;
auto type = iff->ifFalse ? Type::getLeastUpperBound(iff->ifTrue->type,
iff->ifFalse->type)
: Type::none;
Expression* prelude = nullptr;
if (type.isConcrete()) {
Index temp = builder.addVar(getFunction(), type);
if (iff->ifTrue->type.isConcrete()) {
iff->ifTrue = builder.makeLocalSet(temp, iff->ifTrue);
}
if (iff->ifFalse->type.isConcrete()) {
iff->ifFalse = builder.makeLocalSet(temp, iff->ifFalse);
}
if (curr->type.isConcrete()) {
// the whole if (+any preludes from the condition) is now a prelude
prelude = rep;
// and we leave just a get of the value
rep = builder.makeLocalGet(temp, type);
}
}
iff->ifTrue = getPreludesWithExpression(originalIfTrue, iff->ifTrue);
if (iff->ifFalse) {
iff->ifFalse =
getPreludesWithExpression(originalIfFalse, iff->ifFalse);
}
iff->finalize();
if (prelude) {
ReFinalizeNode().visit(prelude);
ourPreludes.push_back(prelude);
}
replaceCurrent(rep);
} else if (auto* loop = curr->dynCast<Loop>()) {
// remove a loop value
Expression* rep = loop;
auto* originalBody = loop->body;
auto type = loop->type;
if (type.isConcrete()) {
Index temp = builder.addVar(getFunction(), type);
loop->body = builder.makeLocalSet(temp, loop->body);
// and we leave just a get of the value
rep = builder.makeLocalGet(temp, type);
// the whole if is now a prelude
ourPreludes.push_back(loop);
loop->type = Type::none;
}
loop->body = getPreludesWithExpression(originalBody, loop->body);
loop->finalize();
replaceCurrent(rep);
} else if (auto* tryy = curr->dynCast<Try>()) {
// remove a try value
Expression* rep = tryy;
auto* originalBody = tryy->body;
std::vector<Expression*> originalCatchBodies(tryy->catchBodies.begin(),
tryy->catchBodies.end());
auto type = tryy->type;
if (type.isConcrete()) {
Index temp = builder.addVar(getFunction(), type);
if (tryy->body->type.isConcrete()) {
tryy->body = builder.makeLocalSet(temp, tryy->body);
}
for (Index i = 0; i < tryy->catchBodies.size(); i++) {
if (tryy->catchBodies[i]->type.isConcrete()) {
tryy->catchBodies[i] =
builder.makeLocalSet(temp, tryy->catchBodies[i]);
}
}
// and we leave just a get of the value
rep = builder.makeLocalGet(temp, type);
// the whole try is now a prelude
ourPreludes.push_back(tryy);
}
tryy->body = getPreludesWithExpression(originalBody, tryy->body);
for (Index i = 0; i < tryy->catchBodies.size(); i++) {
tryy->catchBodies[i] = getPreludesWithExpression(
originalCatchBodies[i], tryy->catchBodies[i]);
}
tryy->finalize();
replaceCurrent(rep);
} else {
WASM_UNREACHABLE("unexpected expr type");
}
} else {
// for anything else, there may be existing preludes
auto iter = preludes.find(curr);
if (iter != preludes.end()) {
ourPreludes.swap(iter->second);
}
// special handling
if (auto* set = curr->dynCast<LocalSet>()) {
if (set->isTee()) {
// we disallow local.tee
if (set->value->type == Type::unreachable) {
replaceCurrent(set->value); // trivial, no set happens
} else {
// use a set in a prelude + a get
set->makeSet();
ourPreludes.push_back(set);
Type localType = getFunction()->getLocalType(set->index);
replaceCurrent(builder.makeLocalGet(set->index, localType));
}
}
} else if (auto* br = curr->dynCast<Break>()) {
if (br->value) {
auto type = br->value->type;
if (type.isConcrete()) {
// we are sending a value. use a local instead
Type blockType = findBreakTarget(br->name)->type;
Index temp = getTempForBreakTarget(br->name, blockType);
ourPreludes.push_back(builder.makeLocalSet(temp, br->value));
// br_if leaves a value on the stack if not taken, which later can
// be the last element of the enclosing innermost block and flow
// out. The local we created using 'getTempForBreakTarget' returns
// the return type of the block this branch is targetting, which may
// not be the same with the innermost block's return type. For
// example,
// (block $any (result anyref)
// (block (result funcref)
// (local.tee $0
// (br_if $any
// (ref.null func)
// (i32.const 0)
// )
// )
// )
// )
// In this case we need two locals to store (ref.null); one with
// funcref type that's for the target block ($label0) and one more
// with anyref type in case for flowing out. Here we create the
// second 'flowing out' local in case two block's types are
// different.
if (type != blockType) {
temp = builder.addVar(getFunction(), type);
ourPreludes.push_back(builder.makeLocalSet(
temp, ExpressionManipulator::copy(br->value, *getModule())));
}
if (br->condition) {
// the value must also flow out
ourPreludes.push_back(br);
if (br->type.isConcrete()) {
replaceCurrent(builder.makeLocalGet(temp, type));
} else {
assert(br->type == Type::unreachable);
replaceCurrent(builder.makeUnreachable());
}
}
br->value = nullptr;
br->finalize();
} else {
assert(type == Type::unreachable);
// we don't need the br at all
replaceCurrent(br->value);
}
}
} else if (auto* sw = curr->dynCast<Switch>()) {
if (sw->value) {
auto type = sw->value->type;
if (type.isConcrete()) {
// we are sending a value. use a local instead
Index temp = builder.addVar(getFunction(), type);
ourPreludes.push_back(builder.makeLocalSet(temp, sw->value));
// we don't know which break target will be hit - assign to them all
auto names = BranchUtils::getUniqueTargets(sw);
for (auto name : names) {
ourPreludes.push_back(
builder.makeLocalSet(getTempForBreakTarget(name, type),
builder.makeLocalGet(temp, type)));
}
sw->value = nullptr;
sw->finalize();
} else {
assert(type == Type::unreachable);
// we don't need the br at all
replaceCurrent(sw->value);
}
}
}
}
if (curr->is<BrOn>() || curr->is<TryTable>()) {
Fatal() << "Unsupported instruction for Flatten: "
<< getExpressionName(curr);
}
// continue for general handling of everything, control flow or otherwise
curr = getCurrent(); // we may have replaced it
// we have changed children
ReFinalizeNode().visit(curr);
if (curr->type == Type::unreachable) {
ourPreludes.push_back(curr);
replaceCurrent(builder.makeUnreachable());
} else if (curr->type.isConcrete()) {
// use a local
auto type = curr->type;
Index temp = builder.addVar(getFunction(), type);
ourPreludes.push_back(builder.makeLocalSet(temp, curr));
replaceCurrent(builder.makeLocalGet(temp, type));
}
// next, finish up: migrate our preludes if we can
if (!ourPreludes.empty()) {
auto* parent = getParent();
if (parent && !Properties::isControlFlowStructure(parent)) {
auto& parentPreludes = preludes[parent];
for (auto* prelude : ourPreludes) {
parentPreludes.push_back(prelude);
}
} else {
// keep our preludes, parent will handle them
preludes[getCurrent()].swap(ourPreludes);
}
}
}
void visitFunction(Function* curr) {
auto* originalBody = curr->body;
// if the body is a block with a result, turn that into a return
if (curr->body->type.isConcrete()) {
curr->body = Builder(*getModule()).makeReturn(curr->body);
}
// the body may have preludes
curr->body = getPreludesWithExpression(originalBody, curr->body);
// Flatten can generate blocks within 'catch', making pops invalid. Fix them
// up.
EHUtils::handleBlockNestedPops(curr, *getModule());
}
private:
// gets an expression, either by itself, or in a block with its
// preludes (which we use up) before it
Expression* getPreludesWithExpression(Expression* curr) {
return getPreludesWithExpression(curr, curr);
}
// gets an expression, either by itself, or in a block with some
// preludes (which we use up) for another expression before it
Expression* getPreludesWithExpression(Expression* preluder,
Expression* after) {
auto iter = preludes.find(preluder);
if (iter == preludes.end()) {
return after;
}
// we have preludes
auto& thePreludes = iter->second;
auto* ret = Builder(*getModule()).makeBlock(thePreludes);
thePreludes.clear();
ret->list.push_back(after);
ret->finalize();
return ret;
}
// get the temp local to be used for breaks to that target. allocates
// one if there isn't one yet
Index getTempForBreakTarget(Name name, Type type) {
auto iter = breakTemps.find(name);
if (iter != breakTemps.end()) {
return iter->second;
} else {
return breakTemps[name] =
Builder(*getModule()).addVar(getFunction(), type);
}
}
};
Pass* createFlattenPass() { return new Flatten(); }
} // namespace wasm
|