update from shebs relocation of files to gdb.hp
[deliverable/binutils-gdb.git] / gdb / ChangeLog-gdbtk
1 1999-01-29 James Ingham <jingham@cygnus.com>
2
3 * gdbtk.c (gdbtk_init): Set the fputs_unfiltered_hook to
4 gdbtk_fputs BEFORE you eval script. The old code was setting it
5 to null until after you did this, but that is wrong, because it
6 will cause the output of CAUGHT errors to go to gdb_stderr, which
7 is wrong. You only want to write errors to the console if the
8 eval generates an error.
9
10 1999-01-29 Martin Hunt <hunt@cygnus.com>
11
12 * gdbtk-cmds.c (gdb_get_breakpoint_info): When printing addresses,
13 do not rely on the format string "%lx" -- it does not exist for all
14 hosts. Use paddr instead.
15 (gdb_loadfile): Increase maximum line size to pass testsuite cases.
16
17 * gdbtk-hooks.c (gdbtk_add_hooks): Remove pc_changed_hook and
18 add register_changed_hook and memory_changed_hook.
19 (gdbtk_register_changed): New function.
20 (gdbtk_memory_changed): New function.
21
22 * gdbtk.c (gdbtk_init): Create tcl warp_pointer command
23 for use with testing.
24
25 * gdbtk-cmds.c (gdb_loc): Fix for case where there are only
26 minimal symbols. Also make gdb_loc return the shared library
27 the location is in, if it is in one.
28
29 1999-01-27 James Ingham <jingham@cygnus.com>
30
31 * gdbtk-wrapper.c: Missed a couple of places where FILE->GDB_FILE
32 in the fputs_unfiltered_hook needed to propagate.
33
34 1999-01-27 James Ingham <jingham@cygnus.com>
35
36 Merging in changes from gdbtk-980810 - the Itcl3
37 gdb branch.
38
39 1999-01-12 Martin Hunt <hunt@cygnus.com>
40
41 * gdbtk-cmds.c (gdb_loadfile): Increase maximum line size so
42 files with very long lines get numbered correctly.
43
44 Thu Jan 7 06:50:32 1999 Keith Seitz <keiths@cygnus.com>
45
46 * gdbtk-hooks.c (gdbtk_add_hooks): Add the error_begin_hook;
47 (gdbtk_error_begin): New function.
48 (gdbtk_fputs): If GDBTK_ERROR_ONLY is set, treat output to
49 any stream as if it had come from gdb_stderr.
50
51 * gdbtk.h: Define GDBTK_SYMBOL_SOURCE_NAME: does the same thing
52 as SYMBOL_SOURCE_NAME, except that it NEVER returns a mangled name.
53 Define GDBTK_ERROR_ONLY flag for result_ptr.
54
55 * gdbtk-cmds.c (gdb_listfuncs): Use SYMBOL_DEMANGLED_NAME to
56 get the symbol's fully demangled name (including class and
57 args for overloaded funcs), not cplus_demangle.
58 (get_frame_name): Use GDBTK_SYMBOL_SOURCE_NAME to get the name
59 of the frame level.
60
61 * gdbtk-wrapper.c, gdbtk-wrapper.h:
62 (GDB_val_print): Allow caller to specify all function args to val_print.
63 (wrap_val_print): Ditto.
64
65 * gdbtk-variable.c (variable_value): Clear addressprint when getting
66 value of C++ reference-type variables
67 If we errored because a parent (struct pointer) was junk, output
68 an error message indicating so.
69 (call_gdb_val_print): Tell val_print to dereference C++ reference
70 types.
71 (number_of_children): void * also has no children.
72 (get_call_output): Clear any error flags that may have been set
73 as a result of error_begin.
74
75 * utils.c (error_begin_hook): New hook.
76 (error_begin): Call error_begin_hook so that the GUI
77 gets notified.
78
79 * defs.h (error_begin_hook): Declare.
80
81 Wed Jan 6 08:43:31 1999 Keith Seitz <keiths@cygnus.com>
82
83 * gdbtk-wrapper.c, gdbtk-wrapper.h: Add wrappers for parse_exp_1,
84 evaluate_type, block_for_pc, block_innermost_frame, reinit_frame_cache,
85 and find_frame_addr_in_frame_chain.
86
87 * gdbtk-variable.c (variable_create): Check for failure when
88 creating variables.
89 (create_variable): Use wrapped calls for block_for_pc, parse_exp_1,
90 and block_innermost_frame.
91 Return NULL if parse_exp_1 fails.
92 Attempt to prohibit creating a gdb_variable for type names.
93 (variable_value_changed): Use wrapped calls for reinit_frame_cache and
94 find_frame_addr_in_frame_chain.
95 (variable_type): Use wrapped call for evaluate_type.
96 (variable_value): Use wrapped call for parse_exp_1.
97 (variable_editable): Use wrapped call for evaluate_type.
98
99 Tue Jan 5 11:37:17 1999 Keith Seitz <keiths@cygnus.com>
100
101 * gdbtk-variable.c: New variable object interface.
102 * gdbtk-wrapper.c, gdbtk-wrapper.h: New wrappers for safely calling
103 gdb functions without the fear of longjmp'ing.
104 * configure.in (CONFIG_OBS): Add gdbtk-wrapper.o and gdbtk-variable.o
105 when gdbtk is enabled.
106 * configure: Regenerate.
107 * Makefile.in: Add gdbtk-wrapper.o and gdbtk-variable.o
108 * gdbtk-cmds.c (call_wrapper): Export so that other files can use.
109 (Gdbtk_Init): Initialize new variable interface.
110 * gdbtk.h: Add declaration for call_wrapper.
111
112 Tue Jan 5 11:19:14 1999 Keith Seitz <keiths@cygnus.com>
113
114 * gdbtk-cmds.c (gdb_loc): Call resolve_sal_pc to before using
115 the sal's pc.
116
117 * gdbtk.c (gdbtk_init): Add global array GDBStartup to interpreter
118 which contains any startup info. Add "inhibit_prefs" (follows -nx)
119 so that "-nx" turns preference reading/writing off.
120
121 Mon Dec 21 11:11:02 1998 Keith Seitz <keiths@cygnus.com>
122
123 * gdbtk-cmds.c (get_register): Call get_saved_register instead of
124 read_relative_register_raw_bytes to fetch registers.
125
126 Thu Dec 17 09:00:56 1998 Keith Seitz <keiths@cygnus.com>
127
128 * gdbtk-cmds.c (gdb_search): Don't mention C++ RTTI and
129 global constructor/destructor symbols.
130
131 Thu Nov 12 15:20:15 1998 Jim Ingham <jingham@cygnus.com>
132 * More bug fixes merged in from devo.
133
134 * gdbtk-cmds.c (gdb_cmd): Added an optional second argument to the
135 gdb_cmd, which is from_tty. This is passed to the gdb command
136 parser. It is 0 by default, and the console window passes 1.
137
138 * gdbtk-cmds.c: moved disassemble_from_exec from gdbtk.c to gdbtk-cmds.c
139 with all the other link-var'ed variables
140
141 * gdbtk-hooks.c (gdbtk_trace_find): Only run the hook functions if
142 we are called from_tty.
143
144 * gdbtk-hooks.c (gdbtk_trace_start_stop): Set the trace buttons
145 from a trace_start_command callback rather than doing it as a
146 special case in gdb_cmd.
147
148 * tracepoint.c (tstart_command, tstop_command): Add call to
149 trace_start_stop_hook here.
150
151 1998-11-04 Martin M. Hunt <hunt@cygnus.com>
152
153 * gdbtk-cmds.c (gdb_set_bp_addr): For callback, send full
154 pathname instead of just basename.
155
156 1998-11-03 Keith Seitz <keiths@cygnus.com>
157 * v850ice.c (do_gdb): New function.
158 (ice_stepi): Use do_gdb to step properly.
159 (ice_nexti): Use do_gdb to step properly.
160 (view_source): Correct call to src window's location for new version.
161
162 Tue Aug 25 18:13:30 1998 Jim Ingham <jingham@cygnus.com>
163
164 * gdbtk.c (gdbtk_init): I hadn't excised ALL the old startup code,
165 so it was not working correctly. Now it does.
166
167 Fri Aug 21 14:37:40 1998 Jim Ingham <jingham@cygnus.com>
168
169 * gdbtk.c (gdbtk_init): Changed the startup code to use
170 tcl_findLibrary
171
172
173
174
175 on Dec 28 17:44:36 1998 David Taylor <taylor@texas.cygnus.com>
176
177
178 The following changes were made by Jim Blandy <jimb@cygnus.com>,
179 Edith Epstein <eepstein@cygnus.com>, Elena Zannoni
180 <ezannoni@cygnus.com> Stan Shebs <shebs@cygnus.com>, and David
181 Taylor <taylor@cygnus.com>, as part of the project to merge in
182 changes originally made by HP; HP did not create ChangeLog
183 entries.
184
185 * gdbtk.c (gdbtk_init): change stderr to gdb_stderr.
186
187 * gdbtk-cmds.c
188 (get_pc_register): Use paddr_nz, not sprintf's %llx and
189 a cast to `long long'. Those aren't portable.
190 (gdb_eval): add embedded_offset param to val_print call
191 (get_register): add embedded_offset param to val_print call
192
193 * gdbtk-hooks.c
194 (tk_command_loop): change instream to a FILE.
195 (gdbtk_flush): change both the declaration and definition to
196 use GDB_FILE rather than FILE.
197
198 Mon Dec 21 11:11:02 1998 Keith Seitz <keiths@cygnus.com>
199
200 * gdbtk-cmds.c (get_register): Call get_saved_register instead of
201 read_relative_register_raw_bytes to fetch registers.
202
203 Thu Dec 17 09:00:56 1998 Keith Seitz <keiths@cygnus.com>
204
205 * gdbtk-cmds.c (gdb_search): Don't mention C++ RTTI and
206 global constructor/destructor symbols.
207
208 Tue Dec 15 10:09:31 1998 Andrew Cagney <cagney@b1.cygnus.com>
209
210 * gdbtk-cmds.c (gdb_disassemble): Fix typo.
211
212 Sun Dec 13 09:52:51 1998 Andrew Cagney <cagney@b1.cygnus.com>
213
214 * gdbtk-cmds.c: Update TARGET_PRINT_INSN_INFO, TARGET_PRINT_INSN.
215
216 Fri Dec 11 09:52:04 1998 Andrew Cagney <cagney@chook>
217
218 * gdbtk-cmds.c: Replace reg_name with REGISTER_NAME.
219
220 Mon Dec 14 13:20:50 1998 Jim Ingham <jingham@cygnus.com>
221
222 * Makefile.in, configure.in configure - add support for LIBGUI
223 outside the IDE context.
224
225 Thu Nov 19 13:14:57 1998 Geoffrey Noer <noer@cygnus.com>
226
227 * gdbtk-cmds.c: Can't start using new API names yet. Switch back
228 to calling cygwin32_ funcs until some time has passed...
229 * gdbtk.c: Ditto. Also, include sys/cygwin.h for Cygwin, instead
230 of providing own proto.
231
232 Fri Nov 13 00:15:08 1998 Geoffrey Noer <noer@cygnus.com>
233
234 Changes to account for name change from cygwin32 to cygwin and
235 clean up Win32-related ifdefs.
236
237 * gdbtk.c: lose "32" from cygwin_ func calls. ifndef for
238 checking DISPLAY should be for _WIN32, not WINNT.
239 * gdbtk.h: pick GDBTK_PATH_SEP based on _WIN32, not WINNT.
240 * gdbtk-cmds.c (gdb_path_conv): lose "32" from cygwin_ func call,
241 change ifdef to __CYGWIN32__ instead of WINNT.
242 * {gdbtk.c, gdbtk-hooks.c}: __CYGWIN32__ refs drop the "32".
243
244 Thu Nov 12 15:20:15 1998 Jim Ingham <jingham@cygnus.com>
245
246 * gdbtk-cmds.c (gdb_cmd): Added an optional second argument to the
247 gdb_cmd, which is from_tty. This is passed to the gdb command
248 parser. It is 0 by default, and the console window passes 1.
249
250 * gdbtk-cmds.c: moved disassemble_from_exec from gdbtk.c to gdbtk-cmds.c
251 with all the other link-var'ed variables
252
253 * gdbtk-hooks.c (gdbtk_trace_find): Only run the hook functions if
254 we are called from_tty.
255
256 * gdbtk-hooks.c (gdbtk_trace_start_stop): Set the trace buttons
257 from a trace_start_command callback rather than doing it as a
258 special case in gdb_cmd.
259
260 * tracepoint.c (tstart_command, tstop_command): Add call to
261 trace_start_stop_hook here.
262
263 Wed Nov 4 12:41:42 1998 Jim Ingham <jingham@cygnus.com>
264
265 * gdbtk-cmds.c (gdb_set_bp_addr): Pass the type, enable & thread
266 to gdbtk_tcl_breakpoint.
267 * gdbtk-hooks.c (gdbtk_trace_find): Added this function. It is
268 the hook function for tfind commands.
269 * tracepoint.c (trace_find_command): Added the trace_find_hook,
270 run when you do trace_find_command.
271 * tracepoint.h: Define the trace_find_hook.
272
273 1998-11-03 Keith Seitz <keiths@cygnus.com>
274
275 * v850ice.c (do_gdb): New function.
276 (ice_stepi): Use do_gdb to step properly.
277 (ice_nexti): Use do_gdb to step properly.
278 (view_source): Correct call to src window's location for new version.
279
280 Mon Nov 2 11:16:10 1998 Jim Ingham <jingham@cygnus.com>
281
282 * gdbtk-cmds (gdb_get_tracepoint_info): Demangle C++ function names.
283
284 Fri Oct 30 11:22:23 1998 Jim Ingham <jingham@cygnus.com>
285
286 * gdbtk-cmds (gdb_get_tracepoint_info): Fixed typo.
287
288 Wed Oct 28 16:19:02 1998 Martin M. Hunt <hunt@cygnus.com>
289
290 * gdbtk-cmds.c (gdb_set_bp_addr): For callback, send full
291 pathname instead of just basename.
292
293 Wed Oct 28 10:14:33 1998 Jim Ingham <jingham@cygnus.com>
294
295 * gdbtk-cmds.c: Made the bdtypes & bpdisp arrays shared so they
296 could be used in gdbtk-hooks.c (breakpoint_notify).
297 Also fixed a few error messages to actually print the bp number
298 rather that #%d...
299 * gdbtk-hooks.c (breakpoint_notify): pass more of the information
300 about the breakpoint into the Tcl command, so it does not have to
301 try and guess about information we have on the C side.
302 * gdbtk.h: Export the bptypes & pbdisp arrays.
303
304 1998-10-13 Jason Molenda (jsm@bugshack.cygnus.com)
305
306 * gdbtk.c, gdbtk-cmds.c: Cast parameters passed to make_cleanup to
307 use the new make_cleanup_func typedef.
308
309 1998-10-08 Keith Seitz <keiths@cygnus.com>
310
311 * gdbtk-hooks.c (gdbtk_add_hooks): Install a hook for
312 (new) file_changed_hook.
313 (gdbtk_exec_file_changed): Rename to gdbtk_exec_file_display
314 to mimic hook's name.
315 (gdbtk_file_changed): New hook function.
316
317 Tue Oct 6 22:57:13 1998 Andrew Cagney <cagney@b1.cygnus.com>
318
319 * configure.in (links): Link gdbtcl2 directory instead of gdbtcl.
320
321 Mon Oct 5 00:34:00 1998 Martin M. Hunt <hunt@cygnus.com>
322
323 * gdbtk-cmds.c (gdb_set_bp_addr): New command. Sets a
324 breakpoint at an address. Use this instead of gdb_cmd "break"
325 because the syntax of the break command is broken and doesn't
326 allow you to create a thread-specific BP at an address. Also
327 this is faster.
328
329 Sun Oct 4 22:35:47 1998 Martin M. Hunt <hunt@cygnus.com>
330
331 * gdbtk-cmds.c (gdb_set_bp): Add an optional thread number.
332 (gdb_find_bp_at_line): New function. Returns a list of bpnums
333 at the specified line number.
334 (gdb_find_bp_at_addr): New function. Returns a list of bpnums
335 at an address..
336
337 1998-10-02 Keith Seitz <keiths@cygnus.com>
338
339 * gdbtk-hooks.c (gdbtk_exec_file_changed): New function which handles
340 exec_file changes.
341 (gdbtk_add_hooks): Define exec_file_display_hook (to gdbtk_exec_file_changed)
342
343 * gdbtk-cmds.c (gdb_stop): target_stop is ALWAYS defined, so
344 compare against something a little more meaningful (target_ignore).
345
346 1998-09-24 Keith Seitz <keiths@cygnus.com>
347
348 * gdbtk.c (gdbtk_wait): Don't run the timer for ice targets.
349
350 * v850ice.c (WM_ADDR_TO_SYM): New message.
351 (v850ice_wndproc): Add handler for WM_SOURCE.
352 (v850ice_wait): Call the ui_loop_hook occasionally.
353 (ice_cont): Acknowledge message before doing anything.
354 (ice_stepi): Ack message and let gdbtk do stepping.
355 (ice_nexti): Ack message and let gdbtk do stepping.
356 (view_source): New function ICE calls to display source code.
357
358 start-sanitize-ide
359 Mon Sep 21 13:33:27 1998 Drew Moseley <dmoseley@cygnus.com>
360
361 * Makefile.in: Added sanitize markers around IDE code
362 * configure.in (host_libs): Added sanitize markers around IDE code
363 * configure: Regenerated configure from configure.in
364
365 end-sanitize-ide
366 1998-09-18 Keith Seitz <keiths@cygnus.com>
367
368 * gdbtk-cmds.c (get_frame_name): Demangle function names, too.
369
370 Thu Sep 10 22:10:29 1998 Jim Ingham <jingham@cygnus.com>
371
372 *gdbtk-cmds.c (gdb_disassemble): Make sure the symtab's linetable is not
373 null before trying to use it...
374
375 1998-09-02 Keith Seitz <keiths@cygnus.com>
376
377 * gdbtk-cmds.c (gdb_cmd): Do not run the timer when downloading --
378 the ui_progress_hook that has been installed will actually
379 update the gui for us.
380
381 Mon Aug 31 15:42:10 1998 Tom Tromey <tromey@cygnus.com>
382
383 * gdbtk-hooks.c (context_hook): Don't define.
384
385 1998-08-31 Keith Seitz <keiths@cygnus.com>
386
387 * gdbtk-cmds.c (gdb_listfuncs): When stripping out "global destructors"
388 and "global constructors", do not append any elements to the result.
389
390 Sun Aug 30 00:49:18 1998 Martin M. Hunt <hunt@cygnus.com>
391
392 * gdbtk-cmds.c (Gdbtk_Init): Link C variable gdb_context
393 with tcl variable gdb_context_id.
394
395 * gdbtk-hooks.c (gdbtk_context_change): Implement new hook called
396 context_hook. Called when threads change.
397
398 * gdbtk.c: Initialize gdb_context.
399
400 * gdbtk.h: Declare gdb_context.
401
402 * infrun (wait_for_inferior): Call context_hook.
403
404 * thread.c (thread_command): Call context_hook.
405
406 * defs.h: Declare context_hook.
407
408 Fri Aug 28 12:14:49 1998 Martin M. Hunt <hunt@cygnus.com>
409
410 * gdbtk-cmds.c (gdb_loadfile): Open the file after doing
411 the symtab lookup and calling symtab_to_filename(). This
412 makes GDBtk work with the GDB "dir" command.
413
414 1998-08-18 Keith Seitz <keiths@cygnus.com>
415
416 * gdbtk-hooks.c (gdbtk_add_hooks): Set selected_frame_level_changed_hook.
417 (gdbtk_selected_frame_changed): New function.
418
419 * gdbtk-cmds.c (Gdbtk_Init): Add command gdb_stack into interpreter.
420 Link gdb's global selected_frame_level with interpreter global
421 gdb_selected_frame_level.
422 (gdb_stack): New function to faciltate speedier backtraces from
423 gdbtk.
424 (get_frame_name): New helper function for gdb_stack.
425
426 Tue Aug 18 15:42:40 1998 Martin M. Hunt <hunt@cygnus.com>
427
428 * gdbtk-cmds.c (gdb_listfuncs): Strip out global constructors
429 and destructors from the function list.
430
431 start-sanitize-ide
432 Thu Aug 13 15:15:59 1998 Drew Moseley <dmoseley@cygnus.com>
433
434 * Makefile.in (FOUNDRY_LIB_BASE): Added the Foundry SDK code that allows
435 gdbtk to be linked with the Foundry libraries provided by a prebuilt/released
436 binary version of Foundry. The libraries and header files need to come from
437 the installed location of Foundry rather than the devo subdirectories.
438 * configure.in (ENABLE_IDE): Foundry SDK additions. Added the "with-foundry-libs"
439 configure option.
440 * configure: Foundry SDK additions. Regenerated from configure.in.
441
442 end-sanitize-ide
443 Thu Aug 13 15:09:59 1998 Drew Moseley <dmoseley@cygnus.com>
444
445 * gdbtk.c (gdbtk_cleanup): added a scope-level around the contents
446 of the #ifdef so that the variable declarations in there would not
447 be illegal in a C compilation.
448
449 Mon Jul 27 13:07:16 1998 Martin M. Hunt <hunt@cygnus.com>
450
451 * gdbtk.c (gdbtk_call_command): Removed because it is now
452 in gdbtk-hooks.c
453 (null_routine): Removed.
454
455 * gdbtk-hooks.c (tracepoint_notify): Fix sprintf to
456 match number of arguments.
457
458 * gdbtk-cmds.c (gdb_loc): When calling gdb_loc with an
459 argument, call find_pc_line() to get a complete
460 symtab_and_line struct.
461
462 Fri Jul 24 14:25:43 1998 Keith Seitz <keiths@cygnus.com>
463
464 * gdbtk-cmds.c (gdb_search): Add missing NULL to switches.
465 Add missing flags to result_ptr.
466 Pass along any errors caused by getting the list of files from
467 tcl.
468 Allocate correct amount of memory for the file list.
469 Don't do any unecessary cleanups.
470
471 Fri Jul 24 01:08:37 1998 Martin M. Hunt <hunt@cygnus.com>
472
473 * gdbtk-cmds.c (gdb_loadfile): When there are no
474 linenumbers, use only one tab.
475
476 Sat Jul 18 12:28:39 1998 Martin M. Hunt <hunt@cygnus.com>
477
478 * gdbtk.c (gdbtk_cleanup): Add call to tcl function
479 gdbtk_cleanup. We need this so the GUI gets to clean
480 up no matter how GDB exits.
481
482 Wed Jul 1 13:10:58 1998 Jim Ingham <jingham@cygnus.com>
483
484 * Moved gdbtk_hooks.c & gdbtk_cmds.c to gdbtk-hooks.c &
485 gdbtk-cmds.c to comply with the gdb conventions. Changed the
486 configure & makefile to reflect the change...
487
488 Wed Jul 1 11:07:21 1998 Jim Ingham <jingham@cygnus.com>
489
490 * gdbtk.c: removed all the commands and hooks from this file so
491 now it contains only the startup code.
492 * gdbtk.c (gdbtk_init): Fixed a bug in the startup code on Windows
493 that caused gdbtk not to find the share directory unless
494 GDBTK_LIBRARY was set.
495 * gdbtk_cmds.c: New file - this contains all the Tcl commands that
496 gdb defines. All the old commands were moved here, the
497 string-based commands were converted to object commands, and the
498 object-based commands were all converted to uniformly use the
499 call_wrapper. A new function, Gdbtk_Init was added to centralize
500 initializing the gdb package.
501 * gdbtk_hooks.c: New file - All the hooks were moved here, and a new
502 function, gdbtk_add_hooks was added to centralize adding all these
503 hook functions. gdbtk_fputs was also modified to handle the new
504 result_ptr structure. See the comments in gdbtk.h for more
505 details.
506 * gdbtk.h: New file - this contains all the defines and globals
507 shared by gdbtk.c, gdbtk_cmds.c & gdbtk_hooks.c
508 * Makefile.in, configure.in & configure: mutatis mutandi for the
509 new files.
510
511
512 Mon Jun 29 11:49:17 1998 Keith Seitz <keiths@cygnus.com>
513
514 * main.c (main): Don't include gdbtk test code if GDBTK is
515 not defined by configure.
516
517 * configure.in: When enabling gdbtk, add "-DGDBTK" to ENABLE_CFLAGS.
518
519 * configure: Regenerate.
520
521 Fri Jun 26 13:56:07 1998 Keith Seitz <keiths@cygnus.com>
522
523 * gdbtk.c: Change all references to static global "interp" to
524 "gdbtk_interp" and export this global.
525 (gdbtk_init): If gdbtk_source_filename is not NULL, source this file
526 into the interpreter when it goes idle.
527 Add new command "gdb_search".
528 (gdb_search): New function which searches the symbol table.
529 (gdbtk_test): New function called by main when the --tclcommand
530 option is used.
531
532 * main.c (main): Add a new option "--tclcommand" which is used
533 by the testsuite to source a file into the interpreter when it
534 goes idle.
535
536 Sun Jun 21 09:31:12 1998 Ron Unrau (runrau@cygnus.com)
537
538 * gdbtk.c (gdb_set_bp): Use new interface.
539
540 Wed Jun 17 19:12:23 1998 Jeff Holcomb <jeffh@cygnus.com>
541
542 * Makefile.in (install-only): Install tracing help files.
543
544 Mon Jun 15 13:18:21 1998 Jim Ingham <jingham@cygnus.com>
545
546 * gdbtk.c (gdbtk_init): Add elements to the auto_path AS LIST
547 ELEMENTS. This allows gdbtk to work when installed in a directory
548 which has a space in the path. D. Moseley pointed out the bug.
549
550
551 Tue Jun 9 14:10:46 1998 Keith Seitz <keiths@cygnus.com>
552
553 * gdbtk.c (gdb_get_vars_command): Return static variables and
554 variables stored in registers.
555
556 * main.c (main): Call pre/post_add_symbol_hook's when loading
557 executables and symbol files.
558
559 Fri Jun 5 00:16:22 1998 Martin M. Hunt <hunt@cygnus.com>
560
561 * gdbtk.c (gdbtk_init): Change all references to
562 GDBTK_IDE to IDE_ENABLED.
563
564 Thu Jun 4 18:31:53 1998 Martin M. Hunt <hunt@cygnus.com>
565
566 * gdbtk.c (gdbtk_init): Initialize tkTable.
567
568 Thu Jun 4 10:15:03 1998 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
569
570 * gdbtk.c: merged:
571
572 - Elena Zannoni <ezannoni@kwikemart.cygnus.com>
573 (call_obj_wrapper): in case of error, copy the
574 error message from the result to the error_string.
575 (gdbtk_fputs): add comments.
576 (gdb_actions_command): call validate_actionline when installing the
577 tracepoint, to do the syntax checking of the actions for us.
578 - Elena Zannoni <ezannoni@kwikemart.cygnus.com>
579 (gdb_get_trace_frame_num): new function to get the
580 trace frame number from gdb.
581 (gdbtk_init): added new command gdb_get_trace_frame_num.
582 - Jim Blandy <jimb@zwingli.cygnus.com>
583 (struct wrapped_call_objs): Change the `func' member to
584 be a Tcl_ObjCmdProc, not an Tcl_CmdProc, since it accepts a vector
585 of objects as arguments. Change the object vector to be const,
586 since that's what all the users of this structure seem to expect.
587 (call_obj_wrapper): Cast clientData properly before storing it in
588 the wrapped_args structure.
589
590 Thu May 28 17:19:14 1998 Keith Seitz <keiths@cygnus.com>
591
592 * gdbtk.c (_initialize_gdbtk): Get rid of the console. Patch from
593 Chris Faylor (cgf@cygnus.com).
594
595 * configure.in: Link cygwin32 with subsystem console.
596
597 * configure: Regenerated
598
599 Sun May 24 14:00:24 1998 Keith Seitz <keiths@cygnus.com>
600
601 * ser-unix.c (wait_for): Do not reset timeout_remaining for cygwin32 so that
602 we can use this member to track real timeouts.
603 (hardwire_readchar): Modify for cygwin32 so that we only ever use a real
604 system timeout of one second. Track the "real" timeout as a series of these
605 one second timeouts.
606 Call ui_loop_hook to keep the gui alive.
607
608 * top.c: Define new hook for cygwin32, "ui_loop_hook".
609
610 * gdbtk.c (gdbtk_init): Add ui_loop_hook for CygWin32 to work around
611 update problems.
612
613 Thu May 21 13:56:24 1998 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
614
615 * gdbtk.c: reinserted the changes that were accidentally deleted:
616 (_initialize_gdbtk): Use correct device names in
617 cygwin-specific call (cosmetic change).
618 (gdbtk_ignorable_warning): removed va_list parameter,
619 which was unused.
620 (_initialize_gdbtk): add cygwin32 specific code to
621 allow `gdb -nw' to work when specified specified from a windows
622 console-mode command line.
623
624 1998-05-19 Jim Blandy <jimb@zwingli.cygnus.com>
625
626 * gdbtk.c (struct wrapped_call_objs): Change the `func' member to
627 be a Tcl_ObjCmdProc, not an Tcl_CmdProc, since it accepts a vector
628 of objects as arguments. Change the object vector to be const,
629 since that's what all the users of this structure seem to expect.
630 (call_obj_wrapper): Cast clientData properly before storing it in
631 the wrapped_args structure.
632
633 Wed May 13 11:12:58 1998 James Ingham <jingham@leda.cygnus.com>
634
635 * gdbtk.c: Fixed a goof in the definition of the gdb_get_args &
636 gdb_get_locals Tcl commands. Moved the previous ChangeLog entry
637 from ChangeLog to ChangeLog-gdbtk (here)...
638
639 Tue May 12 13:29:20 1998 Jeff Holcomb <jeffh@cygnus.com>
640
641 * Makefile.in (install-only): Add images/icons.txt and
642 images2/icons.txt to files that need to be installed.
643
644 Tue May 12 12:03:16 1998 James Ingham <jingham@leda.cygnus.com>
645
646 * gdbtk.c: Add an object call wrapper for the new Tcl_Obj based
647 commands. This way the obj commands will also go through
648 catch_errors. This is just a bandaid while I rewrite the
649 string-based commands to use the object format.
650
651 Tue May 5 09:30:25 1998 Christopher Faylor <cgf@cygnus.com>
652
653 * gdbtk.c (_initialize_gdbtk): Use correct device names in
654 cygwin-specific call (cosmetic change).
655
656 Wed Apr 29 15:53:16 1998 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
657
658 * gdbtk.c (gdbtk_ignorable_warning): removed va_list parameter,
659 which was unused.
660
661 Tue Apr 28 19:41:33 1998 Tom Tromey <tromey@cygnus.com>
662
663 * Makefile.in (GDBTKLIBS): New macro.
664 (INSTALLED_LIBS): Include GDBTKLIBS.
665 (CLIBS): Likewise.
666 * configure: Rebuilt.
667 * configure.in: Put Tcl/Tk libs into GDBTKLIBS, not LIBS.
668 (GDBTKLIBS): AC_SUBST.
669
670 Thu Apr 23 19:01:05 1998 Keith Seitz <keiths@onions.cygnus.com>
671
672 * Makefile.in (install-only): Install help files.
673
674 Wed Apr 22 21:17:35 1998 Christopher Faylor <cgf@cygnus.com>
675
676 * gdbtk.c (_initialize_gdbtk): add cygwin32 specific code to
677 allow `gdb -nw' to work when specified specified from a windows
678 console-mode command line.
679
680 Wed Apr 15 11:23:53 1998 Stan Shebs <shebs@andros.cygnus.com>
681
682 * gdbtcl: Remove directory and contents, this version of
683 the interface is obsolete.
684
685 Mon Apr 13 16:17:52 1998 Martin M. Hunt <hunt@cygnus.com>
686
687 * gdbtk.c (gdb_loadfile): Change fstat() call to stat().
688 Needed because you can't convert a FILE* to an fd.
689
690 Mon Apr 13 16:28:07 1998 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
691
692 * gdbtk.c: (perror_with_name_wrapper) new function to call
693 perror_with_name safely.
694 (gdb_loadfile) added source vs. executable time stamp check.
695 (gdbtk_warning) new function to pass a warning message to the gui.
696 (gdbtk_ignorable_warning) new function to pass a warning
697 to the gui. Used only for the src. vs. exec check.
698 (gdbtk_init) added warning_hook
699 added include <sys/stat.h>
700
701 Mon Apr 13 12:58:26 1998 Keith Seitz <keiths@onions.cygnus.com>
702
703 * gdbtk.c (gdbtk_start_timer): Include on all platforms. Decrease
704 timer interval a little.
705 (gdbtk_stop_timer): Include on all platforms.
706 (gdbtk_wait): No more signals! Use a timer on all platforms to keep the
707 GUI alive.
708 (gdbtk_init): Remove FIOASYNC and all x_fd references. Now using timers
709 on all platforms.
710
711 Fri Apr 10 15:48:10 1998 Jason Molenda (crash@bugshack.cygnus.com)
712
713 * gdbtk.c (gdb_listfiles): Allocate space for 'files' dynamically.
714
715 Thu Apr 9 14:20:59 1998 Martin M. Hunt <hunt@cygnus.com>
716
717 * gdbtk.c (gdbtk_init): Remove redundant variable "IDE".
718
719 Tue Apr 7 15:13:58 1998 Stan Shebs <shebs@andros.cygnus.com>
720
721 * gdbtk.tcl: Remove, no longer used.
722
723 Tue Apr 7 12:49:45 1998 Keith Seitz <keiths@onions.cygnus.com>
724
725 * gdbtk.c (gdb_cmd): NEVER call the busy, update, and idle hooks.
726
727 Tue Mar 31 15:42:06 1998 Keith Seitz <keiths@onions.cygnus.com>
728
729 * gdbtk.c (gdb_loadfile): Don't use the return result from
730 sprintf, which returns a char * under SunOS4.
731
732 Tue Mar 31 17:18:43 1998 Ian Lance Taylor <ian@cygnus.com>
733
734 * configure.in: Add $(LIBIDETCL) as well as $(LIBIDE) if
735 --enable-ide.
736 * Makefile.in (IDE_CFLAGS_X): Add -I for libidetcl/src.
737 (LIBIDETCL): Define.
738 * configure: Rebuild.
739
740 Sun Mar 29 21:19:46 1998 Keith Seitz <keiths@onions.cygnus.com>
741
742 * gdbtk.c (gdb_get_tracepoint_info): Change formatting of address.
743 (tracepoint_exists): Remove code which confuses assembly traces.
744
745 Sat Mar 28 12:13:23 1998 Keith Seitz <keiths@onions.cygnus.com>
746
747 * gdbtk.c (gdb_cmd): If argc > 2, assume that the busy and idle hooks
748 should not be called.
749
750 Thu Mar 26 22:29:28 1998 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
751
752 * gdbtk.c: (gdb_trace_status) new function.
753 (gdbtk_init) added command "gdb_is_tracing".
754 (tracepoint_notify) added passcount information.
755
756 Thu Mar 26 12:00:35 1998 Martin M. Hunt <hunt@cygnus.com>
757
758 * gdbtk.c (gdbtk_fputs): Insert fencepost.
759 (gdb_loc): Correct pc calculation.
760 (gdb_immediate_command): Return if a load is in progress.
761 (gdb_cmd): Return if a load is in progress.
762 (target_stop_wrapper): New function.
763 (gdb_stop): Call target_stop_wrapper.
764 (x_event): Add fencepost and optimize load cancel check.
765 (gdbtk_start_timer): Set up structs only once.
766 (gdbtk_stop_timer): Just use preset structs to set timer parameters.
767 (gdb_loadfile): If file cannot be loaded, return error message.
768 (gdb_loadfile): Add space before tab so that lines without
769 a '-' can later be changed to have one.
770
771 Wed Mar 25 14:08:51 1998 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
772
773 * gdbtk.c (gdbtk_pre_add_symbol): Use Tcl_merge to form Tcl commands.
774
775 Mon Mar 23 13:41:39 1998 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
776
777 * gdbtk.c (gdb_get_mem): Rewrite to fetch entire contents
778 of the memory window at once.
779
780 Sat Mar 21 19:34:49 1998 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
781
782 Merged changes from Foundry: list follows by author:
783
784 - Tom Tromey <tromey@cygnus.com>
785
786 * Makefile.in (gdbres.o): New target.
787 (WINDRES): New define.
788 * configure: Rebuilt.
789 * configure.in (WINDRES): Define.
790 (CONFIG_OBS): Include gdbres.o on Windows.
791 * gdbtool.ico: New file.
792 * gdb.rc: New file.
793 * gdbtk.c (gdbtk_init): Call ide_create_messagebox_command.
794 (gdbtk_cleanup): Call ide_interface_deregister_all.
795 (gdbtk_init): Pass event handle to cleanup.
796 (TclDebug): Use Tcl_Merge to construct command.
797 (gdbtk_init): Call ide_create_cygwin_path_command.
798
799 - Martin M. Hunt <hunt@cygnus.com>
800
801 * gdbtk.c (gdb_set_bp): Set addr_string for bp.
802 (gdb_get_breakpoint_info): Demangle function
803 names in breakpoint info.
804 Include "demangle.h".
805 (gdb_loc, gdb_listfuncs): Demangle C++
806 function names.
807 (gdb_set_bp): Properly quote filename to fix
808 problems with spaces. Send pc back as a hex string.
809 (gdb_listfuncs): Remove debugging line.
810 Turn off some debugging lines.
811 (breakpoint_notify): Return correct line number.
812 (gdb_get_breakpoint_info): Return correct line number.
813 (gdb_set_bp): New function to provide a better way to
814 set breakpoints.
815 (gdbtk_readline, gdbtk_readline_begin): Memory
816 allocated by tcl needs to be freed by Tcl_Free().
817 (find_file_in_dir): Deleted.
818 (gdb_find_file_command): Call full_lookup_symtab().
819 (gdb_listfuncs): Call full_lookup_symtab().
820 (full_lookup_symtab): New function. Like lookup_symtab
821 except handles multiple files with the same basename,
822 full pathnames, and always sets symtab->fullname.
823 (gdb_loadfile): Call full_lookup_symtab(). Clear
824 realloc'd memory.
825 (gdb_loadfile): Don't tag lines without source.
826 Tag source lines with source_tag.
827 (gdb_find_file_command, find_file_in_dir):
828 Rewrite. Now searches symtabs and psymtabs for a match
829 on the partial or full filename. Returns the full pathname.
830 (gdb_loadfile): Realloc additional memory
831 if someone loads in a file with more than 160,000
832 lines. I don't know if this really works because
833 I don't have enough memory to test it.
834 (gdb_sourcelines): Deleted.
835 (gdb_loadfile): New function. Takes a text widget
836 and loads it with the contents of a file. Marks
837 and tags source lines.
838 (pc_changed): New function.
839 (get_pc_register): Returns the value of
840 the PC to GDB.
841 (gdb_loc): If looking on the stack, return
842 real pc along with calling source line.
843 (gdb_loc): Return "" instead of "N/A" if
844 filename is not found.
845 (gdb_get_breakpoint_info): Same.
846 (get_register): For Natural mode, set format to 0.
847 Minor bugfixes from keiths.
848 (TclDebug): New function for debugging use.
849 (gdb_loc): Return correct PC for frames
850 that are not the innermost frame.
851 (gdb_listfiles): Rewritten to use object
852 API. Now takes an optional dirname which will cause
853 only files in that directory or its subdirectories
854 to be returned. Now returns basenames instead of
855 full pathnames.
856 (gdb_cmd): Set/reset load_in_progress flag.
857 (call_wrapper): Don't pop up dialog for errors in
858 downloads; just abort download.
859 (gdbtk_load_hash): Set return value correctly.
860
861 - Keith Seitz <keiths@onions.cygnus.com>
862
863 * gdbtk.c (gdbtk_init): Define the ui_loop_hook so that it can be
864 called by routines which might block, allowing us to update the GUI.
865 (gdbtk_wait): Move timer calls to annotation hooks.
866 (gdbtk_init): Define the annotation hooks.
867 (gdbtk_annotate_starting): New function for cygwin32 hosts.
868 (gdbtk_annotate_stopped): New function for cygwin32 hosts.
869 (gdbtk_annotate_exited): New function for cygwin32 hosts.
870 (gdbtk_annotate_signalled): New function. for cygwin32 hosts.
871 (gdbtk_init): Use gdbtk_print_frame_info hook.
872 (gdbtk_print_frame_info): New function which sets current_source_symtab
873 based on the given symtab and line info.
874 (gdb_immediate_command): New function which does
875 not buffer any
876 output. (Contrast to gdb_cmd.)
877 (gdb_prompt_command): New function to return gdb's prompt.
878 (find_file_in_dir): New functon which searches source paths
879 for a given filename.
880 (gdb_find_file): New function which returns path to given file -- uses
881 find_file_in_dir.
882 (gdbtk_init): Install "gdb_immediate", "gdb_find_file", and
883 "gdb_prompt"
884 commands into interpreter.
885
886 - Ian Lance Taylor <ian@cygnus.com>
887
888 * gdbtk.c (gdbtk_timer_going): If __CYGWIN32__, new static
889 variable.
890 (gdb_cmd): If __CYGWIN32__, if executing the load command, call
891 gdbtk_start_timer and gdbtk_stop_timer.
892 (call_wrapper): If __CYGWIN32__, if the timer is going, turn it
893 off. Clear load_in_progress.
894 (x_event): If load_in_progress, quit if download_cancel_ok.
895 (gdbtk_start_timer): Set gdbtk_timer_going.
896 (gdbtk_stop_timer): Clear gdbtk_timer_going.
897 (gdbtk_wait): Call x_event.
898 (gdbtk_init): Call ide_create_win_grab_command if
899 __CYGIN32__.
900 (gdb_clear_file): Clear stop_pc.
901
902 Wed Mar 4 16:50:18 1998 Jason Molenda (crash@bugshack.cygnus.com)
903
904 * gdbtk.c (gdb_listfiles): Fix thinko in last change.
905
906 Wed Mar 4 15:34:49 1998 Jason Molenda (crash@bugshack.cygnus.com)
907
908 * gdbtk.c (gdb_listfiles): Allocate space for 'files' dynamically.
909
910 Tue Feb 10 17:50:37 1998 Keith Seitz <keiths@onions.cygnus.com>
911
912 * gdbtk.c (gdbtk_modify_tracepoint): Define new tracepoint modification hook.
913 (gdbtk_print_frame_info): Define this hook so that current_source_symtab
914 is set properly.
915 (gdb_actions_command): Use free_actions () from tracepoint.c/h.
916
917 Mon Jan 26 11:37:55 1998 Keith Seitz <keiths@onions.cygnus.com>
918
919 * gdbtk.c (gdb_actions_command): Make note of next action
920 before freeing all references to it.
921
922 Sat Jan 24 23:52:08 1998 Martin M. Hunt <hunt@cygnus.com>
923
924 * gdbtk.c: Merge from Foundry branch.
925 (TclDebug): New debugging function.
926 (gdb_loc): For frames, find address of calling function
927 instead of whatever is on the stack (usually the next
928 instruction).
929 (gdb_listfiles): Takes an optional pathname argument and
930 returns an alphabetized list of basenames of files in the
931 path.
932
933 Wed Jan 22 10:37:02 1998 Keith Seitz <keiths@onions.cygnus.com>
934
935 * symfile.c: Define two new hooks for symbol reading:
936 "pre_add_symbol_hook" and "post_add_symbol_hook". These hooks
937 are called before we begin reading symbols, and after we finish.
938 (generic_load): Use new symbol reading hooks and get rid of
939 compiler warning.
940
941 * gdbtk.c (gdbtk_init): Add hooks for pre- and post-symbol reading.
942 (gdbtk_pre_add_symbol): New function: the pre-add-symbol hook.
943 (gdbtk_post_add_symbol): New function: the post-add-symbol hook.
944 (find_file_in_dir): New function. Moved the guts of gdb_find_file_command
945 into here to allow its use by others.
946 (gdb_loc): Use find_file_in_dir to return the real path to the file
947 (or "N/A" if we can't find it).
948
949 * configure.in (TIX_LIB_EXT): Define new variable for those special cases
950 when TCL_SHLIB_SUFFIX is not enough to specify the dependency.
951
952 * configure: Regenerate.
953
954 Fri Jan 23 07:47:06 1998 Fred Fish <fnf@cygnus.com>
955
956 * Makefile.in (uninstall): Remove installed gdbtcl dir, if one
957 was installed.
958
959 Thu Jan 15 12:42:28 1998 Keith Seitz <keiths@onions.cygnus.com>
960
961 * gdbtk.c (gdb_immediate_command): New function which does not buffer any
962 output. (Contrast to gdb_cmd.)
963 (gdbtk_init): Install "gdb_immediate" command into interpreter.
964
965 Wed Jan 14 16:38:44 1998 Keith Seitz <keiths@pizza.cygnus.com>
966
967 * configure.in (--enable-gdbtk): If tcl was built with --enable-shared,
968 use TCL_SHLIB_SUFFIX to specify the suffix of the library file so that
969 we don't expect to see "libfoo.a" instead of "libfoo.{so,sl, etc}".
970
971 * configure: Regenerate.
972
973 Wed Dec 31 16:50:26 1998 Keith Seitz (keiths@onions.cygnus.com)
974
975 * gdbtk.c (gdb_actions_command): extract and save step count
976 from "while-stepping" command
977
978 Tue Dec 16 21:16:42 1997 Ian Lance Taylor <ian@cygnus.com>
979
980 * Makefile.in (LIBGUI): New variable.
981 (GUI_CFLAGS_X): New variable.
982 (IDE_CFLAGS): Add $(GUI_CFLAGS_X).
983 * configure.in: Add $(LIBGUI) to TCL_LIBS and CONFIG_DEPS.
984 * configure: Rebuild.
985
986 Wed Dec 10 13:16:45 1997 Keith Seitz <keiths@onions.cygnus.com>
987
988 * gdbtk.c (gdb_get_tracepoint_info): Use info in struct
989 symtab_and_line (not struct tracepoint) so that we get the
990 real line info for an address. Arrange data more like
991 gdb_get_breakpoint_info.
992 (tracepoint_notify): Use info in struct symtab_and_line again.
993 (gdbtk_init): Add command "gdb_get_tracepoint_list" into
994 interpreter.
995 (gdb_get_tracepoint_list): New function that aids the source
996 window in displaying tracepoints when the file changes.
997
998 Fri Dec 5 10:31:23 1997 Keith Seitz <keiths@pizza.cygnus.com>
999
1000 * gdbtk.c (gdbtk_init): Add gdb_find_file into interpreter.
1001 (gdb_find_file_command): New function which searches source path
1002 to find the real full filename of a file.
1003
1004 Mon Dec 1 10:19:44 1997 Keith Seitz <keiths@onions.cygnus.com>
1005
1006 * gdbtk.c: Move include of "guitcl.h" back out of IDE ifdef.
1007 (gdbtk_init): Move ide_initialize_paths out of IDE ifdef.
1008
1009 * configure.in (TCL_LIBS, CONFIG_DEPS): Add IDE libraries for all
1010 builds.
1011 (CONFIG_OBS): Remove tracepoint.o, which should always be included.
1012
1013 * configure: regenerate
1014
1015 * Makefile.in (install-only): ALWAYS install the new gdbtk
1016 (REMOTE_OBS): add tracepoint.o
1017
1018 Thu Nov 27 09:07:18 1997 Michael Meissner <meissner@cygnus.com>
1019
1020 * configure.in ({TCL_LIBS,CONFIG_DEPS}): Don't add IDE libraries
1021 if not --enable-ide.
1022 (CONFIG_OBS): Add tracepoint.o to list if --enable-gdbtk.
1023 * configure: Regenerate.
1024
1025 * gdbtk.c (gdb_get_breakpoint_info): Add missing filename
1026 argument.
1027 (toplevel): Move include of guitcl.h into #ifdef IDE region.
1028 (gdbtk_init): Move ide_initialize_paths call into #ifdef IDE
1029 section.
1030
1031 * Makefile.in (gdbtk.o): Update dependencies.
1032
1033 Wed Nov 26 15:02:43 1997 Keith Seitz <keiths@onions.cygnus.com>
1034
1035 * gdbtk.c (gdb_loc): symtab_to_filename can return NULL.
1036 (breakpoint_notify): Ditto.
1037 (gdb_get_breakpoint_info): Ditto.
1038
1039 Wed Nov 26 11:33:09 1997 Keith Seitz <keiths@onions.cygnus.com>
1040
1041 Merge in code from Foundry branch:
1042
1043 * Makefile.in (install-only): install the new gdbtk, not the old
1044
1045 * gdbtk.c (gdbtk_call_command): also run idle hooks for class_trace
1046 commands
1047 (gdbtk_init): Add new commands "gdb_get_locals", "gdb_get_args",
1048 "gdb_get_function", "gdb_get_line", "gdb_get_file",
1049 "gdb_tracepoint_exists", "gdb_get_tracepoint_info", "gdb_actions",
1050 and "gdb_prompt".
1051 (gdb_get_vars_command): New function.
1052 (gdb_get_line_command): New.
1053 (gdb_get_file_command): New.
1054 (gdb_get_function_command): New.
1055 (gdb_get_tracepoint_info): New.
1056 (gdbtk_create_tracepoint): New.
1057 (gdbtk_delete_tracepoint): New.
1058 (tracepoint_notify): New.
1059 (tracepoint_exists): New.
1060 (gdb_actions_command): New.
1061 (gdb_tracepoint_exists_command): New.
1062 (gdb_prompt_command): New.
1063
1064 Thu Nov 13 18:15:54 1997 Ian Lance Taylor <ian@cygnus.com>
1065
1066 * gdbtk.c: Move include of gdbcore.h to top of file.
1067 (close_bfds): New static function if _WIN32.
1068 (gdbtk_readline): Call close_bfds.
1069 (call_wrapper, tk_command_loop): Likewise.
1070 (gdb_clear_file): New static function.
1071 (gdbtk_init): Create gdb_clear_file Tcl command.
1072
1073 Wed Nov 12 14:58:39 1997 Jeff Holcomb <jeffh@cygnus.com>
1074
1075 * gdbtk.c: gdbtk_load_hash and ui_load_progress_hook return an
1076 int result.
1077 (gdbtk_load_hash): download hash routine returns an int result.
1078
1079 Mon Nov 10 15:11:51 1997 Ian Lance Taylor <ian@cygnus.com>
1080
1081 * gdbtk.c (gdbtk_init): Call ide_create_shell_execute_command if
1082 __CYGWIN32__.
1083 * configure.in: Add -lshell32 to WIN32LIBS on cygwin32.
1084 * configure: Rebuild.
1085
1086 Sun Nov 9 16:25:34 1997 Tom Tromey <tromey@cygnus.com>
1087
1088 * gdbtk.c (gdbtk_init): Run ide_create_help_command.
1089
1090 Tue Oct 28 17:31:47 1997 Martin M. Hunt <hunt@cygnus.com>
1091
1092 * gdbtk.c (gdbtk_init): Call ide_create_winprint_command.
1093
1094 Thu Oct 23 15:53:37 1997 Ian Lance Taylor <ian@cygnus.com>
1095
1096 * configure.in: Add -lgdi32 to WIN32LIBS when linking gdbtk on
1097 cygwin32.
1098 * configure: Rebuild.
1099
1100 Wed Oct 22 21:32:54 1997 Martin M. Hunt <hunt@cygnus.com>
1101
1102 * gdbtk.c (gdbtk_init): Create sizebox command on Windows.
1103
1104 Thu Oct 9 14:33:21 1997 Ian Lance Taylor <ian@cygnus.com>
1105
1106 * gdbtk.c (gdbtk_init): Remove assertion argument from call to
1107 ide_create_window_register_command.
1108
1109 Wed Oct 1 11:09:52 1997 Tom Tromey <tromey@cygnus.com>
1110
1111 * gdbtk.c (gdbtk_init): Pass name of restore interface to
1112 ide_create_window_register_command.
1113
1114 Fri Sep 26 21:08:22 1997 Keith Seitz <keiths@pizza.cygnus.com>
1115
1116 * gdbtk.c (gdbtk_init): Initialize ui_load_progress_hook.
1117
1118 Thu Sep 25 03:05:00 1997 Martin M. Hunt <hunt@cygnus.com>
1119
1120 * gdbtk.c (gdb_load_info): New function. Returns a list
1121 of section names and sizes for an executable.
1122 (gdbtk_load_hash): Stub function to call tcl function
1123 download_hash.
1124
1125 Tue Sep 23 01:29:00 1997 Martin M. Hunt <hunt@cygnus.com>
1126
1127 * gdbtk.c (gdb_get_mem): Fix compiler warning.
1128
1129 Sun Sep 21 00:15:00 1997 Martin M. Hunt <hunt@cygnus.com>
1130
1131 * gdbtk.c (gdb_get_mem): Fix problem with ASCII dump.
1132
1133 Tue Sep 16 18:07:17 1997 Martin M. Hunt <hunt@cygnus.com>
1134
1135 * gdbtk.c (gdb_get_mem): New function. Returns
1136 a formatted memory dump with optional ASCII dump.
1137
1138 Mon Sep 8 12:48:50 1997 Ian Lance Taylor <ian@cygnus.com>
1139
1140 * gdbtk.c: Include ilutk.h if IDE.
1141 (gdb_confirm_quit, gdb_force_quit): New static functions.
1142 (gdbtk_init): Add Tcl commands gdb_confirm_quit and
1143 gdb_force_quit.
1144
1145 Mon Sep 8 03:05:33 1997 Martin M. Hunt <hunt@cygnus.com>
1146
1147 * gdbtk.c (gdb_get_breakpoint_info): Now returns the
1148 function a breakpoint is in.
1149
1150 Fri Sep 5 20:23:58 1997 Ian Lance Taylor <ian@cygnus.com>
1151
1152 * gdbtk.c (gdbtk_init): Call ide_create_exit_command.
1153
1154 Wed Sep 3 19:39:15 1997 Ian Lance Taylor <ian@cygnus.com>
1155
1156 * gdbtk.c: Include guitcl.h.
1157 (gdbtk_init): Always call ide_initialize_paths. Set the Tcl
1158 variable IDE to 1 when using the IDE. Always try using auto path
1159 to find main.tcl.
1160 * Makefile.in (IDE_CFLAGS_X): Always include libide.
1161 (LIBIDE): New variable.
1162 (IDE_X): Omit -lide.
1163 (IDE_DEPS): Omit libide.
1164 * configure.in: Add LIBIDE to TCL_LIBS and CONFIG_DEPS.
1165 * configure: Rebuild.
1166
1167 Mon Aug 25 02:28:55 1997 Keith Seitz <keiths@pizza.cygnus.com>
1168
1169 * gdbtk.c: (gdb_target_has_inferior) check if inferior_pid is non-zero
1170 before assuming that the inferior is running.
1171
1172 Mon Aug 25 01:06:48 1997 Ian Lance Taylor <ian@cygnus.com>
1173
1174 * gdbtk.c (gdbtk_start_timer): Pass third argument to setitimer.
1175 (gdbtk_stop_timer): Likewise.
1176
1177 Mon Aug 25 00:23:08 1997 Keith Seitz <keiths@pizza.cygnus.com>
1178
1179 * gdbtk.c: (gdbtk_init) create new command "gdb_target_has_execution"
1180 (gdb_target_has_execution_command) new function
1181
1182 Sun Aug 24 20:27:22 1997 Ian Lance Taylor <ian@cygnus.com>
1183
1184 * gdbtk.c (gdb_loc): If there are no symbols, just bail
1185 immediately.
1186 (tk_command_loop): Print errors encountered while running
1187 gdbtk_tcl_preloop.
1188
1189 Sun Aug 24 13:44:03 1997 Tom Tromey <tromey@cygnus.com>
1190
1191 * gdbtk.c (gdbtk_init): Run ide_create_build_command.
1192
1193 Sat Aug 23 21:53:39 1997 Ian Lance Taylor <ian@cygnus.com>
1194
1195 * gdbtk.c: If CYGWIN32, include <sys/time.h>.
1196 (x_fd): Don't define if WINNT.
1197 (gdbtk_start_timer, gdbtk_stop_timer): New static functions if
1198 CYGWIN32.
1199 (gdbtk_wait): Don't set up signal handling if WINNT. If CYGWIN32,
1200 call gdbtk_start_timer and gdbtk_stop_timer.
1201 (gdbtk_init): Don't set up signal handling or make x_fd
1202 asynchronous if CYGWIN32.
1203
1204 Fri Aug 22 15:23:15 1997 Ian Lance Taylor <ian@cygnus.com>
1205
1206 * gdbtk.c (error_string_ptr): New static variable.
1207 (gdbtk_fputs): If result_ptr is NULL, and error_string_ptr is not
1208 NULL, and we're outputting to stderr, append string to
1209 error_string_ptr rather than calling gdbtk_tcl_fputs.
1210 (call_wrapper): Set up error_string_ptr. Put both error string
1211 and normal string in Tcl result.
1212
1213 * gdbtk.c (gdbtk_init): Don't call ide_run_server_init until after
1214 gdb has initialized.
1215
1216 Thu Aug 21 19:14:38 1997 Ian Lance Taylor <ian@cygnus.com>
1217
1218 * gdbtk.c: If _WIN32, include winuser.h.
1219 (gdbtk_init): If _WIN32, use MessageBox to display an error
1220 evaluating main.tcl.
1221
1222 Thu Aug 21 00:48:00 1997 Martin M. Hunt <hunt@pern.cygnus.com>
1223
1224 * gdbtk.c (gdbtk_init): Add call to ide_run_server_init().
1225 (gdb_cmd): For the load command, don't buffer the I/O.
1226
1227 Wed Aug 20 11:41:22 1997 Martin M. Hunt <hunt@cygnus.com>
1228
1229 * gdbtk.c (gdbtk_query): Chaneg free() call to Tcl_Free().
1230
1231 Tue Aug 19 17:09:19 1997 Ian Lance Taylor <ian@cygnus.com>
1232
1233 * Makefile.in (TCL_DEPS, TK_DEPS): New variables.
1234 (ITCL_DEPS, TIX_DEPS): New variables.
1235 (IDE_DEPS): New variable.
1236 (CDEPS): Include @CONFIG_DEPS@.
1237 * configure.in: Set and substitute CONFIG_DEPS and TIX_DEPS.
1238 * configure: Rebuild.
1239
1240 Sun Aug 17 00:42:11 1997 Martin M. Hunt <hunt@cygnus.com>
1241
1242 * gdbtk.c (gdb_listfuncs): New function that returns
1243 a list of all the functions in a source file.
1244
1245 Tue Aug 12 16:35:21 1997 Ian Lance Taylor <ian@cygnus.com>
1246
1247 * Makefile.in (install-only): Install tclIndex if ENABLE_IDE.
1248
1249 Mon Aug 11 10:43:04 1997 Tom Tromey <tromey@cygnus.com>
1250
1251 * gdbtk.c (gdbtk_init): Use ide_event_init_from_environment.
1252
1253 Fri Aug 8 15:59:24 1997 Ian Lance Taylor <ian@cygnus.com>
1254
1255 * gdbtk.c (gdbtk_init): Change gdbtk_lib_tmp and gdbtk_file to be
1256 dynamically allocated, rather than fixed size. Pass "gdbtcl" to
1257 ide_initialize_paths to match installed directory name. If IDE,
1258 use auto_path to search for main.tcl.
1259 * Makefile.in (install-only): If ENABLE_IDE, install from gdbtcl2
1260 rather than gdbtcl.
1261
1262 * gdbtk.c (gdbtk_cleanup): New static function.
1263 (gdbtk_init): Add gdbtk_cleanup as a final cleanup. Uncomment
1264 call to ide_initialize_paths. If we can't initialize the event
1265 system, set GDBTK_IDE to 0 in the Tcl interpreter. Create the
1266 ide_window_register and the ide_window commands. Initialize tk,
1267 itcl, and tix after initializing the IDE.
1268
1269 * configure.in (tixdir): Update for cygwin32 case for Tcl 8.0.
1270 * configure: Rebuild.
1271
1272 Fri Aug 8 00:13:32 1997 Martin M. Hunt <hunt@cygnus.com>
1273
1274 * gdbtk.c (breakpoint_notify): Change buffer size from 100
1275 to 256 to avoid memory corruption with very long pathnames.
1276
1277 Thu Aug 7 14:08:23 1997 Martin M. Hunt <hunt@cygnus.com>
1278
1279 * configure.in: Change required Tix version to 4.1.8.0 .
1280 * configure: Rebuilt.
1281
1282 Fri Aug 1 15:21:44 1997 Ian Lance Taylor <ian@cygnus.com>
1283
1284 * gdbtk.c (Tcl_Alloc): Don't provide our own version of this if
1285 _WIN32.
1286 (Tcl_Realloc, Tcl_Free): Likewise.
1287 * configure.in: Check for cygwin32 environment. Define and
1288 substitute WIN32LIBS and WIN32LDAPP. Always set configdir to
1289 unix; setting it to win was for an old Tcl/Tk configuration
1290 scheme.
1291 * aclocal.m4 (CY_AC_LOAD_TKCONFIG): Substitute TK_BUILD_INCLUDES.
1292 * Makefile.in (TK_CFLAGS): Add @TK_BUILD_INCLUDES@.
1293 (WIN32LDAPP, WIN32LIBS): Define.
1294 (CLIBS): Add $(WIN32LIBS).
1295 (gdb): Use $(WIN32LDAPP).
1296 * configure: Rebuild.
1297
1298 Tue Jul 22 19:45:37 1997 Martin M. Hunt <hunt@cygnus.com>
1299
1300 * configure.in, aclocal.m4: Another fix to find the
1301 correct Tix library name.
1302
1303 * configure: Rebuilt.
1304
1305 Mon Jul 21 22:24:07 1997 Martin M. Hunt <hunt@cygnus.com>
1306
1307 * aclocal.m4: Search for the correct tix library.
1308
1309 Thu Jul 10 00:02:41 1997 Martin M. Hunt <hunt@cygnus.com>
1310
1311 * Makefile.in, configure.in, aclocal.m4: Add Itcl, Tix, and
1312 IDE configuration information.
1313
1314 * gdbtk.c (breakpoint_notify): Send address, linenumber and
1315 filename when a breakpoint is set. Avoids call to bp_info.
1316 (gdbtk_init): Call Tcl_FindExecutable(). Add code to handle
1317 Itcl, Tix and IDE initialization.
1318
1319 * configure: Regenerated.
1320
1321 Fri Jun 13 10:28:09 1997 Fred Fish <fnf@cygnus.com>
1322
1323 * gdbtk.c (gdbtk_init): Make truth value test explicit.
1324 Remove unused static variable "Gdbtk_Library".
1325
1326 Sat Jun 7 02:34:19 1997 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
1327
1328 * gdbtk.c (gdb_get_breakpoint_info): Add string for new
1329 enumeration del_at_next_stop to bpdisp array.
1330
1331 Tue Jun 3 15:46:51 1997 Tom Tromey <tromey@cygnus.com>
1332
1333 * Makefile.in (LIB_RUNTIME_DIR): New variable.
1334
1335 Wed May 7 19:10:19 1997 Andrew Cagney <cagney@b1.cygnus.com>
1336
1337 * gdbtk.c (wrapped_call): New function - make actual call to tk
1338 worker function.
1339 (call_wrapper): Rewrite to use top.c:catch_errors.
1340
1341 * gdbtk.c (gdb_stop): If No target_stop set quit flag and hope for
1342 best.
1343
1344 Mon Apr 21 14:00:08 1997 Doug Evans <dje@canuck.cygnus.com>
1345
1346 * gdbtk.c (gdb_disassemble): Store endian-ness in `di'.
1347
1348 Wed Apr 16 12:33:06 1997 Andrew Cagney <cagney@b1.cygnus.com>
1349
1350 * Makefile.in (install-only): Make list of gdbtcl files to install
1351 explicit - was picking up files such as ChangeLog etc.
1352 (install-only): Don't blindly create the directory.
1353
1354 Tue Apr 1 15:04:21 1997 Jason Molenda (crash@godzilla.cygnus.co.jp)
1355
1356 * configure.in (gdbtcl): Create soft-link for gdbtcl/ directory
1357 instead of gdbtk.tcl.
1358
1359 Fri Mar 28 17:04:02 1997 Jason Molenda (crash@godzilla.cygnus.co.jp)
1360
1361 * Makefile.in (gdbtk.o): look for GDBTK_LIBRARY in $(datadir) by
1362 default, not $(srcdir).
1363
1364 Wed Mar 19 15:16:17 1997 Martin M. Hunt <hunt@onions.cygnus.com>
1365
1366 * Makefile.in: Install gdbtcl dir instead of gdbtk.tcl.
1367
1368 * gdbtk.c: Added some ifdefs for Windows. Changed GDBTK_FILENAME
1369 to GDBTK_LIBRARY, which is now a path to search.
1370 (gdb_path_conv): New function. Convert Cygwin32 pathname to
1371 DOS-style pathname.
1372
1373 * {aclocal.m4,configure.in}: Changes for Windows builds.
1374
1375 * configure: Rebuilt.
1376
1377 Fri Mar 14 10:01:29 1997 Tom Tromey <tromey@cygnus.com>
1378
1379 * configure: Regenerated.
1380 * configure.in (LIBS): Re-reverse order of TCL_LIBS and TK_LIBS.
1381
1382 Wed Mar 12 14:29:52 1997 Tom Tromey <tromey@cygnus.com>
1383
1384 * gdbtk.c (x_event): Use Tcl_DoOneEvent, TCL_DONT_WAIT,
1385 TCL_ALL_EVENTS.
1386
1387 * configure: Regenerated.
1388 * configure.in (ENABLE_GDBTK): Put TCL_LIBS after TK_LIBS in
1389 LIBS.
1390
1391 Mon Feb 10 13:50:53 1997 Stu Grossman (grossman@critters.cygnus.com)
1392
1393 * gdbtk.c (call_wrapper): Clear running_now if an error occurs.
1394
1395 Wed Dec 11 18:51:35 1996 Mark Alexander <marka@cygnus.com>
1396
1397 * gdbtk.c (gdb_loc): Correct truncation of PC on 64-bit MIPS.
1398
1399 Tue Nov 19 09:26:14 1996 Tom Tromey <tromey@cygnus.com>
1400
1401 * gdbtk.c (gdbtk_readline): Fix memory leak.
1402
1403 Mon Nov 18 23:43:05 1996 Tom Tromey <tromey@cygnus.com>
1404
1405 Fixes for Tcl 7.6 / Tk 4.2:
1406 * gdbtk.tcl (apply_filespec): Use tk_getOpenFile.
1407 Remove old fileselect code.
1408 * gdbtk.c (Tcl_Alloc): Rename from Tcl_Malloc.
1409
1410 Fri Sep 27 10:25:30 1996 Fred Fish <fnf@cygnus.com>
1411
1412 * gdbtk.tcl (create_copyright_window): Increase timeout from
1413 15 seconds to 30 seconds.
1414
1415 Wed Sep 4 17:28:40 1996 Stu Grossman (grossman@critters.cygnus.com)
1416
1417 * configure configure.in: Add host *windows* to list of hosts
1418 that don't support GDBtk.
1419
1420 Fri Aug 23 00:44:57 1996 Fred Fish <fnf@cygnus.com>
1421
1422 * gdbtk.c (gdbtk_init): Check for a DISPLAY env variable and
1423 gracefully degrade to using command line interface if none is
1424 found.
1425
1426 Fri Aug 9 12:32:53 1996 Tom Tromey <tromey@creche.cygnus.com>
1427
1428 * Makefile.in (LIB_INSTALL_DIR): New macro.
1429 (TCL): Include @TCL_LD_SEARCH_FLAGS@.
1430
1431 Thu Aug 1 20:35:01 1996 Tom Tromey <tromey@creche.cygnus.com>
1432
1433 * gdbtk.c (mainWindow): Deleted.
1434 (cleanup_init): Don't destroy main window.
1435 (gdbtk_init): Main window now created by Tk_Init.
1436
1437 * configure.in: Most X checks now handled automatically by Tk.
1438 Use new macros to find Tcl/Tk.
1439 * aclocal.m4: New version for new Tcl/Tk; from Don Libes.
1440 * config.in, configure: Regenerated.
1441
1442 * Makefile.in (TCL, TCL_CFLAGS, TK, TK_CFLAGS, X11_CFLAGS,
1443 X11_LDFLAGS, X11_LIBS): Changed for new Tcl and Tk.
1444
1445 Thu Aug 1 16:12:05 1996 Jason Molenda (crash@godzilla.cygnus.co.jp)
1446
1447 * Makefile.in (gdbtk.tcl): put in $(datadir), not $(libdir).
1448
1449 Fri Jul 26 14:07:37 1996 Ian Lance Taylor <ian@cygnus.com>
1450
1451 * gdbtk.c (gdb_disassemble): Initialize di.flavour.
1452
1453 Thu Jul 25 19:41:31 1996 Fred Fish <fnf@cygnus.com>
1454
1455 * gdbtk.c (null_routine): Ditto.
1456 (gdbtk_flush): Ditto.
1457 (gdbtk_fputs): Ditto.
1458 (gdbtk_query): Ditto.
1459 (gdbtk_readline): Ditto.
1460 (gdbtk_readline_end): Ditto.
1461 (gdb_get_breakpoint_list): Ditto.
1462 (gdb_get_breakpoint_info): Ditto.
1463 (breakpoint_notify): Ditto.
1464 (gdbtk_create_breakpoint): Ditto.
1465 (gdbtk_delete_breakpoint): Ditto.
1466 (gdbtk_modify_breakpoint): Ditto.
1467 (gdb_loc): Ditto.
1468 (gdb_eval): Ditto.
1469 (gdb_sourcelines): Ditto.
1470 (map_arg_registers): Ditto.
1471 (get_register_name): Ditto.
1472 (gdb_regnames): Ditto.
1473 (get_register): Ditto.
1474 (gdb_fetch_registers): Ditto.
1475 (register_changed_p): Ditto.
1476 (gdb_changed_register_list): Ditto.
1477 (gdb_cmd): Ditto.
1478 (call_wrapper): Ditto.
1479 (gdb_listfiles): Ditto.
1480 (gdb_stop): Ditto.
1481 (gdbtk_dis_asm_read_memory): Ditto.
1482 (compare_lines): Ditto.
1483 (gdb_disassemble): Ditto.
1484 (tk_command): Ditto.
1485 (cleanup_init): Ditto.
1486 (gdbtk_interactive): Ditto.
1487 (x_event): Ditto.
1488 (gdbtk_wait): Ditto.
1489 (gdbtk_call_command): Ditto.
1490 (tk_command_loop): Ditto.
1491 (gdbtk_init): Ditto.
1492
1493 * gdbtk.c (register_changed_p): Remove unused local variable "buf".
1494
1495 Sat Jul 20 17:46:40 1996 Fred Fish <fnf@cygnus.com>
1496
1497 * gdbtk.tcl (files_command): Reorder the binding tags for
1498 the listbox widget to avoid referencing the listbox after
1499 the containing widget has been destroyed by the action of
1500 a previous binding.
1501
1502 Sat Jul 20 10:09:28 1996 Fred Fish <fnf@cygnus.com>
1503
1504 * gdbtk.tcl (delete_expr): Unset corresponding element of
1505 expr_update_list when destroying an expression.
1506 (create_expr_window): Initialize expr_num, delete_expr_num,
1507 and expr_update_list here when each new expression window
1508 is created, rather than once at startup.
1509
1510 Mon Jul 15 16:44:05 1996 Stu Grossman (grossman@critters.cygnus.com)
1511
1512 * gdbtk.c (gdb_disassemble): Setup di.mach from
1513 tm_print_insn_info.mach, and set endian from TARGET_BYTE_ORDER.
1514
1515 Fri Jun 21 11:04:47 1996 Fred Fish <fnf@cygnus.com>
1516
1517 * gdbtk.tcl (create_register_windows): Include missing '$'s.
1518 Add global declarations for various reg_format_* variables.
1519 * gdbtk.tcl (populate_register_window): Make initial window one
1520 line taller to account for new column header line.
1521
1522 Fri Jun 21 09:46:47 1996 Fred Fish <fnf@cygnus.com>
1523
1524 * gdbtk.c (get_register): Support for printing raw formats.
1525 * gdbtk.tcl: Add hint for using debug_interface.
1526 (center_window, add_breakpoint_frame, delete_breakpoint_frame):
1527 Enclose arg in braces for consistency.
1528 (create_registers_window, populate_reg_window, update_registers):
1529 Major rewrite to support displaying multiple formats in the register
1530 window.
1531 (init_reg_info): New function.
1532 (recompute_reg_display_list): Reset reg_display_list, start
1533 register display lines at line 2.
1534
1535 Thu Jun 20 08:18:59 1996 Fred Fish <fnf@cygnus.com>
1536
1537 * gdbtk.tcl (gdbtk_tcl_readline_begin): Handle backspace to
1538 avoid backing up over prompt. At every input, make sure insert
1539 point is at least after command start, handle control-u to delete
1540 current input line.
1541 (tclsh): Handle backspace to avoid backing up over prompt. Handle
1542 control-u to delete current input line.
1543
1544 Wed Jun 19 17:23:38 1996 Geoffrey Noer <noer@cygnus.com>
1545
1546 * configure.in: disable gdbtk for *cygwin32* hosted compiles
1547 * configure: regenerated with autoconf 2.8
1548
1549 Sun May 19 16:49:37 1996 Fred Fish <fnf@cygnus.com>
1550
1551 * gdbtk.c (gdbtk_readline_begin, gdbtk_readline, gdbtk_readline_end):
1552 New functions.
1553 (tk_command_loop): Set instream to NULL to enable Tk user interaction.
1554 (gdbtk_init): Set readline_begin_hook, readline_hook,
1555 and readline_end_hook.
1556 * gdbtk.tcl (gdbtk_tcl_readline_begin, gdbtk_tcl_readline,
1557 gdbtk_tcl_readline_end): New functions.
1558 (tclsh): Pack scroll bar on right side of window, not left.
1559
1560 Fri May 17 13:54:34 1996 Fred Fish <fnf@cygnus.com>
1561
1562 * gdbtk.tcl (create_command_window): Change a misspelled "get"
1563 to the intended "cget".
1564 (delete_line): Fix so it deletes the current line at the
1565 insertion cursor.
1566
1567 Thu May 16 19:20:29 1996 Fred Fish <fnf@cygnus.com>
1568
1569 * gdbtk.tcl (gdb_prompt): Set this early on.
1570 (create_command_window): Use gdb_prompt rather than "(gdb) ".
1571 (gdbtk_tcl_preloop): Proc executed just prior to Tk main loop.
1572 (tclsh): If an evaluation window already exists, just bring it
1573 to the front instead of trying to create another.
1574 * gdbtk.c (tk_command_loop): New function.
1575 (gdbtk_init): Call tk_command_loop rather than Tk_MainLoop.
1576
1577 Thu May 16 16:16:35 1996 Fred Fish <fnf@cygnus.com>
1578
1579 * gdbtk.tcl (evaluate_tcl_command, tclsh): New functions that
1580 implement a tcl evaluation window for gdbtk maintainers to use.
1581
1582 Thu May 16 11:42:58 1996 Tom Tromey <tromey@creche.cygnus.com>
1583
1584 * gdbtk.tcl (files_command): Correctly insert list of files into
1585 listbox widget.
1586
1587 * gdbtk.tcl (files_command): listbox command no longer accepts
1588 -geometry.
1589
1590 Wed May 15 16:04:09 1996 Stan Shebs <shebs@andros.cygnus.com>
1591
1592 * gdbtk.tcl (create_command_window): If command window's buffer
1593 is disabled, don't execute any of the key bindings.
1594
1595 Mon May 13 13:43:25 1996 Fred Fish <fnf@cygnus.com>
1596
1597 * gdbtk.c (tk_command): Catch case where no argument is given
1598 since this will cause the tcl interpreter to dump core.
1599
1600 Wed May 8 20:33:24 1996 Fred Fish <fnf@cygnus.com>
1601
1602 * gdbtk.c: Fix a couple of misspellings.
1603
1604 Thu May 2 19:17:49 1996 Stan Shebs <shebs@andros.cygnus.com>
1605
1606 * gdbtk.tcl (debug_interface): New global, use to aid debugging.
1607 (insert_breakpoint_tag, delete_breakpoint_tag): Fix range.
1608 (file_popup_menu): Delete, never used.
1609 (listing_window_popup): Rename from listing_window_button_1,
1610 remove breakpoint toggling code.
1611 (toggle_breakpoint): New procedure.
1612 (create_file_win): Bind popup menu to button 2, toggle breakpoints
1613 with button 1 in breakpoint area, add display of tagged areas if
1614 debugging on.
1615
1616 Fri Apr 5 13:44:40 1996 Stan Shebs <shebs@andros.cygnus.com>
1617
1618 * gdbtk.c (running_now): New global variable.
1619 (gdb_cmd): Test it before executing any command.
1620 (gdbtk_call_command): Set it when inferior is running.
1621 * gdbtk.tcl (gdbtk_tcl_busy, gdbtk_tcl_idle): Enable and
1622 disable interaction with command window's text appropriately.
1623
1624 Fri Apr 5 13:25:42 1996 Michael Meissner <meissner@tiktok.cygnus.com>
1625
1626 * gdbtk.c (SIOCSPGRP, linux): If on Linux, undef SIOCSPGRP, since
1627 some versions of the kernel don't support it.
1628
1629 Tue Feb 6 16:31:25 1996 Tom Tromey <tromey@creche.cygnus.com>
1630
1631 * gdbtk.tcl (create_file_win): Eliminate text widget B1 binding so
1632 double-clicking will work again.
1633 (create_asm_win): Put "break" at end of all B1 bindings.
1634 (create_file_win): Lower "sel" tag, don't raise it.
1635 (ensure_line_visible): New proc.
1636 (update_listing, update_assembly): Use it.
1637 (create_copyright_window): Destroy window on Leave event.
1638 (create_command_window): Put "break" at end of all B2 bindings.
1639
1640 Wed Jan 24 15:28:41 1996 Tom Tromey <tromey@creche.cygnus.com>
1641
1642 * gdbtk.tcl, gdbtk.c: Updated copyrights.
1643
1644 * configure.in: Look for -ldl or -ldld when using Tcl 7.5 or
1645 greater.
1646 * configure: Rebuilt.
1647
1648 Tue Jan 23 09:00:48 1996 Doug Evans <dje@charmed.cygnus.com>
1649
1650 * gdbtk.c (gdb_disassemble): Pass fprintf_unfiltered to
1651 INIT_DISASSEMBLE_INFO.
1652
1653 Mon Jan 15 09:58:41 1996 Tom Tromey <tromey@creche.cygnus.com>
1654
1655 * gdbtk.tcl (create_expr_window): Many changes to update GUI.
1656 (add_expr): Changes from create_expr_window.
1657 (create_command_window): Set focus.
1658 (delete_expr): Rewrote.
1659 (expr_update_button): New proc.
1660 (add_expr): Put bindings on FocusIn, FocusOut.
1661 Don't allow .file_popup to be torn off.
1662
1663 Fri Jan 12 09:36:17 1996 Tom Tromey <tromey@creche.cygnus.com>
1664
1665 * gdbtk.tcl (gdbtk_tcl_query): Swap Yes and No buttons.
1666 (update_listing): Use lassign. Use "see" to scroll. Don't need
1667 screen_top, screen_bot, screen_height.
1668 (update_assembly): Use "see" to scroll.
1669 (textscrollproc): Removed.
1670 (create_file_win): Don't use textscrollproc.
1671 (asmscrollproc): Removed.
1672 (create_asm_window): Don't use asmscrollproc.
1673 (create_asm_win): Ditto.
1674 (screen_height, screen_top, screen_bot): Removed.
1675 (run_editor): New proc.
1676 (build_framework): Use it.
1677 (create_file_win, create_source_window): Don't use textscrollproc.
1678 (create_breakpoints_window): Set -xscrollcommand on canvas.
1679 (not_implemented_yet): Default button is 0.
1680 (delete_char): Don't use tk_textBackspace.
1681 (create_command_window): Allow Tk bindings to fire after deleting
1682 character.
1683 (create_command_window): Make Delete delete left, not right.
1684
1685 Thu Jan 11 10:08:14 1996 Tom Tromey <tromey@creche.cygnus.com>
1686
1687 * gdbtk.tcl (FSBox): Don't use tk_listboxSingleSelect.
1688
1689 Changes in sync with expect:
1690 * configure.in (ENABLE_GDBTK): Use CY_AC_PATH_TCL and
1691 CY_AC_PATH_TK.
1692 * aclocal.m4: Replaced with version from expect.
1693 * configure: Regenerated.
1694
1695 Wed Jan 10 09:07:22 1996 Tom Tromey <tromey@creche.cygnus.com>
1696
1697 * gdbtk.tcl (gdbtk_tcl_fputs, gdbtk_tcl_fputs_error,
1698 gdbtk_tcl_flush): Use "see", not "yview".
1699 (gdbtk_tcl_query): Use questhead bitmap.
1700 various: Always wrap condition of 'if' in {...}.
1701 (add_breakpoint_frame): Set -value on radiobuttons.
1702 (lassign): New proc.
1703 (add_breakpoint_frame): Use lassign, not series of assignments.
1704 (decr): Made faster.
1705 (interactive_cmd): Use "see", not "yview".
1706 (not_implemented_yet): Use warning bitmap.
1707 (update_expr): Don't allow $expr to be evalled by Tcl.
1708 (create_expr_window): Don't use "focus".
1709 (delete_char, delete_line): Define globally.
1710 (delete_line, delete_char, create_command_window, update_autocmd,
1711 build_framework, create_asm_win, create_file_win): Use "see", not
1712 "yview".
1713 (create_copyright_window, center_window, bind_widget_after_class):
1714 New procs.
1715 (FSBox,create_command_window, create_autocmd_window): Binding
1716 changes for Tk4.
1717 (textscrollproc): Define globally.
1718 (build_framework): tk_menuBar no longer needed. Keys Prior, Next,
1719 Home, End, Up, and Down are all defined by Tk.
1720 (apply_filespec): Use error bitmap in dialog.
1721 (files_command): Don't use tk_listboxSingleSelect.
1722 (files_command): Don't use "uniq" to remove duplicates from a
1723 list.
1724 (update_assembly): Use lassign.
1725 (create_asm_win): Removed redundant bindings.
1726 (listing_window_button_1, file_popup_menu): Use tk_popup.
1727 (ButtonRelease-1 binding): Just remove tag from window; rest
1728 handled by Tk.
1729
1730 * gdbtk.c (gdbtk_query): Use Tcl_Merge to provide quoting.
1731 (call_wrapper): Use Tcl_Eval, not Tcl_VarEval.
1732 (gdbtk_call_command): Ditto.
1733
1734 Thu Jan 4 16:04:54 1996 Stu Grossman (grossman@cygnus.com)
1735
1736 * configure configure.in: Make --enable-gdbtk be the default.
1737
1738 Thu Dec 28 15:10:49 1995 Stan Shebs <shebs@andros.cygnus.com>
1739
1740 * README.GDBTK: Polish introductory paragraph.
1741
1742 Mon Oct 16 11:27:06 1995 Stu Grossman (grossman@cygnus.com)
1743
1744 * gdbtk.c (gdb_disassemble): Use fprintf_unfiltered instead of
1745 fprintf_filtered.
1746
1747 Tue Oct 10 15:26:39 1995 Fred Fish <fnf@cygnus.com>
1748
1749 * README.GDBTK: Updated for version 4.15.
1750
1751 Sat Aug 19 17:20:22 1995 Michael Tiemann <tiemann@axon.cygnus.com>
1752
1753 * gdbtk.tcl: ENABLE comes back as "1" or "0", not "enable" or
1754 "disable".
1755 Also, wire up the breakpoint window so that it can be demo'd.
1756
1757 Tue Aug 1 11:44:53 1995 J.T. Conklin <jtc@rtl.cygnus.com>
1758
1759 * gdbtk.c: Include "gdb_string.h" instead of <string.h>.
1760
1761 Tue Jun 20 10:19:40 1995 Stu Grossman (grossman@cygnus.com)
1762
1763 * gdbtk.c: Add functions Tcl_Malloc, Tcl_Realloc, and Tcl_Free.
1764
1765 * gdbtk.tcl (add_breakpoint_frame): Add more fields.
1766 * (create_file_win create_asm_win build_framework): Create null
1767 bindings for meta keys to keep window from dropping down to
1768 insertion point when meta is pressed by itself. New bindings:
1769 Up/Down - Scroll up/down one line at a time
1770 Next/Prior - Scroll up/down one page at a time
1771 Home/End - Warp to current pc/end of file
1772 * (build_framework): Turn on breakpoint menu.
1773 * (create_command_window): Implement tab completion. Add binding
1774 for ^C to stop target.
1775
1776 Fri May 19 06:15:40 1995 Jim Kingdon <kingdon@deneb.cygnus.com>
1777
1778 * gdbtk.c: Conditionalize use of stdarg rather than varargs on
1779 ANSI_PROTOTYPES not __STDC__; it must match the definition of
1780 PARAMS.
1781
1782 Thu May 18 15:58:46 1995 J.T. Conklin <jtc@rtl.cygnus.com>
1783
1784 * gdbtk.c (gdbtk_query): Use stdarg.h macros when compiling with
1785 an ANSI compiler.
1786
1787 Sat Apr 15 13:52:24 1995 Stan Shebs <shebs@andros.cygnus.com>
1788
1789 * gdbtk.c (gdb_disassemble): Read from inferior if connected
1790 to a VxWorks target.
1791
1792 Fri Apr 14 10:18:20 1995 Stu Grossman (grossman@cygnus.com)
1793
1794 * README.GDBTK: New file. Contains the obvious.
1795
1796 Tue Apr 11 11:07:12 1995 Michael Meissner <meissner@tiktok.cygnus.com>
1797
1798 * gdbtk.c (gdbtk_init): If SIOCSPGRP is not available, but
1799 F_SETOWN is, use that.
1800
1801 Thu Apr 6 17:00:46 1995 Michael Meissner <meissner@tiktok.cygnus.com>
1802
1803 * Makefile.in (X11_INCLUDES): Define as empty.
1804 (X11_CFLAGS): Define as including $(X11_INCLUDES).
1805 (X11_LIB_SWITCHES): Define as empty.
1806 (X11_LIBS): Define as -lX11.
1807
1808 * configure.in (enable_gdbtk): If gdbtk, support the --x-includes
1809 and --x-libraries switches, setting the X11_INCLUDES and
1810 X11_LIB_SWITCHES respectively. Instead of using a hardcoded -lX11
1811 in ENABLE_CLIBS, use the X11_LIB_SWITCHES and X11_LIBS variables.
1812
1813 * gdbtk.c (gdbtk_init): If SIOCSPGRP is not available, don't use
1814 it. This means that the stop button doesn't work, but is better
1815 than nothing.
1816
1817 Wed Mar 29 17:09:29 1995 Stu Grossman (grossman@cygnus.com)
1818
1819 * Makefile.in (gdbtk.o): Use X11_CFLAGS to provide alternate
1820 locations (per-host) for X11 include files.
1821 * config/pa/hppahpux.mh (XM_CLIBS): Add -L/usr/lib/X11R5 to force
1822 the use of R5 libs.
1823 (X11_CFLAGS): Add this to indicate the locs
1824 of the R5 include files.
1825
1826 Wed Mar 8 16:12:21 1995 Stu Grossman (grossman@cygnus.com)
1827
1828 * gdbtk.c (gdb_get_breakpoint_info): Return error if breakpoint
1829 type is not bp_breakpoint.
1830
1831 Tue Feb 14 17:16:41 1995 Stu Grossman (grossman@cygnus.com)
1832
1833 * gdbtk.c: Ditto.
1834 * gdbtk.c: General cleanups, get rid of unused variables. Redo
1835 handling of stdout/stderr to just return output as the result of
1836 the tcl command that caused the output. Cleanup -Wall stuff.
1837 * (breakpoint_notify): Now returns just action and breakpoint
1838 number.
1839 * (gdb_get_breakpoint_list): New routine. Does the obvious.
1840 * (gdb_get_breakpoint_info): Mostly derived from the old
1841 breakpoint_notify, but returns lots more info.
1842 * (dsprintf_append_element): Helper routine, works like printf,
1843 but appends a tcl element onto the specified DString. Good for
1844 building up lists as return values.
1845 * (gdbtk_enable/disable_breakpoint): Go away. Replaced with
1846 gdbtk_modify_breakpoint.
1847 * (*many routines*): Use new result protocol.
1848 * (call_wrapper): Make sure that recursive calls don't trash results.
1849 * gdbtk.tcl: New windows, autocmd, and breakpoints.
1850 * (gdbtk_tcl_fputs): Don't use $current_output_win redirection
1851 anymore. It's not needed (in fact, this routine may not be needed
1852 anymore).
1853 * (gdbtk_tcl_breakpoint): Change to reflect new breakpoint
1854 notification protocol.
1855 * (gdbtk_tcl_busy gdbtk_tcl_idle): Straighten out buttons, remove
1856 catches.
1857 * (interactive_cmd): Use this wrapper around button invocations
1858 of many commands. This will catch errors and put the results into
1859 the command window. It also updates all the other windows.
1860 * Also, change reliefs of most things to sunken. This actually
1861 looks better.
1862 * (create_file_win): Fix margin binding to allow breakpoints to
1863 work again.
1864 * (create_asm_win): Use return value of gdb_disassemble instead
1865 of implicit I/O to the command window.
1866 * (create_command_window): Use new result protocol to get output
1867 from commands.
1868
1869 Sun Feb 5 20:32:44 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
1870
1871 * gdbtk.c (gdb_disassemble): Deference pointer to function before
1872 calling it (pre-ANSI compilers generally require this).
1873
1874 Fri Feb 3 11:19:20 1995 Stu Grossman (grossman@cygnus.com)
1875
1876 * gdbtk.c (gdb_disassemble): Get rid of
1877 dis_asm_read_memory_hook. We can now call the disassemblers
1878 directly and have no need for this hook anymore.
1879
1880 Mon Jan 30 17:34:24 1995 Stu Grossman (grossman@cygnus.com)
1881
1882 * gdbtk.tcl (create_file_win): Disable old popup menu for source
1883 window.
1884
1885 Wed Jan 25 18:23:46 1995 Stu Grossman (grossman@cygnus.com)
1886
1887 * gdbtk.c (gdbtk_init): Prevent segfault when gdbtk.tcl can't be
1888 found.
1889 * gdbtk.tcl: Initialize expr_update_list() to prevent errors when
1890 popping up expression window for the first time.
1891
1892 Tue Jan 24 12:10:28 1995 Stu Grossman (grossman@cygnus.com)
1893
1894 * gdbtk.tcl (create_registers_window): Work around a radiobutton
1895 widget bug to make Options|Natural button work.
1896
1897 * gdbtk.c (gdb_disassemble): Fix problem with source+assembly and
1898 g++ caused by out-of-order pc's.
1899 * gdbtk.tcl (files_command): Remove duplicate file names. Also,
1900 add scrollbar.
1901
1902 Mon Jan 23 17:21:09 1995 Stu Grossman (grossman@cygnus.com)
1903
1904 * gdbtk.tcl: Take .gdbtkinit if it exists. Makes gdbtk match the
1905 doc!
1906
1907 Thu Jan 12 15:02:40 1995 Stu Grossman (grossman@cygnus.com)
1908
1909 * gdbtk.c, gdbtk.tcl: Update/add copyright.
1910 * gdbtk.tcl (build_framework): Several fixes for filespec widget,
1911 including dismiss button, and better error handling.
1912 * (create_command_win): Bind button 2 to retrieve selection.
1913
1914 Wed Jan 11 17:06:55 1995 Stu Grossman (grossman@cygnus.com)
1915
1916 * gdbtk.tcl: Add button to control mixed source disassembly.
1917 Use text widgets in expr window. The give me more control over
1918 layout.
1919 Add auto-updating of exprs in expression window.
1920 Handle expressions out of scope a bit better.
1921 Make selected window pop up to the top when invoked via the
1922 menubar.
1923 Make copyright message have raised relief.
1924
1925 * gdbtk.c (gdbtk_init): Improve handling for errors in gdbtk.tcl
1926 during startup.
1927
1928 Thu Jan 5 17:38:29 1995 Stu Grossman (grossman@cygnus.com)
1929
1930 * gdbtk.c (finish_saving_output): Don't do anything if not saving
1931 output.
1932 * (breakpoint_notify): Don't send null filename to tcl.
1933 * (gdb_eval): New tcl command to eval an expression.
1934 * (gdb_disassemble): New tcl command to do disassembly. This
1935 allows tcl code to choose between exec file and target memeory,
1936 and can also do mixed source and assembly.
1937 * (gdbtk_init): Move reading of gdbtk.tcl to the end to make sure
1938 that more of the environment is set up. Also, create link between
1939 gdb and tcl vars disassemble{-_}from{-_}exec.
1940
1941 * gdbtk.tcl: New expression window support.
1942 * Make assembly window be 80 columns wide.
1943 * Use new disassembly method. Add menu items to select
1944 disassembly from exec file or target.
1945 * Change View menubar item to Options.
1946
1947 * Get rid of Stack, Breakpoints, Signals, and Variables Windows,
1948 since they don't exist yet.
1949
1950 * Pop up a copyright window on startup.
1951
1952 Wed Jan 4 19:49:10 1995 Stan Shebs <shebs@andros.cygnus.com>
1953
1954 * gdbtk.tcl (build_framework): Add standard commands menu, more
1955 windows to standard windows menu.
1956 (not_implemented_yet): Clarify message.
1957
1958 Fri Dec 30 15:49:00 1994 Stan Shebs <shebs@andros.cygnus.com>
1959
1960 * gdbtk.tcl (FSBox): New proc, File Selection Box code from exmh.
1961 (not_implemented_yet): New proc.
1962 (build_framework): Add various file commands to file menu.
1963
1964 Fri Dec 23 16:18:50 1994 Stu Grossman (grossman@cygnus.com)
1965
1966 * gdbtk.c (gdbtk_wait gdbtk_init): Portability improvements for
1967 SIGIO handling.
1968
1969 Mon Dec 19 09:55:47 1994 Stu Grossman (grossman@cygnus.com)
1970
1971 * gdbtk.tcl (update_assembly): Force update to make sure that pc
1972 is visible when creating new assembly windows.
1973
1974 Sun Dec 18 23:31:20 1994 Stu Grossman (grossman@cygnus.com)
1975
1976 * gdbtk.c (gdbtk_wait gdbtk_init): Use different method of
1977 enabling I/O interrupts for SVR4 (streams).
1978 * (start_saving_output save_output get_saved_output
1979 finish_saving_output flush_holdbuf gdbtk_flush gdbtk_fputs
1980 gdbtk_init):
1981 Totally revamp to use TCLs dynamic string functions. Also, quote
1982 all data passed back to TCL to prevent errors with unmatched
1983 braces, odd characters, etc... This fixes several wierd problems
1984 with outputting strings containing unmatched braces.
1985 * (breakpoint_notify gdb_loc): Use long hex format to output
1986 addresses of breakpoints and PCs. This fixes some Alpha problems.
1987 * (breakpoint_notify): Add stream arg to call to gdbtk_fputs.
1988 * (gdb_listfiles): Also, go through the symtabs when looking for
1989 files. This makes xcoff work (sort of), but probably breaks
1990 something else.
1991 * (gdb_stop): Return TCL_OK instead of nothing. This fixes odd
1992 TCL errors when hitting stop button.
1993 * (tk_command): Don't pass interp->result on to Tcl_{Var}Eval, as
1994 that will trash the result. strdup the result instead and pass
1995 that on. Improve error handling as well.
1996
1997 * gdbtk.tcl (gdbtk_tcl_flush): Use global def of
1998 current_output_win. Makes flushing actually work!
1999 * (asm_win_name create_asm_win update_assembly): Bunch of fixes
2000 to make assembly windows stop flashing when loading a new file.
2001 * (gdbtk_tcl_busy gdbtk_tcl_idle): Use catch to prevent gdb_cmd
2002 errors from losing control.
2003 * (create_source_window): Add source file selection to View menu.
2004 * (create_command_window (<Key-Return> binding): Quote text fed
2005 into gdb_cmd to prevent eval errors.
2006
2007 Thu Dec 15 16:40:10 1994 Stu Grossman (grossman@cygnus.com)
2008
2009 * gdbtk.c: Improve mechanism for capturing output values.
2010 (full_filename): Remove.
2011 (gdb_cmd call_wrapper gdbtk_init): Protect all calls from tcl land
2012 with call_wrapper. This prevents longjmps (usually via error())
2013 from jumping out of tcl/tk and leaving things in an indeterminate
2014 state.
2015 (gdbtk_fputs): Differentiate stdout from stderr when passing text
2016 into tcl land.
2017 * gdbtk.tcl: New view option to disable line numbers. Put catch
2018 around most uses of gdb_cmd. Add update button to reg config
2019 window. Stop doing immediate updates when selecting registers.
2020 Change register view values into checkbuttons.
2021
2022 Mon Dec 12 16:59:29 1994 Stu Grossman (grossman@cygnus.com)
2023
2024 * gdbtk.tcl (reg_config_menu create_registers_window
2025 recompute_reg_display_list): Use array instead of individual vars
2026 for register display list.
2027 * (recompute_reg_display_list update_registers): Fix bug with not
2028 displaying all registers.
2029
2030 Mon Dec 12 12:22:21 1994 Stu Grossman (grossman@cygnus.com)
2031
2032 * gdbtk.c: New tcl commands: gdb_fetch_registers,
2033 gdb_changed_register_list, and gdb_regnames.
2034 * gdbtk.tcl: Use monochrome color model for now.
2035 * (delete_breakpoint_tag create_file_win): Add breakdot support.
2036 * (create_file_win create_asm_win update_listing build_framework
2037 create_source_window create_command_window): Re-org window
2038 creation to give all windows consistent look and feel.
2039 * (update_listing update_asm): Change pc pointer to '->'.
2040 * (registers_command reg_config_menu create_registers_window
2041 populate_reg_window update_registers): Revamp register window.
2042 Allow selection of registers to be displayed. Highlight changed
2043 registers.
2044
2045 Mon Nov 28 09:17:20 1994 Stu Grossman (grossman@cygnus.com)
2046
2047 * gdbtk.tcl (build_framework): Fix bug with setting window titles.
2048
2049 * gdbtk.tcl (build_framework): Add "Report bug" to help menu.
2050
2051 * gdbtk.tcl: Re-arrange windows using new, consistent layout. Clean
2052 up lots of code and centralize framework initialization.
2053
2054 Wed Nov 16 15:28:29 1994 Rob Savoye (rob@cygnus.com)
2055
2056 * Makefile.in: Fix the test for installing gdbtk.
2057
2058 Mon Nov 14 08:51:29 1994 Stu Grossman (grossman@cygnus.com)
2059
2060 * Makefile.in: Install gdbtk.tcl.
2061 * configure.in: Add ENABLE_GDBTK flag.
2062 * gdbtk.c (gdb_sourcelines): Returns list of source lines
2063 containing code. (gdb_regnames): Returns list of register names.
2064
2065 Thu Nov 3 14:25:24 1994 Stu Grossman (grossman@cygnus.com)
2066
2067 * gdbtk.c (gdb_stop): Switch to target_stop().
2068
2069 Tue Nov 1 16:41:12 1994 Stu Grossman (grossman@cygnus.com)
2070
2071 * Makefile.in: Use $(objdir)/tcl and $(objdir)/tk if they are
2072 available.
2073 * configure.in (ENABLE_CLIBS): Use $(TCL) and $(TK) instead of
2074 -ltcl and -ltk.
2075 * gdbtk.c: Get rid of lots of unnecessary #includes.
2076 * (gdbtk_init): Use ConnectionNumber macro instead of referencing
2077 Display structure directly.
2078 * gdbtk.tcl: Change exit button to quit button.
2079
2080 Wed Oct 26 15:41:07 1994 Stu Grossman (grossman@cygnus.com)
2081
2082 * gdbtk.c: Change sense and name of no_windows variable. Now
2083 called use_windows, and defaults to off (for compatibility).
2084
2085 Thu Oct 20 17:35:45 1994 Stu Grossman (grossman@cygnus.com)
2086
2087 * gdbtk.c (gdb_cmd): Force GUI into idle mode when errors occur.
2088 * (gdb_stop): New tcl command to stop the target process.
2089 * (x_event, gdbtk_wait): Allow GUI to interrupt gdb out of target
2090 waits.
2091 * (gdbtk_call_command): Wrapper around command processing to
2092 alert GUI of target state changes.
2093 * (gdbtk_init): Get the fd of X server for doing async
2094 notification of X events (via x_event). Setup new hooks.
2095 * gdbtk.tcl: Add scrollbars to assembly and command windows.
2096 * Change window foreground & background colors.
2097 * Create margin tag for breakpoints in source and assembly windows.
2098 * Add new routines to be invoked when target state changes to/from
2099 idle.
2100 * Add start of expression window.
2101 * Change bindings of mouse button 1 in assembly and source window
2102 to just set or clear breakpoints when in the margin tag.
2103 * Change shape of register window to be more vertical to better
2104 reflect its contents.
2105 * Add stop button.
2106 * Cleanup some code around command window bindings.
2107
2108 Sat Sep 17 17:05:14 1994 Stu Grossman (grossman@cygnus.com)
2109
2110 * gdbtk.tcl: Let ^U delete lines in the command window.
2111
2112 Fri Sep 16 15:40:34 1994 Stu Grossman (grossman@cygnus.com)
2113
2114 * gdbtk.c: Replace calls to full_filename with symtab_to_filename.
2115 * gdbtk.tcl: New routine pc_to_line replaces in line code. New
2116 routine decr replaces in line code.
2117 * (create_file_win): Use catch to handle open failures more
2118 elegantly. Also, create special window to display file open
2119 failure message. Move opening of file prior to creation of text
2120 widget.
2121 * (create_asm_win): Add PC as argument. We now base disassembly
2122 on PC instead of function name, since function names can be
2123 ambiguous (usually seen with shared libs). Also, use catch to
2124 simplify code where we don't care about failures.
2125
2126 Wed Sep 14 00:55:26 1994 Stu Grossman (grossman@cygnus.com)
2127
2128 * gdbtk.tcl: Add ref counts to breakpoint tags.
2129 * Put quotes around function name in disassemble command to better
2130 handle assembler names containing `.'.
2131 * Make pclist element 0 be filler to avoid off-by-one problem with
2132 line numbers.
2133 * Set names of top-level windows.
2134 * Add register display window.
2135 * Add PC to label of assembly window.
2136
2137 Tue Sep 13 08:59:04 1994 Stu Grossman (grossman@cygnus.com)
2138
2139 * gdbtk.c (gdbtk_flush gdbtk_fputs): Buffer up output to make
2140 disassembly more efficient.
2141 * (breakpoint_notify): Include pc in gdbtk_tcl_breakpoint
2142 callback.
2143 * (gdb_loc): Include pc in return value. Also, return function
2144 name if arg was specified.
2145 * (gdb_cmd_stub): Call gdb_flush to drain internal GDB buffers
2146 after command completes.
2147 * (gdbtk_init): Improve error handling.
2148
2149 * gdbtk.tcl: Add lots of comments. Clean up code.
2150 * (gdbtk_tcl_fputs): Make output window redirectable.
2151 * Add assembly window, and breapoint support.
2152 * Make button 1 in margin toggle breakpoints.
2153 * Use stippling to indicate breakpoint disabling.
2154
2155 Fri Sep 2 19:11:40 1994 Stu Grossman (grossman@cygnus.com)
2156
2157 * configure.in: Don't symlink to gdbtk.tcl if it's already there.
2158
2159 Thu Jul 28 14:37:36 1994 Stu Grossman (grossman@cygnus.com)
2160
2161 Support for TK GUI.
2162 * Makefile.in: Add rule for gdbtk.o.
2163 * configure.in: Add support for --enable-gdbtk.
2164 * gdbtk.c: New file. Contains support routines for TK interface.
2165 * gdbtk.tcl: New file. Implements GUI policy.
2166
2167 \f
2168 Local Variables:
2169 mode: change-log
2170 left-margin: 8
2171 fill-column: 74
2172 version-control: never
2173 End:
This page took 0.074571 seconds and 4 git commands to generate.