GDB (API)
|
00001 /* MI Command Set for GDB, the GNU debugger. 00002 Copyright (C) 2000-2013 Free Software Foundation, Inc. 00003 00004 Contributed by Cygnus Solutions (a Red Hat company). 00005 00006 This file is part of GDB. 00007 00008 This program is free software; you can redistribute it and/or modify 00009 it under the terms of the GNU General Public License as published by 00010 the Free Software Foundation; either version 3 of the License, or 00011 (at your option) any later version. 00012 00013 This program is distributed in the hope that it will be useful, 00014 but WITHOUT ANY WARRANTY; without even the implied warranty of 00015 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00016 GNU General Public License for more details. 00017 00018 You should have received a copy of the GNU General Public License 00019 along with this program. If not, see <http://www.gnu.org/licenses/>. */ 00020 00021 #include "defs.h" 00022 #include "top.h" 00023 #include "mi-cmds.h" 00024 #include "gdb_string.h" 00025 #include "mi-main.h" 00026 00027 extern void _initialize_mi_cmds (void); 00028 00029 struct mi_cmd; 00030 static struct mi_cmd **lookup_table (const char *command); 00031 static void build_table (struct mi_cmd *commands); 00032 00033 static struct mi_cmd mi_cmds[] = 00034 { 00035 /* Define a MI command of NAME, and its corresponding CLI command is 00036 CLI_NAME. */ 00037 #define DEF_MI_CMD_CLI_1(NAME, CLI_NAME, ARGS_P, CALLED) \ 00038 { NAME, { CLI_NAME, ARGS_P}, NULL, CALLED } 00039 #define DEF_MI_CMD_CLI(NAME, CLI_NAME, ARGS_P) \ 00040 DEF_MI_CMD_CLI_1(NAME, CLI_NAME, ARGS_P, NULL) 00041 00042 /* Define a MI command of NAME, and implemented by function MI_FUNC. */ 00043 #define DEF_MI_CMD_MI_1(NAME, MI_FUNC, CALLED) \ 00044 { NAME, {NULL, 0}, MI_FUNC, CALLED } 00045 #define DEF_MI_CMD_MI(NAME, MI_FUNC) DEF_MI_CMD_MI_1(NAME, MI_FUNC, NULL) 00046 00047 DEF_MI_CMD_MI ("ada-task-info", mi_cmd_ada_task_info), 00048 DEF_MI_CMD_MI ("add-inferior", mi_cmd_add_inferior), 00049 DEF_MI_CMD_CLI_1 ("break-after", "ignore", 1, 00050 &mi_suppress_notification.breakpoint), 00051 DEF_MI_CMD_CLI_1 ("break-condition","cond", 1, 00052 &mi_suppress_notification.breakpoint), 00053 DEF_MI_CMD_MI_1 ("break-commands", mi_cmd_break_commands, 00054 &mi_suppress_notification.breakpoint), 00055 DEF_MI_CMD_CLI_1 ("break-delete", "delete breakpoint", 1, 00056 &mi_suppress_notification.breakpoint), 00057 DEF_MI_CMD_CLI_1 ("break-disable", "disable breakpoint", 1, 00058 &mi_suppress_notification.breakpoint), 00059 DEF_MI_CMD_CLI_1 ("break-enable", "enable breakpoint", 1, 00060 &mi_suppress_notification.breakpoint), 00061 DEF_MI_CMD_CLI ("break-info", "info break", 1), 00062 DEF_MI_CMD_MI_1 ("break-insert", mi_cmd_break_insert, 00063 &mi_suppress_notification.breakpoint), 00064 DEF_MI_CMD_MI_1 ("dprintf-insert", mi_cmd_dprintf_insert, 00065 &mi_suppress_notification.breakpoint), 00066 DEF_MI_CMD_CLI ("break-list", "info break", 0), 00067 DEF_MI_CMD_MI_1 ("break-passcount", mi_cmd_break_passcount, 00068 &mi_suppress_notification.breakpoint), 00069 DEF_MI_CMD_MI_1 ("break-watch", mi_cmd_break_watch, 00070 &mi_suppress_notification.breakpoint), 00071 DEF_MI_CMD_MI_1 ("catch-assert", mi_cmd_catch_assert, 00072 &mi_suppress_notification.breakpoint), 00073 DEF_MI_CMD_MI_1 ("catch-exception", mi_cmd_catch_exception, 00074 &mi_suppress_notification.breakpoint), 00075 DEF_MI_CMD_MI_1 ("catch-load", mi_cmd_catch_load, 00076 &mi_suppress_notification.breakpoint), 00077 DEF_MI_CMD_MI_1 ("catch-unload", mi_cmd_catch_unload, 00078 &mi_suppress_notification.breakpoint), 00079 DEF_MI_CMD_MI ("data-disassemble", mi_cmd_disassemble), 00080 DEF_MI_CMD_MI ("data-evaluate-expression", mi_cmd_data_evaluate_expression), 00081 DEF_MI_CMD_MI ("data-list-changed-registers", 00082 mi_cmd_data_list_changed_registers), 00083 DEF_MI_CMD_MI ("data-list-register-names", mi_cmd_data_list_register_names), 00084 DEF_MI_CMD_MI ("data-list-register-values", mi_cmd_data_list_register_values), 00085 DEF_MI_CMD_MI ("data-read-memory", mi_cmd_data_read_memory), 00086 DEF_MI_CMD_MI ("data-read-memory-bytes", mi_cmd_data_read_memory_bytes), 00087 DEF_MI_CMD_MI_1 ("data-write-memory", mi_cmd_data_write_memory, 00088 &mi_suppress_notification.memory), 00089 DEF_MI_CMD_MI_1 ("data-write-memory-bytes", mi_cmd_data_write_memory_bytes, 00090 &mi_suppress_notification.memory), 00091 DEF_MI_CMD_MI ("data-write-register-values", 00092 mi_cmd_data_write_register_values), 00093 DEF_MI_CMD_MI ("enable-timings", mi_cmd_enable_timings), 00094 DEF_MI_CMD_MI ("enable-pretty-printing", mi_cmd_enable_pretty_printing), 00095 DEF_MI_CMD_MI ("enable-frame-filters", mi_cmd_enable_frame_filters), 00096 DEF_MI_CMD_MI ("environment-cd", mi_cmd_env_cd), 00097 DEF_MI_CMD_MI ("environment-directory", mi_cmd_env_dir), 00098 DEF_MI_CMD_MI ("environment-path", mi_cmd_env_path), 00099 DEF_MI_CMD_MI ("environment-pwd", mi_cmd_env_pwd), 00100 DEF_MI_CMD_CLI_1 ("exec-arguments", "set args", 1, 00101 &mi_suppress_notification.cmd_param_changed), 00102 DEF_MI_CMD_MI ("exec-continue", mi_cmd_exec_continue), 00103 DEF_MI_CMD_MI ("exec-finish", mi_cmd_exec_finish), 00104 DEF_MI_CMD_MI ("exec-jump", mi_cmd_exec_jump), 00105 DEF_MI_CMD_MI ("exec-interrupt", mi_cmd_exec_interrupt), 00106 DEF_MI_CMD_MI ("exec-next", mi_cmd_exec_next), 00107 DEF_MI_CMD_MI ("exec-next-instruction", mi_cmd_exec_next_instruction), 00108 DEF_MI_CMD_MI ("exec-return", mi_cmd_exec_return), 00109 DEF_MI_CMD_MI ("exec-run", mi_cmd_exec_run), 00110 DEF_MI_CMD_MI ("exec-step", mi_cmd_exec_step), 00111 DEF_MI_CMD_MI ("exec-step-instruction", mi_cmd_exec_step_instruction), 00112 DEF_MI_CMD_CLI ("exec-until", "until", 1), 00113 DEF_MI_CMD_CLI ("file-exec-and-symbols", "file", 1), 00114 DEF_MI_CMD_CLI ("file-exec-file", "exec-file", 1), 00115 DEF_MI_CMD_MI ("file-list-exec-source-file", 00116 mi_cmd_file_list_exec_source_file), 00117 DEF_MI_CMD_MI ("file-list-exec-source-files", 00118 mi_cmd_file_list_exec_source_files), 00119 DEF_MI_CMD_CLI ("file-symbol-file", "symbol-file", 1), 00120 DEF_MI_CMD_MI ("gdb-exit", mi_cmd_gdb_exit), 00121 DEF_MI_CMD_CLI_1 ("gdb-set", "set", 1, 00122 &mi_suppress_notification.cmd_param_changed), 00123 DEF_MI_CMD_CLI ("gdb-show", "show", 1), 00124 DEF_MI_CMD_CLI ("gdb-version", "show version", 0), 00125 DEF_MI_CMD_MI ("inferior-tty-set", mi_cmd_inferior_tty_set), 00126 DEF_MI_CMD_MI ("inferior-tty-show", mi_cmd_inferior_tty_show), 00127 DEF_MI_CMD_MI ("info-os", mi_cmd_info_os), 00128 DEF_MI_CMD_MI ("interpreter-exec", mi_cmd_interpreter_exec), 00129 DEF_MI_CMD_MI ("list-features", mi_cmd_list_features), 00130 DEF_MI_CMD_MI ("list-target-features", mi_cmd_list_target_features), 00131 DEF_MI_CMD_MI ("list-thread-groups", mi_cmd_list_thread_groups), 00132 DEF_MI_CMD_MI ("remove-inferior", mi_cmd_remove_inferior), 00133 DEF_MI_CMD_MI ("stack-info-depth", mi_cmd_stack_info_depth), 00134 DEF_MI_CMD_MI ("stack-info-frame", mi_cmd_stack_info_frame), 00135 DEF_MI_CMD_MI ("stack-list-arguments", mi_cmd_stack_list_args), 00136 DEF_MI_CMD_MI ("stack-list-frames", mi_cmd_stack_list_frames), 00137 DEF_MI_CMD_MI ("stack-list-locals", mi_cmd_stack_list_locals), 00138 DEF_MI_CMD_MI ("stack-list-variables", mi_cmd_stack_list_variables), 00139 DEF_MI_CMD_MI ("stack-select-frame", mi_cmd_stack_select_frame), 00140 DEF_MI_CMD_MI ("symbol-list-lines", mi_cmd_symbol_list_lines), 00141 DEF_MI_CMD_CLI ("target-attach", "attach", 1), 00142 DEF_MI_CMD_MI ("target-detach", mi_cmd_target_detach), 00143 DEF_MI_CMD_CLI ("target-disconnect", "disconnect", 0), 00144 DEF_MI_CMD_CLI ("target-download", "load", 1), 00145 DEF_MI_CMD_MI ("target-file-delete", mi_cmd_target_file_delete), 00146 DEF_MI_CMD_MI ("target-file-get", mi_cmd_target_file_get), 00147 DEF_MI_CMD_MI ("target-file-put", mi_cmd_target_file_put), 00148 DEF_MI_CMD_CLI ("target-select", "target", 1), 00149 DEF_MI_CMD_MI ("thread-info", mi_cmd_thread_info), 00150 DEF_MI_CMD_MI ("thread-list-ids", mi_cmd_thread_list_ids), 00151 DEF_MI_CMD_MI ("thread-select", mi_cmd_thread_select), 00152 DEF_MI_CMD_MI ("trace-define-variable", mi_cmd_trace_define_variable), 00153 DEF_MI_CMD_MI_1 ("trace-find", mi_cmd_trace_find, 00154 &mi_suppress_notification.traceframe), 00155 DEF_MI_CMD_MI ("trace-frame-collected", 00156 mi_cmd_trace_frame_collected), 00157 DEF_MI_CMD_MI ("trace-list-variables", mi_cmd_trace_list_variables), 00158 DEF_MI_CMD_MI ("trace-save", mi_cmd_trace_save), 00159 DEF_MI_CMD_MI ("trace-start", mi_cmd_trace_start), 00160 DEF_MI_CMD_MI ("trace-status", mi_cmd_trace_status), 00161 DEF_MI_CMD_MI ("trace-stop", mi_cmd_trace_stop), 00162 DEF_MI_CMD_MI ("var-assign", mi_cmd_var_assign), 00163 DEF_MI_CMD_MI ("var-create", mi_cmd_var_create), 00164 DEF_MI_CMD_MI ("var-delete", mi_cmd_var_delete), 00165 DEF_MI_CMD_MI ("var-evaluate-expression", mi_cmd_var_evaluate_expression), 00166 DEF_MI_CMD_MI ("var-info-path-expression", mi_cmd_var_info_path_expression), 00167 DEF_MI_CMD_MI ("var-info-expression", mi_cmd_var_info_expression), 00168 DEF_MI_CMD_MI ("var-info-num-children", mi_cmd_var_info_num_children), 00169 DEF_MI_CMD_MI ("var-info-type", mi_cmd_var_info_type), 00170 DEF_MI_CMD_MI ("var-list-children", mi_cmd_var_list_children), 00171 DEF_MI_CMD_MI ("var-set-format", mi_cmd_var_set_format), 00172 DEF_MI_CMD_MI ("var-set-frozen", mi_cmd_var_set_frozen), 00173 DEF_MI_CMD_MI ("var-set-update-range", mi_cmd_var_set_update_range), 00174 DEF_MI_CMD_MI ("var-set-visualizer", mi_cmd_var_set_visualizer), 00175 DEF_MI_CMD_MI ("var-show-attributes", mi_cmd_var_show_attributes), 00176 DEF_MI_CMD_MI ("var-show-format", mi_cmd_var_show_format), 00177 DEF_MI_CMD_MI ("var-update", mi_cmd_var_update), 00178 { NULL, } 00179 }; 00180 00181 /* Pointer to the mi command table (built at run time). */ 00182 00183 static struct mi_cmd **mi_table; 00184 00185 /* A prime large enough to accomodate the entire command table. */ 00186 enum 00187 { 00188 MI_TABLE_SIZE = 227 00189 }; 00190 00191 /* Exported function used to obtain info from the table. */ 00192 struct mi_cmd * 00193 mi_lookup (const char *command) 00194 { 00195 return *lookup_table (command); 00196 } 00197 00198 /* Used for collecting hash hit/miss statistics. */ 00199 00200 struct mi_cmd_stats 00201 { 00202 int hit; 00203 int miss; 00204 int rehash; 00205 }; 00206 struct mi_cmd_stats stats; 00207 00208 /* Look up a command. */ 00209 00210 static struct mi_cmd ** 00211 lookup_table (const char *command) 00212 { 00213 const char *chp; 00214 unsigned int index = 0; 00215 00216 /* Compute our hash. */ 00217 for (chp = command; *chp; chp++) 00218 { 00219 /* We use a somewhat arbitrary formula. */ 00220 index = ((index << 6) + (unsigned int) *chp) % MI_TABLE_SIZE; 00221 } 00222 00223 while (1) 00224 { 00225 struct mi_cmd **entry = &mi_table[index]; 00226 if ((*entry) == 0) 00227 { 00228 /* not found, return pointer to next free. */ 00229 stats.miss++; 00230 return entry; 00231 } 00232 if (strcmp (command, (*entry)->name) == 0) 00233 { 00234 stats.hit++; 00235 return entry; /* found */ 00236 } 00237 index = (index + 1) % MI_TABLE_SIZE; 00238 stats.rehash++; 00239 } 00240 } 00241 00242 static void 00243 build_table (struct mi_cmd *commands) 00244 { 00245 int nr_rehash = 0; 00246 int nr_entries = 0; 00247 struct mi_cmd *command; 00248 int sizeof_table = sizeof (struct mi_cmd **) * MI_TABLE_SIZE; 00249 00250 mi_table = xmalloc (sizeof_table); 00251 memset (mi_table, 0, sizeof_table); 00252 for (command = commands; command->name != 0; command++) 00253 { 00254 struct mi_cmd **entry = lookup_table (command->name); 00255 00256 if (*entry) 00257 internal_error (__FILE__, __LINE__, 00258 _("command `%s' appears to be duplicated"), 00259 command->name); 00260 *entry = command; 00261 /* FIXME lose these prints */ 00262 if (0) 00263 { 00264 fprintf_unfiltered (gdb_stdlog, "%-30s %2d\n", 00265 command->name, stats.rehash - nr_rehash); 00266 } 00267 nr_entries++; 00268 nr_rehash = stats.rehash; 00269 } 00270 if (0) 00271 { 00272 fprintf_filtered (gdb_stdlog, "Average %3.1f\n", 00273 (double) nr_rehash / (double) nr_entries); 00274 } 00275 } 00276 00277 void 00278 _initialize_mi_cmds (void) 00279 { 00280 build_table (mi_cmds); 00281 memset (&stats, 0, sizeof (stats)); 00282 }