From: Yao Qi <yao@codesourcery.com>
To: <gdb-patches@sourceware.org>
Subject: [PATCH 3/3] suppress notification
Date: Mon, 27 Aug 2012 09:46:00 -0000 [thread overview]
Message-ID: <1346060757-30130-4-git-send-email-yao@codesourcery.com> (raw)
In-Reply-To: <1346060757-30130-1-git-send-email-yao@codesourcery.com>
Hi,
This patch is to change the existing 'suppress mechanism' to avoid
adding endless command name comparisons to suppress corresponding MI
notification. This patch adds a new field 'called' in 'struct
mi_cmd', so that each MI command has a 'suppressed' flag associated to
it, and we don't have to compare command name anymore.
gdb:
2012-08-27 Yao Qi <yao@codesourcery.com>
* mi/mi-cmds.c (mi_cmds): New macro DEF_MI_CMD_CLI_1
and DEF_MI_CMD_CLI_1. Update some commands.
* mi/mi-cmds.h (struct mi_cmd) <called>: New field.
* mi/mi-main.c (mi_cmd_execute): Set '*parse->cmd->called' to 1.
---
gdb/mi/mi-cmds.c | 39 +++++++++++++++++++++++++++------------
gdb/mi/mi-cmds.h | 3 +++
gdb/mi/mi-main.c | 13 +++----------
3 files changed, 33 insertions(+), 22 deletions(-)
diff --git a/gdb/mi/mi-cmds.c b/gdb/mi/mi-cmds.c
index 0f0d74c..008f8cc 100644
--- a/gdb/mi/mi-cmds.c
+++ b/gdb/mi/mi-cmds.c
@@ -23,6 +23,7 @@
#include "top.h"
#include "mi-cmds.h"
#include "gdb_string.h"
+#include "mi-main.h"
extern void _initialize_mi_cmds (void);
@@ -34,25 +35,38 @@ static struct mi_cmd mi_cmds[] =
{
/* Define a MI command of NAME, and its corresponding CLI command is
CLI_NAME. */
+#define DEF_MI_CMD_CLI_1(NAME, CLI_NAME, ARGS_P, CALLED) \
+ { NAME, { CLI_NAME, ARGS_P}, NULL, CALLED }
#define DEF_MI_CMD_CLI(NAME, CLI_NAME, ARGS_P) \
- { NAME, { CLI_NAME, ARGS_P}, NULL}
+ DEF_MI_CMD_CLI_1(NAME, CLI_NAME, ARGS_P, NULL)
/* Define a MI command of NAME, and implemented by function MI_FUNC. */
-#define DEF_MI_CMD_MI(NAME, MI_FUNC) { NAME, {NULL, 0}, MI_FUNC }
+#define DEF_MI_CMD_MI_1(NAME, MI_FUNC, CALLED) \
+ { NAME, {NULL, 0}, MI_FUNC, CALLED }
+#define DEF_MI_CMD_MI(NAME, MI_FUNC) DEF_MI_CMD_MI_1(NAME, MI_FUNC, NULL)
DEF_MI_CMD_MI ("ada-task-info", mi_cmd_ada_task_info),
DEF_MI_CMD_MI ("add-inferior", mi_cmd_add_inferior),
- DEF_MI_CMD_CLI ("break-after", "ignore", 1),
- DEF_MI_CMD_CLI ("break-condition","cond", 1),
- DEF_MI_CMD_MI ("break-commands", mi_cmd_break_commands),
- DEF_MI_CMD_CLI ("break-delete", "delete breakpoint", 1),
- DEF_MI_CMD_CLI ("break-disable", "disable breakpoint", 1),
- DEF_MI_CMD_CLI ("break-enable", "enable breakpoint", 1),
+ DEF_MI_CMD_CLI_1 ("break-after", "ignore", 1,
+ &mi_suppress_notification.breakpoint),
+ DEF_MI_CMD_CLI_1 ("break-condition","cond", 1,
+ &mi_suppress_notification.breakpoint),
+ DEF_MI_CMD_MI_1 ("break-commands", mi_cmd_break_commands,
+ &mi_suppress_notification.breakpoint),
+ DEF_MI_CMD_CLI_1 ("break-delete", "delete breakpoint", 1,
+ &mi_suppress_notification.breakpoint),
+ DEF_MI_CMD_CLI_1 ("break-disable", "disable breakpoint", 1,
+ &mi_suppress_notification.breakpoint),
+ DEF_MI_CMD_CLI_1 ("break-enable", "enable breakpoint", 1,
+ &mi_suppress_notification.breakpoint),
DEF_MI_CMD_CLI ("break-info", "info break", 1),
- DEF_MI_CMD_MI ("break-insert", mi_cmd_break_insert),
+ DEF_MI_CMD_MI_1 ("break-insert", mi_cmd_break_insert,
+ &mi_suppress_notification.breakpoint),
DEF_MI_CMD_CLI ("break-list", "info break", 0),
- DEF_MI_CMD_MI ("break-passcount", mi_cmd_break_passcount),
- DEF_MI_CMD_MI ("break-watch", mi_cmd_break_watch),
+ DEF_MI_CMD_MI_1 ("break-passcount", mi_cmd_break_passcount,
+ &mi_suppress_notification.breakpoint),
+ DEF_MI_CMD_MI_1 ("break-watch", mi_cmd_break_watch,
+ &mi_suppress_notification.breakpoint),
DEF_MI_CMD_MI ("data-disassemble", mi_cmd_disassemble),
DEF_MI_CMD_MI ("data-evaluate-expression", mi_cmd_data_evaluate_expression),
DEF_MI_CMD_MI ("data-list-changed-registers",
@@ -91,7 +105,8 @@ static struct mi_cmd mi_cmds[] =
mi_cmd_file_list_exec_source_files),
DEF_MI_CMD_CLI ("file-symbol-file", "symbol-file", 1),
DEF_MI_CMD_MI ("gdb-exit", mi_cmd_gdb_exit),
- DEF_MI_CMD_CLI ("gdb-set", "set", 1),
+ DEF_MI_CMD_CLI_1 ("gdb-set", "set", 1,
+ &mi_suppress_notification.cmd_param_changed),
DEF_MI_CMD_CLI ("gdb-show", "show", 1),
DEF_MI_CMD_CLI ("gdb-version", "show version", 0),
DEF_MI_CMD_MI ("inferior-tty-set", mi_cmd_inferior_tty_set),
diff --git a/gdb/mi/mi-cmds.h b/gdb/mi/mi-cmds.h
index 4d0fc9d..3cfa8ec 100644
--- a/gdb/mi/mi-cmds.h
+++ b/gdb/mi/mi-cmds.h
@@ -138,6 +138,9 @@ struct mi_cmd
struct mi_cli cli;
/* If non-null, the function implementing the MI command. */
mi_cmd_argv_ftype *argv_func;
+ /* If non-null, the pointer to a flag indicates that this function is being
+ called. */
+ int *called;
};
/* Lookup a command in the MI command table. */
diff --git a/gdb/mi/mi-main.c b/gdb/mi/mi-main.c
index 4db3652..554ecda 100644
--- a/gdb/mi/mi-main.c
+++ b/gdb/mi/mi-main.c
@@ -2097,17 +2097,10 @@ mi_cmd_execute (struct mi_parse *parse)
current_context = parse;
- if (strncmp (parse->command, "break-", sizeof ("break-") - 1 ) == 0)
+ if (parse->cmd->called != NULL)
{
- make_cleanup_restore_integer (&mi_suppress_notification.breakpoint);
- mi_suppress_notification.breakpoint = 1;
- }
- else if (strncmp (parse->command, "gdb-set", sizeof ("gdb-set") - 1) == 0)
- {
- int *p = &mi_suppress_notification.cmd_param_changed;
-
- make_cleanup_restore_integer (p);
- mi_suppress_notification.cmd_param_changed = 1;
+ make_cleanup_restore_integer (parse->cmd->called);
+ *parse->cmd->called = 1;
}
if (parse->cmd->argv_func != NULL)
--
1.7.7.6
next prev parent reply other threads:[~2012-08-27 9:46 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-08-27 9:46 [PATCH 0/3] Factor code on suppress MI notification Yao Qi
2012-08-27 9:46 ` [PATCH 1/3] add static to mi_cmds Yao Qi
2012-08-27 9:46 ` Yao Qi [this message]
2012-08-27 20:20 ` [PATCH 3/3] suppress notification Tom Tromey
2012-08-27 21:01 ` Vladimir Prus
2012-08-28 2:06 ` Tom Tromey
2012-08-28 4:50 ` Vladimir Prus
2012-08-28 7:58 ` Yao Qi
2012-08-28 11:57 ` Vladimir Prus
2012-08-28 13:09 ` Yao Qi
2012-08-28 13:40 ` Pedro Alves
2012-08-28 13:50 ` Yao Qi
2012-08-28 14:09 ` Pedro Alves
2012-08-31 8:07 ` Yao Qi
2012-08-31 8:22 ` Vladimir Prus
2012-08-31 8:49 ` [committed]: " Yao Qi
2012-08-27 9:46 ` [PATCH 2/3] new macro DEF_MI_CMD_CLI and DEF_MI_CMD_MI Yao Qi
2012-08-27 20:18 ` Tom Tromey
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1346060757-30130-4-git-send-email-yao@codesourcery.com \
--to=yao@codesourcery.com \
--cc=gdb-patches@sourceware.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox