aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2019-01-28 10:29:42 -0700
committerTom Tromey <tom@tromey.com>2019-04-08 09:05:40 -0600
commitd272eb370a4c086a1d0f86a7a94e89328ec8d97e (patch)
tree26ceefd803edcc13c453f517ba00557c61cd41b9 /gdb
parent230d2906b9d1d009b22fd526181bf43e1084ed59 (diff)
downloadgdb-d272eb370a4c086a1d0f86a7a94e89328ec8d97e.zip
gdb-d272eb370a4c086a1d0f86a7a94e89328ec8d97e.tar.gz
gdb-d272eb370a4c086a1d0f86a7a94e89328ec8d97e.tar.bz2
Remove some now-dead exception code
After the rewriting to use try/catch, some of the exception code is now unused. This patch removes that code. gdb/ChangeLog 2019-04-08 Tom Tromey <tom@tromey.com> * common/common-exceptions.h (exception_rethrow): Don't declare. (TRY_SJLJ): Update comment. (TRY, CATCH, END_CATCH): Remove. * common/common-exceptions.c (exception_rethrow): Remove.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/ChangeLog7
-rw-r--r--gdb/common/common-exceptions.c10
-rw-r--r--gdb/common/common-exceptions.h53
3 files changed, 13 insertions, 57 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index c8e3912..36b6b61 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,12 @@
2019-04-08 Tom Tromey <tom@tromey.com>
+ * common/common-exceptions.h (exception_rethrow): Don't declare.
+ (TRY_SJLJ): Update comment.
+ (TRY, CATCH, END_CATCH): Remove.
+ * common/common-exceptions.c (exception_rethrow): Remove.
+
+2019-04-08 Tom Tromey <tom@tromey.com>
+
* common/common-exceptions.h (gdb_exception_RETURN_MASK_ALL):
Remove.
(gdb_exception_error): Rename from
diff --git a/gdb/common/common-exceptions.c b/gdb/common/common-exceptions.c
index d00a805..d3c01e5 100644
--- a/gdb/common/common-exceptions.c
+++ b/gdb/common/common-exceptions.c
@@ -165,16 +165,6 @@ exceptions_state_mc_action_iter_1 (void)
return exceptions_state_mc (CATCH_ITER_1);
}
-/* Called by the default catch block. IOW, we'll get here before
- jumping out to the next outermost scope an exception if a GDB
- exception is not caught. */
-
-void
-exception_rethrow (void)
-{
- throw;
-}
-
/* Return EXCEPTION to the nearest containing CATCH_SJLJ block. */
void
diff --git a/gdb/common/common-exceptions.h b/gdb/common/common-exceptions.h
index 55ce02d..b09a34b 100644
--- a/gdb/common/common-exceptions.h
+++ b/gdb/common/common-exceptions.h
@@ -164,10 +164,6 @@ extern int exceptions_state_mc_action_iter (void);
extern int exceptions_state_mc_action_iter_1 (void);
extern int exceptions_state_mc_catch (struct gdb_exception *, int);
-/* For the C++ try/catch-based TRY/CATCH mechanism. */
-
-extern void exception_rethrow (void) ATTRIBUTE_NORETURN;
-
/* Macro to wrap up standard try/catch behavior.
The double loop lets us correctly handle code "break"ing out of the
@@ -179,24 +175,21 @@ extern void exception_rethrow (void) ATTRIBUTE_NORETURN;
*INDENT-OFF*
- TRY
+ TRY_SJLJ
{
}
- CATCH (e, RETURN_MASK_ERROR)
+ CATCH_SJLJ (e, RETURN_MASK_ERROR)
{
switch (e.reason)
{
case RETURN_ERROR: ...
}
}
- END_CATCH
+ END_CATCH_SJLJ
- Note that the SJLJ version of the macros are actually named
- TRY_SJLJ/CATCH_SJLJ in order to make it possible to call them even
- when TRY/CATCH are mapped to C++ try/catch. The SJLJ variants are
- needed in some cases where gdb exceptions need to cross third-party
- library code compiled without exceptions support (e.g.,
- readline). */
+ The SJLJ variants are needed in some cases where gdb exceptions
+ need to cross third-party library code compiled without exceptions
+ support (e.g., readline). */
#define TRY_SJLJ \
{ \
@@ -215,40 +208,6 @@ extern void exception_rethrow (void) ATTRIBUTE_NORETURN;
#define END_CATCH_SJLJ \
}
-/* We still need to wrap TRY/CATCH in C++ so that cleanups and C++
- exceptions can coexist.
-
- The TRY blocked is wrapped in a do/while(0) so that break/continue
- within the block works the same as in C.
-
- END_CATCH makes sure that even if the CATCH block doesn't want to
- catch the exception, we stop at every frame in the unwind chain to
- run its cleanups, which may e.g., have pointers to stack variables
- that are going to be destroyed.
-
- There's an outer scope around the whole TRY/END_CATCH in order to
- cause a compilation error if you forget to add the END_CATCH at the
- end a TRY/CATCH construct. */
-
-#define TRY \
- { \
- try \
- { \
- do \
- {
-
-#define CATCH(EXCEPTION, MASK) \
- } while (0); \
- } \
- catch (struct gdb_exception ## _ ## MASK &EXCEPTION)
-
-#define END_CATCH \
- catch (...) \
- { \
- exception_rethrow (); \
- } \
- }
-
/* The exception types client code may catch. They're just shims
around gdb_exception that add nothing but type info. Which is used
is selected depending on the MASK argument passed to CATCH. */