blob: 235b0cf1dd3b574a8ac2b6d750bc94fe2d2c183a [file] [log] [blame]
Marshall Clow61b898e2011-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 Roelofsc82e02d2014-02-12 04:49:09 +000010// http://mentorembedded.github.io/cxx-abi/abi-eh.html (section 2.2.2)
Marshall Clow61b898e2011-07-20 14:53:53 +000011//
12//===----------------------------------------------------------------------===//
13
14#include "cxa_exception.hpp"
15
Jonathan Roelofsc285efa2014-05-06 21:30:56 +000016#include "config.h"
17
Asiri Rathnayakeb62a4dd2016-09-21 09:09:32 +000018#if defined(_LIBCXXABI_HAS_NO_THREADS)
Jonathan Roelofsc285efa2014-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 Clow61b898e2011-07-20 14:53:53 +000029
30namespace __cxxabiv1 {
31
32namespace {
Howard Hinnant7da9b962012-01-30 16:07:00 +000033 __cxa_eh_globals * __globals () {
Marshall Clow61b898e2011-07-20 14:53:53 +000034 static thread_local __cxa_eh_globals eh_globals;
35 return &eh_globals;
36 }
37 }
38
39extern "C" {
Howard Hinnant7da9b962012-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 Clow61b898e2011-07-20 14:53:53 +000042 }
43}
44
45#else
46
47#include <pthread.h>
48#include <cstdlib> // for calloc, free
Nick Kledzikf4429fe2011-08-02 01:34:26 +000049#include "abort_message.h"
Marshall Clow61b898e2011-07-20 14:53:53 +000050
Nick Kledzikf4429fe2011-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 Clow61b898e2011-07-20 14:53:53 +000054
55namespace __cxxabiv1 {
56namespace {
Marshall Clow61b898e2011-07-20 14:53:53 +000057 pthread_key_t key_;
Howard Hinnant7da9b962012-01-30 16:07:00 +000058 pthread_once_t flag_ = PTHREAD_ONCE_INIT;
Marshall Clow61b898e2011-07-20 14:53:53 +000059
Howard Hinnant7da9b962012-01-30 16:07:00 +000060 void destruct_ (void *p) {
Marshall Clow61b898e2011-07-20 14:53:53 +000061 std::free ( p );
Nick Kledzikf4429fe2011-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 Clow61b898e2011-07-20 14:53:53 +000064 }
65
Howard Hinnant7da9b962012-01-30 16:07:00 +000066 void construct_ () {
Nick Kledzikf4429fe2011-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 Clow61b898e2011-07-20 14:53:53 +000069 }
70}
71
72extern "C" {
Howard Hinnant7da9b962012-01-30 16:07:00 +000073 __cxa_eh_globals * __cxa_get_globals () {
Marshall Clow61b898e2011-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*>
80 (std::calloc (1, sizeof (__cxa_eh_globals)));
Nick Kledzikf4429fe2011-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 Clow61b898e2011-07-20 14:53:53 +000086 return retVal;
87 }
88
Howard Hinnantf6d4cba2012-01-25 19:19:13 +000089 // Note that this implementation will reliably return NULL if not
Howard Hinnant6d00fef2013-02-15 15:48:49 +000090 // preceded by a call to __cxa_get_globals(). This is an extension
Howard Hinnantf6d4cba2012-01-25 19:19:13 +000091 // to the Itanium ABI and is taken advantage of in several places in
92 // libc++abi.
Howard Hinnant7da9b962012-01-30 16:07:00 +000093 __cxa_eh_globals * __cxa_get_globals_fast () {
Howard Hinnant928afcd2012-01-23 23:55:58 +000094 // First time through, create the key.
Howard Hinnant7da9b962012-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 Clow61b898e2011-07-20 14:53:53 +000098 return static_cast<__cxa_eh_globals*>(::pthread_getspecific(key_));
99 }
100
101}
102}
103#endif