mirror of
https://github.com/fluencelabs/wasmer
synced 2025-04-14 05:06:07 +00:00
31 lines
842 B
Rust
31 lines
842 B
Rust
use super::env;
|
|
use super::process::_abort;
|
|
use wasmer_runtime_core::vm::Ctx;
|
|
|
|
/// emscripten: ___cxa_allocate_exception
|
|
pub fn ___cxa_allocate_exception(ctx: &mut Ctx, size: u32) -> u32 {
|
|
debug!("emscripten::___cxa_allocate_exception");
|
|
env::call_malloc(ctx, size as _)
|
|
}
|
|
|
|
/// emscripten: ___cxa_throw
|
|
/// TODO: We don't have support for exceptions yet
|
|
pub fn ___cxa_throw(ctx: &mut Ctx, _ptr: u32, _ty: u32, _destructor: u32) {
|
|
debug!("emscripten::___cxa_throw");
|
|
_abort(ctx);
|
|
}
|
|
|
|
pub fn ___cxa_begin_catch(_ctx: &mut Ctx, _exception_object_ptr: u32) -> i32 {
|
|
debug!("emscripten::___cxa_begin_catch");
|
|
-1
|
|
}
|
|
|
|
pub fn ___cxa_end_catch(_ctx: &mut Ctx) {
|
|
debug!("emscripten::___cxa_end_catch");
|
|
}
|
|
|
|
pub fn ___cxa_uncaught_exception(_ctx: &mut Ctx) -> i32 {
|
|
debug!("emscripten::___cxa_uncaught_exception");
|
|
-1
|
|
}
|