#undef NDEBUG
#include <fstream>
#include <iostream>
#include <sstream>
using namespace wasmtime;
std::string readFile(const char *name) {
std::ifstream watFile;
watFile.open(name);
std::stringstream strStream;
strStream << watFile.rdbuf();
return strStream.str();
}
int main() {
Module::compile(engine, readFile("examples/memory.wat")).unwrap();
Instance instance = Instance::create(store, module, {}).unwrap();
auto memory = std::get<Memory>(*instance.
get(store,
"memory"));
auto size = std::get<Func>(*instance.
get(store,
"size"));
auto load_fn = std::get<Func>(*instance.
get(store,
"load"));
auto store_fn = std::get<Func>(*instance.
get(store,
"store"));
std::cout << "Checking memory...\n";
assert(memory.size(store) == 2);
auto data = memory.data(store);
assert(data.size() == 0x20000);
assert(data[0] == 0);
assert(data[0x1000] == 1);
assert(data[0x1003] == 4);
assert(size.call(store, {}).unwrap()[0].i32() == 2);
assert(load_fn.call(store, {0}).unwrap()[0].i32() == 0);
assert(load_fn.call(store, {0x1000}).unwrap()[0].i32() == 1);
assert(load_fn.call(store, {0x1003}).unwrap()[0].i32() == 4);
assert(load_fn.call(store, {0x1ffff}).unwrap()[0].i32() == 0);
load_fn.call(store, {0x20000}).err();
std::cout << "Mutating memory...\n";
memory.data(store)[0x1003] = 5;
store_fn.call(store, {0x1002, 6}).unwrap();
store_fn.call(store, {0x20000, 0}).err();
assert(memory.data(store)[0x1002] == 6);
assert(memory.data(store)[0x1003] == 5);
assert(load_fn.call(store, {0x1002}).unwrap()[0].i32() == 6);
assert(load_fn.call(store, {0x1003}).unwrap()[0].i32() == 5);
std::cout << "Growing memory...\n";
memory.grow(store, 1).unwrap();
assert(memory.size(store) == 3);
assert(memory.data(store).size() == 0x30000);
assert(load_fn.call(store, {0x20000}).unwrap()[0].i32() == 0);
store_fn.call(store, {0x20000, 0}).unwrap();
load_fn.call(store, {0x30000}).err();
store_fn.call(store, {0x30000, 0}).err();
memory.grow(store, 1).err();
memory.grow(store, 0).ok();
std::cout << "Creating stand-alone memory...\n";
Memory memory2 = Memory::create(store, ty).unwrap();
assert(memory2.
size(store) == 5);
memory2.
grow(store, 1).err();
memory2.
grow(store, 0).ok();
}
Global compilation state in Wasmtime.
Definition: wasmtime.hh:645
A WebAssembly instance.
Definition: wasmtime.hh:3074
std::optional< Extern > get(Store::Context cx, std::string_view name)
Load an instance's export by name.
Definition: wasmtime.hh:3159
A WebAssembly linear memory.
Definition: wasmtime.hh:3009
uint64_t size(Store::Context cx) const
Returns the size, in WebAssembly pages, of this memory.
Definition: wasmtime.hh:3033
Result< uint64_t > grow(Store::Context cx, uint64_t delta) const
Definition: wasmtime.hh:3052
Type information about a WebAssembly linear memory.
Definition: wasmtime.hh:853
Representation of a compiled WebAssembly module.
Definition: wasmtime.hh:1559
Owner of all WebAssembly objects.
Definition: wasmtime.hh:1820