tbb_config.h

00001 /*
00002     Copyright 2005-2011 Intel Corporation.  All Rights Reserved.
00003 
00004     The source code contained or described herein and all documents related
00005     to the source code ("Material") are owned by Intel Corporation or its
00006     suppliers or licensors.  Title to the Material remains with Intel
00007     Corporation or its suppliers and licensors.  The Material is protected
00008     by worldwide copyright laws and treaty provisions.  No part of the
00009     Material may be used, copied, reproduced, modified, published, uploaded,
00010     posted, transmitted, distributed, or disclosed in any way without
00011     Intel's prior express written permission.
00012 
00013     No license under any patent, copyright, trade secret or other
00014     intellectual property right is granted to or conferred upon you by
00015     disclosure or delivery of the Materials, either expressly, by
00016     implication, inducement, estoppel or otherwise.  Any license under such
00017     intellectual property rights must be express and approved by Intel in
00018     writing.
00019 */
00020 
00021 #ifndef __TBB_tbb_config_H
00022 #define __TBB_tbb_config_H
00023 
00033 #ifndef TBB_USE_DEBUG
00034 #ifdef TBB_DO_ASSERT
00035 #define TBB_USE_DEBUG TBB_DO_ASSERT
00036 #else
00037 #define TBB_USE_DEBUG 0
00038 #endif /* TBB_DO_ASSERT */
00039 #else
00040 #define TBB_DO_ASSERT TBB_USE_DEBUG
00041 #endif /* TBB_USE_DEBUG */
00042 
00043 #ifndef TBB_USE_ASSERT
00044 #ifdef TBB_DO_ASSERT
00045 #define TBB_USE_ASSERT TBB_DO_ASSERT
00046 #else 
00047 #define TBB_USE_ASSERT TBB_USE_DEBUG
00048 #endif /* TBB_DO_ASSERT */
00049 #endif /* TBB_USE_ASSERT */
00050 
00051 #ifndef TBB_USE_THREADING_TOOLS
00052 #ifdef TBB_DO_THREADING_TOOLS
00053 #define TBB_USE_THREADING_TOOLS TBB_DO_THREADING_TOOLS
00054 #else 
00055 #define TBB_USE_THREADING_TOOLS TBB_USE_DEBUG
00056 #endif /* TBB_DO_THREADING_TOOLS */
00057 #endif /* TBB_USE_THREADING_TOOLS */
00058 
00059 #ifndef TBB_USE_PERFORMANCE_WARNINGS
00060 #ifdef TBB_PERFORMANCE_WARNINGS
00061 #define TBB_USE_PERFORMANCE_WARNINGS TBB_PERFORMANCE_WARNINGS
00062 #else 
00063 #define TBB_USE_PERFORMANCE_WARNINGS TBB_USE_DEBUG
00064 #endif /* TBB_PEFORMANCE_WARNINGS */
00065 #endif /* TBB_USE_PERFORMANCE_WARNINGS */
00066 
00067 #if !defined(__EXCEPTIONS) && !defined(_CPPUNWIND) && !defined(__SUNPRO_CC) || defined(_XBOX)
00068     #if TBB_USE_EXCEPTIONS
00069         #error Compilation settings do not support exception handling. Please do not set TBB_USE_EXCEPTIONS macro or set it to 0.
00070     #elif !defined(TBB_USE_EXCEPTIONS)
00071         #define TBB_USE_EXCEPTIONS 0
00072     #endif
00073 #elif !defined(TBB_USE_EXCEPTIONS)
00074     #define TBB_USE_EXCEPTIONS 1
00075 #endif
00076 
00077 #ifndef TBB_IMPLEMENT_CPP0X
00078 
00079     #if __GNUC__==4 && __GNUC_MINOR__>=4 && __GXX_EXPERIMENTAL_CXX0X__
00080         #define TBB_IMPLEMENT_CPP0X 0
00081     #else
00082         #define TBB_IMPLEMENT_CPP0X 1
00083     #endif
00084 #endif /* TBB_IMPLEMENT_CPP0X */
00085 
00086 #ifndef __TBB_DYNAMIC_LOAD_ENABLED
00087     #define __TBB_DYNAMIC_LOAD_ENABLED !__TBB_TASK_CPP_DIRECTLY_INCLUDED
00088 #elif !__TBB_DYNAMIC_LOAD_ENABLED
00089     #if _WIN32||_WIN64
00090         #define __TBB_NO_IMPLICIT_LINKAGE 1
00091         #define __TBBMALLOC_NO_IMPLICIT_LINKAGE 1
00092     #else
00093         #define __TBB_WEAK_SYMBOLS 1
00094     #endif
00095 #endif
00096 
00099 #ifndef __TBB_COUNT_TASK_NODES
00100     #define __TBB_COUNT_TASK_NODES TBB_USE_ASSERT
00101 #endif
00102 
00103 #ifndef __TBB_TASK_GROUP_CONTEXT
00104     #define __TBB_TASK_GROUP_CONTEXT 1
00105 #endif /* __TBB_TASK_GROUP_CONTEXT */
00106 
00107 #ifndef __TBB_SCHEDULER_OBSERVER
00108     #define __TBB_SCHEDULER_OBSERVER 1
00109 #endif /* __TBB_SCHEDULER_OBSERVER */
00110 
00111 #ifndef __TBB_TASK_PRIORITY
00112     #define __TBB_TASK_PRIORITY __TBB_CPF_BUILD
00113 #endif /* __TBB_TASK_PRIORITY */
00114 
00115 #if __TBB_TASK_PRIORITY && !__TBB_TASK_GROUP_CONTEXT
00116     #error __TBB_TASK_PRIORITY requires __TBB_TASK_GROUP_CONTEXT to be enabled
00117 #endif
00118 
00119 #ifdef TBB_PREVIEW_TASK_PRIORITY
00120     #if TBB_PREVIEW_TASK_PRIORITY
00121         #define __TBB_NO_IMPLICIT_LINKAGE 1
00122         #if __TBB_BUILD && !__TBB_TASK_PRIORITY
00123             #error TBB_PREVIEW_TASK_PRIORITY requires __TBB_TASK_PRIORITY to be enabled during TBB build
00124         #elif !__TBB_TASK_GROUP_CONTEXT
00125             #error TBB_PREVIEW_TASK_PRIORITY requires __TBB_TASK_GROUP_CONTEXT to be enabled
00126         #endif
00127     #endif
00128 #else
00129     #if __TBB_BUILD
00130         #define TBB_PREVIEW_TASK_PRIORITY __TBB_TASK_PRIORITY
00131     #endif
00132 #endif /* TBB_PREVIEW_TASK_PRIORITY */
00133 
00134 #if !defined(__TBB_SURVIVE_THREAD_SWITCH) && (_WIN32 || _WIN64 || __linux__)
00135     #define __TBB_SURVIVE_THREAD_SWITCH 1
00136 #endif /* __TBB_SURVIVE_THREAD_SWITCH */
00137 
00138 
00139 /* TODO: The following condition should be extended as soon as new compilers/runtimes 
00140          with std::exception_ptr support appear. */
00141 #define __TBB_EXCEPTION_PTR_PRESENT  (_MSC_VER >= 1600 || __GXX_EXPERIMENTAL_CXX0X__ && (__GNUC__==4 && __GNUC_MINOR__>=4))
00142 
00143 
00144 #ifndef TBB_USE_CAPTURED_EXCEPTION
00145     #if __TBB_EXCEPTION_PTR_PRESENT
00146         #define TBB_USE_CAPTURED_EXCEPTION 0
00147     #else
00148         #define TBB_USE_CAPTURED_EXCEPTION 1
00149     #endif
00150 #else /* defined TBB_USE_CAPTURED_EXCEPTION */
00151     #if !TBB_USE_CAPTURED_EXCEPTION && !__TBB_EXCEPTION_PTR_PRESENT
00152         #error Current runtime does not support std::exception_ptr. Set TBB_USE_CAPTURED_EXCEPTION and make sure that your code is ready to catch tbb::captured_exception.
00153     #endif
00154 #endif /* defined TBB_USE_CAPTURED_EXCEPTION */
00155 
00156 
00157 #ifndef __TBB_DEFAULT_PARTITIONER
00158 #if TBB_DEPRECATED
00159 
00160 #define __TBB_DEFAULT_PARTITIONER tbb::simple_partitioner
00161 #else
00162 
00163 #define __TBB_DEFAULT_PARTITIONER tbb::auto_partitioner
00164 #endif /* TBB_DEFAULT_PARTITIONER */
00165 #endif /* !defined(__TBB_DEFAULT_PARTITIONER */
00166 
00169 #if __GNUC__==4 && __GNUC_MINOR__>=4 && !defined(__INTEL_COMPILER)
00170     #define __TBB_GCC_WARNING_SUPPRESSION_ENABLED 1
00171 #endif
00172 
00179 #if _MSC_VER && __INTEL_COMPILER && (__INTEL_COMPILER<1110 || __INTEL_COMPILER==1110 && __INTEL_COMPILER_BUILD_DATE < 20091012)
00180 
00183     #define __TBB_DEFAULT_DTOR_THROW_SPEC_BROKEN 1
00184 #endif
00185 
00186 #if defined(_MSC_VER) && _MSC_VER < 1500 && !defined(__INTEL_COMPILER)
00187 
00189     #define __TBB_TEMPLATE_FRIENDS_BROKEN 1
00190 #endif
00191 
00192 #if __GLIBC__==2 && __GLIBC_MINOR__==3 || __MINGW32__
00194 
00195     #define __TBB_THROW_ACROSS_MODULE_BOUNDARY_BROKEN 1
00196 #endif
00197 
00198 #if (_WIN32||_WIN64) && __INTEL_COMPILER == 1110
00199 
00200     #define __TBB_ICL_11_1_CODE_GEN_BROKEN 1
00201 #endif
00202 
00203 #if __GNUC__==3 && __GNUC_MINOR__==3 && !defined(__INTEL_COMPILER)
00204 
00205     #define __TBB_GCC_3_3_PROTECTED_BROKEN 1
00206 #endif
00207 
00208 #if __MINGW32__ && (__GNUC__<4 || __GNUC__==4 && __GNUC_MINOR__<2)
00209 
00211     #define __TBB_SSE_STACK_ALIGNMENT_BROKEN 1
00212 #endif
00213 
00214 #if __GNUC__==4 && __GNUC_MINOR__==3 && __GNUC_PATCHLEVEL__==0
00215     // GCC of this version may rashly ignore control dependencies
00216     #define __TBB_GCC_OPTIMIZER_ORDERING_BROKEN 1
00217 #endif
00218 
00219 #if __FreeBSD__
00220 
00222     #define __TBB_PRIO_INHERIT_BROKEN 1
00223 
00226     #define __TBB_PLACEMENT_NEW_EXCEPTION_SAFETY_BROKEN 1
00227 #endif /* __FreeBSD__ */
00228 
00229 #if (__linux__ || __APPLE__) && __i386__ && defined(__INTEL_COMPILER)
00230 
00232     #define __TBB_ICC_ASM_VOLATILE_BROKEN 1
00233 #endif
00234 
00235 #endif /* __TBB_tbb_config_H */

Copyright © 2005-2011 Intel Corporation. All Rights Reserved.

Intel, Pentium, Intel Xeon, Itanium, Intel XScale and VTune are registered trademarks or trademarks of Intel Corporation or its subsidiaries in the United States and other countries.

* Other names and brands may be claimed as the property of others.