#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <wasm.h>
#include <wasmtime.h>
static void exit_with_error(const char *message, wasmtime_error_t *error,
wasm_trap_t *trap);
int main() {
bool ok = true;
printf("Initializing...\n");
wasm_config_t *config = wasm_config_new();
assert(config != NULL);
wasmtime_config_wasm_reference_types_set(config, true);
wasmtime_config_wasm_function_references_set(config, true);
wasmtime_config_wasm_gc_set(config, true);
wasm_engine_t *engine = wasm_engine_new_with_config(config);
assert(engine != NULL);
wasmtime_store_t *store = wasmtime_store_new(engine, NULL, NULL);
assert(store != NULL);
wasmtime_context_t *context = wasmtime_store_context(store);
FILE *file = fopen("examples/anyref.wat", "r");
assert(file != NULL);
fseek(file, 0L, SEEK_END);
size_t file_size = ftell(file);
fseek(file, 0L, SEEK_SET);
wasm_byte_vec_t wat;
wasm_byte_vec_new_uninitialized(&wat, file_size);
if (fread(wat.data, file_size, 1, file) != 1) {
printf("> Error loading module!\n");
return 1;
}
fclose(file);
wasm_byte_vec_t wasm;
wasmtime_error_t *error = wasmtime_wat2wasm(wat.data, wat.size, &wasm);
if (error != NULL)
exit_with_error("failed to parse wat", error, NULL);
wasm_byte_vec_delete(&wat);
printf("Compiling module...\n");
wasmtime_module_t *module = NULL;
error = wasmtime_module_new(engine, (uint8_t *)wasm.data, wasm.size, &module);
wasm_byte_vec_delete(&wasm);
if (error != NULL)
exit_with_error("failed to compile module", error, NULL);
printf("Instantiating module...\n");
wasm_trap_t *trap = NULL;
wasmtime_instance_t instance;
error = wasmtime_instance_new(context, module, NULL, 0, &instance, &trap);
if (error != NULL || trap != NULL)
exit_with_error("failed to instantiate", error, trap);
printf("Creating new `anyref` from i31...\n");
wasmtime_anyref_t anyref;
wasmtime_anyref_from_i31(context, 1234, &anyref);
assert(!wasmtime_anyref_is_null(&anyref));
uint32_t i31val = 0;
bool is_i31 = wasmtime_anyref_i31_get_u(context, &anyref, &i31val);
assert(is_i31);
assert(i31val == 1234);
printf("Touching `anyref` table...\n");
wasmtime_extern_t item;
ok = wasmtime_instance_export_get(context, &instance, "table",
strlen("table"), &item);
assert(ok);
assert(item.kind == WASMTIME_EXTERN_TABLE);
wasmtime_val_t anyref_val;
anyref_val.kind = WASMTIME_ANYREF;
anyref_val.of.anyref = anyref;
error = wasmtime_table_set(context, &item.of.table, 3, &anyref_val);
if (error != NULL)
exit_with_error("failed to set table", error, NULL);
wasmtime_val_t elem;
ok = wasmtime_table_get(context, &item.of.table, 3, &elem);
assert(ok);
assert(elem.kind == WASMTIME_ANYREF);
is_i31 = false;
i31val = 0;
is_i31 = wasmtime_anyref_i31_get_u(context, &elem.of.anyref, &i31val);
assert(is_i31);
assert(i31val == 1234);
wasmtime_val_unroot(context, &elem);
printf("Touching `anyref` global...\n");
ok = wasmtime_instance_export_get(context, &instance, "global",
strlen("global"), &item);
assert(ok);
assert(item.kind == WASMTIME_EXTERN_GLOBAL);
error = wasmtime_global_set(context, &item.of.global, &anyref_val);
if (error != NULL)
exit_with_error("failed to set global", error, NULL);
wasmtime_val_t global_val;
wasmtime_global_get(context, &item.of.global, &global_val);
assert(global_val.kind == WASMTIME_ANYREF);
is_i31 = false;
i31val = 0;
is_i31 = wasmtime_anyref_i31_get_u(context, &global_val.of.anyref, &i31val);
assert(is_i31);
assert(i31val == 1234);
wasmtime_val_unroot(context, &global_val);
printf("Passing `anyref` into func...\n");
ok = wasmtime_instance_export_get(context, &instance, "take_anyref",
strlen("take_anyref"), &item);
assert(ok);
assert(item.kind == WASMTIME_EXTERN_FUNC);
error = wasmtime_func_call(context, &item.of.func, &anyref_val, 1, NULL, 0,
&trap);
if (error != NULL || trap != NULL)
exit_with_error("failed to call function", error, trap);
printf("Getting `anyref` from func...\n");
ok = wasmtime_instance_export_get(context, &instance, "return_anyref",
strlen("return_anyref"), &item);
assert(ok);
assert(item.kind == WASMTIME_EXTERN_FUNC);
wasmtime_val_t results[1];
error =
wasmtime_func_call(context, &item.of.func, NULL, 0, results, 1, &trap);
if (error != NULL || trap != NULL)
exit_with_error("failed to call function", error, trap);
assert(results[0].kind == WASMTIME_ANYREF);
is_i31 = false;
i31val = 0;
is_i31 = wasmtime_anyref_i31_get_u(context, &results[0].of.anyref, &i31val);
assert(is_i31);
assert(i31val == 42);
wasmtime_val_unroot(context, &results[0]);
wasmtime_val_unroot(context, &anyref_val);
printf("GCing within the store...\n");
wasmtime_context_gc(context);
printf("All finished!\n");
wasmtime_store_delete(store);
wasmtime_module_delete(module);
wasm_engine_delete(engine);
return 0;
}
static void exit_with_error(const char *message, wasmtime_error_t *error,
wasm_trap_t *trap) {
fprintf(stderr, "error: %s\n", message);
wasm_byte_vec_t error_message;
if (error != NULL) {
wasmtime_error_message(error, &error_message);
wasmtime_error_delete(error);
} else {
wasm_trap_message(trap, &error_message);
wasm_trap_delete(trap);
}
fprintf(stderr, "%.*s\n", (int)error_message.size, error_message.data);
wasm_byte_vec_delete(&error_message);
exit(1);
}