-
Notifications
You must be signed in to change notification settings - Fork 201
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
NativeAOT-LLVM: Change name of Wasm Import function name to include the module prefix #2410
NativeAOT-LLVM: Change name of Wasm Import function name to include the module prefix #2410
Conversation
… for imports and exports of the same symbol
How would you define such a component in C/C++ (or Rust I guess)? So far the model has been that all statically resolvable symbols are statically linked. So its expected that code below will always do PI -> RPI_Impl: void PI()
{
[DllImport("*")]
[WasmImport] // Stand-in syntax for specifying the method in the imports list
static void RPI();
RPI();
}
[UnamangedCallersOnly(EntryPoint = "RPI")]
static void RPI_Impl() { } What this change effectively does is that if Do we want that behavior (I am not sure myself)? How does this interact with #2383? |
// import
__attribute__((__import_module__("imports"), __import_name__("many-arguments")))
void __wasm_import_imports_many_arguments(int64_t, int64_t, int64_t, int64_t, int64_t, int64_t, int64_t, int64_t, int64_t, int64_t, int64_t, int64_t, int64_t, int64_t, int64_t, int64_t);
// export
__attribute__((__export_name__("many-arguments")))
void __wasm_export_many_arguments_many_arguments(int64_t arg, int64_t arg0, int64_t arg1, int64_t arg2, int64_t arg3, int64_t arg4, int64_t arg5, int64_t arg6, int64_t arg7, int64_t arg8, int64_t arg9, int64_t arg10, int64_t arg11, int64_t arg12, int64_t arg13, int64_t arg14) {
many_arguments_many_arguments((uint64_t) (arg), (uint64_t) (arg0), (uint64_t) (arg1), (uint64_t) (arg2), (uint64_t) (arg3), (uint64_t) (arg4), (uint64_t) (arg5), (uint64_t) (arg6), (uint64_t) (arg7), (uint64_t) (arg8), (uint64_t) (arg9), (uint64_t) (arg10), (uint64_t) (arg11), (uint64_t) (arg12), (uint64_t) (arg13), (uint64_t) (arg14));
} |
Yes, I think we do. |
Are there scenarios where the current behavior of "try static linking, fall back to Wasm imports" valuable / desirable? Say, someone shipping a managed library that depends on some native library, and that native library is available as a component in some environments but not others (where it'd be linked in statically). |
If I understand correctly, you are suggesting a scenario where module A imports from module B function F, but if we can find F statically from anywhere, i.e. any module, then link it regardless of the mismatch in module name? |
minor changes to many-arguments test but this requires a change to NativeAOT-LLVM dotnet/runtimelab#2410
Marking as draft while I check if #2444 means we can solve the same export/import name in wit codegen. |
superceded by #2444 |
This PR solves a problem creating a Wasm Component that defines a WIT world where the same name function is both imported and exported, directly or via an interface, e.g.
Previously this would have created and extern with the name
many-arguments
and an alias for the export with the same name. This resulted in the linker making calls to the extern call back into the export and not the actual imported function.I have added the module name to the extern (the Wasm import) where a
WasmImport
is defined. Maybe not the best strategy?cc @dotnet/nativeaot-llvm