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
|
/*
* Copyright 2016 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 module elements that are are never used: functions and globals,
// which may be imported or not, and function types (which we merge
// and remove if unneeded)
//
#include <memory>
#include "wasm.h"
#include "pass.h"
#include "ir/module-utils.h"
#include "ir/utils.h"
#include "asm_v_wasm.h"
namespace wasm {
enum class ModuleElementKind {
Function,
Global
};
typedef std::pair<ModuleElementKind, Name> ModuleElement;
// Finds reachabilities
// TODO: use Effects to determine if a memory is used
struct ReachabilityAnalyzer : public PostWalker<ReachabilityAnalyzer> {
Module* module;
std::vector<ModuleElement> queue;
std::set<ModuleElement> reachable;
bool usesMemory = false;
bool usesTable = false;
ReachabilityAnalyzer(Module* module, const std::vector<ModuleElement>& roots) : module(module) {
queue = roots;
// Globals used in memory/table init expressions are also roots
for (auto& segment : module->memory.segments) {
if (!segment.isPassive) {
walk(segment.offset);
}
}
for (auto& segment : module->table.segments) {
walk(segment.offset);
}
// main loop
while (queue.size()) {
auto& curr = queue.back();
queue.pop_back();
if (reachable.count(curr) == 0) {
reachable.insert(curr);
if (curr.first == ModuleElementKind::Function) {
// if not an import, walk it
auto* func = module->getFunction(curr.second);
if (!func->imported()) {
walk(func->body);
}
} else {
// if not imported, it has an init expression we need to walk
auto* global = module->getGlobal(curr.second);
if (!global->imported()) {
walk(global->init);
}
}
}
}
}
void visitCall(Call* curr) {
if (reachable.count(ModuleElement(ModuleElementKind::Function, curr->target)) == 0) {
queue.emplace_back(ModuleElementKind::Function, curr->target);
}
}
void visitCallIndirect(CallIndirect* curr) {
usesTable = true;
}
void visitGetGlobal(GetGlobal* curr) {
if (reachable.count(ModuleElement(ModuleElementKind::Global, curr->name)) == 0) {
queue.emplace_back(ModuleElementKind::Global, curr->name);
}
}
void visitSetGlobal(SetGlobal* curr) {
if (reachable.count(ModuleElement(ModuleElementKind::Global, curr->name)) == 0) {
queue.emplace_back(ModuleElementKind::Global, curr->name);
}
}
void visitLoad(Load* curr) {
usesMemory = true;
}
void visitStore(Store* curr) {
usesMemory = true;
}
void visitAtomicCmpxchg(AtomicCmpxchg* curr) {
usesMemory = true;
}
void visitAtomicRMW(AtomicRMW* curr) {
usesMemory = true;
}
void visitAtomicWait(AtomicWait* curr) {
usesMemory = true;
}
void visitAtomicNotify(AtomicNotify* curr) {
usesMemory = true;
}
void visitMemoryInit(MemoryInit* curr) {
usesMemory = true;
}
void visitDataDrop(DataDrop* curr) {
usesMemory = true;
}
void visitMemoryCopy(MemoryCopy* curr) {
usesMemory = true;
}
void visitMemoryFill(MemoryFill* curr) {
usesMemory = true;
}
void visitHost(Host* curr) {
if (curr->op == CurrentMemory || curr->op == GrowMemory) {
usesMemory = true;
}
}
};
// Finds function type usage
struct FunctionTypeAnalyzer : public PostWalker<FunctionTypeAnalyzer> {
std::vector<Function*> functionImports;
std::vector<Function*> functions;
std::vector<CallIndirect*> indirectCalls;
void visitFunction(Function* curr) {
if (curr->type.is()) {
if (curr->imported()) {
functionImports.push_back(curr);
} else {
functions.push_back(curr);
}
}
}
void visitCallIndirect(CallIndirect* curr) {
indirectCalls.push_back(curr);
}
};
struct RemoveUnusedModuleElements : public Pass {
bool rootAllFunctions;
RemoveUnusedModuleElements(bool rootAllFunctions) : rootAllFunctions(rootAllFunctions) {}
void run(PassRunner* runner, Module* module) override {
optimizeGlobalsAndFunctions(module);
optimizeFunctionTypes(module);
}
void optimizeGlobalsAndFunctions(Module* module) {
std::vector<ModuleElement> roots;
// Module start is a root.
if (module->start.is()) {
auto startFunction = module->getFunction(module->start);
// Can be skipped if the start function is empty.
if (startFunction->body->is<Nop>()) {
module->start.clear();
} else {
roots.emplace_back(ModuleElementKind::Function, module->start);
}
}
// If told to, root all the functions
if (rootAllFunctions) {
ModuleUtils::iterDefinedFunctions(*module, [&](Function* func) {
roots.emplace_back(ModuleElementKind::Function, func->name);
});
}
// Exports are roots.
bool exportsMemory = false;
bool exportsTable = false;
for (auto& curr : module->exports) {
if (curr->kind == ExternalKind::Function) {
roots.emplace_back(ModuleElementKind::Function, curr->value);
} else if (curr->kind == ExternalKind::Global) {
roots.emplace_back(ModuleElementKind::Global, curr->value);
} else if (curr->kind == ExternalKind::Memory) {
exportsMemory = true;
} else if (curr->kind == ExternalKind::Table) {
exportsTable = true;
}
}
// Check for special imports, which are roots.
bool importsMemory = false;
bool importsTable = false;
if (module->memory.imported()) {
importsMemory = true;
}
if (module->table.imported()) {
importsTable = true;
}
// For now, all functions that can be called indirectly are marked as roots.
for (auto& segment : module->table.segments) {
for (auto& curr : segment.data) {
roots.emplace_back(ModuleElementKind::Function, curr);
}
}
// Compute reachability starting from the root set.
ReachabilityAnalyzer analyzer(module, roots);
// Remove unreachable elements.
{
auto& v = module->functions;
v.erase(std::remove_if(v.begin(), v.end(), [&](const std::unique_ptr<Function>& curr) {
return analyzer.reachable.count(ModuleElement(ModuleElementKind::Function, curr->name)) == 0;
}), v.end());
}
{
auto& v = module->globals;
v.erase(std::remove_if(v.begin(), v.end(), [&](const std::unique_ptr<Global>& curr) {
return analyzer.reachable.count(ModuleElement(ModuleElementKind::Global, curr->name)) == 0;
}), v.end());
}
module->updateMaps();
// Handle the memory and table
if (!exportsMemory && !analyzer.usesMemory) {
if (!importsMemory) {
// The memory is unobservable to the outside, we can remove the contents.
module->memory.segments.clear();
}
if (module->memory.segments.empty()) {
module->memory.exists = false;
module->memory.module = module->memory.base = Name();
module->memory.initial = 0;
module->memory.max = 0;
}
}
if (!exportsTable && !analyzer.usesTable) {
if (!importsTable) {
// The table is unobservable to the outside, we can remove the contents.
module->table.segments.clear();
}
if (module->table.segments.empty()) {
module->table.exists = false;
module->table.module = module->table.base = Name();
module->table.initial = 0;
module->table.max = 0;
}
}
}
void optimizeFunctionTypes(Module* module) {
FunctionTypeAnalyzer analyzer;
analyzer.walkModule(module);
// maps each string signature to a single canonical function type
std::unordered_map<std::string, FunctionType*> canonicals;
std::unordered_set<FunctionType*> needed;
auto canonicalize = [&](Name name) {
if (!name.is()) return name;
FunctionType* type = module->getFunctionType(name);
auto sig = getSig(type);
auto iter = canonicals.find(sig);
if (iter == canonicals.end()) {
needed.insert(type);
canonicals[sig] = type;
return type->name;
} else {
return iter->second->name;
}
};
// canonicalize all uses of function types
for (auto* import : analyzer.functionImports) {
import->type = canonicalize(import->type);
}
for (auto* func : analyzer.functions) {
func->type = canonicalize(func->type);
}
for (auto* call : analyzer.indirectCalls) {
call->fullType = canonicalize(call->fullType);
}
// remove no-longer used types
module->functionTypes.erase(std::remove_if(module->functionTypes.begin(), module->functionTypes.end(), [&needed](std::unique_ptr<FunctionType>& type) {
return needed.count(type.get()) == 0;
}), module->functionTypes.end());
module->updateMaps();
}
};
Pass* createRemoveUnusedModuleElementsPass() {
return new RemoveUnusedModuleElements(false);
}
Pass* createRemoveUnusedNonFunctionModuleElementsPass() {
return new RemoveUnusedModuleElements(true);
}
} // namespace wasm
|