Split tdesc_type into multiple classes
[deliverable/binutils-gdb.git] / gdb / gdbserver / tdesc.c
CommitLineData
61baf725 1/* Copyright (C) 2012-2017 Free Software Foundation, Inc.
3aee8918
PA
2
3 This file is part of GDB.
4
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.
9
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.
14
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/>. */
17
18#include "server.h"
19#include "tdesc.h"
20#include "regdef.h"
21
22void
23init_target_desc (struct target_desc *tdesc)
24{
c4dfafab 25 int offset = 0;
3aee8918 26
c4dfafab 27 for (reg *reg : tdesc->reg_defs)
3aee8918 28 {
f7000548
YQ
29 reg->offset = offset;
30 offset += reg->size;
3aee8918
PA
31 }
32
33 tdesc->registers_size = offset / 8;
34
35 /* Make sure PBUFSIZ is large enough to hold a full register
36 packet. */
38e08fca 37 gdb_assert (2 * tdesc->registers_size + 32 <= PBUFSIZ);
3aee8918
PA
38}
39
5f035c07
YQ
40struct target_desc *
41allocate_target_description (void)
42{
43 return new target_desc ();
44}
45
3aee8918
PA
46#ifndef IN_PROCESS_AGENT
47
f49ff000 48static const struct target_desc default_description {};
3aee8918
PA
49
50void
51copy_target_description (struct target_desc *dest,
52 const struct target_desc *src)
53{
54 dest->reg_defs = src->reg_defs;
3aee8918
PA
55 dest->expedite_regs = src->expedite_regs;
56 dest->registers_size = src->registers_size;
57 dest->xmltarget = src->xmltarget;
58}
59
60const struct target_desc *
61current_target_desc (void)
62{
0bfdf32f 63 if (current_thread == NULL)
3aee8918
PA
64 return &default_description;
65
66 return current_process ()->tdesc;
67}
0abe8a89 68
5f035c07
YQ
69/* See arch/tdesc.h. */
70
0abe8a89
YQ
71void
72set_tdesc_architecture (struct target_desc *target_desc,
73 const char *name)
74{
75 target_desc->arch = xstrdup (name);
76}
77
5f035c07
YQ
78/* See arch/tdesc.h. */
79
0abe8a89
YQ
80void
81set_tdesc_osabi (struct target_desc *target_desc, const char *name)
82{
83 target_desc->osabi = xstrdup (name);
84}
85
86/* Return a string which is of XML format, including XML target
87 description to be sent to GDB. */
88
89const char *
90tdesc_get_features_xml (target_desc *tdesc)
91{
92 /* Either .xmltarget or .features is not NULL. */
93 gdb_assert (tdesc->xmltarget != NULL
94 || (tdesc->features != NULL
1d0aa65c 95 && tdesc->arch != NULL));
0abe8a89
YQ
96
97 if (tdesc->xmltarget == NULL)
98 {
99 std::string buffer ("@<?xml version=\"1.0\"?>");
100
101 buffer += "<!DOCTYPE target SYSTEM \"gdb-target.dtd\">";
102 buffer += "<target>";
103 buffer += "<architecture>";
104 buffer += tdesc->arch;
105 buffer += "</architecture>";
106
1d0aa65c
AH
107 if (tdesc->osabi != nullptr)
108 {
109 buffer += "<osabi>";
110 buffer += tdesc->osabi;
111 buffer += "</osabi>";
112 }
0abe8a89
YQ
113
114 char *xml;
115
116 for (int i = 0; VEC_iterate (char_ptr, tdesc->features, i, xml); i++)
117 {
118 buffer += "<xi:include href=\"";
119 buffer += xml;
120 buffer += "\"/>";
121 }
122
123 buffer += "</target>";
124
125 tdesc->xmltarget = xstrdup (buffer.c_str ());
126 }
127
128 return tdesc->xmltarget;
129}
3aee8918 130#endif
f49ff000
YQ
131
132struct tdesc_type
133{};
134
135/* See arch/tdesc.h. */
136
137struct tdesc_feature *
0abe8a89
YQ
138tdesc_create_feature (struct target_desc *tdesc, const char *name,
139 const char *xml)
f49ff000 140{
0abe8a89
YQ
141#ifndef IN_PROCESS_AGENT
142 VEC_safe_push (char_ptr, tdesc->features, xstrdup (xml));
143#endif
f49ff000
YQ
144 return tdesc;
145}
146
147/* See arch/tdesc.h. */
148
d4a0e8b5 149tdesc_type_with_fields *
f49ff000
YQ
150tdesc_create_flags (struct tdesc_feature *feature, const char *name,
151 int size)
152{
153 return NULL;
154}
155
156/* See arch/tdesc.h. */
157
158void
d4a0e8b5 159tdesc_add_flag (tdesc_type_with_fields *type, int start,
f49ff000
YQ
160 const char *flag_name)
161{}
162
163/* See arch/tdesc.h. */
164
165struct tdesc_type *
166tdesc_named_type (const struct tdesc_feature *feature, const char *id)
167{
168 return NULL;
169}
170
171/* See arch/tdesc.h. */
172
d4a0e8b5 173tdesc_type_with_fields *
f49ff000
YQ
174tdesc_create_union (struct tdesc_feature *feature, const char *id)
175{
176 return NULL;
177}
178
179/* See arch/tdesc.h. */
180
d4a0e8b5 181tdesc_type_with_fields *
f49ff000
YQ
182tdesc_create_struct (struct tdesc_feature *feature, const char *id)
183{
184 return NULL;
185}
186
187/* See arch/tdesc.h. */
188
189void
190tdesc_create_reg (struct tdesc_feature *feature, const char *name,
191 int regnum, int save_restore, const char *group,
192 int bitsize, const char *type)
193{
194 struct target_desc *tdesc = (struct target_desc *) feature;
195
c4dfafab 196 while (tdesc->reg_defs.size () < regnum)
f49ff000
YQ
197 {
198 struct reg *reg = XCNEW (struct reg);
199
200 reg->name = "";
201 reg->size = 0;
c4dfafab 202 tdesc->reg_defs.push_back (reg);
f49ff000
YQ
203 }
204
205 gdb_assert (regnum == 0
c4dfafab 206 || regnum == tdesc->reg_defs.size ());
f49ff000
YQ
207
208 struct reg *reg = XCNEW (struct reg);
209
210 reg->name = name;
211 reg->size = bitsize;
c4dfafab 212 tdesc->reg_defs.push_back (reg);
f49ff000
YQ
213}
214
215/* See arch/tdesc.h. */
216
217struct tdesc_type *
218tdesc_create_vector (struct tdesc_feature *feature, const char *name,
219 struct tdesc_type *field_type, int count)
220{
221 return NULL;
222}
223
224void
d4a0e8b5 225tdesc_add_bitfield (tdesc_type_with_fields *type, const char *field_name,
f49ff000
YQ
226 int start, int end)
227{}
228
229/* See arch/tdesc.h. */
230
231void
d4a0e8b5 232tdesc_add_field (tdesc_type_with_fields *type, const char *field_name,
f49ff000
YQ
233 struct tdesc_type *field_type)
234{}
235
236/* See arch/tdesc.h. */
237
238void
d4a0e8b5 239tdesc_set_struct_size (tdesc_type_with_fields *type, int size)
f49ff000
YQ
240{
241}
This page took 0.42717 seconds and 4 git commands to generate.