Skip to content

Commit 8f5ac8d

Browse files
committed
Re-enable preprocessing of pre/post JS file. NFC
This change got reverted in #19006 so this time we make the preprocessing optional. This is useful as it allows things like `{{{ POINTER_SIZE }}}` and `{{{ makeGetValue(..) }}}` to be used in pre/post JS files, just like they can be in JS library files. This change allows threadprofiler.js to be fixed such that it works under wasm64. Fixes: #21226
1 parent 81fe157 commit 8f5ac8d

8 files changed

+71
-31
lines changed

ChangeLog.md

+13-8
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,16 @@ See docs/process.md for more on how version tagging works.
2020

2121
3.1.54 (in development)
2222
-----------------------
23-
- Added `--use-port` option to `emcc`. This option allows ports to be enabled
24-
by name and is designed to replace all existing `-sUSE_XXX` settings for
25-
ports. You can use `--show-ports` to get the list of available ports that
23+
- Added `--use-port` option to `emcc`. This option allows ports to be enabled
24+
by name and is designed to replace all existing `-sUSE_XXX` settings for
25+
ports. You can use `--show-ports` to get the list of available ports that
2626
can be used with this new option. (#21214)
27-
27+
- `--pre-js` and `--post-js` files can now opt into being run through the JS
28+
preprocessor. This change was originally landed in #18525, but it got
29+
reverted in #19006. Now it requires explicit opt-in by adding `#preprocess` to
30+
the top of the JS file. This is useful as it allows things like `{{{
31+
POINTER_SIZE }}}` and `{{{ makeGetValue(..) }}}` to be used in pre/post JS
32+
files, just like they can be in JS library files. (#21227)
2833

2934
3.1.53 - 01/29/24
3035
-----------------
@@ -68,7 +73,7 @@ See docs/process.md for more on how version tagging works.
6873
is intending to target them today. (#20924)
6974
- C++ objects passed into embind's val via constructors, methods, and call
7075
function will not be automatically destroyed after the function call. This
71-
makes the behavior consistent for invocations.
76+
makes the behavior consistent for invocations.
7277
- The `SUPPORT_ERRNO` setting is now deprecated as it only controlled setting
7378
errno from JS library functions and emscripten no longer requires this.
7479
(#21074)
@@ -140,7 +145,7 @@ See docs/process.md for more on how version tagging works.
140145
- The `glfwSetWindowSize` function no longer switches to fullscreen when the
141146
width/height provided as parameters match the screen size. This behavior
142147
now matches the behavior of SDL and glut. In order to switch to fullscreen,
143-
the client code should invoke `Module.requestFullscreen(...)` from a user
148+
the client code should invoke `Module.requestFullscreen(...)` from a user
144149
triggered event otherwise the browser raises an error. (#20600)
145150

146151
3.1.48 - 11/05/23
@@ -375,7 +380,7 @@ See docs/process.md for more on how version tagging works.
375380
- When targeting node, and using `-sMODULARIZE`, we no longer internally catch
376381
unhandled promise rejections or exit status code. That is to say the,
377382
`NODEJS_CATCH_REJECTION` and `NODEJS_CATCH_EXIT` are no longer compatible
378-
with `-sMODULARIZE`.
383+
with `-sMODULARIZE`.
379384

380385
3.1.33 - 03/08/23
381386
-----------------
@@ -396,7 +401,7 @@ See docs/process.md for more on how version tagging works.
396401
(#18861)
397402
- The `emscripten_proxy_async_with_callback` API was replaced with a simpler
398403
`emscripten_proxy_callback` API that takes a second callback to be called if
399-
the worker thread dies before completing the proxied work.
404+
the worker thread dies before completing the proxied work.
400405

401406
3.1.32 - 02/17/23
402407
-----------------

src/generated_struct_info32.json

+1
Original file line numberDiff line numberDiff line change
@@ -223,6 +223,7 @@
223223
"EM_PROMISE_MATCH": 1,
224224
"EM_PROMISE_MATCH_RELEASE": 2,
225225
"EM_PROMISE_REJECT": 3,
226+
"EM_THREAD_STATUS_NUMFIELDS": 7,
226227
"EM_TIMING_RAF": 1,
227228
"EM_TIMING_SETIMMEDIATE": 2,
228229
"EM_TIMING_SETTIMEOUT": 0,

src/generated_struct_info64.json

+1
Original file line numberDiff line numberDiff line change
@@ -223,6 +223,7 @@
223223
"EM_PROMISE_MATCH": 1,
224224
"EM_PROMISE_MATCH_RELEASE": 2,
225225
"EM_PROMISE_REJECT": 3,
226+
"EM_THREAD_STATUS_NUMFIELDS": 7,
226227
"EM_TIMING_RAF": 1,
227228
"EM_TIMING_SETIMMEDIATE": 2,
228229
"EM_TIMING_SETTIMEOUT": 0,

src/jsifier.js

+23-9
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,22 @@ function getTransitiveDeps(symbol) {
9797
return Array.from(transitiveDeps);
9898
}
9999

100+
function shouldPreprocess(fileName) {
101+
return read(fileName).trim().startsWith('#preprocess\n');
102+
}
103+
104+
function preJS() {
105+
let result = '';
106+
for (const fileName of PRE_JS_FILES) {
107+
if (shouldPreprocess(fileName)) {
108+
result += processMacros(preprocess(fileName));
109+
} else {
110+
result += read(fileName);
111+
}
112+
}
113+
return result;
114+
}
115+
100116
function runJSify() {
101117
const libraryItems = [];
102118
const symbolDeps = {};
@@ -583,15 +599,13 @@ function(${args}) {
583599
libraryItems.push(JS);
584600
}
585601

586-
function includeFile(fileName) {
602+
function includeFile(fileName, needsPreprocess = true) {
587603
print(`// include: ${fileName}`);
588-
print(processMacros(preprocess(fileName)));
589-
print(`// end include: ${fileName}`);
590-
}
591-
592-
function includeFileRaw(fileName) {
593-
print(`// include: ${fileName}`);
594-
print(read(fileName));
604+
if (needsPreprocess) {
605+
print(processMacros(preprocess(fileName)));
606+
} else {
607+
print(read(fileName));
608+
}
595609
print(`// end include: ${fileName}`);
596610
}
597611

@@ -653,7 +667,7 @@ var proxiedFunctionTable = [
653667
includeFile(postFile);
654668

655669
for (const fileName of POST_JS_FILES) {
656-
includeFileRaw(fileName);
670+
includeFile(fileName, shouldPreprocess(fileName));
657671
}
658672

659673
print('//FORWARDED_DATA:' + JSON.stringify({

src/parseTools.js

+2-8
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,8 @@ function preprocess(filename) {
137137
if (showCurrentLine()) {
138138
error(`${filename}:${i + 1}: #error ${trimmed.substring(trimmed.indexOf(' ')).trim()}`);
139139
}
140+
} else if (first === '#preprocess') {
141+
// Do nothing
140142
} else {
141143
error(`${filename}:${i + 1}: Unknown preprocessor directive ${first}`);
142144
}
@@ -1022,14 +1024,6 @@ function getEntryFunction() {
10221024
return `_${entryFunction}`;
10231025
}
10241026

1025-
function preJS() {
1026-
let result = '';
1027-
for (const fileName of PRE_JS_FILES) {
1028-
result += read(fileName);
1029-
}
1030-
return result;
1031-
}
1032-
10331027
function formattedMinNodeVersion() {
10341028
var major = MIN_NODE_VERSION / 10000
10351029
var minor = (MIN_NODE_VERSION / 100) % 100

src/struct_info_internal.json

+6
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,12 @@
2424
"SIGCANCEL"
2525
]
2626
},
27+
{
28+
"file": "threading_internal.h",
29+
"defines": [
30+
"EM_THREAD_STATUS_NUMFIELDS"
31+
]
32+
},
2733
{
2834
"file": "dynlink.h",
2935
"structs": {

src/threadprofiler.js

+7-6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#preprocess
2+
13
/**
24
* @license
35
* Copyright 2015 The Emscripten Authors
@@ -41,7 +43,6 @@ var emscriptenThreadProfiler = {
4143
}
4244
for (var i = 0; i < threads.length; ++i) {
4345
var threadPtr = threads[i];
44-
var profilerBlock = Atomics.load(HEAPU32, (threadPtr + 8 /* {{{ C_STRUCTS.pthread.profilerBlock }}}*/) >> 2);
4546
var threadName = PThread.getThreadName(threadPtr);
4647
if (threadName) {
4748
threadName = `"${threadName}" (${ptrToString(threadPtr)})`;
@@ -69,7 +70,7 @@ var emscriptenThreadProfiler = {
6970

7071
for (var i = 0; i < threads.length; ++i) {
7172
var threadPtr = threads[i];
72-
var profilerBlock = Atomics.load(HEAPU32, (threadPtr + 8 /* {{{ C_STRUCTS.pthread.profilerBlock }}}*/) >> 2);
73+
var profilerBlock = Atomics.load({{{ getHeapForType('*') }}}, {{{ getHeapOffset('threadPtr + ' + C_STRUCTS.pthread.profilerBlock, '*') }}});
7374
var threadName = PThread.getThreadName(threadPtr);
7475
if (threadName) {
7576
threadName = `"${threadName}" (${ptrToString(threadPtr)})`;
@@ -81,11 +82,11 @@ var emscriptenThreadProfiler = {
8182

8283
var threadTimesInStatus = [];
8384
var totalTime = 0;
84-
var offset = profilerBlock + 16/*C_STRUCTS.thread_profiler_block.timeSpentInStatus*/;
85-
for (var j = 0; j < 7/*EM_THREAD_STATUS_NUMFIELDS*/; ++j, offset += 8) {
86-
threadTimesInStatus.push(Number(getValue(offset, 'double')));
85+
var offset = profilerBlock + {{{ C_STRUCTS.thread_profiler_block.timeSpentInStatus }}};
86+
for (var j = 0; j < {{{ cDefs.EM_THREAD_STATUS_NUMFIELDS }}}; ++j, offset += 8) {
87+
threadTimesInStatus.push({{{ makeGetValue('offset', 0, 'double') }}});
8788
totalTime += threadTimesInStatus[j];
88-
setValue(offset, 0, 'double');
89+
{{{ makeSetValue('offset', 0, 0, 'double') }}};
8990
}
9091
var recent = '';
9192
if (threadTimesInStatus[1] > 0) recent += (threadTimesInStatus[1] / totalTime * 100.0).toFixed(1) + '% running. ';

test/test_other.py

+18
Original file line numberDiff line numberDiff line change
@@ -14463,3 +14463,21 @@ def test_uuid(self):
1446314463
def test_wasm64_no_asan(self):
1446414464
err = self.expect_fail([EMCC, test_file('hello_world.c'), '-sMEMORY64', '-fsanitize=address'])
1446514465
self.assertContained('error: MEMORY64 does not yet work with ASAN', err)
14466+
14467+
def test_js_preprocess_pre_post(self):
14468+
create_file('pre.js', '''
14469+
#preprocess
14470+
#if ASSERTIONS
14471+
console.log('assertions enabled')
14472+
#else
14473+
console.log('assertions disabled')
14474+
#endif
14475+
''')
14476+
create_file('post.js', '''
14477+
#preprocess
14478+
console.log({{{ POINTER_SIZE }}});
14479+
''')
14480+
self.emcc_args += ['--pre-js', 'pre.js', '--post-js', 'post.js']
14481+
self.do_runf(test_file('hello_world.c'), 'assertions enabled\n4', emcc_args=['-sASSERTIONS=1'])
14482+
self.do_runf(test_file('hello_world.c'), 'assertions disabled\n4', emcc_args=['-sASSERTIONS=0'])
14483+
self.assertNotContained('#preprocess', read_file('hello_world.js'))

0 commit comments

Comments
 (0)