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