blob: e2d02a7886c64fc6c8afa3c0e8f60fd950291a9c [file] [log] [blame]
// 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.
#pragma once
#include "pw_assert_trap/handler.h"
#include "pw_preprocessor/arguments.h"
#define PW_HANDLE_CRASH(...) \
pw_assert_trap_interrupt_lock(); \
pw_assert_trap_HandleCheckFailure( \
__FILE__, __LINE__, __func__ PW_COMMA_ARGS(__VA_ARGS__)); \
_PW_ASSERT_TRAP_EPILOG()
#define PW_HANDLE_ASSERT_FAILURE(condition_string, ...) \
pw_assert_trap_interrupt_lock(); \
pw_assert_trap_HandleCheckFailure( \
__FILE__, __LINE__, __func__ PW_COMMA_ARGS(__VA_ARGS__)); \
_PW_ASSERT_TRAP_EPILOG()
#define PW_HANDLE_ASSERT_BINARY_COMPARE_FAILURE(arg_a_str, \
arg_a_val, \
comparison_op_str, \
arg_b_str, \
arg_b_val, \
type_fmt, \
message, \
...) \
pw_assert_trap_interrupt_lock(); \
pw_assert_trap_HandleCheckFailure(__FILE__, \
__LINE__, \
__func__, \
"Check failed: " arg_a_str " (=" type_fmt \
") " comparison_op_str " " arg_b_str \
" (=" type_fmt \
")" \
". " message, \
arg_a_val, \
arg_b_val PW_COMMA_ARGS(__VA_ARGS__)); \
_PW_ASSERT_TRAP_EPILOG()