1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
/* OS ABI variant handling for GDB and gdbserver.
Copyright (C) 2001-2024 Free Software Foundation, Inc.
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
the Free Software Foundation; either version 3 of the License, or
(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
along with this program. If not, see <http://www.gnu.org/licenses/>. */
#include "gdbsupport/osabi.h"
/* Names associated with each osabi. */
struct osabi_names
{
/* The "pretty" name. */
const char *pretty;
/* The triplet regexp, or NULL if not known. */
const char *regexp;
};
/* This table matches the indices assigned to enum gdb_osabi. Keep
them in sync. */
static const struct osabi_names gdb_osabi_names[] =
{
#define GDB_OSABI_DEF_FIRST(Enum, Name, Regex) \
{ Name, Regex },
#define GDB_OSABI_DEF(Enum, Name, Regex) \
{ Name, Regex },
#define GDB_OSABI_DEF_LAST(Enum, Name, Regex) \
{ Name, Regex }
#include "gdbsupport/osabi.def"
#undef GDB_OSABI_DEF_LAST
#undef GDB_OSABI_DEF
#undef GDB_OSABI_DEF_FIRST
};
/* See gdbsupport/osabi.h. */
const char *
gdbarch_osabi_name (enum gdb_osabi osabi)
{
if (osabi >= GDB_OSABI_UNKNOWN && osabi < GDB_OSABI_INVALID)
return gdb_osabi_names[osabi].pretty;
return gdb_osabi_names[GDB_OSABI_INVALID].pretty;
}
/* See gdbsupport/osabi.h. */
enum gdb_osabi
osabi_from_tdesc_string (const char *name)
{
int i;
for (i = 0; i < ARRAY_SIZE (gdb_osabi_names); i++)
if (strcmp (name, gdb_osabi_names[i].pretty) == 0)
{
/* See note above: the name table matches the indices assigned
to enum gdb_osabi. */
enum gdb_osabi osabi = (enum gdb_osabi) i;
if (osabi == GDB_OSABI_INVALID)
return GDB_OSABI_UNKNOWN;
else
return osabi;
}
return GDB_OSABI_UNKNOWN;
}
/* See gdbsupport/osabi.h. */
const char *
osabi_triplet_regexp (enum gdb_osabi osabi)
{
if (osabi >= GDB_OSABI_UNKNOWN && osabi < GDB_OSABI_INVALID)
return gdb_osabi_names[osabi].regexp;
return gdb_osabi_names[GDB_OSABI_INVALID].regexp;
}
|