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