/* 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_assert_impl_H #define __TBB_assert_impl_H #include "oneapi/tbb/detail/_config.h" #include "oneapi/tbb/detail/_utils.h" #include #include #include #include #if _MSC_VER && _DEBUG #include #endif #include #if __TBBMALLOC_BUILD namespace rml { namespace internal { #else namespace tbb { namespace detail { namespace r1 { #endif // TODO: consider extension for formatted error description string static void assertion_failure_impl(const char* location, int line, const char* expression, const char* comment) { std::fprintf(stderr, "Assertion %s failed (located in the %s function, line in file: %d)\n", expression, location, line); if (comment) { std::fprintf(stderr, "Detailed description: %s\n", comment); } #if _MSC_VER && _DEBUG if (1 == _CrtDbgReport(_CRT_ASSERT, location, line, "tbb_debug.dll", "%s\r\n%s", expression, comment?comment:"")) { _CrtDbgBreak(); } else #endif { std::fflush(stderr); std::abort(); } } // Do not move the definition into the assertion_failure function because it will require "magic statics". // It will bring a dependency on C++ runtime on some platforms while assert_impl.h is reused in tbbmalloc // that should not depend on C++ runtime static std::atomic assertion_state; void __TBB_EXPORTED_FUNC assertion_failure(const char* location, int line, const char* expression, const char* comment) { #if __TBB_MSVC_UNREACHABLE_CODE_IGNORED // Workaround for erroneous "unreachable code" during assertion throwing using call_once #pragma warning (push) #pragma warning (disable: 4702) #endif // We cannot use std::call_once because it brings a dependency on C++ runtime on some platforms // while assert_impl.h is reused in tbbmalloc that should not depend on C++ runtime atomic_do_once([&](){ assertion_failure_impl(location, line, expression, comment); }, assertion_state); #if __TBB_MSVC_UNREACHABLE_CODE_IGNORED #pragma warning (pop) #endif } //! Report a runtime warning. void runtime_warning( const char* format, ... ) { char str[1024]; std::memset(str, 0, 1024); va_list args; va_start(args, format); vsnprintf( str, 1024-1, format, args); va_end(args); fprintf(stderr, "TBB Warning: %s\n", str); } #if __TBBMALLOC_BUILD }} // namespaces rml::internal #else } // namespace r1 } // namespace detail } // namespace tbb #endif #endif // __TBB_assert_impl_H