/home/arjun/llvm-project/llvm/lib/Support/Unix/ThreadLocal.inc
Line | Count | Source (jump to first uncovered line) |
1 | | //=== llvm/Support/Unix/ThreadLocal.inc - Unix Thread Local Data -*- C++ -*-===// |
2 | | // |
3 | | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
4 | | // See https://llvm.org/LICENSE.txt for license information. |
5 | | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
6 | | // |
7 | | //===----------------------------------------------------------------------===// |
8 | | // |
9 | | // This file implements the Unix specific (non-pthread) ThreadLocal class. |
10 | | // |
11 | | //===----------------------------------------------------------------------===// |
12 | | |
13 | | //===----------------------------------------------------------------------===// |
14 | | //=== WARNING: Implementation here must contain only generic UNIX code that |
15 | | //=== is guaranteed to work on *all* UNIX variants. |
16 | | //===----------------------------------------------------------------------===// |
17 | | |
18 | | #include "llvm/Config/config.h" |
19 | | |
20 | | #if defined(HAVE_PTHREAD_H) && defined(HAVE_PTHREAD_GETSPECIFIC) |
21 | | |
22 | | #include <cassert> |
23 | | #include <pthread.h> |
24 | | #include <stdlib.h> |
25 | | |
26 | | namespace llvm { |
27 | | using namespace sys; |
28 | | |
29 | 0 | ThreadLocalImpl::ThreadLocalImpl() : data() { |
30 | 0 | static_assert(sizeof(pthread_key_t) <= sizeof(data), "size too big"); |
31 | 0 | pthread_key_t* key = reinterpret_cast<pthread_key_t*>(&data); |
32 | 0 | int errorcode = pthread_key_create(key, nullptr); |
33 | 0 | assert(errorcode == 0); |
34 | 0 | (void) errorcode; |
35 | 0 | } |
36 | | |
37 | 0 | ThreadLocalImpl::~ThreadLocalImpl() { |
38 | 0 | pthread_key_t* key = reinterpret_cast<pthread_key_t*>(&data); |
39 | 0 | int errorcode = pthread_key_delete(*key); |
40 | 0 | assert(errorcode == 0); |
41 | 0 | (void) errorcode; |
42 | 0 | } |
43 | | |
44 | 0 | void ThreadLocalImpl::setInstance(const void* d) { |
45 | 0 | pthread_key_t* key = reinterpret_cast<pthread_key_t*>(&data); |
46 | 0 | int errorcode = pthread_setspecific(*key, d); |
47 | 0 | assert(errorcode == 0); |
48 | 0 | (void) errorcode; |
49 | 0 | } |
50 | | |
51 | 0 | void *ThreadLocalImpl::getInstance() { |
52 | 0 | pthread_key_t* key = reinterpret_cast<pthread_key_t*>(&data); |
53 | 0 | return pthread_getspecific(*key); |
54 | 0 | } |
55 | | |
56 | 0 | void ThreadLocalImpl::removeInstance() { |
57 | 0 | setInstance(nullptr); |
58 | 0 | } |
59 | | |
60 | | } |
61 | | #else |
62 | | namespace llvm { |
63 | | using namespace sys; |
64 | | ThreadLocalImpl::ThreadLocalImpl() : data() { } |
65 | | ThreadLocalImpl::~ThreadLocalImpl() { } |
66 | | void ThreadLocalImpl::setInstance(const void* d) { data = const_cast<void*>(d);} |
67 | | void *ThreadLocalImpl::getInstance() { return data; } |
68 | | void ThreadLocalImpl::removeInstance() { setInstance(0); } |
69 | | } |
70 | | #endif |