1 /* Copyright (C) 2012-2024 Free Software Foundation, Inc.
3 This file is part of GDB.
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.
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.
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/>. */
22 #ifndef IN_PROCESS_AGENT
24 target_desc::~target_desc ()
26 xfree ((char *) arch
);
27 xfree ((char *) osabi
);
30 bool target_desc::operator== (const target_desc
&other
) const
32 if (reg_defs
!= other
.reg_defs
)
35 /* Compare the two vectors of expedited registers. They will only match
36 if the following conditions are met:
38 - Both vectors have the same number of elements.
39 - Both vectors contain the same elements.
40 - The elements of both vectors appear in the same order. */
41 if (expedite_regs
!= other
.expedite_regs
)
49 void target_desc::accept (tdesc_element_visitor
&v
) const
51 #ifndef IN_PROCESS_AGENT
54 for (const tdesc_feature_up
&feature
: features
)
62 init_target_desc (struct target_desc
*tdesc
,
63 const char **expedite_regs
)
67 /* Go through all the features and populate reg_defs. */
68 for (const tdesc_feature_up
&feature
: tdesc
->features
)
69 for (const tdesc_reg_up
&treg
: feature
->registers
)
71 int regnum
= treg
->target_regnum
;
73 /* Register number will increase (possibly with gaps) or be zero. */
74 gdb_assert (regnum
== 0 || regnum
>= tdesc
->reg_defs
.size ());
77 tdesc
->reg_defs
.resize (regnum
, gdb::reg (offset
));
79 tdesc
->reg_defs
.emplace_back (treg
->name
.c_str (), offset
,
81 offset
+= treg
->bitsize
;
84 tdesc
->registers_size
= offset
/ 8;
86 /* Make sure PBUFSIZ is large enough to hold a full register
88 gdb_assert (2 * tdesc
->registers_size
+ 32 <= PBUFSIZ
);
90 #ifndef IN_PROCESS_AGENT
91 /* Drop the contents of the previous vector, if any. */
92 tdesc
->expedite_regs
.clear ();
94 /* Initialize the vector with new expedite registers contents. */
95 int expedite_count
= 0;
96 while (expedite_regs
[expedite_count
] != nullptr)
97 tdesc
->expedite_regs
.push_back (expedite_regs
[expedite_count
++]);
101 /* See gdbsupport/tdesc.h. */
104 allocate_target_description (void)
106 return target_desc_up (new target_desc ());
109 /* See gdbsupport/tdesc.h. */
112 target_desc_deleter::operator() (struct target_desc
*target_desc
) const
117 #ifndef IN_PROCESS_AGENT
119 static const struct target_desc default_description
{};
122 copy_target_description (struct target_desc
*dest
,
123 const struct target_desc
*src
)
125 dest
->reg_defs
= src
->reg_defs
;
126 dest
->expedite_regs
= src
->expedite_regs
;
127 dest
->registers_size
= src
->registers_size
;
128 dest
->xmltarget
= src
->xmltarget
;
131 const struct target_desc
*
132 current_target_desc (void)
134 if (current_thread
== NULL
)
135 return &default_description
;
137 return current_process ()->tdesc
;
140 /* An empty structure. */
142 struct tdesc_compatible_info
{ };
144 /* See gdbsupport/tdesc.h. */
146 const std::vector
<tdesc_compatible_info_up
> &
147 tdesc_compatible_info_list (const target_desc
*target_desc
)
149 static std::vector
<tdesc_compatible_info_up
> empty
;
153 /* See gdbsupport/tdesc.h. */
156 tdesc_compatible_info_arch_name (const tdesc_compatible_info_up
&c_info
)
161 /* See gdbsupport/tdesc.h. */
164 tdesc_architecture_name (const struct target_desc
*target_desc
)
166 return target_desc
->arch
;
169 /* See gdbsupport/tdesc.h. */
172 set_tdesc_architecture (struct target_desc
*target_desc
,
175 target_desc
->arch
= xstrdup (name
);
178 /* See gdbsupport/tdesc.h. */
181 tdesc_osabi_name (const struct target_desc
*target_desc
)
183 return target_desc
->osabi
;
186 /* See gdbsupport/tdesc.h. */
189 set_tdesc_osabi (struct target_desc
*target_desc
, const char *name
)
191 target_desc
->osabi
= xstrdup (name
);
194 /* See gdbsupport/tdesc.h. */
197 tdesc_get_features_xml (const target_desc
*tdesc
)
199 /* Either .xmltarget or .features is not NULL. */
200 gdb_assert (tdesc
->xmltarget
!= NULL
201 || (!tdesc
->features
.empty ()
202 && tdesc
->arch
!= NULL
));
204 if (tdesc
->xmltarget
== NULL
)
206 std::string
buffer ("@");
207 print_xml_feature
v (&buffer
);
209 tdesc
->xmltarget
= xstrdup (buffer
.c_str ());
212 return tdesc
->xmltarget
;
216 /* See gdbsupport/tdesc.h. */
218 struct tdesc_feature
*
219 tdesc_create_feature (struct target_desc
*tdesc
, const char *name
)
221 struct tdesc_feature
*new_feature
= new tdesc_feature (name
);
222 tdesc
->features
.emplace_back (new_feature
);
226 /* See gdbsupport/tdesc.h. */
229 tdesc_contains_feature (const target_desc
*tdesc
, const std::string
&feature
)
231 gdb_assert (tdesc
!= nullptr);
233 for (const tdesc_feature_up
&f
: tdesc
->features
)
235 if (f
->name
== feature
)