1 /* Inferior process information for the remote server for GDB.
2 Copyright (C) 2002-2021 Free Software Foundation, Inc.
4 Contributed by MontaVista Software.
6 This file is part of GDB.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
22 #include "gdbsupport/common-inferior.h"
23 #include "gdbthread.h"
26 std::list
<process_info
*> all_processes
;
27 std::list
<thread_info
*> all_threads
;
29 struct thread_info
*current_thread
;
31 /* The current working directory used to start the inferior.
33 Empty if not specified. */
34 static std::string current_inferior_cwd
;
37 add_thread (ptid_t thread_id
, void *target_data
)
39 thread_info
*new_thread
= new thread_info (thread_id
, target_data
);
41 all_threads
.push_back (new_thread
);
43 if (current_thread
== NULL
)
44 current_thread
= new_thread
;
49 /* See gdbthread.h. */
52 get_first_thread (void)
54 if (!all_threads
.empty ())
55 return all_threads
.front ();
61 find_thread_ptid (ptid_t ptid
)
63 return find_thread ([&] (thread_info
*thread
) {
64 return thread
->id
== ptid
;
68 /* Find a thread associated with the given PROCESS, or NULL if no
69 such thread exists. */
71 static struct thread_info
*
72 find_thread_process (const struct process_info
*const process
)
74 return find_any_thread_of_pid (process
->pid
);
77 /* See gdbthread.h. */
80 find_any_thread_of_pid (int pid
)
82 return find_thread (pid
, [] (thread_info
*thread
) {
88 free_one_thread (thread_info
*thread
)
94 remove_thread (struct thread_info
*thread
)
96 if (thread
->btrace
!= NULL
)
97 target_disable_btrace (thread
->btrace
);
99 discard_queued_stop_replies (ptid_of (thread
));
100 all_threads
.remove (thread
);
101 if (current_thread
== thread
)
102 current_thread
= NULL
;
103 free_one_thread (thread
);
107 thread_target_data (struct thread_info
*thread
)
109 return thread
->target_data
;
113 thread_regcache_data (struct thread_info
*thread
)
115 return thread
->regcache_data
;
119 set_thread_regcache_data (struct thread_info
*thread
, struct regcache
*data
)
121 thread
->regcache_data
= data
;
125 clear_inferiors (void)
127 for_each_thread (free_one_thread
);
128 all_threads
.clear ();
132 current_thread
= NULL
;
135 struct process_info
*
136 add_process (int pid
, int attached
)
138 process_info
*process
= new process_info (pid
, attached
);
140 all_processes
.push_back (process
);
145 /* Remove a process from the common process list and free the memory
147 The caller is responsible for freeing private data first. */
150 remove_process (struct process_info
*process
)
152 clear_symbol_cache (&process
->symbol_cache
);
153 free_all_breakpoints (process
);
154 gdb_assert (find_thread_process (process
) == NULL
);
155 all_processes
.remove (process
);
160 find_process_pid (int pid
)
162 return find_process ([&] (process_info
*process
) {
163 return process
->pid
== pid
;
167 /* Get the first process in the process list, or NULL if the list is empty. */
170 get_first_process (void)
172 if (!all_processes
.empty ())
173 return all_processes
.front ();
178 /* Return non-zero if there are any inferiors that we have created
179 (as opposed to attached-to). */
182 have_started_inferiors_p (void)
184 return find_process ([] (process_info
*process
) {
185 return !process
->attached
;
189 /* Return non-zero if there are any inferiors that we have attached to. */
192 have_attached_inferiors_p (void)
194 return find_process ([] (process_info
*process
) {
195 return process
->attached
;
199 struct process_info
*
200 get_thread_process (const struct thread_info
*thread
)
202 return find_process_pid (thread
->id
.pid ());
205 struct process_info
*
206 current_process (void)
208 gdb_assert (current_thread
!= NULL
);
209 return get_thread_process (current_thread
);
212 /* See gdbsupport/common-gdbthread.h. */
215 switch_to_thread (process_stratum_target
*ops
, ptid_t ptid
)
217 gdb_assert (ptid
!= minus_one_ptid
);
218 current_thread
= find_thread_ptid (ptid
);
221 /* See inferiors.h. */
224 switch_to_process (process_info
*proc
)
226 int pid
= pid_of (proc
);
228 current_thread
= find_any_thread_of_pid (pid
);
231 /* See gdbsupport/common-inferior.h. */
236 return current_inferior_cwd
;
239 /* See inferiors.h. */
242 set_inferior_cwd (std::string cwd
)
244 current_inferior_cwd
= std::move (cwd
);