Wasmtime
func.hh
Go to the documentation of this file.
1
5#ifndef WASMTIME_FUNC_HH
6#define WASMTIME_FUNC_HH
7
8#include <array>
9#include <wasmtime/error.hh>
10#include <wasmtime/extern_declare.hh>
11#include <wasmtime/func.h>
12#include <wasmtime/span.hh>
13#include <wasmtime/store.hh>
14#include <wasmtime/trap.hh>
16#include <wasmtime/types/val.hh>
17#include <wasmtime/val.hh>
18
19namespace wasmtime {
20
28class Caller {
29 friend class Func;
30 friend class Store;
32 Caller(wasmtime_caller_t *ptr) : ptr(ptr) {}
33
34public:
39 std::optional<Extern> get_export(std::string_view name);
40
42 Store::Context context() { return this; }
43};
44
45inline Store::Context::Context(Caller &caller)
46 : Context(wasmtime_caller_context(caller.ptr)) {}
47inline Store::Context::Context(Caller *caller) : Context(*caller) {}
48
49namespace detail {
50
53template <typename T> struct WasmType {
54 static const bool valid = false;
55};
56
59// NOLINTNEXTLINE
60#define NATIVE_WASM_TYPE(native, valkind, field) \
61 template <> struct WasmType<native> { \
62 static const bool valid = true; \
63 static const ValKind kind = ValKind::valkind; \
64 static void store(Store::Context cx, wasmtime_val_raw_t *p, \
65 const native &t) { \
66 p->field = t; \
67 } \
68 static native load(Store::Context cx, wasmtime_val_raw_t *p) { \
69 return p->field; \
70 } \
71 };
72
73NATIVE_WASM_TYPE(int32_t, I32, i32)
74NATIVE_WASM_TYPE(uint32_t, I32, i32)
75NATIVE_WASM_TYPE(int64_t, I64, i64)
76NATIVE_WASM_TYPE(uint64_t, I64, i64)
77NATIVE_WASM_TYPE(float, F32, f32)
78NATIVE_WASM_TYPE(double, F64, f64)
79
80#undef NATIVE_WASM_TYPE
81
84template <> struct WasmType<std::optional<ExternRef>> {
85 static const bool valid = true;
86 static const ValKind kind = ValKind::ExternRef;
87 static void store(Store::Context cx, wasmtime_val_raw_t *p,
88 const std::optional<ExternRef> &ref) {
89 if (ref) {
90 p->externref = wasmtime_externref_to_raw(cx.raw_context(), ref->raw());
91 } else {
92 p->externref = 0;
93 }
94 }
95 static std::optional<ExternRef> load(Store::Context cx,
97 if (p->externref == 0) {
98 return std::nullopt;
99 }
101 wasmtime_externref_from_raw(cx.raw_context(), p->externref, &val);
102 return ExternRef(val);
103 }
104};
105
107template <> struct WasmType<V128> {
108 static const bool valid = true;
109 static const ValKind kind = ValKind::V128;
110 static void store(Store::Context cx, wasmtime_val_raw_t *p, const V128 &t) {
111 memcpy(&p->v128[0], &t.v128[0], sizeof(wasmtime_v128));
112 }
113 static V128 load(Store::Context cx, wasmtime_val_raw_t *p) { return p->v128; }
114};
115
120template <typename T> struct WasmTypeList {
121 static const bool valid = WasmType<T>::valid;
122 static const size_t size = 1;
123 static bool matches(ValType::ListRef types) {
124 return WasmTypeList<std::tuple<T>>::matches(types);
125 }
126 static void store(Store::Context cx, wasmtime_val_raw_t *storage,
127 const T &t) {
128 WasmType<T>::store(cx, storage, t);
129 }
130 static T load(Store::Context cx, wasmtime_val_raw_t *storage) {
131 return WasmType<T>::load(cx, storage);
132 }
133 static std::vector<ValType> types() { return {WasmType<T>::kind}; }
134};
135
137template <> struct WasmTypeList<std::monostate> {
138 static const bool valid = true;
139 static const size_t size = 0;
140 static bool matches(ValType::ListRef types) { return types.size() == 0; }
141 static void store(Store::Context cx, wasmtime_val_raw_t *storage,
142 const std::monostate &t) {}
143 static std::monostate load(Store::Context cx, wasmtime_val_raw_t *storage) {
144 return std::monostate();
145 }
146 static std::vector<ValType> types() { return {}; }
147};
148
150template <typename... T> struct WasmTypeList<std::tuple<T...>> {
151 static const bool valid = (WasmType<T>::valid && ...);
152 static const size_t size = sizeof...(T);
153 static bool matches(ValType::ListRef types) {
154 if (types.size() != size) {
155 return false;
156 }
157 size_t n = 0;
158 return ((WasmType<T>::kind == types.begin()[n++].kind()) && ...);
159 }
160 static void store(Store::Context cx, wasmtime_val_raw_t *storage,
161 const std::tuple<T...> &t) {
162 size_t n = 0;
163 std::apply(
164 [&](const auto &...val) {
165 (WasmType<T>::store(cx, &storage[n++], val), ...); // NOLINT
166 },
167 t);
168 }
169 static std::tuple<T...> load(Store::Context cx, wasmtime_val_raw_t *storage) {
170 size_t n = 0;
171 return std::tuple<T...>{WasmType<T>::load(cx, &storage[n++])...}; // NOLINT
172 }
173 static std::vector<ValType> types() { return {WasmType<T>::kind...}; }
174};
175
179template <typename R> struct WasmHostRet {
180 using Results = WasmTypeList<R>;
181
182 template <typename F, typename... A>
183 static std::optional<Trap> invoke(F f, Caller cx, wasmtime_val_raw_t *raw,
184 A... args) {
185 auto ret = f(args...);
186 Results::store(cx, raw, ret);
187 return std::nullopt;
188 }
189};
190
192template <> struct WasmHostRet<void> {
193 using Results = WasmTypeList<std::tuple<>>;
194
195 template <typename F, typename... A>
196 static std::optional<Trap> invoke(F f, Caller cx, wasmtime_val_raw_t *raw,
197 A... args) {
198 f(args...);
199 return std::nullopt;
200 }
201};
202
203// Alternative method of returning "nothing" (also enables `std::monostate` in
204// the `R` type of `Result` below)
205template <> struct WasmHostRet<std::monostate> : public WasmHostRet<void> {};
206
209template <typename R> struct WasmHostRet<Result<R, Trap>> {
210 using Results = WasmTypeList<R>;
211
212 template <typename F, typename... A>
213 static std::optional<Trap> invoke(F f, Caller cx, wasmtime_val_raw_t *raw,
214 A... args) {
215 Result<R, Trap> ret = f(args...);
216 if (!ret) {
217 return ret.err();
218 }
219 Results::store(cx, raw, ret.ok());
220 return std::nullopt;
221 }
222};
223
224template <typename F, typename = void> struct WasmHostFunc;
225
228template <typename R, typename... A> struct WasmHostFunc<R (*)(A...)> {
229 using Params = WasmTypeList<std::tuple<A...>>;
230 using Results = typename WasmHostRet<R>::Results;
231
232 template <typename F>
233 static std::optional<Trap> invoke(F &f, Caller cx, wasmtime_val_raw_t *raw) {
234 auto params = Params::load(cx, raw);
235 return std::apply(
236 [&](const auto &...val) {
237 return WasmHostRet<R>::invoke(f, cx, raw, val...);
238 },
239 params);
240 }
241};
242
244template <typename R, typename... A>
245struct WasmHostFunc<R (*)(Caller, A...)> : public WasmHostFunc<R (*)(A...)> {
246 // Override `invoke` here to pass the `cx` as the first parameter
247 template <typename F>
248 static std::optional<Trap> invoke(F &f, Caller cx, wasmtime_val_raw_t *raw) {
249 auto params = WasmTypeList<std::tuple<A...>>::load(cx, raw);
250 return std::apply(
251 [&](const auto &...val) {
252 return WasmHostRet<R>::invoke(f, cx, raw, cx, val...);
253 },
254 params);
255 }
256};
257
259template <typename R, typename C, typename... A>
260struct WasmHostFunc<R (C::*)(A...)> : public WasmHostFunc<R (*)(A...)> {};
261
263template <typename R, typename C, typename... A>
264struct WasmHostFunc<R (C::*)(A...) const> : public WasmHostFunc<R (*)(A...)> {};
265
268template <typename R, typename C, typename... A>
269struct WasmHostFunc<R (C::*)(Caller, A...)>
270 : public WasmHostFunc<R (*)(Caller, A...)> {};
271
274template <typename R, typename C, typename... A>
275struct WasmHostFunc<R (C::*)(Caller, A...) const>
276 : public WasmHostFunc<R (*)(Caller, A...)> {};
277
280template <typename T>
281struct WasmHostFunc<T, std::void_t<decltype(&T::operator())>>
282 : public WasmHostFunc<decltype(&T::operator())> {};
283
284} // namespace detail
285
286using namespace detail;
287
288// forward-declaration for `Func::typed` below.
289template <typename Params, typename Results> class TypedFunc;
290
302class Func {
303 friend class Val;
304 friend class Instance;
305 friend class Linker;
306 template <typename Params, typename Results> friend class TypedFunc;
307
308 wasmtime_func_t func;
309
310 template <typename F>
311 static wasm_trap_t *raw_callback(void *env, wasmtime_caller_t *caller,
312 const wasmtime_val_t *args, size_t nargs,
313 wasmtime_val_t *results, size_t nresults) {
314 static_assert(alignof(Val) == alignof(wasmtime_val_t));
315 static_assert(sizeof(Val) == sizeof(wasmtime_val_t));
316 F *func = reinterpret_cast<F *>(env); // NOLINT
317 Span<const Val> args_span(reinterpret_cast<const Val *>(args), // NOLINT
318 nargs);
319 Span<Val> results_span(reinterpret_cast<Val *>(results), // NOLINT
320 nresults);
322 (*func)(Caller(caller), args_span, results_span);
323 if (!result) {
324 return result.err().ptr.release();
325 }
326 return nullptr;
327 }
328
329 template <typename F>
330 static wasm_trap_t *
331 raw_callback_unchecked(void *env, wasmtime_caller_t *caller,
332 wasmtime_val_raw_t *args_and_results,
333 size_t nargs_and_results) {
334 using HostFunc = WasmHostFunc<F>;
335 Caller cx(caller);
336 F *func = reinterpret_cast<F *>(env); // NOLINT
337 auto trap = HostFunc::invoke(*func, cx, args_and_results);
338 if (trap) {
339 return trap->ptr.release();
340 }
341 return nullptr;
342 }
343
344 template <typename F> static void raw_finalize(void *env) {
345 std::unique_ptr<F> ptr(reinterpret_cast<F *>(env)); // NOLINT
346 }
347
348public:
350 Func(wasmtime_func_t func) : func(func) {}
351
383 template <typename F,
384 std::enable_if_t<
385 std::is_invocable_r_v<Result<std::monostate, Trap>, F, Caller,
387 bool> = true>
388 Func(Store::Context cx, const FuncType &ty, F f) : func({}) {
389 wasmtime_func_new(cx.ptr, ty.ptr.get(), raw_callback<F>,
390 std::make_unique<F>(f).release(), raw_finalize<F>, &func);
391 }
392
431 template <typename F,
432 std::enable_if_t<WasmHostFunc<F>::Params::valid, bool> = true,
433 std::enable_if_t<WasmHostFunc<F>::Results::valid, bool> = true>
434 static Func wrap(Store::Context cx, F f) {
435 using HostFunc = WasmHostFunc<F>;
436 auto params = HostFunc::Params::types();
437 auto results = HostFunc::Results::types();
438 auto ty = FuncType::from_iters(params, results);
439 wasmtime_func_t func;
440 wasmtime_func_new_unchecked(cx.ptr, ty.ptr.get(), raw_callback_unchecked<F>,
441 std::make_unique<F>(f).release(),
442 raw_finalize<F>, &func);
443 return func;
444 }
445
466 template <typename I>
468 const I &end) const {
469 std::vector<wasmtime_val_t> raw_params;
470 raw_params.reserve(end - begin);
471 for (auto i = begin; i != end; i++) {
472 raw_params.push_back(i->val);
473 }
474 size_t nresults = this->type(cx)->results().size();
475 std::vector<wasmtime_val_t> raw_results(nresults);
476
477 wasm_trap_t *trap = nullptr;
478 auto *error =
479 wasmtime_func_call(cx.ptr, &func, raw_params.data(), raw_params.size(),
480 raw_results.data(), raw_results.capacity(), &trap);
481 if (error != nullptr) {
482 return TrapError(Error(error));
483 }
484 if (trap != nullptr) {
485 return TrapError(Trap(trap));
486 }
487
488 std::vector<Val> results;
489 results.reserve(nresults);
490 for (size_t i = 0; i < nresults; i++) {
491 results.push_back(raw_results[i]);
492 }
493 return results;
494 }
495
503 const std::vector<Val> &params) const {
504 return this->call(cx, params.begin(), params.end());
505 }
506
514 call(Store::Context cx, const std::initializer_list<Val> &params) const {
515 return this->call(cx, params.begin(), params.end());
516 }
517
520 return wasmtime_func_type(cx.ptr, &func);
521 }
522
540 template <typename Params, typename Results,
541 std::enable_if_t<WasmTypeList<Params>::valid, bool> = true,
542 std::enable_if_t<WasmTypeList<Results>::valid, bool> = true>
544 auto ty = this->type(cx);
545 if (!WasmTypeList<Params>::matches(ty->params()) ||
546 !WasmTypeList<Results>::matches(ty->results())) {
547 return Trap("static type for this function does not match actual type");
548 }
550 return ret;
551 }
552
554 const wasmtime_func_t &capi() const { return func; }
555};
556
561template <typename Params, typename Results> class TypedFunc {
562 friend class Func;
563 Func f;
564 TypedFunc(Func func) : f(func) {}
565
566public:
577 TrapResult<Results> call(Store::Context cx, Params params) const {
578 std::array<wasmtime_val_raw_t, std::max(WasmTypeList<Params>::size,
579 WasmTypeList<Results>::size)>
580 storage;
581 wasmtime_val_raw_t *ptr = storage.data();
582 if (ptr == nullptr)
583 ptr = reinterpret_cast<wasmtime_val_raw_t *>(alignof(wasmtime_val_raw_t));
584 WasmTypeList<Params>::store(cx, ptr, params);
585 wasm_trap_t *trap = nullptr;
586 auto *error = wasmtime_func_call_unchecked(cx.raw_context(), &f.func, ptr,
587 storage.size(), &trap);
588 if (error != nullptr) {
589 return TrapError(Error(error));
590 }
591 if (trap != nullptr) {
592 return TrapError(Trap(trap));
593 }
594 return WasmTypeList<Results>::load(cx, ptr);
595 }
596
598 const Func &func() const { return f; }
599};
600
601inline Val::Val(std::optional<Func> func) : val{} {
603 if (func) {
604 val.of.funcref = (*func).func;
605 } else {
606 wasmtime_funcref_set_null(&val.of.funcref);
607 }
608}
609
610inline Val::Val(Func func) : Val(std::optional(func)) {}
611inline Val::Val(ExternRef ptr) : Val(std::optional(ptr)) {}
612inline Val::Val(AnyRef ptr) : Val(std::optional(ptr)) {}
613
614inline std::optional<Func> Val::funcref() const {
615 if (val.kind != WASMTIME_FUNCREF) {
616 std::abort();
617 }
618 if (val.of.funcref.store_id == 0) {
619 return std::nullopt;
620 }
621 return Func(val.of.funcref);
622}
623
625template <> struct detail::WasmType<std::optional<Func>> {
627 static const bool valid = true;
629 static const ValKind kind = ValKind::FuncRef;
631 static void store(Store::Context cx, wasmtime_val_raw_t *p,
632 const std::optional<Func> func) {
633 if (func) {
634 p->funcref = wasmtime_func_to_raw(cx.raw_context(), &func->capi());
635 } else {
636 p->funcref = 0;
637 }
638 }
640 static std::optional<Func> load(Store::Context cx, wasmtime_val_raw_t *p) {
641 if (p->funcref == 0) {
642 return std::nullopt;
643 }
644 wasmtime_func_t ret;
645 wasmtime_func_from_raw(cx.raw_context(), p->funcref, &ret);
646 return ret;
647 }
648};
649
650} // namespace wasmtime
651
652#endif // WASMTIME_FUNC_HH
Representation of a WebAssembly anyref value.
Definition: val.hh:80
Structure provided to host functions to lookup caller information or acquire a Store::Context.
Definition: func.hh:28
std::optional< Extern > get_export(std::string_view name)
Definition: extern.hh:53
Store::Context context()
Explicitly acquire a Store::Context from this Caller.
Definition: func.hh:42
Errors coming from Wasmtime.
Definition: error.hh:25
Representation of a WebAssembly externref value.
Definition: val.hh:28
Type information for a WebAssembly function.
Definition: types/func.hh:15
static FuncType from_iters(P params, R results)
Creates a new function type from the given list of parameters and results.
Definition: types/func.hh:75
Representation of a WebAssembly function.
Definition: func.hh:302
TrapResult< std::vector< Val > > call(Store::Context cx, const I &begin, const I &end) const
Invoke a WebAssembly function.
Definition: func.hh:467
Func(wasmtime_func_t func)
Creates a new function from the raw underlying C API representation.
Definition: func.hh:350
FuncType type(Store::Context cx) const
Returns the type of this function.
Definition: func.hh:519
TrapResult< std::vector< Val > > call(Store::Context cx, const std::vector< Val > &params) const
Helper function for call(Store::Context cx, const I &begin, const I &end)
Definition: func.hh:502
static Func wrap(Store::Context cx, F f)
Creates a new host function from the provided callback f, inferring the WebAssembly function type fro...
Definition: func.hh:434
TrapResult< std::vector< Val > > call(Store::Context cx, const std::initializer_list< Val > &params) const
Helper function for call(Store::Context cx, const I &begin, const I &end)
Definition: func.hh:514
const wasmtime_func_t & capi() const
Returns the raw underlying C API function this is using.
Definition: func.hh:554
Func(Store::Context cx, const FuncType &ty, F f)
Creates a new host-defined function.
Definition: func.hh:388
Result< TypedFunc< Params, Results >, Trap > typed(Store::Context cx) const
Statically checks this function against the provided types.
Definition: func.hh:543
A WebAssembly instance.
Definition: instance.hh:31
Helper class for linking modules together with name-based resolution.
Definition: linker.hh:25
Fallible result type used for Wasmtime.
Definition: error.hh:82
E && err()
Returns the error, if present, aborts if this is not an error.
Definition: error.hh:96
Span class used when c++20 is not available.
Definition: span.hh:47
An interior pointer into a Store.
Definition: store.hh:60
wasmtime_context_t * raw_context()
Returns the raw context pointer for the C API.
Definition: store.hh:153
Owner of all WebAssembly objects.
Definition: store.hh:33
Information about a WebAssembly trap.
Definition: trap.hh:113
A version of a WebAssembly Func where the type signature of the function is statically known.
Definition: func.hh:561
const Func & func() const
Returns the underlying un-typed Func for this function.
Definition: func.hh:598
TrapResult< Results > call(Store::Context cx, Params params) const
Calls this function with the provided parameters.
Definition: func.hh:577
Representation of a generic WebAssembly value.
Definition: val.hh:156
std::optional< Func > funcref() const
Definition: func.hh:614
void wasmtime_func_from_raw(wasmtime_context_t *context, void *raw, wasmtime_func_t *ret)
Converts a raw nonzero funcref value from wasmtime_val_raw_t into a wasmtime_func_t.
wasmtime_error_t * wasmtime_func_call(wasmtime_context_t *store, const wasmtime_func_t *func, const wasmtime_val_t *args, size_t nargs, wasmtime_val_t *results, size_t nresults, wasm_trap_t **trap)
Call a WebAssembly function.
void * wasmtime_func_to_raw(wasmtime_context_t *context, const wasmtime_func_t *func)
Converts a func which belongs to context into a usize parameter that is suitable for insertion into a...
wasmtime_error_t * wasmtime_func_call_unchecked(wasmtime_context_t *store, const wasmtime_func_t *func, wasmtime_val_raw_t *args_and_results, size_t args_and_results_len, wasm_trap_t **trap)
Call a WebAssembly function in an "unchecked" fashion.
void wasmtime_func_new(wasmtime_context_t *store, const wasm_functype_t *type, wasmtime_func_callback_t callback, void *env, void(*finalizer)(void *), wasmtime_func_t *ret)
Creates a new host-defined function.
wasmtime_context_t * wasmtime_caller_context(wasmtime_caller_t *caller)
Returns the store context of the caller object.
void wasmtime_func_new_unchecked(wasmtime_context_t *store, const wasm_functype_t *type, wasmtime_func_unchecked_callback_t callback, void *env, void(*finalizer)(void *), wasmtime_func_t *ret)
Creates a new host function in the same manner of wasmtime_func_new, but the function-to-call has no ...
wasm_functype_t * wasmtime_func_type(const wasmtime_context_t *store, const wasmtime_func_t *func)
Returns the type of the function specified.
#define NATIVE_WASM_TYPE(native, valkind, field)
Definition: func.hh:60
Opaque struct representing a wasm trap.
Structure used to represent either a Trap or an Error.
Definition: trap.hh:165
A host-defined un-forgeable reference to pass into WebAssembly.
Definition: val.h:174
Representation of a function in Wasmtime.
Definition: extern.h:25
uint64_t store_id
Definition: extern.h:31
Container for different kinds of wasm values.
Definition: val.h:441
wasmtime_valkind_t kind
Discriminant of which field of of is valid.
Definition: val.h:443
wasmtime_valunion_t of
Container for the extern item's value.
Definition: val.h:445
ValKind
Different kinds of types accepted by Wasmtime.
Definition: types/val.hh:16
@ V128
WebAssembly's v128 type from the simd proposal.
Container for possible wasm values.
Definition: val.h:372
uint32_t externref
Definition: val.h:408
wasmtime_v128 v128
Definition: val.h:392
void * funcref
Definition: val.h:415
wasmtime_func_t funcref
Definition: val.h:336
uint32_t wasmtime_externref_to_raw(wasmtime_context_t *context, const wasmtime_externref_t *ref)
Converts a wasmtime_externref_t to a raw value suitable for storing into a wasmtime_val_raw_t.
union wasmtime_val_raw wasmtime_val_raw_t
Convenience alias for wasmtime_val_raw.
uint8_t wasmtime_v128[16]
A 128-bit value representing the WebAssembly v128 type. Bytes are stored in little-endian order.
Definition: val.h:307
void wasmtime_externref_from_raw(wasmtime_context_t *context, uint32_t raw, wasmtime_externref_t *out)
Converts a raw externref value coming from wasmtime_val_raw_t into a wasmtime_externref_t.
#define WASMTIME_FUNCREF
Value of wasmtime_valkind_t meaning that wasmtime_val_t is a funcref.
Definition: val.h:297