Avoid memcpys in regcache read_part/write_part for full registers.
[deliverable/binutils-gdb.git] / gdb / inferior.c
CommitLineData
b77209e0
PA
1/* Multi-process control for GDB, the GNU debugger.
2
e2882c85 3 Copyright (C) 2008-2018 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"
06da564e 25#include "completer.h"
b77209e0
PA
26#include "gdbcmd.h"
27#include "gdbthread.h"
28#include "ui-out.h"
76727919 29#include "observable.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"
6ecd4729
PA
35#include "arch-utils.h"
36#include "target-descriptions.h"
47902076 37#include "readline/tilde.h"
5ed8105e 38#include "progspace-and-thread.h"
b77209e0 39
8e260fc0
TT
40/* Keep a registry of per-inferior data-pointers required by other GDB
41 modules. */
42
6b81941e 43DEFINE_REGISTRY (inferior, REGISTRY_ACCESS_FIELD)
6c95b8df
PA
44
45struct inferior *inferior_list = NULL;
b77209e0
PA
46static int highest_inferior_num;
47
f67c0c91
SDJ
48/* See inferior.h. */
49int print_inferior_events = 1;
b77209e0 50
3a3fd0fd
PA
51/* The Current Inferior. This is a strong reference. I.e., whenever
52 an inferior is the current inferior, its refcount is
53 incremented. */
6c95b8df
PA
54static struct inferior *current_inferior_ = NULL;
55
b77209e0
PA
56struct inferior*
57current_inferior (void)
58{
6c95b8df
PA
59 return current_inferior_;
60}
61
62void
63set_current_inferior (struct inferior *inf)
64{
65 /* There's always an inferior. */
66 gdb_assert (inf != NULL);
67
3a3fd0fd
PA
68 inf->incref ();
69 current_inferior_->decref ();
6c95b8df
PA
70 current_inferior_ = inf;
71}
72
089354bb
SM
73private_inferior::~private_inferior () = default;
74
0550c955 75inferior::~inferior ()
b77209e0 76{
0550c955
PA
77 inferior *inf = this;
78
e0ba6746 79 discard_all_inferior_continuations (inf);
6c95b8df 80 inferior_free_data (inf);
3f81c18a
VP
81 xfree (inf->args);
82 xfree (inf->terminal);
6ecd4729 83 target_desc_info_free (inf->tdesc_info);
0550c955
PA
84}
85
86inferior::inferior (int pid_)
87 : num (++highest_inferior_num),
88 pid (pid_),
9a6c7d9c 89 environment (gdb_environ::from_host_environ ()),
0550c955
PA
90 registry_data ()
91{
0550c955 92 inferior_alloc_data (this);
b77209e0
PA
93}
94
b77209e0
PA
95struct inferior *
96add_inferior_silent (int pid)
97{
0550c955 98 inferior *inf = new inferior (pid);
b05b1202
PA
99
100 if (inferior_list == NULL)
101 inferior_list = inf;
102 else
103 {
0550c955 104 inferior *last;
b05b1202
PA
105
106 for (last = inferior_list; last->next != NULL; last = last->next)
107 ;
108 last->next = inf;
109 }
b77209e0 110
76727919 111 gdb::observers::inferior_added.notify (inf);
a79b8f6e 112
6c95b8df
PA
113 if (pid != 0)
114 inferior_appeared (inf, pid);
a562dc8f 115
b77209e0
PA
116 return inf;
117}
118
119struct inferior *
120add_inferior (int pid)
121{
122 struct inferior *inf = add_inferior_silent (pid);
123
124 if (print_inferior_events)
f67c0c91
SDJ
125 printf_unfiltered (_("[New inferior %d (%s)]\n"),
126 inf->num,
127 target_pid_to_str (pid_to_ptid (pid)));
b77209e0
PA
128
129 return inf;
130}
131
132struct delete_thread_of_inferior_arg
133{
134 int pid;
135 int silent;
136};
137
138static int
139delete_thread_of_inferior (struct thread_info *tp, void *data)
140{
9a3c8263
SM
141 struct delete_thread_of_inferior_arg *arg
142 = (struct delete_thread_of_inferior_arg *) data;
b77209e0
PA
143
144 if (ptid_get_pid (tp->ptid) == arg->pid)
145 {
146 if (arg->silent)
147 delete_thread_silent (tp->ptid);
148 else
149 delete_thread (tp->ptid);
150 }
151
152 return 0;
153}
154
a79b8f6e 155void
7a41607e 156delete_inferior (struct inferior *todel)
b77209e0
PA
157{
158 struct inferior *inf, *infprev;
6c95b8df 159 struct delete_thread_of_inferior_arg arg;
b77209e0
PA
160
161 infprev = NULL;
162
163 for (inf = inferior_list; inf; infprev = inf, inf = inf->next)
6c95b8df 164 if (inf == todel)
b77209e0
PA
165 break;
166
167 if (!inf)
168 return;
169
6c95b8df 170 arg.pid = inf->pid;
7a41607e 171 arg.silent = 1;
b77209e0
PA
172
173 iterate_over_threads (delete_thread_of_inferior, &arg);
4a92f99b 174
7e1789f5
PA
175 if (infprev)
176 infprev->next = inf->next;
177 else
178 inferior_list = inf->next;
179
76727919 180 gdb::observers::inferior_removed.notify (inf);
a79b8f6e 181
7a41607e
SM
182 /* If this program space is rendered useless, remove it. */
183 if (program_space_empty_p (inf->pspace))
184 delete_program_space (inf->pspace);
ef3f321b 185
0550c955 186 delete inf;
ef3f321b
SM
187}
188
6c95b8df
PA
189/* If SILENT then be quiet -- don't announce a inferior exit, or the
190 exit of its threads. */
191
192static void
193exit_inferior_1 (struct inferior *inftoex, int silent)
194{
195 struct inferior *inf;
196 struct delete_thread_of_inferior_arg arg;
197
198 for (inf = inferior_list; inf; inf = inf->next)
199 if (inf == inftoex)
200 break;
201
202 if (!inf)
203 return;
204
205 arg.pid = inf->pid;
206 arg.silent = silent;
207
208 iterate_over_threads (delete_thread_of_inferior, &arg);
209
76727919 210 gdb::observers::inferior_exit.notify (inf);
6c95b8df
PA
211
212 inf->pid = 0;
e714e1bf 213 inf->fake_pid_p = 0;
ef4a3395
PA
214 inf->priv = NULL;
215
6c95b8df
PA
216 if (inf->vfork_parent != NULL)
217 {
218 inf->vfork_parent->vfork_child = NULL;
219 inf->vfork_parent = NULL;
220 }
68c9da30
PA
221 if (inf->vfork_child != NULL)
222 {
223 inf->vfork_child->vfork_parent = NULL;
224 inf->vfork_child = NULL;
225 }
8cf64490 226
68c9da30 227 inf->pending_detach = 0;
85046ae2
YQ
228 /* Reset it. */
229 inf->control = {NO_STOP_QUIETLY};
6c95b8df
PA
230}
231
232void
233exit_inferior (int pid)
234{
235 struct inferior *inf = find_inferior_pid (pid);
abbb1732 236
6c95b8df 237 exit_inferior_1 (inf, 0);
6c95b8df
PA
238}
239
240void
241exit_inferior_silent (int pid)
242{
243 struct inferior *inf = find_inferior_pid (pid);
abbb1732 244
6c95b8df
PA
245 exit_inferior_1 (inf, 1);
246}
247
248void
249exit_inferior_num_silent (int num)
250{
251 struct inferior *inf = find_inferior_id (num);
252
253 exit_inferior_1 (inf, 1);
b77209e0
PA
254}
255
bc09b0c1
SM
256/* See inferior.h. */
257
b77209e0 258void
bc09b0c1 259detach_inferior (inferior *inf)
b77209e0 260{
bc09b0c1
SM
261 /* Save the pid, since exit_inferior_1 will reset it. */
262 int pid = inf->pid;
abbb1732 263
3b462ec2 264 exit_inferior_1 (inf, 0);
b77209e0
PA
265
266 if (print_inferior_events)
f67c0c91
SDJ
267 printf_unfiltered (_("[Inferior %d (%s) detached]\n"),
268 inf->num,
269 target_pid_to_str (pid_to_ptid (pid)));
b77209e0
PA
270}
271
bc09b0c1
SM
272/* See inferior.h. */
273
274void
275detach_inferior (int pid)
276{
277 detach_inferior (find_inferior_pid (pid));
278}
279
6c95b8df
PA
280void
281inferior_appeared (struct inferior *inf, int pid)
282{
283 inf->pid = pid;
2ddf4301
SM
284 inf->has_exit_code = 0;
285 inf->exit_code = 0;
6c95b8df 286
76727919 287 gdb::observers::inferior_appeared.notify (inf);
6c95b8df
PA
288}
289
82f73884
PA
290void
291discard_all_inferiors (void)
292{
6c95b8df 293 struct inferior *inf;
82f73884 294
6c95b8df 295 for (inf = inferior_list; inf; inf = inf->next)
82f73884 296 {
6c95b8df
PA
297 if (inf->pid != 0)
298 exit_inferior_silent (inf->pid);
82f73884
PA
299 }
300}
301
6c95b8df 302struct inferior *
b77209e0
PA
303find_inferior_id (int num)
304{
305 struct inferior *inf;
306
307 for (inf = inferior_list; inf; inf = inf->next)
308 if (inf->num == num)
309 return inf;
310
311 return NULL;
312}
313
314struct inferior *
315find_inferior_pid (int pid)
316{
317 struct inferior *inf;
318
6c95b8df
PA
319 /* Looking for inferior pid == 0 is always wrong, and indicative of
320 a bug somewhere else. There may be more than one with pid == 0,
321 for instance. */
322 gdb_assert (pid != 0);
323
b77209e0
PA
324 for (inf = inferior_list; inf; inf = inf->next)
325 if (inf->pid == pid)
326 return inf;
327
328 return NULL;
329}
330
c9657e70
SM
331/* See inferior.h */
332
333struct inferior *
334find_inferior_ptid (ptid_t ptid)
335{
336 return find_inferior_pid (ptid_get_pid (ptid));
337}
338
32990ada 339/* See inferior.h. */
6c95b8df
PA
340
341struct inferior *
342find_inferior_for_program_space (struct program_space *pspace)
343{
32990ada
PA
344 struct inferior *inf = current_inferior ();
345
346 if (inf->pspace == pspace)
347 return inf;
6c95b8df
PA
348
349 for (inf = inferior_list; inf != NULL; inf = inf->next)
350 {
351 if (inf->pspace == pspace)
352 return inf;
353 }
354
355 return NULL;
356}
357
b77209e0
PA
358struct inferior *
359iterate_over_inferiors (int (*callback) (struct inferior *, void *),
360 void *data)
361{
362 struct inferior *inf, *infnext;
363
364 for (inf = inferior_list; inf; inf = infnext)
365 {
366 infnext = inf->next;
367 if ((*callback) (inf, data))
368 return inf;
369 }
370
371 return NULL;
372}
373
374int
375valid_gdb_inferior_id (int num)
376{
377 struct inferior *inf;
378
379 for (inf = inferior_list; inf; inf = inf->next)
380 if (inf->num == num)
381 return 1;
382
383 return 0;
384}
385
386int
387pid_to_gdb_inferior_id (int pid)
388{
389 struct inferior *inf;
390
391 for (inf = inferior_list; inf; inf = inf->next)
392 if (inf->pid == pid)
393 return inf->num;
394
395 return 0;
396}
397
398int
399gdb_inferior_id_to_pid (int num)
400{
401 struct inferior *inferior = find_inferior_id (num);
402 if (inferior)
403 return inferior->pid;
404 else
405 return -1;
406}
407
408int
409in_inferior_list (int pid)
410{
411 struct inferior *inf;
412
413 for (inf = inferior_list; inf; inf = inf->next)
414 if (inf->pid == pid)
415 return 1;
416
417 return 0;
418}
419
420int
421have_inferiors (void)
422{
6c95b8df
PA
423 struct inferior *inf;
424
425 for (inf = inferior_list; inf; inf = inf->next)
426 if (inf->pid != 0)
427 return 1;
428
429 return 0;
b77209e0
PA
430}
431
8020350c
DB
432/* Return the number of live inferiors. We account for the case
433 where an inferior might have a non-zero pid but no threads, as
434 in the middle of a 'mourn' operation. */
435
c35b1492 436int
8020350c 437number_of_live_inferiors (void)
c35b1492 438{
cd2effb2 439 struct inferior *inf;
8020350c 440 int num_inf = 0;
6c95b8df 441
cd2effb2
JK
442 for (inf = inferior_list; inf; inf = inf->next)
443 if (inf->pid != 0)
444 {
445 struct thread_info *tp;
8020350c
DB
446
447 ALL_NON_EXITED_THREADS (tp)
448 if (tp && ptid_get_pid (tp->ptid) == inf->pid)
449 if (target_has_execution_1 (tp->ptid))
450 {
451 /* Found a live thread in this inferior, go to the next
452 inferior. */
453 ++num_inf;
454 break;
455 }
cd2effb2
JK
456 }
457
8020350c
DB
458 return num_inf;
459}
460
461/* Return true if there is at least one live inferior. */
462
463int
464have_live_inferiors (void)
465{
466 return number_of_live_inferiors () > 0;
6c95b8df
PA
467}
468
bed8455c
DE
469/* Prune away any unused inferiors, and then prune away no longer used
470 program spaces. */
6c95b8df
PA
471
472void
473prune_inferiors (void)
474{
475 struct inferior *ss, **ss_link;
6c95b8df
PA
476
477 ss = inferior_list;
478 ss_link = &inferior_list;
479 while (ss)
480 {
3a3fd0fd 481 if (!ss->deletable ()
6c95b8df
PA
482 || !ss->removable
483 || ss->pid != 0)
484 {
485 ss_link = &ss->next;
486 ss = *ss_link;
487 continue;
488 }
489
490 *ss_link = ss->next;
7a41607e 491 delete_inferior (ss);
6c95b8df
PA
492 ss = *ss_link;
493 }
6c95b8df
PA
494}
495
496/* Simply returns the count of inferiors. */
497
498int
499number_of_inferiors (void)
500{
501 struct inferior *inf;
502 int count = 0;
503
504 for (inf = inferior_list; inf != NULL; inf = inf->next)
505 count++;
506
507 return count;
c35b1492
PA
508}
509
db2b9fdd
PA
510/* Converts an inferior process id to a string. Like
511 target_pid_to_str, but special cases the null process. */
512
7a114964 513static const char *
db2b9fdd
PA
514inferior_pid_to_str (int pid)
515{
516 if (pid != 0)
517 return target_pid_to_str (pid_to_ptid (pid));
518 else
519 return _("<null>");
520}
521
4034d0ff
AT
522/* See inferior.h. */
523
524void
525print_selected_inferior (struct ui_out *uiout)
526{
4034d0ff 527 struct inferior *inf = current_inferior ();
53488a6e 528 const char *filename = inf->pspace->pspace_exec_filename;
112e8700 529
53488a6e
TS
530 if (filename == NULL)
531 filename = _("<noexec>");
112e8700
SM
532
533 uiout->message (_("[Switching to inferior %d [%s] (%s)]\n"),
53488a6e 534 inf->num, inferior_pid_to_str (inf->pid), filename);
4034d0ff
AT
535}
536
b77209e0
PA
537/* Prints the list of inferiors and their details on UIOUT. This is a
538 version of 'info_inferior_command' suitable for use from MI.
539
c82c0b55
MS
540 If REQUESTED_INFERIORS is not NULL, it's a list of GDB ids of the
541 inferiors that should be printed. Otherwise, all inferiors are
542 printed. */
543
544static void
1d12d88f 545print_inferior (struct ui_out *uiout, const char *requested_inferiors)
b77209e0
PA
546{
547 struct inferior *inf;
8bb318c6 548 int inf_count = 0;
b77209e0 549
8bb318c6
TT
550 /* Compute number of inferiors we will print. */
551 for (inf = inferior_list; inf; inf = inf->next)
552 {
c82c0b55 553 if (!number_is_in_list (requested_inferiors, inf->num))
8bb318c6
TT
554 continue;
555
556 ++inf_count;
557 }
558
559 if (inf_count == 0)
560 {
112e8700 561 uiout->message ("No inferiors.\n");
8bb318c6
TT
562 return;
563 }
564
4a2b031d 565 ui_out_emit_table table_emitter (uiout, 4, inf_count, "inferiors");
112e8700
SM
566 uiout->table_header (1, ui_left, "current", "");
567 uiout->table_header (4, ui_left, "number", "Num");
568 uiout->table_header (17, ui_left, "target-id", "Description");
569 uiout->table_header (17, ui_left, "exec", "Executable");
b77209e0 570
112e8700 571 uiout->table_body ();
b77209e0
PA
572 for (inf = inferior_list; inf; inf = inf->next)
573 {
c82c0b55 574 if (!number_is_in_list (requested_inferiors, inf->num))
b77209e0
PA
575 continue;
576
2e783024 577 ui_out_emit_tuple tuple_emitter (uiout, NULL);
b77209e0 578
6c95b8df 579 if (inf == current_inferior ())
112e8700 580 uiout->field_string ("current", "*");
b77209e0 581 else
112e8700 582 uiout->field_skip ("current");
b77209e0 583
112e8700 584 uiout->field_int ("number", inf->num);
6c95b8df 585
112e8700 586 uiout->field_string ("target-id", inferior_pid_to_str (inf->pid));
6c95b8df 587
1f0c4988 588 if (inf->pspace->pspace_exec_filename != NULL)
112e8700 589 uiout->field_string ("exec", inf->pspace->pspace_exec_filename);
6c95b8df 590 else
112e8700 591 uiout->field_skip ("exec");
6c95b8df
PA
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 {
112e8700
SM
598 uiout->text (_("\n\tis vfork child of inferior "));
599 uiout->field_int ("vfork-parent", inf->vfork_parent->num);
6c95b8df
PA
600 }
601 if (inf->vfork_child)
602 {
112e8700
SM
603 uiout->text (_("\n\tis vfork parent of inferior "));
604 uiout->field_int ("vfork-child", inf->vfork_child->num);
6c95b8df 605 }
b77209e0 606
112e8700 607 uiout->text ("\n");
b77209e0 608 }
b77209e0
PA
609}
610
2277426b 611static void
e503b191 612detach_inferior_command (const char *args, int from_tty)
2277426b 613{
2277426b
PA
614 struct thread_info *tp;
615
616 if (!args || !*args)
af624141 617 error (_("Requires argument (inferior id(s) to detach)"));
2277426b 618
bfd28288
PA
619 number_or_range_parser parser (args);
620 while (!parser.finished ())
af624141 621 {
bfd28288 622 int num = parser.get_number ();
2277426b 623
af624141
MS
624 if (!valid_gdb_inferior_id (num))
625 {
626 warning (_("Inferior ID %d not known."), num);
627 continue;
628 }
2277426b 629
bfd28288 630 int pid = gdb_inferior_id_to_pid (num);
e3ae3c43
PP
631 if (pid == 0)
632 {
633 warning (_("Inferior ID %d is not running."), num);
634 continue;
635 }
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
e503b191 651kill_inferior_command (const char *args, int from_tty)
2277426b 652{
2277426b
PA
653 struct thread_info *tp;
654
655 if (!args || !*args)
af624141 656 error (_("Requires argument (inferior id(s) to kill)"));
2277426b 657
bfd28288
PA
658 number_or_range_parser parser (args);
659 while (!parser.finished ())
af624141 660 {
bfd28288 661 int num = parser.get_number ();
2277426b 662
af624141
MS
663 if (!valid_gdb_inferior_id (num))
664 {
665 warning (_("Inferior ID %d not known."), num);
666 continue;
667 }
2277426b 668
bfd28288 669 int pid = gdb_inferior_id_to_pid (num);
e3ae3c43
PP
670 if (pid == 0)
671 {
672 warning (_("Inferior ID %d is not running."), num);
673 continue;
674 }
2277426b 675
af624141
MS
676 tp = any_thread_of_process (pid);
677 if (!tp)
678 {
679 warning (_("Inferior ID %d has no threads."), num);
680 continue;
681 }
2277426b 682
af624141 683 switch_to_thread (tp->ptid);
2277426b 684
af624141
MS
685 target_kill ();
686 }
2277426b
PA
687
688 bfd_cache_close_all ();
689}
690
691static void
e503b191 692inferior_command (const char *args, int from_tty)
2277426b 693{
6c95b8df
PA
694 struct inferior *inf;
695 int num;
2277426b
PA
696
697 num = parse_and_eval_long (args);
698
6c95b8df
PA
699 inf = find_inferior_id (num);
700 if (inf == NULL)
2277426b
PA
701 error (_("Inferior ID %d not known."), num);
702
6c95b8df 703 if (inf->pid != 0)
2277426b 704 {
6c95b8df
PA
705 if (inf->pid != ptid_get_pid (inferior_ptid))
706 {
707 struct thread_info *tp;
2277426b 708
6c95b8df
PA
709 tp = any_thread_of_process (inf->pid);
710 if (!tp)
711 error (_("Inferior has no threads."));
2277426b 712
6c95b8df
PA
713 switch_to_thread (tp->ptid);
714 }
715
76727919 716 gdb::observers::user_selected_context_changed.notify
4034d0ff
AT
717 (USER_SELECTED_INFERIOR
718 | USER_SELECTED_THREAD
719 | USER_SELECTED_FRAME);
2277426b 720 }
6c95b8df
PA
721 else
722 {
6c95b8df
PA
723 set_current_inferior (inf);
724 switch_to_thread (null_ptid);
725 set_current_program_space (inf->pspace);
2277426b 726
76727919
TT
727 gdb::observers::user_selected_context_changed.notify
728 (USER_SELECTED_INFERIOR);
2277426b
PA
729 }
730}
731
b77209e0
PA
732/* Print information about currently known inferiors. */
733
734static void
1d12d88f 735info_inferiors_command (const char *args, int from_tty)
b77209e0 736{
79a45e25 737 print_inferior (current_uiout, args);
b77209e0
PA
738}
739
6c95b8df
PA
740/* remove-inferior ID */
741
70221824 742static void
0b39b52e 743remove_inferior_command (const char *args, int from_tty)
6c95b8df 744{
af624141
MS
745 if (args == NULL || *args == '\0')
746 error (_("Requires an argument (inferior id(s) to remove)"));
6c95b8df 747
bfd28288
PA
748 number_or_range_parser parser (args);
749 while (!parser.finished ())
af624141 750 {
bfd28288
PA
751 int num = parser.get_number ();
752 struct inferior *inf = find_inferior_id (num);
6c95b8df 753
af624141
MS
754 if (inf == NULL)
755 {
756 warning (_("Inferior ID %d not known."), num);
757 continue;
758 }
759
3a3fd0fd 760 if (!inf->deletable ())
af624141 761 {
eb2332d7 762 warning (_("Can not remove current inferior %d."), num);
af624141
MS
763 continue;
764 }
8fa067af 765
af624141
MS
766 if (inf->pid != 0)
767 {
768 warning (_("Can not remove active inferior %d."), num);
769 continue;
770 }
6c95b8df 771
7a41607e 772 delete_inferior (inf);
af624141 773 }
6c95b8df
PA
774}
775
a79b8f6e
VP
776struct inferior *
777add_inferior_with_spaces (void)
778{
779 struct address_space *aspace;
780 struct program_space *pspace;
781 struct inferior *inf;
6ecd4729 782 struct gdbarch_info info;
a79b8f6e
VP
783
784 /* If all inferiors share an address space on this system, this
785 doesn't really return a new address space; otherwise, it
786 really does. */
787 aspace = maybe_new_address_space ();
564b1e3f 788 pspace = new program_space (aspace);
a79b8f6e
VP
789 inf = add_inferior (0);
790 inf->pspace = pspace;
791 inf->aspace = pspace->aspace;
792
6ecd4729
PA
793 /* Setup the inferior's initial arch, based on information obtained
794 from the global "set ..." options. */
795 gdbarch_info_init (&info);
796 inf->gdbarch = gdbarch_find_by_info (info);
797 /* The "set ..." options reject invalid settings, so we should
798 always have a valid arch by now. */
799 gdb_assert (inf->gdbarch != NULL);
800
a79b8f6e
VP
801 return inf;
802}
6c95b8df
PA
803
804/* add-inferior [-copies N] [-exec FILENAME] */
805
70221824 806static void
0b39b52e 807add_inferior_command (const char *args, int from_tty)
6c95b8df
PA
808{
809 int i, copies = 1;
773a1edc 810 gdb::unique_xmalloc_ptr<char> exec;
ecf45d2c 811 symfile_add_flags add_flags = 0;
6c95b8df 812
ecf45d2c
SL
813 if (from_tty)
814 add_flags |= SYMFILE_VERBOSE;
815
6c95b8df
PA
816 if (args)
817 {
773a1edc 818 gdb_argv built_argv (args);
6c95b8df 819
773a1edc 820 for (char **argv = built_argv.get (); *argv != NULL; argv++)
6c95b8df
PA
821 {
822 if (**argv == '-')
823 {
824 if (strcmp (*argv, "-copies") == 0)
825 {
826 ++argv;
827 if (!*argv)
828 error (_("No argument to -copies"));
829 copies = parse_and_eval_long (*argv);
830 }
831 else if (strcmp (*argv, "-exec") == 0)
832 {
833 ++argv;
834 if (!*argv)
835 error (_("No argument to -exec"));
773a1edc 836 exec.reset (tilde_expand (*argv));
6c95b8df
PA
837 }
838 }
839 else
840 error (_("Invalid argument"));
841 }
842 }
843
5ed8105e 844 scoped_restore_current_pspace_and_thread restore_pspace_thread;
6c95b8df
PA
845
846 for (i = 0; i < copies; ++i)
847 {
a79b8f6e 848 struct inferior *inf = add_inferior_with_spaces ();
6c95b8df
PA
849
850 printf_filtered (_("Added inferior %d\n"), inf->num);
851
852 if (exec != NULL)
853 {
854 /* Switch over temporarily, while reading executable and
1777feb0 855 symbols.q. */
a79b8f6e 856 set_current_program_space (inf->pspace);
6c95b8df
PA
857 set_current_inferior (inf);
858 switch_to_thread (null_ptid);
859
773a1edc
TT
860 exec_file_attach (exec.get (), from_tty);
861 symbol_file_add_main (exec.get (), add_flags);
6c95b8df
PA
862 }
863 }
6c95b8df
PA
864}
865
866/* clone-inferior [-copies N] [ID] */
867
70221824 868static void
0b39b52e 869clone_inferior_command (const char *args, int from_tty)
6c95b8df
PA
870{
871 int i, copies = 1;
6c95b8df 872 struct inferior *orginf = NULL;
6c95b8df
PA
873
874 if (args)
875 {
773a1edc 876 gdb_argv built_argv (args);
6c95b8df 877
773a1edc 878 char **argv = built_argv.get ();
6c95b8df
PA
879 for (; *argv != NULL; argv++)
880 {
881 if (**argv == '-')
882 {
883 if (strcmp (*argv, "-copies") == 0)
884 {
885 ++argv;
886 if (!*argv)
887 error (_("No argument to -copies"));
888 copies = parse_and_eval_long (*argv);
889
890 if (copies < 0)
891 error (_("Invalid copies number"));
892 }
893 }
894 else
895 {
896 if (orginf == NULL)
897 {
898 int num;
899
900 /* The first non-option (-) argument specified the
901 program space ID. */
902 num = parse_and_eval_long (*argv);
903 orginf = find_inferior_id (num);
904
905 if (orginf == NULL)
906 error (_("Inferior ID %d not known."), num);
907 continue;
908 }
909 else
910 error (_("Invalid argument"));
911 }
912 }
913 }
914
915 /* If no inferior id was specified, then the user wants to clone the
916 current inferior. */
917 if (orginf == NULL)
918 orginf = current_inferior ();
919
5ed8105e 920 scoped_restore_current_pspace_and_thread restore_pspace_thread;
6c95b8df
PA
921
922 for (i = 0; i < copies; ++i)
923 {
924 struct address_space *aspace;
925 struct program_space *pspace;
926 struct inferior *inf;
927
928 /* If all inferiors share an address space on this system, this
929 doesn't really return a new address space; otherwise, it
930 really does. */
931 aspace = maybe_new_address_space ();
564b1e3f 932 pspace = new program_space (aspace);
6c95b8df
PA
933 inf = add_inferior (0);
934 inf->pspace = pspace;
935 inf->aspace = pspace->aspace;
6ecd4729
PA
936 inf->gdbarch = orginf->gdbarch;
937
938 /* If the original inferior had a user specified target
939 description, make the clone use it too. */
940 if (target_desc_info_from_user_p (inf->tdesc_info))
941 copy_inferior_target_desc_info (inf, orginf);
6c95b8df
PA
942
943 printf_filtered (_("Added inferior %d.\n"), inf->num);
944
945 set_current_inferior (inf);
946 switch_to_thread (null_ptid);
947 clone_program_space (pspace, orginf->pspace);
948 }
6c95b8df
PA
949}
950
b77209e0
PA
951/* Print notices when new inferiors are created and die. */
952static void
953show_print_inferior_events (struct ui_file *file, int from_tty,
954 struct cmd_list_element *c, const char *value)
955{
956 fprintf_filtered (file, _("Printing of inferior events is %s.\n"), value);
957}
958
e3940304
PA
959/* Return a new value for the selected inferior's id. */
960
961static struct value *
962inferior_id_make_value (struct gdbarch *gdbarch, struct internalvar *var,
963 void *ignore)
964{
965 struct inferior *inf = current_inferior ();
966
967 return value_from_longest (builtin_type (gdbarch)->builtin_int, inf->num);
968}
969
970/* Implementation of `$_inferior' variable. */
971
972static const struct internalvar_funcs inferior_funcs =
973{
974 inferior_id_make_value,
975 NULL,
976 NULL
977};
978
6c95b8df
PA
979\f
980
6c95b8df
PA
981void
982initialize_inferiors (void)
983{
06da564e
EZ
984 struct cmd_list_element *c = NULL;
985
6c95b8df
PA
986 /* There's always one inferior. Note that this function isn't an
987 automatic _initialize_foo function, since other _initialize_foo
988 routines may need to install their per-inferior data keys. We
989 can only allocate an inferior when all those modules have done
990 that. Do this after initialize_progspace, due to the
991 current_program_space reference. */
f67c0c91 992 current_inferior_ = add_inferior_silent (0);
3a3fd0fd 993 current_inferior_->incref ();
6c95b8df
PA
994 current_inferior_->pspace = current_program_space;
995 current_inferior_->aspace = current_program_space->aspace;
6ecd4729
PA
996 /* The architecture will be initialized shortly, by
997 initialize_current_architecture. */
6c95b8df 998
a3c25011
TT
999 add_info ("inferiors", info_inferiors_command,
1000 _("Print a list of inferiors being managed.\n\
1001Usage: info inferiors [ID]...\n\
1002If IDs are specified, the list is limited to just those inferiors.\n\
1003By default all inferiors are displayed."));
b77209e0 1004
06da564e 1005 c = add_com ("add-inferior", no_class, add_inferior_command, _("\
6c95b8df 1006Add a new inferior.\n\
a3c25011 1007Usage: add-inferior [-copies N] [-exec FILENAME]\n\
af624141 1008N is the optional number of inferiors to add, default is 1.\n\
6c95b8df
PA
1009FILENAME is the file name of the executable to use\n\
1010as main program."));
06da564e 1011 set_cmd_completer (c, filename_completer);
6c95b8df 1012
af624141
MS
1013 add_com ("remove-inferiors", no_class, remove_inferior_command, _("\
1014Remove inferior ID (or list of IDs).\n\
1015Usage: remove-inferiors ID..."));
6c95b8df
PA
1016
1017 add_com ("clone-inferior", no_class, clone_inferior_command, _("\
1018Clone inferior ID.\n\
a3c25011 1019Usage: clone-inferior [-copies N] [ID]\n\
6c95b8df
PA
1020Add N copies of inferior ID. The new inferior has the same\n\
1021executable loaded as the copied inferior. If -copies is not specified,\n\
1022adds 1 copy. If ID is not specified, it is the current inferior\n\
1023that is cloned."));
2277426b 1024
af624141 1025 add_cmd ("inferiors", class_run, detach_inferior_command, _("\
a3c25011
TT
1026Detach from inferior ID (or list of IDS).\n\
1027Usage; detach inferiors ID..."),
2277426b
PA
1028 &detachlist);
1029
af624141 1030 add_cmd ("inferiors", class_run, kill_inferior_command, _("\
a3c25011
TT
1031Kill inferior ID (or list of IDs).\n\
1032Usage: kill inferiors ID..."),
2277426b
PA
1033 &killlist);
1034
1035 add_cmd ("inferior", class_run, inferior_command, _("\
1036Use this command to switch between inferiors.\n\
a3c25011 1037Usage: inferior ID\n\
2277426b
PA
1038The new inferior ID must be currently known."),
1039 &cmdlist);
6c95b8df
PA
1040
1041 add_setshow_boolean_cmd ("inferior-events", no_class,
1042 &print_inferior_events, _("\
1043Set printing of inferior events (e.g., inferior start and exit)."), _("\
1044Show printing of inferior events (e.g., inferior start and exit)."), NULL,
1045 NULL,
1046 show_print_inferior_events,
1047 &setprintlist, &showprintlist);
1048
e3940304 1049 create_internalvar_type_lazy ("_inferior", &inferior_funcs, NULL);
b77209e0 1050}
This page took 1.078131 seconds and 4 git commands to generate.