blob: 844b59090b692672a38db4b319e938d8da3745a6 [file] [log] [blame] [edit]
// === Auto-generated postamble setup entry stuff ===
{{{ exportRuntime() }}}
#if hasExportedFunction('_main') // Only if user is exporting a C main(), we will generate a run() function that can be used to launch main.
function run() {
#if MEMORYPROFILER
emscriptenMemoryProfiler.onPreloadComplete();
#endif
#if PROXY_TO_PTHREAD
// User requested the PROXY_TO_PTHREAD option, so call a stub main which pthread_create()s a new thread
// that will call the user's real main() for the application.
var ret = _proxy_main();
#else
var ret = _main();
#if EXIT_RUNTIME
callRuntimeCallbacks(__ATEXIT__);
{{{ getQuoted('ATEXITS') }}}
#endif
#if IN_TEST_HARNESS
// fflush() filesystem stdio for test harness, since there are existing tests that depend on this behavior.
// For production use, instead print full lines to avoid this kind of lazy behavior.
if (typeof _fflush !== 'undefined') _fflush();
#endif
#if ASSERTIONS
runtimeExited = true;
#endif
#endif
#if STACK_OVERFLOW_CHECK
checkStackCookie();
#endif
}
#endif
function initRuntime(asm) {
#if ASSERTIONS
runtimeInitialized = true;
#endif
#if USE_PTHREADS
// Export needed variables that worker.js needs to Module.
#if WASM_BACKEND
Module['_emscripten_tls_init'] = _emscripten_tls_init;
#endif
Module['HEAPU32'] = HEAPU32;
Module['dynCall_ii'] = dynCall_ii;
Module['__register_pthread_ptr'] = __register_pthread_ptr;
Module['_pthread_self'] = _pthread_self;
if (ENVIRONMENT_IS_PTHREAD) return;
// Pass the thread address inside the asm.js scope to store it for fast access that avoids the need for a FFI out.
__register_pthread_ptr(PThread.mainThreadBlock, /*isMainBrowserThread=*/!ENVIRONMENT_IS_WORKER, /*isMainRuntimeThread=*/1);
_emscripten_register_main_browser_thread_id(PThread.mainThreadBlock);
#endif
#if STACK_OVERFLOW_CHECK
writeStackCookie();
#endif
/*** RUN_GLOBAL_INITIALIZERS(); ***/
{{{ getQuoted('ATINITS') }}}
}
#if WASM
// Initialize wasm (asynchronous)
var imports = {
#if MINIFY_WASM_IMPORTED_MODULES
'a': asmLibraryArg,
#else // MINIFY_WASM_IMPORTED_MODULES
'env': asmLibraryArg
, '{{{ WASI_MODULE_NAME }}}': asmLibraryArg
#endif // MINIFY_WASM_IMPORTED_MODULES
#if WASM_BACKEND == 0
, 'global': {
'NaN': NaN,
'Infinity': Infinity
},
'global.Math': Math,
'asm2wasm': {
'f64-rem': function(x, y) { return x % y; },
'debugger': function() {
#if ASSERTIONS // Disable debugger; statement from being present in release builds to avoid Firefox deoptimizations, see https://bugzilla.mozilla.org/show_bug.cgi?id=1538375
debugger;
#endif
}
}
#endif
};
// In non-fastcomp non-asm.js builds, grab wasm exports to outer scope
// for emscripten_get_exported_function() to be able to access them.
#if (LibraryManager.has('library_exports.js')) && (WASM || WASM_BACKEND)
var asm;
#endif
#if USE_PTHREADS && WASM
var wasmModule;
#if PTHREAD_POOL_SIZE
function loadWasmModuleToWorkers() {
#if PTHREAD_POOL_DELAY_LOAD
PThread.unusedWorkers.forEach(PThread.loadWasmModuleToWorker);
#else
var numWorkersToLoad = PThread.unusedWorkers.length;
PThread.unusedWorkers.forEach(function(w) { PThread.loadWasmModuleToWorker(w, function() {
// PTHREAD_POOL_DELAY_LOAD==0: we wanted to synchronously wait until the Worker pool
// has loaded up. If all Workers have finished loading up the Wasm Module, proceed with main()
if (!--numWorkersToLoad) ready();
})});
#endif
}
#endif
#endif
#if DECLARE_ASM_MODULE_EXPORTS
/*** ASM_MODULE_EXPORTS_DECLARES ***/
#endif
#if MINIMAL_RUNTIME_STREAMING_WASM_INSTANTIATION
// https://caniuse.com/#feat=wasm and https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/instantiateStreaming
// Firefox 52 added Wasm support, but only Firefox 58 added instantiateStreaming.
// Chrome 57 added Wasm support, but only Chrome 61 added instantiateStreaming.
// Node.js and Safari do not support instantiateStreaming.
#if MIN_FIREFOX_VERSION < 58 || MIN_CHROME_VERSION < 61 || ENVIRONMENT_MAY_BE_NODE || MIN_SAFARI_VERSION != TARGET_NOT_SUPPORTED
#if ASSERTIONS && !WASM2JS
// Module['wasm'] should contain a typed array of the Wasm object data, or a precompiled WebAssembly Module.
if (!WebAssembly.instantiateStreaming && !Module['wasm']) throw 'Must load WebAssembly Module in to variable Module.wasm before adding compiled output .js script to the DOM';
#endif
(WebAssembly.instantiateStreaming
? WebAssembly.instantiateStreaming(fetch('{{{ TARGET_BASENAME }}}.wasm'), imports)
: WebAssembly.instantiate(Module['wasm'], imports)).then(function(output) {
#else
WebAssembly.instantiateStreaming(fetch('{{{ TARGET_BASENAME }}}.wasm'), imports).then(function(output) {
#endif
#else // Non-streaming instantiation
#if ASSERTIONS && !WASM2JS
// Module['wasm'] should contain a typed array of the Wasm object data, or a precompiled WebAssembly Module.
if (!Module['wasm']) throw 'Must load WebAssembly Module in to variable Module.wasm before adding compiled output .js script to the DOM';
#endif
WebAssembly.instantiate(Module['wasm'], imports).then(function(output) {
#endif
#if USE_PTHREADS
// Export Wasm module for pthread creation to access.
wasmModule = output.module || Module['wasm'];
#endif
#if !(LibraryManager.has('library_exports.js') && (WASM || WASM_BACKEND)) && !EMBIND
// If not using the emscripten_get_exported_function() API or embind, keep the 'asm'
// exports variable in local scope to this instantiate function to save code size.
// (otherwise access it without to export it to outer scope)
var
#endif
// WebAssembly instantiation API gotcha: if Module['wasm'] above was a typed array, then the
// output object will have an output.instance and output.module objects. But if Module['wasm']
// is an already compiled WebAssembly module, then output is the WebAssembly instance itself.
// Depending on the build mode, Module['wasm'] can mean a different thing.
#if MINIMAL_RUNTIME_STREAMING_WASM_COMPILATION || MINIMAL_RUNTIME_STREAMING_WASM_INSTANTIATION || USE_PTHREADS
// https://caniuse.com/#feat=wasm and https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/instantiateStreaming
// Firefox 52 added Wasm support, but only Firefox 58 added compileStreaming & instantiateStreaming.
// Chrome 57 added Wasm support, but only Chrome 61 added compileStreaming & instantiateStreaming.
// Node.js and Safari do not support compileStreaming or instantiateStreaming.
#if MIN_FIREFOX_VERSION < 58 || MIN_CHROME_VERSION < 61 || ENVIRONMENT_MAY_BE_NODE || MIN_SAFARI_VERSION != TARGET_NOT_SUPPORTED || USE_PTHREADS
// In pthreads, Module['wasm'] is an already compiled WebAssembly.Module. In that case, 'output' is a WebAssembly.Instance.
// In main thread, Module['wasm'] is either a typed array or a fetch stream. In that case, 'output.instance' is the WebAssembly.Instance.
asm = (output.instance || output).exports;
#else
asm = output.exports;
#endif
#else
asm = output.instance.exports;
#endif
#if USE_OFFSET_CONVERTER
wasmOffsetConverter =
#if USE_PTHREADS
ENVIRONMENT_IS_PTHREAD ? resetPrototype(WasmOffsetConverter, wasmOffsetData) :
#endif
new WasmOffsetConverter(Module['wasm'], output.module);
#endif
#if !DECLARE_ASM_MODULE_EXPORTS
exportAsmFunctions(asm);
#else
/*** ASM_MODULE_EXPORTS ***/
#endif
initRuntime(asm);
#if USE_PTHREADS && PTHREAD_POOL_SIZE
if (!ENVIRONMENT_IS_PTHREAD) loadWasmModuleToWorkers();
#if !PTHREAD_POOL_DELAY_LOAD
else
#endif
ready();
#else
ready();
#endif
#if USE_PTHREADS
// This Worker is now ready to host pthreads, tell the main thread we can proceed.
if (ENVIRONMENT_IS_PTHREAD) {
postMessage({ 'cmd': 'loaded' });
}
#endif
})
#if ASSERTIONS
.catch(function(error) {
console.error(error);
})
#endif
;
#else
// Initialize asm.js (synchronous)
initRuntime(asm);
#if USE_PTHREADS && PTHREAD_POOL_SIZE
if (!ENVIRONMENT_IS_PTHREAD) loadWasmModuleToWorkers();
#if !PTHREAD_POOL_DELAY_LOAD
else
#endif
ready();
#else
ready();
#endif
#endif
{{GLOBAL_VARS}}