blob: c070c6175b3295a2e077e97b78597c970305050d (
plain)
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
|
// Capture the output of this into a variable, if you want
(function(FUNCTION_TABLE_OFFSET, parentModule) {
var Module = {};
var args = [];
Module.arguments = [];
Module.print = parentModule.print;
Module.printErr = parentModule.printErr;
Module.cleanups = [];
#if ASM_JS
var H_BASE = 0;
// Each module has its own stack
var STACKTOP = parentModule['_malloc'](TOTAL_STACK);
assert(STACKTOP % 8 == 0);
var STACK_MAX = STACKTOP + TOTAL_STACK;
Module.cleanups.push(function() {
parentModule['_free'](STACKTOP); // XXX ensure exported
parentModule['_free'](H_BASE);
});
#endif
{{BODY}}
// {{MODULE_ADDITIONS}}
return Module;
});
|