2011-05-27 Pedro Alves <pedro@codesourcery.com>
[deliverable/binutils-gdb.git] / gdb / continuations.c
CommitLineData
50c0c017
PA
1/* Continuations for GDB, the GNU debugger.
2
3 Copyright (C) 1986, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996,
4 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008,
5 2009, 2010, 2011 Free Software Foundation, Inc.
6
7 This file is part of GDB.
8
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
13
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
21
22#include "defs.h"
23#include "gdbthread.h"
24#include "inferior.h"
25
26struct continuation
27{
28 struct continuation *next;
29 void (*function) (void *);
30 void (*free_arg) (void *);
31 void *arg;
32};
33
34typedef void (make_continuation_ftype) (void *);
35
af1e9a32
PA
36/* Add a new continuation to the continuation chain. Args are
37 FUNCTION to run the continuation up with, and ARG to pass to
38 it. */
50c0c017 39
af1e9a32 40static void
50c0c017
PA
41make_continuation (struct continuation **pmy_chain,
42 make_continuation_ftype *function,
43 void *arg, void (*free_arg) (void *))
44{
45 struct continuation *new = XNEW (struct continuation);
50c0c017
PA
46
47 new->next = *pmy_chain;
48 new->function = function;
49 new->free_arg = free_arg;
50 new->arg = arg;
51 *pmy_chain = new;
50c0c017
PA
52}
53
54static void
af1e9a32 55do_my_continuations_1 (struct continuation **pmy_chain)
50c0c017
PA
56{
57 struct continuation *ptr;
58
af1e9a32 59 while ((ptr = *pmy_chain) != NULL)
50c0c017
PA
60 {
61 *pmy_chain = ptr->next; /* Do this first in case of recursion. */
62 (*ptr->function) (ptr->arg);
63 if (ptr->free_arg)
64 (*ptr->free_arg) (ptr->arg);
65 xfree (ptr);
66 }
67}
68
af1e9a32
PA
69static void
70do_my_continuations (struct continuation **list)
71{
72 struct continuation *continuations;
73
74 if (*list == NULL)
75 return;
76
77 /* Copy the list header into another pointer, and set the global
78 list header to null, so that the global list can change as a side
79 effect of invoking the continuations and the processing of the
80 preexisting continuations will not be affected. */
81
82 continuations = *list;
83 *list = NULL;
84
85 /* Work now on the list we have set aside. */
86 do_my_continuations_1 (&continuations);
87}
88
89static void
90discard_my_continuations_1 (struct continuation **pmy_chain)
50c0c017
PA
91{
92 struct continuation *ptr;
93
af1e9a32 94 while ((ptr = *pmy_chain) != NULL)
50c0c017
PA
95 {
96 *pmy_chain = ptr->next;
97 if (ptr->free_arg)
98 (*ptr->free_arg) (ptr->arg);
99 xfree (ptr);
100 }
101}
102
af1e9a32
PA
103static void
104discard_my_continuations (struct continuation **list)
50c0c017 105{
af1e9a32 106 struct continuation *continuation_ptr = *list;
50c0c017 107
af1e9a32
PA
108 discard_my_continuations_1 (list);
109 *list = NULL;
50c0c017
PA
110}
111
112/* Add a continuation to the continuation list of INFERIOR. The new
113 continuation will be added at the front. */
114
115void
116add_inferior_continuation (void (*continuation_hook) (void *), void *args,
117 void (*continuation_free_args) (void *))
118{
119 struct inferior *inf = current_inferior ();
50c0c017 120
af1e9a32
PA
121 make_continuation (&inf->continuations, continuation_hook,
122 args, continuation_free_args);
50c0c017
PA
123}
124
125/* Do all continuations of the current inferior. */
126
127void
128do_all_inferior_continuations (void)
129{
50c0c017 130 struct inferior *inf = current_inferior ();
af1e9a32 131 do_my_continuations (&inf->continuations);
50c0c017
PA
132}
133
134/* Get rid of all the inferior-wide continuations of INF. */
135
136void
137discard_all_inferior_continuations (struct inferior *inf)
138{
af1e9a32
PA
139 discard_my_continuations (&inf->continuations);
140}
50c0c017 141
af1e9a32
PA
142/* Add a continuation to the continuation list of THREAD. The new
143 continuation will be added at the front. */
144
145void
146add_continuation (struct thread_info *thread,
147 void (*continuation_hook) (void *), void *args,
148 void (*continuation_free_args) (void *))
149{
150 make_continuation (&thread->continuations, continuation_hook,
151 args, continuation_free_args);
50c0c017
PA
152}
153
154static void
155restore_thread_cleanup (void *arg)
156{
157 ptid_t *ptid_p = arg;
158
159 switch_to_thread (*ptid_p);
160}
161
162/* Walk down the continuation list of PTID, and execute all the
163 continuations. There is a problem though. In some cases new
164 continuations may be added while we are in the middle of this loop.
165 If this happens they will be added in the front, and done before we
166 have a chance of exhausting those that were already there. We need
167 to then save the beginning of the list in a pointer and do the
168 continuations from there on, instead of using the global beginning
169 of list as our iteration pointer. */
170
171static void
172do_all_continuations_ptid (ptid_t ptid,
173 struct continuation **continuations_p)
174{
175 struct cleanup *old_chain;
50c0c017
PA
176 ptid_t current_thread;
177
178 if (*continuations_p == NULL)
179 return;
180
181 current_thread = inferior_ptid;
182
183 /* Restore selected thread on exit. Don't try to restore the frame
184 as well, because:
185
186 - When running continuations, the selected frame is always #0.
187
188 - The continuations may trigger symbol file loads, which may
189 change the frame layout (frame ids change), which would trigger
190 a warning if we used make_cleanup_restore_current_thread. */
191
192 old_chain = make_cleanup (restore_thread_cleanup, &current_thread);
193
194 /* Let the continuation see this thread as selected. */
195 switch_to_thread (ptid);
196
af1e9a32 197 do_my_continuations (continuations_p);
50c0c017
PA
198
199 do_cleanups (old_chain);
200}
201
202/* Callback for iterate over threads. */
203
204static int
205do_all_continuations_thread_callback (struct thread_info *thread, void *data)
206{
207 do_all_continuations_ptid (thread->ptid, &thread->continuations);
208 return 0;
209}
210
211/* Do all continuations of thread THREAD. */
212
213void
214do_all_continuations_thread (struct thread_info *thread)
215{
216 do_all_continuations_thread_callback (thread, NULL);
217}
218
219/* Do all continuations of all threads. */
220
221void
222do_all_continuations (void)
223{
224 iterate_over_threads (do_all_continuations_thread_callback, NULL);
225}
226
227/* Callback for iterate over threads. */
228
229static int
230discard_all_continuations_thread_callback (struct thread_info *thread,
231 void *data)
232{
af1e9a32 233 discard_my_continuations (&thread->continuations);
50c0c017
PA
234 return 0;
235}
236
237/* Get rid of all the continuations of THREAD. */
238
239void
240discard_all_continuations_thread (struct thread_info *thread)
241{
242 discard_all_continuations_thread_callback (thread, NULL);
243}
244
245/* Get rid of all the continuations of all threads. */
246
247void
248discard_all_continuations (void)
249{
250 iterate_over_threads (discard_all_continuations_thread_callback, NULL);
251}
252
253
254/* Add a continuation to the intermediate continuation list of THREAD.
255 The new continuation will be added at the front. */
256
257void
258add_intermediate_continuation (struct thread_info *thread,
259 void (*continuation_hook)
260 (void *), void *args,
261 void (*continuation_free_args) (void *))
262{
af1e9a32
PA
263 make_continuation (&thread->intermediate_continuations, continuation_hook,
264 args, continuation_free_args);
50c0c017
PA
265}
266
267/* Walk down the cmd_continuation list, and execute all the
268 continuations. There is a problem though. In some cases new
269 continuations may be added while we are in the middle of this
270 loop. If this happens they will be added in the front, and done
271 before we have a chance of exhausting those that were already
272 there. We need to then save the beginning of the list in a pointer
273 and do the continuations from there on, instead of using the
274 global beginning of list as our iteration pointer. */
275
276static int
277do_all_intermediate_continuations_thread_callback (struct thread_info *thread,
278 void *data)
279{
280 do_all_continuations_ptid (thread->ptid,
281 &thread->intermediate_continuations);
282 return 0;
283}
284
285/* Do all intermediate continuations of thread THREAD. */
286
287void
288do_all_intermediate_continuations_thread (struct thread_info *thread)
289{
290 do_all_intermediate_continuations_thread_callback (thread, NULL);
291}
292
293/* Do all intermediate continuations of all threads. */
294
295void
296do_all_intermediate_continuations (void)
297{
298 iterate_over_threads (do_all_intermediate_continuations_thread_callback,
299 NULL);
300}
301
302/* Callback for iterate over threads. */
303
304static int
305discard_all_intermediate_continuations_thread_callback (struct thread_info *thread,
306 void *data)
307{
af1e9a32 308 discard_my_continuations (&thread->intermediate_continuations);
50c0c017
PA
309 return 0;
310}
311
312/* Get rid of all the intermediate continuations of THREAD. */
313
314void
315discard_all_intermediate_continuations_thread (struct thread_info *thread)
316{
317 discard_all_intermediate_continuations_thread_callback (thread, NULL);
318}
319
320/* Get rid of all the intermediate continuations of all threads. */
321
322void
323discard_all_intermediate_continuations (void)
324{
325 iterate_over_threads (discard_all_intermediate_continuations_thread_callback,
326 NULL);
327}
This page took 0.04253 seconds and 4 git commands to generate.