| /** |
| * @license |
| * Copyright 2010 The Emscripten Authors |
| * SPDX-License-Identifier: MIT |
| */ |
| |
| var LibraryExceptions = { |
| #if !WASM_EXCEPTIONS |
| $uncaughtExceptionCount: '0', |
| $exceptionLast: '0', |
| $exceptionCaught: ' []', |
| |
| // This class is the exception metadata which is prepended to each thrown object (in WASM memory). |
| // It is allocated in one block among with a thrown object in __cxa_allocate_exception and freed |
| // in ___cxa_free_exception. It roughly corresponds to __cxa_exception structure in libcxxabi. The |
| // class itself is just a native pointer wrapper, and contains all the necessary accessors for the |
| // fields in the native structure. |
| // TODO: Unfortunately this approach still cannot be considered thread-safe because single |
| // exception object can be simultaneously thrown in several threads and its state (except |
| // reference counter) is not protected from that. Also protection is not enough, separate state |
| // should be allocated. libcxxabi has concept of dependent exception which is used for that |
| // purpose, it references the primary exception. |
| // |
| // excPtr - Thrown object pointer to wrap. Metadata pointer is calculated from it. |
| $ExceptionInfo__docs: '/** @constructor */', |
| $ExceptionInfo__deps: ['__cxa_is_pointer_type', |
| #if EXCEPTION_DEBUG |
| '$ptrToString', |
| #endif |
| ], |
| $ExceptionInfo: function(excPtr) { |
| this.excPtr = excPtr; |
| this.ptr = excPtr - {{{ C_STRUCTS.__cxa_exception.__size__ }}}; |
| |
| this.set_type = function(type) { |
| {{{ makeSetValue('this.ptr', C_STRUCTS.__cxa_exception.exceptionType, 'type', '*') }}}; |
| }; |
| |
| this.get_type = function() { |
| return {{{ makeGetValue('this.ptr', C_STRUCTS.__cxa_exception.exceptionType, '*') }}}; |
| }; |
| |
| this.set_destructor = function(destructor) { |
| {{{ makeSetValue('this.ptr', C_STRUCTS.__cxa_exception.exceptionDestructor, 'destructor', '*') }}}; |
| }; |
| |
| this.get_destructor = function() { |
| return {{{ makeGetValue('this.ptr', C_STRUCTS.__cxa_exception.exceptionDestructor, '*') }}}; |
| }; |
| |
| this.set_refcount = function(refcount) { |
| {{{ makeSetValue('this.ptr', C_STRUCTS.__cxa_exception.referenceCount, 'refcount', 'i32') }}}; |
| }; |
| |
| this.set_caught = function (caught) { |
| caught = caught ? 1 : 0; |
| {{{ makeSetValue('this.ptr', C_STRUCTS.__cxa_exception.caught, 'caught', 'i8') }}}; |
| }; |
| |
| this.get_caught = function () { |
| return {{{ makeGetValue('this.ptr', C_STRUCTS.__cxa_exception.caught, 'i8') }}} != 0; |
| }; |
| |
| this.set_rethrown = function (rethrown) { |
| rethrown = rethrown ? 1 : 0; |
| {{{ makeSetValue('this.ptr', C_STRUCTS.__cxa_exception.rethrown, 'rethrown', 'i8') }}}; |
| }; |
| |
| this.get_rethrown = function () { |
| return {{{ makeGetValue('this.ptr', C_STRUCTS.__cxa_exception.rethrown, 'i8') }}} != 0; |
| }; |
| |
| // Initialize native structure fields. Should be called once after allocated. |
| this.init = function(type, destructor) { |
| #if EXCEPTION_DEBUG |
| dbg('ExceptionInfo init: ' + [type, destructor]); |
| #endif |
| this.set_adjusted_ptr(0); |
| this.set_type(type); |
| this.set_destructor(destructor); |
| this.set_refcount(0); |
| this.set_caught(false); |
| this.set_rethrown(false); |
| } |
| |
| this.add_ref = function() { |
| #if SHARED_MEMORY |
| Atomics.add(HEAP32, (this.ptr + {{{ C_STRUCTS.__cxa_exception.referenceCount }}}) >> 2, 1); |
| #else |
| var value = {{{ makeGetValue('this.ptr', C_STRUCTS.__cxa_exception.referenceCount, 'i32') }}}; |
| {{{ makeSetValue('this.ptr', C_STRUCTS.__cxa_exception.referenceCount, 'value + 1', 'i32') }}}; |
| #endif |
| }; |
| |
| // Returns true if last reference released. |
| this.release_ref = function() { |
| #if SHARED_MEMORY |
| var prev = Atomics.sub(HEAP32, (this.ptr + {{{ C_STRUCTS.__cxa_exception.referenceCount }}}) >> 2, 1); |
| #else |
| var prev = {{{ makeGetValue('this.ptr', C_STRUCTS.__cxa_exception.referenceCount, 'i32') }}}; |
| {{{ makeSetValue('this.ptr', C_STRUCTS.__cxa_exception.referenceCount, 'prev - 1', 'i32') }}}; |
| #endif |
| #if ASSERTIONS |
| assert(prev > 0); |
| #endif |
| return prev === 1; |
| }; |
| |
| this.set_adjusted_ptr = function(adjustedPtr) { |
| {{{ makeSetValue('this.ptr', C_STRUCTS.__cxa_exception.adjustedPtr, 'adjustedPtr', '*') }}}; |
| }; |
| |
| this.get_adjusted_ptr = function() { |
| return {{{ makeGetValue('this.ptr', C_STRUCTS.__cxa_exception.adjustedPtr, '*') }}}; |
| }; |
| |
| // Get pointer which is expected to be received by catch clause in C++ code. It may be adjusted |
| // when the pointer is casted to some of the exception object base classes (e.g. when virtual |
| // inheritance is used). When a pointer is thrown this method should return the thrown pointer |
| // itself. |
| this.get_exception_ptr = function() { |
| // Work around a fastcomp bug, this code is still included for some reason in a build without |
| // exceptions support. |
| var isPointer = ___cxa_is_pointer_type(this.get_type()); |
| if (isPointer) { |
| return {{{ makeGetValue('this.excPtr', '0', '*') }}}; |
| } |
| var adjusted = this.get_adjusted_ptr(); |
| if (adjusted !== 0) return adjusted; |
| return this.excPtr; |
| }; |
| }, |
| |
| $exception_addRef: function (info) { |
| #if EXCEPTION_DEBUG |
| dbg('exception_addRef ' + ptrToString(info.excPtr)); |
| #endif |
| info.add_ref(); |
| }, |
| |
| $exception_decRef__deps: ['__cxa_free_exception' |
| #if EXCEPTION_DEBUG |
| , '$exceptionLast', '$exceptionCaught' |
| #endif |
| ], |
| $exception_decRef: function(info) { |
| #if EXCEPTION_DEBUG |
| dbg('exception_decRef ' + ptrToString(info.excPtr)); |
| #endif |
| // A rethrown exception can reach refcount 0; it must not be discarded |
| // Its next handler will clear the rethrown flag and addRef it, prior to |
| // final decRef and destruction here |
| if (info.release_ref() && !info.get_rethrown()) { |
| var destructor = info.get_destructor(); |
| if (destructor) { |
| // In Wasm, destructors return 'this' as in ARM |
| {{{ makeDynCall('pp', 'destructor') }}}(info.excPtr); |
| } |
| ___cxa_free_exception(info.excPtr); |
| #if EXCEPTION_DEBUG |
| dbg('decref freeing exception ' + [ptrToString(info.excPtr), exceptionLast, 'stack', exceptionCaught]); |
| #endif |
| } |
| }, |
| |
| __cxa_increment_exception_refcount__deps: ['$exception_addRef', '$ExceptionInfo'], |
| __cxa_increment_exception_refcount__sig: 'vp', |
| __cxa_increment_exception_refcount: function(ptr) { |
| if (!ptr) return; |
| exception_addRef(new ExceptionInfo(ptr)); |
| }, |
| |
| __cxa_decrement_exception_refcount__deps: ['$exception_decRef', '$ExceptionInfo'], |
| __cxa_decrement_exception_refcount__sig: 'vp', |
| __cxa_decrement_exception_refcount: function(ptr) { |
| if (!ptr) return; |
| exception_decRef(new ExceptionInfo(ptr)); |
| }, |
| |
| // Here, we throw an exception after recording a couple of values that we need to remember |
| // We also remember that it was the last exception thrown as we need to know that later. |
| __cxa_throw__sig: 'vppp', |
| __cxa_throw__deps: ['$ExceptionInfo', '$exceptionLast', '$uncaughtExceptionCount'], |
| __cxa_throw: function(ptr, type, destructor) { |
| #if EXCEPTION_DEBUG |
| dbg('__cxa_throw: ' + [ptrToString(ptr), type, ptrToString(destructor)]); |
| #endif |
| var info = new ExceptionInfo(ptr); |
| // Initialize ExceptionInfo content after it was allocated in __cxa_allocate_exception. |
| info.init(type, destructor); |
| exceptionLast = ptr; |
| uncaughtExceptionCount++; |
| {{{ makeThrow('ptr') }}} |
| }, |
| |
| // This exception will be caught twice, but while begin_catch runs twice, |
| // we early-exit from end_catch when the exception has been rethrown, so |
| // pop that here from the caught exceptions. |
| __cxa_rethrow__deps: ['$exceptionCaught', '$exceptionLast', '$uncaughtExceptionCount'], |
| __cxa_rethrow__sig: 'v', |
| __cxa_rethrow: function() { |
| var info = exceptionCaught.pop(); |
| if (!info) { |
| abort('no exception to throw'); |
| } |
| var ptr = info.excPtr; |
| if (!info.get_rethrown()) { |
| // Only pop if the corresponding push was through rethrow_primary_exception |
| exceptionCaught.push(info); |
| info.set_rethrown(true); |
| info.set_caught(false); |
| uncaughtExceptionCount++; |
| } |
| #if EXCEPTION_DEBUG |
| dbg('__cxa_rethrow, popped ' + |
| [ptrToString(ptr), exceptionLast, 'stack', exceptionCaught]); |
| #endif |
| exceptionLast = ptr; |
| {{{ makeThrow('ptr') }}} |
| }, |
| |
| llvm_eh_typeid_for__sig: 'ip', |
| llvm_eh_typeid_for: function(type) { |
| return type; |
| }, |
| |
| __cxa_begin_catch__deps: ['$exceptionCaught', '$exception_addRef', '$uncaughtExceptionCount'], |
| __cxa_begin_catch__sig: 'pp', |
| __cxa_begin_catch: function(ptr) { |
| var info = new ExceptionInfo(ptr); |
| if (!info.get_caught()) { |
| info.set_caught(true); |
| uncaughtExceptionCount--; |
| } |
| info.set_rethrown(false); |
| exceptionCaught.push(info); |
| #if EXCEPTION_DEBUG |
| dbg('__cxa_begin_catch ' + [ptrToString(ptr), 'stack', exceptionCaught]); |
| #endif |
| exception_addRef(info); |
| return info.get_exception_ptr(); |
| }, |
| |
| // We're done with a catch. Now, we can run the destructor if there is one |
| // and free the exception. Note that if the dynCall on the destructor fails |
| // due to calling apply on undefined, that means that the destructor is |
| // an invalid index into the FUNCTION_TABLE, so something has gone wrong. |
| __cxa_end_catch__deps: ['$exceptionCaught', '$exceptionLast', '$exception_decRef'], |
| __cxa_end_catch__sig: 'v', |
| __cxa_end_catch: function() { |
| // Clear state flag. |
| _setThrew(0); |
| #if ASSERTIONS |
| assert(exceptionCaught.length > 0); |
| #endif |
| // Call destructor if one is registered then clear it. |
| var info = exceptionCaught.pop(); |
| |
| #if EXCEPTION_DEBUG |
| dbg('__cxa_end_catch popped ' + [info, exceptionLast, 'stack', exceptionCaught]); |
| #endif |
| exception_decRef(info); |
| exceptionLast = 0; // XXX in decRef? |
| }, |
| |
| __cxa_get_exception_ptr__deps: ['$ExceptionInfo'], |
| __cxa_get_exception_ptr__sig: 'pp', |
| __cxa_get_exception_ptr: function(ptr) { |
| #if EXCEPTION_DEBUG |
| dbg('__cxa_get_exception_ptr ' + ptrToString(ptr)); |
| #endif |
| return new ExceptionInfo(ptr).get_exception_ptr(); |
| }, |
| |
| __cxa_uncaught_exceptions__deps: ['$uncaughtExceptionCount'], |
| __cxa_uncaught_exceptions: function() { |
| return uncaughtExceptionCount; |
| }, |
| |
| __cxa_call_unexpected: function(exception) { |
| err('Unexpected exception thrown, this is not properly supported - aborting'); |
| #if !MINIMAL_RUNTIME |
| ABORT = true; |
| #endif |
| throw exception; |
| }, |
| |
| __cxa_current_primary_exception__deps: ['$exceptionCaught', '$exception_addRef'], |
| __cxa_current_primary_exception: function() { |
| if (!exceptionCaught.length) { |
| return 0; |
| } |
| var info = exceptionCaught[exceptionCaught.length - 1]; |
| exception_addRef(info); |
| return info.excPtr; |
| }, |
| |
| __cxa_rethrow_primary_exception__deps: ['$ExceptionInfo', '$exceptionCaught', '__cxa_rethrow'], |
| __cxa_rethrow_primary_exception: function(ptr) { |
| if (!ptr) return; |
| var info = new ExceptionInfo(ptr); |
| exceptionCaught.push(info); |
| info.set_rethrown(true); |
| ___cxa_rethrow(); |
| }, |
| |
| // Finds a suitable catch clause for when an exception is thrown. |
| // In normal compilers, this functionality is handled by the C++ |
| // 'personality' routine. This is passed a fairly complex structure |
| // relating to the context of the exception and makes judgements |
| // about how to handle it. Some of it is about matching a suitable |
| // catch clause, and some of it is about unwinding. We already handle |
| // unwinding using 'if' blocks around each function, so the remaining |
| // functionality boils down to picking a suitable 'catch' block. |
| // We'll do that here, instead, to keep things simpler. |
| __cxa_find_matching_catch__deps: ['$exceptionLast', '$ExceptionInfo', '__resumeException', '__cxa_can_catch', 'setTempRet0'], |
| //__cxa_find_matching_catch__sig: 'p', |
| __cxa_find_matching_catch: function() { |
| var thrown = exceptionLast; |
| if (!thrown) { |
| // just pass through the null ptr |
| setTempRet0(0); |
| return 0; |
| } |
| var info = new ExceptionInfo(thrown); |
| info.set_adjusted_ptr(thrown); |
| var thrownType = info.get_type(); |
| if (!thrownType) { |
| // just pass through the thrown ptr |
| setTempRet0(0); |
| return thrown; |
| } |
| |
| // can_catch receives a **, add indirection |
| #if EXCEPTION_DEBUG |
| dbg("__cxa_find_matching_catch on " + ptrToString(thrown)); |
| #endif |
| // The different catch blocks are denoted by different types. |
| // Due to inheritance, those types may not precisely match the |
| // type of the thrown object. Find one which matches, and |
| // return the type of the catch block which should be called. |
| for (var i = 0; i < arguments.length; i++) { |
| var caughtType = arguments[i]; |
| if (caughtType === 0 || caughtType === thrownType) { |
| // Catch all clause matched or exactly the same type is caught |
| break; |
| } |
| var adjusted_ptr_addr = info.ptr + {{{ C_STRUCTS.__cxa_exception.adjustedPtr }}}; |
| if (___cxa_can_catch(caughtType, thrownType, adjusted_ptr_addr)) { |
| #if EXCEPTION_DEBUG |
| dbg(" __cxa_find_matching_catch found " + [ptrToString(info.get_adjusted_ptr()), caughtType]); |
| #endif |
| setTempRet0(caughtType); |
| return thrown; |
| } |
| } |
| setTempRet0(thrownType); |
| return thrown; |
| }, |
| |
| __resumeException__deps: ['$exceptionLast'], |
| __resumeException__sig: 'vp', |
| __resumeException: function(ptr) { |
| #if EXCEPTION_DEBUG |
| dbg("__resumeException " + [ptrToString(ptr), exceptionLast]); |
| #endif |
| if (!exceptionLast) { exceptionLast = ptr; } |
| {{{ makeThrow('ptr') }}} |
| }, |
| |
| #endif |
| #if WASM_EXCEPTIONS || !DISABLE_EXCEPTION_CATCHING |
| $getExceptionMessageCommon__deps: ['__get_exception_message', 'free', '$withStackSave'], |
| $getExceptionMessageCommon: function(ptr) { |
| return withStackSave(function() { |
| var type_addr_addr = stackAlloc({{{ POINTER_SIZE }}}); |
| var message_addr_addr = stackAlloc({{{ POINTER_SIZE }}}); |
| ___get_exception_message({{{ to64('ptr') }}}, {{{ to64('type_addr_addr') }}}, {{{ to64('message_addr_addr') }}}); |
| var type_addr = {{{ makeGetValue('type_addr_addr', 0, '*') }}}; |
| var message_addr = {{{ makeGetValue('message_addr_addr', 0, '*') }}}; |
| var type = UTF8ToString(type_addr); |
| _free(type_addr); |
| var message; |
| if (message_addr) { |
| message = UTF8ToString(message_addr); |
| _free(message_addr); |
| } |
| return [type, message]; |
| }); |
| }, |
| #endif |
| #if WASM_EXCEPTIONS |
| $getCppExceptionTag: function() { |
| // In static linking, tags are defined within the wasm module and are |
| // exported, whereas in dynamic linking, tags are defined in library.js in |
| // JS code and wasm modules import them. |
| #if RELOCATABLE |
| return ___cpp_exception; // defined in library.js |
| #else |
| return Module['asm']['__cpp_exception']; |
| #endif |
| }, |
| |
| #if EXCEPTION_STACK_TRACES |
| // Throw a WebAssembly.Exception object with the C++ tag with a stack trace |
| // embedded. WebAssembly.Exception is a JS object representing a Wasm |
| // exception, provided by Wasm JS API: |
| // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/Exception |
| // In release builds, this function is not needed and the native |
| // _Unwind_RaiseException in libunwind is used instead. |
| __throw_exception_with_stack_trace__deps: ['$getCppExceptionTag', '$getExceptionMessage'], |
| __throw_exception_with_stack_trace: function(ex) { |
| var e = new WebAssembly.Exception(getCppExceptionTag(), [ex], {traceStack: true}); |
| e.message = getExceptionMessage(e); |
| // The generated stack trace will be in the form of: |
| // |
| // Error |
| // at ___throw_exception_with_stack_trace(test.js:1139:13) |
| // at __cxa_throw (wasm://wasm/009a7c9a:wasm-function[1551]:0x24367) |
| // ... |
| // |
| // Remove this JS function name, which is in the second line, from the stack |
| // trace. |
| var arr = e.stack.split('\n'); |
| arr.splice(1,1); |
| e.stack = arr.join('\n'); |
| throw e; |
| }, |
| #endif |
| |
| // Given an WebAssembly.Exception object, returns the actual user-thrown |
| // C++ object address in the Wasm memory. |
| $getCppExceptionThrownObjectFromWebAssemblyException__deps: ['$getCppExceptionTag', '__thrown_object_from_unwind_exception'], |
| $getCppExceptionThrownObjectFromWebAssemblyException: function(ex) { |
| // In Wasm EH, the value extracted from WebAssembly.Exception is a pointer |
| // to the unwind header. Convert it to the actual thrown value. |
| var unwind_header = ex.getArg(getCppExceptionTag(), 0); |
| return ___thrown_object_from_unwind_exception(unwind_header); |
| }, |
| |
| $incrementExceptionRefcount__deps: ['__cxa_increment_exception_refcount', '$getCppExceptionThrownObjectFromWebAssemblyException'], |
| $incrementExceptionRefcount: function(ex) { |
| var ptr = getCppExceptionThrownObjectFromWebAssemblyException(ex); |
| ___cxa_increment_exception_refcount(ptr); |
| }, |
| |
| $decrementExceptionRefcount__deps: ['__cxa_decrement_exception_refcount', '$getCppExceptionThrownObjectFromWebAssemblyException'], |
| $decrementExceptionRefcount: function(ex) { |
| var ptr = getCppExceptionThrownObjectFromWebAssemblyException(ex); |
| ___cxa_decrement_exception_refcount(ptr); |
| }, |
| |
| $getExceptionMessage__deps: ['$getCppExceptionThrownObjectFromWebAssemblyException', '$getExceptionMessageCommon'], |
| $getExceptionMessage: function(ex) { |
| var ptr = getCppExceptionThrownObjectFromWebAssemblyException(ex); |
| return getExceptionMessageCommon(ptr); |
| }, |
| |
| #elif !DISABLE_EXCEPTION_CATCHING |
| $incrementExceptionRefcount__deps: ['__cxa_increment_exception_refcount'], |
| $incrementExceptionRefcount: function(ptr) { |
| ___cxa_increment_exception_refcount(ptr); |
| }, |
| |
| $decrementExceptionRefcount__deps: ['__cxa_decrement_exception_refcount'], |
| $decrementExceptionRefcount: function(ptr) { |
| ___cxa_decrement_exception_refcount(ptr); |
| }, |
| $getExceptionMessage__deps: ['$getExceptionMessageCommon'], |
| $getExceptionMessage: function(ptr) { |
| return getExceptionMessageCommon(ptr); |
| }, |
| |
| |
| #endif |
| }; |
| |
| // In LLVM, exceptions generate a set of functions of form |
| // __cxa_find_matching_catch_1(), __cxa_find_matching_catch_2(), etc. where the |
| // number specifies the number of arguments. In Emscripten, route all these to |
| // a single function '__cxa_find_matching_catch' that variadically processes all |
| // of these functions using JS 'arguments' object. |
| addCxaCatch = function(n) { |
| LibraryManager.library['__cxa_find_matching_catch_' + n] = '__cxa_find_matching_catch'; |
| }; |
| |
| mergeInto(LibraryManager.library, LibraryExceptions); |