2003-02-09 Andrew Cagney <ac131313@redhat.com>
[deliverable/binutils-gdb.git] / gdb / mi / ChangeLog
1 2003-02-09 Andrew Cagney <ac131313@redhat.com>
2
3 * mi-interp.c (mi_remove_notify_hooks): Convert function
4 definition to ISO C.
5
6 2003-02-06 Andrew Cagney <ac131313@redhat.com>
7
8 * mi-cmd-env.c: Include "gdb_stat.h" instead of <sys/stat.h>.
9
10 2003-02-04 Jim Ingham <jingham@apple.com>
11 Keith Seitz <keiths@redhat.com>
12 Elena Zannoni <ezannoni@redhat.com>
13 Andrew Cagney <ac131313@redhat.com>
14
15 * mi-main.h: New file.
16 * mi-interp.c: New file.
17 * mi-main.c: Include "interps.h".
18 (mi_error_message): Make global.
19 (mi_input): Delete static function, moved to "mi-interp.c".
20 (mi_execute_command, mi_execute_command_wrapper): Ditto.
21 (mi_command_loop, mi1_command_loop, mi2_command_loop): Ditto.
22 (mi_load_progress): Make non-static.
23 (mi_error_last_message): New function.
24 (captured_mi_execute_command): If the interpreter changed, don't
25 print anything.
26 (mi_load_progress): Use current_interp_named_p.
27 (mi_init_ui): Delete function.
28 (_initialize_mi_main): Don't install the mi interpreter, handled
29 by "mi-interp.c".
30 (mi_exec_async_cli_cmd_continuation): Make static.
31 * mi-console.h (mi_console_file_new): Add `quote' parameter.
32 * mi-console.c (struct mi_console_file): Add `quote'.
33 (mi_console_file_new): Add `quote' parameter. Initialize `quote'.
34 (mi_console_raw_packet): Only quote the output when `quote'.
35 * mi-cmds.h (mi_cmd_interpreter_exec): Declare.
36 (mi_error_message, mi_error_last_message): Declare.
37 (mi_execute_command): Declare.
38 * mi-cmds.c: Add `interpreter-exec' command.
39
40 2003-02-04 Andrew Cagney <ac131313@redhat.com>
41
42 From Keith Seitz <keiths@redhat.com>:
43 * gdbmi.texinfo (GDB/MI Miscellaneous Commands): Document the
44 interpreter-exec command.
45
46 2003-02-02 Andrew Cagney <ac131313@redhat.com>
47
48 From 2002-11-10 Jason Molenda (jason-cl@molenda.com):
49 * mi-cmd-var.c (mi_cmd_var_list_children): CHILDREN field is
50 now a list; still a tuple when in mi1.
51 * gdbmi.texinfo: Update var-list-children example.
52
53 2003-01-13 Andrew Cagney <ac131313@redhat.com>
54
55 * mi-cmd-env.c: Update copyright.
56
57 2003-01-13 Elena Zannoni <ezannoni@redhat.com>
58
59 * mi-main.c (mi_cmd_exec_return): Use print_stack_frame instead of
60 show_and_print_stack_frame.
61
62 2003-01-09 Andrew Cagney <ac131313@redhat.com>
63
64 * mi-cmd-env.c: Include "gdb_string.h" instead of <string.h>.
65 Move all includes to after "defs.h".
66
67 2002-12-13 Jeff Johnston <jjohnstn@redhat.com>
68
69 * mi-cmds.c (-environment-directory) Change to use mi_cmd_env_dir,
70 (-environment-cd): Change to use mi_cmd_env_cd,.
71 (-environment-pwd): Change to use mi_cmd_env_pwd.
72 (-environment-path): Change to use mi_cmd_env_path.
73 * mi-cmds.h (mi_cmd_env_cd, mi_cmd_env_dir): New prototypes.
74 (mi_cmd_env_path, mi_cmd_env_pwd): Ditto.
75 * mi-cmd-env.c: New file. Part of fix for PR gdb/741.
76 * gdbmi.texinfo (environment-cd): Update output and example.
77 (environment-pwd): Ditto.
78 (environment-dir): Update output, description, and examples.
79 (environment-path): Ditto.
80
81 2002-11-29 Andrew Cagney <ac131313@redhat.com>
82
83 * mi/mi-cmd-stack.c, mi/mi-main.c: Update to use
84 deprecated_selected_frame.
85
86 2002-11-13 Andrew Cagney <ac131313@redhat.com>
87
88 * mi-main.c (mi_cmd_data_write_register_values): Use
89 deprecated_write_register_bytes instead of write_register_bytes.
90
91 2002-11-11 Jeff Johnston <jjohnstn@redhat.com>
92
93 * gdbmi.texinfo (-var-assign): Add comments about interaction
94 with -var-update and add an example. Part of fix for gdb/702.
95
96 2002-11-08 Jeff Johnston <jjohnstn@redhat.com>
97
98 * mi-main.c (mi_command_loop): Initialize raw_stdout and gdb_stdout
99 only if mi version is <= 1.
100 (mi_init_ui): Initialize raw_stdout and gdb_stdout if mi version
101 is > 1 so startup message is treated as console output. This is
102 part of fix for PR gdb/604.
103
104 2002-11-06 Jeff Johnston <jjohnstn@redhat.com>
105
106 * mi-cmd-var.c (mi_cmd_var_create): Change the function used to
107 parse the frame addr from parse_and_eval_address() to
108 string_to_core_addr(). This is a fix for PR gdb/494.
109
110 2002-10-23 Jeff Johnston <jjohnstn@redhat.com>
111
112 * mi-cmd-var.c: Change all remaining occurrences of ui_out_tuple_begin
113 to make_cleanup_ui_out_tuple_begin_end. Change all remaining
114 occurrences of ui_out_list_begin to make_cleanup_ui_out_list_begin_end.
115 Use do_cleanups instead of ui_out_list_end or ui_out_tuple_end. This
116 is a fix for PR gdb/680.
117 * mi-cmd-stack.c: Ditto.
118 * mi-main.c: Ditto.
119
120 2002-10-22 Keith Seitz <keiths@redhat.com>
121
122 * mi-main.c (mi_cmd_thread_select): Only return MI_CMD_CAUGHT_ERROR
123 when we really did catch an error(). If we got GDB_RC_FAIL, return
124 MI_CMD_ERROR instead.
125
126 2002-10-03 Jeff Johnston <jjohnstn@redhat.com>
127
128 * gdbmi.texinfo: Fix examples that show frames to remove
129 extraneous blank in level field. Part of fix for PR gdb/192.
130
131 2002-10-03 Jeff Johnston <jjohnstn@redhat.com>
132
133 * mi-cmd-var.c (mi_cmd_var_update): Fix for PR gdb/672. For m2,
134 output list begin and end for "changelist" rather than tuple begin/end.
135 (varobj_update_one): For m2, add tuple begin and end for varobj
136 update output.
137
138 2002-10-02 Elena Zannoni <ezannoni@redhat.com>
139
140 * mi-main.c (mi_cmd_exec_return): Don't use
141 return_command_wrapper, use return_command instead.
142 (mi_cmd_exec_interrupt): Don't use
143 interrupt_target_command_wrapper, use interrupt_target_command
144 instead.
145 (return_command_wrapper, interrupt_target_command_wrapper):
146 Delete.
147 Include frame.h.
148
149 2002-10-01 Andrew Cagney <ac131313@redhat.com>
150
151 * mi-main.c (mi2_command_loop): New function.
152 (mi0_command_loop): Delete function.
153 (_initialize_mi_main): Recognize, and default to, "mi2". Do not
154 recognize "mi0".
155 * mi-out.c (mi_table_begin): Remove mi0 code.
156 (mi_table_body, mi_table_end): Ditto.
157 (mi_table_header, mi_open, mi_close): Ditto.
158
159 2002-09-29 Andrew Cagney <ac131313@redhat.com>
160
161 * mi-out.c (mi_version): New function.
162 * mi-out.h (mi_version): Declare.
163
164 2002-09-27 Andrew Cagney <ac131313@redhat.com>
165
166 From 2002-07-12 Mo DeJong <supermo@bayarea.net>
167 * gdbmi.texinfo (var-evaluate-expression): Note that
168 var-list-children must be invoked before child variable
169 values can be evaluated.
170
171 2002-09-26 Elena Zannoni <ezannoni@redhat.com>
172
173 * mi-cmd-disas.c (dump_insns): Add text only output for CLI.
174 (do_mixed_source_and_assembly): Ditto.
175
176 2002-09-11 Keith Seitz <keiths@redhat.com>
177
178 * mi-main.c (mi_cmd_data_list_register_names): Use cleanups
179 for the uiout list. Do the cleanups when returning an error.
180 (mi_cmd_data_list_changed_registers): Ditto.
181 (mi_cmd_data_list_register_values): Use cleanups for the uiout list
182 and tuples. Do the cleanups when returning errors.
183
184 2002-07-29 Andrew Cagney <ac131313@redhat.com>
185
186 * mi-cmd-var.c: Include "gdb_string.h".
187 * mi-cmd-disas.c: Ditto.
188
189 2002-06-17 Keith Seitz <keiths@redhat.com>
190
191 * gdbmi.texinfo: Update command examples with real MI behavior.
192
193 2002-05-20 Keith Seitz <keiths@redhat.com>
194
195 * mi-main.c (captured_mi_execute_command): Add uiout parameter.
196 "data" is now a structure which is used to pass data to/from this
197 function to mi_execute_command.
198 Modify function to comply with requirements from catch_exceptions.
199 Store real return result and command's return result in data.
200 (mi_execute_command): Use catch_exceptions.
201 Use enum to handle actions to be performed instead of overloading
202 catch_errors return result and the mi return result.
203
204 2002-04-14 Andrew Cagney <ac131313@redhat.com>
205
206 * mi-main.c (mi_cmd_exec_return):
207
208 2002-04-09 Andrew Cagney <ac131313@redhat.com>
209
210 * mi-main.c (register_changed_p): Use frame_register_read instead
211 of read_relative_register_raw_bytes.
212 (get_register): Delete out-of-date comment.
213
214 2002-04-07 Elena Zannoni <ezannoni@redhat.com>
215
216 * mi-cmd-disas.c: Run through indent.
217
218 2002-04-07 Elena Zannoni <ezannoni@redhat.com>
219
220 * mi-cmd-disas.c (dump_insns): New function.
221 (do_mixed_source_and_assembly): New function.
222 (do_assembly_only): New function.
223 (do_disassembly): New function.
224 (mi_cmd_disassemble): Rewrite using smaller, more modular
225 functions.
226
227 2002-04-05 Jim Blandy <jimb@redhat.com>
228
229 * mi-cmd-stack.c (list_args_or_locals): Pass new arg to
230 get_frame_block. (See entry in gdb/ChangeLog.)
231
232 2002-04-05 Elena Zannoni <ezannoni@redhat.com>
233
234 * mi-cmd-disas.c (mi_cmd_disassemble): Use TARGET_PRINT_INSN
235 instead of tm_print_insn.
236 Update copyright year.
237
238 2002-04-04 Daniel Jacobowitz <drow@mvista.com>
239
240 * mi-cmd-disas.c (mi_cmd_disassemble): Skip end-of-function
241 markers in the line table.
242
243 2002-03-15 Andrew Cagney <ac131313@redhat.com>
244
245 * mi-main.c (XMALLOC): Delete macro.
246 * mi-out.c (XMALLOC): Ditto.
247 * mi-parse.c (XMALLOC): Ditto.
248 * mi-console.c (XMALLOC): Ditto.
249 * mi-cmd-var.c (XMALLOC): Ditto.
250 * mi-cmd-break.c (XMALLOC): Ditto.
251
252 * mi/mi-cmd-var.c, mi/mi-console.c, mi/mi-out.c: Update copyright
253 * mi/mi-parse.c: Ditto.
254
255 2002-02-24 Andrew Cagney <ac131313@redhat.com>
256
257 From wiz at danbala:
258 * gdbmi.texinfo: Fix grammar and typos.
259 Fix PR gdb/287.
260
261 2002-02-03 Jim Blandy <jimb@redhat.com>
262
263 * mi-cmd-stack.c (list_args_or_locals): Move declaration of
264 print_me inside the loop body, so it gets re-initialized every
265 iteration. The cases for the different symbol kinds leave
266 print_me unchanged if they don't want the symbol printed.
267
268 2002-01-22 Andrew Cagney <ac131313@redhat.com>
269
270 * gdbmi.texinfo: Remove makeinfo 3.12 hacks.
271
272 2002-01-21 Andrew Cagney <ac131313@redhat.com>
273
274 * mi-cmd-stack.c: Remove #else clause of #ifdef UI_OUT.
275 * mi-cmd-break.c: Ditto.
276 * mi-main.c: Ditto.
277
278 2001-12-30 Eli Zaretskii <eliz@is.elta.co.il>
279
280 * gdbmi.texinfo: Fix the application of GFDL in the Copyright notice.
281
282 2001-10-12 Daniel Jacobowitz <drow@mvista.com>
283
284 * mi-cmd-stack.c (list_args_or_locals): Use ALL_BLOCK_SYMBOLS.
285
286 2001-09-18 Andrew Cagney <ac131313@redhat.com>
287
288 * mi-main.c (mi_cmd_thread_select): Pass uiout to
289 gdb_thread_select.
290 (mi_cmd_thread_list_ids): Pass uiout to gdb_list_thread_ids.
291
292 * mi-cmd-break.c (breakpoint_notify): Pass uiout to
293 gdb_breakpoint_query.
294
295 2001-08-17 Keith Seitz <keiths@redhat.com>
296
297 * mi-cmd-var.c (varobj_update_one): Update call to
298 varobj_update to reflect recent api change.
299
300 2001-07-26 Andrew Cagney <ac131313@redhat.com>
301
302 * mi-main.c: Include "gdb.h".
303 * mi-cmd-break.c: Include "gdb.h".
304
305 2001-07-12 Andrew Cagney <ac131313@redhat.com>
306
307 * mi-main.c (mi_execute_command): Flush output after ``(gdb)''
308 prompt. Bug reported by David Whedon.
309 (mi_execute_async_cli_command): Ditto.
310 (mi_exec_async_cli_cmd_continuation): Ditto.
311 (mi_command_loop): Ditto.
312
313 2001-07-10 Mark Kettenis <kettenis@gnu.org>
314
315 * mi-out.c (mi_out_new): Initialize suppress_ouput field of newly
316 created `struct ui_out_data'.
317
318 2001-07-09 Kevin Buettner <kevinb@redhat.com>
319
320 * mi-main.c (register_changed_p, get_register): Use alloca()
321 to allocate space previously allocated via gcc's
322 variable-length array extension.
323 (mi_cmd_data_write_register_values, mi_cmd_data_write_memory):
324 Change type of ``buffer'' to ``void *''. Don't cast return value
325 from xmalloc(). Add a cleanup to free the xmalloc'd buffer.
326
327 2001-07-07 Andrew Cagney <ac131313@redhat.com>
328
329 * mi-main.c (mi_cmd_data_evaluate_expression): Replace value_ptr
330 with `struct value *'.
331
332 2001-07-08 Kevin Buettner <kevinb@redhat.com>
333
334 * mi-out.c (mi_table_header, mi_field_int, mi_field_skip)
335 (mi_field_string) Make function declarators match earlier
336 declarations.
337
338 2001-07-04 Andrew Cagney <ac131313@redhat.com>
339
340 * mi-out.c (mi_ui_out_impl): Initialize is_mi_like_p to one.
341
342 2001-06-27 Andrew Cagney <ac131313@redhat.com>
343
344 * mi-out.c (mi_table_begin): Include nr_cols and nr_rows in mi1
345 table output.
346 * mi-out.c (mi_table_begin): Only suppress output when mi0. Change
347 the header to a list.
348 (mi_table_body): For mi1, close the header list and open a table
349 body list.
350 (mi_table_end): For mi1, close the body list.
351 (mi_table_header): For mi1, output a tuple containing all the
352 header information.
353 (mi_open, mi_close): Reverse logic of mi_version test.
354 * gdbmi.texinfo (GDB/MI Breakpoint Table Commands): Update.
355
356 2001-06-26 Andrew Cagney <ac131313@redhat.com>
357
358 * gdbmi.texinfo (GDB/MI Output Syntax): Delete reference to query
359 packet.
360
361 2001-06-26 Andrew Cagney <ac131313@redhat.com>
362
363 * mi-cmd-stack.c (list_args_or_locals): Output a list of "args" or
364 "locals" entries.
365 * gdbmi.texinfo (stack-list-locals, stack-list-arguments)
366 (exec-interrupt, target-select, thread-select): Update
367 documentation.
368
369 2001-06-26 Andrew Cagney <ac131313@redhat.com>
370
371 * mi-cmd-stack.c (mi_cmd_stack_list_frames): Output a list of
372 "stack" entries.
373 (mi_cmd_stack_list_args): Ditto for "stack-args".
374 * gdbmi.texinfo (stack-list-frames, stack-list-arguments): Update
375 documentation.
376 (GDB/MI Stack Manipulation Commands): Fix section title. Was
377 Stack Manipulation Commands in GDB/MI.
378
379 2001-06-25 Andrew Cagney <ac131313@redhat.com>
380
381 * gdbmi.texinfo: Update output examples that contain stop reason
382 output, change the args=.... to a list.
383 (exec-return): Ditto.
384
385 2001-06-25 Andrew Cagney <ac131313@redhat.com>
386
387 * mi-main.c (mi_cmd_data_read_memory): Output the memory contents
388 - memory and data - as a list.
389 * gdbmi.texinfo (data-read-memory): Update documentation.
390
391 2001-06-25 Andrew Cagney <ac131313@redhat.com>
392
393 * mi-main.c (mi_cmd_data_list_register_values): Output a list of
394 register values.
395 * gdbmi.texinfo (data-list-register-values): Update documentation.
396
397 2001-06-25 Andrew Cagney <ac131313@redhat.com>
398
399 * mi-main.c (mi_cmd_data_list_register_names): Output a list of
400 register names.
401 (mi_cmd_data_list_register_names): Include the pseudo registers.
402 (mi_cmd_data_list_register_names): Don't leave holes in the list,
403 output "" for NULL registers.
404 * gdbmi.texinfo (data-list-register-names): Update documentation.
405
406 2001-06-23 Andrew Cagney <ac131313@redhat.com>
407
408 * mi-main.c (mi_cmd_data_list_changed_registers): Output a list of
409 register numbers.
410 * gdbmi.texinfo (data-list-changed-registers): Update
411 documentation.
412
413 2001-06-23 Andrew Cagney <ac131313@redhat.com>
414
415 * gdbmi.texinfo (data-disassemble): Update documentation of
416 output. Produces a list of instructions and a list of source
417 lines.
418
419 2001-06-22 Andrew Cagney <ac131313@redhat.com>
420
421 * mi-cmd-disas.c (mi_cmd_disassemble): For "-data-disassemble",
422 output a list instead of a tupple.
423
424 2001-06-21 Andrew Cagney <ac131313@redhat.com>
425
426 * mi-out.c (struct ui_out_data): Replace field first_header with
427 suppress_output.
428 (mi_begin, mi_end): Check suppress_header.
429 (mi_field_int, mi_field_skip): Ditto.
430 (mi_field_string, mi_field_fmt): Ditto.
431 (mi_table_begin): When nr_rows is zero, set suppress_header else,
432 output the start of the header.
433 (mi_table_body): Clear suppress header.
434
435 2001-06-21 Andrew Cagney <ac131313@redhat.com>
436
437 * mi-out.c (mi_open): For lists, when mi_version > 0, use ``[''.
438 (mi_close): Ditto for ``]''.
439
440 2001-06-20 Andrew Cagney <ac131313@redhat.com>
441
442 * mi-out.c (mi_table_header): Add parameter ``col_name''.
443
444 2001-06-18 Andrew Cagney <ac131313@redhat.com>
445
446 * mi-out.c: Include "gdb_assert.h".
447 (mi_table_begin): Add parameter ``nr_rows''.
448
449 2001-06-18 Andrew Cagney <ac131313@redhat.com>
450
451 * mi-main.c: Use strncmp as the "mi" test. Allow "mi", "mi0" and
452 "mi1".
453 (mi_command_loop): Add parameter mi_version, pass to mi_out_new.
454 (mi1_command_loop, mi0_command_loop): New functions.
455 (_initialize_mi_main): Recognize "mi", "mi0" and "mi1".
456 * mi-out.c (mi_out_new): Add parameter mi_version.
457 (struct ui_out_data): Add field mi_version.
458 * mi-out.h (mi_out_new): Update.
459
460 2001-06-07 Andrew Cagney <ac131313@redhat.com>
461
462 * gdbmi.texinfo (GDB/MI Output Syntax): Add tuples and lists to
463 syntax.
464 (GDB/MI Draft Changes to Output Syntax): Delete section.
465
466 Mon Jun 11 17:22:25 2001 Andrew Cagney <cagney@b1.cygnus.com>
467
468 * mi-out.c: Fix typo. s/supress/suppress/.
469
470 2001-06-09 Andrew Cagney <ac131313@redhat.com>
471
472 * mi-out.c (mi_table_end, mi_table_begin, mi_begin, mi_end): Move
473 supress_field_separator updates from here.
474 (mi_open, mi_close): To here.
475 (mi_open): Add parameter name. Output a field_separator.
476 (mi_table_begin): Update.
477 (mi_table_header): Update.
478 (mi_begin): Update.
479
480 2001-06-09 Andrew Cagney <ac131313@redhat.com>
481
482 * mi-out.c (mi_table_begin): Make char* parameters constant.
483 (mi_table_header): Ditto.
484 (mi_field_int): Ditto.
485 (mi_field_skip): Ditto.
486 (mi_field_string): Ditto.
487 (mi_field_fmt): Ditto.
488 (mi_text): Ditto.
489 (mi_message): Ditto.
490
491 2001-05-12 Andrew Cagney <ac131313@redhat.com>
492
493 * mi-out.c (mi_close, mi_open): Output ``[]'' when a list.
494
495 Fri May 11 13:55:07 2001 Andrew Cagney <cagney@b1.cygnus.com>
496
497 * mi-cmd-var.c: Replace ui_out_list_begin, ui_out_list_end and
498 make_cleanup_ui_out_list_end with ui_out_tupple_begin,
499 ui_out_tupple_end and make_cleanup_ui_out_tupple_begin_end.
500 * mi-cmd-stack.c: Ditto.
501 * mi-cmd-disas.c: Ditto.
502 * mi-main.c: Ditto.
503
504 2001-05-10 Andrew Cagney <ac131313@redhat.com>
505
506 * mi-out.c (mi_open, mi_close): Replace list_open and list_close.
507 (mi_table_begin): Update.
508 (mi_table_header): Update.
509 (mi_begin): Update.
510 (mi_table_body): Update.
511 (mi_table_end): Update.
512 (mi_end): Update.
513
514 Thu May 10 16:28:13 2001 Andrew Cagney <cagney@b1.cygnus.com>
515
516 * mi-main.c (mi_execute_async_cli_command): Always initialize
517 old_cleanups.
518
519 2001-05-08 Andrew Cagney <ac131313@redhat.com>
520
521 * mi-out.c (mi_begin, mi_end): Replace mi_list_begin and
522 mi_list_end.
523 (mi_ui_out_impl): Update.
524
525 2001-03-28 Andrew Cagney <ac131313@redhat.com>
526
527 * mi-main.c (mi_cmd_data_read_memory): Use xcalloc.
528
529 2001-03-26 Eli Zaretskii <eliz@is.elta.co.il>
530
531 * gdbmi.texinfo: Update copyright. Change Permissions to GFDL.
532
533 2001-03-20 Andrew Cagney <ac131313@redhat.com>
534
535 * mi-cmd-disas.c (mi_cmd_disassemble): Initialize ``file_string''
536 and ``line_num''. Consolidate declaration of argument variables.
537
538 2001-03-19 Andrew Cagney <ac131313@redhat.com>
539
540 * mi-out.h: Remove #ifdef __STDC__.
541
542 2001-03-08 Andrew Cagney <ac131313@redhat.com>
543
544 * mi-main.c (mi_cmd_data_list_register_names): Use NUM_REGS, not
545 ARCH_NUM_REGS.
546 (mi_cmd_data_list_changed_registers): Ditto.
547 (mi_cmd_data_list_register_values): Ditto.
548 (mi_cmd_data_write_register_values): Ditto.
549
550 2001-03-06 Kevin Buettner <kevinb@redhat.com>
551
552 * gdbmi.texinfo, mi-cmd-disas.c, mi-cmd-stack.c, mi-cmd-var.c,
553 mi-cmds.c, mi-cmds.h, mi-console.c, mi-console.h, mi-getopt.c,
554 mi-getopt.h, mi-out.c, mi-out.h, mi-parse.c, mi-parse.h:
555 Update/correct copyright notices.
556
557 Wed Feb 7 19:50:37 2001 Andrew Cagney <cagney@redhat.com>
558
559 * mi-getopt.c: Add __FILE__ and __LINE__ parameter to calls to
560 internal_error.
561 * mi-console.c: Ditto.
562 * mi-cmds.c: Ditto.
563 * mi-cmd-break.c: Ditto.
564
565 2001-01-27 Fernando Nasser <fnasser@redhat.com>
566
567 From Momchil Velikov <velco@fadata.bg>
568 * mi-cmd-disas.c (gdb_dis_asm_read_memory): Add missing memory
569 attributes argument in the call to `xfer_memory'.
570
571 2000-12-14 Kevin Buettner <kevinb@redhat.com>
572
573 * mi-cmd-disas.c, mi-cmd-var.c, mi-console.c, mi-main.c,
574 mi-parse.c: Replace occurrences of free() with xfree().
575
576 Fri Nov 17 16:07:23 2000 Andrew Cagney <cagney@b1.cygnus.com>
577
578 * mi-main.c: Replace asprintf with xasprintf.
579 * mi-cmd-var.c (mi_cmd_var_create): Ditto.
580
581 2000-10-16 Eli Zaretskii <eliz@is.elta.co.il>
582
583 * gdbmi.texinfo (GDB/MI Variable Objects): Dimensions of
584 multitable changed to "@columnfractions .4 .6". Suggested by
585 Dmitry Sivachenko <dima@Chg.RU>.
586
587 2000-08-23 Eli Zaretskii <eliz@is.elta.co.il>
588
589 * gdbmi.texinfo: Change flathead -> @sc{gdb/mi}.
590 Fix typos and markup mistakes (from Dmitry S.
591 Sivachenko <dima@Chg.RU>).
592
593 2000-07-24 Eli Zaretskii <eliz@is.elta.co.il>
594
595 * gdbmi.texinfo: Change GDB -> @value{GDBN}, and
596 (gdb) -> (@value{GDBP}). Fix a few typos and some markup. From
597 Dmitry S. Sivachenko <dima@Chg.RU>.
598
599 Tue May 16 14:13:41 2000 Andrew Cagney <cagney@b1.cygnus.com>
600
601 * mi-main.c (mi_cmd_execute): Use free_current_contents.
602 (free_and_reset): Delete.
603
604 Mon May 15 16:17:56 2000 Andrew Cagney <cagney@b1.cygnus.com>
605
606 * mi-main.c (mi_cmd_data_assign, mi_cmd_data_evaluate_expression),
607 mi-cmd-var.c (mi_cmd_var_create, mi_cmd_var_delete): Delete
608 make_cleanup_func casts. Not needed.
609
610 2000-05-07 Eli Zaretskii <eliz@is.elta.co.il>
611
612 * gdbmi.texinfo: Lots of typos and grammar fixes from Brian
613 Youmans <3diff@flib.gnu.ai.mit.edu>.
614
615 Wed Apr 26 18:35:19 2000 Andrew Cagney <cagney@b1.cygnus.com>
616
617 * gdbmi.texinfo (GDB/MI Output Syntax v2.0): Convert Draft 2.0
618 Output Syntax into a new section. Cross reference.
619 (menu): Fix tipo. GDB/MI Compatibility with CLI.
620
621 2000-04-23 Eli Zaretskii <eliz@is.elta.co.il>
622
623 * gdbmi.texinfo: Lots of changes, to include this document as part
624 of the GDB manual.
625
626 2000-03-13 James Ingham <jingham@leda.cygnus.com>
627
628 * mi-cmd-var.c (mi_cmd_var_create): Add special frame cookie "@"
629 to indicate an "USE_CURRENT_FRAME" variable.
630 (varobj_update_one): Add "in_scope" and "type_changed" to the
631 result.
632
633 2000-03-06 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
634
635 * mi-cmds.h: Export mi_cmd_data_write_register_values.
636
637 * mi-cmds.c (mi_cmds): Implement data-write-register-values with
638 mi_cmd_data_write_register_values.
639
640 * mi-main.c (mi_cmd_data_write_register_values): New
641 function. Write a value into a register.
642
643 2000-03-06 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
644
645 * gdbmi.texinfo: Update data-disassemble documentation.
646
647 2000-03-01 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
648
649 * mi-cmd-disas.c (mi_cmd_disassemble): Use
650 ui_out_field_core_addr() instead of print_address_numeric(), to
651 maintain consistency throughout MI.
652
653 Wed Feb 23 17:09:39 2000 Andrew Cagney <cagney@b1.cygnus.com>
654
655 * mi-cmd-break.c, mi-cmd-disas.c, mi-cmd-stack.c, mi-cmd-var.c,
656 mi-cmds.c, mi-cmds.h, mi-console.c, mi-console.h, mi-getopt.c,
657 mi-getopt.h, mi-main.c, mi-out.c, mi-out.h, mi-parse.c,
658 mi-parse.h: Update copyright information.
659
660 Wed Feb 23 13:31:16 2000 Andrew Cagney <cagney@b1.cygnus.com>
661
662 * mi-cmd-disas.c (gdb_dis_asm_read_memory): Change LEN to unsigned
663 long. Match ../include/dis-asm.h change.
664
665 Wed Feb 23 10:30:55 2000 Andrew Cagney <cagney@b1.cygnus.com>
666
667 * gdbmi.texinfo: Update copyright - FSF. Update version
668 information.
669
670 mi-cmd-break.c, mi-cmd-disas.c, mi-cmd-stack.c, mi-cmd-var.c,
671 mi-cmds.h, mi-main.c, mi-parse.c, mi-parse.h: Re-format using GNU
672 indent.
673
674 2000-02-21 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
675
676 * mi-main.c: Add include of gdbcore.h for write_memory()
677 prototype.
678
679 2000-02-18 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
680
681 * mi-cmd-disas.c (mi_cmd_disassemble): Change syntax of
682 command. Now use options.
683 Instead of printing the symbolic address of instructions via
684 print_address_symbolic(), use build_address_symbolic() and format
685 properly for output.
686 (gdb_do_disassmble): Delete.
687
688 2000-02-18 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
689
690 * mi-cmd-disas.c (mi_cmd_disassemble):
691
692 2000-02-17 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
693
694 * mi-main.c (mi_cmd_data_write_memory): New function. Write a
695 value into target memory.
696
697 * mi-cmds.h (mi_cmd_data_write_memory): Export.
698
699 * mi-cmds.c (mi_cmds): Hook up data-write-memory to
700 mi_cmd_data_write_memory().
701
702 2000-02-17 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
703
704 * mi-main.c (mi_cmd_target_download): Correct error message to
705 report right function name.
706 (mi_cmd_target_select): Add doing exec cleanups at end.
707 (mi_cmd_data_read_memory): Correct typo.
708 (mi_cmd_execute): Do not simply free last_async_command, but reset
709 it to NULL as well.
710 (free_and_reset): New function, free the argument and set it to
711 NULL.
712 (mi_cmd_target_select_continuation): Delete prototype.
713
714 Tue Feb 1 00:17:12 2000 Andrew Cagney <cagney@b1.cygnus.com>
715
716 * mi-cmd-disas.c, mi-cmds.h, mi-console.c, mi-console.h,
717 mi-main.c, mi-out.c, mi-out.h: Update to reflect rename of
718 gdb-file / GDB_FILE to ui-file / ``struct ui_file''.
719
720 Mon Jan 31 18:33:28 2000 Andrew Cagney <cagney@b1.cygnus.com>
721
722 * mi-main.c (mi_command_loop): Delete reference to
723 fputs_unfiltered_hook.
724
725 2000-01-27 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
726
727 * mi-cmds.c (mi_cmds): Update entries for
728 mi_cmd_data_list_register_names,
729 mi_cmd_data_list_changed_registers,
730 mi_cmd_data_list_register_values.
731
732 * mi-cmds.h (mi_cmd_data_list_register_names,
733 mi_cmd_data_list_changed_registers,
734 mi_cmd_data_list_register_values): Update to mi_cmd_argv_ftype.
735
736 * mi-main.c (mi_cmd_data_list_register_names,
737 mi_cmd_data_list_changed_registers,
738 mi_cmd_data_list_register_values): Update to use argc, argv
739 parameters.
740
741 2000-01-27 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
742
743 * mi-main.c (mi_cmd_data_read_memory): Correct the computation of
744 next-row.
745
746 2000-01-27 Fernando Nasser <fnasser@totem.to.cygnus.com>
747
748 * mi-cmd-var.c (mi_cmd_var_create): Test for NULL type.
749 (mi_cmd_var_set_format, mi_cmd_var_show_format,
750 mi_cmd_var_info_num_children, mi_cmd_var_list_children,
751 mi_cmd_var_info_type, mi_cmd_var_info_expression,
752 mi_cmd_var_show_attributes, mi_cmd_var_evaluate_expression,
753 mi_cmd_var_assign, mi_cmd_var_update): Prevent possibility of memory
754 leak on error.
755
756 2000-01-27 Fernando Nasser <fnasser@totem.to.cygnus.com>
757
758 * mi-out.c (mi_field_string): Test for NULL string pointer.
759
760 2000-01-17 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
761
762 * mi-cmd-stack.c (mi_cmd_stack_list_frames): Call
763 print_frmae_info() with the correct arguments.
764
765 * mi-main.c (mi_cmd_exec_return): Call
766 show_and_print_stack_frame() with LOC_AND_ADDRESS, so it does the
767 right thing. Update Copyright.
768
769 2000-01-13 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
770
771 * mi-main.c: Move disassemble commands from here.
772
773 * mi-cmd-disas.c: To here. New file.
774
775 2000-01-13 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
776
777 * mi-cmd-stack.c: Remove include of mi-out.h.
778
779 * mi-main.c (mi_cmd_disassemble): Update function to use argc/argv
780 interface.
781
782 * mi-cmds.h: Ditto.
783
784 * mi-cmds.c: Ditto.
785
786 2000-01-12 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
787
788 * gdbmi.texinfo: Update stack commands descriptions.
789 Add thread commands descriptions and examples.
790
791 * mi-main.c (mi_cmd_thread_list_ids): Fix typo.
792
793 2000-01-12 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
794
795 * mi-main.c (mi_cmd_thread_list_ids): New function, print a list
796 of currently known threads ids, and the total number of threads.
797 (mi_cmd_thread_select): New function. Switch current thread.
798
799 * mi-cmds.c (mi_cmds): Implement thread-list-ids by
800 mi_cmd_thread_list_ids, and thread-select by mi_cmd_thread_select.
801
802 * mi-cmds.h (mi_cmd_thread_select, mi_cmd_thread_list_ids): Export.
803
804 2000-01-11 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
805
806 * mi-main.c: Move stack commands from here.
807
808 * mi-cmd-stack.c: To here. New file.
809
810 2000-01-07 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
811
812 * mi-main.c (list_args_or_locals): Add a new paramter, the frame
813 for which to display args or locals. Don't use selected_frame
814 anymore, use the new parameter instead. Return void instead of
815 mi_cmd_result, let callers do so.
816 (mi_cmd_stack_list_args): Change interface. Now accept low and
817 high frame numbers to display args for a range of frames. Without
818 these two, display args for the whole stack.
819 (mi_cmd_stack_list_locals): Adapt to new interface for
820 list_args_or_locals.
821
822 2000-01-06 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
823
824 * mi-main.c (mi_cmd_stack_info_depth, mi_cmd_stack_list_args,
825 mi_cmd_stack_list_frames, mi_cmd_stack_list_locals,
826 mi_cmd_stack_select_frame): Change to use argv type of parameters.
827
828 * mi-cmds.c (mi_cmds): Change stack-info-depth,
829 stack-list-arguments, stack-list-frames, stack-list-locals,
830 stack-select-frame to use argv parameters.
831
832 * mi-cmds.h (mi_cmd_stack_info_depth, mi_cmd_stack_list_args,
833 mi_cmd_stack_list_frames, mi_cmd_stack_list_locals,
834 mi_cmd_stack_select_frame): Update definitions.
835
836 Tue Jan 4 12:38:54 2000 Andrew Cagney <cagney@b1.cygnus.com>
837
838 * mi-main.c (mi_command_loop): Force the MI interface to use seven
839 bit strings.
840 * gdbmi.texinfo: Make it clear that a quoted C string is seven
841 bit.
842
843 Thu Dec 30 14:15:22 1999 Andrew Cagney <cagney@b1.cygnus.com>
844
845 * mi-getopt.c (mi_getopt): Rewrite. Allow long options.
846 * mi-getopt.h (struct mi_opt): Declare.
847 (mi_getopt): Update.
848
849 * mi-main.c (mi_cmd_data_read_memory), mi-cmd-break.c
850 (mi_cmd_break_insert, mi_cmd_break_watch): Update.
851
852 Wed Dec 29 23:38:35 1999 Andrew Cagney <cagney@b1.cygnus.com>
853
854 * mi-cmd-break.c (mi_cmd_break_insert): Add support for -c
855 <condition>, -i <ignore-count> and -p <thread>.
856 (breakpoint_notify): New function.
857 (mi_cmd_break_insert): Wrap GDB call with callback hooks so that
858 MI is notified when ever a breakpoint is created.
859
860 * gdbmi.texinfo: Update.
861
862 Fri Dec 24 11:23:22 1999 Andrew Cagney <cagney@b1.cygnus.com>
863
864 * mi-main.c (gdb_do_disassemble): Strip out more useless #ifdef
865 UI_OUTs.
866
867 1999-12-23 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
868
869 * mi-main.c (gdb_do_disassemble): Fix output. Lines that have no
870 assembly instructions must still be outputted, to keep the source
871 line numbering correct.
872 Remove #ifdef UI_OUT's, they are useless.
873
874 1999-12-17 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
875
876 * mi-main.c (gdb_do_disassemble): Don't print a new list in mixed
877 mode, every time. Just do it when we actually encounter a new
878 source line.
879
880 1999-12-17 Fernando Nasser <fnasser@totem.to.cygnus.com>
881
882 * mi-cmd-var.c (mi_cmd_var_list_children): Add test for C++ pseudo
883 variable objects (private, public, protected) as these do not have
884 a type and the -var-list-children operation was dumping core.
885
886 Fri Dec 17 20:23:33 1999 Andrew Cagney <cagney@b1.cygnus.com>
887
888 * gdbmi.texinfo: Document recommended syntax for options.
889
890 * mi-main.c (mi_cmd_data_read_memory): Add support for ``-o
891 <offset>''.
892 * gdbmi.texinfo: Document.
893
894 Wed Dec 15 17:43:08 1999 Andrew Cagney <cagney@b1.cygnus.com>
895
896 * mi-getopt.h (mi_getopt): Change optarg to a char pointer. Check
897 optind.
898 * mi-cmd-break.c (mi_cmd_break_insert): Update.
899
900 * mi-main.c (mi_cmd_data_read_memory): Add fields "next-row-addr",
901 "prev-row-addr", "next-page-addr", "prev-page-addr" and a per row
902 "addr".
903 * gdbmi.texinfo: Update.
904
905 Wed Dec 15 01:05:40 1999 Andrew Cagney <cagney@b1.cygnus.com>
906
907 * mi-cmds.h (mi_cmd_result): Add MI_CMD_CAUGHT_ERROR for when the
908 error is caught.
909
910 * mi-main.c (captured_mi_execute_command): When
911 MI_CMD_CAUGHT_ERROR return 0 rethrowing the eror.
912
913 1999-12-13 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
914
915 * mi-cmd-break.c (mi_cmd_break_insert): Remove unused var.
916
917 * mi-cmd-var.c (mi_cmd_var_update): Remove unused variables.
918
919 Mon Dec 13 18:43:36 1999 Andrew Cagney <cagney@b1.cygnus.com>
920
921 * mi-parse.c (mi_parse): Quote the command when printing it.
922 (mi_parse_argv): Fix handling of quoted strings. Was not
923 de-quoting them.
924 (mi_parse_argv): Make static.
925
926 Mon Dec 13 18:30:03 1999 Andrew Cagney <cagney@b1.cygnus.com>
927
928 * mi-cmds.h (mi_cmd_break_insert, mi_cmd_break_watch): Change type
929 to mi_cmd_argv_ftype.
930 * mi-cmds.c (mi_cmds): Update.
931 * mi-cmd-break.c (mi_cmd_break_insert, mi_cmd_break_watch): Change
932 to new style of arguments with argc and argv. Parse arguments
933 using mi_getopt.
934
935 * mi-cmd-break.c (mi_cmd_break_insert): Wrap body in #ifdef UI_OUT
936 to avoid non-ui compile problems.
937
938 Mon Dec 13 15:08:36 1999 Andrew Cagney <cagney@b1.cygnus.com>
939
940 * mi-getopt.h, mi-getopt.c: New files. Similar to getopt but with
941 well defined semantics.
942
943 Mon Dec 13 14:22:21 1999 Andrew Cagney <cagney@b1.cygnus.com>
944
945 * mi-main.c (mi_cmd_break_insert, mi_cmd_break_watch, enum
946 wp_type, enum bp_type): Move from here.
947 * mi-cmd-break.c: To here. New file.
948 (mi_cmd_break_insert, mi_cmd_break_insert, mi_cmd_break_watch):
949 Use error to report problems.
950
951 1999-12-09 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
952
953 * gdbmi.texinfo: Update description of exec-interrupt.
954
955 * mi-main.c (mi_cmd_exec_interrupt): If the program is not
956 executing, don't try to interrupt it, but error out instead. Make
957 sure previous_async_command is not null before duplicating it into
958 last_async_command.
959
960 * gdbmi.texinfo: Add examples for data-evaluate-expression.
961
962 1999-12-08 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
963
964 * mi-cmd-var.c (mi_cmd_var_assign, mi_cmd_var_create,
965 mi_cmd_var_delete, mi_cmd_var_evaluate_expression,
966 mi_cmd_var_info_expression, mi_cmd_var_info_num_children,
967 mi_cmd_var_info_type, mi_cmd_var_list_children,
968 mi_cmd_var_set_format, mi_cmd_var_show_attributes,
969 mi_cmd_var_show_format, mi_cmd_var_update): Change to use new
970 style of arguments with argc and argv.
971 (next_arg): Delete.
972 (which_var): Delete.
973
974 * mi-cmds.c (mi_cmds): Update entries for mi_cmd_var_assign,
975 mi_cmd_var_create, mi_cmd_var_delete,
976 mi_cmd_var_evaluate_expression, mi_cmd_var_info_expression,
977 mi_cmd_var_info_num_children, mi_cmd_var_info_type,
978 mi_cmd_var_list_children, mi_cmd_var_set_format,
979 mi_cmd_var_show_attributes, mi_cmd_var_show_format,
980 mi_cmd_var_update.
981
982 * mi-cmds.h (mi_cmd_var_assign, mi_cmd_var_create,
983 mi_cmd_var_delete, mi_cmd_var_evaluate_expression,
984 mi_cmd_var_info_expression, mi_cmd_var_info_num_children,
985 mi_cmd_var_info_type, mi_cmd_var_list_children,
986 mi_cmd_var_set_format, mi_cmd_var_show_attributes,
987 mi_cmd_var_show_format, mi_cmd_var_update): Update declarations.
988
989 1999-12-08 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
990
991 * gdbmi.texinfo: Comment out -data-assign command. * mi-main.c
992 (mi_cmd_data_assign): Do not use, comment out. * mi-cmds.h
993 (mi_cmd_data_assign): Remove. * mi-cmds.c: Remove -data-assign
994 command from MI interface.
995
996 1999-12-07 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
997
998 * mi-parse.c (mi_parse): Add '\n' at end of error messages, so
999 that prompt comes out on new line.
1000
1001 * gdbmi.texinfo: Update disassembly command output.
1002
1003 1999-12-06 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
1004
1005 * mi-main.c (gdb_do_disassemble): Update output for UI_OUT case.
1006
1007 1999-12-02 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
1008
1009 * gdbmi.texinfo: Update exec-until output, including the reason
1010 for stopping.
1011
1012 Thu Dec 2 17:17:22 1999 Andrew Cagney <cagney@b1.cygnus.com>
1013
1014 * mi-cmds.c: Include <string.h> for memset.
1015
1016 1999-12-01 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
1017
1018 * mi-main.c (mi_cmd_exec_return): ifdef the references to
1019 return_command_wrapper().
1020
1021 1999-12-01 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
1022
1023 * mi-main.c (mi_cmd_gdb_exit, mi_cmd_exec_interrupt,
1024 mi_cmd_target_select, mi_execute_async_cli_command,
1025 mi_exec_async_cli_cmd_continuation, mi_load_progress): Don't print
1026 last_async_command if it is NULL.
1027 (mi_cmd_exec_return):
1028
1029 1999-12-01 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
1030
1031 * mi-main.c (mi_cmd_exec_return): Reimplement using
1032 return_command() instead of mi_execute_async_cli_command().
1033
1034 1999-12-01 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
1035
1036 * mi-cmds.h: Export mi_cmd_data_assign and
1037 mi_cmd_data_evaluate_expression.
1038
1039 * mi-cmds.c (mi_cmds): Hook data-assign to mi_cmd_data_assign and
1040 data-evaluate-expression to mi_cmd_data_evaluate_expression.
1041
1042 * mi-main.c (mi_cmd_data_assign): New function. Implement
1043 data-assign command.
1044 (mi_cmd_data_evaluate_expression): New function. Implement
1045 data-evaluate-expression command.
1046
1047 1999-12-01 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
1048
1049 * gdbmi.texinfo: Fix some texinfo formatting errors.
1050
1051 1999-12-01 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
1052
1053 * gdbmi.texinfo: Update data-list-register-values description.
1054
1055 * mi-cmds.h: Export mi_cmd_data_list_register_values.
1056
1057 * mi-cmds.c (mi_cmds): Hook data-list-register-values to
1058 mi_cmd_data_list_register_values.
1059
1060 * mi-main.c (mi_cmd_data_list_register_values): New
1061 function. Implements the -data-list-register-values command.
1062 (get_register): New function. Output the contents of a given
1063 register.
1064
1065 Wed Dec 1 20:27:22 1999 Andrew Cagney <cagney@b1.cygnus.com>
1066
1067 * mi-main.c (mi_execute_async_cli_command): Append missing "\n"
1068 for synchronous stopped message.
1069
1070 1999-11-30 James Ingham <jingham@leda.cygnus.com>
1071
1072 * gdbmi.texinfo: Fix obvious typo in @end statement.
1073
1074 Wed Dec 1 12:36:27 1999 Andrew Cagney <cagney@b1.cygnus.com>
1075
1076 * mi-cmd-var.c: Include "value.h".
1077 * mi-console.c: Include <string.h>.
1078
1079 Wed Dec 1 00:21:03 1999 Andrew Cagney <cagney@b1.cygnus.com>
1080
1081 * mi-main.c (captured_mi_execute_command): For a CLI command, pass
1082 "%s" to mi_execute_cli_command to stop core dumps.
1083 (captured_mi_execute_command): Echo CLI commands on gdb_stdlog.
1084
1085 Wed Dec 1 00:10:07 1999 Andrew Cagney <cagney@b1.cygnus.com>
1086
1087 * gdbmi.texinfo: Explain NR-BYTES and ADDR.
1088
1089 Tue Nov 30 23:31:57 1999 Andrew Cagney <cagney@b1.cygnus.com>
1090
1091 * mi-cmd-var.c (mi_cmd_var_create, mi_cmd_var_delete,
1092 mi_cmd_var_set_format, mi_cmd_var_show_format,
1093 mi_cmd_var_info_num_children, mi_cmd_var_list_children,
1094 mi_cmd_var_info_type, mi_cmd_var_info_expression,
1095 mi_cmd_var_show_attributes, mi_cmd_var_evaluate_expression,
1096 mi_cmd_var_assign, mi_cmd_var_update, varobj_update_one, next_arg,
1097 which_var): New file. Move varobj commands to here from
1098 mi-main.c.
1099
1100 * mi-console.h, mi-console.c (mi_console_file_new,
1101 mi_console_file_delete, mi_console_file_fputs,
1102 mi_console_raw_packet, mi_console_file_flush): New files. Move
1103 mi_console_file to here from mi-main.c.
1104
1105 Tue Nov 30 19:37:25 1999 Andrew Cagney <cagney@b1.cygnus.com>
1106
1107 * mi-main.c (captured_mi_execute_command): Use fputstr_unfiltered
1108 when printing error messages.
1109 (mi_cmd_execute): Ditto.
1110
1111 1999-11-29 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
1112
1113 * gdbmi.texinfo: Describe -data-list-changed-registers,
1114 -data-list-register-names. Add examples for
1115 -exec-next-instruction, exec-step-instruction, -exec-run,
1116 -exec-until. Format examples for -data-read-memory.
1117 update example for -target-download.
1118
1119 1999-11-29 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
1120
1121 * gdbmi.texinfo: Remove mentioning of inaccurate watchpoint hit
1122 count.
1123
1124 Mon Nov 29 19:28:55 1999 Andrew Cagney <cagney@b1.cygnus.com>
1125
1126 * mi-main.c (mi_execute_async_cli_command): Return ``enum
1127 mi_cmd_cmd_result''. mi_cmd_exec_run, mi_cmd_exec_next,
1128 mi_cmd_exec_step, mi_cmd_exec_step_instruction,
1129 mi_cmd_exec_finish, mi_cmd_exec_until, mi_cmd_exec_return,
1130 mi_cmd_exec_continue): Update call.
1131 (mi_execute_async_cli_command): When target is synchronous, fake
1132 asynchronous behavour (ulgh). Allows tests to be run on built-in
1133 simulator and native targets.
1134
1135 Mon Nov 29 15:15:16 1999 Andrew Cagney <cagney@b1.cygnus.com>
1136
1137 * mi-cmds.h (mi_cmd_gdb_exit), mi-cmds.c (mi_cmds), mi-main.c
1138 (mi_cmd_gdb_exit): Change function signature to mi_cmd_argv_ftype.
1139
1140 1999-11-28 Andew Cagney <cagney@rat-in-a-hat.cygnus.com>
1141
1142 * mi-parse.c: Include <ctype.h> and <string.h>
1143
1144 1999-11-26 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
1145
1146 * gdbmi.texinfo: Added watchpoint command descriptions and
1147 examples.
1148
1149 * mi-main.c (mi_load_progress): Add parameter for total sent so far.
1150 Print it as well.
1151
1152 Fri Nov 26 10:17:49 1999 Andrew Cagney <cagney@b1.cygnus.com>
1153
1154 * gdbmi.texinfo (section Output Syntax): For lists, the <string>
1155 part of a <result> is optional. Clarify syntax.
1156 (appendix Proposed v2.0 Output Syntax): New section. Provide
1157 record of discussion of possible changes to syntax.
1158
1159 Wed Nov 24 19:41:35 1999 Andrew Cagney <cagney@b1.cygnus.com>
1160
1161 * mi-main.c (mi_cmd_data_read_memory): Simplify. Fix coredump
1162 when arguments were bad.
1163 (mi_cmd_execute): Change parameter to ``struct mi_parse''. Handle
1164 case of argv_func as well as args_func.
1165 (captured_mi_execute_command): Update.
1166
1167 * mi-cmds.c (struct mi_cmd): Add field for mi_cmd_argv_ftype.
1168 (mi_cmds): Update mi_cmd_data_read_memory.
1169 (mi_lookup): Return
1170
1171 * mi-cmds.h (mi_cmd_args_ftype): Rename mi_cmd_ftype. Make all
1172 functions of type this type.
1173 (mi_cmd_argv_ftype): Declare.
1174 (mi_cmd_data_read_memory): Change type to mi_cmd_argv_fytpe.
1175 (struct mi_cmd): Move declaration to here from mi-cmds.c.
1176 (mi_lookup): Return a pointer to ``struct mi_cmd''.
1177
1178 Wed Nov 24 15:03:34 1999 Andrew Cagney <cagney@b1.cygnus.com>
1179
1180 * mi-parse.c (mi_parse): Initialize TOKEN when a CLI command.
1181
1182 * gdbmi.texinfo: Allow a <token> before a CLI command.
1183
1184 * mi-parse.h (struct mi_parse): Declare.
1185 (mi_parse): Change to return a ``struct mi_parse''.
1186 (enum mi_command_type): Delete PARSE_ERROR.
1187
1188 * mi-main.c (struct mi_execute_command_context): Delete.
1189 (captured_mi_execute_command): Update
1190 (mi_execute_command): Update. Check for mi_parse returning NULL.
1191
1192 Wed Nov 24 12:57:14 1999 Andrew Cagney <cagney@b1.cygnus.com>
1193
1194 * mi-parse.h: Remove const, from cmd parameter. Causes cascading
1195 warnings.
1196
1197 Wed Nov 24 15:03:34 1999 Andrew Cagney <cagney@b1.cygnus.com>
1198
1199 * mi-parse.c (mi_parse): New function. Move parse code to here.
1200 * mi-main.c (parse): From here. Delete.
1201
1202 Wed Nov 24 12:57:14 1999 Andrew Cagney <cagney@b1.cygnus.com>
1203
1204 * mi-parse.c, mi-parse.h: New files. Implement mi_parse_env.
1205
1206 Wed Nov 24 11:24:05 1999 Andrew Cagney <cagney@b1.cygnus.com>
1207
1208 * mi-out.c (mi_field_string): Make string parameter constant.
1209
1210 1999-11-23 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
1211
1212 * mi-cmds.h (mi_cmd_target_download): Export.
1213
1214 * mi-cmds.c (mi_cmds): Add mi_cmd_target_download.
1215
1216 * mi-main.c: Include <sys/time.h>.
1217 (mi_cmd_target_download): New function, implement the
1218 target-download command.
1219 (mi_load_progress): New function. Called via the
1220 show_load_progress hook. Prints updates every 0.5 secs.
1221 (mi_command_loop): Initialize the show_load_progress hook.
1222
1223 1999-11-22 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
1224
1225 * mi-main.c (mi_cmd_exec_until): New function. Implement until
1226 command.
1227 (mi_cmd_exec_step_instruction): New function. Implement stepi
1228 command.
1229 (mi_cmd_exec_next_instruction): New function. Implement nexti
1230 command.
1231
1232 * mi-cmds.c (mi_cmds): Add mi_cmd_exec_step_instruction,
1233 mi_cmd_exec_next_instruction, mi_cmd_exec_until.
1234
1235 * mi-cmds.h (mi_cmd_exec_step_instruction,
1236 mi_cmd_exec_next_instruction, mi_cmd_exec_until): Export.
1237
1238 Tue Nov 23 00:30:37 1999 Andrew Cagney <cagney@b1.cygnus.com>
1239
1240 * mi/gdbmi.texinfo: Document -data-read-memory.
1241
1242 * mi-main.c (mi_cmd_data_read_memory): Fix off-by-one check of
1243 argc.
1244 (mi_cmd_data_read_memory): Label the output table with "memory".
1245
1246 Thu Nov 18 18:15:53 1999 Andrew Cagney <cagney@b1.cygnus.com>
1247
1248 * mi-main.c (mi_cmd_exec_interrupt, mi_cmd_break_insert,
1249 mi_cmd_break_watch, mi_cmd_disassemble, mi_cmd_execute): Replace
1250 strdup with xstrdup.
1251
1252 Thu Nov 18 20:50:09 1999 Andrew Cagney <cagney@b1.cygnus.com>
1253
1254 * mi-main.c (mi_cmd_data_read_memory): New function. Implement
1255 data-read-memory.
1256
1257 * mi-cmds.h, mi-cmds.c: Add mi_cmd_data_read_memory.
1258 * mi-cmds.c (mi_cmds): Ditto.
1259
1260 1999-11-11 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
1261
1262 * mi-cmds.h (mi_cmd_break_watch): Export.
1263
1264 * mi-cmds.c (mi_cmds): Hook up break-watch to function
1265 mi_cmd_break_watch.
1266
1267 * mi-main.c (wp_type): New enumeration for the possible types of
1268 watchpoints.
1269 (mi_cmd_break_watch): New function, implements the break-watch
1270 command.
1271
1272 1999-11-11 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
1273
1274 * mi-main.c (mi_cmd_break_insert): Handle case in which the command is
1275 just a -break-insert w/o args.
1276
1277 Fri Nov 12 00:01:52 1999 Andrew Cagney <cagney@b1.cygnus.com>
1278
1279 * mi-out.c (mi_field_string): Always quote the string.
1280
1281 1999-11-10 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
1282
1283 * mi-cmds.h(mi_cmd_data_list_changed_registers,
1284 mi_cmd_data_list_register_names): Export.
1285
1286 * mi-cmds.c (mi_cmds): Hook up data-list-changed-registers to
1287 mi_cmd_data_list_changed_registers and data-list-register-names to
1288 mi_cmd_data_list_register_names.
1289
1290 * mi-main.c (mi_cmd_data_list_changed_registers): New function,
1291 implements the data-list-changed-registers command.
1292 (mi_cmd_data_list_register_names): New function, implements the
1293 data-list-register-names command.
1294 (register_changed_p): New function. Decide whether the register
1295 contents have changed.
1296 (setup_architecture_data): New function. Initialize registers
1297 memory.
1298 (_initialize_mi_main): Call setup_architecture_data(), and
1299 register_gdbarch_swap().
1300
1301 Wed Nov 10 18:35:08 1999 Andrew Cagney <cagney@b1.cygnus.com>
1302
1303 * mi-main.c (mi_execute_command): Correctly quote error messages.
1304
1305 Wed Nov 10 11:05:14 1999 Andrew Cagney <cagney@b1.cygnus.com>
1306
1307 * mi/gdbmi.texinfo: Delete <stream-output>. Replaced by
1308 <c-string>.
1309
1310 * mi-main.c (mi_console_raw_packet): Always quote console output.
1311
1312 Tue Nov 9 17:53:05 1999 Andrew Cagney <cagney@b1.cygnus.com>
1313
1314 * mi-main.c (mi_console_file_new), mi-out.c (mi_out_new): Replace
1315 the tui_file with a mem_file. Ya!
1316
1317 * mi-out.c (do_write): New function, wrapper to gdb_file_write.
1318 (mi_out_put): Pass do_write to gdb_file_put.
1319
1320 * mi-main.c (mi_console_file_flush): Rewrite. Use
1321 mi_console_raw_packet to send data to the console.
1322 (mi_console_raw_packet): New function. Correctly
1323 create quoted C string packets.
1324
1325 1999-11-08 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
1326
1327 * mi-cmds.c (mi_cmds): Break-insert is now implemented by
1328 mi_cmd_break_insert.
1329 * mi-cmds.h (mi_cmd_break_insert): Export.
1330 * mi-main.c (bp_type): New enumeration.
1331 (mi_cmd_break_insert): New function. Implements all flavors of
1332 breakpoint insertion.
1333
1334 Mon Nov 8 17:49:17 1999 Andrew Cagney <cagney@b1.cygnus.com>
1335
1336 * mi-main.c (mi_console_file_flush): Replace gdb_file_get_strbuf
1337 with tui_file_get_strbuf.
1338
1339 Fri Nov 5 17:06:07 1999 Andrew Cagney <cagney@b1.cygnus.com>
1340
1341 * mi-main.c (mi_console_file_delete, mi_console_file_fputs,
1342 mi_console_file_flush): Call internal_error instead of error.
1343
1344 Thu Nov 4 19:53:32 1999 Andrew Cagney <cagney@b1.cygnus.com>
1345
1346 * mi-main.c (captured_mi_execute_command): New function.
1347 (mi_execute_command): Rewrite. Replace SET_TOP_LEVEL() with call
1348 to captured_mi_execute_command via catch_errors.
1349
1350 Thu Nov 4 20:33:58 1999 Andrew Cagney <cagney@b1.cygnus.com>
1351
1352 * mi-main.c (clean): Delete.
1353 (mi_command_loop): Delete extern declaration of
1354 mi_execute_command.
1355
1356 1999-10-28 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
1357
1358 * mi-main.c (mi_cmd_stack_select_frame): Conditionalize the body
1359 on UI_OUT, because select_frame_command_wrapper is only defined if
1360 UI_OUT is.
1361 (mi_cmd_exec_interrupt): Conditionalize the body on UI_OUT,
1362 because interrupt_target_command_wrapper is only defined if UI_OUT is.
1363
1364 * mi-cmds.c (mi_cmds): Implement command exec-interrupt by
1365 mi_cmd_exec_interrupt.
1366
1367 * mi-main.c (mi_cmd_exec_interrupt): New function. Implements
1368 exec-interrupt command.
1369 (mi_cmd_execute): If the target is running save execution command
1370 token in previous_async_command. If the command is not 'interrupt'
1371 and the target is running, reject it.
1372 (clean): New function. Free the arg and reset it to NULL.
1373
1374 * mi-cmds.h (mi_cmd_exec_interrupt):Export.
1375
1376 1999-10-28 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
1377
1378 * mi-cmds.c (mi_cmds): Implement command stack-select-frame by
1379 mi_cmd_stack_select_frame.
1380
1381 * mi-main.c (mi_cmd_stack_select_frame): New function. Implements
1382 stack-select-frame command.
1383
1384 * mi-cmds.h (mi_cmd_select_frame):Export.
1385
1386 1999-10-26 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
1387
1388 * mi-cmds.c (mi_cmds): Implement commands stack-list-locals and
1389 stack-list-arguments by mi_cmd_stack_list_locals and
1390 mi_cmd_stack_list_args.
1391
1392 * mi-main.c (mi_cmd_stack_list_locals): New function. Implements
1393 stack-list-locals command.
1394 (mi_cmd_stack_list_args): New function. Implements
1395 stack-list-arguments command.
1396 (list_args_or_locals): New function. Do all the work for the
1397 listing of locals or arguments.
1398
1399 * mi-cmds.h (mi_cmd_stack_list_args,mi_cmd_stack_list_locals) :
1400 Export.
1401
1402 1999-10-25 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
1403
1404 * mi-cmds.c (mi_cmds): Add new command stack-info-depth.
1405
1406 * mi-main.c (mi_cmd_stack_info_depth): New function. Implements
1407 the stack-info-depth command.
1408 * mi-cmds.h (mi_cmd_stack_info_depth): Export.
1409
1410
1411 1999-10-22 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
1412
1413 * mi-main.c (mi_execute_command): Handle MI_CMD_ERROR case
1414 properly, for command that return error code and don't set
1415 mi_error_message.
1416
1417 * mi-cmds.c (mi_cmds): Hook stack-list-frames command to
1418 mi_cmd_stack_list_frames function.
1419 * mi-cmds.h (mi_cmd_stack_list_frames): Export.
1420
1421 * mi-main.c (mi_execute_command): Deal with a return code of
1422 MI_CMD_ERROR from the execution of mi commands.
1423 (mi_error_message): Static string variable, to contain the error
1424 message from mi commands.
1425 (mi_cmd_stack_list_frames): New function. Prints a backtrace.
1426
1427 1999-10-18 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
1428
1429 * mi-main.c (mi_cmd_disassemble): Handle the new command line
1430 parameter that specifies the number of disassembly lines to be
1431 displayed.
1432 (gdb_do_disassemble): Add new parameter. Count the number of lines
1433 that have been displayed, and stop when limit is reached.
1434
1435 Wed Oct 13 18:04:13 1999 Andrew Cagney <cagney@b1.cygnus.com>
1436
1437 * mi-main.c (mi_command_loop): Don't initialize ``flush_hook''.
1438
1439 1999-10-13 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
1440
1441 * mi/gdbmi.texinfo: More reformatting of the grammars.
1442
1443 1999-10-12 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
1444
1445 * mi/gdbmi.texinfo: More TeX formatting.
1446
1447 1999-10-11 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
1448
1449 * mi/gdbmi.texinfo: First pass completed. All commands should have
1450 some comments/info.
1451 Escape '@' output special char.
1452 Reformat for TeX.
1453
1454 1999-10-08 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
1455
1456 * mi/gdbmi.texinfo: Filled in part of file command section, and
1457 stack section.
1458
1459 1999-10-07 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
1460
1461 * mi/gdbmi.texinfo: Filled in some sections about execution
1462 commands.
1463
1464 Tue Oct 5 15:27:28 1999 Andrew Cagney <cagney@b1.cygnus.com>
1465
1466 * mi-cmds.h: Sort table
1467 * mi-cmds.c: Ditto.
1468 (MI_TABLE_SIZE): Increase to 251.
1469
1470 1999-10-04 Fernando Nasser <fnasser@totem.to.cygnus.com>
1471
1472 * mi-main.c (mi_cmd_var_create, mi_cmd_var_delete): Add missing
1473 cleanups.
1474
1475 1999-10-04 Fernando Nasser <fnasser@totem.to.cygnus.com>
1476
1477 * mi-main.c (next_arg): Returns lenght as well.
1478 (which_var, mi_cmd_var_create, mi_cmd_var_delete,
1479 mi_cmd_var_set_format, mi_cmd_var_update): Do not modify the input
1480 string, use allocated storage instead.
1481 (mi_cmd_var_assign): Adjust call to next_arg() to include new
1482 argument.
1483
1484 1999-10-04 Fernando Nasser <fnasser@totem.to.cygnus.com>
1485
1486 * mi-main.c (mi_execute_command): Fix handling of errors.
1487
1488 1999-10-04 Fernando Nasser <fnasser@totem.to.cygnus.com>
1489
1490 * mi-out.c (mi_out_new): Call tui_sfileopen() instead of
1491 deprecated gdb_file_init_astream().
1492 * mi-main.c (mi_console_file_new): Ditto.
1493
1494 Mon Oct 4 15:17:29 1999 Andrew Cagney <cagney@b1.cygnus.com>
1495
1496 * mi-cmds.h: Sort function declarations.
1497 (mi_lookup): Add extern.
1498
1499 * mi-cmds.c (mi_lookup): Delete dead code.
1500 (build_table): Call internal_error instead of error.
1501 (build_table): Send trace output to gdb_stdlog.
1502
1503 1999-10-01 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
1504
1505 * mi-main.c (mi_execute_async_cli_command): Don't do the cleanups
1506 if target_executing is null.
1507
1508 1999-09-28 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
1509
1510 * mi-main.c (async_p): Change var name to event_loop_p.
1511
1512 Mon Sep 27 15:11:00 1999 Andrew Cagney <cagney@b1.cygnus.com>
1513
1514 * mi-main.c (mi_execute_async_cli_command, mi_execute_command):
1515 Replace target_has_async with function target_can_async_p.
1516
1517 Sun Sep 26 00:12:52 1999 Andrew Cagney <cagney@b1.cygnus.com>
1518
1519 * mi-main.c (mi_cmd_target_select_continuation): Delete function.
1520 (mi_cmd_target_select): Simplify. target-connect is guarenteed to
1521 be synchronous.
1522
1523 Sun Sep 26 00:12:52 1999 Andrew Cagney <cagney@b1.cygnus.com>
1524
1525 * mi-cmds.h (mi_cmd_ftype): Replace mi_impl_ftype.
1526 (enum mi_cmd_result): Define.
1527 * mi-cmds.c (struct mi_cmd): Update.
1528 (mi_lookup): Update.
1529 * mi-main.c (mi_cmd_execute): Update.
1530
1531 * mi-main.c (mi_cmd_gdb_exit, mi_cmd_exec_run, mi_cmd_exec_next,
1532 mi_cmd_exec_step, mi_cmd_target_select, mi_cmd_exec_continue,
1533 mi_cmd_exec_return, mi_cmd_exec_finish, mi_cmd_disassemble,
1534 mi_cmd_var_create, mi_cmd_var_delete, mi_cmd_var_set_format,
1535 mi_cmd_var_show_format, mi_cmd_var_info_num_children,
1536 mi_cmd_var_list_children, mi_cmd_var_info_type,
1537 mi_cmd_var_info_expression, mi_cmd_var_show_attributes,
1538 mi_cmd_var_evaluate_expression, mi_cmd_var_update): Update.
1539 Return MI_CMD_DONE.
1540
1541 1999-09-22 Fernando Nasser <fnasser@totem.to.cygnus.com>
1542
1543 * mi-main.c (mi_cmd_var_create): Use paddr() to format address
1544 on trace output.
1545
1546 1999-09-21 Fernando Nasser <fnasser@totem.to.cygnus.com>
1547
1548 * mi-main.c (mi_cmd_var_create): Test for varobjdebug before
1549 printing trace and send it to gdb_stdlog.
1550
1551 Mon Sep 20 13:41:04 1999 Andrew Cagney <cagney@b1.cygnus.com>
1552
1553 * Makefile.in (mi-out.o): Add dependency list.
1554 * mi-out.c: Include "mi-out.h".
1555
1556 1999-09-18 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
1557
1558 * mi-main.c (_initialize_mi_main): Events on stadin are now
1559 handled by stdin_event_handler.
1560
1561 1999-09-17 Fernando Nasser <fnasser@totem.to.cygnus.com>
1562
1563 * mi-cmds.c (mi_cmds): Add var-* commands.
1564
1565 1999-09-17 Fernando Nasser <fnasser@totem.to.cygnus.com>
1566
1567 * mi-main.c (mi_cmd_var_create, mi_cmd_var_delete,
1568 mi_cmd_var_set_format, mi_cmd_var_show_format,
1569 mi_cmd_var_info_num_children, mi_cmd_var_list_children,
1570 mi_cmd_var_info_type, mi_cmd_var_info_expression,
1571 mi_cmd_var_show_attributes, mi_cmd_var_evaluate_expression,
1572 mi_cmd_var_assign, mi_cmd_var_update, varobj_update_one,
1573 which_var, next_arg): New functions. Implement the -var-*
1574 commands.
1575 * mi-cmds.h: Add prototypes for the above.
1576
1577 1999-09-14 Fernando Nasser <fnasser@totem.to.cygnus.com>
1578
1579 * mi-cmds.c (mi_cmds): Add detach command.
1580
1581 1999-09-09 Fernando Nasser <fnasser@totem.to.cygnus.com>
1582
1583 * mi-cmds.c (lookup_table): Fix typo.
1584
1585 1999-09-09 Fernando Nasser <fnasser@totem.to.cygnus.com>
1586
1587 * mi-cmds.c (mi_cmds): Fix typo and missing command.
1588
1589 1999-09-09 Fernando Nasser <fnasser@totem.to.cygnus.com>
1590
1591 * mi-main.c: Properly align function prototypes.
1592 (mi_cmd_target_select): Proper check for NULL value.
1593
1594 1999-09-09 Fernando Nasser <fnasser@totem.to.cygnus.com>
1595
1596 * mi-main.c (mi_execute_async_cli_command): Fix for native targets
1597 that do not have async yet.
1598
1599 1999-09-01 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
1600
1601 * mi-main.c (mi_cmd_disassemble): Remove unused var.
1602 (gdb_do_disassemble): Ditto.
1603
1604 1999-08-30 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
1605
1606 * mi-main.c: Replace all the occurrences of 'asynch' in variable
1607 or function names with 'async' to make it consistent with the rest
1608 of gdb.
1609
1610 Mon Aug 30 18:16:39 1999 Andrew Cagney <cagney@b1.cygnus.com>
1611
1612 * mi-main.c: #include <ctype.h> for isspace().
1613
1614 1999-08-27 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
1615
1616 * mi-main.c (gdb_do_disassemble): This function returns void, not
1617 int.
1618
1619 1999-08-26 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
1620
1621 * mi-main.c (mi_cmd_disassemble): Don't use atoi() on the high
1622 address string, just treat it same as address low.
1623 (gdb_do_disassemble): Parse high_address string before seeing if
1624 it is zero.
1625
1626 1999-08-25 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
1627
1628 * mi-main.c (mi_cmd_disassemble): New function to produce
1629 disassembly output for mi.
1630 (gdb_dis_asm_read_memory): New function. Read the disassembly from
1631 the executable file, instead of target memory.
1632 (compare_lines): New function. Compare order of disassembly lines.
1633 (gdb_do_disassemble): New function. Do the real job of getting the
1634 assembly code out.
1635
1636 * mi-cmds.c (mi_cmds): Do data-disassemble mi command via the
1637 mi_cmd_disassemble function.
1638
1639 * mi-cmds.h: Export new function mi_cmd_disassemble.
1640
1641 Wed Aug 25 15:58:31 1999 Andrew Cagney <cagney@b1.cygnus.com>
1642
1643 * mi-main.c (mi_command_loop): Remove references to ui-hooks.
1644
1645 1999-08-21 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
1646
1647 * mi-main.c (mi_execute_asynch_cli_command): Fix the incorrect
1648 usage of strcat(): allocate enough space for the string.
1649
1650 1999-08-13 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
1651
1652 From Christopher Faylor <cgf@cygnus.com>
1653 * mi-main.c (mi_execute_command): Make sure we flush all the
1654 output after each command.
1655
1656 1999-08-10 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
1657
1658 * mi-main.c (_initialize_mi_main): Remove casting in call to
1659 add_file_handler.
1660
1661 Sun Aug 8 17:20:57 1999 Andrew Cagney <cagney@b1.cygnus.com>
1662
1663 * mi-main.c (mi_cmd_target_select, mi_execute_asynch_cli_command):
1664 Replace call to fatal with call to internal_error.
1665
1666 1999-07-26 Fernando Nasser <fnasser@totem.to.cygnus.com>
1667
1668 * mi-main.c (mi_cmd_execute): Add return code.
1669 (mi_execute_command): Make appropriate changes when calling the
1670 function mentioned above.
1671 (mi_cmd_gdb_exit, mi_cmd_target_select,
1672 mi_cmd_target_select_continuation, mi_execute_command,
1673 mi_exec_asynch_cli_cmd, mi_exec_asynch_cli_cmd_continuation):
1674 Print token, prefix, class and output (if any) in one single group
1675 of statements.
1676 (mi_execute_command, mi_cmd_execute): Fix error prefix.
1677 (mi_cmd_execute): Use exec cleanup for token.
1678 * mi-out.c (mi_out_rewind): New function.
1679 * mi-out.h: Prototype for the above.
1680
1681 1999-07-16 Fernando Nasser <fnasser@totem.to.cygnus.com>
1682
1683 * mi-main.c (mi_cmd_gdb_exit): Use buffer for exit message.
1684 (mi_cmd_execute): Route error messages to correct file.
1685 (mi_execute_asynch_cli_command): Insert line feed after running
1686 message.
1687
1688 1999-07-16 Fernando Nasser <fnasser@totem.to.cygnus.com>
1689
1690 * mi-out.h (mi_out_buffered): Add extern declaration.
1691 * mi-out.c (mi_out_buffered): New function. Insert a string at the
1692 current buffer position.
1693 * mi-main.c (mi_cmd_target_select, mi_execute_command,
1694 mi_cmd_execute, mi_execute_asynch_cli_command): Use the above
1695 function instead of printing to raw_stdout.
1696 (mi_cmd_target_select, mi_cmd_target_select_continuation,
1697 mi_execute_command, mi_cmd_execute, mi_execute_cli_command,
1698 mi_exec_asynch_cli_cmd_continuation): Fix handling of token and
1699 prefix.
1700 (mi_execute_cli_command): Remove parameter no longer needed.
1701
1702 1999-07-15 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
1703
1704 * mi-main.c (mi_cmd_target_select_continuation): Print the numeric
1705 token when we are connected.
1706 (mi_execute_command): Don't print the token now, do it later.
1707 (mi_execute_cli_command): Add a new parameter for the numeric
1708 token. Print the token, the prefix and the class after the
1709 command has executed, not before.
1710 (mi_execute_asynch_cli_command): Don't print an extra blank line.
1711
1712 1999-07-15 Fernando Nasser <fnasser@totem.to.cygnus.com>
1713
1714 * mi-main.c (mi_gdb_exit): Add \n at the end.
1715
1716 1999-07-15 Fernando Nasser <fnasser@totem.to.cygnus.com>
1717
1718 * mi-main.c (mi_cmd_execute): New function. Dispatch a mi operation.
1719 (mi_execute_command): Use the above.
1720
1721 1999-07-15 Fernando Nasser <fnasser@totem.to.cygnus.com>
1722
1723 * mi-main.c: Fix identation.
1724
1725 1999-07-15 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
1726
1727 * mi-main.c: Include target.h and inferior.h.
1728 (mi_cmd_target_select): New function to execute the target-select
1729 mi operation.
1730 (mi_cmd_target_select_continuation): New function. Continuation
1731 for the target-select operation.
1732 (mi_execute_command): In case of an MI command which requires
1733 asynchronous execution, do not try to display the result now. If
1734 the execution has to look synchronous don't display the "(gdb)"
1735 prompt.
1736 (mi_execute_asynch_cli_command): Invoke real asynchronous
1737 commands, set up exec_cleanups, and continuations.
1738 (mi_exec_asynch_cli_cmd_continuation): New function. Continuation
1739 for all the MI execution commands except 'target-select'.
1740 (mi_execute_command): Handle null commands by exiting gdb, instead
1741 of core dumping.
1742
1743 * mi-cmds.c (mi_cmds): Hook up -target-select operation to new mi
1744 function.
1745
1746 * mi-cmds.h (mi_cmd_target_select): Add extern declaration.
1747
1748 Thu Jul 15 10:31:39 1999 Andrew Cagney <cagney@b1.cygnus.com>
1749
1750 * mi-main.c (struct mi_console_file): Add field ``prefix''.
1751 (mi_console_file_new): Add argument prefix. Initialize prefix
1752 field.
1753 (mi_console_file_flush): Use ``prefix'' instead of "~" as the
1754 prefix string.
1755 (mi_command_loop): Update stream output prefixes. gdb_stdout ==
1756 "~", gdb_stderr / gdb_stdlog == "&", gdb_stdtarg == "@".
1757
1758 1999-07-13 Fernando Nasser <fnasser@totem.to.cygnus.com>
1759
1760 * mi-main.c (ui_out_data): New field first_header. Fix output when
1761 no breakpoints are found.
1762 (mi_table_begin, mi_table_body, mi_table_header): Test for
1763 first_header.
1764 (mi_table_end): Test for supress_field_separator.
1765 (mi_message): Remove messages from MI output.
1766
1767 1999-06-30 Fernando Nasser <fnasser@totem.to.cygnus.com>
1768
1769 * mi-cmds.c (mi_cmds[]): Delete gdb-cli operation.
1770 * mi-main.c (parse): Remove ifdefs for cli commands parsing.
1771 (mi-execute-command): Ditto.
1772
1773 Mon Jun 28 13:06:52 1999 Andrew Cagney <cagney@b1.cygnus.com>
1774
1775 * mi-out.h: New file.
1776 (mi_out_new, mi_out_put): Move mi specific delcarations to here.
1777 * ui-out.h: From here.
1778
1779 * mi-main.c: Include "mi-out.h".
1780
1781 1999-06-25 Fernando Nasser <fnasser@totem.to.cygnus.com>
1782
1783 * top.c (print_gdb_version): Add the word HEADLESS when output
1784 follows headless format.
1785 (print_command_lines): Fix typo.
1786
1787 1999-06-25 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
1788
1789 * event-loop.h: Export input_fd.
1790 * mi-main.c (mi_command_loop): Use the event loop if running
1791 asynchronously.
1792 (mi_execute_command_wrapper): New function.
1793 (_initialize_mi-main): Set things up for running asynchronously.
1794
1795 1999-06-18 Fernando Nasser <fnasser@totem.to.cygnus.com>
1796
1797 * mi-cmds.c (mi_lookup): Deleted.
1798 (lookup_table): New function. Replaces old mi_lookup() for local
1799 use.
1800 (mi_lookup): New function. External interface for command table
1801 searchs.
1802 (build_table): New definition.
1803 (mi_cmds[]): Add several command implementations and the gdb-cli
1804 special operation.
1805 (mi_cmd_execute): Deleted.
1806 * mi-cmds.h: Add type definition for command implementation
1807 function pointers, add declaration for new implementation
1808 functions and a declaration for mi_lookup().
1809 * mi-main.c (mi_execute_asynch_cli_command): New
1810 function. Captures code that was repeated for all asynch
1811 operations.
1812 (mi_cmd_exec_*): Use the above new function.
1813 (mi_gdb_cmd_exit): Fix the output, printing something appropriate.
1814 (mi_cmd_exec_finish): New operation implementation function.
1815 (mi_cmd_exec_return): Ditto.
1816 (parse): Prepare to remove cli commands.
1817 (mi_execute_command): Fix the output and change the way mi-cmds is
1818 used.
1819
1820 1999-06-18 Fernando Nasser <fnasser@totem.to.cygnus.com>
1821
1822 * mi-out.c (mi_table_begin): Add missing field separator call.
1823
1824 Thu Jun 17 21:05:40 1999 Fernando Nasser <fnasser@tofu.to.cygnus.com>
1825
1826 * breakpoint.c (breakpoint_1): Remove space in breakpoint table
1827 id.
1828 (mention): Use ui_out for last new line (forgotten).
1829
1830 1999-06-16 Fernando Nasser <fnasser@totem.to.cygnus.com>
1831
1832 * mi-main.c (mi_console_file_flush): Prevent prefix printing when
1833 buffer empty; change prefix to '~'.
1834 (mi_cmd_exec_*): Prefix normal output with '^' instead of
1835 ','; remove unwanted new lines before "stopped".
1836
1837 1999-06-16 Fernando Nasser <fnasser@totem.to.cygnus.com>
1838
1839 * mi-cmds.c (struct mi_cmds): Updated entries for -exec-continue
1840 and exec-next operations.
1841 (mi_cmd_execute): New text for error messages.
1842 * mi-cmds.h: Add declaration for mi_cmd_exec_next and
1843 mi_cmd_exec_continue.
1844 * mi-main.c (mi_cmd_exec_next): New function. Implements exec-next
1845 operation.
1846 (mi_cmd_exec_continue): New function. Implements exec-continue
1847 operation.
1848 (mi_execute_comand): Add missing space to prompt.
1849 (mi_cmd_exec_run): Ditto.
1850 (mi_cmd_exec_step): Ditto.
1851 * mi-out.c (mi_out_new): Add flags argument to ui_out_new call.
1852 (ui_list_end): Reset supress_field_separator flag.
1853
1854 Sat Jun 12 11:49:10 1999 Andrew Cagney <cagney@b1.cygnus.com>
1855
1856 * mi-cmds.h. mi-cmds.c (exec step): Command implemented by
1857 mi_cmd_exec_step instead of cli call.
1858 * mi-main.c (mi_cmd_exec_step): New function.
1859
1860 * mi-cmds.h. mi-cmds.c (exec run): Command implemented by
1861 mi_cmd_exec_run instead of cli call.
1862 * mi-main.c (mi_cmd_exec_run): New function.
1863
1864 * mi-cmds.h. mi-cmds.c (gdb exit): Command implemented by
1865 mi_cmd_gdb_exit instead of quit_force.
1866 * mi-main.c (mi_cmd_gdb_exit): New function.
1867
1868 Sat Jun 12 11:33:23 1999 Andrew Cagney <cagney@b1.cygnus.com>
1869
1870 * mi-main.c (mi_command_loop): Pass mi_input to
1871 simplified_command_loop.
1872 (mi_input): New function. Calls gdb_readline with no prompt.
1873
1874 Sat Jun 12 11:19:02 1999 Andrew Cagney <cagney@b1.cygnus.com>
1875
1876 * mi-main.c (mi_console_file_fputs): Re-implement. Use a buffer
1877 to accumulate output.
1878
1879 * mi-main.c (struct mi_console_file): Add a buffer.
1880 (mi_console_file_new): Create a buffer.
1881 (mi_console_file_flush): New function.
1882
1883 Sat Jun 12 10:59:39 1999 Andrew Cagney <cagney@b1.cygnus.com>
1884
1885 * mi-cmds.h (raw_stdout): Declare. Will be moved later.
1886 * mi-cmds.c (mi_cmd_execute): Send error messages to RAW stdout.
1887 (mi_cmds): Sort by class.
1888
1889 * mi-main.c (raw_stdout): Make global.
1890 * mi-main.c: Remove #ifdef UI_OUT. File assumes UI_OUT is
1891 present.
1892 * mi-main.c: Include "gdb_string.h".
1893 (mi_out_put): Delete declaration.
1894
1895 1999-06-11 Fernando Nasser <fnasser@totem.to.cygnus.com>
1896
1897 * mi-main.c: Add pre-processor test for UI_OUT.
1898 (mi_execute_command): Add pre-processor test for UI_OUT.
1899
1900 Fri Jun 11 23:11:41 1999 Andrew Cagney <cagney@b1.cygnus.com>
1901
1902 * mi-main.c (raw_stdout): New variable.
1903 (mi_execute_command): Write mi-out direct to raw_stdout.
1904 (mi_command_loop): Create raw_stdout. Attach gdb_stdout to the
1905 console.
1906 (mi_console_file_fputs, mi_console_file_delete,
1907 mi_console_file_new): New functions.
1908 (struct mi_console_file): Declare.
1909
1910 Fri Jun 11 18:34:33 1999 Andrew Cagney <cagney@b1.cygnus.com>
1911
1912 * mi-main.c (mi_execute_command): Call mi_out_put to display the
1913 result.
1914 * mi-out.c (mi_out_put): New function.
1915 * ui-out.h (mi_out_put): Add declare. Will move later.
1916 * Makefile.in (mi-cmds.o, mi-main.o): Add dependency on ui-out.h.
1917
1918 * mi-out.c (mi_field_string, mi_field_fmt, mi_message, mi_flush,
1919 out_field_fmt, list_open, list_close): Replace gdb_stdout with
1920 data->buffer.
1921 (field_separator, list_open, list_close): Add uiout parameter.
1922 (mi_table_begin, mi_table_body, mi_table_end, mi_list_begin,
1923 mi_list_end, mi_field_string, mi_field_fmt, out_field_fmt,
1924 out_field_fmt): Update.
1925
1926 * mi-out.c (mi_out_new): Initialize supress_field_separator.
1927 (supress_field_separator): Move into mi-out local data object.
1928 (mi_table_begin, mi_list_begin, field_separator): Update.
1929
1930 Fri Jun 11 16:08:37 1999 Andrew Cagney <cagney@b1.cygnus.com>
1931
1932 * mi-out.c (mi_out_new): New function, replace init_mi_out.
1933 * mi-main.c (mi_command_loop): Call mi_out_new().
1934
1935 * ui-out.h (mi_out_new): Add declaration. Will move later.
1936 (mi_ui_out_impl): Delete.
1937
1938 Wed Jun 9 16:42:16 1999 Andrew Cagney <cagney@b1.cygnus.com>
1939
1940 * mi-main.c: Include "ui-hooks.h".
1941 (mi_init_ui, mi_command_loop): New functions.
1942 (_initialize_mi_main): Install ``mi'' as the interpreter when
1943 selected.
1944
1945 Mon Jun 7 18:43:43 1999 Andrew Cagney <cagney@b1.cygnus.com>
1946
1947 From Fernando Nasser <fnasser@totem.to.cygnus.com>
1948 * mi-cmds.c (build_table): Clean up error message.
1949 * mi-cmds.c (mi_cmd_execute), mi-main.c (mi_execute_command): Only
1950 print debug information when mi_debug_p.
1951 * mi-cmds.h (mi_debug_p), mi-main.c: Global, control debug messages.
1952
1953 Thu Jun 3 00:44:52 1999 Andrew Cagney <cagney@b1.cygnus.com>
1954
1955 From Fernando Nasser <fnasser@totem.to.cygnus.com>:
1956 * mi-cmds.c: Add CLI definitions for "exec-arguments",
1957 "exec-next", "gdb-exit", "break-list", "break-info", "exec-step"
1958 and "stack-list-frames" to mi_cmds.
1959 (struct mi_command): Add ``from_tty'' argument to func.
1960 * mi-cmds.h (quit_force): Declare.
1961
1962 1999-05-31 Fernando Nasser <fnasser@totem.to.cygnus.com>
1963
1964 * mi-out.c (mi_table_end): Remove unwanted "\n".
1965
1966 Thu May 27 14:59:06 1999 Andrew Cagney <cagney@b1.cygnus.com>
1967
1968 * top.c: Include "ui-hooks.h".
1969 (call_interp_loop): Tempoary. Pass mi_execute_command to
1970 simplified_command_loop. Initialize gdb_stdout & gdb_stderr to
1971 stdio gdb_file streams. Force all hooks to null.
1972
1973 * mi-cmds.h, mi-main.c, mi-cmds.c: New files.
1974 * Makefile.in (SFILES): Add mi-main.c, mi-cmds.c
1975 (COMMON_OBS): Add mi-main.o, mi-cmds.o.
1976 (mi_cmds_h): Define.
1977
1978 Wed May 26 12:39:49 1999 Andrew Cagney <cagney@b1.cygnus.com>
1979
1980 * top.c (call_interp_loop): Hack. Add extern declaration for
1981 mi_ui_out_impl.
1982
1983 1999-05-25 Fernando Nasser <fnasser@totem.to.cygnus.com>
1984
1985 * mi-out.c: New table syntax.
1986
1987 Mon May 24 16:16:29 1999 Andrew Cagney <cagney@amy.cygnus.com>
1988
1989 mi-out.c (_initialize_mi_out): Add external declaration.
1990
1991 1999-05-21 Fernando Nasser <fnasser@totem.to.cygnus.com>
1992
1993 * mi-out.c (mi_table_begin): Added missing parameter.
1994
1995 1999-05-21 Fernando Nasser <fnasser@totem.to.cygnus.com>
1996
1997 * mi-out.c: Changed table markers and added table id.
1998
1999 1999-05-21 Fernando Nasser <fnasser@totem.to.cygnus.com>
2000
2001 * mi-out.c: New file. Implements low-level ui-out primitives for
2002 CLI-based interaction.
2003
2004 \f
2005 Local Variables:
2006 mode: change-log
2007 left-margin: 8
2008 fill-column: 74
2009 version-control: never
2010 End:
This page took 0.095409 seconds and 4 git commands to generate.