Wasmtime
config.hh
Go to the documentation of this file.
1
5#ifndef WASMTIME_CONFIG_HH
6#define WASMTIME_CONFIG_HH
7
8#include <wasmtime/conf.h>
9#include <wasmtime/config.h>
10#include <wasmtime/error.hh>
11#include <wasmtime/helpers.hh>
13
14namespace wasmtime {
15
17enum class Strategy {
24};
25
27enum class OptLevel {
34};
35
46};
47
70};
71
72#ifdef WASMTIME_FEATURE_POOLING_ALLOCATOR
80 WASMTIME_OWN_WRAPPER(PoolAllocationConfig,
81 wasmtime_pooling_allocation_config);
82
84
89 void max_unused_warm_slots(uint32_t max) {
91 max);
92 }
93
97 void decommit_batch_size(size_t batch_size) {
99 batch_size);
100 }
101
102#ifdef WASMTIME_FEATURE_ASYNC
107 void async_stack_keep_resident(size_t size) {
109 size);
110 }
111#endif // WASMTIME_FEATURE_ASYNC
112
117 void linear_memory_keep_resident(size_t size) {
119 ptr.get(), size);
120 }
121
126 void table_keep_resident(size_t size) {
128 }
129
134 void total_component_instances(uint32_t count) {
136 count);
137 }
138
143 void max_component_instance_size(size_t size) {
145 ptr.get(), size);
146 }
147
152 void max_core_instances_per_component(uint32_t count) {
154 ptr.get(), count);
155 }
156
161 void max_memories_per_component(uint32_t count) {
163 count);
164 }
165
170 void max_tables_per_component(uint32_t count) {
172 count);
173 }
174
179 void total_memories(uint32_t count) {
181 }
182
187 void total_tables(uint32_t count) {
189 }
190
191#ifdef WASMTIME_FEATURE_ASYNC
196 void total_stacks(uint32_t count) {
198 }
199#endif // WASMTIME_FEATURE_ASYNC
200
205 void total_core_instances(uint32_t count) {
207 count);
208 }
209
214 void max_core_instance_size(size_t size) {
216 size);
217 }
218
223 void max_tables_per_module(uint32_t tables) {
225 tables);
226 }
227
232 void table_elements(size_t elements) {
234 }
235
240 void max_memories_per_module(uint32_t memories) {
242 memories);
243 }
244
249 void max_memory_size(size_t bytes) {
251 }
252
257 void total_gc_heaps(uint32_t count) {
259 }
260};
261#endif // WASMTIME_FEATURE_POOLING_ALLOCATOR
262
272class Config {
273 WASMTIME_OWN_WRAPPER(Config, wasm_config);
274
276 Config() : ptr(wasm_config_new()) {}
277
282 void debug_info(bool enable) {
283 wasmtime_config_debug_info_set(ptr.get(), enable);
284 }
285
290 void epoch_interruption(bool enable) {
292 }
293
298 void consume_fuel(bool enable) {
299 wasmtime_config_consume_fuel_set(ptr.get(), enable);
300 }
301
305 void max_wasm_stack(size_t stack) {
306 wasmtime_config_max_wasm_stack_set(ptr.get(), stack);
307 }
308
309#ifdef WASMTIME_FEATURE_THREADS
313 void wasm_threads(bool enable) {
314 wasmtime_config_wasm_threads_set(ptr.get(), enable);
315 }
316#endif // WASMTIME_FEATURE_THREADS
317
321 void shared_memory(bool enable) {
322 wasmtime_config_shared_memory_set(ptr.get(), enable);
323 }
324
328 void wasm_tail_call(bool enable) {
329 wasmtime_config_wasm_tail_call_set(ptr.get(), enable);
330 }
331
332#ifdef WASMTIME_FEATURE_GC
337 void wasm_reference_types(bool enable) {
339 }
340#endif // WASMTIME_FEATURE_GC
341
345 void wasm_simd(bool enable) {
346 wasmtime_config_wasm_simd_set(ptr.get(), enable);
347 }
348
352 void wasm_relaxed_simd(bool enable) {
353 wasmtime_config_wasm_relaxed_simd_set(ptr.get(), enable);
354 }
355
360 void wasm_relaxed_simd_deterministic(bool enable) {
362 }
363
367 void wasm_bulk_memory(bool enable) {
368 wasmtime_config_wasm_bulk_memory_set(ptr.get(), enable);
369 }
370
374 void wasm_multi_value(bool enable) {
375 wasmtime_config_wasm_multi_value_set(ptr.get(), enable);
376 }
377
381 void wasm_multi_memory(bool enable) {
382 wasmtime_config_wasm_multi_memory_set(ptr.get(), enable);
383 }
384
388 void wasm_memory64(bool enable) {
389 wasmtime_config_wasm_memory64_set(ptr.get(), enable);
390 }
391
392#ifdef WASMTIME_FEATURE_GC
397 void wasm_gc(bool enable) { wasmtime_config_wasm_gc_set(ptr.get(), enable); }
398#endif // WASMTIME_FEATURE_GC
399
400#ifdef WASMTIME_FEATURE_GC
405 void wasm_function_references(bool enable) {
407 }
408#endif // WASMTIME_FEATURE_GC
409
414 void wasm_wide_arithmetic(bool enable) {
416 }
417
418#ifdef WASMTIME_FEATURE_GC
423 void wasm_exceptions(bool enable) {
424 wasmtime_config_wasm_exceptions_set(ptr.get(), enable);
425 }
426#endif // WASMTIME_FEATURE_GC
427
432 void wasm_custom_page_sizes(bool enable) {
434 }
435
436#ifdef WASMTIME_FEATURE_COMPONENT_MODEL
441 void wasm_component_model(bool enable) {
443 }
444
449 void wasm_component_model_map(bool enable) {
451 }
452#endif // WASMTIME_FEATURE_COMPONENT_MODEL
453
454#ifdef WASMTIME_FEATURE_PARALLEL_COMPILATION
459 void parallel_compilation(bool enable) {
461 }
462#endif // WASMTIME_FEATURE_PARALLEL_COMPILATION
463
464#ifdef WASMTIME_FEATURE_COMPILER
468 void strategy(Strategy strategy) {
470 static_cast<wasmtime_strategy_t>(strategy));
471 }
472
476 void cranelift_debug_verifier(bool enable) {
478 }
479
483 void cranelift_nan_canonicalization(bool enable) {
485 }
486
490 void cranelift_opt_level(OptLevel level) {
492 ptr.get(), static_cast<wasmtime_opt_level_t>(level));
493 }
494
498 void cranelift_flag_enable(const std::string &flag) {
499 wasmtime_config_cranelift_flag_enable(ptr.get(), flag.c_str());
500 }
501
505 void cranelift_flag_set(const std::string &flag, const std::string &value) {
506 wasmtime_config_cranelift_flag_set(ptr.get(), flag.c_str(), value.c_str());
507 }
508
512 void cranelift_regalloc_algorithm(RegallocAlgorithm algo) {
514 ptr.get(), static_cast<wasmtime_regalloc_algorithm_t>(algo));
515 }
516#endif // WASMTIME_FEATURE_COMPILER
517
521 void profiler(ProfilingStrategy profiler) {
523 ptr.get(), static_cast<wasmtime_profiling_strategy_t>(profiler));
524 }
525
529 void memory_reservation(uint64_t size) {
531 }
532
537 void memory_reservation_for_growth(uint64_t size) {
539 }
540
544 void memory_guard_size(uint64_t size) {
546 }
547
552 void memory_may_move(bool enable) {
553 wasmtime_config_memory_may_move_set(ptr.get(), enable);
554 }
555
559 void memory_init_cow(bool enable) {
560 wasmtime_config_memory_init_cow_set(ptr.get(), enable);
561 }
562
566 void native_unwind_info(bool enable) {
568 }
569
573 void macos_use_mach_ports(bool enable) {
575 }
576
579 void signals_based_traps(bool enable) {
581 }
582
583#ifdef WASMTIME_FEATURE_CACHE
587 Result<std::monostate> cache_load_default() {
588 auto *error = wasmtime_config_cache_config_load(ptr.get(), nullptr);
589 if (error != nullptr) {
590 return Error(error);
591 }
592 return std::monostate();
593 }
594
598 Result<std::monostate> cache_load(const std::string &path) {
599 auto *error = wasmtime_config_cache_config_load(ptr.get(), path.c_str());
600 if (error != nullptr) {
601 return Error(error);
602 }
603 return std::monostate();
604 }
605#endif // WASMTIME_FEATURE_CACHE
606
607private:
608 template <typename T> static void raw_finalize(void *env) {
609 std::unique_ptr<T> ptr(reinterpret_cast<T *>(env));
610 }
611
612 template <typename M>
613 static uint8_t *raw_get_memory(void *env, size_t *byte_size,
614 size_t *byte_capacity) {
615 M *memory = reinterpret_cast<M *>(env);
616 return memory->get_memory(byte_size, byte_capacity);
617 }
618
619 template <typename M>
620 static wasmtime_error_t *raw_grow_memory(void *env, size_t new_size) {
621 M *memory = reinterpret_cast<M *>(env);
622 Result<std::monostate> result = memory->grow_memory(new_size);
623 if (!result)
624 return result.err().capi_release();
625 return nullptr;
626 }
627
628 template <typename T>
629 static wasmtime_error_t *
630 raw_new_memory(void *env, const wasm_memorytype_t *ty, size_t minimum,
631 size_t maximum, size_t reserved_size_in_bytes,
632 size_t guard_size_in_bytes,
633 wasmtime_linear_memory_t *memory_ret) {
634 using Memory = typename T::Memory;
635 T *creator = reinterpret_cast<T *>(env);
636 Result<Memory> result =
637 creator->new_memory(MemoryType::Ref(ty), minimum, maximum,
638 reserved_size_in_bytes, guard_size_in_bytes);
639 if (!result) {
640 return result.err().capi_release();
641 }
642 Memory memory = result.unwrap();
643 memory_ret->env = std::make_unique<Memory>(memory).release();
644 memory_ret->finalizer = raw_finalize<Memory>;
645 memory_ret->get_memory = raw_get_memory<Memory>;
646 memory_ret->grow_memory = raw_grow_memory<Memory>;
647 return nullptr;
648 }
649
650public:
656 template <typename T> void host_memory_creator(T creator) {
657 wasmtime_memory_creator_t config = {0};
658 config.env = std::make_unique<T>(creator).release();
659 config.finalizer = raw_finalize<T>;
660 config.new_memory = raw_new_memory<T>;
661 wasmtime_config_host_memory_creator_set(ptr.get(), &config);
662 }
663
664#ifdef WASMTIME_FEATURE_POOLING_ALLOCATOR
669 wasmtime_pooling_allocation_strategy_set(ptr.get(), config.capi());
670 }
671#endif // WASMTIME_FEATURE_POOLING_ALLOCATOR
672
673#ifdef WASMTIME_FEATURE_COMPONENT_MODEL
681 void concurrency_support(bool enable) {
683 }
684#endif // WASMTIME_FEATURE_COMPONENT_MODEL
685
686#ifdef WASMTIME_FEATURE_COMPONENT_MODEL_ASYNC
692 void wasm_component_model_async(bool enable) {
694 }
695
704 enable);
705 }
706
715 }
716#endif // WASMTIME_FEATURE_COMPONENT_MODEL_ASYNC
717};
718
719} // namespace wasmtime
720
721#endif // WASMTIME_CONFIG_HH
Configuration for Wasmtime.
Definition: config.hh:272
void host_memory_creator(T creator)
Configures a custom memory creator for this configuration and eventual Engine.
Definition: config.hh:656
void wasm_component_model_async_stackful(bool enable)
Configures whether stackful coroutine support is enabled for async components.
Definition: config.hh:713
void concurrency_support(bool enable)
Specifies whether support for concurrent execution of WebAssembly is supported within this store.
Definition: config.hh:681
void wasm_component_model_more_async_builtins(bool enable)
Configures whether async built-in intrinsics are enabled for the component model.
Definition: config.hh:702
void pooling_allocation_strategy(const PoolAllocationConfig &config)
Enables and configures the pooling allocation strategy.
Definition: config.hh:668
void wasm_component_model_async(bool enable)
Configures whether component-model async support is enabled.
Definition: config.hh:692
Errors coming from Wasmtime.
Definition: error.hh:26
Non-owning reference to a MemoryType, must not be used after the original owner has been deleted.
Definition: types/memory.hh:34
A WebAssembly linear memory.
Definition: memory.hh:27
Pool allocation configuration for Wasmtime.
Definition: config.hh:79
Fallible result type used for Wasmtime.
Definition: error.hh:70
E && err()
Returns the error, if present, aborts if this is not an error.
Definition: error.hh:84
T unwrap()
Returns the success, if present, aborts if this is an error.
Definition: error.hh:104
Build-time defines for how the C API was built.
Wasmtime-specific extensions to wasm_config_t.
WASM_API_EXTERN void wasmtime_pooling_allocation_config_total_gc_heaps_set(wasmtime_pooling_allocation_config_t *, uint32_t)
The maximum number of concurrent GC heaps supported (default is 1000).
WASM_API_EXTERN void wasmtime_pooling_allocation_config_total_component_instances_set(wasmtime_pooling_allocation_config_t *, uint32_t)
The maximum number of concurrent component instances supported (default is 1000).
WASM_API_EXTERN void wasmtime_pooling_allocation_config_table_keep_resident_set(wasmtime_pooling_allocation_config_t *, size_t)
How much memory, in bytes, to keep resident for each table after deallocation.
WASM_API_EXTERN void wasmtime_config_shared_memory_set(wasm_config_t *, bool)
Configures whether shared memories can be created.
WASM_API_EXTERN void wasmtime_config_wasm_tail_call_set(wasm_config_t *, bool)
Configures whether the WebAssembly tail call proposal is enabled.
WASM_API_EXTERN void wasmtime_config_max_wasm_stack_set(wasm_config_t *, size_t)
Configures the maximum stack size, in bytes, that JIT code can use.
WASM_API_EXTERN void wasmtime_config_wasm_multi_memory_set(wasm_config_t *, bool)
Configures whether the WebAssembly multi-memory proposal is enabled.
WASM_API_EXTERN wasmtime_error_t * wasmtime_config_cache_config_load(wasm_config_t *, const char *)
Enables Wasmtime's cache and loads configuration from the specified path.
WASM_API_EXTERN void wasmtime_pooling_allocation_config_max_core_instances_per_component_set(wasmtime_pooling_allocation_config_t *, uint32_t)
The maximum number of core instances a single component may contain (default is unlimited).
WASM_API_EXTERN void wasmtime_pooling_allocation_strategy_set(wasm_config_t *, const wasmtime_pooling_allocation_config_t *)
Sets the Wasmtime allocation strategy to use the pooling allocator. It does not take ownership of the...
WASM_API_EXTERN void wasmtime_config_wasm_component_model_set(wasm_config_t *, bool)
Configures whether the WebAssembly component-model proposal will be enabled for compilation.
WASM_API_EXTERN void wasmtime_config_wasm_custom_page_sizes_set(wasm_config_t *, bool)
Configures whether the WebAssembly custom-page-sizes proposal is enabled.
uint8_t wasmtime_strategy_t
Specifier for how Wasmtime will compile code, values are in wasmtime_strategy_enum.
Definition: config.h:22
WASM_API_EXTERN void wasmtime_pooling_allocation_config_linear_memory_keep_resident_set(wasmtime_pooling_allocation_config_t *, size_t)
How much memory, in bytes, to keep resident for each linear memory after deallocation.
WASM_API_EXTERN void wasmtime_config_memory_reservation_set(wasm_config_t *, uint64_t)
Configures the size, in bytes, of initial memory reservation size for linear memories.
WASM_API_EXTERN void wasmtime_config_wasm_wide_arithmetic_set(wasm_config_t *, bool)
Configures whether the WebAssembly wide-arithmetic proposal is enabled.
WASM_API_EXTERN void wasmtime_pooling_allocation_config_max_tables_per_module_set(wasmtime_pooling_allocation_config_t *, uint32_t)
The maximum number of defined tables for a core module (default is 1).
WASM_API_EXTERN void wasmtime_pooling_allocation_config_max_tables_per_component_set(wasmtime_pooling_allocation_config_t *, uint32_t)
The maximum number of tables that a single component may transitively contain (default is unlimited).
WASM_API_EXTERN wasmtime_pooling_allocation_config_t * wasmtime_pooling_allocation_config_new()
Creates a new pooling allocation configuration object. Must be deallocated with a call to wasmtime_po...
WASM_API_EXTERN void wasmtime_config_cranelift_flag_enable(wasm_config_t *, const char *)
Enables a target-specific flag in Cranelift.
WASM_API_EXTERN void wasmtime_config_parallel_compilation_set(wasm_config_t *, bool)
Configure whether wasmtime should compile a module using multiple threads.
WASM_API_EXTERN void wasmtime_pooling_allocation_config_max_unused_warm_slots_set(wasmtime_pooling_allocation_config_t *, uint32_t)
Configures the maximum number of “unused warm slots” to retain in the pooling allocator.
WASM_API_EXTERN void wasmtime_config_wasm_gc_set(wasm_config_t *, bool)
Configures whether the WebAssembly GC proposal is enabled.
WASM_API_EXTERN void wasmtime_config_macos_use_mach_ports_set(wasm_config_t *, bool)
Configures whether, when on macOS, Mach ports are used for exception handling instead of traditional ...
WASM_API_EXTERN void wasmtime_config_wasm_memory64_set(wasm_config_t *, bool)
Configures whether the WebAssembly memory64 proposal is enabled.
WASM_API_EXTERN void wasmtime_pooling_allocation_config_max_memories_per_module_set(wasmtime_pooling_allocation_config_t *, uint32_t)
The maximum number of defined linear memories for a module (default is 1).
WASM_API_EXTERN void wasmtime_config_wasm_relaxed_simd_set(wasm_config_t *, bool)
Configures whether the WebAssembly relaxed SIMD proposal is enabled.
WASM_API_EXTERN void wasmtime_pooling_allocation_config_total_memories_set(wasmtime_pooling_allocation_config_t *, uint32_t)
The maximum number of concurrent Wasm linear memories supported (default is 1000).
WASM_API_EXTERN void wasmtime_config_wasm_bulk_memory_set(wasm_config_t *, bool)
Configures whether the WebAssembly bulk memory proposal is enabled.
uint8_t wasmtime_profiling_strategy_t
Different ways wasmtime can enable profiling JIT code.
Definition: config.h:73
WASM_API_EXTERN void wasmtime_config_cranelift_flag_set(wasm_config_t *, const char *key, const char *value)
Sets a target-specific flag in Cranelift to the specified value.
WASM_API_EXTERN void wasmtime_config_wasm_threads_set(wasm_config_t *, bool)
Configures whether the WebAssembly threading proposal is enabled.
@ WASMTIME_REGALLOC_BACKTRACKING
Definition: config.h:116
@ WASMTIME_REGALLOC_SINGLE_PASS
Definition: config.h:127
WASM_API_EXTERN void wasmtime_pooling_allocation_config_table_elements_set(wasmtime_pooling_allocation_config_t *, size_t)
The maximum table elements for any table defined in a module (default is 20000).
WASM_API_EXTERN void wasmtime_pooling_allocation_config_max_core_instance_size_set(wasmtime_pooling_allocation_config_t *, size_t)
The maximum size, in bytes, allocated for a core instance’s VMContext metadata.
WASM_API_EXTERN void wasmtime_config_strategy_set(wasm_config_t *, wasmtime_strategy_t)
Configures how JIT code will be compiled.
WASM_API_EXTERN void wasmtime_config_signals_based_traps_set(wasm_config_t *, bool)
Configures Wasmtime to not use signals-based trap handlers, for example disables SIGILL and SIGSEGV h...
@ WASMTIME_PROFILING_STRATEGY_VTUNE
Definition: config.h:90
@ WASMTIME_PROFILING_STRATEGY_PERFMAP
Definition: config.h:94
@ WASMTIME_PROFILING_STRATEGY_NONE
No profiling is enabled at runtime.
Definition: config.h:82
@ WASMTIME_PROFILING_STRATEGY_JITDUMP
Definition: config.h:85
WASM_API_EXTERN void wasmtime_config_memory_guard_size_set(wasm_config_t *, uint64_t)
Configures the guard region size for linear memory.
WASM_API_EXTERN void wasmtime_config_cranelift_debug_verifier_set(wasm_config_t *, bool)
Configures whether Cranelift's debug verifier is enabled.
WASM_API_EXTERN void wasmtime_pooling_allocation_config_total_stacks_set(wasmtime_pooling_allocation_config_t *, uint32_t)
The maximum number of execution stacks allowed for asynchronous execution, when enabled (default is 1...
@ WASMTIME_STRATEGY_CRANELIFT
Definition: config.h:36
@ WASMTIME_STRATEGY_WINCH
Definition: config.h:43
@ WASMTIME_STRATEGY_AUTO
Definition: config.h:32
WASM_API_EXTERN void wasmtime_config_wasm_component_model_async_stackful_set(wasm_config_t *, bool)
Configures whether stackful coroutine support is enabled for async components.
WASM_API_EXTERN void wasmtime_pooling_allocation_config_max_memories_per_component_set(wasmtime_pooling_allocation_config_t *, uint32_t)
The maximum number of Wasm linear memories that a single component may transitively contain (default ...
WASM_API_EXTERN void wasmtime_config_cranelift_opt_level_set(wasm_config_t *, wasmtime_opt_level_t)
Configures Cranelift's optimization level for JIT code.
WASM_API_EXTERN void wasmtime_config_consume_fuel_set(wasm_config_t *, bool)
Whether or not fuel is enabled for generated code.
WASM_API_EXTERN void wasmtime_config_debug_info_set(wasm_config_t *, bool)
Configures whether DWARF debug information is constructed at runtime to describe JIT code.
WASM_API_EXTERN void wasmtime_config_wasm_relaxed_simd_deterministic_set(wasm_config_t *, bool)
Configures whether the WebAssembly relaxed SIMD proposal is in deterministic mode.
WASM_API_EXTERN void wasmtime_config_wasm_component_model_more_async_builtins_set(wasm_config_t *, bool)
Configures whether async built-in intrinsics are enabled for the component model.
WASM_API_EXTERN void wasmtime_config_wasm_exceptions_set(wasm_config_t *, bool)
Configures whether the WebAssembly exceptions proposal is enabled.
WASM_API_EXTERN void wasmtime_config_native_unwind_info_set(wasm_config_t *, bool)
Configures whether to generate native unwind information (e.g. .eh_frame on Linux).
@ WASMTIME_OPT_LEVEL_SPEED_AND_SIZE
Definition: config.h:65
@ WASMTIME_OPT_LEVEL_NONE
Generated code will not be optimized at all.
Definition: config.h:60
@ WASMTIME_OPT_LEVEL_SPEED
Generated code will be optimized purely for speed.
Definition: config.h:62
uint8_t wasmtime_opt_level_t
Specifier of what optimization level to use for generated JIT code.
Definition: config.h:51
WASM_API_EXTERN void wasmtime_config_profiler_set(wasm_config_t *, wasmtime_profiling_strategy_t)
Configures the profiling strategy used for JIT code.
WASM_API_EXTERN void wasmtime_config_wasm_simd_set(wasm_config_t *, bool)
Configures whether the WebAssembly SIMD proposal is enabled.
WASM_API_EXTERN void wasmtime_config_epoch_interruption_set(wasm_config_t *, bool)
Whether or not epoch-based interruption is enabled for generated code.
WASM_API_EXTERN void wasmtime_config_cranelift_regalloc_algorithm_set(wasm_config_t *, wasmtime_regalloc_algorithm_t)
Configures the regalloc algorithm used by the Cranelift code generator.
WASM_API_EXTERN void wasmtime_config_cranelift_nan_canonicalization_set(wasm_config_t *, bool)
Configures whether Cranelift should perform a NaN-canonicalization pass.
WASM_API_EXTERN void wasmtime_config_memory_reservation_for_growth_set(wasm_config_t *, uint64_t)
Configures the size, in bytes, of the extra virtual memory space reserved for memories to grow into a...
uint8_t wasmtime_regalloc_algorithm_t
Different ways Cranelift can allocate registers.
Definition: config.h:102
WASM_API_EXTERN void wasmtime_pooling_allocation_config_total_core_instances_set(wasmtime_pooling_allocation_config_t *, uint32_t)
The maximum number of concurrent core instances supported (default is 1000).
WASM_API_EXTERN void wasmtime_config_host_memory_creator_set(wasm_config_t *, wasmtime_memory_creator_t *)
WASM_API_EXTERN void wasmtime_config_wasm_component_model_async_set(wasm_config_t *, bool)
Configures whether the WebAssembly component-model async support will be enabled.
WASM_API_EXTERN void wasmtime_pooling_allocation_config_total_tables_set(wasmtime_pooling_allocation_config_t *, uint32_t)
The maximum number of concurrent tables supported (default is 1000).
WASM_API_EXTERN void wasmtime_config_wasm_function_references_set(wasm_config_t *, bool)
Configures whether the WebAssembly typed function reference types proposal is enabled.
WASM_API_EXTERN void wasmtime_pooling_allocation_config_decommit_batch_size_set(wasmtime_pooling_allocation_config_t *, size_t)
The target number of decommits to do per batch.
WASM_API_EXTERN void wasmtime_config_wasm_reference_types_set(wasm_config_t *, bool)
Configures whether the WebAssembly reference types proposal is enabled.
WASM_API_EXTERN void wasmtime_config_memory_init_cow_set(wasm_config_t *, bool)
Configures whether copy-on-write memory-mapped data is used to initialize a linear memory.
WASM_API_EXTERN void wasmtime_config_concurrency_support_set(wasm_config_t *, bool)
Specifies whether support for concurrent execution of WebAssembly is supported within this store.
WASM_API_EXTERN void wasmtime_config_wasm_component_model_map_set(wasm_config_t *, bool)
Configures whether the WebAssembly component-model map type will be enabled for compilation.
WASM_API_EXTERN void wasmtime_config_wasm_multi_value_set(wasm_config_t *, bool)
Configures whether the WebAssembly multi value proposal is enabled.
WASM_API_EXTERN void wasmtime_pooling_allocation_config_max_memory_size_set(wasmtime_pooling_allocation_config_t *, size_t)
The maximum byte size that any WebAssembly linear memory may grow to.
WASM_API_EXTERN void wasmtime_config_memory_may_move_set(wasm_config_t *, bool)
Configures whether memory_reservation is the maximal size of linear memory.
WASM_API_EXTERN void wasmtime_pooling_allocation_config_max_component_instance_size_set(wasmtime_pooling_allocation_config_t *, size_t)
The maximum size, in bytes, allocated for a component instance’s VMComponentContext metadata.
WASM_API_EXTERN void wasmtime_pooling_allocation_config_async_stack_keep_resident_set(wasmtime_pooling_allocation_config_t *, size_t)
How much memory, in bytes, to keep resident for async stacks allocated with the pooling allocator.
RegallocAlgorithm
Values passed to Config::cranelift_regalloc_algorithm
Definition: config.hh:49
@ Backtracking
Definition: config.hh:58
@ SinglePass
Definition: config.hh:69
Strategy
Strategies passed to Config::strategy
Definition: config.hh:17
@ Auto
Automatically selects the compilation strategy.
@ Cranelift
Requires Cranelift to be used for compilation.
@ Winch
Use winch for compilation.
OptLevel
Values passed to Config::cranelift_opt_level
Definition: config.hh:27
@ Speed
Optimize for speed.
@ None
No extra optimizations performed.
@ SpeedAndSize
Optimize for speed and generated code size.
ProfilingStrategy
Values passed to Config::profiler
Definition: config.hh:37
@ Perfmap
Profiling hooks via perfmap.
@ Vtune
Profiling hooks via VTune.
@ Jitdump
Profiling hooks via perf's jitdump.
An opaque object representing the type of a memory.
Errors generated by Wasmtime.
Definition: config.h:572
wasmtime_memory_get_callback_t get_memory
Callback to get the memory and size of this LinearMemory.
Definition: config.h:576
void * env
User provided value to be passed to get_memory and grow_memory.
Definition: config.h:574
void(* finalizer)(void *)
An optional finalizer for env.
Definition: config.h:580
wasmtime_memory_grow_callback_t grow_memory
Callback to request growing the memory.
Definition: config.h:578
Definition: config.h:606
void(* finalizer)(void *)
An optional finalizer for env.
Definition: config.h:612
wasmtime_new_memory_callback_t new_memory
The callback to create new memory, must be thread safe.
Definition: config.h:610
void * env
User provided value to be passed to new_memory.
Definition: config.h:608
wasm_config_t * wasm_config_new(void)
Creates a new empty configuration object.