
Unlike `verbose_abort`, this function merely logs the error but does not terminate execution. It is intended to make it possible to implement the `observe` semantic for Hardening.
46 lines
1.6 KiB
C++
46 lines
1.6 KiB
C++
// -*- C++ -*-
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef _LIBCPP___LOG_HARDENING_FAILURE
|
|
#define _LIBCPP___LOG_HARDENING_FAILURE
|
|
|
|
#include <__config>
|
|
|
|
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
|
|
# pragma GCC system_header
|
|
#endif
|
|
|
|
_LIBCPP_BEGIN_NAMESPACE_STD
|
|
|
|
// This function should never be called directly from the code -- it should only be called through the
|
|
// `_LIBCPP_LOG_HARDENING_FAILURE` macro.
|
|
_LIBCPP_AVAILABILITY_LOG_HARDENING_FAILURE _LIBCPP_EXPORTED_FROM_ABI void
|
|
__log_hardening_failure(const char* __message) _NOEXCEPT;
|
|
|
|
// _LIBCPP_LOG_HARDENING_FAILURE(message)
|
|
//
|
|
// This macro is used to log an error without terminating the program (as is the case for hardening failures if the
|
|
// `observe` assertion semantic is used, for example).
|
|
|
|
#if !defined(_LIBCPP_LOG_HARDENING_FAILURE)
|
|
|
|
# if !_LIBCPP_AVAILABILITY_HAS_LOG_HARDENING_FAILURE
|
|
// The decltype is there to suppress -Wunused warnings in this configuration.
|
|
void __use(const char*);
|
|
# define _LIBCPP_LOG_HARDENING_FAILURE(__message) (decltype(::std::__use(__message))())
|
|
# else
|
|
# define _LIBCPP_LOG_HARDENING_FAILURE(__message) ::std::__log_hardening_failure(__message)
|
|
# endif
|
|
|
|
#endif // !defined(_LIBCPP_LOG_HARDENING_FAILURE)
|
|
|
|
_LIBCPP_END_NAMESPACE_STD
|
|
|
|
#endif // _LIBCPP___LOG_HARDENING_FAILURE
|