gdb: add target_ops::supports_displaced_step
[deliverable/binutils-gdb.git] / gdb / progspace.c
CommitLineData
6c95b8df
PA
1/* Program and address space management, for GDB, the GNU debugger.
2
b811d2c2 3 Copyright (C) 2009-2020 Free Software Foundation, Inc.
6c95b8df
PA
4
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
19
20#include "defs.h"
21#include "gdbcmd.h"
22#include "objfiles.h"
23#include "arch-utils.h"
24#include "gdbcore.h"
25#include "solib.h"
343cc952 26#include "solist.h"
6c95b8df 27#include "gdbthread.h"
00431a78 28#include "inferior.h"
d0801dd8 29#include <algorithm>
6c95b8df
PA
30
31/* The last program space number assigned. */
32int last_program_space_num = 0;
33
34/* The head of the program spaces list. */
94c93c35 35std::vector<struct program_space *> program_spaces;
6c95b8df
PA
36
37/* Pointer to the current program space. */
38struct program_space *current_program_space;
39
40/* The last address space number assigned. */
41static int highest_address_space_num;
42
8e260fc0
TT
43\f
44
45/* Keep a registry of per-program_space data-pointers required by other GDB
46 modules. */
47
6b81941e 48DEFINE_REGISTRY (program_space, REGISTRY_ACCESS_FIELD)
6c95b8df 49
3a8356ff
YQ
50/* Keep a registry of per-address_space data-pointers required by other GDB
51 modules. */
52
53DEFINE_REGISTRY (address_space, REGISTRY_ACCESS_FIELD)
54
55\f
56
6c95b8df
PA
57/* Create a new address space object, and add it to the list. */
58
59struct address_space *
60new_address_space (void)
61{
62 struct address_space *aspace;
63
41bf6aca 64 aspace = XCNEW (struct address_space);
6c95b8df 65 aspace->num = ++highest_address_space_num;
3a8356ff 66 address_space_alloc_data (aspace);
6c95b8df
PA
67
68 return aspace;
69}
70
71/* Maybe create a new address space object, and add it to the list, or
72 return a pointer to an existing address space, in case inferiors
73 share an address space on this target system. */
74
75struct address_space *
76maybe_new_address_space (void)
77{
f5656ead 78 int shared_aspace = gdbarch_has_shared_address_space (target_gdbarch ());
6c95b8df
PA
79
80 if (shared_aspace)
81 {
82 /* Just return the first in the list. */
94c93c35 83 return program_spaces[0]->aspace;
6c95b8df
PA
84 }
85
86 return new_address_space ();
87}
88
89static void
90free_address_space (struct address_space *aspace)
91{
3a8356ff 92 address_space_free_data (aspace);
6c95b8df
PA
93 xfree (aspace);
94}
95
c0694254
PA
96int
97address_space_num (struct address_space *aspace)
98{
99 return aspace->num;
100}
101
6c95b8df
PA
102/* Start counting over from scratch. */
103
104static void
105init_address_spaces (void)
106{
107 highest_address_space_num = 0;
108}
109
110\f
111
381ce63f
PA
112/* Remove a program space from the program spaces list. */
113
114static void
115remove_program_space (program_space *pspace)
116{
381ce63f
PA
117 gdb_assert (pspace != NULL);
118
94c93c35
TT
119 auto iter = std::find (program_spaces.begin (), program_spaces.end (),
120 pspace);
121 gdb_assert (iter != program_spaces.end ());
122 program_spaces.erase (iter);
381ce63f
PA
123}
124
125/* See progspace.h. */
126
127program_space::program_space (address_space *aspace_)
128 : num (++last_program_space_num),
129 aspace (aspace_)
130{
131 program_space_alloc_data (this);
132
94c93c35 133 program_spaces.push_back (this);
381ce63f
PA
134}
135
136/* See progspace.h. */
6c95b8df 137
564b1e3f 138program_space::~program_space ()
6c95b8df 139{
564b1e3f 140 gdb_assert (this != current_program_space);
6c95b8df 141
381ce63f
PA
142 remove_program_space (this);
143
5ed8105e
PA
144 scoped_restore_current_program_space restore_pspace;
145
564b1e3f 146 set_current_program_space (this);
6c95b8df 147
564b1e3f 148 breakpoint_program_space_exit (this);
6c95b8df
PA
149 no_shared_libraries (NULL, 0);
150 exec_close ();
151 free_all_objfiles ();
f3c469b9
PA
152 /* Defer breakpoint re-set because we don't want to create new
153 locations for this pspace which we're tearing down. */
154 clear_symtab_users (SYMFILE_DEFER_BP_RESET);
f5656ead 155 if (!gdbarch_has_shared_address_space (target_gdbarch ()))
564b1e3f
SM
156 free_address_space (this->aspace);
157 clear_section_table (&this->target_sections);
158 clear_program_space_solib_cache (this);
6c95b8df 159 /* Discard any data modules have associated with the PSPACE. */
564b1e3f 160 program_space_free_data (this);
6c95b8df
PA
161}
162
7cac64af
TT
163/* See progspace.h. */
164
343cc952
TT
165void
166program_space::free_all_objfiles ()
167{
343cc952 168 /* Any objfile reference would become stale. */
a1fd1ac9 169 for (struct so_list *so : current_program_space->solibs ())
343cc952
TT
170 gdb_assert (so->objfile == NULL);
171
172 while (!objfiles_list.empty ())
173 objfiles_list.front ()->unlink ();
343cc952
TT
174}
175
176/* See progspace.h. */
177
7cac64af 178void
7d7167ce
TT
179program_space::add_objfile (std::shared_ptr<objfile> &&objfile,
180 struct objfile *before)
7cac64af 181{
d0801dd8 182 if (before == nullptr)
7d7167ce 183 objfiles_list.push_back (std::move (objfile));
d0801dd8 184 else
7cac64af 185 {
7d7167ce
TT
186 auto iter = std::find_if (objfiles_list.begin (), objfiles_list.end (),
187 [=] (const std::shared_ptr<::objfile> &objf)
188 {
189 return objf.get () == before;
190 });
d0801dd8 191 gdb_assert (iter != objfiles_list.end ());
7d7167ce 192 objfiles_list.insert (iter, std::move (objfile));
7cac64af 193 }
7cac64af
TT
194}
195
23452926
TT
196/* See progspace.h. */
197
198void
199program_space::remove_objfile (struct objfile *objfile)
200{
7d7167ce
TT
201 auto iter = std::find_if (objfiles_list.begin (), objfiles_list.end (),
202 [=] (const std::shared_ptr<::objfile> &objf)
203 {
204 return objf.get () == objfile;
205 });
d0801dd8
TT
206 gdb_assert (iter != objfiles_list.end ());
207 objfiles_list.erase (iter);
23452926 208
d0801dd8
TT
209 if (objfile == symfile_object_file)
210 symfile_object_file = NULL;
deeafabb
TT
211}
212
a1fd1ac9
TT
213/* See progspace.h. */
214
215next_adapter<struct so_list>
216program_space::solibs () const
217{
218 return next_adapter<struct so_list> (this->so_list);
219}
220
6c95b8df
PA
221/* Copies program space SRC to DEST. Copies the main executable file,
222 and the main symbol file. Returns DEST. */
223
224struct program_space *
225clone_program_space (struct program_space *dest, struct program_space *src)
226{
5ed8105e 227 scoped_restore_current_program_space restore_pspace;
6c95b8df
PA
228
229 set_current_program_space (dest);
230
1f0c4988
JK
231 if (src->pspace_exec_filename != NULL)
232 exec_file_attach (src->pspace_exec_filename, 0);
6c95b8df
PA
233
234 if (src->symfile_object_file != NULL)
b2e586e8
SM
235 symbol_file_add_main (objfile_name (src->symfile_object_file),
236 SYMFILE_DEFER_BP_RESET);
6c95b8df 237
6c95b8df
PA
238 return dest;
239}
240
241/* Sets PSPACE as the current program space. It is the caller's
242 responsibility to make sure that the currently selected
243 inferior/thread matches the selected program space. */
244
245void
246set_current_program_space (struct program_space *pspace)
247{
248 if (current_program_space == pspace)
249 return;
250
251 gdb_assert (pspace != NULL);
252
253 current_program_space = pspace;
254
255 /* Different symbols change our view of the frame chain. */
256 reinit_frame_cache ();
257}
258
6c95b8df
PA
259/* Returns true iff there's no inferior bound to PSPACE. */
260
7a41607e
SM
261int
262program_space_empty_p (struct program_space *pspace)
6c95b8df 263{
6c95b8df
PA
264 if (find_inferior_for_program_space (pspace) != NULL)
265 return 0;
266
267 return 1;
268}
269
6c95b8df
PA
270/* Prints the list of program spaces and their details on UIOUT. If
271 REQUESTED is not -1, it's the ID of the pspace that should be
272 printed. Otherwise, all spaces are printed. */
273
274static void
275print_program_space (struct ui_out *uiout, int requested)
276{
6c95b8df 277 int count = 0;
6c95b8df 278
6c95b8df 279 /* Compute number of pspaces we will print. */
94c93c35 280 for (struct program_space *pspace : program_spaces)
6c95b8df
PA
281 {
282 if (requested != -1 && pspace->num != requested)
283 continue;
284
285 ++count;
286 }
287
288 /* There should always be at least one. */
289 gdb_assert (count > 0);
290
4a2b031d 291 ui_out_emit_table table_emitter (uiout, 3, count, "pspaces");
112e8700
SM
292 uiout->table_header (1, ui_left, "current", "");
293 uiout->table_header (4, ui_left, "id", "Id");
294 uiout->table_header (17, ui_left, "exec", "Executable");
295 uiout->table_body ();
6c95b8df 296
94c93c35 297 for (struct program_space *pspace : program_spaces)
6c95b8df 298 {
6c95b8df
PA
299 struct inferior *inf;
300 int printed_header;
301
302 if (requested != -1 && requested != pspace->num)
303 continue;
304
2e783024 305 ui_out_emit_tuple tuple_emitter (uiout, NULL);
6c95b8df
PA
306
307 if (pspace == current_program_space)
112e8700 308 uiout->field_string ("current", "*");
6c95b8df 309 else
112e8700 310 uiout->field_skip ("current");
6c95b8df 311
381befee 312 uiout->field_signed ("id", pspace->num);
6c95b8df 313
1f0c4988 314 if (pspace->pspace_exec_filename)
112e8700 315 uiout->field_string ("exec", pspace->pspace_exec_filename);
6c95b8df 316 else
112e8700 317 uiout->field_skip ("exec");
6c95b8df
PA
318
319 /* Print extra info that doesn't really fit in tabular form.
320 Currently, we print the list of inferiors bound to a pspace.
321 There can be more than one inferior bound to the same pspace,
322 e.g., both parent/child inferiors in a vfork, or, on targets
323 that share pspaces between inferiors. */
324 printed_header = 0;
325 for (inf = inferior_list; inf; inf = inf->next)
326 if (inf->pspace == pspace)
327 {
328 if (!printed_header)
329 {
330 printed_header = 1;
331 printf_filtered ("\n\tBound inferiors: ID %d (%s)",
332 inf->num,
a068643d 333 target_pid_to_str (ptid_t (inf->pid)).c_str ());
6c95b8df
PA
334 }
335 else
336 printf_filtered (", ID %d (%s)",
337 inf->num,
a068643d 338 target_pid_to_str (ptid_t (inf->pid)).c_str ());
6c95b8df
PA
339 }
340
112e8700 341 uiout->text ("\n");
6c95b8df 342 }
6c95b8df
PA
343}
344
345/* Boolean test for an already-known program space id. */
346
347static int
348valid_program_space_id (int num)
349{
94c93c35 350 for (struct program_space *pspace : program_spaces)
6c95b8df
PA
351 if (pspace->num == num)
352 return 1;
353
354 return 0;
355}
356
357/* If ARGS is NULL or empty, print information about all program
358 spaces. Otherwise, ARGS is a text representation of a LONG
359 indicating which the program space to print information about. */
360
361static void
9c504b5d 362maintenance_info_program_spaces_command (const char *args, int from_tty)
6c95b8df
PA
363{
364 int requested = -1;
365
366 if (args && *args)
367 {
368 requested = parse_and_eval_long (args);
369 if (!valid_program_space_id (requested))
370 error (_("program space ID %d not known."), requested);
371 }
372
79a45e25 373 print_program_space (current_uiout, requested);
6c95b8df
PA
374}
375
6c95b8df
PA
376/* Update all program spaces matching to address spaces. The user may
377 have created several program spaces, and loaded executables into
378 them before connecting to the target interface that will create the
379 inferiors. All that happens before GDB has a chance to know if the
380 inferiors will share an address space or not. Call this after
381 having connected to the target interface and having fetched the
382 target description, to fixup the program/address spaces mappings.
383
384 It is assumed that there are no bound inferiors yet, otherwise,
385 they'd be left with stale referenced to released aspaces. */
386
387void
388update_address_spaces (void)
389{
f5656ead 390 int shared_aspace = gdbarch_has_shared_address_space (target_gdbarch ());
7e9af34a 391 struct inferior *inf;
6c95b8df
PA
392
393 init_address_spaces ();
394
7e9af34a 395 if (shared_aspace)
6c95b8df 396 {
7e9af34a 397 struct address_space *aspace = new_address_space ();
ad3bbd48 398
7e9af34a 399 free_address_space (current_program_space->aspace);
94c93c35 400 for (struct program_space *pspace : program_spaces)
7e9af34a 401 pspace->aspace = aspace;
6c95b8df 402 }
7e9af34a 403 else
94c93c35 404 for (struct program_space *pspace : program_spaces)
7e9af34a
DJ
405 {
406 free_address_space (pspace->aspace);
407 pspace->aspace = new_address_space ();
408 }
409
410 for (inf = inferior_list; inf; inf = inf->next)
f5656ead 411 if (gdbarch_has_global_solist (target_gdbarch ()))
7e9af34a
DJ
412 inf->aspace = maybe_new_address_space ();
413 else
414 inf->aspace = inf->pspace->aspace;
6c95b8df
PA
415}
416
6c95b8df
PA
417\f
418
edcc5120
TT
419/* See progspace.h. */
420
421void
422clear_program_space_solib_cache (struct program_space *pspace)
423{
bcb430e4 424 pspace->added_solibs.clear ();
6fb16ce6 425 pspace->deleted_solibs.clear ();
edcc5120
TT
426}
427
428\f
429
6c95b8df
PA
430void
431initialize_progspace (void)
432{
433 add_cmd ("program-spaces", class_maintenance,
3e43a32a
MS
434 maintenance_info_program_spaces_command,
435 _("Info about currently known program spaces."),
6c95b8df
PA
436 &maintenanceinfolist);
437
438 /* There's always one program space. Note that this function isn't
439 an automatic _initialize_foo function, since other
440 _initialize_foo routines may need to install their per-pspace
441 data keys. We can only allocate a progspace when all those
442 modules have done that. Do this before
443 initialize_current_architecture, because that accesses exec_bfd,
444 which in turn dereferences current_program_space. */
564b1e3f 445 current_program_space = new program_space (new_address_space ());
6c95b8df 446}
This page took 1.125777 seconds and 4 git commands to generate.