2000-09-04 01:19:41 +08:00
|
|
|
/* GDB-friendly replacement for <assert.h>.
|
2022-01-01 22:56:03 +08:00
|
|
|
Copyright (C) 2000-2022 Free Software Foundation, Inc.
|
2000-09-04 01:19:41 +08:00
|
|
|
|
|
|
|
This file is part of GDB.
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
2007-08-24 02:08:50 +08:00
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
2000-09-04 01:19:41 +08:00
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
2007-08-24 02:08:50 +08:00
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
2000-09-04 01:19:41 +08:00
|
|
|
|
2019-01-28 03:51:36 +08:00
|
|
|
#ifndef COMMON_GDB_ASSERT_H
|
|
|
|
#define COMMON_GDB_ASSERT_H
|
2000-09-04 01:19:41 +08:00
|
|
|
|
2019-10-02 02:36:07 +08:00
|
|
|
#include "errors.h"
|
|
|
|
|
2011-11-23 05:18:38 +08:00
|
|
|
/* A static assertion. This will cause a compile-time error if EXPR,
|
|
|
|
which must be a compile-time constant, is false. */
|
|
|
|
|
2017-12-06 05:15:08 +08:00
|
|
|
#define gdb_static_assert(expr) static_assert (expr, "")
|
2011-11-23 05:18:38 +08:00
|
|
|
|
2001-03-02 01:30:05 +08:00
|
|
|
/* PRAGMATICS: "gdb_assert.h":gdb_assert() is a lower case (rather
|
|
|
|
than upper case) macro since that provides the closest fit to the
|
|
|
|
existing lower case macro <assert.h>:assert() that it is
|
2011-01-08 03:36:19 +08:00
|
|
|
replacing. */
|
2001-03-02 01:30:05 +08:00
|
|
|
|
2000-09-04 01:19:41 +08:00
|
|
|
#define gdb_assert(expr) \
|
|
|
|
((void) ((expr) ? 0 : \
|
2021-11-13 10:12:00 +08:00
|
|
|
(gdb_assert_fail (#expr, __FILE__, __LINE__, __func__), 0)))
|
2000-09-04 01:19:41 +08:00
|
|
|
|
2010-08-19 03:13:33 +08:00
|
|
|
/* This prints an "Assertion failed" message, asking the user if they
|
2000-09-04 01:19:41 +08:00
|
|
|
want to continue, dump core, or just exit. */
|
2003-05-30 05:22:45 +08:00
|
|
|
#define gdb_assert_fail(assertion, file, line, function) \
|
2011-01-06 06:22:53 +08:00
|
|
|
internal_error (file, line, _("%s: Assertion `%s' failed."), \
|
2003-05-30 05:22:45 +08:00
|
|
|
function, assertion)
|
2000-09-04 01:19:41 +08:00
|
|
|
|
2010-08-19 03:13:33 +08:00
|
|
|
/* The canonical form of gdb_assert (0).
|
|
|
|
MESSAGE is a string to include in the error message. */
|
|
|
|
|
2021-11-18 02:44:01 +08:00
|
|
|
#define gdb_assert_not_reached(message, ...) \
|
|
|
|
internal_error (__FILE__, __LINE__, _("%s: " message), __func__, \
|
|
|
|
##__VA_ARGS__)
|
2010-08-19 03:13:33 +08:00
|
|
|
|
2019-01-28 03:51:36 +08:00
|
|
|
#endif /* COMMON_GDB_ASSERT_H */
|