[gdbsupport] Add gdb::array_view::{iterator,const_iterator}
[binutils-gdb.git] / sim / igen / misc.h
blob5bd32b079069b752c2ba7fb303dc6f0d8d105d33
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/>. */
22 #ifndef IGEN_MISC_H
23 #define IGEN_MISC_H
25 /* Frustrating header junk */
27 enum
29 default_insn_bit_size = 32,
30 max_insn_bit_size = 64,
34 #include <ctype.h>
35 #include <stdint.h>
36 #include <stdio.h>
37 #include <stdlib.h>
38 #include <string.h>
40 #include "ansidecl.h"
42 #include "filter_host.h"
44 typedef struct _line_ref line_ref;
45 struct _line_ref
47 const char *file_name;
48 int line_nr;
51 /* Error appends a new line, warning and notify do not */
52 typedef void error_func (const line_ref *line, const char *msg, ...)
53 ATTRIBUTE_PRINTF_2;
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...) \
61 do { \
62 line_ref line; \
63 line.file_name = filter_filename (__FILE__); \
64 line.line_nr = __LINE__; \
65 error (&line, EXPRESSION "\n", ## args); \
66 } while (0)
68 #define ASSERT(EXPRESSION) \
69 do { \
70 if (!(EXPRESSION)) { \
71 line_ref line; \
72 line.file_name = filter_filename (__FILE__); \
73 line.line_nr = __LINE__; \
74 error (&line, "assertion failed - %s\n", #EXPRESSION); \
75 } \
76 } while (0)
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
91 integer value).
93 If the the sentinal (NAME == NULL) its value if >= zero is returned
94 as the default. */
96 typedef struct _name_map
98 const char *name;
99 int i;
101 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 */