[gdb/testsuite] Fix gdb.dwarf2/dw2-filename.exp with -readnow
[deliverable/binutils-gdb.git] / gdb / progspace.c
... / ...
CommitLineData
1/* Program and address space management, for GDB, the GNU debugger.
2
3 Copyright (C) 2009-2020 Free Software Foundation, Inc.
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"
26#include "solist.h"
27#include "gdbthread.h"
28#include "inferior.h"
29#include <algorithm>
30
31/* The last program space number assigned. */
32int last_program_space_num = 0;
33
34/* The head of the program spaces list. */
35std::vector<struct program_space *> program_spaces;
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
43\f
44
45/* Keep a registry of per-program_space data-pointers required by other GDB
46 modules. */
47
48DEFINE_REGISTRY (program_space, REGISTRY_ACCESS_FIELD)
49
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
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
64 aspace = XCNEW (struct address_space);
65 aspace->num = ++highest_address_space_num;
66 address_space_alloc_data (aspace);
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{
78 int shared_aspace = gdbarch_has_shared_address_space (target_gdbarch ());
79
80 if (shared_aspace)
81 {
82 /* Just return the first in the list. */
83 return program_spaces[0]->aspace;
84 }
85
86 return new_address_space ();
87}
88
89static void
90free_address_space (struct address_space *aspace)
91{
92 address_space_free_data (aspace);
93 xfree (aspace);
94}
95
96int
97address_space_num (struct address_space *aspace)
98{
99 return aspace->num;
100}
101
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
112/* Remove a program space from the program spaces list. */
113
114static void
115remove_program_space (program_space *pspace)
116{
117 gdb_assert (pspace != NULL);
118
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);
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
133 program_spaces.push_back (this);
134}
135
136/* See progspace.h. */
137
138program_space::~program_space ()
139{
140 gdb_assert (this != current_program_space);
141
142 remove_program_space (this);
143
144 scoped_restore_current_program_space restore_pspace;
145
146 set_current_program_space (this);
147
148 breakpoint_program_space_exit (this);
149 no_shared_libraries (NULL, 0);
150 exec_close ();
151 free_all_objfiles ();
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);
155 if (!gdbarch_has_shared_address_space (target_gdbarch ()))
156 free_address_space (this->aspace);
157 clear_program_space_solib_cache (this);
158 /* Discard any data modules have associated with the PSPACE. */
159 program_space_free_data (this);
160}
161
162/* See progspace.h. */
163
164void
165program_space::free_all_objfiles ()
166{
167 /* Any objfile reference would become stale. */
168 for (struct so_list *so : current_program_space->solibs ())
169 gdb_assert (so->objfile == NULL);
170
171 while (!objfiles_list.empty ())
172 objfiles_list.front ()->unlink ();
173}
174
175/* See progspace.h. */
176
177void
178program_space::add_objfile (std::shared_ptr<objfile> &&objfile,
179 struct objfile *before)
180{
181 if (before == nullptr)
182 objfiles_list.push_back (std::move (objfile));
183 else
184 {
185 auto iter = std::find_if (objfiles_list.begin (), objfiles_list.end (),
186 [=] (const std::shared_ptr<::objfile> &objf)
187 {
188 return objf.get () == before;
189 });
190 gdb_assert (iter != objfiles_list.end ());
191 objfiles_list.insert (iter, std::move (objfile));
192 }
193}
194
195/* See progspace.h. */
196
197void
198program_space::remove_objfile (struct objfile *objfile)
199{
200 /* Removing an objfile from the objfile list invalidates any frame
201 that was built using frame info found in the objfile. Reinit the
202 frame cache to get rid of any frame that might otherwise
203 reference stale info. */
204 reinit_frame_cache ();
205
206 auto iter = std::find_if (objfiles_list.begin (), objfiles_list.end (),
207 [=] (const std::shared_ptr<::objfile> &objf)
208 {
209 return objf.get () == objfile;
210 });
211 gdb_assert (iter != objfiles_list.end ());
212 objfiles_list.erase (iter);
213
214 if (objfile == symfile_object_file)
215 symfile_object_file = NULL;
216}
217
218/* See progspace.h. */
219
220next_adapter<struct so_list>
221program_space::solibs () const
222{
223 return next_adapter<struct so_list> (this->so_list);
224}
225
226/* Copies program space SRC to DEST. Copies the main executable file,
227 and the main symbol file. Returns DEST. */
228
229struct program_space *
230clone_program_space (struct program_space *dest, struct program_space *src)
231{
232 scoped_restore_current_program_space restore_pspace;
233
234 set_current_program_space (dest);
235
236 if (src->pspace_exec_filename != NULL)
237 exec_file_attach (src->pspace_exec_filename, 0);
238
239 if (src->symfile_object_file != NULL)
240 symbol_file_add_main (objfile_name (src->symfile_object_file),
241 SYMFILE_DEFER_BP_RESET);
242
243 return dest;
244}
245
246/* Sets PSPACE as the current program space. It is the caller's
247 responsibility to make sure that the currently selected
248 inferior/thread matches the selected program space. */
249
250void
251set_current_program_space (struct program_space *pspace)
252{
253 if (current_program_space == pspace)
254 return;
255
256 gdb_assert (pspace != NULL);
257
258 current_program_space = pspace;
259
260 /* Different symbols change our view of the frame chain. */
261 reinit_frame_cache ();
262}
263
264/* Returns true iff there's no inferior bound to PSPACE. */
265
266int
267program_space_empty_p (struct program_space *pspace)
268{
269 if (find_inferior_for_program_space (pspace) != NULL)
270 return 0;
271
272 return 1;
273}
274
275/* Prints the list of program spaces and their details on UIOUT. If
276 REQUESTED is not -1, it's the ID of the pspace that should be
277 printed. Otherwise, all spaces are printed. */
278
279static void
280print_program_space (struct ui_out *uiout, int requested)
281{
282 int count = 0;
283
284 /* Compute number of pspaces we will print. */
285 for (struct program_space *pspace : program_spaces)
286 {
287 if (requested != -1 && pspace->num != requested)
288 continue;
289
290 ++count;
291 }
292
293 /* There should always be at least one. */
294 gdb_assert (count > 0);
295
296 ui_out_emit_table table_emitter (uiout, 3, count, "pspaces");
297 uiout->table_header (1, ui_left, "current", "");
298 uiout->table_header (4, ui_left, "id", "Id");
299 uiout->table_header (17, ui_left, "exec", "Executable");
300 uiout->table_body ();
301
302 for (struct program_space *pspace : program_spaces)
303 {
304 int printed_header;
305
306 if (requested != -1 && requested != pspace->num)
307 continue;
308
309 ui_out_emit_tuple tuple_emitter (uiout, NULL);
310
311 if (pspace == current_program_space)
312 uiout->field_string ("current", "*");
313 else
314 uiout->field_skip ("current");
315
316 uiout->field_signed ("id", pspace->num);
317
318 if (pspace->pspace_exec_filename)
319 uiout->field_string ("exec", pspace->pspace_exec_filename);
320 else
321 uiout->field_skip ("exec");
322
323 /* Print extra info that doesn't really fit in tabular form.
324 Currently, we print the list of inferiors bound to a pspace.
325 There can be more than one inferior bound to the same pspace,
326 e.g., both parent/child inferiors in a vfork, or, on targets
327 that share pspaces between inferiors. */
328 printed_header = 0;
329
330 /* We're going to switch inferiors. */
331 scoped_restore_current_thread restore_thread;
332
333 for (inferior *inf : all_inferiors ())
334 if (inf->pspace == pspace)
335 {
336 /* Switch to inferior in order to call target methods. */
337 switch_to_inferior_no_thread (inf);
338
339 if (!printed_header)
340 {
341 printed_header = 1;
342 printf_filtered ("\n\tBound inferiors: ID %d (%s)",
343 inf->num,
344 target_pid_to_str (ptid_t (inf->pid)).c_str ());
345 }
346 else
347 printf_filtered (", ID %d (%s)",
348 inf->num,
349 target_pid_to_str (ptid_t (inf->pid)).c_str ());
350 }
351
352 uiout->text ("\n");
353 }
354}
355
356/* Boolean test for an already-known program space id. */
357
358static int
359valid_program_space_id (int num)
360{
361 for (struct program_space *pspace : program_spaces)
362 if (pspace->num == num)
363 return 1;
364
365 return 0;
366}
367
368/* If ARGS is NULL or empty, print information about all program
369 spaces. Otherwise, ARGS is a text representation of a LONG
370 indicating which the program space to print information about. */
371
372static void
373maintenance_info_program_spaces_command (const char *args, int from_tty)
374{
375 int requested = -1;
376
377 if (args && *args)
378 {
379 requested = parse_and_eval_long (args);
380 if (!valid_program_space_id (requested))
381 error (_("program space ID %d not known."), requested);
382 }
383
384 print_program_space (current_uiout, requested);
385}
386
387/* Update all program spaces matching to address spaces. The user may
388 have created several program spaces, and loaded executables into
389 them before connecting to the target interface that will create the
390 inferiors. All that happens before GDB has a chance to know if the
391 inferiors will share an address space or not. Call this after
392 having connected to the target interface and having fetched the
393 target description, to fixup the program/address spaces mappings.
394
395 It is assumed that there are no bound inferiors yet, otherwise,
396 they'd be left with stale referenced to released aspaces. */
397
398void
399update_address_spaces (void)
400{
401 int shared_aspace = gdbarch_has_shared_address_space (target_gdbarch ());
402 struct inferior *inf;
403
404 init_address_spaces ();
405
406 if (shared_aspace)
407 {
408 struct address_space *aspace = new_address_space ();
409
410 free_address_space (current_program_space->aspace);
411 for (struct program_space *pspace : program_spaces)
412 pspace->aspace = aspace;
413 }
414 else
415 for (struct program_space *pspace : program_spaces)
416 {
417 free_address_space (pspace->aspace);
418 pspace->aspace = new_address_space ();
419 }
420
421 for (inf = inferior_list; inf; inf = inf->next)
422 if (gdbarch_has_global_solist (target_gdbarch ()))
423 inf->aspace = maybe_new_address_space ();
424 else
425 inf->aspace = inf->pspace->aspace;
426}
427
428\f
429
430/* See progspace.h. */
431
432void
433clear_program_space_solib_cache (struct program_space *pspace)
434{
435 pspace->added_solibs.clear ();
436 pspace->deleted_solibs.clear ();
437}
438
439\f
440
441void
442initialize_progspace (void)
443{
444 add_cmd ("program-spaces", class_maintenance,
445 maintenance_info_program_spaces_command,
446 _("Info about currently known program spaces."),
447 &maintenanceinfolist);
448
449 /* There's always one program space. Note that this function isn't
450 an automatic _initialize_foo function, since other
451 _initialize_foo routines may need to install their per-pspace
452 data keys. We can only allocate a progspace when all those
453 modules have done that. Do this before
454 initialize_current_architecture, because that accesses exec_bfd,
455 which in turn dereferences current_program_space. */
456 current_program_space = new program_space (new_address_space ());
457}
This page took 0.030428 seconds and 4 git commands to generate.