blob: ec69094c40cd0f9d00c0c512a2a1779f77d342ad [file] [log] [blame]
Marshall Clow1df50ca2011-07-20 14:53:53 +00001//===--------------------- cxa_exception_storage.cpp ----------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is dual licensed under the MIT and the University of Illinois Open
6// Source Licenses. See LICENSE.TXT for details.
7//
8//
9// This file implements the storage for the "Caught Exception Stack"
Jonathan Roelofsc5f7e6f2014-02-12 04:49:09 +000010// http://mentorembedded.github.io/cxx-abi/abi-eh.html (section 2.2.2)
Marshall Clow1df50ca2011-07-20 14:53:53 +000011//
12//===----------------------------------------------------------------------===//
13
14#include "cxa_exception.hpp"
15
Jonathan Roelofs40e98422014-05-06 21:30:56 +000016#include "config.h"
17
Asiri Rathnayake7c98baa2016-09-21 09:09:32 +000018#if defined(_LIBCXXABI_HAS_NO_THREADS)
Jonathan Roelofs40e98422014-05-06 21:30:56 +000019
20namespace __cxxabiv1 {
21extern "C" {
22 static __cxa_eh_globals eh_globals;
23 __cxa_eh_globals *__cxa_get_globals() { return &eh_globals; }
24 __cxa_eh_globals *__cxa_get_globals_fast() { return &eh_globals; }
25 }
26}
27
28#elif defined(HAS_THREAD_LOCAL)
Marshall Clow1df50ca2011-07-20 14:53:53 +000029
30namespace __cxxabiv1 {
31
32namespace {
Howard Hinnant47cb85482012-01-30 16:07:00 +000033 __cxa_eh_globals * __globals () {
Marshall Clow1df50ca2011-07-20 14:53:53 +000034 static thread_local __cxa_eh_globals eh_globals;
35 return &eh_globals;
36 }
37 }
38
39extern "C" {
Howard Hinnant47cb85482012-01-30 16:07:00 +000040 __cxa_eh_globals * __cxa_get_globals () { return __globals (); }
41 __cxa_eh_globals * __cxa_get_globals_fast () { return __globals (); }
Marshall Clow1df50ca2011-07-20 14:53:53 +000042 }
43}
44
45#else
46
47#include <pthread.h>
Nick Kledzik7cb49262011-08-02 01:34:26 +000048#include "abort_message.h"
Igor Kudrind9edde42016-10-07 08:48:28 +000049#include "fallback_malloc.h"
Marshall Clow1df50ca2011-07-20 14:53:53 +000050
Nick Kledzik7cb49262011-08-02 01:34:26 +000051// In general, we treat all pthread errors as fatal.
52// We cannot call std::terminate() because that will in turn
53// call __cxa_get_globals() and cause infinite recursion.
Marshall Clow1df50ca2011-07-20 14:53:53 +000054
55namespace __cxxabiv1 {
56namespace {
Marshall Clow1df50ca2011-07-20 14:53:53 +000057 pthread_key_t key_;
Howard Hinnant47cb85482012-01-30 16:07:00 +000058 pthread_once_t flag_ = PTHREAD_ONCE_INIT;
Marshall Clow1df50ca2011-07-20 14:53:53 +000059
Howard Hinnant47cb85482012-01-30 16:07:00 +000060 void destruct_ (void *p) {
Igor Kudrind9edde42016-10-07 08:48:28 +000061 __free_with_fallback ( p );
Nick Kledzik7cb49262011-08-02 01:34:26 +000062 if ( 0 != ::pthread_setspecific ( key_, NULL ) )
63 abort_message("cannot zero out thread value for __cxa_get_globals()");
Marshall Clow1df50ca2011-07-20 14:53:53 +000064 }
65
Howard Hinnant47cb85482012-01-30 16:07:00 +000066 void construct_ () {
Nick Kledzik7cb49262011-08-02 01:34:26 +000067 if ( 0 != pthread_key_create ( &key_, destruct_ ) )
68 abort_message("cannot create pthread key for __cxa_get_globals()");
Marshall Clow1df50ca2011-07-20 14:53:53 +000069 }
70}
71
72extern "C" {
Howard Hinnant47cb85482012-01-30 16:07:00 +000073 __cxa_eh_globals * __cxa_get_globals () {
Marshall Clow1df50ca2011-07-20 14:53:53 +000074 // Try to get the globals for this thread
75 __cxa_eh_globals* retVal = __cxa_get_globals_fast ();
76
77 // If this is the first time we've been asked for these globals, create them
78 if ( NULL == retVal ) {
79 retVal = static_cast<__cxa_eh_globals*>
Igor Kudrind9edde42016-10-07 08:48:28 +000080 (__calloc_with_fallback (1, sizeof (__cxa_eh_globals)));
Nick Kledzik7cb49262011-08-02 01:34:26 +000081 if ( NULL == retVal )
82 abort_message("cannot allocate __cxa_eh_globals");
83 if ( 0 != pthread_setspecific ( key_, retVal ) )
84 abort_message("pthread_setspecific failure in __cxa_get_globals()");
85 }
Marshall Clow1df50ca2011-07-20 14:53:53 +000086 return retVal;
87 }
88
Howard Hinnantdb970642012-01-25 19:19:13 +000089 // Note that this implementation will reliably return NULL if not
Howard Hinnantbe2eced2013-02-15 15:48:49 +000090 // preceded by a call to __cxa_get_globals(). This is an extension
Howard Hinnantdb970642012-01-25 19:19:13 +000091 // to the Itanium ABI and is taken advantage of in several places in
92 // libc++abi.
Howard Hinnant47cb85482012-01-30 16:07:00 +000093 __cxa_eh_globals * __cxa_get_globals_fast () {
Howard Hinnantfad744d2012-01-23 23:55:58 +000094 // First time through, create the key.
Howard Hinnant47cb85482012-01-30 16:07:00 +000095 if (0 != pthread_once(&flag_, construct_))
96 abort_message("pthread_once failure in __cxa_get_globals_fast()");
97// static int init = construct_();
Marshall Clow1df50ca2011-07-20 14:53:53 +000098 return static_cast<__cxa_eh_globals*>(::pthread_getspecific(key_));
99 }
100
101}
102}
103#endif