2016-07-20 16:17:47 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// Copyright (c) 2015 Microsoft Corporation. All rights reserved.
|
|
|
|
//
|
|
|
|
// This code is licensed under the MIT License (MIT).
|
|
|
|
//
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
// THE SOFTWARE.
|
|
|
|
//
|
2015-11-20 19:03:00 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef GSL_CONTRACTS_H
|
|
|
|
#define GSL_CONTRACTS_H
|
|
|
|
|
|
|
|
#include <exception>
|
2017-11-28 10:13:49 -05:00
|
|
|
#include <stdexcept> // for logic_error
|
2015-11-20 19:03:00 -05:00
|
|
|
|
2018-08-13 00:44:17 -04:00
|
|
|
//
|
|
|
|
// make suppress attributes parse for some compilers
|
2018-10-15 09:42:18 -04:00
|
|
|
// Hopefully temporary until suppression standardization occurs
|
2018-08-13 00:44:17 -04:00
|
|
|
//
|
|
|
|
#if defined(__clang__)
|
|
|
|
#define GSL_SUPPRESS(x) [[gsl::suppress("x")]]
|
|
|
|
#else
|
2018-10-15 09:42:18 -04:00
|
|
|
#if defined (_MSC_VER)
|
|
|
|
#define GSL_SUPPRESS(x) [[gsl::suppress(x)]]
|
|
|
|
#else
|
2018-08-13 00:44:17 -04:00
|
|
|
#define GSL_SUPPRESS(x)
|
|
|
|
#endif // _MSC_VER
|
2018-10-15 09:42:18 -04:00
|
|
|
#endif // __clang__
|
2018-08-13 00:44:17 -04:00
|
|
|
|
2018-03-15 19:00:08 -04:00
|
|
|
//
|
|
|
|
// Temporary until MSVC STL supports no-exceptions mode.
|
|
|
|
// Currently terminate is a no-op in this mode, so we add termination behavior back
|
|
|
|
//
|
|
|
|
#if defined(_MSC_VER) && defined(_HAS_EXCEPTIONS) && !_HAS_EXCEPTIONS
|
|
|
|
#define GSL_MSVC_USE_STL_NOEXCEPTION_WORKAROUND
|
2018-07-31 20:30:43 -04:00
|
|
|
#include <intrin.h>
|
|
|
|
#define RANGE_CHECKS_FAILURE 0
|
2018-03-15 19:00:08 -04:00
|
|
|
#endif
|
|
|
|
|
2015-11-20 19:03:00 -05:00
|
|
|
//
|
|
|
|
// There are three configuration options for this GSL implementation's behavior
|
|
|
|
// when pre/post conditions on the GSL types are violated:
|
|
|
|
//
|
|
|
|
// 1. GSL_TERMINATE_ON_CONTRACT_VIOLATION: std::terminate will be called (default)
|
|
|
|
// 2. GSL_THROW_ON_CONTRACT_VIOLATION: a gsl::fail_fast exception will be thrown
|
2016-07-20 16:17:47 -04:00
|
|
|
// 3. GSL_UNENFORCED_ON_CONTRACT_VIOLATION: nothing happens
|
2015-11-20 19:03:00 -05:00
|
|
|
//
|
2017-03-20 12:30:14 -04:00
|
|
|
#if !(defined(GSL_THROW_ON_CONTRACT_VIOLATION) || defined(GSL_TERMINATE_ON_CONTRACT_VIOLATION) || \
|
2016-07-20 16:17:47 -04:00
|
|
|
defined(GSL_UNENFORCED_ON_CONTRACT_VIOLATION))
|
2017-04-20 10:51:37 -04:00
|
|
|
#define GSL_TERMINATE_ON_CONTRACT_VIOLATION
|
2015-11-20 19:03:00 -05:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#define GSL_STRINGIFY_DETAIL(x) #x
|
|
|
|
#define GSL_STRINGIFY(x) GSL_STRINGIFY_DETAIL(x)
|
|
|
|
|
2016-09-28 11:43:13 -04:00
|
|
|
#if defined(__clang__) || defined(__GNUC__)
|
2017-04-20 10:51:37 -04:00
|
|
|
#define GSL_LIKELY(x) __builtin_expect(!!(x), 1)
|
|
|
|
#define GSL_UNLIKELY(x) __builtin_expect(!!(x), 0)
|
2016-09-28 11:43:13 -04:00
|
|
|
#else
|
2017-04-20 10:51:37 -04:00
|
|
|
#define GSL_LIKELY(x) (!!(x))
|
|
|
|
#define GSL_UNLIKELY(x) (!!(x))
|
2017-03-20 12:30:14 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
//
|
|
|
|
// GSL_ASSUME(cond)
|
|
|
|
//
|
|
|
|
// Tell the optimizer that the predicate cond must hold. It is unspecified
|
|
|
|
// whether or not cond is actually evaluated.
|
|
|
|
//
|
|
|
|
#ifdef _MSC_VER
|
2017-04-20 10:51:37 -04:00
|
|
|
#define GSL_ASSUME(cond) __assume(cond)
|
2017-03-20 12:30:14 -04:00
|
|
|
#elif defined(__GNUC__)
|
2017-04-20 10:51:37 -04:00
|
|
|
#define GSL_ASSUME(cond) ((cond) ? static_cast<void>(0) : __builtin_unreachable())
|
2017-03-20 12:30:14 -04:00
|
|
|
#else
|
2018-02-11 15:16:39 -05:00
|
|
|
#define GSL_ASSUME(cond) static_cast<void>((cond) ? 0 : 0)
|
2016-09-28 11:43:13 -04:00
|
|
|
#endif
|
|
|
|
|
2015-11-20 19:03:00 -05:00
|
|
|
//
|
|
|
|
// GSL.assert: assertions
|
|
|
|
//
|
|
|
|
|
|
|
|
namespace gsl
|
|
|
|
{
|
2017-04-03 14:09:47 -04:00
|
|
|
struct fail_fast : public std::logic_error
|
2015-11-20 19:03:00 -05:00
|
|
|
{
|
2017-04-03 14:09:47 -04:00
|
|
|
explicit fail_fast(char const* const message) : std::logic_error(message) {}
|
2015-11-20 19:03:00 -05:00
|
|
|
};
|
2018-03-15 19:00:08 -04:00
|
|
|
|
|
|
|
namespace details
|
|
|
|
{
|
|
|
|
#if defined(GSL_MSVC_USE_STL_NOEXCEPTION_WORKAROUND)
|
|
|
|
|
2018-05-02 19:19:37 -04:00
|
|
|
typedef void (__cdecl *terminate_handler)();
|
2018-07-31 20:30:43 -04:00
|
|
|
|
2018-08-13 00:44:17 -04:00
|
|
|
GSL_SUPPRESS(f.6) // NO-FORMAT: attribute
|
2018-07-31 20:30:43 -04:00
|
|
|
[[noreturn]] inline void __cdecl default_terminate_handler()
|
|
|
|
{
|
|
|
|
__fastfail(RANGE_CHECKS_FAILURE);
|
|
|
|
}
|
2018-03-15 19:00:08 -04:00
|
|
|
|
|
|
|
inline gsl::details::terminate_handler& get_terminate_handler() noexcept
|
|
|
|
{
|
2018-07-31 20:30:43 -04:00
|
|
|
static terminate_handler handler = &default_terminate_handler;
|
2018-03-15 19:00:08 -04:00
|
|
|
return handler;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
[[noreturn]] inline void terminate() noexcept
|
|
|
|
{
|
|
|
|
#if defined(GSL_MSVC_USE_STL_NOEXCEPTION_WORKAROUND)
|
|
|
|
(*gsl::details::get_terminate_handler())();
|
|
|
|
#else
|
|
|
|
std::terminate();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
#if defined(GSL_TERMINATE_ON_CONTRACT_VIOLATION)
|
|
|
|
|
|
|
|
template <typename Exception>
|
2018-08-13 00:44:17 -04:00
|
|
|
[[noreturn]] void throw_exception(Exception&&) noexcept
|
2018-03-15 19:00:08 -04:00
|
|
|
{
|
|
|
|
gsl::details::terminate();
|
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
template <typename Exception>
|
|
|
|
[[noreturn]] void throw_exception(Exception&& exception)
|
|
|
|
{
|
2018-04-24 21:35:12 -04:00
|
|
|
throw std::forward<Exception>(exception);
|
2018-03-15 19:00:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
} // namespace details
|
|
|
|
} // namespace gsl
|
2015-11-20 19:03:00 -05:00
|
|
|
|
2016-02-15 19:57:04 -05:00
|
|
|
#if defined(GSL_THROW_ON_CONTRACT_VIOLATION)
|
|
|
|
|
2017-04-20 10:51:37 -04:00
|
|
|
#define GSL_CONTRACT_CHECK(type, cond) \
|
|
|
|
(GSL_LIKELY(cond) ? static_cast<void>(0) \
|
2018-03-15 19:00:08 -04:00
|
|
|
: gsl::details::throw_exception(gsl::fail_fast( \
|
|
|
|
"GSL: " type " failure at " __FILE__ ": " GSL_STRINGIFY(__LINE__))))
|
2015-11-20 19:03:00 -05:00
|
|
|
|
|
|
|
#elif defined(GSL_TERMINATE_ON_CONTRACT_VIOLATION)
|
|
|
|
|
2018-03-15 19:00:08 -04:00
|
|
|
#define GSL_CONTRACT_CHECK(type, cond) \
|
|
|
|
(GSL_LIKELY(cond) ? static_cast<void>(0) : gsl::details::terminate())
|
2015-11-20 19:03:00 -05:00
|
|
|
|
|
|
|
#elif defined(GSL_UNENFORCED_ON_CONTRACT_VIOLATION)
|
|
|
|
|
2017-04-20 10:51:37 -04:00
|
|
|
#define GSL_CONTRACT_CHECK(type, cond) GSL_ASSUME(cond)
|
2015-11-20 19:03:00 -05:00
|
|
|
|
2016-07-20 16:17:47 -04:00
|
|
|
#endif
|
2015-11-20 19:03:00 -05:00
|
|
|
|
2017-03-20 12:30:14 -04:00
|
|
|
#define Expects(cond) GSL_CONTRACT_CHECK("Precondition", cond)
|
|
|
|
#define Ensures(cond) GSL_CONTRACT_CHECK("Postcondition", cond)
|
|
|
|
|
2015-11-20 19:03:00 -05:00
|
|
|
#endif // GSL_CONTRACTS_H
|