xref: /aosp_15_r20/external/tensorflow/tensorflow/compiler/xla/stream_executor/lib/static_threadlocal.h (revision b6fb3261f9314811a0f4371741dbb8839866f948)
1 /* Copyright 2015 The TensorFlow Authors. All Rights Reserved.
2 
3 Licensed under the Apache License, Version 2.0 (the "License");
4 you may not use this file except in compliance with the License.
5 You may obtain a copy of the License at
6 
7     http://www.apache.org/licenses/LICENSE-2.0
8 
9 Unless required by applicable law or agreed to in writing, software
10 distributed under the License is distributed on an "AS IS" BASIS,
11 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 See the License for the specific language governing permissions and
13 limitations under the License.
14 ==============================================================================*/
15 
16 #ifndef TENSORFLOW_COMPILER_XLA_STREAM_EXECUTOR_LIB_STATIC_THREADLOCAL_H_
17 #define TENSORFLOW_COMPILER_XLA_STREAM_EXECUTOR_LIB_STATIC_THREADLOCAL_H_
18 
19 #ifdef _MSC_VER
20 #define __thread __declspec(thread)
21 #endif
22 
23 // For POD types in TLS mode, s_obj_VAR is the thread-local variable.
24 #define SE_STATIC_THREAD_LOCAL_POD(_Type_, _var_)               \
25   static __thread _Type_ s_obj_##_var_;                         \
26   namespace {                                                   \
27   class ThreadLocal_##_var_ {                                   \
28   public:                                                       \
29     ThreadLocal_##_var_() {}                                    \
30     void Init() {}                                              \
31     inline _Type_ *pointer() const {                            \
32       return &s_obj_##_var_;                                    \
33     }                                                           \
34     inline _Type_ *safe_pointer() const {                       \
35       return &s_obj_##_var_;                                    \
36     }                                                           \
37     _Type_ &get() const {                                       \
38       return s_obj_##_var_;                                     \
39     }                                                           \
40     bool is_native_tls() const { return true; }                 \
41   private:                                                      \
42     SE_DISALLOW_COPY_AND_ASSIGN(ThreadLocal_##_var_);           \
43   } _var_;                                                      \
44   }
45 
46 #endif  // TENSORFLOW_COMPILER_XLA_STREAM_EXECUTOR_LIB_STATIC_THREADLOCAL_H_
47