mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2025-07-15 00:38:17 +00:00

By this patch, an experimental shared-everything modules linking is supported, typically user could use the feature to dlopen a wasm/aot module, then get the funcref by dlsym, and call the target function by call indirect instr. Of course, a dlclose is supported too. Currently, root module could be a regular module, wasi module, or AssemblyScript module; dependency module MUST be a module built followed the proposal "dynamical linking", that means it should contain a new dylink section and no mem allocator function exported. User could get it by clang or emcc. New iwasm switch --enable-dopen is used for enabling the feature and choosing the launch mode. see the iwasm -h for details. Multiple modules feature is not well tested, there should be some cases not covered. Co-authored-by: jhe <hejie.he@antgroup.com>
82 lines
2.4 KiB
C
82 lines
2.4 KiB
C
/*
|
|
* Copyright (C) 2019 Intel Corporation. All rights reserved.
|
|
* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
*/
|
|
|
|
#ifndef _WASM_NATIVE_H
|
|
#define _WASM_NATIVE_H
|
|
|
|
#include "bh_common.h"
|
|
#include "../include/wasm_export.h"
|
|
#include "../interpreter/wasm.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct NativeSymbolsNode {
|
|
//struct NativeSymbolsNode *next;
|
|
const ConstStrDescription *module_name;
|
|
NativeSymbol *native_symbols;
|
|
uint32 n_native_symbols;
|
|
bool call_conv_raw;
|
|
} NativeSymbolsNode, *NativeSymbolsVec;
|
|
|
|
/**
|
|
* Lookup global variable of a given import global
|
|
* from libc builtin globals
|
|
*
|
|
* @param module_name the module name of the import global
|
|
* @param global_name the global name of the import global
|
|
* @param global return the global data
|
|
*
|
|
* @param true if success, false otherwise
|
|
*/
|
|
bool
|
|
wasm_native_lookup_libc_builtin_global(const char *module_name,
|
|
const char *global_name,
|
|
WASMGlobalImport *global);
|
|
|
|
/**
|
|
* Resolve native symbol in all libraries, including libc-builtin, libc-wasi,
|
|
* base lib and extension lib, and user registered natives
|
|
* function, which can be auto checked by vm before calling native function
|
|
*
|
|
* @param module_name the module name of the import function
|
|
* @param func_name the function name of the import function
|
|
* @param func_type the function prototype of the import function
|
|
* @param p_signature output the signature if resolve success
|
|
*
|
|
* @return the native function pointer if success, NULL otherwise
|
|
*/
|
|
void *
|
|
wasm_native_resolve_symbol(const ConstStrDescription *module_name,
|
|
const ConstStrDescription ** p_field_name,
|
|
const WASMType *func_type, const char **p_signature,
|
|
void **p_attachment, bool *p_call_conv_raw);
|
|
|
|
bool
|
|
wasm_native_register_natives(const char *module_name,
|
|
NativeSymbol *native_symbols,
|
|
uint32 n_native_symbols);
|
|
|
|
bool
|
|
wasm_native_register_natives_raw(const char *module_name,
|
|
NativeSymbol *native_symbols,
|
|
uint32 n_native_symbols);
|
|
|
|
bool
|
|
wasm_native_init();
|
|
|
|
void
|
|
wasm_native_destroy();
|
|
|
|
bool
|
|
check_symbol_signature(const WASMType *type, const char *signature);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* end of _WASM_NATIVE_H */
|