summaryrefslogtreecommitdiffstats
path: root/libcxxabi/src/cxa_personality.cpp
diff options
context:
space:
mode:
authorLogan Chien <tzuhsiang.chien@gmail.com>2015-01-22 13:28:39 +0000
committerLogan Chien <tzuhsiang.chien@gmail.com>2015-01-22 13:28:39 +0000
commita713fce5399276459d7c5881619b5349739a10c0 (patch)
tree11fbfd98b39647240a1dc9c23a3d872683acb24c /libcxxabi/src/cxa_personality.cpp
parent4947eb6e56934a23a7c6daebddb0f240850cb3eb (diff)
downloadbcm5719-llvm-a713fce5399276459d7c5881619b5349739a10c0.tar.gz
bcm5719-llvm-a713fce5399276459d7c5881619b5349739a10c0.zip
Fix _Unwind_Backtrace for libc++abi built with libgcc.
Implement an undocumented _US_FORCE_UNWIND flag for force unwinding. llvm-svn: 226820
Diffstat (limited to 'libcxxabi/src/cxa_personality.cpp')
-rw-r--r--libcxxabi/src/cxa_personality.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/libcxxabi/src/cxa_personality.cpp b/libcxxabi/src/cxa_personality.cpp
index a67fb5c1ca7..3385ea31947 100644
--- a/libcxxabi/src/cxa_personality.cpp
+++ b/libcxxabi/src/cxa_personality.cpp
@@ -1101,9 +1101,16 @@ __gxx_personality_v0(_Unwind_State state,
_Unwind_SetGR(context, REG_UCB, reinterpret_cast<uint32_t>(unwind_exception));
#endif
+ // Check the undocumented force unwinding behavior
+ bool is_force_unwinding = state & _US_FORCE_UNWIND;
+ state &= ~_US_FORCE_UNWIND;
+
scan_results results;
switch (state) {
case _US_VIRTUAL_UNWIND_FRAME:
+ if (is_force_unwinding)
+ return continue_unwind(unwind_exception, context);
+
// Phase 1 search: All we're looking for in phase 1 is a handler that halts unwinding
scan_eh_tab(results, _UA_SEARCH_PHASE, native_exception, unwind_exception, context);
if (results.reason == _URC_HANDLER_FOUND)
@@ -1119,6 +1126,11 @@ __gxx_personality_v0(_Unwind_State state,
return results.reason;
case _US_UNWIND_FRAME_STARTING:
+ // TODO: Support force unwinding in the phase 2 search.
+ // NOTE: In order to call the cleanup functions, _Unwind_ForcedUnwind()
+ // will call this personality function with (_US_FORCE_UNWIND |
+ // _US_UNWIND_FRAME_STARTING).
+
// Phase 2 search
if (unwind_exception->barrier_cache.sp == _Unwind_GetGR(context, REG_SP))
{
OpenPOWER on IntegriCloud