@@ -875,6 +875,8 @@ def create_module(sending, receiving, invoke_funcs, metadata):
875
875
876
876
module .append (receiving )
877
877
module .append (invoke_wrappers )
878
+ if settings .MEMORY64 :
879
+ module .append (create_wasm64_wrappers (metadata ))
878
880
return module
879
881
880
882
@@ -929,6 +931,63 @@ def create_invoke_wrappers(invoke_funcs):
929
931
return invoke_wrappers
930
932
931
933
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
+ #
939
+ # The signature format here is similar to the one used for JS libraries
940
+ # but with the following as the only valid char:
941
+ # '_' - non-pointer argument (pass though unchanged)
942
+ # 'p' - pointer/int53 argument (convert to/from BigInt)
943
+ # 'P' - same as above but allow `undefined` to (required extra check)
944
+ # but any non-pointer arguments should just be ignore as _, and P i
945
+ mapping = {
946
+ 'sbrk' : 'pP' ,
947
+ 'stackAlloc' : 'pp' ,
948
+ 'emscripten_builtin_malloc' : 'pp' ,
949
+ 'malloc' : 'pp' ,
950
+ '__getTypeName' : 'pp' ,
951
+ 'setThrew' : '_p' ,
952
+ 'free' : '_p' ,
953
+ 'stackRestore' : '_p' ,
954
+ '__cxa_is_pointer_type' : '_p' ,
955
+ 'stackSave' : 'p' ,
956
+ 'fflush' : '_p' ,
957
+ 'emscripten_stack_get_end' : 'p' ,
958
+ 'emscripten_stack_get_base' : 'p' ,
959
+ 'pthread_self' : 'p' ,
960
+ 'emscripten_stack_get_current' : 'p' ,
961
+ '__errno_location' : 'p' ,
962
+ 'emscripten_builtin_memalign' : 'ppp' ,
963
+ 'main' : '__PP' ,
964
+ 'emscripten_stack_set_limits' : '_pp' ,
965
+ '__set_stack_limits' : '_pp' ,
966
+ '__cxa_can_catch' : '_ppp' ,
967
+ }
968
+
969
+ wasm64_wrappers = '''
970
+ function instrumentWasmExportsForMemory64(exports) {
971
+ // First make a copy of the incoming exports object
972
+ exports = Object.assign({}, exports);'''
973
+
974
+ sigs_seen = set ()
975
+ wrap_functions = []
976
+ for exp in metadata ['exports' ]:
977
+ sig = mapping .get (exp )
978
+ if sig :
979
+ if sig not in sigs_seen :
980
+ sigs_seen .add (sig )
981
+ wasm64_wrappers += js_manipulation .make_wasm64_wrapper (sig )
982
+ wrap_functions .append (exp )
983
+
984
+ for f in wrap_functions :
985
+ sig = mapping [f ]
986
+ wasm64_wrappers += f"\n exports['{ f } '] = _wasm64_wrapper_{ sig } (exports['{ f } ']);"
987
+ wasm64_wrappers += '\n return exports\n }'
988
+ return wasm64_wrappers
989
+
990
+
932
991
def normalize_line_endings (text ):
933
992
"""Normalize to UNIX line endings.
934
993
0 commit comments