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
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
|
/*
* 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.
*/
//
// A WebAssembly merger: loads multiple files, smashes them together,
// and emits the result.
//
// This is *not* a real linker. It just does naive merging.
//
#include <memory>
#include "parsing.h"
#include "pass.h"
#include "shared-constants.h"
#include "asmjs/shared-constants.h"
#include "asm_v_wasm.h"
#include "support/command-line.h"
#include "support/file.h"
#include "wasm-io.h"
#include "wasm-binary.h"
#include "wasm-builder.h"
#include "wasm-validator.h"
#include "ir/module-utils.h"
using namespace wasm;
// Ensure a memory or table is of at least a size
template<typename T>
static void ensureSize(T& what, Index size) {
// ensure the size is sufficient
while (what.initial * what.kPageSize < size) {
what.initial = what.initial + 1;
}
what.max = std::max(what.initial, what.max);
}
// A mergeable unit. This class contains basic logic to prepare for merging
// of two modules.
struct Mergeable {
Mergeable(Module& wasm) : wasm(wasm) {
// scan the module
findSizes();
findImports();
standardizeSegments();
}
// The module we are working on
Module& wasm;
// Total sizes of the memory and table data, including things
// link a bump from the dylink section
Index totalMemorySize, totalTableSize;
// The names of the imported globals for the memory and table bases
// (sets, as each may be imported more than once)
std::set<Name> memoryBaseGlobals, tableBaseGlobals;
// Imported functions and globals provided by the other mergeable
// are fused together. We track those here, then remove them
std::map<Name, Name> implementedFunctionImports;
std::map<Name, Name> implementedGlobalImports;
// setups
// find the memory and table sizes. if there are relocatable sections for them,
// that is the base size, and a dylink section may increase things further
void findSizes() {
totalMemorySize = 0;
totalTableSize = 0;
for (auto& segment : wasm.memory.segments) {
Expression* offset = segment.offset;
if (offset->is<GetGlobal>()) {
totalMemorySize = segment.data.size();
break;
}
}
for (auto& segment : wasm.table.segments) {
Expression* offset = segment.offset;
if (offset->is<GetGlobal>()) {
totalTableSize = segment.data.size();
break;
}
}
for (auto& section : wasm.userSections) {
if (section.name == BinaryConsts::UserSections::Dylink) {
WasmBinaryBuilder builder(wasm, section.data, false);
totalMemorySize = std::max(totalMemorySize, builder.getU32LEB());
totalTableSize = std::max(totalTableSize, builder.getU32LEB());
break; // there can be only one
}
}
// align them
while (totalMemorySize % 16 != 0) totalMemorySize++;
while (totalTableSize % 2 != 0) totalTableSize++;
}
void findImports() {
ModuleUtils::iterImportedGlobals(wasm, [&](Global* import) {
if (import->module == ENV && import->base == MEMORY_BASE) {
memoryBaseGlobals.insert(import->name);
}
});
if (memoryBaseGlobals.size() == 0) {
// add one
auto* import = new Global;
import->name = MEMORY_BASE;
import->module = ENV;
import->base = MEMORY_BASE;
import->type = i32;
wasm.addGlobal(import);
memoryBaseGlobals.insert(import->name);
}
ModuleUtils::iterImportedGlobals(wasm, [&](Global* import) {
if (import->module == ENV && import->base == TABLE_BASE) {
tableBaseGlobals.insert(import->name);
}
});
if (tableBaseGlobals.size() == 0) {
auto* import = new Global;
import->name = TABLE_BASE;
import->module = ENV;
import->base = TABLE_BASE;
import->type = i32;
wasm.addGlobal(import);
tableBaseGlobals.insert(import->name);
}
}
void standardizeSegments() {
standardizeSegment<Memory, char, Memory::Segment>(wasm, wasm.memory, totalMemorySize, 0, *memoryBaseGlobals.begin());
// if there are no functions, and we need one, we need to add one as the zero
if (totalTableSize > 0 && wasm.functions.empty()) {
auto func = new Function;
func->name = Name("binaryen$merge-zero");
func->body = Builder(wasm).makeNop();
func->type = ensureFunctionType("v", &wasm)->name;
wasm.addFunction(func);
}
Name zero;
if (totalTableSize > 0) {
zero = wasm.functions.begin()->get()->name;
}
standardizeSegment<Table, Name, Table::Segment>(wasm, wasm.table, totalTableSize, zero, *tableBaseGlobals.begin());
}
// utilities
Name getNonColliding(Name initial, std::function<bool (Name)> checkIfCollides) {
if (!checkIfCollides(initial)) {
return initial;
}
int x = 0;
while (1) {
auto curr = Name(std::string(initial.str) + '$' + std::to_string(x));
if (!checkIfCollides(curr)) {
return curr;
}
x++;
}
}
// ensure a relocatable segment exists, of the proper size, including
// the dylink bump applied into it, standardized into the form of
// not using a dylink section and instead having enough zeros at
// the end. this makes linking much simpler.ta
// there may be other non-relocatable segments too.
template<typename T, typename U, typename Segment>
void standardizeSegment(Module& wasm, T& what, Index size, U zero, Name globalName) {
Segment* relocatable = nullptr;
for (auto& segment : what.segments) {
Expression* offset = segment.offset;
if (offset->is<GetGlobal>()) {
// this is the relocatable one.
relocatable = &segment;
break;
}
}
if (!relocatable) {
// none existing, add one
what.segments.resize(what.segments.size() + 1);
relocatable = &what.segments.back();
relocatable->offset = Builder(wasm).makeGetGlobal(globalName, i32);
}
// make sure it is the right size
while (relocatable->data.size() < size) {
relocatable->data.push_back(zero);
}
ensureSize(what, relocatable->data.size());
}
// copies a relocatable segment from the input to the output, and
// copies the non-relocatable ones as well
template<typename T, typename V>
void copySegments(T& output, T& input, V updater) {
for (auto& inputSegment : input.segments) {
Expression* inputOffset = inputSegment.offset;
if (inputOffset->is<GetGlobal>()) {
// this is the relocatable one. find the output's relocatable
for (auto& segment : output.segments) {
Expression* offset = segment.offset;
if (offset->is<GetGlobal>()) {
// copy our data in
for (auto item : inputSegment.data) {
segment.data.push_back(updater(item));
}
ensureSize(output, segment.data.size());
return; // there can be only one
}
}
WASM_UNREACHABLE(); // we must find a relocatable one in the output, as we standardized
} else {
// this is a non-relocatable one. just copy it.
output.segments.push_back(inputSegment);
}
}
}
};
// A mergeable that is an output, that is, that we merge into. This adds
// logic to update it for the new data, namely, when an import is provided
// by the other merged unit, we resolve to access that value directly.
struct OutputMergeable : public PostWalker<OutputMergeable, Visitor<OutputMergeable>>, public Mergeable {
OutputMergeable(Module& wasm) : Mergeable(wasm) {}
void visitCall(Call* curr) {
auto iter = implementedFunctionImports.find(curr->target);
if (iter != implementedFunctionImports.end()) {
// this import is now in the module - call it
replaceCurrent(Builder(*getModule()).makeCall(iter->second, curr->operands, curr->type));
}
}
void visitGetGlobal(GetGlobal* curr) {
auto iter = implementedGlobalImports.find(curr->name);
if (iter != implementedGlobalImports.end()) {
// this global is now in the module - get it
curr->name = iter->second;
assert(curr->name.is());
}
}
void visitModule(Module* curr) {
// remove imports that are being implemented
for (auto& pair : implementedFunctionImports) {
curr->removeFunction(pair.first);
}
for (auto& pair : implementedGlobalImports) {
curr->removeGlobal(pair.first);
}
}
};
// A mergeable that is an input, that is, that we merge into another.
// This adds logic to disambiguate its names from the other, and to
// perform all other merging operations.
struct InputMergeable : public ExpressionStackWalker<InputMergeable, Visitor<InputMergeable>>, public Mergeable {
InputMergeable(Module& wasm, OutputMergeable& outputMergeable) : Mergeable(wasm), outputMergeable(outputMergeable) {}
// The unit we are being merged into
OutputMergeable& outputMergeable;
// mappings (after disambiguating with the other mergeable), old name => new name
std::map<Name, Name> ftNames; // function types
std::map<Name, Name> eNames; // exports
std::map<Name, Name> fNames; // functions
std::map<Name, Name> gNames; // globals
void visitCall(Call* curr) {
auto iter = implementedFunctionImports.find(curr->target);
if (iter != implementedFunctionImports.end()) {
// this import is now in the module - call it
replaceCurrent(Builder(*getModule()).makeCall(iter->second, curr->operands, curr->type));
return;
}
curr->target = fNames[curr->target];
assert(curr->target.is());
}
void visitCallIndirect(CallIndirect* curr) {
curr->fullType = ftNames[curr->fullType];
assert(curr->fullType.is());
}
void visitGetGlobal(GetGlobal* curr) {
auto iter = implementedGlobalImports.find(curr->name);
if (iter != implementedGlobalImports.end()) {
// this import is now in the module - use it
curr->name = iter->second;
return;
}
curr->name = gNames[curr->name];
assert(curr->name.is());
// if this is the memory or table base, add the bump
if (memoryBaseGlobals.count(curr->name)) {
addBump(outputMergeable.totalMemorySize);
} else if (tableBaseGlobals.count(curr->name)) {
addBump(outputMergeable.totalTableSize);
}
}
void visitSetGlobal(SetGlobal* curr) {
curr->name = gNames[curr->name];
assert(curr->name.is());
}
void merge() {
// find function imports in us that are implemented in the output
// TODO make maps, avoid N^2
ModuleUtils::iterImportedFunctions(wasm, [&](Function* import) {
// per wasm dynamic library rules, we expect to see exports on 'env'
if (import->module == ENV) {
// seek an export on the other side that matches
for (auto& exp : outputMergeable.wasm.exports) {
if (exp->name == import->base) {
// fits!
implementedFunctionImports[import->name] = exp->value;
break;
}
}
}
});
ModuleUtils::iterImportedGlobals(wasm, [&](Global* import) {
// per wasm dynamic library rules, we expect to see exports on 'env'
if (import->module == ENV) {
// seek an export on the other side that matches
for (auto& exp : outputMergeable.wasm.exports) {
if (exp->name == import->base) {
// fits!
implementedGlobalImports[import->name] = exp->value;
break;
}
}
}
});
// remove the unneeded ones
for (auto& pair : implementedFunctionImports) {
wasm.removeFunction(pair.first);
}
for (auto& pair : implementedGlobalImports) {
wasm.removeGlobal(pair.first);
}
// find new names
for (auto& curr : wasm.functionTypes) {
curr->name = ftNames[curr->name] = getNonColliding(curr->name, [&](Name name) -> bool {
return outputMergeable.wasm.getFunctionTypeOrNull(name);
});
}
ModuleUtils::iterImportedFunctions(wasm, [&](Function* curr) {
curr->name = fNames[curr->name] = getNonColliding(curr->name, [&](Name name) -> bool {
return !!outputMergeable.wasm.getFunctionOrNull(name);
});
});
ModuleUtils::iterImportedGlobals(wasm, [&](Global* curr) {
curr->name = gNames[curr->name] = getNonColliding(curr->name, [&](Name name) -> bool {
return !!outputMergeable.wasm.getGlobalOrNull(name);
});
});
ModuleUtils::iterDefinedFunctions(wasm, [&](Function* curr) {
curr->name = fNames[curr->name] = getNonColliding(curr->name, [&](Name name) -> bool {
return outputMergeable.wasm.getFunctionOrNull(name);
});
});
ModuleUtils::iterDefinedGlobals(wasm, [&](Global* curr) {
curr->name = gNames[curr->name] = getNonColliding(curr->name, [&](Name name) -> bool {
return outputMergeable.wasm.getGlobalOrNull(name);
});
});
// update global names in input
{
auto temp = memoryBaseGlobals;
memoryBaseGlobals.clear();
for (auto x : temp) {
memoryBaseGlobals.insert(gNames[x]);
}
}
{
auto temp = tableBaseGlobals;
tableBaseGlobals.clear();
for (auto x : temp) {
tableBaseGlobals.insert(gNames[x]);
}
}
// find function imports in output that are implemented in the input
ModuleUtils::iterImportedFunctions(outputMergeable.wasm, [&](Function* import) {
if (import->module == ENV) {
for (auto& exp : wasm.exports) {
if (exp->name == import->base) {
outputMergeable.implementedFunctionImports[import->name] = fNames[exp->value];
break;
}
}
}
});
ModuleUtils::iterImportedGlobals(outputMergeable.wasm, [&](Global* import) {
if (import->module == ENV) {
for (auto& exp : wasm.exports) {
if (exp->name == import->base) {
outputMergeable.implementedGlobalImports[import->name] = gNames[exp->value];
break;
}
}
}
});
// update the output before bringing anything in. avoid doing so when possible, as in the
// common case the output module is very large.
if (outputMergeable.implementedFunctionImports.size() + outputMergeable.implementedGlobalImports.size() > 0) {
outputMergeable.walkModule(&outputMergeable.wasm);
}
// memory&table: we place the new memory segments at a higher position. after the existing ones.
copySegments(outputMergeable.wasm.memory, wasm.memory, [](char x) -> char { return x; });
copySegments(outputMergeable.wasm.table, wasm.table, [&](Name x) -> Name { return fNames[x]; });
// update the new contents about to be merged in
walkModule(&wasm);
// handle the dylink post-instantiate. this is special, as if it exists in both, we must in fact call both
Name POST_INSTANTIATE("__post_instantiate");
if (fNames.find(POST_INSTANTIATE) != fNames.end() &&
outputMergeable.wasm.getExportOrNull(POST_INSTANTIATE)) {
// indeed, both exist. add a call to the second (wasm spec does not give an order requirement)
auto* func = outputMergeable.wasm.getFunction(outputMergeable.wasm.getExport(POST_INSTANTIATE)->value);
Builder builder(outputMergeable.wasm);
func->body = builder.makeSequence(
builder.makeCall(fNames[POST_INSTANTIATE], {}, none),
func->body
);
}
// copy in the data
for (auto& curr : wasm.functionTypes) {
outputMergeable.wasm.addFunctionType(curr.release());
}
for (auto& curr : wasm.globals) {
if (curr->imported()) {
outputMergeable.wasm.addGlobal(curr.release());
}
}
for (auto& curr : wasm.functions) {
if (curr->imported()) {
if (curr->type.is()) {
curr->type = ftNames[curr->type];
assert(curr->type.is());
}
outputMergeable.wasm.addFunction(curr.release());
}
}
for (auto& curr : wasm.exports) {
if (curr->kind == ExternalKind::Memory || curr->kind == ExternalKind::Table) {
continue; // wasm has just 1 of each, they must match
}
// if an export would collide, do not add the new one, ignore it
// TODO: warning/error mode?
if (!outputMergeable.wasm.getExportOrNull(curr->name)) {
if (curr->kind == ExternalKind::Function) {
curr->value = fNames[curr->value];
outputMergeable.wasm.addExport(curr.release());
} else if (curr->kind == ExternalKind::Global) {
curr->value = gNames[curr->value];
outputMergeable.wasm.addExport(curr.release());
} else {
WASM_UNREACHABLE();
}
}
}
// Copy over the remaining non-imports (we have already transferred
// the imports, and they are nullptrs).
for (auto& curr : wasm.functions) {
if (curr) {
assert(!curr->imported());
curr->type = ftNames[curr->type];
assert(curr->type.is());
outputMergeable.wasm.addFunction(curr.release());
}
}
for (auto& curr : wasm.globals) {
if (curr) {
assert(!curr->imported());
outputMergeable.wasm.addGlobal(curr.release());
}
}
}
private:
// add an offset to a global.get. we look above, and if there is already an add,
// we can add into it, avoiding creating a new node
void addBump(Index bump) {
if (expressionStack.size() >= 2) {
auto* parent = expressionStack[expressionStack.size() - 2];
if (auto* binary = parent->dynCast<Binary>()) {
if (binary->op == AddInt32) {
if (auto* num = binary->right->dynCast<Const>()) {
num->value = num->value.add(Literal(bump));
return;
}
}
}
}
Builder builder(*getModule());
replaceCurrent(
builder.makeBinary(
AddInt32,
expressionStack.back(),
builder.makeConst(Literal(int32_t(bump)))
)
);
}
};
// Finalize the memory/table bases, assinging concrete values into them
void finalizeBases(Module& wasm, Index memory, Index table) {
struct FinalizableMergeable : public Mergeable, public PostWalker<FinalizableMergeable, Visitor<FinalizableMergeable>> {
FinalizableMergeable(Module& wasm, Index memory, Index table) : Mergeable(wasm), memory(memory), table(table) {
walkModule(&wasm);
// ensure memory and table sizes suffice, after finalization we have absolute locations now
for (auto& segment : wasm.memory.segments) {
ensureSize(wasm.memory, memory + segment.data.size());
}
for (auto& segment : wasm.table.segments) {
ensureSize(wasm.table, table + segment.data.size());
}
}
Index memory, table;
void visitGetGlobal(GetGlobal* curr) {
if (memory != Index(-1) && memoryBaseGlobals.count(curr->name)) {
finalize(memory);
} else if (table != Index(-1) && tableBaseGlobals.count(curr->name)) {
finalize(table);
}
}
private:
void finalize(Index value) {
replaceCurrent(Builder(*getModule()).makeConst(Literal(int32_t(value))));
}
};
FinalizableMergeable mergeable(wasm, memory, table);
}
//
// main
//
int main(int argc, const char* argv[]) {
std::vector<std::string> filenames;
bool emitBinary = true;
Index finalizeMemoryBase = Index(-1),
finalizeTableBase = Index(-1);
bool optimize = false;
bool verbose = false;
Options options("wasm-merge", "Merge wasm files");
options
.add("--output", "-o", "Output file",
Options::Arguments::One,
[](Options* o, const std::string& argument) {
o->extra["output"] = argument;
Colors::disable();
})
.add("--emit-text", "-S", "Emit text instead of binary for the output file",
Options::Arguments::Zero,
[&](Options *o, const std::string& argument) { emitBinary = false; })
.add("--finalize-memory-base", "-fmb", "Finalize the env.__memory_base import",
Options::Arguments::One,
[&](Options* o, const std::string& argument) {
finalizeMemoryBase = atoi(argument.c_str());
})
.add("--finalize-table-base", "-ftb", "Finalize the env.__table_base import",
Options::Arguments::One,
[&](Options* o, const std::string& argument) {
finalizeTableBase = atoi(argument.c_str());
})
.add("-O", "-O", "Perform merge-time/finalize-time optimizations",
Options::Arguments::Zero,
[&](Options* o, const std::string& argument) {
optimize = true;
})
.add("--verbose", "-v", "Verbose output",
Options::Arguments::Zero,
[&](Options* o, const std::string& argument) {
verbose = true;
})
.add_positional("INFILES", Options::Arguments::N,
[&](Options *o, const std::string& argument) {
filenames.push_back(argument);
});
options.parse(argc, argv);
Module output;
std::vector<std::unique_ptr<Module>> otherModules; // keep all inputs alive, to save copies
bool first = true;
for (auto& filename : filenames) {
ModuleReader reader;
if (first) {
// read the first right into output, don't waste time merging into an empty module
try {
reader.read(filename, output);
} catch (ParseException& p) {
p.dump(std::cerr);
Fatal() << "error in parsing input";
}
first = false;
} else {
std::unique_ptr<Module> input = wasm::make_unique<Module>();
try {
reader.read(filename, *input);
} catch (ParseException& p) {
p.dump(std::cerr);
Fatal() << "error in parsing input";
}
// perform the merge
OutputMergeable outputMergeable(output);
InputMergeable inputMergeable(*input, outputMergeable);
inputMergeable.merge();
// retain the linked in module as we may depend on parts of it
otherModules.push_back(std::unique_ptr<Module>(input.release()));
}
}
if (verbose) {
// memory and table are standardized and merged, so it's easy to dump out some stats
std::cout << "merged total memory size: " << output.memory.segments[0].data.size() << '\n';
std::cout << "merged total table size: " << output.table.segments[0].data.size() << '\n';
std::cout << "merged functions: " << output.functions.size() << '\n';
}
if (finalizeMemoryBase != Index(-1) || finalizeTableBase != Index(-1)) {
finalizeBases(output, finalizeMemoryBase, finalizeTableBase);
}
if (optimize) {
// merge-time/finalize-time optimization
// it is beneficial to do global optimizations, as well as precomputing to get rid of finalized constants
PassRunner passRunner(&output);
passRunner.add("precompute");
passRunner.add("optimize-instructions"); // things now-constant may be further optimized
passRunner.addDefaultGlobalOptimizationPostPasses();
passRunner.run();
}
if (!WasmValidator().validate(output)) {
WasmPrinter::printModule(&output);
Fatal() << "error in validating output";
}
if (options.extra.count("output") > 0) {
ModuleWriter writer;
writer.setDebug(options.debug);
writer.setBinary(emitBinary);
writer.write(output, options.extra["output"]);
}
}
|