Simplify exception handling
[deliverable/binutils-gdb.git] / gdb / common / common-exceptions.c
1 /* Exception (throw catch) mechanism, for GDB, the GNU debugger.
2
3 Copyright (C) 1986-2019 Free Software Foundation, Inc.
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 "common-defs.h"
21 #include "common-exceptions.h"
22
23 const struct gdb_exception exception_none = { (enum return_reason) 0, GDB_NO_ERROR, NULL };
24
25 /* Possible catcher states. */
26 enum catcher_state {
27 /* Initial state, a new catcher has just been created. */
28 CATCHER_CREATED,
29 /* The catch code is running. */
30 CATCHER_RUNNING,
31 CATCHER_RUNNING_1,
32 /* The catch code threw an exception. */
33 CATCHER_ABORTING
34 };
35
36 /* Possible catcher actions. */
37 enum catcher_action {
38 CATCH_ITER,
39 CATCH_ITER_1,
40 CATCH_THROWING
41 };
42
43 struct catcher
44 {
45 enum catcher_state state;
46 /* Jump buffer pointing back at the exception handler. */
47 jmp_buf buf;
48 /* Status buffer belonging to the exception handler. */
49 struct gdb_exception exception;
50 /* Back link. */
51 struct catcher *prev;
52 };
53
54 /* Where to go for throw_exception(). */
55 static struct catcher *current_catcher;
56
57 jmp_buf *
58 exceptions_state_mc_init (void)
59 {
60 struct catcher *new_catcher = XCNEW (struct catcher);
61
62 /* Start with no exception. */
63 new_catcher->exception = exception_none;
64
65 /* Push this new catcher on the top. */
66 new_catcher->prev = current_catcher;
67 current_catcher = new_catcher;
68 new_catcher->state = CATCHER_CREATED;
69
70 return &new_catcher->buf;
71 }
72
73 static void
74 catcher_pop (void)
75 {
76 struct catcher *old_catcher = current_catcher;
77
78 current_catcher = old_catcher->prev;
79
80 xfree (old_catcher);
81 }
82
83 /* Catcher state machine. Returns non-zero if the m/c should be run
84 again, zero if it should abort. */
85
86 static int
87 exceptions_state_mc (enum catcher_action action)
88 {
89 switch (current_catcher->state)
90 {
91 case CATCHER_CREATED:
92 switch (action)
93 {
94 case CATCH_ITER:
95 /* Allow the code to run the catcher. */
96 current_catcher->state = CATCHER_RUNNING;
97 return 1;
98 default:
99 internal_error (__FILE__, __LINE__, _("bad state"));
100 }
101 case CATCHER_RUNNING:
102 switch (action)
103 {
104 case CATCH_ITER:
105 /* No error/quit has occured. */
106 return 0;
107 case CATCH_ITER_1:
108 current_catcher->state = CATCHER_RUNNING_1;
109 return 1;
110 case CATCH_THROWING:
111 current_catcher->state = CATCHER_ABORTING;
112 /* See also throw_exception. */
113 return 1;
114 default:
115 internal_error (__FILE__, __LINE__, _("bad switch"));
116 }
117 case CATCHER_RUNNING_1:
118 switch (action)
119 {
120 case CATCH_ITER:
121 /* The did a "break" from the inner while loop. */
122 return 0;
123 case CATCH_ITER_1:
124 current_catcher->state = CATCHER_RUNNING;
125 return 0;
126 case CATCH_THROWING:
127 current_catcher->state = CATCHER_ABORTING;
128 /* See also throw_exception. */
129 return 1;
130 default:
131 internal_error (__FILE__, __LINE__, _("bad switch"));
132 }
133 case CATCHER_ABORTING:
134 switch (action)
135 {
136 case CATCH_ITER:
137 {
138 /* Exit normally if this catcher can handle this
139 exception. The caller analyses the func return
140 values. */
141 return 0;
142 }
143 default:
144 internal_error (__FILE__, __LINE__, _("bad state"));
145 }
146 default:
147 internal_error (__FILE__, __LINE__, _("bad switch"));
148 }
149 }
150
151 int
152 exceptions_state_mc_catch (struct gdb_exception *exception,
153 int mask)
154 {
155 *exception = current_catcher->exception;
156 catcher_pop ();
157
158 if (exception->reason < 0)
159 {
160 if (mask & RETURN_MASK (exception->reason))
161 {
162 /* Exit normally and let the caller handle the
163 exception. */
164 return 1;
165 }
166
167 /* The caller didn't request that the event be caught, relay the
168 event to the next exception_catch/CATCH_SJLJ. */
169 throw_exception_sjlj (*exception);
170 }
171
172 /* No exception was thrown. */
173 return 0;
174 }
175
176 int
177 exceptions_state_mc_action_iter (void)
178 {
179 return exceptions_state_mc (CATCH_ITER);
180 }
181
182 int
183 exceptions_state_mc_action_iter_1 (void)
184 {
185 return exceptions_state_mc (CATCH_ITER_1);
186 }
187
188 /* How many nested TRY blocks we have. See exception_messages and
189 throw_it. */
190
191 static int try_scope_depth;
192
193 /* Called on entry to a TRY scope. */
194
195 void *
196 exception_try_scope_entry (void)
197 {
198 ++try_scope_depth;
199 return nullptr;
200 }
201
202 /* Called on exit of a TRY scope, either normal exit or exception
203 exit. */
204
205 void
206 exception_try_scope_exit (void *saved_state)
207 {
208 --try_scope_depth;
209 }
210
211 /* Called by the default catch block. IOW, we'll get here before
212 jumping out to the next outermost scope an exception if a GDB
213 exception is not caught. */
214
215 void
216 exception_rethrow (void)
217 {
218 throw;
219 }
220
221 /* Copy the 'gdb_exception' portion of FROM to TO. */
222
223 static void
224 gdb_exception_sliced_copy (struct gdb_exception *to, const struct gdb_exception *from)
225 {
226 *to = *from;
227 }
228
229 /* Return EXCEPTION to the nearest containing CATCH_SJLJ block. */
230
231 void
232 throw_exception_sjlj (struct gdb_exception exception)
233 {
234 /* Jump to the nearest CATCH_SJLJ block, communicating REASON to
235 that call via setjmp's return value. Note that REASON can't be
236 zero, by definition in common-exceptions.h. */
237 exceptions_state_mc (CATCH_THROWING);
238 current_catcher->exception = exception;
239 longjmp (current_catcher->buf, exception.reason);
240 }
241
242 /* Implementation of throw_exception that uses C++ try/catch. */
243
244 static ATTRIBUTE_NORETURN void
245 throw_exception_cxx (struct gdb_exception exception)
246 {
247 if (exception.reason == RETURN_QUIT)
248 {
249 gdb_exception_RETURN_MASK_QUIT ex;
250
251 gdb_exception_sliced_copy (&ex, &exception);
252 throw ex;
253 }
254 else if (exception.reason == RETURN_ERROR)
255 {
256 gdb_exception_RETURN_MASK_ERROR ex;
257
258 gdb_exception_sliced_copy (&ex, &exception);
259 throw ex;
260 }
261 else
262 gdb_assert_not_reached ("invalid return reason");
263 }
264
265 void
266 throw_exception (struct gdb_exception exception)
267 {
268 throw_exception_cxx (exception);
269 }
270
271 /* A stack of exception messages.
272 This is needed to handle nested calls to throw_it: we don't want to
273 xfree space for a message before it's used.
274 This can happen if we throw an exception during a cleanup:
275 An outer TRY_CATCH may have an exception message it wants to print,
276 but while doing cleanups further calls to throw_it are made.
277
278 This is indexed by the size of the current_catcher list.
279 It is a dynamically allocated array so that we don't care how deeply
280 GDB nests its TRY_CATCHs. */
281 static char **exception_messages;
282
283 /* The number of currently allocated entries in exception_messages. */
284 static int exception_messages_size;
285
286 static void ATTRIBUTE_NORETURN ATTRIBUTE_PRINTF (3, 0)
287 throw_it (enum return_reason reason, enum errors error, const char *fmt,
288 va_list ap)
289 {
290 struct gdb_exception e;
291 char *new_message;
292 int depth = try_scope_depth;
293
294 gdb_assert (depth > 0);
295
296 /* Note: The new message may use an old message's text. */
297 new_message = xstrvprintf (fmt, ap);
298
299 if (depth > exception_messages_size)
300 {
301 int old_size = exception_messages_size;
302
303 exception_messages_size = depth + 10;
304 exception_messages = XRESIZEVEC (char *, exception_messages,
305 exception_messages_size);
306 memset (exception_messages + old_size, 0,
307 (exception_messages_size - old_size) * sizeof (char *));
308 }
309
310 xfree (exception_messages[depth - 1]);
311 exception_messages[depth - 1] = new_message;
312
313 /* Create the exception. */
314 e.reason = reason;
315 e.error = error;
316 e.message = new_message;
317
318 /* Throw the exception. */
319 throw_exception (e);
320 }
321
322 void
323 throw_verror (enum errors error, const char *fmt, va_list ap)
324 {
325 throw_it (RETURN_ERROR, error, fmt, ap);
326 }
327
328 void
329 throw_vquit (const char *fmt, va_list ap)
330 {
331 throw_it (RETURN_QUIT, GDB_NO_ERROR, fmt, ap);
332 }
333
334 void
335 throw_error (enum errors error, const char *fmt, ...)
336 {
337 va_list args;
338
339 va_start (args, fmt);
340 throw_verror (error, fmt, args);
341 va_end (args);
342 }
343
344 void
345 throw_quit (const char *fmt, ...)
346 {
347 va_list args;
348
349 va_start (args, fmt);
350 throw_vquit (fmt, args);
351 va_end (args);
352 }
This page took 0.041594 seconds and 5 git commands to generate.