sim: trace: do not enable internal debug by default
[external/binutils.git] / sim / common / sim-assert.h
1 /*  This file is part of the program GDB.
2
3     Copyright (C) 1997-2015 Free Software Foundation, Inc.
4
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 3 of the License, or
8     (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License
16     along with this program.  If not, see <http://www.gnu.org/licenses/>.
17
18     */
19
20
21 #ifndef SIM_ASSERT_H
22 #define SIM_ASSERT_H
23
24 #define SIM_FILTER_PATH(FILE, PATH) \
25 do \
26   { \
27     /* strip leading path */ \
28     const char *p = (PATH); \
29     (FILE) = p; \
30     while (*p != '\0' && *p != ':') \
31       { \
32         if (*p == '/') \
33           (FILE) = p + 1; \
34         p++; \
35       } \
36   } \
37 while (0)
38
39 /* The subtle difference between SIM_ASSERT and ASSERT is that
40    SIM_ASSERT passes `sd' to sim_io_error for the SIM_DESC,
41    ASSERT passes NULL.  */
42
43 #if !defined (SIM_ASSERT)
44 #if defined (WITH_ASSERT)
45 #include "sim-io.h"
46 #define SIM_ASSERT(EXPRESSION) \
47 do \
48   { \
49     if (WITH_ASSERT) \
50       { \
51         if (!(EXPRESSION)) \
52           { \
53             /* report the failure */ \
54             const char *file; \
55             SIM_FILTER_PATH(file, __FILE__); \
56             sim_io_error (sd, "%s:%d: assertion failed - %s", \
57                           file, __LINE__, #EXPRESSION); \
58           } \
59       } \
60   } \
61 while (0)
62 #else
63 #define SIM_ASSERT(EXPRESSION) do { /*nothing*/; } while (0)
64 #endif
65 #endif
66
67 #if !defined (ASSERT)
68 #if defined (WITH_ASSERT)
69 #include "sim-io.h"
70 #define ASSERT(EXPRESSION) \
71 do \
72   { \
73     if (WITH_ASSERT) \
74       { \
75         if (!(EXPRESSION)) \
76           { \
77             /* report the failure */ \
78             const char *file; \
79             SIM_FILTER_PATH(file, __FILE__); \
80             sim_io_error (NULL, "%s:%d: assertion failed - %s", \
81                           file, __LINE__, #EXPRESSION); \
82           } \
83       } \
84   } \
85 while (0)
86 #else
87 #define ASSERT(EXPRESSION) do { /*nothing*/; } while (0)
88 #endif
89 #endif
90
91 #endif