gdb: add target_ops::supports_displaced_step
[deliverable/binutils-gdb.git] / gdbsupport / gdb_assert.h
CommitLineData
6751bfc9 1/* GDB-friendly replacement for <assert.h>.
b811d2c2 2 Copyright (C) 2000-2020 Free Software Foundation, Inc.
6751bfc9
MK
3
4 This file is part of GDB.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
a9762ec7 8 the Free Software Foundation; either version 3 of the License, or
6751bfc9
MK
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
a9762ec7 17 along with this program. If not, see <http://www.gnu.org/licenses/>. */
6751bfc9 18
1a5c2598
TT
19#ifndef COMMON_GDB_ASSERT_H
20#define COMMON_GDB_ASSERT_H
6751bfc9 21
70054538
CB
22#include "errors.h"
23
f5afdc18
TT
24/* A static assertion. This will cause a compile-time error if EXPR,
25 which must be a compile-time constant, is false. */
26
ed9376bd 27#define gdb_static_assert(expr) static_assert (expr, "")
f5afdc18 28
38266776
AC
29/* PRAGMATICS: "gdb_assert.h":gdb_assert() is a lower case (rather
30 than upper case) macro since that provides the closest fit to the
31 existing lower case macro <assert.h>:assert() that it is
0963b4bd 32 replacing. */
38266776 33
6751bfc9
MK
34#define gdb_assert(expr) \
35 ((void) ((expr) ? 0 : \
df049a58 36 (gdb_assert_fail (#expr, __FILE__, __LINE__, FUNCTION_NAME), 0)))
6751bfc9 37
f3574227 38/* This prints an "Assertion failed" message, asking the user if they
6751bfc9 39 want to continue, dump core, or just exit. */
df049a58 40#if defined (FUNCTION_NAME)
93ec1121 41#define gdb_assert_fail(assertion, file, line, function) \
3e43a32a 42 internal_error (file, line, _("%s: Assertion `%s' failed."), \
93ec1121
AC
43 function, assertion)
44#else
6751bfc9 45#define gdb_assert_fail(assertion, file, line, function) \
3e43a32a 46 internal_error (file, line, _("Assertion `%s' failed."), \
6751bfc9 47 assertion)
93ec1121 48#endif
6751bfc9 49
f3574227
DE
50/* The canonical form of gdb_assert (0).
51 MESSAGE is a string to include in the error message. */
52
df049a58 53#if defined (FUNCTION_NAME)
f3574227 54#define gdb_assert_not_reached(message) \
df049a58 55 internal_error (__FILE__, __LINE__, "%s: %s", FUNCTION_NAME, _(message))
f3574227
DE
56#else
57#define gdb_assert_not_reached(message) \
58 internal_error (__FILE__, __LINE__, _(message))
59#endif
60
1a5c2598 61#endif /* COMMON_GDB_ASSERT_H */
This page took 1.30598 seconds and 4 git commands to generate.