blob: 0d5deaa373573e7c1783341428afc07c560907d7 [file] [log] [blame]
Howard Hinnant987afbe2011-12-06 18:01:47 +00001//===-------------------- test_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
Jonathan Roelofs40e98422014-05-06 21:30:56 +000010#include "../src/config.h"
11
Marshall Clow1df50ca2011-07-20 14:53:53 +000012#include <cstdlib>
13#include <algorithm>
14#include <iostream>
Jonathan Roelofs3b7f0852014-09-05 17:46:40 +000015#if !LIBCXXABI_HAS_NO_THREADS
Jonathan Roelofs40e98422014-05-06 21:30:56 +000016# include <pthread.h>
17#endif
Howard Hinnant805036c2012-01-28 00:30:38 +000018#include <unistd.h>
Marshall Clow1df50ca2011-07-20 14:53:53 +000019
Howard Hinnant805036c2012-01-28 00:30:38 +000020#include "../src/cxa_exception.hpp"
Marshall Clow1df50ca2011-07-20 14:53:53 +000021
22typedef __cxxabiv1::__cxa_eh_globals globals_t ;
23
24void *thread_code (void *parm) {
25 size_t *result = (size_t *) parm;
26 globals_t *glob1, *glob2;
27
28 glob1 = __cxxabiv1::__cxa_get_globals ();
29 if ( NULL == glob1 )
30 std::cerr << "Got null result from __cxa_get_globals" << std::endl;
31
32 glob2 = __cxxabiv1::__cxa_get_globals_fast ();
33 if ( glob1 != glob2 )
34 std::cerr << "Got different globals!" << std::endl;
35
36 *result = (size_t) glob1;
37 sleep ( 1 );
38 return parm;
39 }
40
Jonathan Roelofs3b7f0852014-09-05 17:46:40 +000041#if !LIBCXXABI_HAS_NO_THREADS
Marshall Clow1df50ca2011-07-20 14:53:53 +000042#define NUMTHREADS 10
43size_t thread_globals [ NUMTHREADS ] = { 0 };
44pthread_t threads [ NUMTHREADS ];
Jonathan Roelofs40e98422014-05-06 21:30:56 +000045#endif
Marshall Clow1df50ca2011-07-20 14:53:53 +000046
47void print_sizes ( size_t *first, size_t *last ) {
48 std::cout << "{ " << std::hex;
49 for ( size_t *iter = first; iter != last; ++iter )
50 std::cout << *iter << " ";
51 std::cout << "}" << std::dec << std::endl;
52 }
53
54int main ( int argc, char *argv [] ) {
55 int retVal = 0;
56
Jonathan Roelofs3b7f0852014-09-05 17:46:40 +000057#if LIBCXXABI_HAS_NO_THREADS
Jonathan Roelofs40e98422014-05-06 21:30:56 +000058 size_t thread_globals;
Eric Fiselier559f8672014-11-24 22:42:03 +000059 // Check that __cxa_get_globals() is not NULL.
60 if (thread_code(&thread_globals) == 0) {
61 retVal = 1;
62 }
Jonathan Roelofs40e98422014-05-06 21:30:56 +000063#else
Marshall Clow1df50ca2011-07-20 14:53:53 +000064// Make the threads, let them run, and wait for them to finish
65 for ( int i = 0; i < NUMTHREADS; ++i )
66 pthread_create( threads + i, NULL, thread_code, (void *) (thread_globals + i));
67 for ( int i = 0; i < NUMTHREADS; ++i )
68 pthread_join ( threads [ i ], NULL );
69
70 for ( int i = 0; i < NUMTHREADS; ++i )
71 if ( 0 == thread_globals [ i ] ) {
72 std::cerr << "Thread #" << i << " had a zero global" << std::endl;
73 retVal = 1;
74 }
75
76// print_sizes ( thread_globals, thread_globals + NUMTHREADS );
77 std::sort ( thread_globals, thread_globals + NUMTHREADS );
Howard Hinnantf8d292e2012-01-31 20:01:06 +000078 for ( int i = 1; i < NUMTHREADS; ++i )
79 if ( thread_globals [ i - 1 ] == thread_globals [ i ] ) {
Marshall Clow1df50ca2011-07-20 14:53:53 +000080 std::cerr << "Duplicate thread globals (" << i-1 << " and " << i << ")" << std::endl;
81 retVal = 2;
82 }
83// print_sizes ( thread_globals, thread_globals + NUMTHREADS );
Jonathan Roelofs40e98422014-05-06 21:30:56 +000084
85#endif
Marshall Clow1df50ca2011-07-20 14:53:53 +000086 return retVal;
87 }