summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBen Smith <binji@chromium.org>2020-06-10 12:29:30 -0700
committerGitHub <noreply@github.com>2020-06-10 12:29:30 -0700
commit23500f124366149c9f0802764f94d922d14f465d (patch)
treebd80f507a8d699e2ab095a6065cca6843681db5d /src
parent20f3984ff1f6c0ea7aa1e1be0c6314d947cc8826 (diff)
downloadwabt-23500f124366149c9f0802764f94d922d14f465d.tar.gz
wabt-23500f124366149c9f0802764f94d922d14f465d.tar.bz2
wabt-23500f124366149c9f0802764f94d922d14f465d.zip
[wasm-c-api] Implement missing functions (#1461)
For now, the wasm-c-api interface in wabt doesn't have its own tests, and relies on the wasm-c-api repo's examples for testing. This means that some functions that are not used in any examples were accidentally omitted. TODO: wabt (or wasm-c-api) should have explicit tests of the API surface.
Diffstat (limited to 'src')
-rw-r--r--src/interp/interp-wasm-c-api.cc32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/interp/interp-wasm-c-api.cc b/src/interp/interp-wasm-c-api.cc
index e3c7b620..e55b80c5 100644
--- a/src/interp/interp-wasm-c-api.cc
+++ b/src/interp/interp-wasm-c-api.cc
@@ -580,6 +580,12 @@ void wasm_trap_trace(const wasm_trap_t* trap, own wasm_frame_vec_t* out) {
// TRACE(stderr, "error: %s\n", msg.c_str());
}
+// wasm_config
+
+own wasm_config_t* wasm_config_new() {
+ return new wasm_config_t();
+}
+
// wasm_engine
own wasm_engine_t* wasm_engine_new() {
@@ -613,6 +619,28 @@ own wasm_module_t* wasm_module_new(wasm_store_t* store,
return new wasm_module_t{Module::New(store->I, module_desc), binary};
}
+bool wasm_module_validate(wasm_store_t* store, const wasm_byte_vec_t* binary) {
+ // TODO: Optimize this; for now it is generating a new module and discarding
+ // it. But since this call only needs to validate, it could do much less.
+ wasm_module_t* module = wasm_module_new(store, binary);
+ if (module == nullptr) {
+ return false;
+ }
+ wasm_module_delete(module);
+ return true;
+}
+
+void wasm_module_imports(const wasm_module_t* module,
+ own wasm_importtype_vec_t* out) {
+ auto&& import_types = module->As<Module>()->import_types();
+ TRACE("%" PRIzx, import_types.size());
+ wasm_importtype_vec_new_uninitialized(out, import_types.size());
+
+ for (size_t i = 0; i < import_types.size(); ++i) {
+ out->data[i] = new wasm_importtype_t{import_types[i]};
+ }
+}
+
void wasm_module_exports(const wasm_module_t* module,
own wasm_exporttype_vec_t* out) {
auto&& export_types = module->As<Module>()->export_types();
@@ -927,6 +955,10 @@ own wasm_memory_t* wasm_memory_new(wasm_store_t* store,
return new wasm_memory_t{Memory::New(store->I, *type->As<MemoryType>())};
}
+own wasm_memorytype_t* wasm_memory_type(const wasm_memory_t* memory) {
+ return new wasm_memorytype_t{memory->As<Memory>()->type()};
+}
+
byte_t* wasm_memory_data(wasm_memory_t* memory) {
return reinterpret_cast<byte_t*>(memory->As<Memory>()->UnsafeData());
}