Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unify more of the minimal runtime and normal runtime initialization code. #23488

Merged
merged 2 commits into from
Jan 30, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/jsifier.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import * as path from 'node:path';
import {
ATEXITS,
ATINITS,
ATMAINS,
ATPOSTCTORS,
defineI64Param,
indentify,
makeReturn64,
Expand Down Expand Up @@ -778,7 +778,7 @@ var proxiedFunctionTable = [
asyncFuncs,
libraryDefinitions: LibraryManager.libraryDefinitions,
ATINITS: ATINITS.join('\n'),
ATMAINS: STRICT ? '' : ATMAINS.join('\n'),
ATPOSTCTORS: ATPOSTCTORS.join('\n'),
ATEXITS: ATEXITS.join('\n'),
}),
);
Expand Down
2 changes: 1 addition & 1 deletion src/lib/libdylink.js
Original file line number Diff line number Diff line change
Expand Up @@ -859,7 +859,7 @@ var LibraryDylink = {
init();
} else {
// we aren't ready to run compiled code yet
__ATINIT__.push(init);
__ATPOSTCTOR__.push(init);
}
}
#if PTHREADS
Expand Down
4 changes: 2 additions & 2 deletions src/lib/libembind_gen.js
Original file line number Diff line number Diff line change
Expand Up @@ -835,7 +835,7 @@ var LibraryEmbind = {

#if EMBIND_AOT
$embindEmitAotJs__deps: ['$awaitingDependencies', '$throwBindingError', '$getTypeName', '$moduleDefinitions', '$JsPrinter'],
$embindEmitAotJs__postset: 'addOnInit(embindEmitAotJs);',
$embindEmitAotJs__postset: () => { addAtPostCtor('embindEmitAotJs()'); },
$embindEmitAotJs: () => {
for (const typeId in awaitingDependencies) {
throwBindingError(`Missing binding for type: '${getTypeName(typeId)}' typeId: ${typeId}`);
Expand All @@ -845,7 +845,7 @@ var LibraryEmbind = {
},
#else // EMBIND_AOT
$embindEmitTypes__deps: ['$awaitingDependencies', '$throwBindingError', '$getTypeName', '$moduleDefinitions', '$TsPrinter'],
$embindEmitTypes__postset: 'addOnInit(embindEmitTypes);',
$embindEmitTypes__postset: () => { addAtPostCtor('embindEmitTypes()'); },
$embindEmitTypes: () => {
for (const typeId in awaitingDependencies) {
throwBindingError(`Missing binding for type: '${getTypeName(typeId)}' typeId: ${typeId}`);
Expand Down
7 changes: 2 additions & 5 deletions src/lib/libfs.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,8 @@ addToLibrary({
],
$FS__postset: () => {
// TODO: do we need noFSInit?
addAtInit(`
if (!Module['noFSInit'] && !FS.initialized)
FS.init();
FS.ignorePermissions = false;
`)
addAtInit(`if (!Module['noFSInit'] && !FS.initialized) FS.init();`);
addAtPostCtor('FS.ignorePermissions = false;');
addAtExit('FS.quit();');
return `
FS.createPreloadedFile = FS_createPreloadedFile;
Expand Down
13 changes: 11 additions & 2 deletions src/parseTools.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -731,14 +731,22 @@ function makeEval(code) {
return ret;
}

export const ATMAINS = [];

export const ATINITS = [];

// Add code to run after the Wasm module is loaded, but before static
// constructors and main (if applicable). The code will be executed before the
// runtime `__ATINIT__` callbacks.
function addAtInit(code) {
ATINITS.push(code);
}

export const ATPOSTCTORS = [];

// Add code to run after static constructors, but before main (if applicable).
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This change looks great! The only think i'm not sure about is the naming of this new list of actions.

Reading this comment made me think that since the primary defining factor seems to be related to static ctors, perhaps we should call it something with that in the name? ATCTORS ? ATPOSTCTORS? I'm not sure I love either of those though.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm also not crazy about the name. I think I had ATPOSTCTORS in another version. That's probably the most clear.

function addAtPostCtor(code) {
ATPOSTCTORS.push(code);
}

export const ATEXITS = [];

function addAtExit(code) {
Expand Down Expand Up @@ -1104,6 +1112,7 @@ addToCompileTimeContext({
ENVIRONMENT_IS_WORKER_THREAD,
addAtExit,
addAtInit,
addAtPostCtor,
asyncIf,
awaitIf,
buildStringArray,
Expand Down
3 changes: 1 addition & 2 deletions src/parseTools_legacy.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
*/

import {warn, addToCompileTimeContext} from './utility.mjs';
import {ATMAINS, POINTER_SIZE, runIfMainThread} from './parseTools.mjs';
import {POINTER_SIZE, runIfMainThread} from './parseTools.mjs';

// Replaced (at least internally) with receiveI64ParamAsI53 that does
// bounds checking.
Expand Down Expand Up @@ -42,7 +42,6 @@ const Runtime = {
const runOnMainThread = runIfMainThread;

addToCompileTimeContext({
ATMAINS,
Runtime,
makeMalloc,
receiveI64ParamAsDouble,
Expand Down
6 changes: 3 additions & 3 deletions src/postamble_minimal.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ function run() {
emscriptenMemoryProfiler.onPreloadComplete();
#endif

<<< ATMAINS >>>

#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
Expand Down Expand Up @@ -73,11 +71,13 @@ function initRuntime(wasmExports) {
PThread.tlsInitFunctions.push(wasmExports['_emscripten_tls_init']);
#endif

<<< ATINITS >>>

#if hasExportedSymbol('__wasm_call_ctors')
wasmExports['__wasm_call_ctors']();
#endif

<<< ATINITS >>>
<<< ATPOSTCTORS >>>
}

// Initialize wasm (asynchronous)
Expand Down
14 changes: 9 additions & 5 deletions src/preamble.js
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,7 @@ assert(!Module['INITIAL_MEMORY'], 'Detected runtime INITIAL_MEMORY setting. Use

var __ATPRERUN__ = []; // functions called before the runtime is initialized
var __ATINIT__ = []; // functions called during startup
var __ATPOSTCTOR__ = []; // functions called after static constructors
#if HAS_MAIN
var __ATMAIN__ = []; // functions called when main() is to be run
#endif
Expand Down Expand Up @@ -230,16 +231,23 @@ function initRuntime() {
#if RELOCATABLE
callRuntimeCallbacks(__RELOC_FUNCS__);
#endif

<<< ATINITS >>>
callRuntimeCallbacks(__ATINIT__);

#if hasExportedSymbol('__wasm_call_ctors')
wasmExports['__wasm_call_ctors']();
#endif

<<< ATPOSTCTORS >>>
callRuntimeCallbacks(__ATPOSTCTOR__);
}

#if HAS_MAIN
function preMain() {
#if STACK_OVERFLOW_CHECK
checkStackCookie();
#endif
<<< ATMAINS >>>
callRuntimeCallbacks(__ATMAIN__);
}
#endif
Expand Down Expand Up @@ -960,10 +968,6 @@ function getWasmImports() {
#endif
#endif

#if hasExportedSymbol('__wasm_call_ctors')
addOnInit(wasmExports['__wasm_call_ctors']);
#endif

#if hasExportedSymbol('__wasm_apply_data_relocs')
__RELOC_FUNCS__.push(wasmExports['__wasm_apply_data_relocs']);
#endif
Expand Down
2 changes: 1 addition & 1 deletion test/browser/test_small_js_flags.js.size
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4340
4343
2 changes: 1 addition & 1 deletion test/other/codesize/test_codesize_cxx_ctors1.gzsize
Original file line number Diff line number Diff line change
@@ -1 +1 @@
8350
8357
2 changes: 1 addition & 1 deletion test/other/codesize/test_codesize_cxx_ctors1.jssize
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20267
20268
2 changes: 1 addition & 1 deletion test/other/codesize/test_codesize_cxx_ctors2.gzsize
Original file line number Diff line number Diff line change
@@ -1 +1 @@
8333
8341
2 changes: 1 addition & 1 deletion test/other/codesize/test_codesize_cxx_ctors2.jssize
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20235
20247
2 changes: 1 addition & 1 deletion test/other/codesize/test_codesize_cxx_except.gzsize
Original file line number Diff line number Diff line change
@@ -1 +1 @@
9351
9363
2 changes: 1 addition & 1 deletion test/other/codesize/test_codesize_cxx_except.jssize
Original file line number Diff line number Diff line change
@@ -1 +1 @@
24035
24036
2 changes: 1 addition & 1 deletion test/other/codesize/test_codesize_cxx_except_wasm.gzsize
Original file line number Diff line number Diff line change
@@ -1 +1 @@
8296
8305
2 changes: 1 addition & 1 deletion test/other/codesize/test_codesize_cxx_except_wasm.jssize
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20160
20161
Original file line number Diff line number Diff line change
@@ -1 +1 @@
8296
8305
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20160
20161
2 changes: 1 addition & 1 deletion test/other/codesize/test_codesize_cxx_lto.gzsize
Original file line number Diff line number Diff line change
@@ -1 +1 @@
8361
8365
2 changes: 1 addition & 1 deletion test/other/codesize/test_codesize_cxx_lto.jssize
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20342
20344
2 changes: 1 addition & 1 deletion test/other/codesize/test_codesize_cxx_mangle.gzsize
Original file line number Diff line number Diff line change
@@ -1 +1 @@
9357
9368
2 changes: 1 addition & 1 deletion test/other/codesize/test_codesize_cxx_mangle.jssize
Original file line number Diff line number Diff line change
@@ -1 +1 @@
24035
24037
2 changes: 1 addition & 1 deletion test/other/codesize/test_codesize_cxx_noexcept.gzsize
Original file line number Diff line number Diff line change
@@ -1 +1 @@
8350
8357
2 changes: 1 addition & 1 deletion test/other/codesize/test_codesize_cxx_noexcept.jssize
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20267
20268
2 changes: 1 addition & 1 deletion test/other/codesize/test_codesize_cxx_wasmfs.gzsize
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3561
3564
2 changes: 1 addition & 1 deletion test/other/codesize/test_codesize_cxx_wasmfs.jssize
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7675
7677
2 changes: 1 addition & 1 deletion test/other/codesize/test_codesize_files_js_fs.gzsize
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7657
7658
2 changes: 1 addition & 1 deletion test/other/codesize/test_codesize_files_js_fs.jssize
Original file line number Diff line number Diff line change
@@ -1 +1 @@
18813
18815
2 changes: 1 addition & 1 deletion test/other/codesize/test_codesize_files_wasmfs.gzsize
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2797
2798
2 changes: 1 addition & 1 deletion test/other/codesize/test_codesize_files_wasmfs.jssize
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5983
5986
2 changes: 1 addition & 1 deletion test/other/codesize/test_codesize_hello_O0.jssize
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20982
20996
2 changes: 1 addition & 1 deletion test/other/codesize/test_codesize_hello_O1.gzsize
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2656
2659
2 changes: 1 addition & 1 deletion test/other/codesize/test_codesize_hello_O1.jssize
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6836
6851
2 changes: 1 addition & 1 deletion test/other/codesize/test_codesize_hello_O2.gzsize
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2318
2320
2 changes: 1 addition & 1 deletion test/other/codesize/test_codesize_hello_O2.jssize
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4777
4780
2 changes: 1 addition & 1 deletion test/other/codesize/test_codesize_hello_O3.gzsize
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2276
2279
2 changes: 1 addition & 1 deletion test/other/codesize/test_codesize_hello_O3.jssize
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4719
4722
2 changes: 1 addition & 1 deletion test/other/codesize/test_codesize_hello_Os.gzsize
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2276
2279
2 changes: 1 addition & 1 deletion test/other/codesize/test_codesize_hello_Os.jssize
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4719
4722
2 changes: 1 addition & 1 deletion test/other/codesize/test_codesize_hello_Oz.gzsize
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2276
2279
2 changes: 1 addition & 1 deletion test/other/codesize/test_codesize_hello_Oz.jssize
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4719
4722
2 changes: 1 addition & 1 deletion test/other/codesize/test_codesize_hello_dylink.gzsize
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5988
5990
2 changes: 1 addition & 1 deletion test/other/codesize/test_codesize_hello_dylink.jssize
Original file line number Diff line number Diff line change
@@ -1 +1 @@
13240
13242
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1675
1677
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3632
3633
2 changes: 1 addition & 1 deletion test/other/codesize/test_codesize_hello_wasmfs.gzsize
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2276
2279
2 changes: 1 addition & 1 deletion test/other/codesize/test_codesize_hello_wasmfs.jssize
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4719
4722
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3995
3996
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1909
1914
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4043
4053
2 changes: 1 addition & 1 deletion test/other/codesize/test_codesize_mem_O3.gzsize
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2324
2326
2 changes: 1 addition & 1 deletion test/other/codesize/test_codesize_mem_O3.jssize
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4887
4890
2 changes: 1 addition & 1 deletion test/other/codesize/test_codesize_mem_O3_grow.gzsize
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2472
2473
2 changes: 1 addition & 1 deletion test/other/codesize/test_codesize_mem_O3_grow.jssize
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5171
5174
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2173
2178
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4580
4592
2 changes: 1 addition & 1 deletion test/other/codesize/test_codesize_mem_O3_standalone.gzsize
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2138
2144
2 changes: 1 addition & 1 deletion test/other/codesize/test_codesize_mem_O3_standalone.jssize
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4512
4522
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1895
1901
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4042
4052
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1909
1914
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4043
4053
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1909
1914
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4043
4053
2 changes: 1 addition & 1 deletion test/other/codesize/test_codesize_minimal_64.gzsize
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1438
1430
2 changes: 1 addition & 1 deletion test/other/codesize/test_codesize_minimal_64.jssize
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3057
3004
2 changes: 1 addition & 1 deletion test/other/codesize/test_codesize_minimal_O0.gzsize
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6445
6425
2 changes: 1 addition & 1 deletion test/other/codesize/test_codesize_minimal_O0.jssize
Original file line number Diff line number Diff line change
@@ -1 +1 @@
17093
16914
2 changes: 1 addition & 1 deletion test/other/codesize/test_codesize_minimal_O1.gzsize
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1531
1514
2 changes: 1 addition & 1 deletion test/other/codesize/test_codesize_minimal_O1.jssize
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3701
3529
2 changes: 1 addition & 1 deletion test/other/codesize/test_codesize_minimal_O2.gzsize
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1378
1371
2 changes: 1 addition & 1 deletion test/other/codesize/test_codesize_minimal_O2.jssize
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2805
2752
2 changes: 1 addition & 1 deletion test/other/codesize/test_codesize_minimal_O3.gzsize
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1345
1335
2 changes: 1 addition & 1 deletion test/other/codesize/test_codesize_minimal_O3.jssize
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2755
2701
2 changes: 1 addition & 1 deletion test/other/codesize/test_codesize_minimal_Os.gzsize
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1345
1335
2 changes: 1 addition & 1 deletion test/other/codesize/test_codesize_minimal_Os.jssize
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2755
2701
2 changes: 1 addition & 1 deletion test/other/codesize/test_codesize_minimal_Oz-ctors.gzsize
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1336
1331
2 changes: 1 addition & 1 deletion test/other/codesize/test_codesize_minimal_Oz-ctors.jssize
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2740
2695
2 changes: 1 addition & 1 deletion test/other/codesize/test_codesize_minimal_Oz.gzsize
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1345
1335
2 changes: 1 addition & 1 deletion test/other/codesize/test_codesize_minimal_Oz.jssize
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2755
2701
2 changes: 1 addition & 1 deletion test/other/codesize/test_codesize_minimal_esm.gzsize
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1540
1533
Loading