2011-08-04 Pedro Alves <pedro@codesourcery.com>
[deliverable/binutils-gdb.git] / gdb / inferior.c
CommitLineData
b77209e0
PA
1/* Multi-process control for GDB, the GNU debugger.
2
7b6bb8da 3 Copyright (C) 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
b77209e0
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"
6c95b8df 21#include "exec.h"
b77209e0
PA
22#include "inferior.h"
23#include "target.h"
24#include "command.h"
25#include "gdbcmd.h"
26#include "gdbthread.h"
27#include "ui-out.h"
4a92f99b 28#include "observer.h"
2277426b 29#include "gdbthread.h"
6c95b8df
PA
30#include "gdbcore.h"
31#include "symfile.h"
3f81c18a 32#include "environ.h"
c82c0b55 33#include "cli/cli-utils.h"
be34f849 34#include "continuations.h"
b77209e0
PA
35
36void _initialize_inferiors (void);
37
6c95b8df
PA
38static void inferior_alloc_data (struct inferior *inf);
39static void inferior_free_data (struct inferior *inf);
40
41struct inferior *inferior_list = NULL;
b77209e0
PA
42static int highest_inferior_num;
43
44/* Print notices on inferior events (attach, detach, etc.), set with
45 `set print inferior-events'. */
46static int print_inferior_events = 0;
47
6c95b8df
PA
48/* The Current Inferior. */
49static struct inferior *current_inferior_ = NULL;
50
b77209e0
PA
51struct inferior*
52current_inferior (void)
53{
6c95b8df
PA
54 return current_inferior_;
55}
56
57void
58set_current_inferior (struct inferior *inf)
59{
60 /* There's always an inferior. */
61 gdb_assert (inf != NULL);
62
63 current_inferior_ = inf;
64}
65
66/* A cleanups callback, helper for save_current_program_space
67 below. */
68
69static void
70restore_inferior (void *arg)
71{
72 struct inferior *saved_inferior = arg;
abbb1732 73
6c95b8df
PA
74 set_current_inferior (saved_inferior);
75}
76
77/* Save the current program space so that it may be restored by a later
78 call to do_cleanups. Returns the struct cleanup pointer needed for
79 later doing the cleanup. */
80
81struct cleanup *
82save_current_inferior (void)
83{
84 struct cleanup *old_chain = make_cleanup (restore_inferior,
85 current_inferior_);
abbb1732 86
6c95b8df 87 return old_chain;
b77209e0
PA
88}
89
90static void
91free_inferior (struct inferior *inf)
92{
e0ba6746 93 discard_all_inferior_continuations (inf);
6c95b8df 94 inferior_free_data (inf);
3f81c18a
VP
95 xfree (inf->args);
96 xfree (inf->terminal);
97 free_environ (inf->environment);
b77209e0
PA
98 xfree (inf->private);
99 xfree (inf);
100}
101
102void
103init_inferior_list (void)
104{
105 struct inferior *inf, *infnext;
106
107 highest_inferior_num = 0;
108 if (!inferior_list)
109 return;
110
111 for (inf = inferior_list; inf; inf = infnext)
112 {
113 infnext = inf->next;
114 free_inferior (inf);
115 }
116
117 inferior_list = NULL;
118}
119
120struct inferior *
121add_inferior_silent (int pid)
122{
123 struct inferior *inf;
124
125 inf = xmalloc (sizeof (*inf));
126 memset (inf, 0, sizeof (*inf));
127 inf->pid = pid;
128
16c381f0 129 inf->control.stop_soon = NO_STOP_QUIETLY;
d6b48e9c 130
b77209e0
PA
131 inf->num = ++highest_inferior_num;
132 inf->next = inferior_list;
133 inferior_list = inf;
134
3f81c18a
VP
135 inf->environment = make_environ ();
136 init_environ (inf->environment);
137
6c95b8df
PA
138 inferior_alloc_data (inf);
139
a79b8f6e
VP
140 observer_notify_inferior_added (inf);
141
6c95b8df
PA
142 if (pid != 0)
143 inferior_appeared (inf, pid);
a562dc8f 144
b77209e0
PA
145 return inf;
146}
147
148struct inferior *
149add_inferior (int pid)
150{
151 struct inferior *inf = add_inferior_silent (pid);
152
153 if (print_inferior_events)
154 printf_unfiltered (_("[New inferior %d]\n"), pid);
155
156 return inf;
157}
158
159struct delete_thread_of_inferior_arg
160{
161 int pid;
162 int silent;
163};
164
165static int
166delete_thread_of_inferior (struct thread_info *tp, void *data)
167{
168 struct delete_thread_of_inferior_arg *arg = data;
169
170 if (ptid_get_pid (tp->ptid) == arg->pid)
171 {
172 if (arg->silent)
173 delete_thread_silent (tp->ptid);
174 else
175 delete_thread (tp->ptid);
176 }
177
178 return 0;
179}
180
6c95b8df
PA
181void
182delete_threads_of_inferior (int pid)
183{
184 struct inferior *inf;
185 struct delete_thread_of_inferior_arg arg;
186
187 for (inf = inferior_list; inf; inf = inf->next)
188 if (inf->pid == pid)
189 break;
190
191 if (!inf)
192 return;
193
194 arg.pid = pid;
195 arg.silent = 1;
196
197 iterate_over_threads (delete_thread_of_inferior, &arg);
198}
199
b77209e0
PA
200/* If SILENT then be quiet -- don't announce a inferior death, or the
201 exit of its threads. */
6c95b8df 202
a79b8f6e 203void
6c95b8df 204delete_inferior_1 (struct inferior *todel, int silent)
b77209e0
PA
205{
206 struct inferior *inf, *infprev;
6c95b8df 207 struct delete_thread_of_inferior_arg arg;
b77209e0
PA
208
209 infprev = NULL;
210
211 for (inf = inferior_list; inf; infprev = inf, inf = inf->next)
6c95b8df 212 if (inf == todel)
b77209e0
PA
213 break;
214
215 if (!inf)
216 return;
217
6c95b8df 218 arg.pid = inf->pid;
b77209e0
PA
219 arg.silent = silent;
220
221 iterate_over_threads (delete_thread_of_inferior, &arg);
4a92f99b 222
7e1789f5
PA
223 if (infprev)
224 infprev->next = inf->next;
225 else
226 inferior_list = inf->next;
227
a79b8f6e
VP
228 observer_notify_inferior_removed (inf);
229
7e1789f5 230 free_inferior (inf);
b77209e0
PA
231}
232
233void
234delete_inferior (int pid)
235{
6c95b8df
PA
236 struct inferior *inf = find_inferior_pid (pid);
237
238 delete_inferior_1 (inf, 0);
b77209e0
PA
239
240 if (print_inferior_events)
241 printf_unfiltered (_("[Inferior %d exited]\n"), pid);
242}
243
244void
245delete_inferior_silent (int pid)
246{
6c95b8df
PA
247 struct inferior *inf = find_inferior_pid (pid);
248
249 delete_inferior_1 (inf, 1);
250}
251
252
253/* If SILENT then be quiet -- don't announce a inferior exit, or the
254 exit of its threads. */
255
256static void
257exit_inferior_1 (struct inferior *inftoex, int silent)
258{
259 struct inferior *inf;
260 struct delete_thread_of_inferior_arg arg;
261
262 for (inf = inferior_list; inf; inf = inf->next)
263 if (inf == inftoex)
264 break;
265
266 if (!inf)
267 return;
268
269 arg.pid = inf->pid;
270 arg.silent = silent;
271
272 iterate_over_threads (delete_thread_of_inferior, &arg);
273
274 /* Notify the observers before removing the inferior from the list,
275 so that the observers have a chance to look it up. */
a79b8f6e 276 observer_notify_inferior_exit (inf);
6c95b8df
PA
277
278 inf->pid = 0;
279 if (inf->vfork_parent != NULL)
280 {
281 inf->vfork_parent->vfork_child = NULL;
282 inf->vfork_parent = NULL;
283 }
8cf64490
TT
284
285 inf->has_exit_code = 0;
286 inf->exit_code = 0;
6c95b8df
PA
287}
288
289void
290exit_inferior (int pid)
291{
292 struct inferior *inf = find_inferior_pid (pid);
abbb1732 293
6c95b8df
PA
294 exit_inferior_1 (inf, 0);
295
296 if (print_inferior_events)
297 printf_unfiltered (_("[Inferior %d exited]\n"), pid);
298}
299
300void
301exit_inferior_silent (int pid)
302{
303 struct inferior *inf = find_inferior_pid (pid);
abbb1732 304
6c95b8df
PA
305 exit_inferior_1 (inf, 1);
306}
307
308void
309exit_inferior_num_silent (int num)
310{
311 struct inferior *inf = find_inferior_id (num);
312
313 exit_inferior_1 (inf, 1);
b77209e0
PA
314}
315
316void
317detach_inferior (int pid)
318{
6c95b8df 319 struct inferior *inf = find_inferior_pid (pid);
abbb1732 320
6c95b8df 321 exit_inferior_1 (inf, 1);
b77209e0
PA
322
323 if (print_inferior_events)
324 printf_unfiltered (_("[Inferior %d detached]\n"), pid);
325}
326
6c95b8df
PA
327void
328inferior_appeared (struct inferior *inf, int pid)
329{
330 inf->pid = pid;
331
a79b8f6e 332 observer_notify_inferior_appeared (inf);
6c95b8df
PA
333}
334
82f73884
PA
335void
336discard_all_inferiors (void)
337{
6c95b8df 338 struct inferior *inf;
82f73884 339
6c95b8df 340 for (inf = inferior_list; inf; inf = inf->next)
82f73884 341 {
6c95b8df
PA
342 if (inf->pid != 0)
343 exit_inferior_silent (inf->pid);
82f73884
PA
344 }
345}
346
6c95b8df 347struct inferior *
b77209e0
PA
348find_inferior_id (int num)
349{
350 struct inferior *inf;
351
352 for (inf = inferior_list; inf; inf = inf->next)
353 if (inf->num == num)
354 return inf;
355
356 return NULL;
357}
358
359struct inferior *
360find_inferior_pid (int pid)
361{
362 struct inferior *inf;
363
6c95b8df
PA
364 /* Looking for inferior pid == 0 is always wrong, and indicative of
365 a bug somewhere else. There may be more than one with pid == 0,
366 for instance. */
367 gdb_assert (pid != 0);
368
b77209e0
PA
369 for (inf = inferior_list; inf; inf = inf->next)
370 if (inf->pid == pid)
371 return inf;
372
373 return NULL;
374}
375
6c95b8df
PA
376/* Find an inferior bound to PSPACE. */
377
378struct inferior *
379find_inferior_for_program_space (struct program_space *pspace)
380{
381 struct inferior *inf;
382
383 for (inf = inferior_list; inf != NULL; inf = inf->next)
384 {
385 if (inf->pspace == pspace)
386 return inf;
387 }
388
389 return NULL;
390}
391
b77209e0
PA
392struct inferior *
393iterate_over_inferiors (int (*callback) (struct inferior *, void *),
394 void *data)
395{
396 struct inferior *inf, *infnext;
397
398 for (inf = inferior_list; inf; inf = infnext)
399 {
400 infnext = inf->next;
401 if ((*callback) (inf, data))
402 return inf;
403 }
404
405 return NULL;
406}
407
408int
409valid_gdb_inferior_id (int num)
410{
411 struct inferior *inf;
412
413 for (inf = inferior_list; inf; inf = inf->next)
414 if (inf->num == num)
415 return 1;
416
417 return 0;
418}
419
420int
421pid_to_gdb_inferior_id (int pid)
422{
423 struct inferior *inf;
424
425 for (inf = inferior_list; inf; inf = inf->next)
426 if (inf->pid == pid)
427 return inf->num;
428
429 return 0;
430}
431
432int
433gdb_inferior_id_to_pid (int num)
434{
435 struct inferior *inferior = find_inferior_id (num);
436 if (inferior)
437 return inferior->pid;
438 else
439 return -1;
440}
441
442int
443in_inferior_list (int pid)
444{
445 struct inferior *inf;
446
447 for (inf = inferior_list; inf; inf = inf->next)
448 if (inf->pid == pid)
449 return 1;
450
451 return 0;
452}
453
454int
455have_inferiors (void)
456{
6c95b8df
PA
457 struct inferior *inf;
458
459 for (inf = inferior_list; inf; inf = inf->next)
460 if (inf->pid != 0)
461 return 1;
462
463 return 0;
b77209e0
PA
464}
465
c35b1492
PA
466int
467have_live_inferiors (void)
468{
cd2effb2 469 struct inferior *inf;
6c95b8df 470
cd2effb2
JK
471 for (inf = inferior_list; inf; inf = inf->next)
472 if (inf->pid != 0)
473 {
474 struct thread_info *tp;
475
476 tp = any_thread_of_process (inf->pid);
aeaec162
TT
477 if (tp && target_has_execution_1 (tp->ptid))
478 break;
cd2effb2
JK
479 }
480
cd2effb2 481 return inf != NULL;
6c95b8df
PA
482}
483
484/* Prune away automatically added program spaces that aren't required
485 anymore. */
486
487void
488prune_inferiors (void)
489{
490 struct inferior *ss, **ss_link;
491 struct inferior *current = current_inferior ();
492
493 ss = inferior_list;
494 ss_link = &inferior_list;
495 while (ss)
496 {
497 if (ss == current
498 || !ss->removable
499 || ss->pid != 0)
500 {
501 ss_link = &ss->next;
502 ss = *ss_link;
503 continue;
504 }
505
506 *ss_link = ss->next;
507 delete_inferior_1 (ss, 1);
508 ss = *ss_link;
509 }
510
511 prune_program_spaces ();
512}
513
514/* Simply returns the count of inferiors. */
515
516int
517number_of_inferiors (void)
518{
519 struct inferior *inf;
520 int count = 0;
521
522 for (inf = inferior_list; inf != NULL; inf = inf->next)
523 count++;
524
525 return count;
c35b1492
PA
526}
527
b77209e0
PA
528/* Prints the list of inferiors and their details on UIOUT. This is a
529 version of 'info_inferior_command' suitable for use from MI.
530
c82c0b55
MS
531 If REQUESTED_INFERIORS is not NULL, it's a list of GDB ids of the
532 inferiors that should be printed. Otherwise, all inferiors are
533 printed. */
534
535static void
536print_inferior (struct ui_out *uiout, char *requested_inferiors)
b77209e0
PA
537{
538 struct inferior *inf;
539 struct cleanup *old_chain;
8bb318c6 540 int inf_count = 0;
b77209e0 541
8bb318c6
TT
542 /* Compute number of inferiors we will print. */
543 for (inf = inferior_list; inf; inf = inf->next)
544 {
c82c0b55 545 if (!number_is_in_list (requested_inferiors, inf->num))
8bb318c6
TT
546 continue;
547
548 ++inf_count;
549 }
550
551 if (inf_count == 0)
552 {
553 ui_out_message (uiout, 0, "No inferiors.\n");
554 return;
555 }
556
6c95b8df 557 old_chain = make_cleanup_ui_out_table_begin_end (uiout, 4, inf_count,
8bb318c6 558 "inferiors");
3a1ff0b6
PA
559 ui_out_table_header (uiout, 1, ui_left, "current", "");
560 ui_out_table_header (uiout, 4, ui_left, "number", "Num");
561 ui_out_table_header (uiout, 17, ui_left, "target-id", "Description");
6c95b8df 562 ui_out_table_header (uiout, 17, ui_left, "exec", "Executable");
b77209e0 563
6c95b8df 564 ui_out_table_body (uiout);
b77209e0
PA
565 for (inf = inferior_list; inf; inf = inf->next)
566 {
567 struct cleanup *chain2;
568
c82c0b55 569 if (!number_is_in_list (requested_inferiors, inf->num))
b77209e0
PA
570 continue;
571
572 chain2 = make_cleanup_ui_out_tuple_begin_end (uiout, NULL);
573
6c95b8df 574 if (inf == current_inferior ())
8bb318c6 575 ui_out_field_string (uiout, "current", "*");
b77209e0 576 else
8bb318c6 577 ui_out_field_skip (uiout, "current");
b77209e0 578
3a1ff0b6 579 ui_out_field_int (uiout, "number", inf->num);
6c95b8df
PA
580
581 if (inf->pid)
582 ui_out_field_string (uiout, "target-id",
583 target_pid_to_str (pid_to_ptid (inf->pid)));
584 else
585 ui_out_field_string (uiout, "target-id", "<null>");
586
587 if (inf->pspace->ebfd)
588 ui_out_field_string (uiout, "exec",
589 bfd_get_filename (inf->pspace->ebfd));
590 else
591 ui_out_field_skip (uiout, "exec");
592
593 /* Print extra info that isn't really fit to always present in
594 tabular form. Currently we print the vfork parent/child
595 relationships, if any. */
596 if (inf->vfork_parent)
597 {
598 ui_out_text (uiout, _("\n\tis vfork child of inferior "));
599 ui_out_field_int (uiout, "vfork-parent", inf->vfork_parent->num);
600 }
601 if (inf->vfork_child)
602 {
603 ui_out_text (uiout, _("\n\tis vfork parent of inferior "));
604 ui_out_field_int (uiout, "vfork-child", inf->vfork_child->num);
605 }
b77209e0
PA
606
607 ui_out_text (uiout, "\n");
608 do_cleanups (chain2);
609 }
610
611 do_cleanups (old_chain);
612}
613
2277426b
PA
614static void
615detach_inferior_command (char *args, int from_tty)
616{
617 int num, pid;
618 struct thread_info *tp;
197f0a60 619 struct get_number_or_range_state state;
2277426b
PA
620
621 if (!args || !*args)
af624141 622 error (_("Requires argument (inferior id(s) to detach)"));
2277426b 623
197f0a60
TT
624 init_number_or_range (&state, args);
625 while (!state.finished)
af624141 626 {
197f0a60 627 num = get_number_or_range (&state);
2277426b 628
af624141
MS
629 if (!valid_gdb_inferior_id (num))
630 {
631 warning (_("Inferior ID %d not known."), num);
632 continue;
633 }
2277426b 634
af624141 635 pid = gdb_inferior_id_to_pid (num);
2277426b 636
af624141
MS
637 tp = any_thread_of_process (pid);
638 if (!tp)
639 {
640 warning (_("Inferior ID %d has no threads."), num);
641 continue;
642 }
2277426b 643
af624141 644 switch_to_thread (tp->ptid);
2277426b 645
af624141
MS
646 detach_command (NULL, from_tty);
647 }
2277426b
PA
648}
649
650static void
651kill_inferior_command (char *args, int from_tty)
652{
653 int num, pid;
654 struct thread_info *tp;
197f0a60 655 struct get_number_or_range_state state;
2277426b
PA
656
657 if (!args || !*args)
af624141 658 error (_("Requires argument (inferior id(s) to kill)"));
2277426b 659
197f0a60
TT
660 init_number_or_range (&state, args);
661 while (!state.finished)
af624141 662 {
197f0a60 663 num = get_number_or_range (&state);
2277426b 664
af624141
MS
665 if (!valid_gdb_inferior_id (num))
666 {
667 warning (_("Inferior ID %d not known."), num);
668 continue;
669 }
2277426b 670
af624141 671 pid = gdb_inferior_id_to_pid (num);
2277426b 672
af624141
MS
673 tp = any_thread_of_process (pid);
674 if (!tp)
675 {
676 warning (_("Inferior ID %d has no threads."), num);
677 continue;
678 }
2277426b 679
af624141 680 switch_to_thread (tp->ptid);
2277426b 681
af624141
MS
682 target_kill ();
683 }
2277426b
PA
684
685 bfd_cache_close_all ();
686}
687
688static void
689inferior_command (char *args, int from_tty)
690{
6c95b8df
PA
691 struct inferior *inf;
692 int num;
2277426b
PA
693
694 num = parse_and_eval_long (args);
695
6c95b8df
PA
696 inf = find_inferior_id (num);
697 if (inf == NULL)
2277426b
PA
698 error (_("Inferior ID %d not known."), num);
699
6c95b8df
PA
700 printf_filtered (_("[Switching to inferior %d [%s] (%s)]\n"),
701 inf->num,
702 target_pid_to_str (pid_to_ptid (inf->pid)),
703 (inf->pspace->ebfd
704 ? bfd_get_filename (inf->pspace->ebfd)
705 : _("<noexec>")));
2277426b 706
6c95b8df 707 if (inf->pid != 0)
2277426b 708 {
6c95b8df
PA
709 if (inf->pid != ptid_get_pid (inferior_ptid))
710 {
711 struct thread_info *tp;
2277426b 712
6c95b8df
PA
713 tp = any_thread_of_process (inf->pid);
714 if (!tp)
715 error (_("Inferior has no threads."));
2277426b 716
6c95b8df
PA
717 switch_to_thread (tp->ptid);
718 }
719
720 printf_filtered (_("[Switching to thread %d (%s)] "),
721 pid_to_thread_id (inferior_ptid),
722 target_pid_to_str (inferior_ptid));
2277426b 723 }
6c95b8df
PA
724 else
725 {
726 struct inferior *inf;
2277426b 727
6c95b8df
PA
728 inf = find_inferior_id (num);
729 set_current_inferior (inf);
730 switch_to_thread (null_ptid);
731 set_current_program_space (inf->pspace);
732 }
2277426b 733
6c95b8df 734 if (inf->pid != 0 && is_running (inferior_ptid))
2277426b 735 ui_out_text (uiout, "(running)\n");
6c95b8df 736 else if (inf->pid != 0)
2277426b
PA
737 {
738 ui_out_text (uiout, "\n");
739 print_stack_frame (get_selected_frame (NULL), 1, SRC_AND_LOC);
740 }
741}
742
b77209e0
PA
743/* Print information about currently known inferiors. */
744
745static void
2277426b 746info_inferiors_command (char *args, int from_tty)
b77209e0 747{
c82c0b55 748 print_inferior (uiout, args);
b77209e0
PA
749}
750
6c95b8df
PA
751/* remove-inferior ID */
752
753void
754remove_inferior_command (char *args, int from_tty)
755{
756 int num;
757 struct inferior *inf;
197f0a60 758 struct get_number_or_range_state state;
6c95b8df 759
af624141
MS
760 if (args == NULL || *args == '\0')
761 error (_("Requires an argument (inferior id(s) to remove)"));
6c95b8df 762
197f0a60
TT
763 init_number_or_range (&state, args);
764 while (!state.finished)
af624141 765 {
197f0a60 766 num = get_number_or_range (&state);
af624141 767 inf = find_inferior_id (num);
6c95b8df 768
af624141
MS
769 if (inf == NULL)
770 {
771 warning (_("Inferior ID %d not known."), num);
772 continue;
773 }
774
775 if (inf == current_inferior ())
776 {
777 warning (_("Can not remove current symbol inferior %d."), num);
778 continue;
779 }
8fa067af 780
af624141
MS
781 if (inf->pid != 0)
782 {
783 warning (_("Can not remove active inferior %d."), num);
784 continue;
785 }
6c95b8df 786
af624141
MS
787 delete_inferior_1 (inf, 1);
788 }
6c95b8df
PA
789}
790
a79b8f6e
VP
791struct inferior *
792add_inferior_with_spaces (void)
793{
794 struct address_space *aspace;
795 struct program_space *pspace;
796 struct inferior *inf;
797
798 /* If all inferiors share an address space on this system, this
799 doesn't really return a new address space; otherwise, it
800 really does. */
801 aspace = maybe_new_address_space ();
802 pspace = add_program_space (aspace);
803 inf = add_inferior (0);
804 inf->pspace = pspace;
805 inf->aspace = pspace->aspace;
806
807 return inf;
808}
6c95b8df
PA
809
810/* add-inferior [-copies N] [-exec FILENAME] */
811
812void
813add_inferior_command (char *args, int from_tty)
814{
815 int i, copies = 1;
816 char *exec = NULL;
817 char **argv;
818 struct cleanup *old_chain = make_cleanup (null_cleanup, NULL);
819
820 if (args)
821 {
822 argv = gdb_buildargv (args);
823 make_cleanup_freeargv (argv);
824
825 for (; *argv != NULL; argv++)
826 {
827 if (**argv == '-')
828 {
829 if (strcmp (*argv, "-copies") == 0)
830 {
831 ++argv;
832 if (!*argv)
833 error (_("No argument to -copies"));
834 copies = parse_and_eval_long (*argv);
835 }
836 else if (strcmp (*argv, "-exec") == 0)
837 {
838 ++argv;
839 if (!*argv)
840 error (_("No argument to -exec"));
841 exec = *argv;
842 }
843 }
844 else
845 error (_("Invalid argument"));
846 }
847 }
848
849 save_current_space_and_thread ();
850
851 for (i = 0; i < copies; ++i)
852 {
a79b8f6e 853 struct inferior *inf = add_inferior_with_spaces ();
6c95b8df
PA
854
855 printf_filtered (_("Added inferior %d\n"), inf->num);
856
857 if (exec != NULL)
858 {
859 /* Switch over temporarily, while reading executable and
1777feb0 860 symbols.q. */
a79b8f6e 861 set_current_program_space (inf->pspace);
6c95b8df
PA
862 set_current_inferior (inf);
863 switch_to_thread (null_ptid);
864
865 exec_file_attach (exec, from_tty);
866 symbol_file_add_main (exec, from_tty);
867 }
868 }
869
870 do_cleanups (old_chain);
871}
872
873/* clone-inferior [-copies N] [ID] */
874
875void
876clone_inferior_command (char *args, int from_tty)
877{
878 int i, copies = 1;
879 char **argv;
880 struct inferior *orginf = NULL;
881 struct cleanup *old_chain = make_cleanup (null_cleanup, NULL);
882
883 if (args)
884 {
885 argv = gdb_buildargv (args);
886 make_cleanup_freeargv (argv);
887
888 for (; *argv != NULL; argv++)
889 {
890 if (**argv == '-')
891 {
892 if (strcmp (*argv, "-copies") == 0)
893 {
894 ++argv;
895 if (!*argv)
896 error (_("No argument to -copies"));
897 copies = parse_and_eval_long (*argv);
898
899 if (copies < 0)
900 error (_("Invalid copies number"));
901 }
902 }
903 else
904 {
905 if (orginf == NULL)
906 {
907 int num;
908
909 /* The first non-option (-) argument specified the
910 program space ID. */
911 num = parse_and_eval_long (*argv);
912 orginf = find_inferior_id (num);
913
914 if (orginf == NULL)
915 error (_("Inferior ID %d not known."), num);
916 continue;
917 }
918 else
919 error (_("Invalid argument"));
920 }
921 }
922 }
923
924 /* If no inferior id was specified, then the user wants to clone the
925 current inferior. */
926 if (orginf == NULL)
927 orginf = current_inferior ();
928
929 save_current_space_and_thread ();
930
931 for (i = 0; i < copies; ++i)
932 {
933 struct address_space *aspace;
934 struct program_space *pspace;
935 struct inferior *inf;
936
937 /* If all inferiors share an address space on this system, this
938 doesn't really return a new address space; otherwise, it
939 really does. */
940 aspace = maybe_new_address_space ();
941 pspace = add_program_space (aspace);
942 inf = add_inferior (0);
943 inf->pspace = pspace;
944 inf->aspace = pspace->aspace;
945
946 printf_filtered (_("Added inferior %d.\n"), inf->num);
947
948 set_current_inferior (inf);
949 switch_to_thread (null_ptid);
950 clone_program_space (pspace, orginf->pspace);
951 }
952
953 do_cleanups (old_chain);
954}
955
b77209e0
PA
956/* Print notices when new inferiors are created and die. */
957static void
958show_print_inferior_events (struct ui_file *file, int from_tty,
959 struct cmd_list_element *c, const char *value)
960{
961 fprintf_filtered (file, _("Printing of inferior events is %s.\n"), value);
962}
963
6c95b8df
PA
964\f
965
966/* Keep a registry of per-inferior data-pointers required by other GDB
967 modules. */
968
969struct inferior_data
970{
971 unsigned index;
972 void (*cleanup) (struct inferior *, void *);
973};
974
975struct inferior_data_registration
976{
977 struct inferior_data *data;
978 struct inferior_data_registration *next;
979};
980
981struct inferior_data_registry
982{
983 struct inferior_data_registration *registrations;
984 unsigned num_registrations;
985};
986
987static struct inferior_data_registry inferior_data_registry
988 = { NULL, 0 };
989
990const struct inferior_data *
991register_inferior_data_with_cleanup
992 (void (*cleanup) (struct inferior *, void *))
993{
994 struct inferior_data_registration **curr;
995
996 /* Append new registration. */
997 for (curr = &inferior_data_registry.registrations;
998 *curr != NULL; curr = &(*curr)->next);
999
1000 *curr = XMALLOC (struct inferior_data_registration);
1001 (*curr)->next = NULL;
1002 (*curr)->data = XMALLOC (struct inferior_data);
1003 (*curr)->data->index = inferior_data_registry.num_registrations++;
1004 (*curr)->data->cleanup = cleanup;
1005
1006 return (*curr)->data;
1007}
1008
1009const struct inferior_data *
1010register_inferior_data (void)
1011{
1012 return register_inferior_data_with_cleanup (NULL);
1013}
1014
1015static void
1016inferior_alloc_data (struct inferior *inf)
1017{
1018 gdb_assert (inf->data == NULL);
1019 inf->num_data = inferior_data_registry.num_registrations;
1020 inf->data = XCALLOC (inf->num_data, void *);
1021}
1022
1023static void
1024inferior_free_data (struct inferior *inf)
1025{
1026 gdb_assert (inf->data != NULL);
1027 clear_inferior_data (inf);
1028 xfree (inf->data);
1029 inf->data = NULL;
1030}
1031
b77209e0 1032void
6c95b8df 1033clear_inferior_data (struct inferior *inf)
b77209e0 1034{
6c95b8df
PA
1035 struct inferior_data_registration *registration;
1036 int i;
1037
1038 gdb_assert (inf->data != NULL);
1039
1040 for (registration = inferior_data_registry.registrations, i = 0;
1041 i < inf->num_data;
1042 registration = registration->next, i++)
1043 if (inf->data[i] != NULL && registration->data->cleanup)
1044 registration->data->cleanup (inf, inf->data[i]);
1045
1046 memset (inf->data, 0, inf->num_data * sizeof (void *));
1047}
1048
1049void
1050set_inferior_data (struct inferior *inf,
1051 const struct inferior_data *data,
1052 void *value)
1053{
1054 gdb_assert (data->index < inf->num_data);
1055 inf->data[data->index] = value;
1056}
1057
1058void *
1059inferior_data (struct inferior *inf, const struct inferior_data *data)
1060{
1061 gdb_assert (data->index < inf->num_data);
1062 return inf->data[data->index];
1063}
1064
1065void
1066initialize_inferiors (void)
1067{
1068 /* There's always one inferior. Note that this function isn't an
1069 automatic _initialize_foo function, since other _initialize_foo
1070 routines may need to install their per-inferior data keys. We
1071 can only allocate an inferior when all those modules have done
1072 that. Do this after initialize_progspace, due to the
1073 current_program_space reference. */
1074 current_inferior_ = add_inferior (0);
1075 current_inferior_->pspace = current_program_space;
1076 current_inferior_->aspace = current_program_space->aspace;
1077
c82c0b55
MS
1078 add_info ("inferiors", info_inferiors_command,
1079 _("IDs of specified inferiors (all inferiors if no argument)."));
b77209e0 1080
6c95b8df
PA
1081 add_com ("add-inferior", no_class, add_inferior_command, _("\
1082Add a new inferior.\n\
1083Usage: add-inferior [-copies <N>] [-exec <FILENAME>]\n\
af624141 1084N is the optional number of inferiors to add, default is 1.\n\
6c95b8df
PA
1085FILENAME is the file name of the executable to use\n\
1086as main program."));
1087
af624141
MS
1088 add_com ("remove-inferiors", no_class, remove_inferior_command, _("\
1089Remove inferior ID (or list of IDs).\n\
1090Usage: remove-inferiors ID..."));
6c95b8df
PA
1091
1092 add_com ("clone-inferior", no_class, clone_inferior_command, _("\
1093Clone inferior ID.\n\
1094Usage: clone-inferior [-copies <N>] [ID]\n\
1095Add N copies of inferior ID. The new inferior has the same\n\
1096executable loaded as the copied inferior. If -copies is not specified,\n\
1097adds 1 copy. If ID is not specified, it is the current inferior\n\
1098that is cloned."));
2277426b 1099
af624141
MS
1100 add_cmd ("inferiors", class_run, detach_inferior_command, _("\
1101Detach from inferior ID (or list of IDS)."),
2277426b
PA
1102 &detachlist);
1103
af624141
MS
1104 add_cmd ("inferiors", class_run, kill_inferior_command, _("\
1105Kill inferior ID (or list of IDs)."),
2277426b
PA
1106 &killlist);
1107
1108 add_cmd ("inferior", class_run, inferior_command, _("\
1109Use this command to switch between inferiors.\n\
1110The new inferior ID must be currently known."),
1111 &cmdlist);
6c95b8df
PA
1112
1113 add_setshow_boolean_cmd ("inferior-events", no_class,
1114 &print_inferior_events, _("\
1115Set printing of inferior events (e.g., inferior start and exit)."), _("\
1116Show printing of inferior events (e.g., inferior start and exit)."), NULL,
1117 NULL,
1118 show_print_inferior_events,
1119 &setprintlist, &showprintlist);
1120
b77209e0 1121}
This page took 0.392457 seconds and 4 git commands to generate.