OSDN Git Service

PR other/26208
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / libsupc++ / eh_personality.cc
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.
10 //
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.
15 //
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.
20
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.
29
30 #include <bits/c++config.h>
31 #include <cstdlib>
32 #include <exception_defines.h>
33 #include "unwind-cxx.h"
34
35 using namespace __cxxabiv1;
36
37 #ifdef __ARM_EABI_UNWINDER__
38 #define NO_SIZE_OF_ENCODED_VALUE
39 #endif
40
41 #include "unwind-pe.h"
42
43 \f
44 struct lsda_header_info
45 {
46   _Unwind_Ptr Start;
47   _Unwind_Ptr LPStart;
48   _Unwind_Ptr ttype_base;
49   const unsigned char *TType;
50   const unsigned char *action_table;
51   unsigned char ttype_encoding;
52   unsigned char call_site_encoding;
53 };
54
55 static const unsigned char *
56 parse_lsda_header (_Unwind_Context *context, const unsigned char *p,
57                    lsda_header_info *info)
58 {
59   _Unwind_Word tmp;
60   unsigned char lpstart_encoding;
61
62   info->Start = (context ? _Unwind_GetRegionStart (context) : 0);
63
64   // Find @LPStart, the base to which landing pad offsets are relative.
65   lpstart_encoding = *p++;
66   if (lpstart_encoding != DW_EH_PE_omit)
67     p = read_encoded_value (context, lpstart_encoding, p, &info->LPStart);
68   else
69     info->LPStart = info->Start;
70
71   // Find @TType, the base of the handler and exception spec type data.
72   info->ttype_encoding = *p++;
73   if (info->ttype_encoding != DW_EH_PE_omit)
74     {
75       p = read_uleb128 (p, &tmp);
76       info->TType = p + tmp;
77     }
78   else
79     info->TType = 0;
80
81   // The encoding and length of the call-site table; the action table
82   // immediately follows.
83   info->call_site_encoding = *p++;
84   p = read_uleb128 (p, &tmp);
85   info->action_table = p + tmp;
86
87   return p;
88 }
89
90 #ifdef __ARM_EABI_UNWINDER__
91
92 // Return an element from a type table.
93
94 static const std::type_info*
95 get_ttype_entry(lsda_header_info* info, _Unwind_Word i)
96 {
97   _Unwind_Ptr ptr;
98
99   ptr = (_Unwind_Ptr) (info->TType - (i * 4));
100   ptr = _Unwind_decode_target2(ptr);
101   
102   return reinterpret_cast<const std::type_info *>(ptr);
103 }
104
105 // The ABI provides a routine for matching exception object types.
106 typedef _Unwind_Control_Block _throw_typet;
107 #define get_adjusted_ptr(catch_type, throw_type, thrown_ptr_p) \
108   (__cxa_type_match (throw_type, catch_type, false, thrown_ptr_p) \
109    != ctm_failed)
110
111 // Return true if THROW_TYPE matches one if the filter types.
112
113 static bool
114 check_exception_spec(lsda_header_info* info, _throw_typet* throw_type,
115                      void* thrown_ptr, _Unwind_Sword filter_value)
116 {
117   const _Unwind_Word* e = ((const _Unwind_Word*) info->TType)
118                           - filter_value - 1;
119
120   while (1)
121     {
122       const std::type_info* catch_type;
123       _Unwind_Word tmp;
124
125       tmp = *e;
126       
127       // Zero signals the end of the list.  If we've not found
128       // a match by now, then we've failed the specification.
129       if (tmp == 0)
130         return false;
131
132       tmp = _Unwind_decode_target2((_Unwind_Word) e);
133
134       // Match a ttype entry.
135       catch_type = reinterpret_cast<const std::type_info*>(tmp);
136
137       // ??? There is currently no way to ask the RTTI code about the
138       // relationship between two types without reference to a specific
139       // object.  There should be; then we wouldn't need to mess with
140       // thrown_ptr here.
141       if (get_adjusted_ptr(catch_type, throw_type, &thrown_ptr))
142         return true;
143
144       // Advance to the next entry.
145       e++;
146     }
147 }
148
149
150 // Save stage1 handler information in the exception object
151
152 static inline void
153 save_caught_exception(struct _Unwind_Exception* ue_header,
154                       struct _Unwind_Context* context,
155                       void* thrown_ptr,
156                       int handler_switch_value,
157                       const unsigned char* language_specific_data,
158                       _Unwind_Ptr landing_pad,
159                       const unsigned char* action_record
160                         __attribute__((__unused__)))
161 {
162     ue_header->barrier_cache.sp = _Unwind_GetGR(context, 13);
163     ue_header->barrier_cache.bitpattern[0] = (_uw) thrown_ptr;
164     ue_header->barrier_cache.bitpattern[1]
165       = (_uw) handler_switch_value;
166     ue_header->barrier_cache.bitpattern[2]
167       = (_uw) language_specific_data;
168     ue_header->barrier_cache.bitpattern[3] = (_uw) landing_pad;
169 }
170
171
172 // Restore the catch handler data saved during phase1.
173
174 static inline void
175 restore_caught_exception(struct _Unwind_Exception* ue_header,
176                          int& handler_switch_value,
177                          const unsigned char*& language_specific_data,
178                          _Unwind_Ptr& landing_pad)
179 {
180   handler_switch_value = (int) ue_header->barrier_cache.bitpattern[1];
181   language_specific_data =
182     (const unsigned char*) ue_header->barrier_cache.bitpattern[2];
183   landing_pad = (_Unwind_Ptr) ue_header->barrier_cache.bitpattern[3];
184 }
185
186 #define CONTINUE_UNWINDING \
187   do                                                            \
188     {                                                           \
189       if (__gnu_unwind_frame(ue_header, context) != _URC_OK)    \
190         return _URC_FAILURE;                                    \
191       return _URC_CONTINUE_UNWIND;                              \
192     }                                                           \
193   while (0)
194
195 #else
196 typedef const std::type_info _throw_typet;
197
198
199 // Return an element from a type table.
200
201 static const std::type_info *
202 get_ttype_entry (lsda_header_info *info, _Unwind_Word i)
203 {
204   _Unwind_Ptr ptr;
205
206   i *= size_of_encoded_value (info->ttype_encoding);
207   read_encoded_value_with_base (info->ttype_encoding, info->ttype_base,
208                                 info->TType - i, &ptr);
209
210   return reinterpret_cast<const std::type_info *>(ptr);
211 }
212
213 // Given the thrown type THROW_TYPE, pointer to a variable containing a
214 // pointer to the exception object THROWN_PTR_P and a type CATCH_TYPE to
215 // compare against, return whether or not there is a match and if so,
216 // update *THROWN_PTR_P.
217
218 static bool
219 get_adjusted_ptr (const std::type_info *catch_type,
220                   const std::type_info *throw_type,
221                   void **thrown_ptr_p)
222 {
223   void *thrown_ptr = *thrown_ptr_p;
224
225   // Pointer types need to adjust the actual pointer, not
226   // the pointer to pointer that is the exception object.
227   // This also has the effect of passing pointer types
228   // "by value" through the __cxa_begin_catch return value.
229   if (throw_type->__is_pointer_p ())
230     thrown_ptr = *(void **) thrown_ptr;
231
232   if (catch_type->__do_catch (throw_type, &thrown_ptr, 1))
233     {
234       *thrown_ptr_p = thrown_ptr;
235       return true;
236     }
237
238   return false;
239 }
240
241 // Return true if THROW_TYPE matches one if the filter types.
242
243 static bool
244 check_exception_spec(lsda_header_info* info, _throw_typet* throw_type,
245                       void* thrown_ptr, _Unwind_Sword filter_value)
246 {
247   const unsigned char *e = info->TType - filter_value - 1;
248
249   while (1)
250     {
251       const std::type_info *catch_type;
252       _Unwind_Word tmp;
253
254       e = read_uleb128 (e, &tmp);
255
256       // Zero signals the end of the list.  If we've not found
257       // a match by now, then we've failed the specification.
258       if (tmp == 0)
259         return false;
260
261       // Match a ttype entry.
262       catch_type = get_ttype_entry (info, tmp);
263
264       // ??? There is currently no way to ask the RTTI code about the
265       // relationship between two types without reference to a specific
266       // object.  There should be; then we wouldn't need to mess with
267       // thrown_ptr here.
268       if (get_adjusted_ptr (catch_type, throw_type, &thrown_ptr))
269         return true;
270     }
271 }
272
273
274 // Save stage1 handler information in the exception object
275
276 static inline void
277 save_caught_exception(struct _Unwind_Exception* ue_header,
278                       struct _Unwind_Context* context
279                         __attribute__((__unused__)),
280                       void* thrown_ptr,
281                       int handler_switch_value,
282                       const unsigned char* language_specific_data,
283                       _Unwind_Ptr landing_pad __attribute__((__unused__)),
284                       const unsigned char* action_record)
285 {
286   __cxa_exception* xh = __get_exception_header_from_ue(ue_header);
287
288   xh->handlerSwitchValue = handler_switch_value;
289   xh->actionRecord = action_record;
290   xh->languageSpecificData = language_specific_data;
291   xh->adjustedPtr = thrown_ptr;
292
293   // ??? Completely unknown what this field is supposed to be for.
294   // ??? Need to cache TType encoding base for call_unexpected.
295   xh->catchTemp = landing_pad;
296 }
297
298
299 // Restore the catch handler information saved during phase1.
300
301 static inline void
302 restore_caught_exception(struct _Unwind_Exception* ue_header,
303                          int& handler_switch_value,
304                          const unsigned char*& language_specific_data,
305                          _Unwind_Ptr& landing_pad)
306 {
307   __cxa_exception* xh = __get_exception_header_from_ue(ue_header);
308   handler_switch_value = xh->handlerSwitchValue;
309   language_specific_data = xh->languageSpecificData;
310   landing_pad = (_Unwind_Ptr) xh->catchTemp;
311 }
312
313 #define CONTINUE_UNWINDING return _URC_CONTINUE_UNWIND
314
315 #endif // !__ARM_EABI_UNWINDER__
316
317 // Return true if the filter spec is empty, ie throw().
318
319 static bool
320 empty_exception_spec (lsda_header_info *info, _Unwind_Sword filter_value)
321 {
322   const unsigned char *e = info->TType - filter_value - 1;
323   _Unwind_Word tmp;
324
325   e = read_uleb128 (e, &tmp);
326   return tmp == 0;
327 }
328
329 // Using a different personality function name causes link failures
330 // when trying to mix code using different exception handling models.
331 #ifdef _GLIBCXX_SJLJ_EXCEPTIONS
332 #define PERSONALITY_FUNCTION    __gxx_personality_sj0
333 #define __builtin_eh_return_data_regno(x) x
334 #else
335 #define PERSONALITY_FUNCTION    __gxx_personality_v0
336 #endif
337
338 extern "C" _Unwind_Reason_Code
339 #ifdef __ARM_EABI_UNWINDER__
340 PERSONALITY_FUNCTION (_Unwind_State state,
341                       struct _Unwind_Exception* ue_header,
342                       struct _Unwind_Context* context)
343 #else
344 PERSONALITY_FUNCTION (int version,
345                       _Unwind_Action actions,
346                       _Unwind_Exception_Class exception_class,
347                       struct _Unwind_Exception *ue_header,
348                       struct _Unwind_Context *context)
349 #endif
350 {
351   enum found_handler_type
352   {
353     found_nothing,
354     found_terminate,
355     found_cleanup,
356     found_handler
357   } found_type;
358
359   lsda_header_info info;
360   const unsigned char *language_specific_data;
361   const unsigned char *action_record;
362   const unsigned char *p;
363   _Unwind_Ptr landing_pad, ip;
364   int handler_switch_value;
365   void* thrown_ptr = ue_header + 1;
366   bool foreign_exception;
367   int ip_before_insn = 0;
368
369 #ifdef __ARM_EABI_UNWINDER__
370   _Unwind_Action actions;
371
372   switch (state & _US_ACTION_MASK)
373     {
374     case _US_VIRTUAL_UNWIND_FRAME:
375       actions = _UA_SEARCH_PHASE;
376       break;
377
378     case _US_UNWIND_FRAME_STARTING:
379       actions = _UA_CLEANUP_PHASE;
380       if (!(state & _US_FORCE_UNWIND)
381           && ue_header->barrier_cache.sp == _Unwind_GetGR(context, 13))
382         actions |= _UA_HANDLER_FRAME;
383       break;
384
385     case _US_UNWIND_FRAME_RESUME:
386       CONTINUE_UNWINDING;
387       break;
388
389     default:
390       std::abort();
391     }
392   actions |= state & _US_FORCE_UNWIND;
393
394   // We don't know which runtime we're working with, so can't check this.
395   // However the ABI routines hide this from us, and we don't actually need
396   // to know.
397   foreign_exception = false;
398
399   // The dwarf unwinder assumes the context structure holds things like the
400   // function and LSDA pointers.  The ARM implementation caches these in
401   // the exception header (UCB).  To avoid rewriting everything we make the
402   // virtual IP register point at the UCB.
403   ip = (_Unwind_Ptr) ue_header;
404   _Unwind_SetGR(context, 12, ip);
405 #else
406   __cxa_exception* xh = __get_exception_header_from_ue(ue_header);
407
408   // Interface version check.
409   if (version != 1)
410     return _URC_FATAL_PHASE1_ERROR;
411   foreign_exception = !__is_gxx_exception_class(exception_class);
412 #endif
413
414   // Shortcut for phase 2 found handler for domestic exception.
415   if (actions == (_UA_CLEANUP_PHASE | _UA_HANDLER_FRAME)
416       && !foreign_exception)
417     {
418       restore_caught_exception(ue_header, handler_switch_value,
419                                language_specific_data, landing_pad);
420       found_type = (landing_pad == 0 ? found_terminate : found_handler);
421       goto install_context;
422     }
423
424   language_specific_data = (const unsigned char *)
425     _Unwind_GetLanguageSpecificData (context);
426
427   // If no LSDA, then there are no handlers or cleanups.
428   if (! language_specific_data)
429     CONTINUE_UNWINDING;
430
431   // Parse the LSDA header.
432   p = parse_lsda_header (context, language_specific_data, &info);
433   info.ttype_base = base_of_encoded_value (info.ttype_encoding, context);
434   ip = _Unwind_GetIPInfo (context, &ip_before_insn);
435   if (! ip_before_insn)
436     --ip;
437   landing_pad = 0;
438   action_record = 0;
439   handler_switch_value = 0;
440
441 #ifdef _GLIBCXX_SJLJ_EXCEPTIONS
442   // The given "IP" is an index into the call-site table, with two
443   // exceptions -- -1 means no-action, and 0 means terminate.  But
444   // since we're using uleb128 values, we've not got random access
445   // to the array.
446   if ((int) ip < 0)
447     return _URC_CONTINUE_UNWIND;
448   else if (ip == 0)
449     {
450       // Fall through to set found_terminate.
451     }
452   else
453     {
454       _Unwind_Word cs_lp, cs_action;
455       do
456         {
457           p = read_uleb128 (p, &cs_lp);
458           p = read_uleb128 (p, &cs_action);
459         }
460       while (--ip);
461
462       // Can never have null landing pad for sjlj -- that would have
463       // been indicated by a -1 call site index.
464       landing_pad = cs_lp + 1;
465       if (cs_action)
466         action_record = info.action_table + cs_action - 1;
467       goto found_something;
468     }
469 #else
470   // Search the call-site table for the action associated with this IP.
471   while (p < info.action_table)
472     {
473       _Unwind_Ptr cs_start, cs_len, cs_lp;
474       _Unwind_Word cs_action;
475
476       // Note that all call-site encodings are "absolute" displacements.
477       p = read_encoded_value (0, info.call_site_encoding, p, &cs_start);
478       p = read_encoded_value (0, info.call_site_encoding, p, &cs_len);
479       p = read_encoded_value (0, info.call_site_encoding, p, &cs_lp);
480       p = read_uleb128 (p, &cs_action);
481
482       // The table is sorted, so if we've passed the ip, stop.
483       if (ip < info.Start + cs_start)
484         p = info.action_table;
485       else if (ip < info.Start + cs_start + cs_len)
486         {
487           if (cs_lp)
488             landing_pad = info.LPStart + cs_lp;
489           if (cs_action)
490             action_record = info.action_table + cs_action - 1;
491           goto found_something;
492         }
493     }
494 #endif // _GLIBCXX_SJLJ_EXCEPTIONS
495
496   // If ip is not present in the table, call terminate.  This is for
497   // a destructor inside a cleanup, or a library routine the compiler
498   // was not expecting to throw.
499   found_type = found_terminate;
500   goto do_something;
501
502  found_something:
503   if (landing_pad == 0)
504     {
505       // If ip is present, and has a null landing pad, there are
506       // no cleanups or handlers to be run.
507       found_type = found_nothing;
508     }
509   else if (action_record == 0)
510     {
511       // If ip is present, has a non-null landing pad, and a null
512       // action table offset, then there are only cleanups present.
513       // Cleanups use a zero switch value, as set above.
514       found_type = found_cleanup;
515     }
516   else
517     {
518       // Otherwise we have a catch handler or exception specification.
519
520       _Unwind_Sword ar_filter, ar_disp;
521       const std::type_info* catch_type;
522       _throw_typet* throw_type;
523       bool saw_cleanup = false;
524       bool saw_handler = false;
525
526       // During forced unwinding, we only run cleanups.  With a foreign
527       // exception class, there's no exception type.
528       // ??? What to do about GNU Java and GNU Ada exceptions.
529
530       if ((actions & _UA_FORCE_UNWIND)
531           || foreign_exception)
532         throw_type = 0;
533       else
534 #ifdef __ARM_EABI_UNWINDER__
535         throw_type = ue_header;
536 #else
537         throw_type = xh->exceptionType;
538 #endif
539
540       while (1)
541         {
542           p = action_record;
543           p = read_sleb128 (p, &ar_filter);
544           read_sleb128 (p, &ar_disp);
545
546           if (ar_filter == 0)
547             {
548               // Zero filter values are cleanups.
549               saw_cleanup = true;
550             }
551           else if (ar_filter > 0)
552             {
553               // Positive filter values are handlers.
554               catch_type = get_ttype_entry (&info, ar_filter);
555
556               // Null catch type is a catch-all handler; we can catch foreign
557               // exceptions with this.  Otherwise we must match types.
558               if (! catch_type
559                   || (throw_type
560                       && get_adjusted_ptr (catch_type, throw_type,
561                                            &thrown_ptr)))
562                 {
563                   saw_handler = true;
564                   break;
565                 }
566             }
567           else
568             {
569               // Negative filter values are exception specifications.
570               // ??? How do foreign exceptions fit in?  As far as I can
571               // see we can't match because there's no __cxa_exception
572               // object to stuff bits in for __cxa_call_unexpected to use.
573               // Allow them iff the exception spec is non-empty.  I.e.
574               // a throw() specification results in __unexpected.
575               if (throw_type
576                   ? ! check_exception_spec (&info, throw_type, thrown_ptr,
577                                             ar_filter)
578                   : empty_exception_spec (&info, ar_filter))
579                 {
580                   saw_handler = true;
581                   break;
582                 }
583             }
584
585           if (ar_disp == 0)
586             break;
587           action_record = p + ar_disp;
588         }
589
590       if (saw_handler)
591         {
592           handler_switch_value = ar_filter;
593           found_type = found_handler;
594         }
595       else
596         found_type = (saw_cleanup ? found_cleanup : found_nothing);
597     }
598
599  do_something:
600    if (found_type == found_nothing)
601      CONTINUE_UNWINDING;
602
603   if (actions & _UA_SEARCH_PHASE)
604     {
605       if (found_type == found_cleanup)
606         CONTINUE_UNWINDING;
607
608       // For domestic exceptions, we cache data from phase 1 for phase 2.
609       if (!foreign_exception)
610         {
611           save_caught_exception(ue_header, context, thrown_ptr,
612                                 handler_switch_value, language_specific_data,
613                                 landing_pad, action_record);
614         }
615       return _URC_HANDLER_FOUND;
616     }
617
618  install_context:
619   
620   // We can't use any of the cxa routines with foreign exceptions,
621   // because they all expect ue_header to be a struct __cxa_exception.
622   // So in that case, call terminate or unexpected directly.
623   if ((actions & _UA_FORCE_UNWIND)
624       || foreign_exception)
625     {
626       if (found_type == found_terminate)
627         std::terminate ();
628       else if (handler_switch_value < 0)
629         {
630           try 
631             { std::unexpected (); } 
632           catch(...) 
633             { std::terminate (); }
634         }
635     }
636   else
637     {
638       if (found_type == found_terminate)
639         __cxa_call_terminate(ue_header);
640
641       // Cache the TType base value for __cxa_call_unexpected, as we won't
642       // have an _Unwind_Context then.
643       if (handler_switch_value < 0)
644         {
645           parse_lsda_header (context, language_specific_data, &info);
646
647 #ifdef __ARM_EABI_UNWINDER__
648           const _Unwind_Word* e;
649           _Unwind_Word n;
650           
651           e = ((const _Unwind_Word*) info.TType) - handler_switch_value - 1;
652           // Count the number of rtti objects.
653           n = 0;
654           while (e[n] != 0)
655             n++;
656
657           // Count.
658           ue_header->barrier_cache.bitpattern[1] = n;
659           // Base (obsolete)
660           ue_header->barrier_cache.bitpattern[2] = 0;
661           // Stride.
662           ue_header->barrier_cache.bitpattern[3] = 4;
663           // List head.
664           ue_header->barrier_cache.bitpattern[4] = (_Unwind_Word) e;
665 #else
666           xh->catchTemp = base_of_encoded_value (info.ttype_encoding, context);
667 #endif
668         }
669     }
670
671   /* For targets with pointers smaller than the word size, we must extend the
672      pointer, and this extension is target dependent.  */
673   _Unwind_SetGR (context, __builtin_eh_return_data_regno (0),
674                  __builtin_extend_pointer (ue_header));
675   _Unwind_SetGR (context, __builtin_eh_return_data_regno (1),
676                  handler_switch_value);
677   _Unwind_SetIP (context, landing_pad);
678 #ifdef __ARM_EABI_UNWINDER__
679   if (found_type == found_cleanup)
680     __cxa_begin_cleanup(ue_header);
681 #endif
682   return _URC_INSTALL_CONTEXT;
683 }
684
685 /* The ARM EABI implementation of __cxa_call_unexpected is in a
686    different file so that the personality routine (PR) can be used
687    standalone.  The generic routine shared datastructures with the PR
688    so it is most convenient to implement it here.  */
689 #ifndef __ARM_EABI_UNWINDER__
690 extern "C" void
691 __cxa_call_unexpected (void *exc_obj_in)
692 {
693   _Unwind_Exception *exc_obj
694     = reinterpret_cast <_Unwind_Exception *>(exc_obj_in);
695
696   __cxa_begin_catch (exc_obj);
697
698   // This function is a handler for our exception argument.  If we exit
699   // by throwing a different exception, we'll need the original cleaned up.
700   struct end_catch_protect
701   {
702     end_catch_protect() { }
703     ~end_catch_protect() { __cxa_end_catch(); }
704   } end_catch_protect_obj;
705
706   lsda_header_info info;
707   __cxa_exception *xh = __get_exception_header_from_ue (exc_obj);
708   const unsigned char *xh_lsda;
709   _Unwind_Sword xh_switch_value;
710   std::terminate_handler xh_terminate_handler;
711
712   // If the unexpectedHandler rethrows the exception (e.g. to categorize it),
713   // it will clobber data about the current handler.  So copy the data out now.
714   xh_lsda = xh->languageSpecificData;
715   xh_switch_value = xh->handlerSwitchValue;
716   xh_terminate_handler = xh->terminateHandler;
717   info.ttype_base = (_Unwind_Ptr) xh->catchTemp;
718
719   try 
720     { __unexpected (xh->unexpectedHandler); } 
721   catch(...) 
722     {
723       // Get the exception thrown from unexpected.
724
725       __cxa_eh_globals *globals = __cxa_get_globals_fast ();
726       __cxa_exception *new_xh = globals->caughtExceptions;
727       void *new_ptr = new_xh + 1;
728
729       // We don't quite have enough stuff cached; re-parse the LSDA.
730       parse_lsda_header (0, xh_lsda, &info);
731
732       // If this new exception meets the exception spec, allow it.
733       if (check_exception_spec (&info, new_xh->exceptionType,
734                                 new_ptr, xh_switch_value))
735         __throw_exception_again;
736
737       // If the exception spec allows std::bad_exception, throw that.
738       // We don't have a thrown object to compare against, but since
739       // bad_exception doesn't have virtual bases, that's OK; just pass 0.
740 #ifdef __EXCEPTIONS  
741       const std::type_info &bad_exc = typeid (std::bad_exception);
742       if (check_exception_spec (&info, &bad_exc, 0, xh_switch_value))
743         throw std::bad_exception();
744 #endif   
745
746       // Otherwise, die.
747       __terminate (xh_terminate_handler);
748     }
749 }
750 #endif