Skip to content

Commit f9c733e

Browse files
committed
Move parts of wasm64 export wrapper generation to build time. NFC
Specifically the metadata about which exports to wrap is now stored in the compiler rather than the runtime.
1 parent b2a0a83 commit f9c733e

5 files changed

+77
-87
lines changed

emscripten.py

+52
Original file line numberDiff line numberDiff line change
@@ -875,6 +875,8 @@ def create_module(sending, receiving, invoke_funcs, metadata):
875875

876876
module.append(receiving)
877877
module.append(invoke_wrappers)
878+
if settings.MEMORY64:
879+
module.append(create_wasm64_wrappers(metadata))
878880
return module
879881

880882

@@ -929,6 +931,56 @@ def create_invoke_wrappers(invoke_funcs):
929931
return invoke_wrappers
930932

931933

934+
def create_wasm64_wrappers(metadata):
935+
# TODO(sbc): Move this into somewhere less static. Maybe it can become
936+
# part of library.js file, even though this metadata relates specifically
937+
# to native (non-JS) functions.
938+
mapping = {
939+
'sbrk': 'pP',
940+
'stackAlloc': 'pp',
941+
'emscripten_builtin_malloc': 'pp',
942+
'malloc': 'pp',
943+
'__getTypeName': 'pp',
944+
'setThrew': 'ip',
945+
'free': 'ip',
946+
'stackRestore': 'ip',
947+
'__cxa_is_pointer_type': 'ip',
948+
'stackSave': 'p',
949+
'fflush': 'vp',
950+
'emscripten_stack_get_end': 'p',
951+
'emscripten_stack_get_base': 'p',
952+
'pthread_self': 'p',
953+
'emscripten_stack_get_current': 'p',
954+
'__errno_location': 'p',
955+
'emscripten_builtin_memalign': 'ppp',
956+
'main': 'iiPP',
957+
'emscripten_stack_set_limits': 'ipp',
958+
'__set_stack_limits': 'ipp',
959+
'__cxa_can_catch': 'ippp',
960+
}
961+
962+
wasm64_wrappers = '''
963+
function instrumentWasmExportsForMemory64(exports) {
964+
// First make a copy of the incoming exports object
965+
exports = Object.assign({}, exports);'''
966+
967+
sigs_seen = set()
968+
wrap_functions = []
969+
for exp in metadata['exports']:
970+
sig = mapping.get(exp)
971+
if sig:
972+
if sig not in sigs_seen:
973+
sigs_seen.add(sig)
974+
wasm64_wrappers += js_manipulation.make_wasm64_wrapper(sig)
975+
wrap_functions.append(exp)
976+
977+
for f in wrap_functions:
978+
sig = mapping[f]
979+
wasm64_wrappers += f"\n exports['{f}'] = _wasm64_wrapper_{sig}(exports['{f}']);"
980+
wasm64_wrappers += '\n return exports\n}'
981+
return wasm64_wrappers
982+
983+
932984
def normalize_line_endings(text):
933985
"""Normalize to UNIX line endings.
934986

src/preamble.js

-4
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,6 @@ if (typeof WebAssembly != 'object') {
5050
#include "runtime_asan.js"
5151
#endif
5252

53-
#if MEMORY64
54-
#include "runtime_wasm64.js"
55-
#endif
56-
5753
// Wasm globals
5854

5955
var wasmMemory;

src/preamble_minimal.js

-4
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,6 @@
1212
#include "runtime_asan.js"
1313
#endif
1414

15-
#if MEMORY64
16-
#include "runtime_wasm64.js"
17-
#endif
18-
1915
#if ASSERTIONS || SAFE_HEAP
2016
/** @type {function(*, string=)} */
2117
function assert(condition, text) {

src/runtime_wasm64.js

-79
This file was deleted.

tools/js_manipulation.py

+25
Original file line numberDiff line numberDiff line change
@@ -138,3 +138,28 @@ def make_invoke(sig):
138138
}''' % (sig, ','.join(args), body, exceptional_ret)
139139

140140
return ret
141+
142+
143+
def make_wasm64_wrapper(sig):
144+
assert 'p' in sig.lower()
145+
n_args = len(sig) - 1
146+
args = ['a%d' % i for i in range(n_args)]
147+
args_converted = args.copy()
148+
for i, arg_type in enumerate(sig[1:]):
149+
if arg_type == 'p':
150+
args_converted[i] = f'BigInt({args_converted[i]})'
151+
elif arg_type == 'P':
152+
args_converted[i] = f'BigInt({args_converted[i]} ? {args_converted[i]} : 0)'
153+
154+
args_in = ', '.join(args)
155+
args_out = ', '.join(args_converted)
156+
result = f'f({args_out})'
157+
if sig[0] == 'p':
158+
result = f'Number({result})'
159+
160+
return f'''
161+
function _wasm64_wrapper_{sig}(f) {{
162+
return function({args_in}) {{
163+
return {result};
164+
}};
165+
}}'''

0 commit comments

Comments
 (0)