wasm-micro-runtime/core/iwasm/compilation
Benbuck Nason 8239dd4aa7
Add wasm_export.h APIs to expose memory type (#3496)
Support to get `wasm_memory_type_t memory_type` from API
`wasm_runtime_get_import_type` and `wasm_runtime_get_export_type`,
and then get shared flag, initial page cout, maximum page count
from the memory_type:
```C
bool
wasm_memory_type_get_shared(const wasm_memory_type_t memory_type);
uint32_t
wasm_memory_type_get_init_page_count(const wasm_memory_type_t memory_type);
uint32_t
wasm_memory_type_get_max_page_count(const wasm_memory_type_t memory_type);
```
2024-06-06 09:20:24 +08:00
..
debug Fix some more spelling issues (#3393) 2024-05-08 09:30:29 +08:00
simd Implement Memory64 support for AOT (#3362) 2024-05-13 11:03:38 +08:00
aot_compiler.c Fix loader parse block type and calculate dynamic offset for loop args (#3482) 2024-05-31 11:32:36 +08:00
aot_compiler.h Add wasm_export.h APIs to expose memory type (#3496) 2024-06-06 09:20:24 +08:00
aot_emit_aot_file.c Add wasm_export.h APIs to expose memory type (#3496) 2024-06-06 09:20:24 +08:00
aot_emit_compare.c Implement GC (Garbage Collection) feature for interpreter, AOT and LLVM-JIT (#3125) 2024-02-06 20:47:11 +08:00
aot_emit_compare.h Implement GC (Garbage Collection) feature for interpreter, AOT and LLVM-JIT (#3125) 2024-02-06 20:47:11 +08:00
aot_emit_const.c Refactor interpreter/AOT module instance layout (#1559) 2022-10-18 10:59:28 +08:00
aot_emit_const.h Apply clang-format for core/iwasm compilation and libraries (#784) 2021-10-13 15:13:00 +08:00
aot_emit_control.c Add wasm_export.h APIs to expose memory type (#3496) 2024-06-06 09:20:24 +08:00
aot_emit_control.h Implement GC (Garbage Collection) feature for interpreter, AOT and LLVM-JIT (#3125) 2024-02-06 20:47:11 +08:00
aot_emit_conversion.c Simplify fcmp intrinsic logic for AOT/XIP (#1881) 2023-01-12 12:05:53 +08:00
aot_emit_conversion.h Apply clang-format for core/iwasm compilation and libraries (#784) 2021-10-13 15:13:00 +08:00
aot_emit_exception.c Fix ip (bytecode offset) not committed into the latest aot frame (#3213) 2024-03-11 18:11:43 +08:00
aot_emit_exception.h Apply clang-format for core/iwasm compilation and libraries (#784) 2021-10-13 15:13:00 +08:00
aot_emit_function.c Fix some more spelling issues (#3393) 2024-05-08 09:30:29 +08:00
aot_emit_function.h Implement GC (Garbage Collection) feature for interpreter, AOT and LLVM-JIT (#3125) 2024-02-06 20:47:11 +08:00
aot_emit_gc.c Fix some more spelling issues (#3393) 2024-05-08 09:30:29 +08:00
aot_emit_gc.h Implement GC (Garbage Collection) feature for interpreter, AOT and LLVM-JIT (#3125) 2024-02-06 20:47:11 +08:00
aot_emit_memory.c Add wasm_export.h APIs to expose memory type (#3496) 2024-06-06 09:20:24 +08:00
aot_emit_memory.h Implement Memory64 support for AOT (#3362) 2024-05-13 11:03:38 +08:00
aot_emit_numberic.c aot compiler: Fix a type mismatch in compile_op_float_min_max (#3423) 2024-05-14 10:06:48 +08:00
aot_emit_numberic.h Apply clang-format for core/iwasm compilation and libraries (#784) 2021-10-13 15:13:00 +08:00
aot_emit_parametric.c Implement GC (Garbage Collection) feature for interpreter, AOT and LLVM-JIT (#3125) 2024-02-06 20:47:11 +08:00
aot_emit_parametric.h Apply clang-format for core/iwasm compilation and libraries (#784) 2021-10-13 15:13:00 +08:00
aot_emit_stringref.c Implement GC (Garbage Collection) feature for interpreter, AOT and LLVM-JIT (#3125) 2024-02-06 20:47:11 +08:00
aot_emit_stringref.h Implement GC (Garbage Collection) feature for interpreter, AOT and LLVM-JIT (#3125) 2024-02-06 20:47:11 +08:00
aot_emit_table.c Fix some more spelling issues (#3393) 2024-05-08 09:30:29 +08:00
aot_emit_table.h Refine AOT/JIT code call wasm-c-api import process (#2982) 2024-01-10 18:37:02 +08:00
aot_emit_variable.c Add wasm module global type information APIs (#3406) 2024-05-10 09:15:58 +08:00
aot_emit_variable.h Apply clang-format for core/iwasm compilation and libraries (#784) 2021-10-13 15:13:00 +08:00
aot_llvm_extra.cpp core/iwasm/compilation: Remove stale function prototypes (#3408) 2024-05-09 16:55:32 +08:00
aot_llvm_extra2.cpp aot: Fix LLVMSetTailCallKind check (#3099) 2024-01-30 20:50:33 +08:00
aot_llvm_extra2.h aot: Fix LLVMSetTailCallKind check (#3099) 2024-01-30 20:50:33 +08:00
aot_llvm.c Add wasm_export.h APIs to expose memory type (#3496) 2024-06-06 09:20:24 +08:00
aot_llvm.h core/iwasm/compilation: Remove stale function prototypes (#3408) 2024-05-09 16:55:32 +08:00
aot_orc_extra.cpp Fix some more spelling issues (#3393) 2024-05-08 09:30:29 +08:00
aot_orc_extra.h Fix some more spelling issues (#3393) 2024-05-08 09:30:29 +08:00
aot_orc_extra2.cpp Fix some more spelling issues (#3393) 2024-05-08 09:30:29 +08:00
aot.c Add wasm_export.h APIs to expose memory type (#3496) 2024-06-06 09:20:24 +08:00
aot.h Add wasm_export.h APIs to expose memory type (#3496) 2024-06-06 09:20:24 +08:00
iwasm_compl.cmake Implement atomic and memset/memmove/memcpy intrinsic for riscv (#841) 2021-11-30 17:10:14 +08:00