]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/ChangeLog-gdbtk
* gdbtk.c (gdb_cmd): NEVER call the busy, update, and idle hooks.
[thirdparty/binutils-gdb.git] / gdb / ChangeLog-gdbtk
1 Tue Apr 7 12:49:45 1998 Keith Seitz <keiths@onions.cygnus.com>
2
3 * gdbtk.c (gdb_cmd): NEVER call the busy, update, and idle hooks.
4
5 Tue Mar 31 15:42:06 1998 Keith Seitz <keiths@onions.cygnus.com>
6
7 * gdbtk.c (gdb_loadfile): Don't use the return result from sprintf, which
8 returns a char * under SunOS4.
9
10 Tue Mar 31 17:18:43 1998 Ian Lance Taylor <ian@cygnus.com>
11
12 * configure.in: Add $(LIBIDETCL) as well as $(LIBIDE) if
13 --enable-ide.
14 * Makefile.in (IDE_CFLAGS_X): Add -I for libidetcl/src.
15 (LIBIDETCL): Define.
16 * configure: Rebuild.
17
18 Sun Mar 29 21:19:46 1998 Keith Seitz <keiths@onions.cygnus.com>
19
20 * gdbtk.c (gdb_get_tracepoint_info): Change formatting of address.
21 (tracepoint_exists): Remove code which confuses assembly traces.
22
23 Sat Mar 28 12:13:23 1998 Keith Seitz <keiths@onions.cygnus.com>
24
25 * gdbtk.c (gdb_cmd): If argc > 2, assume that the busy and idle hooks
26 should not be called.
27
28 Thu Mar 26 22:29:28 1998 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
29
30 * gdbtk.c: (gdb_trace_status) new function.
31 (gdbtk_init) added command "gdb_is_tracing".
32 (tracepoint_notify) added passcount information.
33
34 Thu Mar 26 12:00:35 1998 Martin M. Hunt <hunt@cygnus.com>
35
36 * gdbtk.c (gdbtk_fputs): Insert fencepost.
37 (gdb_loc): Correct pc calculation.
38 (gdb_immediate_command): Return if a load is in progress.
39 (gdb_cmd): Return if a load is in progress.
40 (target_stop_wrapper): New function.
41 (gdb_stop): Call target_stop_wrapper.
42 (x_event): Add fencepost and optimize load cancel check.
43 (gdbtk_start_timer): Set up structs only once.
44 (gdbtk_stop_timer): Just use preset structs to set timer parameters.
45 (gdb_loadfile): If file cannot be loaded, return error message.
46 (gdb_loadfile): Add space before tab so that lines without
47 a '-' can later be changed to have one.
48
49 Wed Mar 25 14:08:51 1998 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
50
51 * gdbtk.c (gdbtk_pre_add_symbol): Use Tcl_merge to form Tcl commands.
52
53 Mon Mar 23 13:41:39 1998 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
54
55 * gdbtk.c (gdb_get_mem): Rewrite to fetch entire contents
56 of the memory window at once.
57
58 Sat Mar 21 19:34:49 1998 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
59
60 Merged changes from Foundry: list follows by author:
61
62 - Tom Tromey <tromey@cygnus.com>
63
64 * Makefile.in (gdbres.o): New target.
65 (WINDRES): New define.
66 * configure: Rebuilt.
67 * configure.in (WINDRES): Define.
68 (CONFIG_OBS): Include gdbres.o on Windows.
69 * gdbtool.ico: New file.
70 * gdb.rc: New file.
71 * gdbtk.c (gdbtk_init): Call ide_create_messagebox_command.
72 (gdbtk_cleanup): Call ide_interface_deregister_all.
73 (gdbtk_init): Pass event handle to cleanup.
74 (TclDebug): Use Tcl_Merge to construct command.
75 (gdbtk_init): Call ide_create_cygwin_path_command.
76
77 - Martin M. Hunt <hunt@cygnus.com>
78
79 * gdbtk.c (gdb_set_bp): Set addr_string for bp.
80 (gdb_get_breakpoint_info): Demangle function
81 names in breakpoint info.
82 Include "demangle.h".
83 (gdb_loc, gdb_listfuncs): Demangle C++
84 function names.
85 (gdb_set_bp): Properly quote filename to fix
86 problems with spaces. Send pc back as a hex string.
87 (gdb_listfuncs): Remove debugging line.
88 Turn off some debugging lines.
89 (breakpoint_notify): Return correct line number.
90 (gdb_get_breakpoint_info): Return correct line number.
91 (gdb_set_bp): New function to provide a better way to
92 set breakpoints.
93 (gdbtk_readline, gdbtk_readline_begin): Memory
94 allocated by tcl needs to be freed by Tcl_Free().
95 (find_file_in_dir): Deleted.
96 (gdb_find_file_command): Call full_lookup_symtab().
97 (gdb_listfuncs): Call full_lookup_symtab().
98 (full_lookup_symtab): New function. Like lookup_symtab
99 except handles multiple files with the same basename,
100 full pathnames, and always sets symtab->fullname.
101 (gdb_loadfile): Call full_lookup_symtab(). Clear
102 realloc'd memory.
103 (gdb_loadfile): Don't tag lines without source.
104 Tag source lines with source_tag.
105 (gdb_find_file_command, find_file_in_dir):
106 Rewrite. Now searches symtabs and psymtabs for a match
107 on the partial or full filename. Returns the full pathname.
108 (gdb_loadfile): Realloc additional memory
109 if someone loads in a file with more than 160,000
110 lines. I don't know if this really works because
111 I don't have enough memory to test it.
112 (gdb_sourcelines): Deleted.
113 (gdb_loadfile): New function. Takes a text widget
114 and loads it with the contents of a file. Marks
115 and tags source lines.
116 (pc_changed): New function.
117 (get_pc_register): Returns the value of
118 the PC to GDB.
119 (gdb_loc): If looking on the stack, return
120 real pc along with calling source line.
121 (gdb_loc): Return "" instead of "N/A" if
122 filename is not found.
123 (gdb_get_breakpoint_info): Same.
124 (get_register): For Natural mode, set format to 0.
125 Minor bugfixes from keiths.
126 (TclDebug): New function for debugging use.
127 (gdb_loc): Return correct PC for frames
128 that are not the innermost frame.
129 (gdb_listfiles): Rewritten to use object
130 API. Now takes an optional dirname which will cause
131 only files in that directory or its subdirectories
132 to be returned. Now returns basenames instead of
133 full pathnames.
134 (gdb_cmd): Set/reset load_in_progress flag.
135 (call_wrapper): Don't pop up dialog for errors in
136 downloads; just abort download.
137 (gdbtk_load_hash): Set return value correctly.
138
139 - Keith Seitz <keiths@onions.cygnus.com>
140
141 * gdbtk.c (gdbtk_init): Define the ui_loop_hook so that it can be
142 called by routines which might block, allowing us to update the GUI.
143 (gdbtk_wait): Move timer calls to annotation hooks.
144 (gdbtk_init): Define the annotation hooks.
145 (gdbtk_annotate_starting): New function for cygwin32 hosts.
146 (gdbtk_annotate_stopped): New function for cygwin32 hosts.
147 (gdbtk_annotate_exited): New function for cygwin32 hosts.
148 (gdbtk_annotate_signalled): New function. for cygwin32 hosts.
149 (gdbtk_init): Use gdbtk_print_frame_info hook.
150 (gdbtk_print_frame_info): New function which sets current_source_symtab
151 based on the given symtab and line info.
152 (gdb_immediate_command): New function which does
153 not buffer any
154 output. (Contrast to gdb_cmd.)
155 (gdb_prompt_command): New function to return gdb's prompt.
156 (find_file_in_dir): New functon which searches source paths
157 for a given filename.
158 (gdb_find_file): New function which returns path to given file -- uses
159 find_file_in_dir.
160 (gdbtk_init): Install "gdb_immediate", "gdb_find_file", and
161 "gdb_prompt"
162 commands into interpreter.
163
164 - Ian Lance Taylor <ian@cygnus.com>
165
166 * gdbtk.c (gdbtk_timer_going): If __CYGWIN32__, new static
167 variable.
168 (gdb_cmd): If __CYGWIN32__, if executing the load command, call
169 gdbtk_start_timer and gdbtk_stop_timer.
170 (call_wrapper): If __CYGWIN32__, if the timer is going, turn it
171 off. Clear load_in_progress.
172 (x_event): If load_in_progress, quit if download_cancel_ok.
173 (gdbtk_start_timer): Set gdbtk_timer_going.
174 (gdbtk_stop_timer): Clear gdbtk_timer_going.
175 (gdbtk_wait): Call x_event.
176 (gdbtk_init): Call ide_create_win_grab_command if
177 __CYGIN32__.
178 (gdb_clear_file): Clear stop_pc.
179
180
181 Tue Feb 10 17:50:37 1998 Keith Seitz <keiths@onions.cygnus.com>
182
183 * gdbtk.c (gdbtk_modify_tracepoint): Define new tracepoint modification hook.
184 (gdbtk_print_frame_info): Define this hook so that current_source_symtab
185 is set properly.
186 (gdb_actions_command): Use free_actions () from tracepoint.c/h.
187
188 Mon Jan 26 11:37:55 1998 Keith Seitz <keiths@onions.cygnus.com>
189
190 * gdbtk.c (gdb_actions_command): Make note of next action
191 before freeing all references to it.
192
193 Sat Jan 24 23:52:08 1998 Martin M. Hunt <hunt@cygnus.com>
194
195 * gdbtk.c: Merge from Foundry branch.
196 (TclDebug): New debugging function.
197 (gdb_loc): For frames, find address of calling function
198 instead of whatever is on the stack (usually the next
199 instruction).
200 (gdb_listfiles): Takes an optional pathname argument and
201 returns an alphabetized list of basenames of files in the
202 path.
203
204 Wed Jan 22 10:37:02 1998 Keith Seitz <keiths@onions.cygnus.com>
205
206 * symfile.c: Define two new hooks for symbol reading:
207 "pre_add_symbol_hook" and "post_add_symbol_hook". These hooks
208 are called before we begin reading symbols, and after we finish.
209 (generic_load): Use new symbol reading hooks and get rid of
210 compiler warning.
211
212 * gdbtk.c (gdbtk_init): Add hooks for pre- and post-symbol reading.
213 (gdbtk_pre_add_symbol): New function: the pre-add-symbol hook.
214 (gdbtk_post_add_symbol): New function: the post-add-symbol hook.
215 (find_file_in_dir): New function. Moved the guts of gdb_find_file_command
216 into here to allow its use by others.
217 (gdb_loc): Use find_file_in_dir to return the real path to the file
218 (or "N/A" if we can't find it).
219
220 * configure.in (TIX_LIB_EXT): Define new variable for those special cases
221 when TCL_SHLIB_SUFFIX is not enough to specify the dependency.
222
223 * configure: Regenerate.
224
225 Fri Jan 23 07:47:06 1998 Fred Fish <fnf@cygnus.com>
226
227 * Makefile.in (uninstall): Remove installed gdbtcl dir, if one
228 was installed.
229
230 Thu Jan 15 12:42:28 1998 Keith Seitz <keiths@onions.cygnus.com>
231
232 * gdbtk.c (gdb_immediate_command): New function which does not buffer any
233 output. (Contrast to gdb_cmd.)
234 (gdbtk_init): Install "gdb_immediate" command into interpreter.
235
236 Wed Jan 14 16:38:44 1998 Keith Seitz <keiths@pizza.cygnus.com>
237
238 * configure.in (--enable-gdbtk): If tcl was built with --enable-shared,
239 use TCL_SHLIB_SUFFIX to specify the suffix of the library file so that
240 we don't expect to see "libfoo.a" instead of "libfoo.{so,sl, etc}".
241
242 * configure: Regenerate.
243
244 Wed Dec 31 16:50:26 1998 Keith Seitz (keiths@onions.cygnus.com)
245
246 * gdbtk.c (gdb_actions_command): extract and save step count
247 from "while-stepping" command
248
249 Tue Dec 16 21:16:42 1997 Ian Lance Taylor <ian@cygnus.com>
250
251 * Makefile.in (LIBGUI): New variable.
252 (GUI_CFLAGS_X): New variable.
253 (IDE_CFLAGS): Add $(GUI_CFLAGS_X).
254 * configure.in: Add $(LIBGUI) to TCL_LIBS and CONFIG_DEPS.
255 * configure: Rebuild.
256
257 Wed Dec 10 13:16:45 1997 Keith Seitz <keiths@onions.cygnus.com>
258
259 * gdbtk.c (gdb_get_tracepoint_info): Use info in struct
260 symtab_and_line (not struct tracepoint) so that we get the
261 real line info for an address. Arrange data more like
262 gdb_get_breakpoint_info.
263 (tracepoint_notify): Use info in struct symtab_and_line again.
264 (gdbtk_init): Add command "gdb_get_tracepoint_list" into
265 interpreter.
266 (gdb_get_tracepoint_list): New function that aids the source
267 window in displaying tracepoints when the file changes.
268
269 Fri Dec 5 10:31:23 1997 Keith Seitz <keiths@pizza.cygnus.com>
270
271 * gdbtk.c (gdbtk_init): Add gdb_find_file into interpreter.
272 (gdb_find_file_command): New function which searches source path
273 to find the real full filename of a file.
274
275 Mon Dec 1 10:19:44 1997 Keith Seitz <keiths@onions.cygnus.com>
276
277 * gdbtk.c: Move include of "guitcl.h" back out of IDE ifdef.
278 (gdbtk_init): Move ide_initialize_paths out of IDE ifdef.
279
280 * configure.in (TCL_LIBS, CONFIG_DEPS): Add IDE libraries for all
281 builds.
282 (CONFIG_OBS): Remove tracepoint.o, which should always be included.
283
284 * configure: regenerate
285
286 * Makefile.in (install-only): ALWAYS install the new gdbtk
287 (REMOTE_OBS): add tracepoint.o
288
289 Thu Nov 27 09:07:18 1997 Michael Meissner <meissner@cygnus.com>
290
291 * configure.in ({TCL_LIBS,CONFIG_DEPS}): Don't add IDE libraries
292 if not --enable-ide.
293 (CONFIG_OBS): Add tracepoint.o to list if --enable-gdbtk.
294 * configure: Regenerate.
295
296 * gdbtk.c (gdb_get_breakpoint_info): Add missing filename
297 argument.
298 (toplevel): Move include of guitcl.h into #ifdef IDE region.
299 (gdbtk_init): Move ide_initialize_paths call into #ifdef IDE
300 section.
301
302 * Makefile.in (gdbtk.o): Update dependencies.
303
304 Wed Nov 26 15:02:43 1997 Keith Seitz <keiths@onions.cygnus.com>
305
306 * gdbtk.c (gdb_loc): symtab_to_filename can return NULL.
307 (breakpoint_notify): Ditto.
308 (gdb_get_breakpoint_info): Ditto.
309
310 Wed Nov 26 11:33:09 1997 Keith Seitz <keiths@onions.cygnus.com>
311
312 Merge in code from Foundry branch:
313
314 * Makefile.in (install-only): install the new gdbtk, not the old
315
316 * gdbtk.c (gdbtk_call_command): also run idle hooks for class_trace
317 commands
318 (gdbtk_init): Add new commands "gdb_get_locals", "gdb_get_args",
319 "gdb_get_function", "gdb_get_line", "gdb_get_file",
320 "gdb_tracepoint_exists", "gdb_get_tracepoint_info", "gdb_actions",
321 and "gdb_prompt".
322 (gdb_get_vars_command): New function.
323 (gdb_get_line_command): New.
324 (gdb_get_file_command): New.
325 (gdb_get_function_command): New.
326 (gdb_get_tracepoint_info): New.
327 (gdbtk_create_tracepoint): New.
328 (gdbtk_delete_tracepoint): New.
329 (tracepoint_notify): New.
330 (tracepoint_exists): New.
331 (gdb_actions_command): New.
332 (gdb_tracepoint_exists_command): New.
333 (gdb_prompt_command): New.
334
335 Thu Nov 13 18:15:54 1997 Ian Lance Taylor <ian@cygnus.com>
336
337 * gdbtk.c: Move include of gdbcore.h to top of file.
338 (close_bfds): New static function if _WIN32.
339 (gdbtk_readline): Call close_bfds.
340 (call_wrapper, tk_command_loop): Likewise.
341 (gdb_clear_file): New static function.
342 (gdbtk_init): Create gdb_clear_file Tcl command.
343
344 Wed Nov 12 14:58:39 1997 Jeff Holcomb <jeffh@cygnus.com>
345
346 * gdbtk.c: gdbtk_load_hash and ui_load_progress_hook return an
347 int result.
348 (gdbtk_load_hash): download hash routine returns an int result.
349
350 Mon Nov 10 15:11:51 1997 Ian Lance Taylor <ian@cygnus.com>
351
352 * gdbtk.c (gdbtk_init): Call ide_create_shell_execute_command if
353 __CYGWIN32__.
354 * configure.in: Add -lshell32 to WIN32LIBS on cygwin32.
355 * configure: Rebuild.
356
357 Sun Nov 9 16:25:34 1997 Tom Tromey <tromey@cygnus.com>
358
359 * gdbtk.c (gdbtk_init): Run ide_create_help_command.
360
361 Tue Oct 28 17:31:47 1997 Martin M. Hunt <hunt@cygnus.com>
362
363 * gdbtk.c (gdbtk_init): Call ide_create_winprint_command.
364
365 Thu Oct 23 15:53:37 1997 Ian Lance Taylor <ian@cygnus.com>
366
367 * configure.in: Add -lgdi32 to WIN32LIBS when linking gdbtk on
368 cygwin32.
369 * configure: Rebuild.
370
371 Wed Oct 22 21:32:54 1997 Martin M. Hunt <hunt@cygnus.com>
372
373 * gdbtk.c (gdbtk_init): Create sizebox command on Windows.
374
375 Thu Oct 9 14:33:21 1997 Ian Lance Taylor <ian@cygnus.com>
376
377 * gdbtk.c (gdbtk_init): Remove assertion argument from call to
378 ide_create_window_register_command.
379
380 Wed Oct 1 11:09:52 1997 Tom Tromey <tromey@cygnus.com>
381
382 * gdbtk.c (gdbtk_init): Pass name of restore interface to
383 ide_create_window_register_command.
384
385 Fri Sep 26 21:08:22 1997 Keith Seitz <keiths@pizza.cygnus.com>
386
387 * gdbtk.c (gdbtk_init): Initialize ui_load_progress_hook.
388
389 Thu Sep 25 03:05:00 1997 Martin M. Hunt <hunt@cygnus.com>
390
391 * gdbtk.c (gdb_load_info): New function. Returns a list
392 of section names and sizes for an executable.
393 (gdbtk_load_hash): Stub function to call tcl function
394 download_hash.
395
396 Tue Sep 23 01:29:00 1997 Martin M. Hunt <hunt@cygnus.com>
397
398 * gdbtk.c (gdb_get_mem): Fix compiler warning.
399
400 Sun Sep 21 00:15:00 1997 Martin M. Hunt <hunt@cygnus.com>
401
402 * gdbtk.c (gdb_get_mem): Fix problem with ASCII dump.
403
404 Tue Sep 16 18:07:17 1997 Martin M. Hunt <hunt@cygnus.com>
405
406 * gdbtk.c (gdb_get_mem): New function. Returns
407 a formatted memory dump with optional ASCII dump.
408
409 Mon Sep 8 12:48:50 1997 Ian Lance Taylor <ian@cygnus.com>
410
411 * gdbtk.c: Include ilutk.h if IDE.
412 (gdb_confirm_quit, gdb_force_quit): New static functions.
413 (gdbtk_init): Add Tcl commands gdb_confirm_quit and
414 gdb_force_quit.
415
416 Mon Sep 8 03:05:33 1997 Martin M. Hunt <hunt@cygnus.com>
417
418 * gdbtk.c (gdb_get_breakpoint_info): Now returns the
419 function a breakpoint is in.
420
421 Fri Sep 5 20:23:58 1997 Ian Lance Taylor <ian@cygnus.com>
422
423 * gdbtk.c (gdbtk_init): Call ide_create_exit_command.
424
425 Wed Sep 3 19:39:15 1997 Ian Lance Taylor <ian@cygnus.com>
426
427 * gdbtk.c: Include guitcl.h.
428 (gdbtk_init): Always call ide_initialize_paths. Set the Tcl
429 variable IDE to 1 when using the IDE. Always try using auto path
430 to find main.tcl.
431 * Makefile.in (IDE_CFLAGS_X): Always include libide.
432 (LIBIDE): New variable.
433 (IDE_X): Omit -lide.
434 (IDE_DEPS): Omit libide.
435 * configure.in: Add LIBIDE to TCL_LIBS and CONFIG_DEPS.
436 * configure: Rebuild.
437
438 Mon Aug 25 02:28:55 1997 Keith Seitz <keiths@pizza.cygnus.com>
439
440 * gdbtk.c: (gdb_target_has_inferior) check if inferior_pid is non-zero
441 before assuming that the inferior is running.
442
443 Mon Aug 25 01:06:48 1997 Ian Lance Taylor <ian@cygnus.com>
444
445 * gdbtk.c (gdbtk_start_timer): Pass third argument to setitimer.
446 (gdbtk_stop_timer): Likewise.
447
448 Mon Aug 25 00:23:08 1997 Keith Seitz <keiths@pizza.cygnus.com>
449
450 * gdbtk.c: (gdbtk_init) create new command "gdb_target_has_execution"
451 (gdb_target_has_execution_command) new function
452
453 Sun Aug 24 20:27:22 1997 Ian Lance Taylor <ian@cygnus.com>
454
455 * gdbtk.c (gdb_loc): If there are no symbols, just bail
456 immediately.
457 (tk_command_loop): Print errors encountered while running
458 gdbtk_tcl_preloop.
459
460 Sun Aug 24 13:44:03 1997 Tom Tromey <tromey@cygnus.com>
461
462 * gdbtk.c (gdbtk_init): Run ide_create_build_command.
463
464 Sat Aug 23 21:53:39 1997 Ian Lance Taylor <ian@cygnus.com>
465
466 * gdbtk.c: If CYGWIN32, include <sys/time.h>.
467 (x_fd): Don't define if WINNT.
468 (gdbtk_start_timer, gdbtk_stop_timer): New static functions if
469 CYGWIN32.
470 (gdbtk_wait): Don't set up signal handling if WINNT. If CYGWIN32,
471 call gdbtk_start_timer and gdbtk_stop_timer.
472 (gdbtk_init): Don't set up signal handling or make x_fd
473 asynchronous if CYGWIN32.
474
475 Fri Aug 22 15:23:15 1997 Ian Lance Taylor <ian@cygnus.com>
476
477 * gdbtk.c (error_string_ptr): New static variable.
478 (gdbtk_fputs): If result_ptr is NULL, and error_string_ptr is not
479 NULL, and we're outputting to stderr, append string to
480 error_string_ptr rather than calling gdbtk_tcl_fputs.
481 (call_wrapper): Set up error_string_ptr. Put both error string
482 and normal string in Tcl result.
483
484 * gdbtk.c (gdbtk_init): Don't call ide_run_server_init until after
485 gdb has initialized.
486
487 Thu Aug 21 19:14:38 1997 Ian Lance Taylor <ian@cygnus.com>
488
489 * gdbtk.c: If _WIN32, include winuser.h.
490 (gdbtk_init): If _WIN32, use MessageBox to display an error
491 evaluating main.tcl.
492
493 Thu Aug 21 00:48:00 1997 Martin M. Hunt <hunt@pern.cygnus.com>
494
495 * gdbtk.c (gdbtk_init): Add call to ide_run_server_init().
496 (gdb_cmd): For the load command, don't buffer the I/O.
497
498 Wed Aug 20 11:41:22 1997 Martin M. Hunt <hunt@cygnus.com>
499
500 * gdbtk.c (gdbtk_query): Chaneg free() call to Tcl_Free().
501
502 Tue Aug 19 17:09:19 1997 Ian Lance Taylor <ian@cygnus.com>
503
504 * Makefile.in (TCL_DEPS, TK_DEPS): New variables.
505 (ITCL_DEPS, TIX_DEPS): New variables.
506 (IDE_DEPS): New variable.
507 (CDEPS): Include @CONFIG_DEPS@.
508 * configure.in: Set and substitute CONFIG_DEPS and TIX_DEPS.
509 * configure: Rebuild.
510
511 Sun Aug 17 00:42:11 1997 Martin M. Hunt <hunt@cygnus.com>
512
513 * gdbtk.c (gdb_listfuncs): New function that returns
514 a list of all the functions in a source file.
515
516 Tue Aug 12 16:35:21 1997 Ian Lance Taylor <ian@cygnus.com>
517
518 * Makefile.in (install-only): Install tclIndex if ENABLE_IDE.
519
520 Mon Aug 11 10:43:04 1997 Tom Tromey <tromey@cygnus.com>
521
522 * gdbtk.c (gdbtk_init): Use ide_event_init_from_environment.
523
524 Fri Aug 8 15:59:24 1997 Ian Lance Taylor <ian@cygnus.com>
525
526 * gdbtk.c (gdbtk_init): Change gdbtk_lib_tmp and gdbtk_file to be
527 dynamically allocated, rather than fixed size. Pass "gdbtcl" to
528 ide_initialize_paths to match installed directory name. If IDE,
529 use auto_path to search for main.tcl.
530 * Makefile.in (install-only): If ENABLE_IDE, install from gdbtcl2
531 rather than gdbtcl.
532
533 * gdbtk.c (gdbtk_cleanup): New static function.
534 (gdbtk_init): Add gdbtk_cleanup as a final cleanup. Uncomment
535 call to ide_initialize_paths. If we can't initialize the event
536 system, set GDBTK_IDE to 0 in the Tcl interpreter. Create the
537 ide_window_register and the ide_window commands. Initialize tk,
538 itcl, and tix after initializing the IDE.
539
540 * configure.in (tixdir): Update for cygwin32 case for Tcl 8.0.
541 * configure: Rebuild.
542
543 Fri Aug 8 00:13:32 1997 Martin M. Hunt <hunt@cygnus.com>
544
545 * gdbtk.c (breakpoint_notify): Change buffer size from 100
546 to 256 to avoid memory corruption with very long pathnames.
547
548 Thu Aug 7 14:08:23 1997 Martin M. Hunt <hunt@cygnus.com>
549
550 * configure.in: Change required Tix version to 4.1.8.0 .
551 * configure: Rebuilt.
552
553 Fri Aug 1 15:21:44 1997 Ian Lance Taylor <ian@cygnus.com>
554
555 * gdbtk.c (Tcl_Alloc): Don't provide our own version of this if
556 _WIN32.
557 (Tcl_Realloc, Tcl_Free): Likewise.
558 * configure.in: Check for cygwin32 environment. Define and
559 substitute WIN32LIBS and WIN32LDAPP. Always set configdir to
560 unix; setting it to win was for an old Tcl/Tk configuration
561 scheme.
562 * aclocal.m4 (CY_AC_LOAD_TKCONFIG): Substitute TK_BUILD_INCLUDES.
563 * Makefile.in (TK_CFLAGS): Add @TK_BUILD_INCLUDES@.
564 (WIN32LDAPP, WIN32LIBS): Define.
565 (CLIBS): Add $(WIN32LIBS).
566 (gdb): Use $(WIN32LDAPP).
567 * configure: Rebuild.
568
569 Tue Jul 22 19:45:37 1997 Martin M. Hunt <hunt@cygnus.com>
570
571 * configure.in, aclocal.m4: Another fix to find the
572 correct Tix library name.
573
574 * configure: Rebuilt.
575
576 Mon Jul 21 22:24:07 1997 Martin M. Hunt <hunt@cygnus.com>
577
578 * aclocal.m4: Search for the correct tix library.
579
580 Thu Jul 10 00:02:41 1997 Martin M. Hunt <hunt@cygnus.com>
581
582 * Makefile.in, configure.in, aclocal.m4: Add Itcl, Tix, and
583 IDE configuration information.
584
585 * gdbtk.c (breakpoint_notify): Send address, linenumber and
586 filename when a breakpoint is set. Avoids call to bp_info.
587 (gdbtk_init): Call Tcl_FindExecutable(). Add code to handle
588 Itcl, Tix and IDE initialization.
589
590 * configure: Regenerated.
591
592 Fri Jun 13 10:28:09 1997 Fred Fish <fnf@cygnus.com>
593
594 * gdbtk.c (gdbtk_init): Make truth value test explicit.
595 Remove unused static variable "Gdbtk_Library".
596
597 Sat Jun 7 02:34:19 1997 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
598
599 * gdbtk.c (gdb_get_breakpoint_info): Add string for new
600 enumeration del_at_next_stop to bpdisp array.
601
602 Tue Jun 3 15:46:51 1997 Tom Tromey <tromey@cygnus.com>
603
604 * Makefile.in (LIB_RUNTIME_DIR): New variable.
605
606 Wed May 7 19:10:19 1997 Andrew Cagney <cagney@b1.cygnus.com>
607
608 * gdbtk.c (wrapped_call): New function - make actual call to tk
609 worker function.
610 (call_wrapper): Rewrite to use top.c:catch_errors.
611
612 * gdbtk.c (gdb_stop): If No target_stop set quit flag and hope for
613 best.
614
615 Mon Apr 21 14:00:08 1997 Doug Evans <dje@canuck.cygnus.com>
616
617 * gdbtk.c (gdb_disassemble): Store endian-ness in `di'.
618
619 Wed Apr 16 12:33:06 1997 Andrew Cagney <cagney@b1.cygnus.com>
620
621 * Makefile.in (install-only): Make list of gdbtcl files to install
622 explicit - was picking up files such as ChangeLog etc.
623 (install-only): Don't blindly create the directory.
624
625 Tue Apr 1 15:04:21 1997 Jason Molenda (crash@godzilla.cygnus.co.jp)
626
627 * configure.in (gdbtcl): Create soft-link for gdbtcl/ directory
628 instead of gdbtk.tcl.
629
630 Fri Mar 28 17:04:02 1997 Jason Molenda (crash@godzilla.cygnus.co.jp)
631
632 * Makefile.in (gdbtk.o): look for GDBTK_LIBRARY in $(datadir) by
633 default, not $(srcdir).
634
635 Wed Mar 19 15:16:17 1997 Martin M. Hunt <hunt@onions.cygnus.com>
636
637 * Makefile.in: Install gdbtcl dir instead of gdbtk.tcl.
638
639 * gdbtk.c: Added some ifdefs for Windows. Changed GDBTK_FILENAME
640 to GDBTK_LIBRARY, which is now a path to search.
641 (gdb_path_conv): New function. Convert Cygwin32 pathname to
642 DOS-style pathname.
643
644 * {aclocal.m4,configure.in}: Changes for Windows builds.
645
646 * configure: Rebuilt.
647
648 Fri Mar 14 10:01:29 1997 Tom Tromey <tromey@cygnus.com>
649
650 * configure: Regenerated.
651 * configure.in (LIBS): Re-reverse order of TCL_LIBS and TK_LIBS.
652
653 Wed Mar 12 14:29:52 1997 Tom Tromey <tromey@cygnus.com>
654
655 * gdbtk.c (x_event): Use Tcl_DoOneEvent, TCL_DONT_WAIT,
656 TCL_ALL_EVENTS.
657
658 * configure: Regenerated.
659 * configure.in (ENABLE_GDBTK): Put TCL_LIBS after TK_LIBS in
660 LIBS.
661
662 Mon Feb 10 13:50:53 1997 Stu Grossman (grossman@critters.cygnus.com)
663
664 * gdbtk.c (call_wrapper): Clear running_now if an error occurs.
665
666 Wed Dec 11 18:51:35 1996 Mark Alexander <marka@cygnus.com>
667
668 * gdbtk.c (gdb_loc): Correct truncation of PC on 64-bit MIPS.
669
670 Tue Nov 19 09:26:14 1996 Tom Tromey <tromey@cygnus.com>
671
672 * gdbtk.c (gdbtk_readline): Fix memory leak.
673
674 Mon Nov 18 23:43:05 1996 Tom Tromey <tromey@cygnus.com>
675
676 Fixes for Tcl 7.6 / Tk 4.2:
677 * gdbtk.tcl (apply_filespec): Use tk_getOpenFile.
678 Remove old fileselect code.
679 * gdbtk.c (Tcl_Alloc): Rename from Tcl_Malloc.
680
681 Fri Sep 27 10:25:30 1996 Fred Fish <fnf@cygnus.com>
682
683 * gdbtk.tcl (create_copyright_window): Increase timeout from
684 15 seconds to 30 seconds.
685
686 Wed Sep 4 17:28:40 1996 Stu Grossman (grossman@critters.cygnus.com)
687
688 * configure configure.in: Add host *windows* to list of hosts
689 that don't support GDBtk.
690
691 Fri Aug 23 00:44:57 1996 Fred Fish <fnf@cygnus.com>
692
693 * gdbtk.c (gdbtk_init): Check for a DISPLAY env variable and
694 gracefully degrade to using command line interface if none is
695 found.
696
697 Fri Aug 9 12:32:53 1996 Tom Tromey <tromey@creche.cygnus.com>
698
699 * Makefile.in (LIB_INSTALL_DIR): New macro.
700 (TCL): Include @TCL_LD_SEARCH_FLAGS@.
701
702 Thu Aug 1 20:35:01 1996 Tom Tromey <tromey@creche.cygnus.com>
703
704 * gdbtk.c (mainWindow): Deleted.
705 (cleanup_init): Don't destroy main window.
706 (gdbtk_init): Main window now created by Tk_Init.
707
708 * configure.in: Most X checks now handled automatically by Tk.
709 Use new macros to find Tcl/Tk.
710 * aclocal.m4: New version for new Tcl/Tk; from Don Libes.
711 * config.in, configure: Regenerated.
712
713 * Makefile.in (TCL, TCL_CFLAGS, TK, TK_CFLAGS, X11_CFLAGS,
714 X11_LDFLAGS, X11_LIBS): Changed for new Tcl and Tk.
715
716 Thu Aug 1 16:12:05 1996 Jason Molenda (crash@godzilla.cygnus.co.jp)
717
718 * Makefile.in (gdbtk.tcl): put in $(datadir), not $(libdir).
719
720 Fri Jul 26 14:07:37 1996 Ian Lance Taylor <ian@cygnus.com>
721
722 * gdbtk.c (gdb_disassemble): Initialize di.flavour.
723
724 Thu Jul 25 19:41:31 1996 Fred Fish <fnf@cygnus.com>
725
726 * gdbtk.c (null_routine): Ditto.
727 (gdbtk_flush): Ditto.
728 (gdbtk_fputs): Ditto.
729 (gdbtk_query): Ditto.
730 (gdbtk_readline): Ditto.
731 (gdbtk_readline_end): Ditto.
732 (gdb_get_breakpoint_list): Ditto.
733 (gdb_get_breakpoint_info): Ditto.
734 (breakpoint_notify): Ditto.
735 (gdbtk_create_breakpoint): Ditto.
736 (gdbtk_delete_breakpoint): Ditto.
737 (gdbtk_modify_breakpoint): Ditto.
738 (gdb_loc): Ditto.
739 (gdb_eval): Ditto.
740 (gdb_sourcelines): Ditto.
741 (map_arg_registers): Ditto.
742 (get_register_name): Ditto.
743 (gdb_regnames): Ditto.
744 (get_register): Ditto.
745 (gdb_fetch_registers): Ditto.
746 (register_changed_p): Ditto.
747 (gdb_changed_register_list): Ditto.
748 (gdb_cmd): Ditto.
749 (call_wrapper): Ditto.
750 (gdb_listfiles): Ditto.
751 (gdb_stop): Ditto.
752 (gdbtk_dis_asm_read_memory): Ditto.
753 (compare_lines): Ditto.
754 (gdb_disassemble): Ditto.
755 (tk_command): Ditto.
756 (cleanup_init): Ditto.
757 (gdbtk_interactive): Ditto.
758 (x_event): Ditto.
759 (gdbtk_wait): Ditto.
760 (gdbtk_call_command): Ditto.
761 (tk_command_loop): Ditto.
762 (gdbtk_init): Ditto.
763
764 * gdbtk.c (register_changed_p): Remove unused local variable "buf".
765
766 Sat Jul 20 17:46:40 1996 Fred Fish <fnf@cygnus.com>
767
768 * gdbtk.tcl (files_command): Reorder the binding tags for
769 the listbox widget to avoid referencing the listbox after
770 the containing widget has been destroyed by the action of
771 a previous binding.
772
773 Sat Jul 20 10:09:28 1996 Fred Fish <fnf@cygnus.com>
774
775 * gdbtk.tcl (delete_expr): Unset corresponding element of
776 expr_update_list when destroying an expression.
777 (create_expr_window): Initialize expr_num, delete_expr_num,
778 and expr_update_list here when each new expression window
779 is created, rather than once at startup.
780
781 Mon Jul 15 16:44:05 1996 Stu Grossman (grossman@critters.cygnus.com)
782
783 * gdbtk.c (gdb_disassemble): Setup di.mach from
784 tm_print_insn_info.mach, and set endian from TARGET_BYTE_ORDER.
785
786 Fri Jun 21 11:04:47 1996 Fred Fish <fnf@cygnus.com>
787
788 * gdbtk.tcl (create_register_windows): Include missing '$'s.
789 Add global declarations for various reg_format_* variables.
790 * gdbtk.tcl (populate_register_window): Make initial window one
791 line taller to account for new column header line.
792
793 Fri Jun 21 09:46:47 1996 Fred Fish <fnf@cygnus.com>
794
795 * gdbtk.c (get_register): Support for printing raw formats.
796 * gdbtk.tcl: Add hint for using debug_interface.
797 (center_window, add_breakpoint_frame, delete_breakpoint_frame):
798 Enclose arg in braces for consistency.
799 (create_registers_window, populate_reg_window, update_registers):
800 Major rewrite to support displaying multiple formats in the register
801 window.
802 (init_reg_info): New function.
803 (recompute_reg_display_list): Reset reg_display_list, start
804 register display lines at line 2.
805
806 Thu Jun 20 08:18:59 1996 Fred Fish <fnf@cygnus.com>
807
808 * gdbtk.tcl (gdbtk_tcl_readline_begin): Handle backspace to
809 avoid backing up over prompt. At every input, make sure insert
810 point is at least after command start, handle control-u to delete
811 current input line.
812 (tclsh): Handle backspace to avoid backing up over prompt. Handle
813 control-u to delete current input line.
814
815 Wed Jun 19 17:23:38 1996 Geoffrey Noer <noer@cygnus.com>
816
817 * configure.in: disable gdbtk for *cygwin32* hosted compiles
818 * configure: regenerated with autoconf 2.8
819
820 Sun May 19 16:49:37 1996 Fred Fish <fnf@cygnus.com>
821
822 * gdbtk.c (gdbtk_readline_begin, gdbtk_readline, gdbtk_readline_end):
823 New functions.
824 (tk_command_loop): Set instream to NULL to enable Tk user interaction.
825 (gdbtk_init): Set readline_begin_hook, readline_hook,
826 and readline_end_hook.
827 * gdbtk.tcl (gdbtk_tcl_readline_begin, gdbtk_tcl_readline,
828 gdbtk_tcl_readline_end): New functions.
829 (tclsh): Pack scroll bar on right side of window, not left.
830
831 Fri May 17 13:54:34 1996 Fred Fish <fnf@cygnus.com>
832
833 * gdbtk.tcl (create_command_window): Change a misspelled "get"
834 to the intended "cget".
835 (delete_line): Fix so it deletes the current line at the
836 insertion cursor.
837
838 Thu May 16 19:20:29 1996 Fred Fish <fnf@cygnus.com>
839
840 * gdbtk.tcl (gdb_prompt): Set this early on.
841 (create_command_window): Use gdb_prompt rather than "(gdb) ".
842 (gdbtk_tcl_preloop): Proc executed just prior to Tk main loop.
843 (tclsh): If an evaluation window already exists, just bring it
844 to the front instead of trying to create another.
845 * gdbtk.c (tk_command_loop): New function.
846 (gdbtk_init): Call tk_command_loop rather than Tk_MainLoop.
847
848 Thu May 16 16:16:35 1996 Fred Fish <fnf@cygnus.com>
849
850 * gdbtk.tcl (evaluate_tcl_command, tclsh): New functions that
851 implement a tcl evaluation window for gdbtk maintainers to use.
852
853 Thu May 16 11:42:58 1996 Tom Tromey <tromey@creche.cygnus.com>
854
855 * gdbtk.tcl (files_command): Correctly insert list of files into
856 listbox widget.
857
858 * gdbtk.tcl (files_command): listbox command no longer accepts
859 -geometry.
860
861 Wed May 15 16:04:09 1996 Stan Shebs <shebs@andros.cygnus.com>
862
863 * gdbtk.tcl (create_command_window): If command window's buffer
864 is disabled, don't execute any of the key bindings.
865
866 Mon May 13 13:43:25 1996 Fred Fish <fnf@cygnus.com>
867
868 * gdbtk.c (tk_command): Catch case where no argument is given
869 since this will cause the tcl interpreter to dump core.
870
871 Wed May 8 20:33:24 1996 Fred Fish <fnf@cygnus.com>
872
873 * gdbtk.c: Fix a couple of misspellings.
874
875 Thu May 2 19:17:49 1996 Stan Shebs <shebs@andros.cygnus.com>
876
877 * gdbtk.tcl (debug_interface): New global, use to aid debugging.
878 (insert_breakpoint_tag, delete_breakpoint_tag): Fix range.
879 (file_popup_menu): Delete, never used.
880 (listing_window_popup): Rename from listing_window_button_1,
881 remove breakpoint toggling code.
882 (toggle_breakpoint): New procedure.
883 (create_file_win): Bind popup menu to button 2, toggle breakpoints
884 with button 1 in breakpoint area, add display of tagged areas if
885 debugging on.
886
887 Fri Apr 5 13:44:40 1996 Stan Shebs <shebs@andros.cygnus.com>
888
889 * gdbtk.c (running_now): New global variable.
890 (gdb_cmd): Test it before executing any command.
891 (gdbtk_call_command): Set it when inferior is running.
892 * gdbtk.tcl (gdbtk_tcl_busy, gdbtk_tcl_idle): Enable and
893 disable interaction with command window's text appropriately.
894
895 Fri Apr 5 13:25:42 1996 Michael Meissner <meissner@tiktok.cygnus.com>
896
897 * gdbtk.c (SIOCSPGRP, linux): If on Linux, undef SIOCSPGRP, since
898 some versions of the kernel don't support it.
899
900 Tue Feb 6 16:31:25 1996 Tom Tromey <tromey@creche.cygnus.com>
901
902 * gdbtk.tcl (create_file_win): Eliminate text widget B1 binding so
903 double-clicking will work again.
904 (create_asm_win): Put "break" at end of all B1 bindings.
905 (create_file_win): Lower "sel" tag, don't raise it.
906 (ensure_line_visible): New proc.
907 (update_listing, update_assembly): Use it.
908 (create_copyright_window): Destroy window on Leave event.
909 (create_command_window): Put "break" at end of all B2 bindings.
910
911 Wed Jan 24 15:28:41 1996 Tom Tromey <tromey@creche.cygnus.com>
912
913 * gdbtk.tcl, gdbtk.c: Updated copyrights.
914
915 * configure.in: Look for -ldl or -ldld when using Tcl 7.5 or
916 greater.
917 * configure: Rebuilt.
918
919 Tue Jan 23 09:00:48 1996 Doug Evans <dje@charmed.cygnus.com>
920
921 * gdbtk.c (gdb_disassemble): Pass fprintf_unfiltered to
922 INIT_DISASSEMBLE_INFO.
923
924 Mon Jan 15 09:58:41 1996 Tom Tromey <tromey@creche.cygnus.com>
925
926 * gdbtk.tcl (create_expr_window): Many changes to update GUI.
927 (add_expr): Changes from create_expr_window.
928 (create_command_window): Set focus.
929 (delete_expr): Rewrote.
930 (expr_update_button): New proc.
931 (add_expr): Put bindings on FocusIn, FocusOut.
932 Don't allow .file_popup to be torn off.
933
934 Fri Jan 12 09:36:17 1996 Tom Tromey <tromey@creche.cygnus.com>
935
936 * gdbtk.tcl (gdbtk_tcl_query): Swap Yes and No buttons.
937 (update_listing): Use lassign. Use "see" to scroll. Don't need
938 screen_top, screen_bot, screen_height.
939 (update_assembly): Use "see" to scroll.
940 (textscrollproc): Removed.
941 (create_file_win): Don't use textscrollproc.
942 (asmscrollproc): Removed.
943 (create_asm_window): Don't use asmscrollproc.
944 (create_asm_win): Ditto.
945 (screen_height, screen_top, screen_bot): Removed.
946 (run_editor): New proc.
947 (build_framework): Use it.
948 (create_file_win, create_source_window): Don't use textscrollproc.
949 (create_breakpoints_window): Set -xscrollcommand on canvas.
950 (not_implemented_yet): Default button is 0.
951 (delete_char): Don't use tk_textBackspace.
952 (create_command_window): Allow Tk bindings to fire after deleting
953 character.
954 (create_command_window): Make Delete delete left, not right.
955
956 Thu Jan 11 10:08:14 1996 Tom Tromey <tromey@creche.cygnus.com>
957
958 * gdbtk.tcl (FSBox): Don't use tk_listboxSingleSelect.
959
960 Changes in sync with expect:
961 * configure.in (ENABLE_GDBTK): Use CY_AC_PATH_TCL and
962 CY_AC_PATH_TK.
963 * aclocal.m4: Replaced with version from expect.
964 * configure: Regenerated.
965
966 Wed Jan 10 09:07:22 1996 Tom Tromey <tromey@creche.cygnus.com>
967
968 * gdbtk.tcl (gdbtk_tcl_fputs, gdbtk_tcl_fputs_error,
969 gdbtk_tcl_flush): Use "see", not "yview".
970 (gdbtk_tcl_query): Use questhead bitmap.
971 various: Always wrap condition of 'if' in {...}.
972 (add_breakpoint_frame): Set -value on radiobuttons.
973 (lassign): New proc.
974 (add_breakpoint_frame): Use lassign, not series of assignments.
975 (decr): Made faster.
976 (interactive_cmd): Use "see", not "yview".
977 (not_implemented_yet): Use warning bitmap.
978 (update_expr): Don't allow $expr to be evalled by Tcl.
979 (create_expr_window): Don't use "focus".
980 (delete_char, delete_line): Define globally.
981 (delete_line, delete_char, create_command_window, update_autocmd,
982 build_framework, create_asm_win, create_file_win): Use "see", not
983 "yview".
984 (create_copyright_window, center_window, bind_widget_after_class):
985 New procs.
986 (FSBox,create_command_window, create_autocmd_window): Binding
987 changes for Tk4.
988 (textscrollproc): Define globally.
989 (build_framework): tk_menuBar no longer needed. Keys Prior, Next,
990 Home, End, Up, and Down are all defined by Tk.
991 (apply_filespec): Use error bitmap in dialog.
992 (files_command): Don't use tk_listboxSingleSelect.
993 (files_command): Don't use "uniq" to remove duplicates from a
994 list.
995 (update_assembly): Use lassign.
996 (create_asm_win): Removed redundant bindings.
997 (listing_window_button_1, file_popup_menu): Use tk_popup.
998 (ButtonRelease-1 binding): Just remove tag from window; rest
999 handled by Tk.
1000
1001 * gdbtk.c (gdbtk_query): Use Tcl_Merge to provide quoting.
1002 (call_wrapper): Use Tcl_Eval, not Tcl_VarEval.
1003 (gdbtk_call_command): Ditto.
1004
1005 Thu Jan 4 16:04:54 1996 Stu Grossman (grossman@cygnus.com)
1006
1007 * configure configure.in: Make --enable-gdbtk be the default.
1008
1009 Thu Dec 28 15:10:49 1995 Stan Shebs <shebs@andros.cygnus.com>
1010
1011 * README.GDBTK: Polish introductory paragraph.
1012
1013 Mon Oct 16 11:27:06 1995 Stu Grossman (grossman@cygnus.com)
1014
1015 * gdbtk.c (gdb_disassemble): Use fprintf_unfiltered instead of
1016 fprintf_filtered.
1017
1018 Tue Oct 10 15:26:39 1995 Fred Fish <fnf@cygnus.com>
1019
1020 * README.GDBTK: Updated for version 4.15.
1021
1022 Sat Aug 19 17:20:22 1995 Michael Tiemann <tiemann@axon.cygnus.com>
1023
1024 * gdbtk.tcl: ENABLE comes back as "1" or "0", not "enable" or
1025 "disable".
1026 Also, wire up the breakpoint window so that it can be demo'd.
1027
1028 Tue Aug 1 11:44:53 1995 J.T. Conklin <jtc@rtl.cygnus.com>
1029
1030 * gdbtk.c: Include "gdb_string.h" instead of <string.h>.
1031
1032 Tue Jun 20 10:19:40 1995 Stu Grossman (grossman@cygnus.com)
1033
1034 * gdbtk.c: Add functions Tcl_Malloc, Tcl_Realloc, and Tcl_Free.
1035
1036 * gdbtk.tcl (add_breakpoint_frame): Add more fields.
1037 * (create_file_win create_asm_win build_framework): Create null
1038 bindings for meta keys to keep window from dropping down to
1039 insertion point when meta is pressed by itself. New bindings:
1040 Up/Down - Scroll up/down one line at a time
1041 Next/Prior - Scroll up/down one page at a time
1042 Home/End - Warp to current pc/end of file
1043 * (build_framework): Turn on breakpoint menu.
1044 * (create_command_window): Implement tab completion. Add binding
1045 for ^C to stop target.
1046
1047 Fri May 19 06:15:40 1995 Jim Kingdon <kingdon@deneb.cygnus.com>
1048
1049 * gdbtk.c: Conditionalize use of stdarg rather than varargs on
1050 ANSI_PROTOTYPES not __STDC__; it must match the definition of
1051 PARAMS.
1052
1053 Thu May 18 15:58:46 1995 J.T. Conklin <jtc@rtl.cygnus.com>
1054
1055 * gdbtk.c (gdbtk_query): Use stdarg.h macros when compiling with
1056 an ANSI compiler.
1057
1058 Sat Apr 15 13:52:24 1995 Stan Shebs <shebs@andros.cygnus.com>
1059
1060 * gdbtk.c (gdb_disassemble): Read from inferior if connected
1061 to a VxWorks target.
1062
1063 Fri Apr 14 10:18:20 1995 Stu Grossman (grossman@cygnus.com)
1064
1065 * README.GDBTK: New file. Contains the obvious.
1066
1067 Tue Apr 11 11:07:12 1995 Michael Meissner <meissner@tiktok.cygnus.com>
1068
1069 * gdbtk.c (gdbtk_init): If SIOCSPGRP is not available, but
1070 F_SETOWN is, use that.
1071
1072 Thu Apr 6 17:00:46 1995 Michael Meissner <meissner@tiktok.cygnus.com>
1073
1074 * Makefile.in (X11_INCLUDES): Define as empty.
1075 (X11_CFLAGS): Define as including $(X11_INCLUDES).
1076 (X11_LIB_SWITCHES): Define as empty.
1077 (X11_LIBS): Define as -lX11.
1078
1079 * configure.in (enable_gdbtk): If gdbtk, support the --x-includes
1080 and --x-libraries switches, setting the X11_INCLUDES and
1081 X11_LIB_SWITCHES respectively. Instead of using a hardcoded -lX11
1082 in ENABLE_CLIBS, use the X11_LIB_SWITCHES and X11_LIBS variables.
1083
1084 * gdbtk.c (gdbtk_init): If SIOCSPGRP is not available, don't use
1085 it. This means that the stop button doesn't work, but is better
1086 than nothing.
1087
1088 Wed Mar 29 17:09:29 1995 Stu Grossman (grossman@cygnus.com)
1089
1090 * Makefile.in (gdbtk.o): Use X11_CFLAGS to provide alternate
1091 locations (per-host) for X11 include files.
1092 * config/pa/hppahpux.mh (XM_CLIBS): Add -L/usr/lib/X11R5 to force
1093 the use of R5 libs.
1094 (X11_CFLAGS): Add this to indicate the locs
1095 of the R5 include files.
1096
1097 Wed Mar 8 16:12:21 1995 Stu Grossman (grossman@cygnus.com)
1098
1099 * gdbtk.c (gdb_get_breakpoint_info): Return error if breakpoint
1100 type is not bp_breakpoint.
1101
1102 Tue Feb 14 17:16:41 1995 Stu Grossman (grossman@cygnus.com)
1103
1104 * gdbtk.c: Ditto.
1105 * gdbtk.c: General cleanups, get rid of unused variables. Redo
1106 handling of stdout/stderr to just return output as the result of
1107 the tcl command that caused the output. Cleanup -Wall stuff.
1108 * (breakpoint_notify): Now returns just action and breakpoint
1109 number.
1110 * (gdb_get_breakpoint_list): New routine. Does the obvious.
1111 * (gdb_get_breakpoint_info): Mostly derived from the old
1112 breakpoint_notify, but returns lots more info.
1113 * (dsprintf_append_element): Helper routine, works like printf,
1114 but appends a tcl element onto the specified DString. Good for
1115 building up lists as return values.
1116 * (gdbtk_enable/disable_breakpoint): Go away. Replaced with
1117 gdbtk_modify_breakpoint.
1118 * (*many routines*): Use new result protocol.
1119 * (call_wrapper): Make sure that recursive calls don't trash results.
1120 * gdbtk.tcl: New windows, autocmd, and breakpoints.
1121 * (gdbtk_tcl_fputs): Don't use $current_output_win redirection
1122 anymore. It's not needed (in fact, this routine may not be needed
1123 anymore).
1124 * (gdbtk_tcl_breakpoint): Change to reflect new breakpoint
1125 notification protocol.
1126 * (gdbtk_tcl_busy gdbtk_tcl_idle): Straighten out buttons, remove
1127 catches.
1128 * (interactive_cmd): Use this wrapper around button invocations
1129 of many commands. This will catch errors and put the results into
1130 the command window. It also updates all the other windows.
1131 * Also, change reliefs of most things to sunken. This actually
1132 looks better.
1133 * (create_file_win): Fix margin binding to allow breakpoints to
1134 work again.
1135 * (create_asm_win): Use return value of gdb_disassemble instead
1136 of implicit I/O to the command window.
1137 * (create_command_window): Use new result protocol to get output
1138 from commands.
1139
1140 Sun Feb 5 20:32:44 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
1141
1142 * gdbtk.c (gdb_disassemble): Deference pointer to function before
1143 calling it (pre-ANSI compilers generally require this).
1144
1145 Fri Feb 3 11:19:20 1995 Stu Grossman (grossman@cygnus.com)
1146
1147 * gdbtk.c (gdb_disassemble): Get rid of
1148 dis_asm_read_memory_hook. We can now call the disassemblers
1149 directly and have no need for this hook anymore.
1150
1151 Mon Jan 30 17:34:24 1995 Stu Grossman (grossman@cygnus.com)
1152
1153 * gdbtk.tcl (create_file_win): Disable old popup menu for source
1154 window.
1155
1156 Wed Jan 25 18:23:46 1995 Stu Grossman (grossman@cygnus.com)
1157
1158 * gdbtk.c (gdbtk_init): Prevent segfault when gdbtk.tcl can't be
1159 found.
1160 * gdbtk.tcl: Initialize expr_update_list() to prevent errors when
1161 popping up expression window for the first time.
1162
1163 Tue Jan 24 12:10:28 1995 Stu Grossman (grossman@cygnus.com)
1164
1165 * gdbtk.tcl (create_registers_window): Work around a radiobutton
1166 widget bug to make Options|Natural button work.
1167
1168 * gdbtk.c (gdb_disassemble): Fix problem with source+assembly and
1169 g++ caused by out-of-order pc's.
1170 * gdbtk.tcl (files_command): Remove duplicate file names. Also,
1171 add scrollbar.
1172
1173 Mon Jan 23 17:21:09 1995 Stu Grossman (grossman@cygnus.com)
1174
1175 * gdbtk.tcl: Take .gdbtkinit if it exists. Makes gdbtk match the
1176 doc!
1177
1178 Thu Jan 12 15:02:40 1995 Stu Grossman (grossman@cygnus.com)
1179
1180 * gdbtk.c, gdbtk.tcl: Update/add copyright.
1181 * gdbtk.tcl (build_framework): Several fixes for filespec widget,
1182 including dismiss button, and better error handling.
1183 * (create_command_win): Bind button 2 to retrieve selection.
1184
1185 Wed Jan 11 17:06:55 1995 Stu Grossman (grossman@cygnus.com)
1186
1187 * gdbtk.tcl: Add button to control mixed source disassembly.
1188 Use text widgets in expr window. The give me more control over
1189 layout.
1190 Add auto-updating of exprs in expression window.
1191 Handle expressions out of scope a bit better.
1192 Make selected window pop up to the top when invoked via the
1193 menubar.
1194 Make copyright message have raised relief.
1195
1196 * gdbtk.c (gdbtk_init): Improve handling for errors in gdbtk.tcl
1197 during startup.
1198
1199 Thu Jan 5 17:38:29 1995 Stu Grossman (grossman@cygnus.com)
1200
1201 * gdbtk.c (finish_saving_output): Don't do anything if not saving
1202 output.
1203 * (breakpoint_notify): Don't send null filename to tcl.
1204 * (gdb_eval): New tcl command to eval an expression.
1205 * (gdb_disassemble): New tcl command to do disassembly. This
1206 allows tcl code to choose between exec file and target memeory,
1207 and can also do mixed source and assembly.
1208 * (gdbtk_init): Move reading of gdbtk.tcl to the end to make sure
1209 that more of the environment is set up. Also, create link between
1210 gdb and tcl vars disassemble{-_}from{-_}exec.
1211
1212 * gdbtk.tcl: New expression window support.
1213 * Make assembly window be 80 columns wide.
1214 * Use new disassembly method. Add menu items to select
1215 disassembly from exec file or target.
1216 * Change View menubar item to Options.
1217
1218 * Get rid of Stack, Breakpoints, Signals, and Variables Windows,
1219 since they don't exist yet.
1220
1221 * Pop up a copyright window on startup.
1222
1223 Wed Jan 4 19:49:10 1995 Stan Shebs <shebs@andros.cygnus.com>
1224
1225 * gdbtk.tcl (build_framework): Add standard commands menu, more
1226 windows to standard windows menu.
1227 (not_implemented_yet): Clarify message.
1228
1229 Fri Dec 30 15:49:00 1994 Stan Shebs <shebs@andros.cygnus.com>
1230
1231 * gdbtk.tcl (FSBox): New proc, File Selection Box code from exmh.
1232 (not_implemented_yet): New proc.
1233 (build_framework): Add various file commands to file menu.
1234
1235 Fri Dec 23 16:18:50 1994 Stu Grossman (grossman@cygnus.com)
1236
1237 * gdbtk.c (gdbtk_wait gdbtk_init): Portability improvements for
1238 SIGIO handling.
1239
1240 Mon Dec 19 09:55:47 1994 Stu Grossman (grossman@cygnus.com)
1241
1242 * gdbtk.tcl (update_assembly): Force update to make sure that pc
1243 is visible when creating new assembly windows.
1244
1245 Sun Dec 18 23:31:20 1994 Stu Grossman (grossman@cygnus.com)
1246
1247 * gdbtk.c (gdbtk_wait gdbtk_init): Use different method of
1248 enabling I/O interrupts for SVR4 (streams).
1249 * (start_saving_output save_output get_saved_output
1250 finish_saving_output flush_holdbuf gdbtk_flush gdbtk_fputs
1251 gdbtk_init):
1252 Totally revamp to use TCLs dynamic string functions. Also, quote
1253 all data passed back to TCL to prevent errors with unmatched
1254 braces, odd characters, etc... This fixes several wierd problems
1255 with outputting strings containing unmatched braces.
1256 * (breakpoint_notify gdb_loc): Use long hex format to output
1257 addresses of breakpoints and PCs. This fixes some Alpha problems.
1258 * (breakpoint_notify): Add stream arg to call to gdbtk_fputs.
1259 * (gdb_listfiles): Also, go through the symtabs when looking for
1260 files. This makes xcoff work (sort of), but probably breaks
1261 something else.
1262 * (gdb_stop): Return TCL_OK instead of nothing. This fixes odd
1263 TCL errors when hitting stop button.
1264 * (tk_command): Don't pass interp->result on to Tcl_{Var}Eval, as
1265 that will trash the result. strdup the result instead and pass
1266 that on. Improve error handling as well.
1267
1268 * gdbtk.tcl (gdbtk_tcl_flush): Use global def of
1269 current_output_win. Makes flushing actually work!
1270 * (asm_win_name create_asm_win update_assembly): Bunch of fixes
1271 to make assembly windows stop flashing when loading a new file.
1272 * (gdbtk_tcl_busy gdbtk_tcl_idle): Use catch to prevent gdb_cmd
1273 errors from losing control.
1274 * (create_source_window): Add source file selection to View menu.
1275 * (create_command_window (<Key-Return> binding): Quote text fed
1276 into gdb_cmd to prevent eval errors.
1277
1278 Thu Dec 15 16:40:10 1994 Stu Grossman (grossman@cygnus.com)
1279
1280 * gdbtk.c: Improve mechanism for capturing output values.
1281 (full_filename): Remove.
1282 (gdb_cmd call_wrapper gdbtk_init): Protect all calls from tcl land
1283 with call_wrapper. This prevents longjmps (usually via error())
1284 from jumping out of tcl/tk and leaving things in an indeterminate
1285 state.
1286 (gdbtk_fputs): Differentiate stdout from stderr when passing text
1287 into tcl land.
1288 * gdbtk.tcl: New view option to disable line numbers. Put catch
1289 around most uses of gdb_cmd. Add update button to reg config
1290 window. Stop doing immediate updates when selecting registers.
1291 Change register view values into checkbuttons.
1292
1293 Mon Dec 12 16:59:29 1994 Stu Grossman (grossman@cygnus.com)
1294
1295 * gdbtk.tcl (reg_config_menu create_registers_window
1296 recompute_reg_display_list): Use array instead of individual vars
1297 for register display list.
1298 * (recompute_reg_display_list update_registers): Fix bug with not
1299 displaying all registers.
1300
1301 Mon Dec 12 12:22:21 1994 Stu Grossman (grossman@cygnus.com)
1302
1303 * gdbtk.c: New tcl commands: gdb_fetch_registers,
1304 gdb_changed_register_list, and gdb_regnames.
1305 * gdbtk.tcl: Use monochrome color model for now.
1306 * (delete_breakpoint_tag create_file_win): Add breakdot support.
1307 * (create_file_win create_asm_win update_listing build_framework
1308 create_source_window create_command_window): Re-org window
1309 creation to give all windows consistent look and feel.
1310 * (update_listing update_asm): Change pc pointer to '->'.
1311 * (registers_command reg_config_menu create_registers_window
1312 populate_reg_window update_registers): Revamp register window.
1313 Allow selection of registers to be displayed. Highlight changed
1314 registers.
1315
1316 Mon Nov 28 09:17:20 1994 Stu Grossman (grossman@cygnus.com)
1317
1318 * gdbtk.tcl (build_framework): Fix bug with setting window titles.
1319
1320 * gdbtk.tcl (build_framework): Add "Report bug" to help menu.
1321
1322 * gdbtk.tcl: Re-arrange windows using new, consistent layout. Clean
1323 up lots of code and centralize framework initialization.
1324
1325 Wed Nov 16 15:28:29 1994 Rob Savoye (rob@cygnus.com)
1326
1327 * Makefile.in: Fix the test for installing gdbtk.
1328
1329 Mon Nov 14 08:51:29 1994 Stu Grossman (grossman@cygnus.com)
1330
1331 * Makefile.in: Install gdbtk.tcl.
1332 * configure.in: Add ENABLE_GDBTK flag.
1333 * gdbtk.c (gdb_sourcelines): Returns list of source lines
1334 containing code. (gdb_regnames): Returns list of register names.
1335
1336 Thu Nov 3 14:25:24 1994 Stu Grossman (grossman@cygnus.com)
1337
1338 * gdbtk.c (gdb_stop): Switch to target_stop().
1339
1340 Tue Nov 1 16:41:12 1994 Stu Grossman (grossman@cygnus.com)
1341
1342 * Makefile.in: Use $(objdir)/tcl and $(objdir)/tk if they are
1343 available.
1344 * configure.in (ENABLE_CLIBS): Use $(TCL) and $(TK) instead of
1345 -ltcl and -ltk.
1346 * gdbtk.c: Get rid of lots of unnecessary #includes.
1347 * (gdbtk_init): Use ConnectionNumber macro instead of referencing
1348 Display structure directly.
1349 * gdbtk.tcl: Change exit button to quit button.
1350
1351 Wed Oct 26 15:41:07 1994 Stu Grossman (grossman@cygnus.com)
1352
1353 * gdbtk.c: Change sense and name of no_windows variable. Now
1354 called use_windows, and defaults to off (for compatibility).
1355
1356 Thu Oct 20 17:35:45 1994 Stu Grossman (grossman@cygnus.com)
1357
1358 * gdbtk.c (gdb_cmd): Force GUI into idle mode when errors occur.
1359 * (gdb_stop): New tcl command to stop the target process.
1360 * (x_event, gdbtk_wait): Allow GUI to interrupt gdb out of target
1361 waits.
1362 * (gdbtk_call_command): Wrapper around command processing to
1363 alert GUI of target state changes.
1364 * (gdbtk_init): Get the fd of X server for doing async
1365 notification of X events (via x_event). Setup new hooks.
1366 * gdbtk.tcl: Add scrollbars to assembly and command windows.
1367 * Change window foreground & background colors.
1368 * Create margin tag for breakpoints in source and assembly windows.
1369 * Add new routines to be invoked when target state changes to/from
1370 idle.
1371 * Add start of expression window.
1372 * Change bindings of mouse button 1 in assembly and source window
1373 to just set or clear breakpoints when in the margin tag.
1374 * Change shape of register window to be more vertical to better
1375 reflect its contents.
1376 * Add stop button.
1377 * Cleanup some code around command window bindings.
1378
1379 Sat Sep 17 17:05:14 1994 Stu Grossman (grossman@cygnus.com)
1380
1381 * gdbtk.tcl: Let ^U delete lines in the command window.
1382
1383 Fri Sep 16 15:40:34 1994 Stu Grossman (grossman@cygnus.com)
1384
1385 * gdbtk.c: Replace calls to full_filename with symtab_to_filename.
1386 * gdbtk.tcl: New routine pc_to_line replaces in line code. New
1387 routine decr replaces in line code.
1388 * (create_file_win): Use catch to handle open failures more
1389 elegantly. Also, create special window to display file open
1390 failure message. Move opening of file prior to creation of text
1391 widget.
1392 * (create_asm_win): Add PC as argument. We now base disassembly
1393 on PC instead of function name, since function names can be
1394 ambiguous (usually seen with shared libs). Also, use catch to
1395 simplify code where we don't care about failures.
1396
1397 Wed Sep 14 00:55:26 1994 Stu Grossman (grossman@cygnus.com)
1398
1399 * gdbtk.tcl: Add ref counts to breakpoint tags.
1400 * Put quotes around function name in disassemble command to better
1401 handle assembler names containing `.'.
1402 * Make pclist element 0 be filler to avoid off-by-one problem with
1403 line numbers.
1404 * Set names of top-level windows.
1405 * Add register display window.
1406 * Add PC to label of assembly window.
1407
1408 Tue Sep 13 08:59:04 1994 Stu Grossman (grossman@cygnus.com)
1409
1410 * gdbtk.c (gdbtk_flush gdbtk_fputs): Buffer up output to make
1411 disassembly more efficient.
1412 * (breakpoint_notify): Include pc in gdbtk_tcl_breakpoint
1413 callback.
1414 * (gdb_loc): Include pc in return value. Also, return function
1415 name if arg was specified.
1416 * (gdb_cmd_stub): Call gdb_flush to drain internal GDB buffers
1417 after command completes.
1418 * (gdbtk_init): Improve error handling.
1419
1420 * gdbtk.tcl: Add lots of comments. Clean up code.
1421 * (gdbtk_tcl_fputs): Make output window redirectable.
1422 * Add assembly window, and breapoint support.
1423 * Make button 1 in margin toggle breakpoints.
1424 * Use stippling to indicate breakpoint disabling.
1425
1426 Fri Sep 2 19:11:40 1994 Stu Grossman (grossman@cygnus.com)
1427
1428 * configure.in: Don't symlink to gdbtk.tcl if it's already there.
1429
1430 Thu Jul 28 14:37:36 1994 Stu Grossman (grossman@cygnus.com)
1431
1432 Support for TK GUI.
1433 * Makefile.in: Add rule for gdbtk.o.
1434 * configure.in: Add support for --enable-gdbtk.
1435 * gdbtk.c: New file. Contains support routines for TK interface.
1436 * gdbtk.tcl: New file. Implements GUI policy.
1437
1438 \f
1439 Local Variables:
1440 mode: indented-text
1441 left-margin: 8
1442 fill-column: 74
1443 version-control: never
1444 End: