gdb: add target_ops::supports_displaced_step
[deliverable/binutils-gdb.git] / gdb / continuations.c
CommitLineData
50c0c017
PA
1/* Continuations for GDB, the GNU debugger.
2
b811d2c2 3 Copyright (C) 1986-2020 Free Software Foundation, Inc.
50c0c017
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"
21#include "gdbthread.h"
22#include "inferior.h"
4de283e4 23#include "continuations.h"
50c0c017
PA
24
25struct continuation
26{
27 struct continuation *next;
b0f260d6
PA
28 continuation_ftype *function;
29 continuation_free_arg_ftype *free_arg;
50c0c017
PA
30 void *arg;
31};
32
af1e9a32
PA
33/* Add a new continuation to the continuation chain. Args are
34 FUNCTION to run the continuation up with, and ARG to pass to
35 it. */
50c0c017 36
af1e9a32 37static void
50c0c017 38make_continuation (struct continuation **pmy_chain,
b0f260d6 39 continuation_ftype *function,
50c0c017
PA
40 void *arg, void (*free_arg) (void *))
41{
fe978cb0 42 struct continuation *newobj = XNEW (struct continuation);
50c0c017 43
fe978cb0
PA
44 newobj->next = *pmy_chain;
45 newobj->function = function;
46 newobj->free_arg = free_arg;
47 newobj->arg = arg;
48 *pmy_chain = newobj;
50c0c017
PA
49}
50
51static void
fa4cd53f 52do_my_continuations_1 (struct continuation **pmy_chain, int err)
50c0c017
PA
53{
54 struct continuation *ptr;
55
af1e9a32 56 while ((ptr = *pmy_chain) != NULL)
50c0c017
PA
57 {
58 *pmy_chain = ptr->next; /* Do this first in case of recursion. */
fa4cd53f 59 (*ptr->function) (ptr->arg, err);
50c0c017
PA
60 if (ptr->free_arg)
61 (*ptr->free_arg) (ptr->arg);
62 xfree (ptr);
63 }
64}
65
af1e9a32 66static void
fa4cd53f 67do_my_continuations (struct continuation **list, int err)
af1e9a32
PA
68{
69 struct continuation *continuations;
70
71 if (*list == NULL)
72 return;
73
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. */
78
79 continuations = *list;
80 *list = NULL;
81
82 /* Work now on the list we have set aside. */
fa4cd53f 83 do_my_continuations_1 (&continuations, err);
af1e9a32
PA
84}
85
86static void
87discard_my_continuations_1 (struct continuation **pmy_chain)
50c0c017
PA
88{
89 struct continuation *ptr;
90
af1e9a32 91 while ((ptr = *pmy_chain) != NULL)
50c0c017
PA
92 {
93 *pmy_chain = ptr->next;
94 if (ptr->free_arg)
95 (*ptr->free_arg) (ptr->arg);
96 xfree (ptr);
97 }
98}
99
af1e9a32
PA
100static void
101discard_my_continuations (struct continuation **list)
50c0c017 102{
af1e9a32
PA
103 discard_my_continuations_1 (list);
104 *list = NULL;
50c0c017
PA
105}
106
107/* Add a continuation to the continuation list of INFERIOR. The new
108 continuation will be added at the front. */
109
110void
b0f260d6
PA
111add_inferior_continuation (continuation_ftype *hook, void *args,
112 continuation_free_arg_ftype *free_arg)
50c0c017
PA
113{
114 struct inferior *inf = current_inferior ();
50c0c017 115
b0f260d6 116 make_continuation (&inf->continuations, hook, args, free_arg);
50c0c017
PA
117}
118
119/* Do all continuations of the current inferior. */
120
121void
fa4cd53f 122do_all_inferior_continuations (int err)
50c0c017 123{
50c0c017 124 struct inferior *inf = current_inferior ();
fa4cd53f 125 do_my_continuations (&inf->continuations, err);
50c0c017
PA
126}
127
128/* Get rid of all the inferior-wide continuations of INF. */
129
130void
131discard_all_inferior_continuations (struct inferior *inf)
132{
af1e9a32
PA
133 discard_my_continuations (&inf->continuations);
134}
This page took 0.64075 seconds and 4 git commands to generate.