eos-vm icon indicating copy to clipboard operation
eos-vm copied to clipboard

A Low-Latency, High Performance and Extensible WebAssembly Backend Library

Results 32 eos-vm issues
Sort by recently updated
recently updated
newest added

When building against glibc 2.34, a build failure occurs rooted [here](https://github.com/EOSIO/eos-vm/blob/d42a18152669c1cec69ad43e82af41c276bb4172/include/eosio/vm/execution_context.hpp#L273) due to the fact that SIGSTKSZ is no longer a `constexpr` value [(see glibc changelog)](https://sourceware.org/git/?p=glibc.git;a=blob;f=NEWS;h=85e84fe53699fe9e392edffa993612ce08b2954a;hb=HEAD#l12). There is also an...

`SIGSTKSZ` is no longer `constexpr`. See issue #227 for discussion.

This removes the `is_callable_v` workaround and replaces it with `std::is_invocable_v` as the workaround is causing a ``` template argument for non-type template parameter must be an expression ``` error on...

This PR - avoids the warning that `-Wno-regiester` is not a valid option for C compiler, - avoids the warning that `-Wmaybe-uninitialized` is not recognize option for clang++ compiler. PR...

Master branch hasn't been updated in two years making the project look abandoned

### Running the profiler The profiler only works with specific template parameters `backend`. `jit_profile` allows capturing stack traces, `profile_instr_map` allows mapping host code addresses to offsets in the wasm file....

:eosio::vm::registered_host_functions::operator()(decltype(nullptr)*, eosio::vm::execution_context&, unsigned int) parsing running wasm file causing crash

- Fix a number of issues where handling of NaN was different from softfloat. - Add tests to verify identical behavior with softfloat. - Add a template parameter to control...