aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/tbb/src/tbb/governor.h
blob: c15f07e8240351f6799a6bd9a3dc0d054bf8bdbb (plain) (blame)
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
/*
    Copyright (c) 2005-2021 Intel Corporation 

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

        http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
*/

#ifndef _TBB_governor_H
#define _TBB_governor_H

#include "rml_tbb.h" 

#include "misc.h" // for AvailableHwConcurrency 
#include "tls.h"

namespace tbb {
namespace detail { 
namespace r1 { 

class market;
class thread_data; 
class __TBB_InitOnce;

#if __TBB_USE_ITT_NOTIFY 
//! Defined in profiling.cpp 
extern bool ITT_Present; 
#endif 

typedef std::size_t stack_size_type; 
 
//------------------------------------------------------------------------
// Class governor
//------------------------------------------------------------------------

//! The class handles access to the single instance of market, and to TLS to keep scheduler instances.
/** It also supports automatic on-demand initialization of the TBB scheduler.
    The class contains only static data members and methods.*/
class governor {
private:
    friend class __TBB_InitOnce;
    friend class market;

    // TODO: consider using thread_local (measure performance and side effects) 
    //! TLS for scheduler instances associated with individual threads
    static basic_tls<thread_data*> theTLS; 

    //! Caches the maximal level of parallelism supported by the hardware
    static unsigned DefaultNumberOfThreads;

    //! Caches the size of OS regular memory page 
    static std::size_t DefaultPageSize; 
 
    // TODO (TBB_REVAMP_TODO): reconsider constant names 
    static rml::tbb_factory theRMLServerFactory;

    static bool UsePrivateRML;

    // Flags for runtime-specific conditions
    static cpu_features_type cpu_features; 
    static bool is_rethrow_broken;

    //! Create key for thread-local storage and initialize RML.
    static void acquire_resources ();

    //! Destroy the thread-local storage key and deinitialize RML.
    static void release_resources ();

    static rml::tbb_server* create_rml_server ( rml::tbb_client& );

public:
    static unsigned default_num_threads () {
        // No memory fence required, because at worst each invoking thread calls AvailableHwConcurrency once.
        return DefaultNumberOfThreads ? DefaultNumberOfThreads :
                                        DefaultNumberOfThreads = AvailableHwConcurrency();
    }
    static std::size_t default_page_size () { 
        return DefaultPageSize ? DefaultPageSize : 
                                 DefaultPageSize = DefaultSystemPageSize(); 
    } 
    static void one_time_init();
    //! Processes scheduler initialization request (possibly nested) in an external thread 
    /** If necessary creates new instance of arena and/or local scheduler.
        The auto_init argument specifies if the call is due to automatic initialization. **/
    static void init_external_thread(); 

    //! The routine to undo automatic initialization. 
    /** The signature is written with void* so that the routine 
        can be the destructor argument to pthread_key_create. */ 
    static void auto_terminate(void* tls); 

    //! Obtain the thread-local instance of the thread data. 
    /** If the scheduler has not been initialized yet, initialization is done automatically. 
        Note that auto-initialized scheduler instance is destroyed only when its thread terminates. **/ 
    static thread_data* get_thread_data() { 
        thread_data* td = theTLS.get(); 
        if (td) { 
            return td; 
        } 
        init_external_thread(); 
        td = theTLS.get(); 
        __TBB_ASSERT(td, NULL); 
        return td; 
    } 

    static void set_thread_data(thread_data& td) { 
        theTLS.set(&td); 
    }

    static void clear_thread_data() { 
        theTLS.set(nullptr); 
    }

    static thread_data* get_thread_data_if_initialized () { 
        return theTLS.get(); 
    }

    static bool is_thread_data_set(thread_data* td) { 
        return theTLS.get() == td; 
    }

    //! Undo automatic initialization if necessary; call when a thread exits.
    static void terminate_external_thread() { 
        auto_terminate(get_thread_data_if_initialized()); 
    }

    static void initialize_rml_factory ();

    static bool does_client_join_workers (const rml::tbb_client &client); 

    static bool speculation_enabled() { return cpu_features.rtm_enabled; } 

    static bool wait_package_enabled() { return cpu_features.waitpkg_enabled; } 
 
    static bool rethrow_exception_broken() { return is_rethrow_broken; }

    static bool is_itt_present() { 
#if __TBB_USE_ITT_NOTIFY 
        return ITT_Present; 
#else 
        return false; 
#endif 
    } 
}; // class governor

} // namespace r1 
} // namespace detail 
} // namespace tbb

#endif /* _TBB_governor_H */