Move internal_{,v}warning to common/errors.[ch]
[deliverable/binutils-gdb.git] / gdb / cleanups.c
CommitLineData
c27f5738
DE
1/* Cleanup routines for GDB, the GNU debugger.
2
ecd75fc8 3 Copyright (C) 1986-2014 Free Software Foundation, Inc.
c27f5738
DE
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"
b10faa68
DE
21
22/* The cleanup list records things that have to be undone
23 if an error happens (descriptors to be closed, memory to be freed, etc.)
24 Each link in the chain records a function to call and an
25 argument to give it.
26
27 Use make_cleanup to add an element to the cleanup chain.
28 Use do_cleanups to do all cleanup actions back to a given
29 point in the chain. Use discard_cleanups to remove cleanups
30 from the chain back to a given point, not doing them.
31
32 If the argument is pointer to allocated memory, then you need
33 to additionally set the 'free_arg' member to a function that will
34 free that memory. This function will be called both when the cleanup
35 is executed and when it's discarded. */
36
37struct cleanup
38{
39 struct cleanup *next;
40 void (*function) (void *);
41 void (*free_arg) (void *);
42 void *arg;
43};
44
45/* Used to mark the end of a cleanup chain.
46 The value is chosen so that it:
47 - is non-NULL so that make_cleanup never returns NULL,
48 - causes a segv if dereferenced
49 [though this won't catch errors that a value of, say,
50 ((struct cleanup *) -1) will]
51 - displays as something useful when printed in gdb.
52 This is const for a bit of extra robustness.
53 It is initialized to coax gcc into putting it into .rodata.
54 All fields are initialized to survive -Wextra. */
55static const struct cleanup sentinel_cleanup = { 0, 0, 0, 0 };
56
57/* Handy macro to use when referring to sentinel_cleanup. */
58#define SENTINEL_CLEANUP ((struct cleanup *) &sentinel_cleanup)
c27f5738
DE
59
60/* Chain of cleanup actions established with make_cleanup,
61 to be executed if an error happens. */
b10faa68 62static struct cleanup *cleanup_chain = SENTINEL_CLEANUP;
c27f5738 63
b10faa68
DE
64/* Chain of cleanup actions established with make_final_cleanup,
65 to be executed when gdb exits. */
66static struct cleanup *final_cleanup_chain = SENTINEL_CLEANUP;
c27f5738
DE
67
68/* Main worker routine to create a cleanup.
69 PMY_CHAIN is a pointer to either cleanup_chain or final_cleanup_chain.
70 FUNCTION is the function to call to perform the cleanup.
71 ARG is passed to FUNCTION when called.
72 FREE_ARG, if non-NULL, is called after the cleanup is performed.
73
74 The result is a pointer to the previous chain pointer
75 to be passed later to do_cleanups or discard_cleanups. */
76
58d5e2c3 77static struct cleanup *
c27f5738
DE
78make_my_cleanup2 (struct cleanup **pmy_chain, make_cleanup_ftype *function,
79 void *arg, void (*free_arg) (void *))
80{
81 struct cleanup *new
82 = (struct cleanup *) xmalloc (sizeof (struct cleanup));
83 struct cleanup *old_chain = *pmy_chain;
84
85 new->next = *pmy_chain;
86 new->function = function;
87 new->free_arg = free_arg;
88 new->arg = arg;
89 *pmy_chain = new;
90
b10faa68 91 gdb_assert (old_chain != NULL);
c27f5738
DE
92 return old_chain;
93}
94
95/* Worker routine to create a cleanup without a destructor.
96 PMY_CHAIN is a pointer to either cleanup_chain or final_cleanup_chain.
97 FUNCTION is the function to call to perform the cleanup.
98 ARG is passed to FUNCTION when called.
99
100 The result is a pointer to the previous chain pointer
101 to be passed later to do_cleanups or discard_cleanups. */
102
58d5e2c3 103static struct cleanup *
c27f5738
DE
104make_my_cleanup (struct cleanup **pmy_chain, make_cleanup_ftype *function,
105 void *arg)
106{
107 return make_my_cleanup2 (pmy_chain, function, arg, NULL);
108}
109
110/* Add a new cleanup to the cleanup_chain,
111 and return the previous chain pointer
112 to be passed later to do_cleanups or discard_cleanups.
113 Args are FUNCTION to clean up with, and ARG to pass to it. */
114
115struct cleanup *
116make_cleanup (make_cleanup_ftype *function, void *arg)
117{
118 return make_my_cleanup (&cleanup_chain, function, arg);
119}
120
121/* Same as make_cleanup except also includes TDOR, a destructor to free ARG.
122 DTOR is invoked when the cleanup is performed or when it is discarded. */
123
124struct cleanup *
125make_cleanup_dtor (make_cleanup_ftype *function, void *arg,
126 void (*dtor) (void *))
127{
128 return make_my_cleanup2 (&cleanup_chain,
129 function, arg, dtor);
130}
131
132/* Same as make_cleanup except the cleanup is added to final_cleanup_chain. */
133
134struct cleanup *
135make_final_cleanup (make_cleanup_ftype *function, void *arg)
136{
137 return make_my_cleanup (&final_cleanup_chain, function, arg);
138}
139
140/* Worker routine to perform cleanups.
141 PMY_CHAIN is a pointer to either cleanup_chain or final_cleanup_chain.
142 OLD_CHAIN is the result of a "make" cleanup routine.
143 Cleanups are performed until we get back to the old end of the chain. */
144
145static void
146do_my_cleanups (struct cleanup **pmy_chain,
147 struct cleanup *old_chain)
148{
149 struct cleanup *ptr;
150
151 while ((ptr = *pmy_chain) != old_chain)
152 {
153 *pmy_chain = ptr->next; /* Do this first in case of recursion. */
154 (*ptr->function) (ptr->arg);
155 if (ptr->free_arg)
156 (*ptr->free_arg) (ptr->arg);
157 xfree (ptr);
158 }
159}
160
b10faa68
DE
161/* Return a value that can be passed to do_cleanups, do_final_cleanups to
162 indicate perform all cleanups. */
163
164struct cleanup *
165all_cleanups (void)
166{
167 return SENTINEL_CLEANUP;
168}
169
c27f5738
DE
170/* Discard cleanups and do the actions they describe
171 until we get back to the point OLD_CHAIN in the cleanup_chain. */
172
173void
174do_cleanups (struct cleanup *old_chain)
175{
176 do_my_cleanups (&cleanup_chain, old_chain);
177}
178
179/* Discard cleanups and do the actions they describe
180 until we get back to the point OLD_CHAIN in the final_cleanup_chain. */
181
182void
183do_final_cleanups (struct cleanup *old_chain)
184{
185 do_my_cleanups (&final_cleanup_chain, old_chain);
186}
187
188/* Main worker routine to discard cleanups.
189 PMY_CHAIN is a pointer to either cleanup_chain or final_cleanup_chain.
190 OLD_CHAIN is the result of a "make" cleanup routine.
191 Cleanups are discarded until we get back to the old end of the chain. */
192
58d5e2c3 193static void
c27f5738
DE
194discard_my_cleanups (struct cleanup **pmy_chain,
195 struct cleanup *old_chain)
196{
197 struct cleanup *ptr;
198
199 while ((ptr = *pmy_chain) != old_chain)
200 {
201 *pmy_chain = ptr->next;
202 if (ptr->free_arg)
203 (*ptr->free_arg) (ptr->arg);
204 xfree (ptr);
205 }
206}
207
208/* Discard cleanups, not doing the actions they describe,
209 until we get back to the point OLD_CHAIN in the cleanup chain. */
210
211void
212discard_cleanups (struct cleanup *old_chain)
213{
214 discard_my_cleanups (&cleanup_chain, old_chain);
215}
216
217/* Discard final cleanups, not doing the actions they describe,
218 until we get back to the point OLD_CHAIN in the final cleanup chain. */
219
220void
221discard_final_cleanups (struct cleanup *old_chain)
222{
223 discard_my_cleanups (&final_cleanup_chain, old_chain);
224}
225
226/* Main worker routine to save cleanups.
227 PMY_CHAIN is a pointer to either cleanup_chain or final_cleanup_chain.
228 The chain is emptied and the result is a pointer to the old chain. */
229
58d5e2c3 230static struct cleanup *
c27f5738
DE
231save_my_cleanups (struct cleanup **pmy_chain)
232{
233 struct cleanup *old_chain = *pmy_chain;
234
b10faa68 235 *pmy_chain = SENTINEL_CLEANUP;
c27f5738
DE
236 return old_chain;
237}
238
239/* Set the cleanup_chain to 0, and return the old cleanup_chain. */
240
241struct cleanup *
242save_cleanups (void)
243{
244 return save_my_cleanups (&cleanup_chain);
245}
246
247/* Set the final_cleanup_chain to 0, and return the old
248 final_cleanup_chain. */
249
250struct cleanup *
251save_final_cleanups (void)
252{
253 return save_my_cleanups (&final_cleanup_chain);
254}
255
256/* Main worker routine to save cleanups.
257 PMY_CHAIN is a pointer to either cleanup_chain or final_cleanup_chain.
258 The chain is restored from CHAIN. */
259
58d5e2c3 260static void
c27f5738
DE
261restore_my_cleanups (struct cleanup **pmy_chain, struct cleanup *chain)
262{
5821aace
JK
263 if (*pmy_chain != SENTINEL_CLEANUP)
264 internal_warning (__FILE__, __LINE__,
265 _("restore_my_cleanups has found a stale cleanup"));
266
c27f5738
DE
267 *pmy_chain = chain;
268}
269
270/* Restore the cleanup chain from a previously saved chain. */
271
272void
273restore_cleanups (struct cleanup *chain)
274{
275 restore_my_cleanups (&cleanup_chain, chain);
276}
277
278/* Restore the final cleanup chain from a previously saved chain. */
279
280void
281restore_final_cleanups (struct cleanup *chain)
282{
283 restore_my_cleanups (&final_cleanup_chain, chain);
284}
285
286/* Provide a known function that does nothing, to use as a base for
287 a possibly long chain of cleanups. This is useful where we
288 use the cleanup chain for handling normal cleanups as well as dealing
289 with cleanups that need to be done as a result of a call to error().
290 In such cases, we may not be certain where the first cleanup is, unless
291 we have a do-nothing one to always use as the base. */
292
293void
294null_cleanup (void *arg)
295{
296}
This page took 0.206351 seconds and 4 git commands to generate.