1 /* The IGEN simulator generator for GDB, the GNU Debugger.
3 Copyright 2002-2024 Free Software Foundation, Inc.
5 Contributed by Andrew Cagney.
7 This file is part of GDB.
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
25 /* Frustrating header junk */
29 default_insn_bit_size
= 32,
30 max_insn_bit_size
= 64,
42 #include "filter_host.h"
44 typedef struct _line_ref line_ref
;
47 const char *file_name
;
51 /* Error appends a new line, warning and notify do not */
52 typedef void error_func (const line_ref
*line
, const char *msg
, ...)
55 extern error_func error ATTRIBUTE_PRINTF_2 ATTRIBUTE_NORETURN
;
56 extern error_func warning ATTRIBUTE_PRINTF_2
;
57 extern error_func notify ATTRIBUTE_PRINTF_2
;
60 #define ERROR(EXPRESSION, args...) \
63 line.file_name = filter_filename (__FILE__); \
64 line.line_nr = __LINE__; \
65 error (&line, EXPRESSION "\n", ## args); \
68 #define ASSERT(EXPRESSION) \
70 if (!(EXPRESSION)) { \
72 line.file_name = filter_filename (__FILE__); \
73 line.line_nr = __LINE__; \
74 error (&line, "assertion failed - %s\n", #EXPRESSION); \
78 #define ZALLOC(TYPE) ((TYPE*) zalloc (sizeof(TYPE)))
79 #define NZALLOC(TYPE,N) ((TYPE*) zalloc (sizeof(TYPE) * (N)))
81 extern void *zalloc (long size
);
83 extern unsigned target_a2i (int ms_bit_nr
, const char *a
);
85 extern unsigned i2target (int ms_bit_nr
, unsigned bit
);
87 extern unsigned long long a2i (const char *a
);
90 /* Try looking for name in the map table (returning the corresponding
93 If the the sentinal (NAME == NULL) its value if >= zero is returned
96 typedef struct _name_map
103 extern int name2i (const char *name
, const name_map
* map
);
105 extern const char *i2name (const int i
, const name_map
* map
);
107 #endif /* IGEN_MISC_H */