Namespaces | |
namespace | detail |
Typedefs | |
template<auto FN> | |
using | return_type_t = decltype(return_type(AUTO_PARAM_WORKAROUND(FN))) |
template<auto FN> | |
using | class_from_member_t = decltype(class_from_member(AUTO_PARAM_WORKAROUND(FN))) |
template<auto FN> | |
using | flatten_parameters_t = decltype(flatten_parameters(AUTO_PARAM_WORKAROUND(FN))) |
template<auto FN> | |
using | decayed_flatten_parameters_t = decltype(decayed_flatten_parameters(AUTO_PARAM_WORKAROUND(FN))) |
template<std::size_t N, auto FN> | |
using | parameter_at_t = decltype(parameter_at<N>(AUTO_PARAM_WORKAROUND(FN))) |
template<std::size_t N, auto FN> | |
using | parameters_from_t = decltype(parameters_from<N>(AUTO_PARAM_WORKAROUND(FN))) |
typedef std::nullptr_t | standalone_function_t |
using | host_func_pair = std::pair<std::string, std::string> |
using | opcode |
typedef uint8_t | value_type |
typedef uint8_t | block_type |
typedef uint8_t | elem_type |
template<typename T > | |
using | guarded_vector = managed_vector<T, growable_allocator> |
using | wasm_code = std::vector<uint8_t> |
using | wasm_code_ptr = guarded_ptr<uint8_t> |
typedef std::uint32_t | wasm_ptr_t |
typedef std::uint32_t | wasm_size_t |
template<typename Tuple > | |
using | generate_all_subtuples_t = decltype(detail::generate_all_subtuples(std::declval<Tuple>())) |
template<typename Tuple > | |
using | tuple_sort_t = decltype(detail::tuple_sort<std::tuple_size_v<Tuple>-1, 0, Tuple, std::tuple<>>()) |
template<size_t N, typename Tuple > | |
using | tuple_trim_t = typename detail::tuple_trim<N, 0, Tuple>::type |
template<typename T > | |
using | unmanaged_vector = std::vector<T> |
using | operand_stack = stack<operand_stack_elem, constants::initial_stack_size> |
using | call_stack = stack<activation_frame, constants::max_call_depth + 1, bounded_allocator> |
Functions | |
template<typename F > | |
constexpr bool | is_callable (F &&fn) |
template<typename R , typename... Args> | |
constexpr bool | is_function (R(*)(Args...)) |
template<typename F > | |
constexpr bool | is_function (F &&) |
template<typename R , typename Cls , typename... Args> | |
constexpr bool | is_member_function (R(Cls::*)(Args...)) |
template<typename R , typename Cls , typename... Args> | |
constexpr bool | is_member_function (R(Cls::*)(Args...)&) |
template<typename R , typename Cls , typename... Args> | |
constexpr bool | is_member_function (R(Cls::*)(Args...)&&) |
template<typename R , typename Cls , typename... Args> | |
constexpr bool | is_member_function (R(Cls::*)(Args...) const &) |
template<typename R , typename Cls , typename... Args> | |
constexpr bool | is_member_function (R(Cls::*)(Args...) const &&) |
template<typename F > | |
constexpr bool | is_member_function (F &&) |
template<typename F > | |
constexpr bool | is_class (F &&) |
template<typename F > | |
constexpr auto | return_type (F &&fn) -> std::tuple_element_t< 0, detail::get_types_t< false, F > > |
template<typename F > | |
constexpr auto | class_from_member (F &&fn) -> std::tuple_element_t< 1, detail::get_types_t< false, F > > |
template<typename F > | |
constexpr auto | flatten_parameters (F &&fn) -> std::tuple_element_t< 2, detail::get_types_t< false, F > > |
template<typename F > | |
constexpr auto | decayed_flatten_parameters (F &&fn) -> std::tuple_element_t< 2, detail::get_types_t< true, F > > |
template<std::size_t N, typename F > | |
constexpr auto | parameter_at (F &&fn) -> std::tuple_element_t< N, decltype(flatten_parameters(std::declval< F >()))> |
template<std::size_t N, typename F > | |
constexpr auto | parameters_from (F &&fn) -> detail::parameters_from_impl_t< N, F > |
template<bool Once, typename T , typename F , typename... Args> | |
void | invoke_on (F &&func, const Args &... args) |
template<auto F, typename Preconditions , typename Type_Converter , typename Host , typename... Args> | |
decltype(auto) | invoke_impl (Type_Converter &tc, Host *host, Args &&... args) |
template<auto F, typename Preconditions , typename Host , typename Args , typename Type_Converter , std::size_t... Is> | |
decltype(auto) | invoke_with_host_impl (Type_Converter &tc, Host *host, Args &&args, std::index_sequence< Is... >) |
template<auto F, typename Preconditions , typename Args , typename Type_Converter , typename Host , std::size_t... Is> | |
decltype(auto) | invoke_with_host (Type_Converter &tc, Host *host, std::index_sequence< Is... >) |
template<typename Type_Converter , typename T > | |
void | maybe_push_result (Type_Converter &tc, T &&res, std::size_t trim_amt) |
template<typename Cls , auto F, typename Preconditions , typename R , typename Args , typename Type_Converter , size_t... Is> | |
auto | create_function (std::index_sequence< Is... >) |
template<typename T > | |
auto | to_wasm_type () |
template<> | |
constexpr auto | to_wasm_type< i32_const_t > () |
template<> | |
constexpr auto | to_wasm_type< i64_const_t > () |
template<> | |
constexpr auto | to_wasm_type< f32_const_t > () |
template<> | |
constexpr auto | to_wasm_type< f64_const_t > () |
bool | operator== (const host_function &lhs, const func_type &rhs) |
bool | operator== (const func_type &lhs, const host_function &rhs) |
template<typename TC , typename Args , std::size_t... Is> | |
void | get_args (value_type *&out, std::index_sequence< Is... >) |
template<typename Type_Converter , typename T > | |
void | get_args (value_type *&out) |
template<size_t N> | |
size_t constexpr | bytes_needed () |
constexpr max_func_local_bytes_flags_t | operator| (max_func_local_bytes_flags_t lhs, max_func_local_bytes_flags_t rhs) |
constexpr max_func_local_bytes_flags_t | operator& (max_func_local_bytes_flags_t lhs, max_func_local_bytes_flags_t rhs) |
void | profile_handler (int sig, siginfo_t *info, void *) |
void | register_profile_signal_handler_impl () |
void | register_profile_signal_handler () |
void | set_profile_interval_us (uint32_t value) |
void | signal_handler (int sig, siginfo_t *info, void *uap) |
template<typename F > | |
void | longjmp_on_exception (F &&f) |
template<typename E > | |
void | throw_ (const char *msg) |
void | setup_signal_handler_impl () |
void | setup_signal_handler () |
template<typename F , typename E > | |
auto | invoke_with_signal_handler (F &&f, E &&e) |
bool | operator== (const func_type &lhs, const func_type &rhs) |
std::vector< uint8_t > | read_wasm (const std::string &fname) |
template<typename StackElem > | |
void | print_result (const std::optional< StackElem > &result) |
template<class... Ts> | |
overloaded (Ts...) -> overloaded< Ts... > | |
template<typename... T> | |
void | ignore_unused_variable_warning (T &...) |
template<class Visitor , typename Variant > | |
constexpr auto | visit (Visitor &&vis, Variant &&var) |
template<typename T > | |
std::string | vector_to_string (T &&vec) |
template<> | |
constexpr auto | to_wasm_type< i32_const_t > () |
template<> | |
constexpr auto | to_wasm_type< i64_const_t > () |
template<> | |
constexpr auto | to_wasm_type< f32_const_t > () |
template<> | |
constexpr auto | to_wasm_type< f64_const_t > () |
template<typename T , std::size_t Extent> | |
bool | operator== (const span< T, Extent > &lhs, const span< T, Extent > &rhs) |
Variables | |
constexpr bool | should_align_memory_ops = false |
constexpr bool | use_softfloat = false |
constexpr bool | eos_vm_debug = false |
constexpr bool | eos_vm_amd64 = false |
template<typename TC , typename T > | |
constexpr auto | to_wasm_type_v = to_wasm_type<decltype(detail::resolve_result(std::declval<TC&>(), std::declval<T>()))>() |
template<typename TC > | |
constexpr auto | to_wasm_type_v< TC, void > = types::ret_void |
template<typename Type_Converter , typename Ret , typename Args , std::size_t... Is> | |
host_function | function_types_provider (std::index_sequence< Is... >) |
uint32_t | profile_interval_us = 10000 |
template<int Sig> | |
__attribute__((visibility("default"))) inline thread_local std __attribute__((visibility("default"))) inline thread_local std struct sigaction | prev_signal_handler |
maybe_void_t | maybe_void |
typedef uint8_t sysio::vm::block_type |
typedef stack< activation_frame, constants::max_call_depth+1, bounded_allocator > sysio::vm::call_stack = stack<activation_frame, constants::max_call_depth + 1, bounded_allocator> |
Definition at line 74 of file wasm_stack.hpp.
using sysio::vm::class_from_member_t = decltype(class_from_member(AUTO_PARAM_WORKAROUND(FN))) |
Definition at line 203 of file function_traits.hpp.
using sysio::vm::decayed_flatten_parameters_t = decltype(decayed_flatten_parameters(AUTO_PARAM_WORKAROUND(FN))) |
Definition at line 215 of file function_traits.hpp.
typedef uint8_t sysio::vm::elem_type |
using sysio::vm::flatten_parameters_t = decltype(flatten_parameters(AUTO_PARAM_WORKAROUND(FN))) |
Definition at line 209 of file function_traits.hpp.
using sysio::vm::generate_all_subtuples_t = decltype(detail::generate_all_subtuples(std::declval<Tuple>())) |
using sysio::vm::guarded_vector = managed_vector<T, growable_allocator> |
typedef std::pair< std::string, std::string > sysio::vm::host_func_pair = std::pair<std::string, std::string> |
Definition at line 409 of file host_function.hpp.
typedef variant< > sysio::vm::opcode |
Definition at line 79 of file opcodes.hpp.
typedef stack< operand_stack_elem, constants::initial_stack_size > sysio::vm::operand_stack = stack<operand_stack_elem, constants::initial_stack_size> |
Definition at line 73 of file wasm_stack.hpp.
using sysio::vm::parameter_at_t = decltype(parameter_at<N>(AUTO_PARAM_WORKAROUND(FN))) |
Definition at line 222 of file function_traits.hpp.
using sysio::vm::parameters_from_t = decltype(parameters_from<N>(AUTO_PARAM_WORKAROUND(FN))) |
Definition at line 228 of file function_traits.hpp.
using sysio::vm::return_type_t = decltype(return_type(AUTO_PARAM_WORKAROUND(FN))) |
Definition at line 197 of file function_traits.hpp.
typedef std::nullptr_t sysio::vm::standalone_function_t |
Definition at line 26 of file host_function.hpp.
using sysio::vm::tuple_sort_t = decltype(detail::tuple_sort<std::tuple_size_v<Tuple>-1, 0, Tuple, std::tuple<>>()) |
using sysio::vm::tuple_trim_t = typename detail::tuple_trim<N, 0, Tuple>::type |
using sysio::vm::unmanaged_vector = std::vector<T> |
Definition at line 108 of file vector.hpp.
typedef uint8_t sysio::vm::value_type |
typedef std::vector< uint8_t > sysio::vm::wasm_code = std::vector<uint8_t> |
typedef guarded_ptr< uint8_t > sysio::vm::wasm_code_ptr = guarded_ptr<uint8_t> |
typedef std::uint32_t sysio::vm::wasm_ptr_t |
typedef std::uint32_t sysio::vm::wasm_size_t |
enum sysio::vm::constants |
Definition at line 5 of file constants.hpp.
enum sysio::vm::constants |
Definition at line 5 of file constants.hpp.
enum sysio::vm::imm_types |
Enumerator | |
---|---|
none | |
block_imm | |
varuint32_imm | |
br_table_imm | |
none | |
block_imm | |
varuint32_imm | |
br_table_imm |
Definition at line 52 of file opcodes.hpp.
enum sysio::vm::imm_types |
Enumerator | |
---|---|
none | |
block_imm | |
varuint32_imm | |
br_table_imm | |
none | |
block_imm | |
varuint32_imm | |
br_table_imm |
Definition at line 52 of file opcodes.hpp.
|
strong |
Enumerator | |
---|---|
params | |
locals | |
stack | |
params | |
locals | |
stack |
Definition at line 7 of file options.hpp.
|
strong |
Enumerator | |
---|---|
params | |
locals | |
stack | |
params | |
locals | |
stack |
Definition at line 7 of file options.hpp.
enum sysio::vm::opcodes |
Definition at line 8 of file opcodes.hpp.
enum sysio::vm::opcodes |
Definition at line 8 of file opcodes.hpp.
Definition at line 4 of file sections.hpp.
Definition at line 4 of file sections.hpp.
enum sysio::vm::types |
enum sysio::vm::types |
|
inlineconstexpr |
Definition at line 14 of file leb128.hpp.
|
constexpr |
auto sysio::vm::create_function | ( | std::index_sequence< Is... > | ) |
Definition at line 335 of file host_function.hpp.
|
constexpr |
|
constexpr |
void sysio::vm::get_args | ( | value_type *& | out | ) |
Definition at line 380 of file host_function.hpp.
void sysio::vm::get_args | ( | value_type *& | out, |
std::index_sequence< Is... > | ) |
Definition at line 375 of file host_function.hpp.
void sysio::vm::ignore_unused_variable_warning | ( | T & | ... | ) |
decltype(auto) sysio::vm::invoke_impl | ( | Type_Converter & | tc, |
Host * | host, | ||
Args &&... | args ) |
Definition at line 305 of file host_function.hpp.
void sysio::vm::invoke_on | ( | F && | func, |
const Args &... | args ) |
Definition at line 283 of file host_function.hpp.
decltype(auto) sysio::vm::invoke_with_host | ( | Type_Converter & | tc, |
Host * | host, | ||
std::index_sequence< Is... > | ) |
Definition at line 319 of file host_function.hpp.
decltype(auto) sysio::vm::invoke_with_host_impl | ( | Type_Converter & | tc, |
Host * | host, | ||
Args && | args, | ||
std::index_sequence< Is... > | ) |
Definition at line 313 of file host_function.hpp.
auto sysio::vm::invoke_with_signal_handler | ( | F && | f, |
E && | e ) |
Call a function with a signal handler installed. If this thread is signalled during the execution of f, the function e will be called with the signal number as an argument. If f creates any automatic variables with non-trivial destructors, then it must mask the relevant signals during the lifetime of these objects or the behavior is undefined.
signals handled: SIGSEGV, SIGBUS, SIGFPE
Definition at line 123 of file signals.hpp.
|
constexpr |
Definition at line 79 of file function_traits.hpp.
|
constexpr |
Definition at line 191 of file function_traits.hpp.
|
constexpr |
Definition at line 161 of file function_traits.hpp.
Definition at line 158 of file function_traits.hpp.
|
constexpr |
Definition at line 182 of file function_traits.hpp.
|
constexpr |
Definition at line 179 of file function_traits.hpp.
|
constexpr |
Definition at line 176 of file function_traits.hpp.
|
constexpr |
Definition at line 173 of file function_traits.hpp.
|
constexpr |
Definition at line 170 of file function_traits.hpp.
|
constexpr |
Definition at line 164 of file function_traits.hpp.
|
inline |
Definition at line 62 of file signals.hpp.
void sysio::vm::maybe_push_result | ( | Type_Converter & | tc, |
T && | res, | ||
std::size_t | trim_amt ) |
Definition at line 325 of file host_function.hpp.
|
constexpr |
Definition at line 15 of file options.hpp.
Definition at line 49 of file types.hpp.
|
inline |
Definition at line 370 of file host_function.hpp.
|
inline |
Definition at line 364 of file host_function.hpp.
bool sysio::vm::operator== | ( | const span< T, Extent > & | lhs, |
const span< T, Extent > & | rhs ) |
|
constexpr |
Definition at line 12 of file options.hpp.
sysio::vm::overloaded | ( | Ts... | ) | -> overloaded< Ts... > |
|
constexpr |
|
constexpr |
|
inline |
Definition at line 53 of file utils.hpp.
|
inline |
Definition at line 346 of file profile.hpp.
|
inline |
Definition at line 30 of file utils.hpp.
|
inline |
Definition at line 264 of file profile.hpp.
|
inline |
Definition at line 256 of file profile.hpp.
|
constexpr |
|
inline |
|
inline |
Definition at line 105 of file signals.hpp.
|
inline |
Definition at line 94 of file signals.hpp.
|
inline |
Definition at line 26 of file signals.hpp.
|
inline |
Definition at line 84 of file signals.hpp.
auto sysio::vm::to_wasm_type | ( | ) |
|
constexpr |
Definition at line 350 of file host_function.hpp.
|
constexpr |
Definition at line 350 of file host_function.hpp.
|
constexpr |
Definition at line 352 of file host_function.hpp.
|
constexpr |
Definition at line 352 of file host_function.hpp.
|
constexpr |
Definition at line 346 of file host_function.hpp.
|
constexpr |
Definition at line 346 of file host_function.hpp.
|
constexpr |
Definition at line 348 of file host_function.hpp.
|
constexpr |
Definition at line 348 of file host_function.hpp.
Definition at line 111 of file vector.hpp.
|
constexpr |
Definition at line 156 of file variant.hpp.
|
inlineconstexpr |
Definition at line 28 of file config.hpp.
|
inlineconstexpr |
Definition at line 22 of file config.hpp.
host_function sysio::vm::function_types_provider | ( | std::index_sequence< Is... > | ) |
Definition at line 390 of file host_function.hpp.
|
inline |
__attribute__ ((visibility("default"))) inline thread_local std __attribute__ ((visibility("default"))) inline thread_local std struct sigaction sysio::vm::prev_signal_handler |
Definition at line 24 of file signals.hpp.
|
inline |
Definition at line 18 of file profile.hpp.
|
inlineconstexpr |
Definition at line 9 of file config.hpp.
|
constexpr |
Definition at line 355 of file host_function.hpp.
|
constexpr |
Definition at line 357 of file host_function.hpp.
|
inlineconstexpr |
Definition at line 16 of file config.hpp.