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