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