-
Notifications
You must be signed in to change notification settings - Fork 3.5k
[Emscripten-EH] Implement __cxa_throw in terms of _Unwind_RaiseException
#27498
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,57 @@ | ||
| /** | ||
| * @license | ||
| * Copyright 2026 The Emscripten Authors | ||
| * SPDX-License-Identifier: MIT | ||
| */ | ||
|
|
||
| #if WASM_EXCEPTIONS | ||
| #error "Internal error! WASM_EXCEPTIONS should not be enabled when including libunwind.js." | ||
| #endif | ||
|
|
||
| var LibraryUnwind = { | ||
| $uncaughtExceptionCount: '0', | ||
| #if !DISABLE_EXCEPTION_CATCHING | ||
| $exceptionLast: null, | ||
| #endif | ||
|
|
||
| _Unwind_Backtrace__deps: ['$getCallstack'], | ||
| _Unwind_Backtrace: (func, arg) => { | ||
| var trace = getCallstack(); | ||
| var parts = trace.split('\n'); | ||
| for (var i = 0; i < parts.length; i++) { | ||
| var ret = {{{ makeDynCall('iii', 'func') }}}(0, arg); | ||
| if (ret) return; | ||
| } | ||
| }, | ||
|
|
||
| _Unwind_GetIPInfo: (context, ipBefore) => abort('Unwind_GetIPInfo'), | ||
|
|
||
| _Unwind_FindEnclosingFunction: (ip) => 0, // we cannot succeed | ||
|
|
||
| _Unwind_RaiseException__deps: ['$uncaughtExceptionCount', | ||
| #if !DISABLE_EXCEPTION_CATCHING | ||
| '$exceptionLast', | ||
| #endif | ||
| ], | ||
| _Unwind_RaiseException: (ex) => { | ||
| #if !DISABLE_EXCEPTION_CATCHING | ||
| exceptionLast = ex; | ||
| uncaughtExceptionCount++; | ||
| #endif | ||
| {{{ makeThrow('ex') }}} | ||
| }, | ||
|
|
||
| #if !DISABLE_EXCEPTION_CATCHING | ||
| _Unwind_Resume__deps: ['$exceptionLast'], | ||
| #endif | ||
| _Unwind_Resume: (ex) => { | ||
| #if !DISABLE_EXCEPTION_CATCHING | ||
| exceptionLast = ex; | ||
| #endif | ||
| {{{ makeThrow('ex') }}} | ||
| }, | ||
|
|
||
| _Unwind_DeleteException: (ex) => err('TODO: Unwind_DeleteException'), | ||
| }; | ||
|
|
||
| addToLibrary(LibraryUnwind); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In libcxxabi native code (and thus in Wasm EH), managing information like uncaught exception count and last exception is done by libcxxabi, not libunwind. It is true in libcxxabi/libunwind that
__cxa_throwcalls_Unwind_RaiseException, but all exception status managing is done within libcxxabi. Wouldn't it be consistent to manage it withinlibexceptions.jsand leave libunwind simple?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure, we can make it consistent in that way. I'll make a followup PR.