aboutsummaryrefslogtreecommitdiff
path: root/odb/details/tls.hxx
blob: de6c344036246a4d5aad44c4d3806c1125aa75dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
// file      : odb/details/tls.hxx
// license   : GNU GPL v2; see accompanying LICENSE file

#ifndef ODB_DETAILS_TLS_HXX
#define ODB_DETAILS_TLS_HXX

#include <odb/pre.hxx>

#include <odb/details/config.hxx>

#ifdef ODB_THREADS_NONE

#  define ODB_TLS_POINTER(type) type*
#  define ODB_TLS_OBJECT(type) type

namespace odb
{
  namespace details
  {
    template <typename T>
    inline T&
    tls_get (T& x)
    {
      return x;
    }

    // If early destructions is possible, destroy the object and free
    // any allocated resources.
    //
    template <typename T>
    inline void
    tls_free (T&)
    {
    }

    template <typename T>
    inline T*
    tls_get (T* p)
    {
      return p;
    }

    template <typename T, typename T1>
    inline void
    tls_set (T*& rp, T1* p)
    {
      rp = p;
    }
  }
}

#elif defined(ODB_THREADS_CXX11)

// Apparently Apple's Clang "temporarily disabled" C++11 thread_local until
// they can implement a "fast" version, which reportedly happened in XCode 8.
// So for now we will continue using __thread for this target.
//
#  if defined(__apple_build_version__) && __apple_build_version__ < 8000000
#    define ODB_TLS_POINTER(type) __thread type*
#    define ODB_TLS_OBJECT(type) thread_local type
#  else
#    define ODB_TLS_POINTER(type) thread_local type*
#    define ODB_TLS_OBJECT(type) thread_local type
#  endif

namespace odb
{
  namespace details
  {
    template <typename T>
    inline T&
    tls_get (T& x)
    {
      return x;
    }

    template <typename T>
    inline void
    tls_free (T&)
    {
    }

    template <typename T>
    inline T*
    tls_get (T* p)
    {
      return p;
    }

    template <typename T, typename T1>
    inline void
    tls_set (T*& rp, T1* p)
    {
      rp = p;
    }
  }
}

#elif defined(ODB_THREADS_POSIX)

#  include <odb/details/posix/tls.hxx>

#  ifdef ODB_THREADS_TLS_KEYWORD
#    define ODB_TLS_POINTER(type) __thread type*

namespace odb
{
  namespace details
  {
    template <typename T>
    inline T*
    tls_get (T* p)
    {
      return p;
    }

    template <typename T, typename T1>
    inline void
    tls_set (T*& rp, T1* p)
    {
      rp = p;
    }
  }
}

#  else
#    define ODB_TLS_POINTER(type) tls<type*>
#  endif
#  define ODB_TLS_OBJECT(type) tls<type>

#elif defined(ODB_THREADS_WIN32)

#  include <odb/details/win32/tls.hxx>

#  ifdef ODB_THREADS_TLS_DECLSPEC
#    define ODB_TLS_POINTER(type) __declspec(thread) type*

namespace odb
{
  namespace details
  {
    template <typename T>
    inline T*
    tls_get (T* p)
    {
      return p;
    }

    template <typename T, typename T1>
    inline void
    tls_set (T*& rp, T1* p)
    {
      rp = p;
    }
  }
}

#  else
#    define ODB_TLS_POINTER(type) tls<type*>
#  endif
#  define ODB_TLS_OBJECT(type) tls<type>
#else
# error unknown threading model
#endif

#include <odb/post.hxx>

#endif // ODB_DETAILS_TLS_HXX