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