1 /* Program and address space management, for GDB, the GNU debugger.
3 Copyright (C) 2009-2018 Free Software Foundation, Inc.
5 This file is part of GDB.
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.
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.
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/>. */
23 #include "arch-utils.h"
26 #include "gdbthread.h"
28 /* The last program space number assigned. */
29 int last_program_space_num
= 0;
31 /* The head of the program spaces list. */
32 struct program_space
*program_spaces
;
34 /* Pointer to the current program space. */
35 struct program_space
*current_program_space
;
37 /* The last address space number assigned. */
38 static int highest_address_space_num
;
42 /* Keep a registry of per-program_space data-pointers required by other GDB
45 DEFINE_REGISTRY (program_space
, REGISTRY_ACCESS_FIELD
)
47 /* Keep a registry of per-address_space data-pointers required by other GDB
50 DEFINE_REGISTRY (address_space
, REGISTRY_ACCESS_FIELD
)
54 /* Create a new address space object, and add it to the list. */
56 struct address_space
*
57 new_address_space (void)
59 struct address_space
*aspace
;
61 aspace
= XCNEW (struct address_space
);
62 aspace
->num
= ++highest_address_space_num
;
63 address_space_alloc_data (aspace
);
68 /* Maybe create a new address space object, and add it to the list, or
69 return a pointer to an existing address space, in case inferiors
70 share an address space on this target system. */
72 struct address_space
*
73 maybe_new_address_space (void)
75 int shared_aspace
= gdbarch_has_shared_address_space (target_gdbarch ());
79 /* Just return the first in the list. */
80 return program_spaces
->aspace
;
83 return new_address_space ();
87 free_address_space (struct address_space
*aspace
)
89 address_space_free_data (aspace
);
94 address_space_num (struct address_space
*aspace
)
99 /* Start counting over from scratch. */
102 init_address_spaces (void)
104 highest_address_space_num
= 0;
109 /* Adds a new empty program space to the program space list, and binds
110 it to ASPACE. Returns the pointer to the new object. */
112 struct program_space
*
113 add_program_space (struct address_space
*aspace
)
115 struct program_space
*pspace
;
117 pspace
= XCNEW (struct program_space
);
119 pspace
->num
= ++last_program_space_num
;
120 pspace
->aspace
= aspace
;
122 program_space_alloc_data (pspace
);
124 if (program_spaces
== NULL
)
125 program_spaces
= pspace
;
128 struct program_space
*last
;
130 for (last
= program_spaces
; last
->next
!= NULL
; last
= last
->next
)
138 /* Releases program space PSPACE, and all its contents (shared
139 libraries, objfiles, and any other references to the PSPACE in
140 other modules). It is an internal error to call this when PSPACE
141 is the current program space, since there should always be a
145 release_program_space (struct program_space
*pspace
)
147 gdb_assert (pspace
!= current_program_space
);
149 scoped_restore_current_program_space restore_pspace
;
151 set_current_program_space (pspace
);
153 breakpoint_program_space_exit (pspace
);
154 no_shared_libraries (NULL
, 0);
156 free_all_objfiles ();
157 if (!gdbarch_has_shared_address_space (target_gdbarch ()))
158 free_address_space (pspace
->aspace
);
159 clear_section_table (&pspace
->target_sections
);
160 clear_program_space_solib_cache (pspace
);
161 /* Discard any data modules have associated with the PSPACE. */
162 program_space_free_data (pspace
);
166 /* Copies program space SRC to DEST. Copies the main executable file,
167 and the main symbol file. Returns DEST. */
169 struct program_space
*
170 clone_program_space (struct program_space
*dest
, struct program_space
*src
)
172 scoped_restore_current_program_space restore_pspace
;
174 set_current_program_space (dest
);
176 if (src
->pspace_exec_filename
!= NULL
)
177 exec_file_attach (src
->pspace_exec_filename
, 0);
179 if (src
->symfile_object_file
!= NULL
)
180 symbol_file_add_main (objfile_name (src
->symfile_object_file
), 0);
185 /* Sets PSPACE as the current program space. It is the caller's
186 responsibility to make sure that the currently selected
187 inferior/thread matches the selected program space. */
190 set_current_program_space (struct program_space
*pspace
)
192 if (current_program_space
== pspace
)
195 gdb_assert (pspace
!= NULL
);
197 current_program_space
= pspace
;
199 /* Different symbols change our view of the frame chain. */
200 reinit_frame_cache ();
203 /* Returns true iff there's no inferior bound to PSPACE. */
206 program_space_empty_p (struct program_space
*pspace
)
208 if (find_inferior_for_program_space (pspace
) != NULL
)
214 /* Remove a program space from the program spaces list and release it. It is
215 an error to call this function while PSPACE is the current program space. */
218 delete_program_space (struct program_space
*pspace
)
220 struct program_space
*ss
, **ss_link
;
221 gdb_assert (pspace
!= NULL
);
222 gdb_assert (pspace
!= current_program_space
);
225 ss_link
= &program_spaces
;
238 release_program_space (pspace
);
241 /* Prints the list of program spaces and their details on UIOUT. If
242 REQUESTED is not -1, it's the ID of the pspace that should be
243 printed. Otherwise, all spaces are printed. */
246 print_program_space (struct ui_out
*uiout
, int requested
)
248 struct program_space
*pspace
;
251 /* Compute number of pspaces we will print. */
254 if (requested
!= -1 && pspace
->num
!= requested
)
260 /* There should always be at least one. */
261 gdb_assert (count
> 0);
263 ui_out_emit_table
table_emitter (uiout
, 3, count
, "pspaces");
264 uiout
->table_header (1, ui_left
, "current", "");
265 uiout
->table_header (4, ui_left
, "id", "Id");
266 uiout
->table_header (17, ui_left
, "exec", "Executable");
267 uiout
->table_body ();
271 struct inferior
*inf
;
274 if (requested
!= -1 && requested
!= pspace
->num
)
277 ui_out_emit_tuple
tuple_emitter (uiout
, NULL
);
279 if (pspace
== current_program_space
)
280 uiout
->field_string ("current", "*");
282 uiout
->field_skip ("current");
284 uiout
->field_int ("id", pspace
->num
);
286 if (pspace
->pspace_exec_filename
)
287 uiout
->field_string ("exec", pspace
->pspace_exec_filename
);
289 uiout
->field_skip ("exec");
291 /* Print extra info that doesn't really fit in tabular form.
292 Currently, we print the list of inferiors bound to a pspace.
293 There can be more than one inferior bound to the same pspace,
294 e.g., both parent/child inferiors in a vfork, or, on targets
295 that share pspaces between inferiors. */
297 for (inf
= inferior_list
; inf
; inf
= inf
->next
)
298 if (inf
->pspace
== pspace
)
303 printf_filtered ("\n\tBound inferiors: ID %d (%s)",
305 target_pid_to_str (pid_to_ptid (inf
->pid
)));
308 printf_filtered (", ID %d (%s)",
310 target_pid_to_str (pid_to_ptid (inf
->pid
)));
317 /* Boolean test for an already-known program space id. */
320 valid_program_space_id (int num
)
322 struct program_space
*pspace
;
325 if (pspace
->num
== num
)
331 /* If ARGS is NULL or empty, print information about all program
332 spaces. Otherwise, ARGS is a text representation of a LONG
333 indicating which the program space to print information about. */
336 maintenance_info_program_spaces_command (const char *args
, int from_tty
)
342 requested
= parse_and_eval_long (args
);
343 if (!valid_program_space_id (requested
))
344 error (_("program space ID %d not known."), requested
);
347 print_program_space (current_uiout
, requested
);
350 /* Simply returns the count of program spaces. */
353 number_of_program_spaces (void)
355 struct program_space
*pspace
;
364 /* Update all program spaces matching to address spaces. The user may
365 have created several program spaces, and loaded executables into
366 them before connecting to the target interface that will create the
367 inferiors. All that happens before GDB has a chance to know if the
368 inferiors will share an address space or not. Call this after
369 having connected to the target interface and having fetched the
370 target description, to fixup the program/address spaces mappings.
372 It is assumed that there are no bound inferiors yet, otherwise,
373 they'd be left with stale referenced to released aspaces. */
376 update_address_spaces (void)
378 int shared_aspace
= gdbarch_has_shared_address_space (target_gdbarch ());
379 struct program_space
*pspace
;
380 struct inferior
*inf
;
382 init_address_spaces ();
386 struct address_space
*aspace
= new_address_space ();
388 free_address_space (current_program_space
->aspace
);
390 pspace
->aspace
= aspace
;
395 free_address_space (pspace
->aspace
);
396 pspace
->aspace
= new_address_space ();
399 for (inf
= inferior_list
; inf
; inf
= inf
->next
)
400 if (gdbarch_has_global_solist (target_gdbarch ()))
401 inf
->aspace
= maybe_new_address_space ();
403 inf
->aspace
= inf
->pspace
->aspace
;
408 /* See progspace.h. */
411 clear_program_space_solib_cache (struct program_space
*pspace
)
413 VEC_free (so_list_ptr
, pspace
->added_solibs
);
415 free_char_ptr_vec (pspace
->deleted_solibs
);
416 pspace
->deleted_solibs
= NULL
;
422 initialize_progspace (void)
424 add_cmd ("program-spaces", class_maintenance
,
425 maintenance_info_program_spaces_command
,
426 _("Info about currently known program spaces."),
427 &maintenanceinfolist
);
429 /* There's always one program space. Note that this function isn't
430 an automatic _initialize_foo function, since other
431 _initialize_foo routines may need to install their per-pspace
432 data keys. We can only allocate a progspace when all those
433 modules have done that. Do this before
434 initialize_current_architecture, because that accesses exec_bfd,
435 which in turn dereferences current_program_space. */
436 current_program_space
= add_program_space (new_address_space ());