]> git.sesse.net Git - casparcg/blob - tbb30_20100406oss/include/tbb/tbb_stddef.h
a4c938e6db4277f8ca8a5f598efb9731fb6962bc
[casparcg] / tbb30_20100406oss / include / tbb / tbb_stddef.h
1 /*
2     Copyright 2005-2010 Intel Corporation.  All Rights Reserved.
3
4     This file is part of Threading Building Blocks.
5
6     Threading Building Blocks is free software; you can redistribute it
7     and/or modify it under the terms of the GNU General Public License
8     version 2 as published by the Free Software Foundation.
9
10     Threading Building Blocks is distributed in the hope that it will be
11     useful, but WITHOUT ANY WARRANTY; without even the implied warranty
12     of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License
16     along with Threading Building Blocks; if not, write to the Free Software
17     Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18
19     As a special exception, you may use this file as part of a free software
20     library without restriction.  Specifically, if other files instantiate
21     templates or use macros or inline functions from this file, or you compile
22     this file and link it with other files to produce an executable, this
23     file does not by itself cause the resulting executable to be covered by
24     the GNU General Public License.  This exception does not however
25     invalidate any other reasons why the executable file might be covered by
26     the GNU General Public License.
27 */
28
29 #ifndef __TBB_tbb_stddef_H
30 #define __TBB_tbb_stddef_H
31
32 // Marketing-driven product version
33 #define TBB_VERSION_MAJOR 3
34 #define TBB_VERSION_MINOR 0
35
36 // Engineering-focused interface version
37 #define TBB_INTERFACE_VERSION 5000
38 #define TBB_INTERFACE_VERSION_MAJOR TBB_INTERFACE_VERSION/1000
39
40 // The oldest major interface version still supported
41 // To be used in SONAME, manifests, etc.
42 #define TBB_COMPATIBLE_INTERFACE_VERSION 2
43
44 #define __TBB_STRING_AUX(x) #x
45 #define __TBB_STRING(x) __TBB_STRING_AUX(x)
46
47 // We do not need defines below for resource processing on windows
48 #if !defined RC_INVOKED
49
50 // Define groups for Doxygen documentation
51 /**
52  * @defgroup algorithms         Algorithms
53  * @defgroup containers         Containers
54  * @defgroup memory_allocation  Memory Allocation
55  * @defgroup synchronization    Synchronization
56  * @defgroup timing             Timing
57  * @defgroup task_scheduling    Task Scheduling
58  */
59
60 // Simple text that is displayed on the main page of Doxygen documentation.
61 /**
62  * \mainpage Main Page
63  *
64  * Click the tabs above for information about the
65  * - <a href="./modules.html">Modules</a> (groups of functionality) implemented by the library 
66  * - <a href="./annotated.html">Classes</a> provided by the library
67  * - <a href="./files.html">Files</a> constituting the library.
68  * .
69  * Please note that significant part of TBB functionality is implemented in the form of
70  * template functions, descriptions of which are not accessible on the <a href="./annotated.html">Classes</a>
71  * tab. Use <a href="./modules.html">Modules</a> or <a href="./namespacemembers.html">Namespace/Namespace Members</a>
72  * tabs to find them.
73  *
74  * Additional pieces of information can be found here
75  * - \subpage concepts
76  * .
77  */
78
79 /** \page concepts TBB concepts
80     
81     A concept is a set of requirements to a type, which are necessary and sufficient
82     for the type to model a particular behavior or a set of behaviors. Some concepts 
83     are specific to a particular algorithm (e.g. algorithm body), while other ones 
84     are common to several algorithms (e.g. range concept). 
85
86     All TBB algorithms make use of different classes implementing various concepts.
87     Implementation classes are supplied by the user as type arguments of template 
88     parameters and/or as objects passed as function call arguments. The library 
89     provides predefined  implementations of some concepts (e.g. several kinds of 
90     \ref range_req "ranges"), while other ones must always be implemented by the user. 
91     
92     TBB defines a set of minimal requirements each concept must conform to. Here is 
93     the list of different concepts hyperlinked to the corresponding requirements specifications:
94     - \subpage range_req
95     - \subpage parallel_do_body_req
96     - \subpage parallel_for_body_req
97     - \subpage parallel_reduce_body_req
98     - \subpage parallel_scan_body_req
99     - \subpage parallel_sort_iter_req
100 **/
101
102 // Define preprocessor symbols used to determine architecture
103 #if _WIN32||_WIN64
104 #   if defined(_M_AMD64)
105 #       define __TBB_x86_64 1
106 #   elif defined(_M_IA64)
107 #       define __TBB_ipf 1
108 #   elif defined(_M_IX86)||defined(__i386__) // the latter for MinGW support
109 #       define __TBB_x86_32 1
110 #   endif
111 #else /* Assume generic Unix */
112 #   if !__linux__ && !__APPLE__
113 #       define __TBB_generic_os 1
114 #   endif
115 #   if __x86_64__
116 #       define __TBB_x86_64 1
117 #   elif __ia64__
118 #       define __TBB_ipf 1
119 #   elif __i386__||__i386  // __i386 is for Sun OS
120 #       define __TBB_x86_32 1
121 #   else
122 #       define __TBB_generic_arch 1
123 #   endif
124 #endif
125
126 #if _MSC_VER
127 // define the parts of stdint.h that are needed, but put them inside tbb::internal
128 namespace tbb {
129 namespace internal {
130     typedef __int8 int8_t;
131     typedef __int16 int16_t;
132     typedef __int32 int32_t;
133     typedef __int64 int64_t;
134     typedef unsigned __int8 uint8_t;
135     typedef unsigned __int16 uint16_t;
136     typedef unsigned __int32 uint32_t;
137     typedef unsigned __int64 uint64_t;
138 } // namespace internal
139 } // namespace tbb
140 #else
141 #include <stdint.h>
142 #endif /* _MSC_VER */
143
144 #if _MSC_VER >=1400
145 #define __TBB_EXPORTED_FUNC   __cdecl
146 #define __TBB_EXPORTED_METHOD __thiscall
147 #else
148 #define __TBB_EXPORTED_FUNC
149 #define __TBB_EXPORTED_METHOD
150 #endif
151
152 #include <cstddef>      /* Need size_t and ptrdiff_t (the latter on Windows only) from here. */
153
154 #if _MSC_VER
155 #define __TBB_tbb_windef_H
156 #include "_tbb_windef.h"
157 #undef __TBB_tbb_windef_H
158 #endif
159
160 #include "tbb_config.h"
161
162 //! The namespace tbb contains all components of the library.
163 namespace tbb {
164     //! Type for an assertion handler
165     typedef void(*assertion_handler_type)( const char* filename, int line, const char* expression, const char * comment );
166
167 #if TBB_USE_ASSERT
168
169 //! Assert that x is true.
170 /** If x is false, print assertion failure message.  
171     If the comment argument is not NULL, it is printed as part of the failure message.  
172     The comment argument has no other effect. */
173 #define __TBB_ASSERT(predicate,message) ((predicate)?((void)0):tbb::assertion_failure(__FILE__,__LINE__,#predicate,message))
174 #define __TBB_ASSERT_EX __TBB_ASSERT
175
176     //! Set assertion handler and return previous value of it.
177     assertion_handler_type __TBB_EXPORTED_FUNC set_assertion_handler( assertion_handler_type new_handler );
178
179     //! Process an assertion failure.
180     /** Normally called from __TBB_ASSERT macro.
181         If assertion handler is null, print message for assertion failure and abort.
182         Otherwise call the assertion handler. */
183     void __TBB_EXPORTED_FUNC assertion_failure( const char* filename, int line, const char* expression, const char* comment );
184
185 #else
186
187 //! No-op version of __TBB_ASSERT.
188 #define __TBB_ASSERT(predicate,comment) ((void)0)
189 //! "Extended" version is useful to suppress warnings if a variable is only used with an assert
190 #define __TBB_ASSERT_EX(predicate,comment) ((void)(1 && (predicate)))
191
192 #endif /* TBB_USE_ASSERT */
193
194 //! The function returns the interface version of the TBB shared library being used.
195 /**
196  * The version it returns is determined at runtime, not at compile/link time.
197  * So it can be different than the value of TBB_INTERFACE_VERSION obtained at compile time.
198  */
199 extern "C" int __TBB_EXPORTED_FUNC TBB_runtime_interface_version();
200
201 //! Dummy type that distinguishes splitting constructor from copy constructor.
202 /**
203  * See description of parallel_for and parallel_reduce for example usages.
204  * @ingroup algorithms
205  */
206 class split {
207 };
208
209 /**
210  * @cond INTERNAL
211  * @brief Identifiers declared inside namespace internal should never be used directly by client code.
212  */
213 namespace internal {
214
215 using std::size_t;
216
217 //! Compile-time constant that is upper bound on cache line/sector size.
218 /** It should be used only in situations where having a compile-time upper 
219     bound is more useful than a run-time exact answer.
220     @ingroup memory_allocation */
221 const size_t NFS_MaxLineSize = 128;
222
223 template<class T, int S>
224 struct padded_base : T {
225     char pad[NFS_MaxLineSize - sizeof(T) % NFS_MaxLineSize];
226 };
227 template<class T> struct padded_base<T, 0> : T {};
228
229 //! Pads type T to fill out to a multiple of cache line size.
230 template<class T>
231 struct padded : padded_base<T, sizeof(T)> {};
232
233 //! Extended variant of the standard offsetof macro
234 /** The standard offsetof macro is not sufficient for TBB as it can be used for
235     POD-types only. The constant 0x1000 (not NULL) is necessary to appease GCC. **/
236 #define __TBB_offsetof(class_name, member_name) \
237     ((ptrdiff_t)&(reinterpret_cast<class_name*>(0x1000)->member_name) - 0x1000)
238
239 //! Returns address of the object containing a member with the given name and address
240 #define __TBB_get_object_ref(class_name, member_name, member_addr) \
241     (*reinterpret_cast<class_name*>((char*)member_addr - __TBB_offsetof(class_name, member_name)))
242
243 //! Throws std::runtime_error with what() returning error_code description prefixed with aux_info
244 void __TBB_EXPORTED_FUNC handle_perror( int error_code, const char* aux_info );
245
246 #if TBB_USE_EXCEPTIONS
247     #define __TBB_TRY try
248     #define __TBB_CATCH(e) catch(e)
249     #define __TBB_THROW(e) throw e
250     #define __TBB_RETHROW() throw
251 #else /* !TBB_USE_EXCEPTIONS */
252     inline bool __TBB_false() { return false; }
253     #define __TBB_TRY
254     #define __TBB_CATCH(e) if ( tbb::internal::__TBB_false() )
255     #define __TBB_THROW(e) ((void)0)
256     #define __TBB_RETHROW() ((void)0)
257 #endif /* !TBB_USE_EXCEPTIONS */
258
259 //! Report a runtime warning.
260 void __TBB_EXPORTED_FUNC runtime_warning( const char* format, ... );
261
262 #if TBB_USE_ASSERT
263 //! Set p to invalid pointer value.
264 template<typename T>
265 inline void poison_pointer( T* & p ) {
266     p = reinterpret_cast<T*>(-1);
267 }
268 #else
269 template<typename T>
270 inline void poison_pointer( T* ) {/*do nothing*/}
271 #endif /* TBB_USE_ASSERT */
272
273 //! Base class for types that should not be assigned.
274 class no_assign {
275     // Deny assignment
276     void operator=( const no_assign& );
277 public:
278 #if __GNUC__
279     //! Explicitly define default construction, because otherwise gcc issues gratuitous warning.
280     no_assign() {}
281 #endif /* __GNUC__ */
282 };
283
284 //! Base class for types that should not be copied or assigned.
285 class no_copy: no_assign {
286     //! Deny copy construction
287     no_copy( const no_copy& );
288 public:
289     //! Allow default construction
290     no_copy() {}
291 };
292
293 //! Class for determining type of std::allocator<T>::value_type.
294 template<typename T>
295 struct allocator_type {
296     typedef T value_type;
297 };
298
299 #if _MSC_VER
300 //! Microsoft std::allocator has non-standard extension that strips const from a type. 
301 template<typename T>
302 struct allocator_type<const T> {
303     typedef T value_type;
304 };
305 #endif
306
307 // Struct to be used as a version tag for inline functions.
308 /** Version tag can be necessary to prevent loader on Linux from using the wrong 
309     symbol in debug builds (when inline functions are compiled as out-of-line). **/
310 struct version_tag_v3 {};
311
312 typedef version_tag_v3 version_tag;
313
314 } // internal
315 //! @endcond
316
317 } // tbb
318
319 #endif /* RC_INVOKED */
320 #endif /* __TBB_tbb_stddef_H */