summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPedro Alves <palves@redhat.com>2016-04-21 17:28:58 +0100
committerPedro Alves <palves@redhat.com>2016-04-21 17:28:58 +0100
commit88c3cd8dcb60606a25a16ea11149219db00f847b (patch)
tree1221168a6fe473811cff84d11b477380668d35f2
parent00f4a6024f23a592a34b8a9bf46e28aa0b747fc5 (diff)
downloadbinutils-gdb-88c3cd8dcb60606a25a16ea11149219db00f847b.tar.gz
Switch gdb's TRY/CATCH to sjlj again
We don't currently handle the case of gdb's readline callback throwing gdb C++ exceptions across a readline that wasn't built with -fexceptions. The end result is: (gdb) whatever-command-that-causes-an-error terminate called after throwing an instance of 'gdb_exception_RETURN_MASK_ERROR' Aborted $ Until that is fixed, revert back to sjlj-based exceptions again. gdb/ChangeLog: 2016-04-21 Pedro Alves <palves@redhat.com> * common/common-exceptions.h (GDB_XCPT_TRY): Add comment. (GDB_XCPT): Always define as GDB_XCPT_SJMP.
-rw-r--r--gdb/ChangeLog5
-rw-r--r--gdb/common/common-exceptions.h11
2 files changed, 10 insertions, 6 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 6e0903016b9..b6282e65a33 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,10 @@
2016-04-21 Pedro Alves <palves@redhat.com>
+ * common/common-exceptions.h (GDB_XCPT_TRY): Add comment.
+ (GDB_XCPT): Always define as GDB_XCPT_SJMP.
+
+2016-04-21 Pedro Alves <palves@redhat.com>
+
* aix-thread.c (pdc_read_data, pdc_write_data): Add cast.
(aix_thread_resume): Use PTRACE_TYPE_ARG5.
* rs6000-nat.c (rs6000_ptrace64): Use PTRACE_TYPE_ARG5.
diff --git a/gdb/common/common-exceptions.h b/gdb/common/common-exceptions.h
index 6a417412f41..1ef3db35f75 100644
--- a/gdb/common/common-exceptions.h
+++ b/gdb/common/common-exceptions.h
@@ -122,7 +122,9 @@ struct gdb_exception
the only mode supported when GDB is built as a C program. */
#define GDB_XCPT_SJMP 1
-/* Make GDB exceptions use try/catch behind the scenes. */
+/* Make GDB exceptions use try/catch behind the scenes. Can't be made
+ the default until we handle exceptions crossing foreign frames
+ (gdb -> readline callback -> gdb -> error). */
#define GDB_XCPT_TRY 2
/* Specify this mode to build with TRY/CATCH mapped directly to raw
@@ -131,11 +133,8 @@ struct gdb_exception
spurious code between the TRY and the CATCH block. */
#define GDB_XCPT_RAW_TRY 3
-#ifdef __cplusplus
-# define GDB_XCPT GDB_XCPT_TRY
-#else
-# define GDB_XCPT GDB_XCPT_SJMP
-#endif
+/* Always use setjmp/longmp, even in C++ mode. */
+#define GDB_XCPT GDB_XCPT_SJMP
/* Functions to drive the exceptions state machine. Though declared
here by necessity, these functions should be considered internal to