PR c++/28145
[official-gcc.git] / libstdc++-v3 / libsupc++ / eh_personality.cc
blobbbcc0072730074c3c87dd5c51b9c1bddd3c23a05
1 // -*- C++ -*- The GNU C++ exception personality routine.
2 // Copyright (C) 2001, 2002, 2003, 2006 Free Software Foundation, Inc.
3 //
4 // This file is part of GCC.
5 //
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 2, or (at your option)
9 // any later version.
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 // You should have received a copy of the GNU General Public License
17 // along with GCC; see the file COPYING. If not, write to
18 // the Free Software Foundation, 51 Franklin Street, Fifth Floor,
19 // Boston, MA 02110-1301, USA.
21 // As a special exception, you may use this file as part of a free software
22 // library without restriction. Specifically, if other files instantiate
23 // templates or use macros or inline functions from this file, or you compile
24 // this file and link it with other files to produce an executable, this
25 // file does not by itself cause the resulting executable to be covered by
26 // the GNU General Public License. This exception does not however
27 // invalidate any other reasons why the executable file might be covered by
28 // the GNU General Public License.
30 #include <bits/c++config.h>
31 #include <cstdlib>
32 #include <exception_defines.h>
33 #include <cxxabi.h>
34 #include "unwind-cxx.h"
36 using namespace __cxxabiv1;
38 #ifdef __ARM_EABI_UNWINDER__
39 #define NO_SIZE_OF_ENCODED_VALUE
40 #endif
42 #include "unwind-pe.h"
45 struct lsda_header_info
47 _Unwind_Ptr Start;
48 _Unwind_Ptr LPStart;
49 _Unwind_Ptr ttype_base;
50 const unsigned char *TType;
51 const unsigned char *action_table;
52 unsigned char ttype_encoding;
53 unsigned char call_site_encoding;
56 static const unsigned char *
57 parse_lsda_header (_Unwind_Context *context, const unsigned char *p,
58 lsda_header_info *info)
60 _uleb128_t tmp;
61 unsigned char lpstart_encoding;
63 info->Start = (context ? _Unwind_GetRegionStart (context) : 0);
65 // Find @LPStart, the base to which landing pad offsets are relative.
66 lpstart_encoding = *p++;
67 if (lpstart_encoding != DW_EH_PE_omit)
68 p = read_encoded_value (context, lpstart_encoding, p, &info->LPStart);
69 else
70 info->LPStart = info->Start;
72 // Find @TType, the base of the handler and exception spec type data.
73 info->ttype_encoding = *p++;
74 if (info->ttype_encoding != DW_EH_PE_omit)
76 p = read_uleb128 (p, &tmp);
77 info->TType = p + tmp;
79 else
80 info->TType = 0;
82 // The encoding and length of the call-site table; the action table
83 // immediately follows.
84 info->call_site_encoding = *p++;
85 p = read_uleb128 (p, &tmp);
86 info->action_table = p + tmp;
88 return p;
91 #ifdef __ARM_EABI_UNWINDER__
93 // Return an element from a type table.
95 static const std::type_info*
96 get_ttype_entry(lsda_header_info* info, _uleb128_t i)
98 _Unwind_Ptr ptr;
100 ptr = (_Unwind_Ptr) (info->TType - (i * 4));
101 ptr = _Unwind_decode_target2(ptr);
103 return reinterpret_cast<const std::type_info *>(ptr);
106 // The ABI provides a routine for matching exception object types.
107 typedef _Unwind_Control_Block _throw_typet;
108 #define get_adjusted_ptr(catch_type, throw_type, thrown_ptr_p) \
109 (__cxa_type_match (throw_type, catch_type, false, thrown_ptr_p) \
110 != ctm_failed)
112 // Return true if THROW_TYPE matches one if the filter types.
114 static bool
115 check_exception_spec(lsda_header_info* info, _throw_typet* throw_type,
116 void* thrown_ptr, _sleb128_t filter_value)
118 const _uleb128_t* e = ((const _uleb128_t*) info->TType)
119 - filter_value - 1;
121 while (1)
123 const std::type_info* catch_type;
124 _uleb128_t tmp;
126 tmp = *e;
128 // Zero signals the end of the list. If we've not found
129 // a match by now, then we've failed the specification.
130 if (tmp == 0)
131 return false;
133 tmp = _Unwind_decode_target2((_Unwind_Word) e);
135 // Match a ttype entry.
136 catch_type = reinterpret_cast<const std::type_info*>(tmp);
138 // ??? There is currently no way to ask the RTTI code about the
139 // relationship between two types without reference to a specific
140 // object. There should be; then we wouldn't need to mess with
141 // thrown_ptr here.
142 if (get_adjusted_ptr(catch_type, throw_type, &thrown_ptr))
143 return true;
145 // Advance to the next entry.
146 e++;
151 // Save stage1 handler information in the exception object
153 static inline void
154 save_caught_exception(struct _Unwind_Exception* ue_header,
155 struct _Unwind_Context* context,
156 void* thrown_ptr,
157 int handler_switch_value,
158 const unsigned char* language_specific_data,
159 _Unwind_Ptr landing_pad,
160 const unsigned char* action_record
161 __attribute__((__unused__)))
163 ue_header->barrier_cache.sp = _Unwind_GetGR(context, 13);
164 ue_header->barrier_cache.bitpattern[0] = (_uw) thrown_ptr;
165 ue_header->barrier_cache.bitpattern[1]
166 = (_uw) handler_switch_value;
167 ue_header->barrier_cache.bitpattern[2]
168 = (_uw) language_specific_data;
169 ue_header->barrier_cache.bitpattern[3] = (_uw) landing_pad;
173 // Restore the catch handler data saved during phase1.
175 static inline void
176 restore_caught_exception(struct _Unwind_Exception* ue_header,
177 int& handler_switch_value,
178 const unsigned char*& language_specific_data,
179 _Unwind_Ptr& landing_pad)
181 handler_switch_value = (int) ue_header->barrier_cache.bitpattern[1];
182 language_specific_data =
183 (const unsigned char*) ue_header->barrier_cache.bitpattern[2];
184 landing_pad = (_Unwind_Ptr) ue_header->barrier_cache.bitpattern[3];
187 #define CONTINUE_UNWINDING \
188 do \
190 if (__gnu_unwind_frame(ue_header, context) != _URC_OK) \
191 return _URC_FAILURE; \
192 return _URC_CONTINUE_UNWIND; \
194 while (0)
196 // Return true if the filter spec is empty, ie throw().
198 static bool
199 empty_exception_spec (lsda_header_info *info, _Unwind_Sword filter_value)
201 const _Unwind_Word* e = ((const _Unwind_Word*) info->TType)
202 - filter_value - 1;
204 return *e == 0;
207 #else
208 typedef const std::type_info _throw_typet;
211 // Return an element from a type table.
213 static const std::type_info *
214 get_ttype_entry (lsda_header_info *info, _uleb128_t i)
216 _Unwind_Ptr ptr;
218 i *= size_of_encoded_value (info->ttype_encoding);
219 read_encoded_value_with_base (info->ttype_encoding, info->ttype_base,
220 info->TType - i, &ptr);
222 return reinterpret_cast<const std::type_info *>(ptr);
225 // Given the thrown type THROW_TYPE, pointer to a variable containing a
226 // pointer to the exception object THROWN_PTR_P and a type CATCH_TYPE to
227 // compare against, return whether or not there is a match and if so,
228 // update *THROWN_PTR_P.
230 static bool
231 get_adjusted_ptr (const std::type_info *catch_type,
232 const std::type_info *throw_type,
233 void **thrown_ptr_p)
235 void *thrown_ptr = *thrown_ptr_p;
237 // Pointer types need to adjust the actual pointer, not
238 // the pointer to pointer that is the exception object.
239 // This also has the effect of passing pointer types
240 // "by value" through the __cxa_begin_catch return value.
241 if (throw_type->__is_pointer_p ())
242 thrown_ptr = *(void **) thrown_ptr;
244 if (catch_type->__do_catch (throw_type, &thrown_ptr, 1))
246 *thrown_ptr_p = thrown_ptr;
247 return true;
250 return false;
253 // Return true if THROW_TYPE matches one if the filter types.
255 static bool
256 check_exception_spec(lsda_header_info* info, _throw_typet* throw_type,
257 void* thrown_ptr, _sleb128_t filter_value)
259 const unsigned char *e = info->TType - filter_value - 1;
261 while (1)
263 const std::type_info *catch_type;
264 _uleb128_t tmp;
266 e = read_uleb128 (e, &tmp);
268 // Zero signals the end of the list. If we've not found
269 // a match by now, then we've failed the specification.
270 if (tmp == 0)
271 return false;
273 // Match a ttype entry.
274 catch_type = get_ttype_entry (info, tmp);
276 // ??? There is currently no way to ask the RTTI code about the
277 // relationship between two types without reference to a specific
278 // object. There should be; then we wouldn't need to mess with
279 // thrown_ptr here.
280 if (get_adjusted_ptr (catch_type, throw_type, &thrown_ptr))
281 return true;
286 // Save stage1 handler information in the exception object
288 static inline void
289 save_caught_exception(struct _Unwind_Exception* ue_header,
290 struct _Unwind_Context* context
291 __attribute__((__unused__)),
292 void* thrown_ptr,
293 int handler_switch_value,
294 const unsigned char* language_specific_data,
295 _Unwind_Ptr landing_pad __attribute__((__unused__)),
296 const unsigned char* action_record)
298 __cxa_exception* xh = __get_exception_header_from_ue(ue_header);
300 xh->handlerSwitchValue = handler_switch_value;
301 xh->actionRecord = action_record;
302 xh->languageSpecificData = language_specific_data;
303 xh->adjustedPtr = thrown_ptr;
305 // ??? Completely unknown what this field is supposed to be for.
306 // ??? Need to cache TType encoding base for call_unexpected.
307 xh->catchTemp = landing_pad;
311 // Restore the catch handler information saved during phase1.
313 static inline void
314 restore_caught_exception(struct _Unwind_Exception* ue_header,
315 int& handler_switch_value,
316 const unsigned char*& language_specific_data,
317 _Unwind_Ptr& landing_pad)
319 __cxa_exception* xh = __get_exception_header_from_ue(ue_header);
320 handler_switch_value = xh->handlerSwitchValue;
321 language_specific_data = xh->languageSpecificData;
322 landing_pad = (_Unwind_Ptr) xh->catchTemp;
325 #define CONTINUE_UNWINDING return _URC_CONTINUE_UNWIND
327 // Return true if the filter spec is empty, ie throw().
329 static bool
330 empty_exception_spec (lsda_header_info *info, _Unwind_Sword filter_value)
332 const unsigned char *e = info->TType - filter_value - 1;
333 _uleb128_t tmp;
335 e = read_uleb128 (e, &tmp);
336 return tmp == 0;
339 #endif // !__ARM_EABI_UNWINDER__
341 namespace __cxxabiv1
344 // Using a different personality function name causes link failures
345 // when trying to mix code using different exception handling models.
346 #ifdef _GLIBCXX_SJLJ_EXCEPTIONS
347 #define PERSONALITY_FUNCTION __gxx_personality_sj0
348 #define __builtin_eh_return_data_regno(x) x
349 #else
350 #define PERSONALITY_FUNCTION __gxx_personality_v0
351 #endif
353 extern "C" _Unwind_Reason_Code
354 #ifdef __ARM_EABI_UNWINDER__
355 PERSONALITY_FUNCTION (_Unwind_State state,
356 struct _Unwind_Exception* ue_header,
357 struct _Unwind_Context* context)
358 #else
359 PERSONALITY_FUNCTION (int version,
360 _Unwind_Action actions,
361 _Unwind_Exception_Class exception_class,
362 struct _Unwind_Exception *ue_header,
363 struct _Unwind_Context *context)
364 #endif
366 enum found_handler_type
368 found_nothing,
369 found_terminate,
370 found_cleanup,
371 found_handler
372 } found_type;
374 lsda_header_info info;
375 const unsigned char *language_specific_data;
376 const unsigned char *action_record;
377 const unsigned char *p;
378 _Unwind_Ptr landing_pad, ip;
379 int handler_switch_value;
380 void* thrown_ptr = ue_header + 1;
381 bool foreign_exception;
382 int ip_before_insn = 0;
384 #ifdef __ARM_EABI_UNWINDER__
385 _Unwind_Action actions;
387 switch (state & _US_ACTION_MASK)
389 case _US_VIRTUAL_UNWIND_FRAME:
390 actions = _UA_SEARCH_PHASE;
391 break;
393 case _US_UNWIND_FRAME_STARTING:
394 actions = _UA_CLEANUP_PHASE;
395 if (!(state & _US_FORCE_UNWIND)
396 && ue_header->barrier_cache.sp == _Unwind_GetGR(context, 13))
397 actions |= _UA_HANDLER_FRAME;
398 break;
400 case _US_UNWIND_FRAME_RESUME:
401 CONTINUE_UNWINDING;
402 break;
404 default:
405 std::abort();
407 actions |= state & _US_FORCE_UNWIND;
409 // We don't know which runtime we're working with, so can't check this.
410 // However the ABI routines hide this from us, and we don't actually need
411 // to know.
412 foreign_exception = false;
414 // The dwarf unwinder assumes the context structure holds things like the
415 // function and LSDA pointers. The ARM implementation caches these in
416 // the exception header (UCB). To avoid rewriting everything we make the
417 // virtual IP register point at the UCB.
418 ip = (_Unwind_Ptr) ue_header;
419 _Unwind_SetGR(context, 12, ip);
420 #else
421 __cxa_exception* xh = __get_exception_header_from_ue(ue_header);
423 // Interface version check.
424 if (version != 1)
425 return _URC_FATAL_PHASE1_ERROR;
426 foreign_exception = !__is_gxx_exception_class(exception_class);
427 #endif
429 // Shortcut for phase 2 found handler for domestic exception.
430 if (actions == (_UA_CLEANUP_PHASE | _UA_HANDLER_FRAME)
431 && !foreign_exception)
433 restore_caught_exception(ue_header, handler_switch_value,
434 language_specific_data, landing_pad);
435 found_type = (landing_pad == 0 ? found_terminate : found_handler);
436 goto install_context;
439 language_specific_data = (const unsigned char *)
440 _Unwind_GetLanguageSpecificData (context);
442 // If no LSDA, then there are no handlers or cleanups.
443 if (! language_specific_data)
444 CONTINUE_UNWINDING;
446 // Parse the LSDA header.
447 p = parse_lsda_header (context, language_specific_data, &info);
448 info.ttype_base = base_of_encoded_value (info.ttype_encoding, context);
449 #ifdef HAVE_GETIPINFO
450 ip = _Unwind_GetIPInfo (context, &ip_before_insn);
451 #else
452 ip = _Unwind_GetIP (context);
453 #endif
454 if (! ip_before_insn)
455 --ip;
456 landing_pad = 0;
457 action_record = 0;
458 handler_switch_value = 0;
460 #ifdef _GLIBCXX_SJLJ_EXCEPTIONS
461 // The given "IP" is an index into the call-site table, with two
462 // exceptions -- -1 means no-action, and 0 means terminate. But
463 // since we're using uleb128 values, we've not got random access
464 // to the array.
465 if ((int) ip < 0)
466 return _URC_CONTINUE_UNWIND;
467 else if (ip == 0)
469 // Fall through to set found_terminate.
471 else
473 _uleb128_t cs_lp, cs_action;
476 p = read_uleb128 (p, &cs_lp);
477 p = read_uleb128 (p, &cs_action);
479 while (--ip);
481 // Can never have null landing pad for sjlj -- that would have
482 // been indicated by a -1 call site index.
483 landing_pad = cs_lp + 1;
484 if (cs_action)
485 action_record = info.action_table + cs_action - 1;
486 goto found_something;
488 #else
489 // Search the call-site table for the action associated with this IP.
490 while (p < info.action_table)
492 _Unwind_Ptr cs_start, cs_len, cs_lp;
493 _uleb128_t cs_action;
495 // Note that all call-site encodings are "absolute" displacements.
496 p = read_encoded_value (0, info.call_site_encoding, p, &cs_start);
497 p = read_encoded_value (0, info.call_site_encoding, p, &cs_len);
498 p = read_encoded_value (0, info.call_site_encoding, p, &cs_lp);
499 p = read_uleb128 (p, &cs_action);
501 // The table is sorted, so if we've passed the ip, stop.
502 if (ip < info.Start + cs_start)
503 p = info.action_table;
504 else if (ip < info.Start + cs_start + cs_len)
506 if (cs_lp)
507 landing_pad = info.LPStart + cs_lp;
508 if (cs_action)
509 action_record = info.action_table + cs_action - 1;
510 goto found_something;
513 #endif // _GLIBCXX_SJLJ_EXCEPTIONS
515 // If ip is not present in the table, call terminate. This is for
516 // a destructor inside a cleanup, or a library routine the compiler
517 // was not expecting to throw.
518 found_type = found_terminate;
519 goto do_something;
521 found_something:
522 if (landing_pad == 0)
524 // If ip is present, and has a null landing pad, there are
525 // no cleanups or handlers to be run.
526 found_type = found_nothing;
528 else if (action_record == 0)
530 // If ip is present, has a non-null landing pad, and a null
531 // action table offset, then there are only cleanups present.
532 // Cleanups use a zero switch value, as set above.
533 found_type = found_cleanup;
535 else
537 // Otherwise we have a catch handler or exception specification.
539 _sleb128_t ar_filter, ar_disp;
540 const std::type_info* catch_type;
541 _throw_typet* throw_type;
542 bool saw_cleanup = false;
543 bool saw_handler = false;
545 // During forced unwinding, match a magic exception type.
546 if (actions & _UA_FORCE_UNWIND)
548 throw_type = &typeid(abi::__forced_unwind);
549 thrown_ptr = 0;
551 // With a foreign exception class, there's no exception type.
552 // ??? What to do about GNU Java and GNU Ada exceptions?
553 else if (foreign_exception)
555 throw_type = &typeid(abi::__foreign_exception);
556 thrown_ptr = 0;
558 else
559 #ifdef __ARM_EABI_UNWINDER__
560 throw_type = ue_header;
561 #else
562 throw_type = xh->exceptionType;
563 #endif
565 while (1)
567 p = action_record;
568 p = read_sleb128 (p, &ar_filter);
569 read_sleb128 (p, &ar_disp);
571 if (ar_filter == 0)
573 // Zero filter values are cleanups.
574 saw_cleanup = true;
576 else if (ar_filter > 0)
578 // Positive filter values are handlers.
579 catch_type = get_ttype_entry (&info, ar_filter);
581 // Null catch type is a catch-all handler; we can catch foreign
582 // exceptions with this. Otherwise we must match types.
583 if (! catch_type
584 || (throw_type
585 && get_adjusted_ptr (catch_type, throw_type,
586 &thrown_ptr)))
588 saw_handler = true;
589 break;
592 else
594 // Negative filter values are exception specifications.
595 // ??? How do foreign exceptions fit in? As far as I can
596 // see we can't match because there's no __cxa_exception
597 // object to stuff bits in for __cxa_call_unexpected to use.
598 // Allow them iff the exception spec is non-empty. I.e.
599 // a throw() specification results in __unexpected.
600 if ((throw_type
601 && !(actions & _UA_FORCE_UNWIND)
602 && !foreign_exception)
603 ? ! check_exception_spec (&info, throw_type, thrown_ptr,
604 ar_filter)
605 : empty_exception_spec (&info, ar_filter))
607 saw_handler = true;
608 break;
612 if (ar_disp == 0)
613 break;
614 action_record = p + ar_disp;
617 if (saw_handler)
619 handler_switch_value = ar_filter;
620 found_type = found_handler;
622 else
623 found_type = (saw_cleanup ? found_cleanup : found_nothing);
626 do_something:
627 if (found_type == found_nothing)
628 CONTINUE_UNWINDING;
630 if (actions & _UA_SEARCH_PHASE)
632 if (found_type == found_cleanup)
633 CONTINUE_UNWINDING;
635 // For domestic exceptions, we cache data from phase 1 for phase 2.
636 if (!foreign_exception)
638 save_caught_exception(ue_header, context, thrown_ptr,
639 handler_switch_value, language_specific_data,
640 landing_pad, action_record);
642 return _URC_HANDLER_FOUND;
645 install_context:
647 // We can't use any of the cxa routines with foreign exceptions,
648 // because they all expect ue_header to be a struct __cxa_exception.
649 // So in that case, call terminate or unexpected directly.
650 if ((actions & _UA_FORCE_UNWIND)
651 || foreign_exception)
653 if (found_type == found_terminate)
654 std::terminate ();
655 else if (handler_switch_value < 0)
657 try
658 { std::unexpected (); }
659 catch(...)
660 { std::terminate (); }
663 else
665 if (found_type == found_terminate)
666 __cxa_call_terminate(ue_header);
668 // Cache the TType base value for __cxa_call_unexpected, as we won't
669 // have an _Unwind_Context then.
670 if (handler_switch_value < 0)
672 parse_lsda_header (context, language_specific_data, &info);
674 #ifdef __ARM_EABI_UNWINDER__
675 const _Unwind_Word* e;
676 _Unwind_Word n;
678 e = ((const _Unwind_Word*) info.TType) - handler_switch_value - 1;
679 // Count the number of rtti objects.
680 n = 0;
681 while (e[n] != 0)
682 n++;
684 // Count.
685 ue_header->barrier_cache.bitpattern[1] = n;
686 // Base (obsolete)
687 ue_header->barrier_cache.bitpattern[2] = 0;
688 // Stride.
689 ue_header->barrier_cache.bitpattern[3] = 4;
690 // List head.
691 ue_header->barrier_cache.bitpattern[4] = (_Unwind_Word) e;
692 #else
693 xh->catchTemp = base_of_encoded_value (info.ttype_encoding, context);
694 #endif
698 /* For targets with pointers smaller than the word size, we must extend the
699 pointer, and this extension is target dependent. */
700 _Unwind_SetGR (context, __builtin_eh_return_data_regno (0),
701 __builtin_extend_pointer (ue_header));
702 _Unwind_SetGR (context, __builtin_eh_return_data_regno (1),
703 handler_switch_value);
704 _Unwind_SetIP (context, landing_pad);
705 #ifdef __ARM_EABI_UNWINDER__
706 if (found_type == found_cleanup)
707 __cxa_begin_cleanup(ue_header);
708 #endif
709 return _URC_INSTALL_CONTEXT;
712 /* The ARM EABI implementation of __cxa_call_unexpected is in a
713 different file so that the personality routine (PR) can be used
714 standalone. The generic routine shared datastructures with the PR
715 so it is most convenient to implement it here. */
716 #ifndef __ARM_EABI_UNWINDER__
717 extern "C" void
718 __cxa_call_unexpected (void *exc_obj_in)
720 _Unwind_Exception *exc_obj
721 = reinterpret_cast <_Unwind_Exception *>(exc_obj_in);
723 __cxa_begin_catch (exc_obj);
725 // This function is a handler for our exception argument. If we exit
726 // by throwing a different exception, we'll need the original cleaned up.
727 struct end_catch_protect
729 end_catch_protect() { }
730 ~end_catch_protect() { __cxa_end_catch(); }
731 } end_catch_protect_obj;
733 lsda_header_info info;
734 __cxa_exception *xh = __get_exception_header_from_ue (exc_obj);
735 const unsigned char *xh_lsda;
736 _Unwind_Sword xh_switch_value;
737 std::terminate_handler xh_terminate_handler;
739 // If the unexpectedHandler rethrows the exception (e.g. to categorize it),
740 // it will clobber data about the current handler. So copy the data out now.
741 xh_lsda = xh->languageSpecificData;
742 xh_switch_value = xh->handlerSwitchValue;
743 xh_terminate_handler = xh->terminateHandler;
744 info.ttype_base = (_Unwind_Ptr) xh->catchTemp;
746 try
747 { __unexpected (xh->unexpectedHandler); }
748 catch(...)
750 // Get the exception thrown from unexpected.
752 __cxa_eh_globals *globals = __cxa_get_globals_fast ();
753 __cxa_exception *new_xh = globals->caughtExceptions;
754 void *new_ptr = new_xh + 1;
756 // We don't quite have enough stuff cached; re-parse the LSDA.
757 parse_lsda_header (0, xh_lsda, &info);
759 // If this new exception meets the exception spec, allow it.
760 if (check_exception_spec (&info, new_xh->exceptionType,
761 new_ptr, xh_switch_value))
762 __throw_exception_again;
764 // If the exception spec allows std::bad_exception, throw that.
765 // We don't have a thrown object to compare against, but since
766 // bad_exception doesn't have virtual bases, that's OK; just pass 0.
767 #ifdef __EXCEPTIONS
768 const std::type_info &bad_exc = typeid (std::bad_exception);
769 if (check_exception_spec (&info, &bad_exc, 0, xh_switch_value))
770 throw std::bad_exception();
771 #endif
773 // Otherwise, die.
774 __terminate (xh_terminate_handler);
777 #endif
779 } // namespace __cxxabiv1