From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 25548 invoked by alias); 27 Aug 2012 09:46:35 -0000 Received: (qmail 25366 invoked by uid 22791); 27 Aug 2012 09:46:34 -0000 X-SWARE-Spam-Status: No, hits=-4.4 required=5.0 tests=AWL,BAYES_00,KHOP_RCVD_UNTRUST,KHOP_THREADED,RCVD_IN_HOSTKARMA_W,RCVD_IN_HOSTKARMA_WL,TW_RG X-Spam-Check-By: sourceware.org Received: from relay1.mentorg.com (HELO relay1.mentorg.com) (192.94.38.131) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Mon, 27 Aug 2012 09:46:13 +0000 Received: from svr-orw-fem-01.mgc.mentorg.com ([147.34.98.93]) by relay1.mentorg.com with esmtp id 1T5vtc-0006Hs-RM from Yao_Qi@mentor.com for gdb-patches@sourceware.org; Mon, 27 Aug 2012 02:46:12 -0700 Received: from SVR-ORW-FEM-02.mgc.mentorg.com ([147.34.96.206]) by svr-orw-fem-01.mgc.mentorg.com over TLS secured channel with Microsoft SMTPSVC(6.0.3790.4675); Mon, 27 Aug 2012 02:46:12 -0700 Received: from qiyao.dyndns.org.dyndns.org (147.34.91.1) by svr-orw-fem-02.mgc.mentorg.com (147.34.96.168) with Microsoft SMTP Server id 14.1.289.1; Mon, 27 Aug 2012 02:46:11 -0700 From: Yao Qi To: Subject: [PATCH 3/3] suppress notification Date: Mon, 27 Aug 2012 09:46:00 -0000 Message-ID: <1346060757-30130-4-git-send-email-yao@codesourcery.com> In-Reply-To: <1346060757-30130-1-git-send-email-yao@codesourcery.com> References: <1346060757-30130-1-git-send-email-yao@codesourcery.com> MIME-Version: 1.0 Content-Type: text/plain X-IsSubscribed: yes Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2012-08/txt/msg00794.txt.bz2 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 * 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) : 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