// Copyright 2024 The Pigweed Authors // // 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 // // https://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 PIGWEED_LIBCPP___ASSERTION_HANDLER #define PIGWEED_LIBCPP___ASSERTION_HANDLER #include <__config> #include <__verbose_abort> #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header #endif #if _LIBCPP_HARDENING_MODE == _LIBCPP_HARDENING_MODE_DEBUG #define _LIBCPP_ASSERTION_HANDLER(message) _LIBCPP_VERBOSE_ABORT("%s", message) #else // TODO: https://pwbug.dev/298822102 - Use `__builtin_verbose_trap(message)` // once that becomes available. #define _LIBCPP_ASSERTION_HANDLER(message) ((void)message, __builtin_trap()) #endif // _LIBCPP_HARDENING_MODE == _LIBCPP_HARDENING_MODE_DEBUG #endif // PIGWEED_LIBCPP___ASSERTION_HANDLER