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
|
/*
* Copyright 2015 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.
*/
//
// Removes names from locations that are never branched to, and
// merge names when possible (by merging their blocks)
//
#include <ir/branch-utils.h>
#include <pass.h>
#include <shared-constants.h>
#include <wasm.h>
namespace wasm {
struct RemoveUnusedNames
: public WalkerPass<PostWalker<RemoveUnusedNames,
UnifiedExpressionVisitor<RemoveUnusedNames>>> {
bool isFunctionParallel() override { return true; }
// This pass only removes names, which can only help validation (as blocks
// without names are ignored, see the README section on non-nullable locals).
bool requiresNonNullableLocalFixups() override { return false; }
std::unique_ptr<Pass> create() override {
return std::make_unique<RemoveUnusedNames>();
}
// We maintain a list of branches that we saw in children, then when we reach
// a parent block, we know if it was branched to
std::map<Name, std::set<Expression*>> branchesSeen;
void visitExpression(Expression* curr) {
BranchUtils::operateOnScopeNameUses(curr, [&](Name& name) {
if (name.is()) {
branchesSeen[name].insert(curr);
}
});
}
void handleBreakTarget(Name& name) {
if (name.is()) {
if (branchesSeen.find(name) == branchesSeen.end()) {
name = Name();
} else {
branchesSeen.erase(name);
}
}
}
void visitBlock(Block* curr) {
if (curr->name.is() && curr->list.size() == 1) {
auto* child = curr->list[0]->dynCast<Block>();
if (child && child->name.is() && child->type == curr->type) {
// we have just one child, this block, so breaking out of it goes to the
// same place as breaking out of us, we just need one name (and block)
auto& branches = branchesSeen[curr->name];
for (auto* branch : branches) {
BranchUtils::replacePossibleTarget(branch, curr->name, child->name);
}
child->finalize(child->type);
replaceCurrent(child);
}
}
handleBreakTarget(curr->name);
}
void visitLoop(Loop* curr) {
handleBreakTarget(curr->name);
if (!curr->name.is() && curr->body->type == curr->type) {
replaceCurrent(curr->body);
}
}
void visitTry(Try* curr) {
handleBreakTarget(curr->name);
// Try has not just a break target but also an optional delegate with a
// target name, so call the generic visitor as well to handle that.
visitExpression(curr);
}
void visitFunction(Function* curr) {
// When we reach the function body we can erase delegations to the caller.
branchesSeen.erase(DELEGATE_CALLER_TARGET);
assert(branchesSeen.empty());
}
};
Pass* createRemoveUnusedNamesPass() { return new RemoveUnusedNames(); }
} // namespace wasm
|