1 /* Target description support for GDB.
3 Copyright (C) 2006-2020 Free Software Foundation, Inc.
5 Contributed by CodeSourcery.
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 TARGET_DESCRIPTIONS_H
23 #define TARGET_DESCRIPTIONS_H 1
24 #include "gdbsupport/tdesc.h"
27 struct tdesc_arch_data
;
29 /* An inferior's target description info is stored in this opaque
30 object. There's one such object per inferior. */
31 struct target_desc_info
;
34 /* Fetch the current inferior's description, and switch its current
35 architecture to one which incorporates that description. */
37 void target_find_description (void);
39 /* Discard any description fetched from the target for the current
40 inferior, and switch the current architecture to one with no target
43 void target_clear_description (void);
45 /* Return the current inferior's target description. This should only
46 be used by gdbarch initialization code; most access should be
47 through an existing gdbarch. */
49 const struct target_desc
*target_current_description (void);
51 /* Copy inferior target description data. Used for example when
52 handling (v)forks, where child's description is the same as the
53 parent's, since the child really is a copy of the parent. */
55 void copy_inferior_target_desc_info (struct inferior
*destinf
,
56 struct inferior
*srcinf
);
58 /* Free a target_desc_info object. */
60 void target_desc_info_free (struct target_desc_info
*tdesc_info
);
62 /* Returns true if INFO indicates the target description had been
63 supplied by the user. */
65 int target_desc_info_from_user_p (struct target_desc_info
*info
);
67 /* Record architecture-specific functions to call for pseudo-register
68 support. If tdesc_use_registers is called and gdbarch_num_pseudo_regs
69 is greater than zero, then these should be called as well.
70 They are equivalent to the gdbarch methods with similar names,
71 except that they will only be called for pseudo registers. */
73 void set_tdesc_pseudo_register_name
74 (struct gdbarch
*gdbarch
, gdbarch_register_name_ftype
*pseudo_name
);
76 void set_tdesc_pseudo_register_type
77 (struct gdbarch
*gdbarch
, gdbarch_register_type_ftype
*pseudo_type
);
79 void set_tdesc_pseudo_register_reggroup_p
80 (struct gdbarch
*gdbarch
,
81 gdbarch_register_reggroup_p_ftype
*pseudo_reggroup_p
);
83 /* Update GDBARCH to use the TARGET_DESC for registers. TARGET_DESC
84 may be GDBARCH's target description or (if GDBARCH does not have
85 one which describes registers) another target description
86 constructed by the gdbarch initialization routine.
88 Fixed register assignments are taken from EARLY_DATA, which is freed.
89 All registers which have not been assigned fixed numbers are given
90 numbers above the current value of gdbarch_num_regs.
91 gdbarch_num_regs and various register-related predicates are updated to
92 refer to the target description. This function should only be called from
93 the architecture's gdbarch initialization routine, and only after
94 successfully validating the required registers. */
96 void tdesc_use_registers (struct gdbarch
*gdbarch
,
97 const struct target_desc
*target_desc
,
98 struct tdesc_arch_data
*early_data
);
100 /* Allocate initial data for validation of a target description during
101 gdbarch initialization. */
103 struct tdesc_arch_data
*tdesc_data_alloc (void);
105 /* Clean up data allocated by tdesc_data_alloc. This should only
106 be called to discard the data; tdesc_use_registers takes ownership
107 of its EARLY_DATA argument. */
109 void tdesc_data_cleanup (void *data_untyped
);
111 /* Search FEATURE for a register named NAME. Record REGNO and the
112 register in DATA; when tdesc_use_registers is called, REGNO will be
113 assigned to the register. 1 is returned if the register was found,
116 int tdesc_numbered_register (const struct tdesc_feature
*feature
,
117 struct tdesc_arch_data
*data
,
118 int regno
, const char *name
);
120 /* Search FEATURE for a register named NAME, but do not assign a fixed
121 register number to it. */
123 int tdesc_unnumbered_register (const struct tdesc_feature
*feature
,
126 /* Search FEATURE for a register named NAME, and return its size in
127 bits. The register must exist. */
129 int tdesc_register_bitsize (const struct tdesc_feature
*feature
,
132 /* Search FEATURE for a register with any of the names from NAMES
133 (NULL-terminated). Record REGNO and the register in DATA; when
134 tdesc_use_registers is called, REGNO will be assigned to the
135 register. 1 is returned if the register was found, 0 if it was
138 int tdesc_numbered_register_choices (const struct tdesc_feature
*feature
,
139 struct tdesc_arch_data
*data
,
140 int regno
, const char *const names
[]);
143 /* Accessors for target descriptions. */
145 /* Return the BFD architecture associated with this target
146 description, or NULL if no architecture was specified. */
148 const struct bfd_arch_info
*tdesc_architecture
149 (const struct target_desc
*);
151 /* Return the OSABI associated with this target description, or
152 GDB_OSABI_UNKNOWN if no osabi was specified. */
154 enum gdb_osabi
tdesc_osabi (const struct target_desc
*);
156 /* Return non-zero if this target description is compatible
157 with the given BFD architecture. */
159 int tdesc_compatible_p (const struct target_desc
*,
160 const struct bfd_arch_info
*);
162 /* Return the string value of a property named KEY, or NULL if the
163 property was not specified. */
165 const char *tdesc_property (const struct target_desc
*,
168 /* Return 1 if this target description describes any registers. */
170 int tdesc_has_registers (const struct target_desc
*);
172 /* Return the feature with the given name, if present, or NULL if
173 the named feature is not found. */
175 const struct tdesc_feature
*tdesc_find_feature (const struct target_desc
*,
178 /* Return the name of FEATURE. */
180 const char *tdesc_feature_name (const struct tdesc_feature
*feature
);
182 /* Return the name of register REGNO, from the target description or
183 from an architecture-provided pseudo_register_name method. */
185 const char *tdesc_register_name (struct gdbarch
*gdbarch
, int regno
);
187 /* Return the type of register REGNO, from the target description or
188 from an architecture-provided pseudo_register_type method. */
190 struct type
*tdesc_register_type (struct gdbarch
*gdbarch
, int regno
);
192 /* Return the type associated with ID, from the target description. */
194 struct type
*tdesc_find_type (struct gdbarch
*gdbarch
, const char *id
);
196 /* Check whether REGNUM is a member of REGGROUP using the target
197 description. Return -1 if the target description does not
200 int tdesc_register_in_reggroup_p (struct gdbarch
*gdbarch
, int regno
,
201 struct reggroup
*reggroup
);
204 /* A deleter adapter for a target desc. */
206 struct target_desc_deleter
208 void operator() (struct target_desc
*desc
) const;
211 /* A unique pointer specialization that holds a target_desc. */
213 typedef std::unique_ptr
<target_desc
, target_desc_deleter
> target_desc_up
;
215 /* Methods for constructing a target description. */
217 void set_tdesc_architecture (struct target_desc
*,
218 const struct bfd_arch_info
*);
219 void set_tdesc_osabi (struct target_desc
*, enum gdb_osabi osabi
);
220 void set_tdesc_property (struct target_desc
*,
221 const char *key
, const char *value
);
222 void tdesc_add_compatible (struct target_desc
*,
223 const struct bfd_arch_info
*);
226 namespace selftests
{
228 /* Record that XML_FILE should generate a target description that equals
229 TDESC, to be verified by the "maintenance check xml-descriptions"
230 command. This function takes ownership of TDESC. */
232 void record_xml_tdesc (const char *xml_file
,
233 const struct target_desc
*tdesc
);
237 #endif /* TARGET_DESCRIPTIONS_H */