wasmer/lib/emscripten/src/exception.rs

17 lines
497 B
Rust
Raw Normal View History

2019-01-10 21:37:59 -08:00
use super::env;
2019-01-18 00:18:13 -06:00
use super::process::_abort;
2019-01-24 00:00:38 -06:00
use wasmer_runtime_core::vm::Ctx;
/// emscripten: ___cxa_allocate_exception
pub fn ___cxa_allocate_exception(size: u32, ctx: &mut Ctx) -> u32 {
debug!("emscripten::___cxa_allocate_exception");
2019-01-24 13:04:12 -08:00
env::call_malloc(size as _, ctx)
}
/// emscripten: ___cxa_throw
/// TODO: We don't have support for exceptions yet
pub fn ___cxa_throw(_ptr: u32, _ty: u32, _destructor: u32, ctx: &mut Ctx) {
debug!("emscripten::___cxa_throw");
_abort(ctx);
}