Add more targets to the list of architectures not supporting format changing during...
[deliverable/binutils-gdb.git] / gdb / progspace.c
CommitLineData
6c95b8df
PA
1/* Program and address space management, for GDB, the GNU debugger.
2
61baf725 3 Copyright (C) 2009-2017 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"
26#include "gdbthread.h"
27
28/* The last program space number assigned. */
29int last_program_space_num = 0;
30
31/* The head of the program spaces list. */
32struct program_space *program_spaces;
33
34/* Pointer to the current program space. */
35struct program_space *current_program_space;
36
37/* The last address space number assigned. */
38static int highest_address_space_num;
39
8e260fc0
TT
40\f
41
42/* Keep a registry of per-program_space data-pointers required by other GDB
43 modules. */
44
6b81941e 45DEFINE_REGISTRY (program_space, REGISTRY_ACCESS_FIELD)
6c95b8df 46
3a8356ff
YQ
47/* An address space. It is used for comparing if pspaces/inferior/threads
48 see the same address space and for associating caches to each address
6c95b8df
PA
49 space. */
50
51struct address_space
52{
53 int num;
3a8356ff
YQ
54
55 /* Per aspace data-pointers required by other GDB modules. */
56 REGISTRY_FIELDS;
6c95b8df
PA
57};
58
3a8356ff
YQ
59/* Keep a registry of per-address_space data-pointers required by other GDB
60 modules. */
61
62DEFINE_REGISTRY (address_space, REGISTRY_ACCESS_FIELD)
63
64\f
65
6c95b8df
PA
66/* Create a new address space object, and add it to the list. */
67
68struct address_space *
69new_address_space (void)
70{
71 struct address_space *aspace;
72
41bf6aca 73 aspace = XCNEW (struct address_space);
6c95b8df 74 aspace->num = ++highest_address_space_num;
3a8356ff 75 address_space_alloc_data (aspace);
6c95b8df
PA
76
77 return aspace;
78}
79
80/* Maybe create a new address space object, and add it to the list, or
81 return a pointer to an existing address space, in case inferiors
82 share an address space on this target system. */
83
84struct address_space *
85maybe_new_address_space (void)
86{
f5656ead 87 int shared_aspace = gdbarch_has_shared_address_space (target_gdbarch ());
6c95b8df
PA
88
89 if (shared_aspace)
90 {
91 /* Just return the first in the list. */
92 return program_spaces->aspace;
93 }
94
95 return new_address_space ();
96}
97
98static void
99free_address_space (struct address_space *aspace)
100{
3a8356ff 101 address_space_free_data (aspace);
6c95b8df
PA
102 xfree (aspace);
103}
104
c0694254
PA
105int
106address_space_num (struct address_space *aspace)
107{
108 return aspace->num;
109}
110
6c95b8df
PA
111/* Start counting over from scratch. */
112
113static void
114init_address_spaces (void)
115{
116 highest_address_space_num = 0;
117}
118
119\f
120
121/* Adds a new empty program space to the program space list, and binds
122 it to ASPACE. Returns the pointer to the new object. */
123
124struct program_space *
125add_program_space (struct address_space *aspace)
126{
127 struct program_space *pspace;
128
41bf6aca 129 pspace = XCNEW (struct program_space);
6c95b8df
PA
130
131 pspace->num = ++last_program_space_num;
132 pspace->aspace = aspace;
133
134 program_space_alloc_data (pspace);
135
b05b1202
PA
136 if (program_spaces == NULL)
137 program_spaces = pspace;
138 else
139 {
140 struct program_space *last;
141
142 for (last = program_spaces; last->next != NULL; last = last->next)
143 ;
144 last->next = pspace;
145 }
6c95b8df
PA
146
147 return pspace;
148}
149
150/* Releases program space PSPACE, and all its contents (shared
151 libraries, objfiles, and any other references to the PSPACE in
152 other modules). It is an internal error to call this when PSPACE
153 is the current program space, since there should always be a
154 program space. */
155
156static void
157release_program_space (struct program_space *pspace)
158{
6c95b8df
PA
159 gdb_assert (pspace != current_program_space);
160
5ed8105e
PA
161 scoped_restore_current_program_space restore_pspace;
162
6c95b8df
PA
163 set_current_program_space (pspace);
164
165 breakpoint_program_space_exit (pspace);
166 no_shared_libraries (NULL, 0);
167 exec_close ();
168 free_all_objfiles ();
f5656ead 169 if (!gdbarch_has_shared_address_space (target_gdbarch ()))
6c95b8df 170 free_address_space (pspace->aspace);
a5b1fd27 171 clear_section_table (&pspace->target_sections);
edcc5120 172 clear_program_space_solib_cache (pspace);
6c95b8df
PA
173 /* Discard any data modules have associated with the PSPACE. */
174 program_space_free_data (pspace);
175 xfree (pspace);
6c95b8df
PA
176}
177
6c95b8df
PA
178/* Copies program space SRC to DEST. Copies the main executable file,
179 and the main symbol file. Returns DEST. */
180
181struct program_space *
182clone_program_space (struct program_space *dest, struct program_space *src)
183{
5ed8105e 184 scoped_restore_current_program_space restore_pspace;
6c95b8df
PA
185
186 set_current_program_space (dest);
187
1f0c4988
JK
188 if (src->pspace_exec_filename != NULL)
189 exec_file_attach (src->pspace_exec_filename, 0);
6c95b8df
PA
190
191 if (src->symfile_object_file != NULL)
4262abfb 192 symbol_file_add_main (objfile_name (src->symfile_object_file), 0);
6c95b8df 193
6c95b8df
PA
194 return dest;
195}
196
197/* Sets PSPACE as the current program space. It is the caller's
198 responsibility to make sure that the currently selected
199 inferior/thread matches the selected program space. */
200
201void
202set_current_program_space (struct program_space *pspace)
203{
204 if (current_program_space == pspace)
205 return;
206
207 gdb_assert (pspace != NULL);
208
209 current_program_space = pspace;
210
211 /* Different symbols change our view of the frame chain. */
212 reinit_frame_cache ();
213}
214
6c95b8df
PA
215/* Returns true iff there's no inferior bound to PSPACE. */
216
7a41607e
SM
217int
218program_space_empty_p (struct program_space *pspace)
6c95b8df 219{
6c95b8df
PA
220 if (find_inferior_for_program_space (pspace) != NULL)
221 return 0;
222
223 return 1;
224}
225
7a41607e
SM
226/* Remove a program space from the program spaces list and release it. It is
227 an error to call this function while PSPACE is the current program space. */
6c95b8df
PA
228
229void
7a41607e 230delete_program_space (struct program_space *pspace)
6c95b8df
PA
231{
232 struct program_space *ss, **ss_link;
4ab31498
SM
233 gdb_assert (pspace != NULL);
234 gdb_assert (pspace != current_program_space);
6c95b8df
PA
235
236 ss = program_spaces;
237 ss_link = &program_spaces;
7a41607e 238 while (ss != NULL)
6c95b8df 239 {
7a41607e 240 if (ss == pspace)
6c95b8df 241 {
7a41607e
SM
242 *ss_link = ss->next;
243 break;
6c95b8df
PA
244 }
245
7a41607e 246 ss_link = &ss->next;
6c95b8df
PA
247 ss = *ss_link;
248 }
7a41607e
SM
249
250 release_program_space (pspace);
6c95b8df
PA
251}
252
253/* Prints the list of program spaces and their details on UIOUT. If
254 REQUESTED is not -1, it's the ID of the pspace that should be
255 printed. Otherwise, all spaces are printed. */
256
257static void
258print_program_space (struct ui_out *uiout, int requested)
259{
260 struct program_space *pspace;
261 int count = 0;
262 struct cleanup *old_chain;
263
6c95b8df
PA
264 /* Compute number of pspaces we will print. */
265 ALL_PSPACES (pspace)
266 {
267 if (requested != -1 && pspace->num != requested)
268 continue;
269
270 ++count;
271 }
272
273 /* There should always be at least one. */
274 gdb_assert (count > 0);
275
276 old_chain = make_cleanup_ui_out_table_begin_end (uiout, 3, count, "pspaces");
112e8700
SM
277 uiout->table_header (1, ui_left, "current", "");
278 uiout->table_header (4, ui_left, "id", "Id");
279 uiout->table_header (17, ui_left, "exec", "Executable");
280 uiout->table_body ();
6c95b8df
PA
281
282 ALL_PSPACES (pspace)
283 {
6c95b8df
PA
284 struct inferior *inf;
285 int printed_header;
286
287 if (requested != -1 && requested != pspace->num)
288 continue;
289
2e783024 290 ui_out_emit_tuple tuple_emitter (uiout, NULL);
6c95b8df
PA
291
292 if (pspace == current_program_space)
112e8700 293 uiout->field_string ("current", "*");
6c95b8df 294 else
112e8700 295 uiout->field_skip ("current");
6c95b8df 296
112e8700 297 uiout->field_int ("id", pspace->num);
6c95b8df 298
1f0c4988 299 if (pspace->pspace_exec_filename)
112e8700 300 uiout->field_string ("exec", pspace->pspace_exec_filename);
6c95b8df 301 else
112e8700 302 uiout->field_skip ("exec");
6c95b8df
PA
303
304 /* Print extra info that doesn't really fit in tabular form.
305 Currently, we print the list of inferiors bound to a pspace.
306 There can be more than one inferior bound to the same pspace,
307 e.g., both parent/child inferiors in a vfork, or, on targets
308 that share pspaces between inferiors. */
309 printed_header = 0;
310 for (inf = inferior_list; inf; inf = inf->next)
311 if (inf->pspace == pspace)
312 {
313 if (!printed_header)
314 {
315 printed_header = 1;
316 printf_filtered ("\n\tBound inferiors: ID %d (%s)",
317 inf->num,
318 target_pid_to_str (pid_to_ptid (inf->pid)));
319 }
320 else
321 printf_filtered (", ID %d (%s)",
322 inf->num,
323 target_pid_to_str (pid_to_ptid (inf->pid)));
324 }
325
112e8700 326 uiout->text ("\n");
6c95b8df
PA
327 }
328
329 do_cleanups (old_chain);
330}
331
332/* Boolean test for an already-known program space id. */
333
334static int
335valid_program_space_id (int num)
336{
337 struct program_space *pspace;
338
339 ALL_PSPACES (pspace)
340 if (pspace->num == num)
341 return 1;
342
343 return 0;
344}
345
346/* If ARGS is NULL or empty, print information about all program
347 spaces. Otherwise, ARGS is a text representation of a LONG
348 indicating which the program space to print information about. */
349
350static void
351maintenance_info_program_spaces_command (char *args, int from_tty)
352{
353 int requested = -1;
354
355 if (args && *args)
356 {
357 requested = parse_and_eval_long (args);
358 if (!valid_program_space_id (requested))
359 error (_("program space ID %d not known."), requested);
360 }
361
79a45e25 362 print_program_space (current_uiout, requested);
6c95b8df
PA
363}
364
365/* Simply returns the count of program spaces. */
366
367int
368number_of_program_spaces (void)
369{
370 struct program_space *pspace;
371 int count = 0;
372
373 ALL_PSPACES (pspace)
374 count++;
375
376 return count;
377}
378
379/* Update all program spaces matching to address spaces. The user may
380 have created several program spaces, and loaded executables into
381 them before connecting to the target interface that will create the
382 inferiors. All that happens before GDB has a chance to know if the
383 inferiors will share an address space or not. Call this after
384 having connected to the target interface and having fetched the
385 target description, to fixup the program/address spaces mappings.
386
387 It is assumed that there are no bound inferiors yet, otherwise,
388 they'd be left with stale referenced to released aspaces. */
389
390void
391update_address_spaces (void)
392{
f5656ead 393 int shared_aspace = gdbarch_has_shared_address_space (target_gdbarch ());
6c95b8df 394 struct program_space *pspace;
7e9af34a 395 struct inferior *inf;
6c95b8df
PA
396
397 init_address_spaces ();
398
7e9af34a 399 if (shared_aspace)
6c95b8df 400 {
7e9af34a 401 struct address_space *aspace = new_address_space ();
ad3bbd48 402
7e9af34a
DJ
403 free_address_space (current_program_space->aspace);
404 ALL_PSPACES (pspace)
405 pspace->aspace = aspace;
6c95b8df 406 }
7e9af34a
DJ
407 else
408 ALL_PSPACES (pspace)
409 {
410 free_address_space (pspace->aspace);
411 pspace->aspace = new_address_space ();
412 }
413
414 for (inf = inferior_list; inf; inf = inf->next)
f5656ead 415 if (gdbarch_has_global_solist (target_gdbarch ()))
7e9af34a
DJ
416 inf->aspace = maybe_new_address_space ();
417 else
418 inf->aspace = inf->pspace->aspace;
6c95b8df
PA
419}
420
6c95b8df
PA
421\f
422
edcc5120
TT
423/* See progspace.h. */
424
425void
426clear_program_space_solib_cache (struct program_space *pspace)
427{
edcc5120 428 VEC_free (so_list_ptr, pspace->added_solibs);
e4ab2fad
JK
429
430 free_char_ptr_vec (pspace->deleted_solibs);
431 pspace->deleted_solibs = NULL;
edcc5120
TT
432}
433
434\f
435
6c95b8df
PA
436void
437initialize_progspace (void)
438{
439 add_cmd ("program-spaces", class_maintenance,
3e43a32a
MS
440 maintenance_info_program_spaces_command,
441 _("Info about currently known program spaces."),
6c95b8df
PA
442 &maintenanceinfolist);
443
444 /* There's always one program space. Note that this function isn't
445 an automatic _initialize_foo function, since other
446 _initialize_foo routines may need to install their per-pspace
447 data keys. We can only allocate a progspace when all those
448 modules have done that. Do this before
449 initialize_current_architecture, because that accesses exec_bfd,
450 which in turn dereferences current_program_space. */
451 current_program_space = add_program_space (new_address_space ());
452}
This page took 0.814052 seconds and 4 git commands to generate.