mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-28 04:25:10 +08:00
C++-ify break-catch-sig
This changes signal_catchpoint to be more of a C++ class, using std::vector and updating the users. ChangeLog 2017-07-22 Tom Tromey <tom@tromey.com> * break-catch-sig.c (gdb_signal_type): Remove typedef. (struct signal_catchpoint) <signals_to_be_caught>: Now a std::vector. <catch_all>: Now a bool. (~signal_catchpoint): Remove. (signal_catchpoint_insert_location) (signal_catchpoint_remove_location) (signal_catchpoint_breakpoint_hit, signal_catchpoint_print_one) (signal_catchpoint_print_mention) (signal_catchpoint_print_recreate) (signal_catchpoint_explains_signal): Update. (create_signal_catchpoint): Change type of "filter" and "catch_all". (catch_signal_split_args): Return a std::vector. Change type of "catch_all". (catch_signal_command): Update.
This commit is contained in:
parent
dbdda973f3
commit
f746a15444
@ -1,3 +1,22 @@
|
|||||||
|
2017-07-22 Tom Tromey <tom@tromey.com>
|
||||||
|
|
||||||
|
* break-catch-sig.c (gdb_signal_type): Remove typedef.
|
||||||
|
(struct signal_catchpoint) <signals_to_be_caught>: Now a
|
||||||
|
std::vector.
|
||||||
|
<catch_all>: Now a bool.
|
||||||
|
(~signal_catchpoint): Remove.
|
||||||
|
(signal_catchpoint_insert_location)
|
||||||
|
(signal_catchpoint_remove_location)
|
||||||
|
(signal_catchpoint_breakpoint_hit, signal_catchpoint_print_one)
|
||||||
|
(signal_catchpoint_print_mention)
|
||||||
|
(signal_catchpoint_print_recreate)
|
||||||
|
(signal_catchpoint_explains_signal): Update.
|
||||||
|
(create_signal_catchpoint): Change type of "filter" and
|
||||||
|
"catch_all".
|
||||||
|
(catch_signal_split_args): Return a std::vector. Change type of
|
||||||
|
"catch_all".
|
||||||
|
(catch_signal_command): Update.
|
||||||
|
|
||||||
2017-07-20 Pedro Alves <palves@redhat.com>
|
2017-07-20 Pedro Alves <palves@redhat.com>
|
||||||
|
|
||||||
* ada-lang.c (ada_language_defn): Make extern.
|
* ada-lang.c (ada_language_defn): Make extern.
|
||||||
|
@ -33,30 +33,24 @@
|
|||||||
|
|
||||||
#define INTERNAL_SIGNAL(x) ((x) == GDB_SIGNAL_TRAP || (x) == GDB_SIGNAL_INT)
|
#define INTERNAL_SIGNAL(x) ((x) == GDB_SIGNAL_TRAP || (x) == GDB_SIGNAL_INT)
|
||||||
|
|
||||||
typedef enum gdb_signal gdb_signal_type;
|
|
||||||
|
|
||||||
DEF_VEC_I (gdb_signal_type);
|
|
||||||
|
|
||||||
/* An instance of this type is used to represent a signal catchpoint.
|
/* An instance of this type is used to represent a signal catchpoint.
|
||||||
A breakpoint is really of this type iff its ops pointer points to
|
A breakpoint is really of this type iff its ops pointer points to
|
||||||
SIGNAL_CATCHPOINT_OPS. */
|
SIGNAL_CATCHPOINT_OPS. */
|
||||||
|
|
||||||
struct signal_catchpoint : public breakpoint
|
struct signal_catchpoint : public breakpoint
|
||||||
{
|
{
|
||||||
~signal_catchpoint () override;
|
|
||||||
|
|
||||||
/* Signal numbers used for the 'catch signal' feature. If no signal
|
/* Signal numbers used for the 'catch signal' feature. If no signal
|
||||||
has been specified for filtering, its value is NULL. Otherwise,
|
has been specified for filtering, it is empty. Otherwise,
|
||||||
it holds a list of all signals to be caught. */
|
it holds a list of all signals to be caught. */
|
||||||
|
|
||||||
VEC (gdb_signal_type) *signals_to_be_caught;
|
std::vector<gdb_signal> signals_to_be_caught;
|
||||||
|
|
||||||
/* If SIGNALS_TO_BE_CAUGHT is NULL, then all "ordinary" signals are
|
/* If SIGNALS_TO_BE_CAUGHT is empty, then all "ordinary" signals are
|
||||||
caught. If CATCH_ALL is non-zero, then internal signals are
|
caught. If CATCH_ALL is true, then internal signals are caught
|
||||||
caught as well. If SIGNALS_TO_BE_CAUGHT is non-NULL, then this
|
as well. If SIGNALS_TO_BE_CAUGHT is not empty, then this field
|
||||||
field is ignored. */
|
is ignored. */
|
||||||
|
|
||||||
int catch_all;
|
bool catch_all;
|
||||||
};
|
};
|
||||||
|
|
||||||
/* The breakpoint_ops structure to be used in signal catchpoints. */
|
/* The breakpoint_ops structure to be used in signal catchpoints. */
|
||||||
@ -85,13 +79,6 @@ signal_to_name_or_int (enum gdb_signal sig)
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* signal_catchpoint destructor. */
|
|
||||||
|
|
||||||
signal_catchpoint::~signal_catchpoint ()
|
|
||||||
{
|
|
||||||
VEC_free (gdb_signal_type, this->signals_to_be_caught);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Implement the "insert_location" breakpoint_ops method for signal
|
/* Implement the "insert_location" breakpoint_ops method for signal
|
||||||
catchpoints. */
|
catchpoints. */
|
||||||
|
|
||||||
@ -99,20 +86,15 @@ static int
|
|||||||
signal_catchpoint_insert_location (struct bp_location *bl)
|
signal_catchpoint_insert_location (struct bp_location *bl)
|
||||||
{
|
{
|
||||||
struct signal_catchpoint *c = (struct signal_catchpoint *) bl->owner;
|
struct signal_catchpoint *c = (struct signal_catchpoint *) bl->owner;
|
||||||
int i;
|
|
||||||
|
|
||||||
if (c->signals_to_be_caught != NULL)
|
if (!c->signals_to_be_caught.empty ())
|
||||||
{
|
{
|
||||||
gdb_signal_type iter;
|
for (gdb_signal iter : c->signals_to_be_caught)
|
||||||
|
|
||||||
for (i = 0;
|
|
||||||
VEC_iterate (gdb_signal_type, c->signals_to_be_caught, i, iter);
|
|
||||||
i++)
|
|
||||||
++signal_catch_counts[iter];
|
++signal_catch_counts[iter];
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
for (i = 0; i < GDB_SIGNAL_LAST; ++i)
|
for (int i = 0; i < GDB_SIGNAL_LAST; ++i)
|
||||||
{
|
{
|
||||||
if (c->catch_all || !INTERNAL_SIGNAL (i))
|
if (c->catch_all || !INTERNAL_SIGNAL (i))
|
||||||
++signal_catch_counts[i];
|
++signal_catch_counts[i];
|
||||||
@ -132,15 +114,10 @@ signal_catchpoint_remove_location (struct bp_location *bl,
|
|||||||
enum remove_bp_reason reason)
|
enum remove_bp_reason reason)
|
||||||
{
|
{
|
||||||
struct signal_catchpoint *c = (struct signal_catchpoint *) bl->owner;
|
struct signal_catchpoint *c = (struct signal_catchpoint *) bl->owner;
|
||||||
int i;
|
|
||||||
|
|
||||||
if (c->signals_to_be_caught != NULL)
|
if (!c->signals_to_be_caught.empty ())
|
||||||
{
|
{
|
||||||
gdb_signal_type iter;
|
for (gdb_signal iter : c->signals_to_be_caught)
|
||||||
|
|
||||||
for (i = 0;
|
|
||||||
VEC_iterate (gdb_signal_type, c->signals_to_be_caught, i, iter);
|
|
||||||
i++)
|
|
||||||
{
|
{
|
||||||
gdb_assert (signal_catch_counts[iter] > 0);
|
gdb_assert (signal_catch_counts[iter] > 0);
|
||||||
--signal_catch_counts[iter];
|
--signal_catch_counts[iter];
|
||||||
@ -148,7 +125,7 @@ signal_catchpoint_remove_location (struct bp_location *bl,
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
for (i = 0; i < GDB_SIGNAL_LAST; ++i)
|
for (int i = 0; i < GDB_SIGNAL_LAST; ++i)
|
||||||
{
|
{
|
||||||
if (c->catch_all || !INTERNAL_SIGNAL (i))
|
if (c->catch_all || !INTERNAL_SIGNAL (i))
|
||||||
{
|
{
|
||||||
@ -174,7 +151,7 @@ signal_catchpoint_breakpoint_hit (const struct bp_location *bl,
|
|||||||
{
|
{
|
||||||
const struct signal_catchpoint *c
|
const struct signal_catchpoint *c
|
||||||
= (const struct signal_catchpoint *) bl->owner;
|
= (const struct signal_catchpoint *) bl->owner;
|
||||||
gdb_signal_type signal_number;
|
gdb_signal signal_number;
|
||||||
|
|
||||||
if (ws->kind != TARGET_WAITKIND_STOPPED)
|
if (ws->kind != TARGET_WAITKIND_STOPPED)
|
||||||
return 0;
|
return 0;
|
||||||
@ -184,18 +161,12 @@ signal_catchpoint_breakpoint_hit (const struct bp_location *bl,
|
|||||||
/* If we are catching specific signals in this breakpoint, then we
|
/* If we are catching specific signals in this breakpoint, then we
|
||||||
must guarantee that the called signal is the same signal we are
|
must guarantee that the called signal is the same signal we are
|
||||||
catching. */
|
catching. */
|
||||||
if (c->signals_to_be_caught)
|
if (!c->signals_to_be_caught.empty ())
|
||||||
{
|
{
|
||||||
int i;
|
for (gdb_signal iter : c->signals_to_be_caught)
|
||||||
gdb_signal_type iter;
|
|
||||||
|
|
||||||
for (i = 0;
|
|
||||||
VEC_iterate (gdb_signal_type, c->signals_to_be_caught, i, iter);
|
|
||||||
i++)
|
|
||||||
if (signal_number == iter)
|
if (signal_number == iter)
|
||||||
return 1;
|
return 1;
|
||||||
/* Not the same. */
|
/* Not the same. */
|
||||||
gdb_assert (!iter);
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
@ -246,26 +217,24 @@ signal_catchpoint_print_one (struct breakpoint *b,
|
|||||||
uiout->field_skip ("addr");
|
uiout->field_skip ("addr");
|
||||||
annotate_field (5);
|
annotate_field (5);
|
||||||
|
|
||||||
if (c->signals_to_be_caught
|
if (c->signals_to_be_caught.size () > 1)
|
||||||
&& VEC_length (gdb_signal_type, c->signals_to_be_caught) > 1)
|
|
||||||
uiout->text ("signals \"");
|
uiout->text ("signals \"");
|
||||||
else
|
else
|
||||||
uiout->text ("signal \"");
|
uiout->text ("signal \"");
|
||||||
|
|
||||||
if (c->signals_to_be_caught)
|
if (!c->signals_to_be_caught.empty ())
|
||||||
{
|
{
|
||||||
int i;
|
|
||||||
gdb_signal_type iter;
|
|
||||||
std::string text;
|
std::string text;
|
||||||
|
|
||||||
for (i = 0;
|
bool first = true;
|
||||||
VEC_iterate (gdb_signal_type, c->signals_to_be_caught, i, iter);
|
for (gdb_signal iter : c->signals_to_be_caught)
|
||||||
i++)
|
|
||||||
{
|
{
|
||||||
const char *name = signal_to_name_or_int (iter);
|
const char *name = signal_to_name_or_int (iter);
|
||||||
|
|
||||||
if (i > 0)
|
if (!first)
|
||||||
text += " ";
|
text += " ";
|
||||||
|
first = false;
|
||||||
|
|
||||||
text += name;
|
text += name;
|
||||||
}
|
}
|
||||||
uiout->field_string ("what", text.c_str ());
|
uiout->field_string ("what", text.c_str ());
|
||||||
@ -287,19 +256,14 @@ signal_catchpoint_print_mention (struct breakpoint *b)
|
|||||||
{
|
{
|
||||||
struct signal_catchpoint *c = (struct signal_catchpoint *) b;
|
struct signal_catchpoint *c = (struct signal_catchpoint *) b;
|
||||||
|
|
||||||
if (c->signals_to_be_caught)
|
if (!c->signals_to_be_caught.empty ())
|
||||||
{
|
{
|
||||||
int i;
|
if (c->signals_to_be_caught.size () > 1)
|
||||||
gdb_signal_type iter;
|
|
||||||
|
|
||||||
if (VEC_length (gdb_signal_type, c->signals_to_be_caught) > 1)
|
|
||||||
printf_filtered (_("Catchpoint %d (signals"), b->number);
|
printf_filtered (_("Catchpoint %d (signals"), b->number);
|
||||||
else
|
else
|
||||||
printf_filtered (_("Catchpoint %d (signal"), b->number);
|
printf_filtered (_("Catchpoint %d (signal"), b->number);
|
||||||
|
|
||||||
for (i = 0;
|
for (gdb_signal iter : c->signals_to_be_caught)
|
||||||
VEC_iterate (gdb_signal_type, c->signals_to_be_caught, i, iter);
|
|
||||||
i++)
|
|
||||||
{
|
{
|
||||||
const char *name = signal_to_name_or_int (iter);
|
const char *name = signal_to_name_or_int (iter);
|
||||||
|
|
||||||
@ -323,14 +287,9 @@ signal_catchpoint_print_recreate (struct breakpoint *b, struct ui_file *fp)
|
|||||||
|
|
||||||
fprintf_unfiltered (fp, "catch signal");
|
fprintf_unfiltered (fp, "catch signal");
|
||||||
|
|
||||||
if (c->signals_to_be_caught)
|
if (!c->signals_to_be_caught.empty ())
|
||||||
{
|
{
|
||||||
int i;
|
for (gdb_signal iter : c->signals_to_be_caught)
|
||||||
gdb_signal_type iter;
|
|
||||||
|
|
||||||
for (i = 0;
|
|
||||||
VEC_iterate (gdb_signal_type, c->signals_to_be_caught, i, iter);
|
|
||||||
i++)
|
|
||||||
fprintf_unfiltered (fp, " %s", signal_to_name_or_int (iter));
|
fprintf_unfiltered (fp, " %s", signal_to_name_or_int (iter));
|
||||||
}
|
}
|
||||||
else if (c->catch_all)
|
else if (c->catch_all)
|
||||||
@ -349,14 +308,14 @@ signal_catchpoint_explains_signal (struct breakpoint *b, enum gdb_signal sig)
|
|||||||
|
|
||||||
/* Create a new signal catchpoint. TEMPFLAG is true if this should be
|
/* Create a new signal catchpoint. TEMPFLAG is true if this should be
|
||||||
a temporary catchpoint. FILTER is the list of signals to catch; it
|
a temporary catchpoint. FILTER is the list of signals to catch; it
|
||||||
can be NULL, meaning all signals. CATCH_ALL is a flag indicating
|
can be empty, meaning all signals. CATCH_ALL is a flag indicating
|
||||||
whether signals used internally by gdb should be caught; it is only
|
whether signals used internally by gdb should be caught; it is only
|
||||||
valid if FILTER is NULL. If FILTER is NULL and CATCH_ALL is zero,
|
valid if FILTER is NULL. If FILTER is empty and CATCH_ALL is zero,
|
||||||
then internal signals like SIGTRAP are not caught. */
|
then internal signals like SIGTRAP are not caught. */
|
||||||
|
|
||||||
static void
|
static void
|
||||||
create_signal_catchpoint (int tempflag, VEC (gdb_signal_type) *filter,
|
create_signal_catchpoint (int tempflag, std::vector<gdb_signal> &&filter,
|
||||||
int catch_all)
|
bool catch_all)
|
||||||
{
|
{
|
||||||
struct signal_catchpoint *c;
|
struct signal_catchpoint *c;
|
||||||
struct gdbarch *gdbarch = get_current_arch ();
|
struct gdbarch *gdbarch = get_current_arch ();
|
||||||
@ -370,60 +329,53 @@ create_signal_catchpoint (int tempflag, VEC (gdb_signal_type) *filter,
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/* Splits the argument using space as delimiter. Returns an xmalloc'd
|
/* Splits the argument using space as delimiter. Returns a filter
|
||||||
filter list, or NULL if no filtering is required. */
|
list, which is empty if no filtering is required. */
|
||||||
|
|
||||||
static VEC (gdb_signal_type) *
|
static std::vector<gdb_signal>
|
||||||
catch_signal_split_args (char *arg, int *catch_all)
|
catch_signal_split_args (char *arg, bool *catch_all)
|
||||||
{
|
{
|
||||||
VEC (gdb_signal_type) *result = NULL;
|
std::vector<gdb_signal> result;
|
||||||
struct cleanup *cleanup = make_cleanup (VEC_cleanup (gdb_signal_type),
|
bool first = true;
|
||||||
&result);
|
|
||||||
int first = 1;
|
|
||||||
|
|
||||||
while (*arg != '\0')
|
while (*arg != '\0')
|
||||||
{
|
{
|
||||||
int num;
|
int num;
|
||||||
gdb_signal_type signal_number;
|
gdb_signal signal_number;
|
||||||
char *one_arg, *endptr;
|
char *endptr;
|
||||||
struct cleanup *inner_cleanup;
|
|
||||||
|
|
||||||
one_arg = extract_arg (&arg);
|
gdb::unique_xmalloc_ptr<char> one_arg (extract_arg (&arg));
|
||||||
if (one_arg == NULL)
|
if (one_arg == NULL)
|
||||||
break;
|
break;
|
||||||
inner_cleanup = make_cleanup (xfree, one_arg);
|
|
||||||
|
|
||||||
/* Check for the special flag "all". */
|
/* Check for the special flag "all". */
|
||||||
if (strcmp (one_arg, "all") == 0)
|
if (strcmp (one_arg.get (), "all") == 0)
|
||||||
{
|
{
|
||||||
arg = skip_spaces (arg);
|
arg = skip_spaces (arg);
|
||||||
if (*arg != '\0' || !first)
|
if (*arg != '\0' || !first)
|
||||||
error (_("'all' cannot be caught with other signals"));
|
error (_("'all' cannot be caught with other signals"));
|
||||||
*catch_all = 1;
|
*catch_all = true;
|
||||||
gdb_assert (result == NULL);
|
gdb_assert (result.empty ());
|
||||||
do_cleanups (inner_cleanup);
|
return result;
|
||||||
discard_cleanups (cleanup);
|
|
||||||
return NULL;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
first = 0;
|
first = false;
|
||||||
|
|
||||||
/* Check if the user provided a signal name or a number. */
|
/* Check if the user provided a signal name or a number. */
|
||||||
num = (int) strtol (one_arg, &endptr, 0);
|
num = (int) strtol (one_arg.get (), &endptr, 0);
|
||||||
if (*endptr == '\0')
|
if (*endptr == '\0')
|
||||||
signal_number = gdb_signal_from_command (num);
|
signal_number = gdb_signal_from_command (num);
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
signal_number = gdb_signal_from_name (one_arg);
|
signal_number = gdb_signal_from_name (one_arg.get ());
|
||||||
if (signal_number == GDB_SIGNAL_UNKNOWN)
|
if (signal_number == GDB_SIGNAL_UNKNOWN)
|
||||||
error (_("Unknown signal name '%s'."), one_arg);
|
error (_("Unknown signal name '%s'."), one_arg.get ());
|
||||||
}
|
}
|
||||||
|
|
||||||
VEC_safe_push (gdb_signal_type, result, signal_number);
|
result.push_back (signal_number);
|
||||||
do_cleanups (inner_cleanup);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
discard_cleanups (cleanup);
|
result.shrink_to_fit ();
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -433,8 +385,9 @@ static void
|
|||||||
catch_signal_command (char *arg, int from_tty,
|
catch_signal_command (char *arg, int from_tty,
|
||||||
struct cmd_list_element *command)
|
struct cmd_list_element *command)
|
||||||
{
|
{
|
||||||
int tempflag, catch_all = 0;
|
int tempflag;
|
||||||
VEC (gdb_signal_type) *filter;
|
bool catch_all = false;
|
||||||
|
std::vector<gdb_signal> filter;
|
||||||
|
|
||||||
tempflag = get_cmd_context (command) == CATCH_TEMPORARY;
|
tempflag = get_cmd_context (command) == CATCH_TEMPORARY;
|
||||||
|
|
||||||
@ -448,10 +401,8 @@ catch_signal_command (char *arg, int from_tty,
|
|||||||
|
|
||||||
if (arg != NULL)
|
if (arg != NULL)
|
||||||
filter = catch_signal_split_args (arg, &catch_all);
|
filter = catch_signal_split_args (arg, &catch_all);
|
||||||
else
|
|
||||||
filter = NULL;
|
|
||||||
|
|
||||||
create_signal_catchpoint (tempflag, filter, catch_all);
|
create_signal_catchpoint (tempflag, std::move (filter), catch_all);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
Loading…
Reference in New Issue
Block a user