Wasmtime: C++
All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
Classes | Public Member Functions | List of all members
wasmtime::Store Class Reference

Owner of all WebAssembly objects. More...

#include <wasmtime.hh>

Classes

class  Context
 An interior pointer into a Store. More...
 

Public Member Functions

 Store (Engine &engine)
 Creates a new Store within the provided Engine.
 
void limiter (int64_t memory_size, int64_t table_elements, int64_t instances, int64_t tables, int64_t memories)
 Provides limits for a store. Used by hosts to limit resource consumption of instances. Use negative value to keep the default value for the limit. More...
 
Context context ()
 Explicit function to acquire a Context from this store.
 

Detailed Description

Owner of all WebAssembly objects.

A Store owns all WebAssembly objects such as instances, globals, functions, memories, etc. A Store is one of the main central points about working with WebAssembly since it's an argument to almost all APIs. The Store serves as a form of "context" to give meaning to the pointers of Func and friends.

A Store can be sent between threads but it cannot generally be shared concurrently between threads. Memory associated with WebAssembly instances will be deallocated when the Store is deallocated.

Examples
externref.cc, gcd.cc, hello.cc, interrupt.cc, linking.cc, and memory.cc.

Member Function Documentation

◆ limiter()

void wasmtime::Store::limiter ( int64_t  memory_size,
int64_t  table_elements,
int64_t  instances,
int64_t  tables,
int64_t  memories 
)
inline

Provides limits for a store. Used by hosts to limit resource consumption of instances. Use negative value to keep the default value for the limit.

Parameters
memory_sizethe maximum number of bytes a linear memory can grow to. Growing a linear memory beyond this limit will fail. By default, linear memory will not be limited.
table_elementsthe maximum number of elements in a table. Growing a table beyond this limit will fail. By default, table elements will not be limited.
instancesthe maximum number of instances that can be created for a Store. Module instantiation will fail if this limit is exceeded. This value defaults to 10,000.
tablesthe maximum number of tables that can be created for a Store. Module instantiation will fail if this limit is exceeded. This value defaults to 10,000.
memoriesthe maximum number of linear memories that can be created for a Store. Instantiation will fail with an error if this limit is exceeded. This value defaults to 10,000.

Use any negative value for the parameters that should be kept on the default values.

Note that the limits are only used to limit the creation/growth of resources in the future, this does not retroactively attempt to apply limits to the store.


The documentation for this class was generated from the following file: