1 /* Continuations for GDB, the GNU debugger.
3 Copyright (C) 1986-2013 Free Software Foundation, Inc.
5 This file is part of GDB.
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.
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.
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/>. */
21 #include "gdbthread.h"
23 #include "continuations.h"
27 struct continuation
*next
;
28 continuation_ftype
*function
;
29 continuation_free_arg_ftype
*free_arg
;
33 /* Add a new continuation to the continuation chain. Args are
34 FUNCTION to run the continuation up with, and ARG to pass to
38 make_continuation (struct continuation
**pmy_chain
,
39 continuation_ftype
*function
,
40 void *arg
, void (*free_arg
) (void *))
42 struct continuation
*new = XNEW (struct continuation
);
44 new->next
= *pmy_chain
;
45 new->function
= function
;
46 new->free_arg
= free_arg
;
52 do_my_continuations_1 (struct continuation
**pmy_chain
, int err
)
54 struct continuation
*ptr
;
56 while ((ptr
= *pmy_chain
) != NULL
)
58 *pmy_chain
= ptr
->next
; /* Do this first in case of recursion. */
59 (*ptr
->function
) (ptr
->arg
, err
);
61 (*ptr
->free_arg
) (ptr
->arg
);
67 do_my_continuations (struct continuation
**list
, int err
)
69 struct continuation
*continuations
;
74 /* Copy the list header into another pointer, and set the global
75 list header to null, so that the global list can change as a side
76 effect of invoking the continuations and the processing of the
77 preexisting continuations will not be affected. */
79 continuations
= *list
;
82 /* Work now on the list we have set aside. */
83 do_my_continuations_1 (&continuations
, err
);
87 discard_my_continuations_1 (struct continuation
**pmy_chain
)
89 struct continuation
*ptr
;
91 while ((ptr
= *pmy_chain
) != NULL
)
93 *pmy_chain
= ptr
->next
;
95 (*ptr
->free_arg
) (ptr
->arg
);
101 discard_my_continuations (struct continuation
**list
)
103 struct continuation
*continuation_ptr
= *list
;
105 discard_my_continuations_1 (list
);
109 /* Add a continuation to the continuation list of INFERIOR. The new
110 continuation will be added at the front. */
113 add_inferior_continuation (continuation_ftype
*hook
, void *args
,
114 continuation_free_arg_ftype
*free_arg
)
116 struct inferior
*inf
= current_inferior ();
118 make_continuation (&inf
->continuations
, hook
, args
, free_arg
);
121 /* Do all continuations of the current inferior. */
124 do_all_inferior_continuations (int err
)
126 struct inferior
*inf
= current_inferior ();
127 do_my_continuations (&inf
->continuations
, err
);
130 /* Get rid of all the inferior-wide continuations of INF. */
133 discard_all_inferior_continuations (struct inferior
*inf
)
135 discard_my_continuations (&inf
->continuations
);
138 /* Add a continuation to the continuation list of THREAD. The new
139 continuation will be added at the front. */
142 add_continuation (struct thread_info
*thread
,
143 continuation_ftype
*hook
, void *args
,
144 continuation_free_arg_ftype
*free_arg
)
146 make_continuation (&thread
->continuations
, hook
, args
, free_arg
);
150 restore_thread_cleanup (void *arg
)
152 ptid_t
*ptid_p
= arg
;
154 switch_to_thread (*ptid_p
);
157 /* Walk down the continuation list of PTID, and execute all the
158 continuations. There is a problem though. In some cases new
159 continuations may be added while we are in the middle of this loop.
160 If this happens they will be added in the front, and done before we
161 have a chance of exhausting those that were already there. We need
162 to then save the beginning of the list in a pointer and do the
163 continuations from there on, instead of using the global beginning
164 of list as our iteration pointer. */
167 do_all_continuations_ptid (ptid_t ptid
,
168 struct continuation
**continuations_p
,
171 struct cleanup
*old_chain
;
172 ptid_t current_thread
;
174 if (*continuations_p
== NULL
)
177 current_thread
= inferior_ptid
;
179 /* Restore selected thread on exit. Don't try to restore the frame
182 - When running continuations, the selected frame is always #0.
184 - The continuations may trigger symbol file loads, which may
185 change the frame layout (frame ids change), which would trigger
186 a warning if we used make_cleanup_restore_current_thread. */
188 old_chain
= make_cleanup (restore_thread_cleanup
, ¤t_thread
);
190 /* Let the continuation see this thread as selected. */
191 switch_to_thread (ptid
);
193 do_my_continuations (continuations_p
, err
);
195 do_cleanups (old_chain
);
198 /* Callback for iterate over threads. */
201 do_all_continuations_thread_callback (struct thread_info
*thread
, void *data
)
203 int err
= * (int *) data
;
204 do_all_continuations_ptid (thread
->ptid
, &thread
->continuations
, err
);
208 /* Do all continuations of thread THREAD. */
211 do_all_continuations_thread (struct thread_info
*thread
, int err
)
213 do_all_continuations_thread_callback (thread
, &err
);
216 /* Do all continuations of all threads. */
219 do_all_continuations (int err
)
221 iterate_over_threads (do_all_continuations_thread_callback
, &err
);
224 /* Callback for iterate over threads. */
227 discard_all_continuations_thread_callback (struct thread_info
*thread
,
230 discard_my_continuations (&thread
->continuations
);
234 /* Get rid of all the continuations of THREAD. */
237 discard_all_continuations_thread (struct thread_info
*thread
)
239 discard_all_continuations_thread_callback (thread
, NULL
);
242 /* Get rid of all the continuations of all threads. */
245 discard_all_continuations (void)
247 iterate_over_threads (discard_all_continuations_thread_callback
, NULL
);
251 /* Add a continuation to the intermediate continuation list of THREAD.
252 The new continuation will be added at the front. */
255 add_intermediate_continuation (struct thread_info
*thread
,
256 continuation_ftype
*hook
,
258 continuation_free_arg_ftype
*free_arg
)
260 make_continuation (&thread
->intermediate_continuations
, hook
,
264 /* Walk down the cmd_continuation list, and execute all the
265 continuations. There is a problem though. In some cases new
266 continuations may be added while we are in the middle of this
267 loop. If this happens they will be added in the front, and done
268 before we have a chance of exhausting those that were already
269 there. We need to then save the beginning of the list in a pointer
270 and do the continuations from there on, instead of using the
271 global beginning of list as our iteration pointer. */
274 do_all_intermediate_continuations_thread_callback (struct thread_info
*thread
,
277 int err
= * (int *) data
;
279 do_all_continuations_ptid (thread
->ptid
,
280 &thread
->intermediate_continuations
, err
);
284 /* Do all intermediate continuations of thread THREAD. */
287 do_all_intermediate_continuations_thread (struct thread_info
*thread
, int err
)
289 do_all_intermediate_continuations_thread_callback (thread
, &err
);
292 /* Do all intermediate continuations of all threads. */
295 do_all_intermediate_continuations (int err
)
297 iterate_over_threads (do_all_intermediate_continuations_thread_callback
,
301 /* Callback for iterate over threads. */
304 discard_all_intermediate_continuations_thread_callback (struct thread_info
*thread
,
307 discard_my_continuations (&thread
->intermediate_continuations
);
311 /* Get rid of all the intermediate continuations of THREAD. */
314 discard_all_intermediate_continuations_thread (struct thread_info
*thread
)
316 discard_all_intermediate_continuations_thread_callback (thread
, NULL
);
319 /* Get rid of all the intermediate continuations of all threads. */
322 discard_all_intermediate_continuations (void)
324 iterate_over_threads (discard_all_intermediate_continuations_thread_callback
,