1 // -*- C++ -*- The GNU C++ exception personality routine.
2 // Copyright (C) 2001-2014 Free Software Foundation, Inc.
4 // This file is part of GCC.
6 // GCC is free software; you can redistribute it and/or modify
7 // it under the terms of the GNU General Public License as published by
8 // the Free Software Foundation; either version 3, or (at your option)
11 // GCC is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // Under Section 7 of GPL version 3, you are granted additional
17 // permissions described in the GCC Runtime Library Exception, version
18 // 3.1, as published by the Free Software Foundation.
20 // You should have received a copy of the GNU General Public License and
21 // a copy of the GCC Runtime Library Exception along with this program;
22 // see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
23 // <http://www.gnu.org/licenses/>.
25 #include <bits/c++config.h>
27 #include <bits/exception_defines.h>
29 #include "unwind-cxx.h"
32 using namespace __cxxabiv1
;
34 #include "unwind-pe.h"
37 struct lsda_header_info
41 _Unwind_Ptr ttype_base
;
42 const unsigned char *TType
;
43 const unsigned char *action_table
;
44 unsigned char ttype_encoding
;
45 unsigned char call_site_encoding
;
48 static const unsigned char *
49 parse_lsda_header (_Unwind_Context
*context
, const unsigned char *p
,
50 lsda_header_info
*info
)
53 unsigned char lpstart_encoding
;
55 info
->Start
= (context
? _Unwind_GetRegionStart (context
) : 0);
57 // Find @LPStart, the base to which landing pad offsets are relative.
58 lpstart_encoding
= *p
++;
59 if (lpstart_encoding
!= DW_EH_PE_omit
)
60 p
= read_encoded_value (context
, lpstart_encoding
, p
, &info
->LPStart
);
62 info
->LPStart
= info
->Start
;
64 // Find @TType, the base of the handler and exception spec type data.
65 info
->ttype_encoding
= *p
++;
66 if (info
->ttype_encoding
!= DW_EH_PE_omit
)
68 #if _GLIBCXX_OVERRIDE_TTYPE_ENCODING
69 /* Older ARM EABI toolchains set this value incorrectly, so use a
70 hardcoded OS-specific format. */
71 info
->ttype_encoding
= _GLIBCXX_OVERRIDE_TTYPE_ENCODING
;
73 p
= read_uleb128 (p
, &tmp
);
74 info
->TType
= p
+ tmp
;
79 // The encoding and length of the call-site table; the action table
80 // immediately follows.
81 info
->call_site_encoding
= *p
++;
82 p
= read_uleb128 (p
, &tmp
);
83 info
->action_table
= p
+ tmp
;
88 // Return an element from a type table.
90 static const std::type_info
*
91 get_ttype_entry (lsda_header_info
*info
, _uleb128_t i
)
95 i
*= size_of_encoded_value (info
->ttype_encoding
);
96 read_encoded_value_with_base (info
->ttype_encoding
, info
->ttype_base
,
97 info
->TType
- i
, &ptr
);
99 return reinterpret_cast<const std::type_info
*>(ptr
);
102 #ifdef __ARM_EABI_UNWINDER__
104 // The ABI provides a routine for matching exception object types.
105 typedef _Unwind_Control_Block _throw_typet
;
106 #define get_adjusted_ptr(catch_type, throw_type, thrown_ptr_p) \
107 (__cxa_type_match (throw_type, catch_type, false, thrown_ptr_p) \
110 // Return true if THROW_TYPE matches one if the filter types.
113 check_exception_spec(lsda_header_info
* info
, _throw_typet
* throw_type
,
114 void* thrown_ptr
, _sleb128_t filter_value
)
116 const _uleb128_t
* e
= ((const _uleb128_t
*) info
->TType
)
121 const std::type_info
* catch_type
;
126 // Zero signals the end of the list. If we've not found
127 // a match by now, then we've failed the specification.
131 tmp
= _Unwind_decode_typeinfo_ptr(info
->ttype_base
, (_Unwind_Word
) e
);
133 // Match a ttype entry.
134 catch_type
= reinterpret_cast<const std::type_info
*>(tmp
);
136 // ??? There is currently no way to ask the RTTI code about the
137 // relationship between two types without reference to a specific
138 // object. There should be; then we wouldn't need to mess with
140 if (get_adjusted_ptr(catch_type
, throw_type
, &thrown_ptr
))
143 // Advance to the next entry.
149 // Save stage1 handler information in the exception object
152 save_caught_exception(struct _Unwind_Exception
* ue_header
,
153 struct _Unwind_Context
* context
,
155 int handler_switch_value
,
156 const unsigned char* language_specific_data
,
157 _Unwind_Ptr landing_pad
,
158 const unsigned char* action_record
159 __attribute__((__unused__
)))
161 ue_header
->barrier_cache
.sp
= _Unwind_GetGR(context
, UNWIND_STACK_REG
);
162 ue_header
->barrier_cache
.bitpattern
[0] = (_uw
) thrown_ptr
;
163 ue_header
->barrier_cache
.bitpattern
[1]
164 = (_uw
) handler_switch_value
;
165 ue_header
->barrier_cache
.bitpattern
[2]
166 = (_uw
) language_specific_data
;
167 ue_header
->barrier_cache
.bitpattern
[3] = (_uw
) landing_pad
;
171 // Restore the catch handler data saved during phase1.
174 restore_caught_exception(struct _Unwind_Exception
* ue_header
,
175 int& handler_switch_value
,
176 const unsigned char*& language_specific_data
,
177 _Unwind_Ptr
& landing_pad
)
179 handler_switch_value
= (int) ue_header
->barrier_cache
.bitpattern
[1];
180 language_specific_data
=
181 (const unsigned char*) ue_header
->barrier_cache
.bitpattern
[2];
182 landing_pad
= (_Unwind_Ptr
) ue_header
->barrier_cache
.bitpattern
[3];
185 #define CONTINUE_UNWINDING \
188 if (__gnu_unwind_frame(ue_header, context) != _URC_OK) \
189 return _URC_FAILURE; \
190 return _URC_CONTINUE_UNWIND; \
194 // Return true if the filter spec is empty, ie throw().
197 empty_exception_spec (lsda_header_info
*info
, _Unwind_Sword filter_value
)
199 const _Unwind_Word
* e
= ((const _Unwind_Word
*) info
->TType
)
206 typedef const std::type_info _throw_typet
;
209 // Given the thrown type THROW_TYPE, pointer to a variable containing a
210 // pointer to the exception object THROWN_PTR_P and a type CATCH_TYPE to
211 // compare against, return whether or not there is a match and if so,
212 // update *THROWN_PTR_P.
215 get_adjusted_ptr (const std::type_info
*catch_type
,
216 const std::type_info
*throw_type
,
219 void *thrown_ptr
= *thrown_ptr_p
;
221 // Pointer types need to adjust the actual pointer, not
222 // the pointer to pointer that is the exception object.
223 // This also has the effect of passing pointer types
224 // "by value" through the __cxa_begin_catch return value.
225 if (throw_type
->__is_pointer_p ())
226 thrown_ptr
= *(void **) thrown_ptr
;
228 if (catch_type
->__do_catch (throw_type
, &thrown_ptr
, 1))
230 *thrown_ptr_p
= thrown_ptr
;
237 // Return true if THROW_TYPE matches one if the filter types.
240 check_exception_spec(lsda_header_info
* info
, _throw_typet
* throw_type
,
241 void* thrown_ptr
, _sleb128_t filter_value
)
243 const unsigned char *e
= info
->TType
- filter_value
- 1;
247 const std::type_info
*catch_type
;
250 e
= read_uleb128 (e
, &tmp
);
252 // Zero signals the end of the list. If we've not found
253 // a match by now, then we've failed the specification.
257 // Match a ttype entry.
258 catch_type
= get_ttype_entry (info
, tmp
);
260 // ??? There is currently no way to ask the RTTI code about the
261 // relationship between two types without reference to a specific
262 // object. There should be; then we wouldn't need to mess with
264 if (get_adjusted_ptr (catch_type
, throw_type
, &thrown_ptr
))
270 // Save stage1 handler information in the exception object
273 save_caught_exception(struct _Unwind_Exception
* ue_header
,
274 struct _Unwind_Context
* context
275 __attribute__((__unused__
)),
277 int handler_switch_value
,
278 const unsigned char* language_specific_data
,
279 _Unwind_Ptr landing_pad
__attribute__((__unused__
)),
280 const unsigned char* action_record
)
282 __cxa_exception
* xh
= __get_exception_header_from_ue(ue_header
);
284 xh
->handlerSwitchValue
= handler_switch_value
;
285 xh
->actionRecord
= action_record
;
286 xh
->languageSpecificData
= language_specific_data
;
287 xh
->adjustedPtr
= thrown_ptr
;
289 // ??? Completely unknown what this field is supposed to be for.
290 // ??? Need to cache TType encoding base for call_unexpected.
291 xh
->catchTemp
= landing_pad
;
295 // Restore the catch handler information saved during phase1.
298 restore_caught_exception(struct _Unwind_Exception
* ue_header
,
299 int& handler_switch_value
,
300 const unsigned char*& language_specific_data
,
301 _Unwind_Ptr
& landing_pad
)
303 __cxa_exception
* xh
= __get_exception_header_from_ue(ue_header
);
304 handler_switch_value
= xh
->handlerSwitchValue
;
305 language_specific_data
= xh
->languageSpecificData
;
306 landing_pad
= (_Unwind_Ptr
) xh
->catchTemp
;
309 #define CONTINUE_UNWINDING return _URC_CONTINUE_UNWIND
311 // Return true if the filter spec is empty, ie throw().
314 empty_exception_spec (lsda_header_info
*info
, _Unwind_Sword filter_value
)
316 const unsigned char *e
= info
->TType
- filter_value
- 1;
319 e
= read_uleb128 (e
, &tmp
);
323 #endif // !__ARM_EABI_UNWINDER__
328 // Using a different personality function name causes link failures
329 // when trying to mix code using different exception handling models.
330 #ifdef _GLIBCXX_SJLJ_EXCEPTIONS
331 #define PERSONALITY_FUNCTION __gxx_personality_sj0
332 #define __builtin_eh_return_data_regno(x) x
333 #elif defined(__SEH__) && !defined (_GLIBCXX_SJLJ_EXCEPTIONS)
334 #define PERSONALITY_FUNCTION __gxx_personality_imp
336 #define PERSONALITY_FUNCTION __gxx_personality_v0
339 #if defined (__SEH__) && !defined (_GLIBCXX_SJLJ_EXCEPTIONS)
345 #ifdef __ARM_EABI_UNWINDER__
346 PERSONALITY_FUNCTION (_Unwind_State state
,
347 struct _Unwind_Exception
* ue_header
,
348 struct _Unwind_Context
* context
)
350 PERSONALITY_FUNCTION (int version
,
351 _Unwind_Action actions
,
352 _Unwind_Exception_Class exception_class
,
353 struct _Unwind_Exception
*ue_header
,
354 struct _Unwind_Context
*context
)
357 enum found_handler_type
365 lsda_header_info info
;
366 const unsigned char *language_specific_data
;
367 const unsigned char *action_record
;
368 const unsigned char *p
;
369 _Unwind_Ptr landing_pad
, ip
;
370 int handler_switch_value
;
371 void* thrown_ptr
= 0;
372 bool foreign_exception
;
373 int ip_before_insn
= 0;
375 #ifdef __ARM_EABI_UNWINDER__
376 _Unwind_Action actions
;
378 switch (state
& _US_ACTION_MASK
)
380 case _US_VIRTUAL_UNWIND_FRAME
:
381 // If the unwind state pattern is
382 // _US_VIRTUAL_UNWIND_FRAME | _US_FORCE_UNWIND
383 // then we don't need to search for any handler as it is not a real
384 // exception. Just unwind the stack.
385 if (state
& _US_FORCE_UNWIND
)
387 actions
= _UA_SEARCH_PHASE
;
390 case _US_UNWIND_FRAME_STARTING
:
391 actions
= _UA_CLEANUP_PHASE
;
392 if (!(state
& _US_FORCE_UNWIND
)
393 && ue_header
->barrier_cache
.sp
== _Unwind_GetGR(context
,
395 actions
|= _UA_HANDLER_FRAME
;
398 case _US_UNWIND_FRAME_RESUME
:
405 actions
|= state
& _US_FORCE_UNWIND
;
407 // We don't know which runtime we're working with, so can't check this.
408 // However the ABI routines hide this from us, and we don't actually need
410 foreign_exception
= false;
412 // The dwarf unwinder assumes the context structure holds things like the
413 // function and LSDA pointers. The ARM implementation caches these in
414 // the exception header (UCB). To avoid rewriting everything we make a
415 // virtual scratch register point at the UCB.
416 ip
= (_Unwind_Ptr
) ue_header
;
417 _Unwind_SetGR(context
, UNWIND_POINTER_REG
, ip
);
419 __cxa_exception
* xh
= __get_exception_header_from_ue(ue_header
);
421 // Interface version check.
423 return _URC_FATAL_PHASE1_ERROR
;
424 foreign_exception
= !__is_gxx_exception_class(exception_class
);
427 // Shortcut for phase 2 found handler for domestic exception.
428 if (actions
== (_UA_CLEANUP_PHASE
| _UA_HANDLER_FRAME
)
429 && !foreign_exception
)
431 restore_caught_exception(ue_header
, handler_switch_value
,
432 language_specific_data
, landing_pad
);
433 found_type
= (landing_pad
== 0 ? found_terminate
: found_handler
);
434 goto install_context
;
437 language_specific_data
= (const unsigned char *)
438 _Unwind_GetLanguageSpecificData (context
);
440 // If no LSDA, then there are no handlers or cleanups.
441 if (! language_specific_data
)
444 // Parse the LSDA header.
445 p
= parse_lsda_header (context
, language_specific_data
, &info
);
446 info
.ttype_base
= base_of_encoded_value (info
.ttype_encoding
, context
);
447 #ifdef _GLIBCXX_HAVE_GETIPINFO
448 ip
= _Unwind_GetIPInfo (context
, &ip_before_insn
);
450 ip
= _Unwind_GetIP (context
);
452 if (! ip_before_insn
)
456 handler_switch_value
= 0;
458 #ifdef _GLIBCXX_SJLJ_EXCEPTIONS
459 // The given "IP" is an index into the call-site table, with two
460 // exceptions -- -1 means no-action, and 0 means terminate. But
461 // since we're using uleb128 values, we've not got random access
464 return _URC_CONTINUE_UNWIND
;
467 // Fall through to set found_terminate.
471 _uleb128_t cs_lp
, cs_action
;
474 p
= read_uleb128 (p
, &cs_lp
);
475 p
= read_uleb128 (p
, &cs_action
);
479 // Can never have null landing pad for sjlj -- that would have
480 // been indicated by a -1 call site index.
481 landing_pad
= cs_lp
+ 1;
483 action_record
= info
.action_table
+ cs_action
- 1;
484 goto found_something
;
487 // Search the call-site table for the action associated with this IP.
488 while (p
< info
.action_table
)
490 _Unwind_Ptr cs_start
, cs_len
, cs_lp
;
491 _uleb128_t cs_action
;
493 // Note that all call-site encodings are "absolute" displacements.
494 p
= read_encoded_value (0, info
.call_site_encoding
, p
, &cs_start
);
495 p
= read_encoded_value (0, info
.call_site_encoding
, p
, &cs_len
);
496 p
= read_encoded_value (0, info
.call_site_encoding
, p
, &cs_lp
);
497 p
= read_uleb128 (p
, &cs_action
);
499 // The table is sorted, so if we've passed the ip, stop.
500 if (ip
< info
.Start
+ cs_start
)
501 p
= info
.action_table
;
502 else if (ip
< info
.Start
+ cs_start
+ cs_len
)
505 landing_pad
= info
.LPStart
+ cs_lp
;
507 action_record
= info
.action_table
+ cs_action
- 1;
508 goto found_something
;
511 #endif // _GLIBCXX_SJLJ_EXCEPTIONS
513 // If ip is not present in the table, call terminate. This is for
514 // a destructor inside a cleanup, or a library routine the compiler
515 // was not expecting to throw.
516 found_type
= found_terminate
;
520 if (landing_pad
== 0)
522 // If ip is present, and has a null landing pad, there are
523 // no cleanups or handlers to be run.
524 found_type
= found_nothing
;
526 else if (action_record
== 0)
528 // If ip is present, has a non-null landing pad, and a null
529 // action table offset, then there are only cleanups present.
530 // Cleanups use a zero switch value, as set above.
531 found_type
= found_cleanup
;
535 // Otherwise we have a catch handler or exception specification.
537 _sleb128_t ar_filter
, ar_disp
;
538 const std::type_info
* catch_type
;
539 _throw_typet
* throw_type
;
540 bool saw_cleanup
= false;
541 bool saw_handler
= false;
543 #ifdef __ARM_EABI_UNWINDER__
544 // ??? How does this work - more importantly, how does it interact with
545 // dependent exceptions?
546 throw_type
= ue_header
;
547 if (actions
& _UA_FORCE_UNWIND
)
549 __GXX_INIT_FORCED_UNWIND_CLASS(ue_header
->exception_class
);
551 else if (!foreign_exception
)
552 thrown_ptr
= __get_object_from_ue (ue_header
);
555 // During forced unwinding, match a magic exception type.
556 if (actions
& _UA_FORCE_UNWIND
)
558 throw_type
= &typeid(abi::__forced_unwind
);
560 // With a foreign exception class, there's no exception type.
561 // ??? What to do about GNU Java and GNU Ada exceptions?
562 else if (foreign_exception
)
564 throw_type
= &typeid(abi::__foreign_exception
);
569 thrown_ptr
= __get_object_from_ue (ue_header
);
570 throw_type
= __get_exception_header_from_obj
571 (thrown_ptr
)->exceptionType
;
578 p
= read_sleb128 (p
, &ar_filter
);
579 read_sleb128 (p
, &ar_disp
);
583 // Zero filter values are cleanups.
586 else if (ar_filter
> 0)
588 // Positive filter values are handlers.
589 catch_type
= get_ttype_entry (&info
, ar_filter
);
591 // Null catch type is a catch-all handler; we can catch foreign
592 // exceptions with this. Otherwise we must match types.
595 && get_adjusted_ptr (catch_type
, throw_type
,
604 // Negative filter values are exception specifications.
605 // ??? How do foreign exceptions fit in? As far as I can
606 // see we can't match because there's no __cxa_exception
607 // object to stuff bits in for __cxa_call_unexpected to use.
608 // Allow them iff the exception spec is non-empty. I.e.
609 // a throw() specification results in __unexpected.
611 && !(actions
& _UA_FORCE_UNWIND
)
612 && !foreign_exception
)
613 ? ! check_exception_spec (&info
, throw_type
, thrown_ptr
,
615 : empty_exception_spec (&info
, ar_filter
))
624 action_record
= p
+ ar_disp
;
629 handler_switch_value
= ar_filter
;
630 found_type
= found_handler
;
633 found_type
= (saw_cleanup
? found_cleanup
: found_nothing
);
637 if (found_type
== found_nothing
)
640 if (actions
& _UA_SEARCH_PHASE
)
642 if (found_type
== found_cleanup
)
645 // For domestic exceptions, we cache data from phase 1 for phase 2.
646 if (!foreign_exception
)
648 save_caught_exception(ue_header
, context
, thrown_ptr
,
649 handler_switch_value
, language_specific_data
,
650 landing_pad
, action_record
);
652 return _URC_HANDLER_FOUND
;
657 // We can't use any of the cxa routines with foreign exceptions,
658 // because they all expect ue_header to be a struct __cxa_exception.
659 // So in that case, call terminate or unexpected directly.
660 if ((actions
& _UA_FORCE_UNWIND
)
661 || foreign_exception
)
663 if (found_type
== found_terminate
)
665 else if (handler_switch_value
< 0)
668 { std::unexpected (); }
670 { std::terminate (); }
675 if (found_type
== found_terminate
)
676 __cxa_call_terminate(ue_header
);
678 // Cache the TType base value for __cxa_call_unexpected, as we won't
679 // have an _Unwind_Context then.
680 if (handler_switch_value
< 0)
682 parse_lsda_header (context
, language_specific_data
, &info
);
683 info
.ttype_base
= base_of_encoded_value (info
.ttype_encoding
,
686 #ifdef __ARM_EABI_UNWINDER__
687 const _Unwind_Word
* e
;
690 e
= ((const _Unwind_Word
*) info
.TType
) - handler_switch_value
- 1;
691 // Count the number of rtti objects.
697 ue_header
->barrier_cache
.bitpattern
[1] = n
;
699 ue_header
->barrier_cache
.bitpattern
[2] = info
.ttype_base
;
701 ue_header
->barrier_cache
.bitpattern
[3] = 4;
703 ue_header
->barrier_cache
.bitpattern
[4] = (_Unwind_Word
) e
;
705 xh
->catchTemp
= base_of_encoded_value (info
.ttype_encoding
, context
);
710 /* For targets with pointers smaller than the word size, we must extend the
711 pointer, and this extension is target dependent. */
712 _Unwind_SetGR (context
, __builtin_eh_return_data_regno (0),
713 __builtin_extend_pointer (ue_header
));
714 _Unwind_SetGR (context
, __builtin_eh_return_data_regno (1),
715 handler_switch_value
);
716 _Unwind_SetIP (context
, landing_pad
);
717 #ifdef __ARM_EABI_UNWINDER__
718 if (found_type
== found_cleanup
)
719 __cxa_begin_cleanup(ue_header
);
721 return _URC_INSTALL_CONTEXT
;
724 /* The ARM EABI implementation of __cxa_call_unexpected is in a
725 different file so that the personality routine (PR) can be used
726 standalone. The generic routine shared datastructures with the PR
727 so it is most convenient to implement it here. */
728 #ifndef __ARM_EABI_UNWINDER__
730 __cxa_call_unexpected (void *exc_obj_in
)
732 _Unwind_Exception
*exc_obj
733 = reinterpret_cast <_Unwind_Exception
*>(exc_obj_in
);
735 __cxa_begin_catch (exc_obj
);
737 // This function is a handler for our exception argument. If we exit
738 // by throwing a different exception, we'll need the original cleaned up.
739 struct end_catch_protect
741 end_catch_protect() { }
742 ~end_catch_protect() { __cxa_end_catch(); }
743 } end_catch_protect_obj
;
745 lsda_header_info info
;
746 __cxa_exception
*xh
= __get_exception_header_from_ue (exc_obj
);
747 const unsigned char *xh_lsda
;
748 _Unwind_Sword xh_switch_value
;
749 std::terminate_handler xh_terminate_handler
;
751 // If the unexpectedHandler rethrows the exception (e.g. to categorize it),
752 // it will clobber data about the current handler. So copy the data out now.
753 xh_lsda
= xh
->languageSpecificData
;
754 xh_switch_value
= xh
->handlerSwitchValue
;
755 xh_terminate_handler
= xh
->terminateHandler
;
756 info
.ttype_base
= (_Unwind_Ptr
) xh
->catchTemp
;
759 { __unexpected (xh
->unexpectedHandler
); }
762 // Get the exception thrown from unexpected.
764 __cxa_eh_globals
*globals
= __cxa_get_globals_fast ();
765 __cxa_exception
*new_xh
= globals
->caughtExceptions
;
766 void *new_ptr
= __get_object_from_ambiguous_exception (new_xh
);
768 // We don't quite have enough stuff cached; re-parse the LSDA.
769 parse_lsda_header (0, xh_lsda
, &info
);
771 // If this new exception meets the exception spec, allow it.
772 if (check_exception_spec (&info
, __get_exception_header_from_obj
773 (new_ptr
)->exceptionType
,
774 new_ptr
, xh_switch_value
))
775 { __throw_exception_again
; }
777 // If the exception spec allows std::bad_exception, throw that.
778 // We don't have a thrown object to compare against, but since
779 // bad_exception doesn't have virtual bases, that's OK; just pass 0.
780 #if defined(__EXCEPTIONS) && defined(__GXX_RTTI)
781 const std::type_info
&bad_exc
= typeid (std::bad_exception
);
782 if (check_exception_spec (&info
, &bad_exc
, 0, xh_switch_value
))
783 throw std::bad_exception();
787 __terminate (xh_terminate_handler
);
792 #if defined (__SEH__) && !defined (_GLIBCXX_SJLJ_EXCEPTIONS)
794 EXCEPTION_DISPOSITION
795 __gxx_personality_seh0 (PEXCEPTION_RECORD ms_exc
, void *this_frame
,
796 PCONTEXT ms_orig_context
, PDISPATCHER_CONTEXT ms_disp
)
798 return _GCC_specific_handler (ms_exc
, this_frame
, ms_orig_context
,
799 ms_disp
, __gxx_personality_imp
);
803 } // namespace __cxxabiv1