Tue Jun 9 15:27:09 1998 Jim Ingham <jingham@cygnus.com>
[deliverable/binutils-gdb.git] / gdb / gdbtk.c
CommitLineData
4604b34c 1/* Tcl/Tk interface routines.
a5f4fbff 2 Copyright 1994, 1995, 1996, 1997, 1998 Free Software Foundation, Inc.
4604b34c
SG
3
4 Written by Stu Grossman <grossman@cygnus.com> of Cygnus Support.
754e5da2
SG
5
6This file is part of GDB.
7
8This program is free software; you can redistribute it and/or modify
9it under the terms of the GNU General Public License as published by
10the Free Software Foundation; either version 2 of the License, or
11(at your option) any later version.
12
13This program is distributed in the hope that it will be useful,
14but WITHOUT ANY WARRANTY; without even the implied warranty of
15MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16GNU General Public License for more details.
17
18You should have received a copy of the GNU General Public License
19along with this program; if not, write to the Free Software
6c9638b4 20Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
754e5da2
SG
21
22#include "defs.h"
23#include "symtab.h"
24#include "inferior.h"
25#include "command.h"
26#include "bfd.h"
27#include "symfile.h"
28#include "objfiles.h"
29#include "target.h"
018d76dd
KS
30#include "gdbcore.h"
31#include "tracepoint.h"
929db6e5 32#include "demangle.h"
018d76dd
KS
33
34#ifdef _WIN32
35#include <winuser.h>
36#endif
37
e6e9507d
EZ
38#include <sys/stat.h>
39
754e5da2
SG
40#include <tcl.h>
41#include <tk.h>
2476848a
MH
42#include <itcl.h>
43#include <tix.h>
dd3dd918 44#include "guitcl.h"
2476848a
MH
45
46#ifdef IDE
018d76dd 47/* start-sanitize-ide */
2476848a
MH
48#include "event.h"
49#include "idetcl.h"
018d76dd
KS
50#include "ilutk.h"
51/* end-sanitize-ide */
2476848a
MH
52#endif
53
73d3dbd4 54#ifdef ANSI_PROTOTYPES
85c613aa
C
55#include <stdarg.h>
56#else
cd2df226 57#include <varargs.h>
85c613aa 58#endif
cd2df226
SG
59#include <signal.h>
60#include <fcntl.h>
8532893d 61#include <unistd.h>
86db943c
SG
62#include <setjmp.h>
63#include "top.h"
736a82e7 64#include <sys/ioctl.h>
2b576293 65#include "gdb_string.h"
09722039 66#include "dis-asm.h"
6131622e
SG
67#include <stdio.h>
68#include "gdbcmd.h"
736a82e7 69
929db6e5 70#include "annotate.h"
018d76dd 71#include <sys/time.h>
018d76dd 72
8a19b35a
MH
73#ifdef WINNT
74#define GDBTK_PATH_SEP ";"
75#else
76#define GDBTK_PATH_SEP ":"
77#endif
754e5da2 78
8b3f9ed6 79/* Some versions (1.3.79, 1.3.81) of Linux don't support SIOCSPGRP the way
3f37b696 80 gdbtk wants to use it... */
8b3f9ed6
MM
81#ifdef __linux__
82#undef SIOCSPGRP
83#endif
84
94a6f14f
MH
85extern int Tktable_Init PARAMS ((Tcl_Interp *interp));
86
0b7148e4 87static int No_Update = 0;
0776b0b0 88static int load_in_progress = 0;
ed5fa7c3 89static int in_fputs = 0;
0776b0b0 90
018d76dd
KS
91int gdbtk_load_hash PARAMS ((char *, unsigned long));
92int (*ui_load_progress_hook) PARAMS ((char *, unsigned long));
11f91b2b
KS
93void (*pre_add_symbol_hook) PARAMS ((char *));
94void (*post_add_symbol_hook) PARAMS ((void));
018d76dd 95
21b3bc77
KS
96#ifdef __CYGWIN32__
97extern void (*ui_loop_hook) PARAMS ((int));
98#endif
99
929db6e5
EZ
100char * get_prompt PARAMS ((void));
101
b607efe7
FF
102static void null_routine PARAMS ((int));
103static void gdbtk_flush PARAMS ((FILE *));
104static void gdbtk_fputs PARAMS ((const char *, FILE *));
105static int gdbtk_query PARAMS ((const char *, va_list));
e6e9507d 106static void gdbtk_warning PARAMS ((const char *, va_list));
cb432079 107static void gdbtk_ignorable_warning PARAMS ((const char *));
b607efe7 108static char *gdbtk_readline PARAMS ((char *));
2476848a 109static void gdbtk_init PARAMS ((char *));
b607efe7
FF
110static void tk_command_loop PARAMS ((void));
111static void gdbtk_call_command PARAMS ((struct cmd_list_element *, char *, int));
112static int gdbtk_wait PARAMS ((int, struct target_waitstatus *));
113static void x_event PARAMS ((int));
114static void gdbtk_interactive PARAMS ((void));
115static void cleanup_init PARAMS ((int));
116static void tk_command PARAMS ((char *, int));
117static int gdb_disassemble PARAMS ((ClientData, Tcl_Interp *, int, char *[]));
118static int compare_lines PARAMS ((const PTR, const PTR));
119static int gdbtk_dis_asm_read_memory PARAMS ((bfd_vma, bfd_byte *, int, disassemble_info *));
8a19b35a 120static int gdb_path_conv PARAMS ((ClientData, Tcl_Interp *, int, char *[]));
b607efe7 121static int gdb_stop PARAMS ((ClientData, Tcl_Interp *, int, char *[]));
018d76dd
KS
122static int gdb_confirm_quit PARAMS ((ClientData, Tcl_Interp *, int, char *[]));
123static int gdb_force_quit PARAMS ((ClientData, Tcl_Interp *, int, char *[]));
0776b0b0 124static int gdb_listfiles PARAMS ((ClientData, Tcl_Interp *, int, Tcl_Obj *CONST objv[]));
99c98415 125static int gdb_listfuncs PARAMS ((ClientData, Tcl_Interp *, int, char *[]));
b607efe7 126static int call_wrapper PARAMS ((ClientData, Tcl_Interp *, int, char *[]));
ff62d310 127static int call_obj_wrapper PARAMS ((ClientData, Tcl_Interp *, int, Tcl_Obj *CONST []));
b607efe7 128static int gdb_cmd PARAMS ((ClientData, Tcl_Interp *, int, char *argv[]));
0422b59e 129static int gdb_immediate_command PARAMS ((ClientData, Tcl_Interp *, int, char *argv[]));
b607efe7
FF
130static int gdb_fetch_registers PARAMS ((ClientData, Tcl_Interp *, int, char *[]));
131static void gdbtk_readline_end PARAMS ((void));
929db6e5 132static void pc_changed PARAMS ((void));
b607efe7
FF
133static int gdb_changed_register_list PARAMS ((ClientData, Tcl_Interp *, int, char *[]));
134static void register_changed_p PARAMS ((int, void *));
135static int gdb_get_breakpoint_list PARAMS ((ClientData, Tcl_Interp *, int, char *[]));
136static int gdb_get_breakpoint_info PARAMS ((ClientData, Tcl_Interp *, int, char *[]));
137static void breakpoint_notify PARAMS ((struct breakpoint *, const char *));
138static void gdbtk_create_breakpoint PARAMS ((struct breakpoint *));
139static void gdbtk_delete_breakpoint PARAMS ((struct breakpoint *));
140static void gdbtk_modify_breakpoint PARAMS ((struct breakpoint *));
141static int gdb_loc PARAMS ((ClientData, Tcl_Interp *, int, char *[]));
142static int gdb_eval PARAMS ((ClientData, Tcl_Interp *, int, char *[]));
b607efe7
FF
143static int map_arg_registers PARAMS ((int, char *[], void (*) (int, void *), void *));
144static void get_register_name PARAMS ((int, void *));
145static int gdb_regnames PARAMS ((ClientData, Tcl_Interp *, int, char *[]));
146static void get_register PARAMS ((int, void *));
41158958 147static int gdb_trace_status PARAMS ((ClientData, Tcl_Interp *, int, char *argv[]));
018d76dd
KS
148static int gdb_target_has_execution_command PARAMS ((ClientData, Tcl_Interp *, int, char *argv[]));
149static int gdb_load_info PARAMS ((ClientData, Tcl_Interp *, int, Tcl_Obj *CONST objv[]));
0776b0b0 150void TclDebug PARAMS ((const char *fmt, ...));
b33b741a
JI
151static int gdb_get_locals_command PARAMS ((ClientData, Tcl_Interp *, int, Tcl_Obj *CONST
152 objv[]));
153static int gdb_get_args_command PARAMS ((ClientData, Tcl_Interp *, int, Tcl_Obj *CONST
154 objv[]));
018d76dd
KS
155static int gdb_get_vars_command PARAMS ((ClientData, Tcl_Interp *, int, Tcl_Obj *CONST objv[]));
156static int gdb_get_function_command PARAMS ((ClientData, Tcl_Interp *, int, Tcl_Obj *CONST objv[]));
157static int gdb_get_line_command PARAMS ((ClientData, Tcl_Interp *, int, Tcl_Obj *CONST objv[]));
158static int gdb_get_file_command PARAMS ((ClientData, Tcl_Interp *, int, Tcl_Obj *CONST objv[]));
159static int gdb_tracepoint_exists_command PARAMS ((ClientData, Tcl_Interp *, int, Tcl_Obj *CONST objv[]));
160static int gdb_get_tracepoint_info PARAMS ((ClientData, Tcl_Interp *, int, Tcl_Obj *CONST objv[]));
161static int gdb_actions_command PARAMS ((ClientData, Tcl_Interp *, int, Tcl_Obj *CONST objv[]));
162static int gdb_prompt_command PARAMS ((ClientData, Tcl_Interp *, int, Tcl_Obj *CONST objv[]));
e0f7db02 163static int gdb_find_file_command PARAMS ((ClientData, Tcl_Interp *, int, Tcl_Obj *CONST objv[]));
4f17e6eb 164static int gdb_get_tracepoint_list PARAMS ((ClientData, Tcl_Interp *, int, Tcl_Obj *CONST objv[]));
018d76dd
KS
165static void gdbtk_create_tracepoint PARAMS ((struct tracepoint *));
166static void gdbtk_delete_tracepoint PARAMS ((struct tracepoint *));
a5f4fbff 167static void gdbtk_modify_tracepoint PARAMS ((struct tracepoint *));
018d76dd 168static void tracepoint_notify PARAMS ((struct tracepoint *, const char *));
a5f4fbff 169static void gdbtk_print_frame_info PARAMS ((struct symtab *, int, int, int));
11f91b2b
KS
170void gdbtk_pre_add_symbol PARAMS ((char *));
171void gdbtk_post_add_symbol PARAMS ((void));
929db6e5
EZ
172static int get_pc_register PARAMS ((ClientData, Tcl_Interp *, int, char *[]));
173static int gdb_loadfile PARAMS ((ClientData, Tcl_Interp *, int, Tcl_Obj *CONST objv[]));
174static int gdb_set_bp PARAMS ((ClientData, Tcl_Interp *, int, Tcl_Obj *CONST objv[]));
175static struct symtab *full_lookup_symtab PARAMS ((char *file));
176static int gdb_get_mem PARAMS ((ClientData, Tcl_Interp *, int, char *[]));
fed03c01 177static int gdb_get_trace_frame_num PARAMS ((ClientData, Tcl_Interp *, int, Tcl_Obj *CONST objv[]));
b607efe7 178
754e5da2
SG
179/* Handle for TCL interpreter */
180static Tcl_Interp *interp = NULL;
181
0776b0b0 182static int gdbtk_timer_going = 0;
0776b0b0
MH
183static void gdbtk_start_timer PARAMS ((void));
184static void gdbtk_stop_timer PARAMS ((void));
185
fda6fadc
SS
186/* This variable is true when the inferior is running. Although it's
187 possible to disable most input from widgets and thus prevent
188 attempts to do anything while the inferior is running, any commands
189 that get through - even a simple memory read - are Very Bad, and
190 may cause GDB to crash or behave strangely. So, this variable
191 provides an extra layer of defense. */
09722039 192
fda6fadc
SS
193static int running_now;
194
195/* This variable determines where memory used for disassembly is read from.
196 If > 0, then disassembly comes from the exec file rather than the
197 target (which might be at the other end of a slow serial link). If
198 == 0 then disassembly comes from target. If < 0 disassembly is
199 automatically switched to the target if it's an inferior process,
200 otherwise the exec file is used. */
09722039
SG
201
202static int disassemble_from_exec = -1;
203
9b119644
ILT
204#ifndef _WIN32
205
206/* Supply malloc calls for tcl/tk. We do not want to do this on
207 Windows, because Tcl_Alloc is probably in a DLL which will not call
208 the mmalloc routines. */
8c19daa1
SG
209
210char *
a5a6e3bd 211Tcl_Alloc (size)
8c19daa1
SG
212 unsigned int size;
213{
214 return xmalloc (size);
215}
216
217char *
218Tcl_Realloc (ptr, size)
219 char *ptr;
220 unsigned int size;
221{
222 return xrealloc (ptr, size);
223}
224
225void
226Tcl_Free(ptr)
227 char *ptr;
228{
229 free (ptr);
230}
231
018d76dd 232#endif /* ! _WIN32 */
9b119644 233
754e5da2
SG
234static void
235null_routine(arg)
236 int arg;
237{
238}
239
018d76dd
KS
240#ifdef _WIN32
241
242/* On Windows, if we hold a file open, other programs can't write to
243 it. In particular, we don't want to hold the executable open,
244 because it will mean that people have to get out of the debugging
245 session in order to remake their program. So we close it, although
246 this will cost us if and when we need to reopen it. */
247
248static void
249close_bfds ()
250{
251 struct objfile *o;
252
253 ALL_OBJFILES (o)
254 {
255 if (o->obfd != NULL)
256 bfd_cache_close (o->obfd);
257 }
258
259 if (exec_bfd != NULL)
260 bfd_cache_close (exec_bfd);
261}
262
263#endif /* _WIN32 */
264
546b8ca7
SG
265/* The following routines deal with stdout/stderr data, which is created by
266 {f}printf_{un}filtered and friends. gdbtk_fputs and gdbtk_flush are the
267 lowest level of these routines and capture all output from the rest of GDB.
268 Normally they present their data to tcl via callbacks to the following tcl
269 routines: gdbtk_tcl_fputs, gdbtk_tcl_fputs_error, and gdbtk_flush. These
270 in turn call tk routines to update the display.
86db943c 271
546b8ca7
SG
272 Under some circumstances, you may want to collect the output so that it can
273 be returned as the value of a tcl procedure. This can be done by
274 surrounding the output routines with calls to start_saving_output and
275 finish_saving_output. The saved data can then be retrieved with
276 get_saved_output (but this must be done before the call to
277 finish_saving_output). */
86db943c 278
018d76dd 279/* Dynamic string for output. */
86db943c 280
6131622e 281static Tcl_DString *result_ptr;
018d76dd
KS
282
283/* Dynamic string for stderr. This is only used if result_ptr is
284 NULL. */
285
286static Tcl_DString *error_string_ptr;
754e5da2 287\f
754e5da2
SG
288static void
289gdbtk_flush (stream)
290 FILE *stream;
291{
6131622e 292#if 0
86db943c
SG
293 /* Force immediate screen update */
294
754e5da2 295 Tcl_VarEval (interp, "gdbtk_tcl_flush", NULL);
6131622e 296#endif
754e5da2
SG
297}
298
fed03c01
EZ
299/* Print the string PTR, with necessary hair for dealing with the
300 GDB console thingy, etc. To wit:
301
302 Append the string PTR to result_ptr or error_string_ptr, if they
303 are set. Otherwise, call the Tcl function `gdbtk_tcl_fputs', with
304 the string PTR as its only argument. */
8532893d 305static void
86db943c 306gdbtk_fputs (ptr, stream)
8532893d 307 const char *ptr;
86db943c 308 FILE *stream;
8532893d 309{
ed5fa7c3
MH
310 char *merge[2], *command;
311 in_fputs = 1;
312
6131622e 313 if (result_ptr)
ff62d310 314 Tcl_DStringAppend (result_ptr, (char *) ptr, -1);
018d76dd
KS
315 else if (error_string_ptr != NULL && stream == gdb_stderr)
316 Tcl_DStringAppend (error_string_ptr, (char *) ptr, -1);
6131622e 317 else
86db943c 318 {
ed5fa7c3
MH
319 merge[0] = "gdbtk_tcl_fputs";
320 merge[1] = (char *)ptr;
321 command = Tcl_Merge (2, merge);
322 Tcl_Eval (interp, command);
323 Tcl_Free (command);
6131622e 324 }
ed5fa7c3 325 in_fputs = 0;
8532893d
SG
326}
327
e6e9507d
EZ
328static void
329gdbtk_warning (warning, args)
330 const char *warning;
331 va_list args;
332{
333 char buf[200], *merge[2];
334 char *command;
335
336 vsprintf (buf, warning, args);
337 merge[0] = "gdbtk_tcl_warning";
338 merge[1] = buf;
339 command = Tcl_Merge (2, merge);
340 Tcl_Eval (interp, command);
341 Tcl_Free (command);
342}
343
344static void
cb432079 345gdbtk_ignorable_warning (warning)
e6e9507d 346 const char *warning;
e6e9507d
EZ
347{
348 char buf[200], *merge[2];
349 char *command;
350
cb432079 351 sprintf (buf, warning);
e6e9507d
EZ
352 merge[0] = "gdbtk_tcl_ignorable_warning";
353 merge[1] = buf;
354 command = Tcl_Merge (2, merge);
355 Tcl_Eval (interp, command);
356 Tcl_Free (command);
357}
358
754e5da2 359static int
85c613aa 360gdbtk_query (query, args)
b607efe7 361 const char *query;
754e5da2
SG
362 va_list args;
363{
4e327047
TT
364 char buf[200], *merge[2];
365 char *command;
754e5da2
SG
366 long val;
367
6131622e 368 vsprintf (buf, query, args);
4e327047
TT
369 merge[0] = "gdbtk_tcl_query";
370 merge[1] = buf;
371 command = Tcl_Merge (2, merge);
372 Tcl_Eval (interp, command);
018d76dd 373 Tcl_Free (command);
e6e9507d 374
754e5da2
SG
375 val = atol (interp->result);
376 return val;
377}
41756e56
FF
378
379/* VARARGS */
380static void
381#ifdef ANSI_PROTOTYPES
382gdbtk_readline_begin (char *format, ...)
383#else
384gdbtk_readline_begin (va_alist)
385 va_dcl
386#endif
387{
388 va_list args;
389 char buf[200], *merge[2];
390 char *command;
391
392#ifdef ANSI_PROTOTYPES
393 va_start (args, format);
394#else
395 char *format;
396 va_start (args);
397 format = va_arg (args, char *);
398#endif
399
400 vsprintf (buf, format, args);
401 merge[0] = "gdbtk_tcl_readline_begin";
402 merge[1] = buf;
403 command = Tcl_Merge (2, merge);
404 Tcl_Eval (interp, command);
929db6e5 405 Tcl_Free (command);
41756e56
FF
406}
407
408static char *
409gdbtk_readline (prompt)
410 char *prompt;
411{
412 char *merge[2];
413 char *command;
bd45f82f 414 int result;
41756e56 415
018d76dd
KS
416#ifdef _WIN32
417 close_bfds ();
418#endif
419
41756e56
FF
420 merge[0] = "gdbtk_tcl_readline";
421 merge[1] = prompt;
422 command = Tcl_Merge (2, merge);
bd45f82f 423 result = Tcl_Eval (interp, command);
929db6e5 424 Tcl_Free (command);
bd45f82f 425 if (result == TCL_OK)
41756e56
FF
426 {
427 return (strdup (interp -> result));
428 }
429 else
430 {
431 gdbtk_fputs (interp -> result, gdb_stdout);
432 gdbtk_fputs ("\n", gdb_stdout);
433 return (NULL);
434 }
435}
436
437static void
438gdbtk_readline_end ()
439{
440 Tcl_Eval (interp, "gdbtk_tcl_readline_end");
441}
442
929db6e5
EZ
443static void
444pc_changed()
445{
446 Tcl_Eval (interp, "gdbtk_pc_changed");
447}
448
754e5da2 449\f
6131622e 450static void
73d3dbd4 451#ifdef ANSI_PROTOTYPES
85c613aa
C
452dsprintf_append_element (Tcl_DString *dsp, char *format, ...)
453#else
6131622e
SG
454dsprintf_append_element (va_alist)
455 va_dcl
85c613aa 456#endif
6131622e
SG
457{
458 va_list args;
85c613aa
C
459 char buf[1024];
460
73d3dbd4 461#ifdef ANSI_PROTOTYPES
85c613aa
C
462 va_start (args, format);
463#else
6131622e
SG
464 Tcl_DString *dsp;
465 char *format;
6131622e
SG
466
467 va_start (args);
6131622e
SG
468 dsp = va_arg (args, Tcl_DString *);
469 format = va_arg (args, char *);
85c613aa 470#endif
6131622e
SG
471
472 vsprintf (buf, format, args);
473
474 Tcl_DStringAppendElement (dsp, buf);
475}
476
8a19b35a
MH
477static int
478gdb_path_conv (clientData, interp, argc, argv)
479 ClientData clientData;
480 Tcl_Interp *interp;
481 int argc;
482 char *argv[];
483{
484#ifdef WINNT
485 char pathname[256], *ptr;
486 if (argc != 2)
487 error ("wrong # args");
488 cygwin32_conv_to_full_win32_path (argv[1], pathname);
489 for (ptr = pathname; *ptr; ptr++)
490 {
491 if (*ptr == '\\')
492 *ptr = '/';
493 }
494#else
495 char *pathname = argv[1];
496#endif
497 Tcl_DStringAppend (result_ptr, pathname, strlen(pathname));
498 return TCL_OK;
499}
500
6131622e
SG
501static int
502gdb_get_breakpoint_list (clientData, interp, argc, argv)
503 ClientData clientData;
504 Tcl_Interp *interp;
505 int argc;
506 char *argv[];
507{
508 struct breakpoint *b;
509 extern struct breakpoint *breakpoint_chain;
510
511 if (argc != 1)
512 error ("wrong # args");
513
514 for (b = breakpoint_chain; b; b = b->next)
515 if (b->type == bp_breakpoint)
516 dsprintf_append_element (result_ptr, "%d", b->number);
517
518 return TCL_OK;
519}
520
521static int
522gdb_get_breakpoint_info (clientData, interp, argc, argv)
523 ClientData clientData;
524 Tcl_Interp *interp;
525 int argc;
526 char *argv[];
527{
528 struct symtab_and_line sal;
529 static char *bptypes[] = {"breakpoint", "hardware breakpoint", "until",
530 "finish", "watchpoint", "hardware watchpoint",
531 "read watchpoint", "access watchpoint",
532 "longjmp", "longjmp resume", "step resume",
533 "through sigtramp", "watchpoint scope",
534 "call dummy" };
27f1958c 535 static char *bpdisp[] = {"delete", "delstop", "disable", "donttouch"};
6131622e
SG
536 struct command_line *cmd;
537 int bpnum;
538 struct breakpoint *b;
539 extern struct breakpoint *breakpoint_chain;
929db6e5
EZ
540 char *funcname, *fname, *filename;
541
6131622e
SG
542 if (argc != 2)
543 error ("wrong # args");
544
545 bpnum = atoi (argv[1]);
546
547 for (b = breakpoint_chain; b; b = b->next)
548 if (b->number == bpnum)
549 break;
550
9468f8aa 551 if (!b || b->type != bp_breakpoint)
6131622e
SG
552 error ("Breakpoint #%d does not exist", bpnum);
553
6131622e
SG
554 sal = find_pc_line (b->address, 0);
555
6c3908db
KS
556 filename = symtab_to_filename (sal.symtab);
557 if (filename == NULL)
11f91b2b 558 filename = "";
84f71d63 559 Tcl_DStringAppendElement (result_ptr, filename);
929db6e5 560
018d76dd 561 find_pc_partial_function (b->address, &funcname, NULL, NULL);
929db6e5
EZ
562 fname = cplus_demangle (funcname, 0);
563 if (fname)
564 {
565 Tcl_DStringAppendElement (result_ptr, fname);
566 free (fname);
567 }
568 else
569 Tcl_DStringAppendElement (result_ptr, funcname);
570 dsprintf_append_element (result_ptr, "%d", b->line_number);
6131622e
SG
571 dsprintf_append_element (result_ptr, "0x%lx", b->address);
572 Tcl_DStringAppendElement (result_ptr, bptypes[b->type]);
573 Tcl_DStringAppendElement (result_ptr, b->enable == enabled ? "1" : "0");
574 Tcl_DStringAppendElement (result_ptr, bpdisp[b->disposition]);
6131622e
SG
575 dsprintf_append_element (result_ptr, "%d", b->ignore_count);
576
577 Tcl_DStringStartSublist (result_ptr);
578 for (cmd = b->commands; cmd; cmd = cmd->next)
579 Tcl_DStringAppendElement (result_ptr, cmd->line);
580 Tcl_DStringEndSublist (result_ptr);
581
582 Tcl_DStringAppendElement (result_ptr, b->cond_string);
583
584 dsprintf_append_element (result_ptr, "%d", b->thread);
585 dsprintf_append_element (result_ptr, "%d", b->hit_count);
586
587 return TCL_OK;
588}
589
754e5da2
SG
590static void
591breakpoint_notify(b, action)
592 struct breakpoint *b;
593 const char *action;
594{
32707df8 595 char buf[256];
754e5da2 596 int v;
2476848a 597 struct symtab_and_line sal;
6c3908db 598 char *filename;
754e5da2
SG
599
600 if (b->type != bp_breakpoint)
601 return;
602
4e327047
TT
603 /* We ensure that ACTION contains no special Tcl characters, so we
604 can do this. */
2476848a 605 sal = find_pc_line (b->address, 0);
6c3908db
KS
606 filename = symtab_to_filename (sal.symtab);
607 if (filename == NULL)
929db6e5
EZ
608 filename = "";
609
2476848a 610 sprintf (buf, "gdbtk_tcl_breakpoint %s %d 0x%lx %d {%s}", action, b->number,
929db6e5 611 (long)b->address, b->line_number, filename);
754e5da2 612
6131622e 613 v = Tcl_Eval (interp, buf);
754e5da2
SG
614
615 if (v != TCL_OK)
616 {
546b8ca7
SG
617 gdbtk_fputs (interp->result, gdb_stdout);
618 gdbtk_fputs ("\n", gdb_stdout);
754e5da2 619 }
754e5da2
SG
620}
621
622static void
623gdbtk_create_breakpoint(b)
624 struct breakpoint *b;
625{
6131622e 626 breakpoint_notify (b, "create");
754e5da2
SG
627}
628
629static void
630gdbtk_delete_breakpoint(b)
631 struct breakpoint *b;
632{
6131622e 633 breakpoint_notify (b, "delete");
754e5da2
SG
634}
635
636static void
6131622e 637gdbtk_modify_breakpoint(b)
754e5da2
SG
638 struct breakpoint *b;
639{
6131622e 640 breakpoint_notify (b, "modify");
754e5da2
SG
641}
642\f
929db6e5
EZ
643/* This implements the TCL command `gdb_loc', which returns a list */
644/* consisting of the following: */
645/* basename, function name, filename, line number, address, current pc */
754e5da2
SG
646
647static int
648gdb_loc (clientData, interp, argc, argv)
649 ClientData clientData;
650 Tcl_Interp *interp;
651 int argc;
652 char *argv[];
653{
654 char *filename;
754e5da2 655 struct symtab_and_line sal;
929db6e5 656 char *funcname, *fname;
8532893d 657 CORE_ADDR pc;
754e5da2 658
018d76dd
KS
659 if (!have_full_symbols () && !have_partial_symbols ())
660 {
661 Tcl_SetResult (interp, "No symbol table is loaded", TCL_STATIC);
662 return TCL_ERROR;
663 }
929db6e5 664
754e5da2
SG
665 if (argc == 1)
666 {
929db6e5 667 if (selected_frame && (selected_frame->pc != stop_pc))
0776b0b0 668 {
929db6e5
EZ
669 /* Note - this next line is not correct on all architectures. */
670 /* For a graphical debugged we really want to highlight the */
671 /* assembly line that called the next function on the stack. */
672 /* Many architectures have the next instruction saved as the */
673 /* pc on the stack, so what happens is the next instruction is hughlighted. */
674 /* FIXME */
675 pc = selected_frame->pc;
0776b0b0
MH
676 sal = find_pc_line (selected_frame->pc,
677 selected_frame->next != NULL
678 && !selected_frame->next->signal_handler_caller
679 && !frame_in_dummy (selected_frame->next));
680 }
681 else
929db6e5
EZ
682 {
683 pc = stop_pc;
684 sal = find_pc_line (stop_pc, 0);
685 }
754e5da2
SG
686 }
687 else if (argc == 2)
688 {
754e5da2 689 struct symtabs_and_lines sals;
8532893d 690 int nelts;
754e5da2
SG
691
692 sals = decode_line_spec (argv[1], 1);
693
8532893d
SG
694 nelts = sals.nelts;
695 sal = sals.sals[0];
696 free (sals.sals);
697
754e5da2 698 if (sals.nelts != 1)
6131622e 699 error ("Ambiguous line spec");
ed5fa7c3
MH
700
701 pc = sal.pc;
754e5da2
SG
702 }
703 else
6131622e 704 error ("wrong # args");
754e5da2 705
754e5da2 706 if (sal.symtab)
6131622e 707 Tcl_DStringAppendElement (result_ptr, sal.symtab->filename);
754e5da2 708 else
6131622e 709 Tcl_DStringAppendElement (result_ptr, "");
8532893d
SG
710
711 find_pc_partial_function (pc, &funcname, NULL, NULL);
929db6e5
EZ
712 fname = cplus_demangle (funcname, 0);
713 if (fname)
714 {
715 Tcl_DStringAppendElement (result_ptr, fname);
716 free (fname);
717 }
718 else
719 Tcl_DStringAppendElement (result_ptr, funcname);
637b1661 720 filename = symtab_to_filename (sal.symtab);
6c3908db 721 if (filename == NULL)
929db6e5 722 filename = "";
8532893d 723
0776b0b0 724 Tcl_DStringAppendElement (result_ptr, filename);
9468f8aa 725 dsprintf_append_element (result_ptr, "%d", sal.line); /* line number */
2476848a 726 dsprintf_append_element (result_ptr, "0x%s", paddr_nz(pc)); /* PC in current frame */
2476848a 727 dsprintf_append_element (result_ptr, "0x%s", paddr_nz(stop_pc)); /* Real PC */
754e5da2
SG
728 return TCL_OK;
729}
730\f
09722039
SG
731/* This implements the TCL command `gdb_eval'. */
732
733static int
734gdb_eval (clientData, interp, argc, argv)
735 ClientData clientData;
736 Tcl_Interp *interp;
737 int argc;
738 char *argv[];
739{
740 struct expression *expr;
741 struct cleanup *old_chain;
742 value_ptr val;
743
744 if (argc != 2)
6131622e 745 error ("wrong # args");
09722039
SG
746
747 expr = parse_expression (argv[1]);
748
749 old_chain = make_cleanup (free_current_contents, &expr);
750
751 val = evaluate_expression (expr);
752
09722039
SG
753 val_print (VALUE_TYPE (val), VALUE_CONTENTS (val), VALUE_ADDRESS (val),
754 gdb_stdout, 0, 0, 0, 0);
09722039
SG
755
756 do_cleanups (old_chain);
757
758 return TCL_OK;
759}
018d76dd
KS
760
761/* gdb_get_mem addr form size num aschar*/
762/* dump a block of memory */
763/* addr: address of data to dump */
764/* form: a char indicating format */
765/* size: size of each element; 1,2,4, or 8 bytes*/
ac3dff67
EZ
766/* num: the number of bytes to read */
767/* acshar: an optional ascii character to use in ASCII dump */
768/* returns a list of elements followed by an optional */
018d76dd 769/* ASCII dump */
ac3dff67 770
018d76dd
KS
771static int
772gdb_get_mem (clientData, interp, argc, argv)
773 ClientData clientData;
774 Tcl_Interp *interp;
775 int argc;
776 char *argv[];
777{
ac3dff67
EZ
778 int size, asize, i, j, bc;
779 CORE_ADDR addr;
780 int nbytes, rnum, bpr;
781 char format, c, *ptr, buff[128], aschar, *mbuf, *mptr, *cptr, *bptr;
018d76dd 782 struct type *val_type;
018d76dd 783
ac3dff67
EZ
784 if (argc < 6 || argc > 7)
785 {
786 interp->result = "addr format size bytes bytes_per_row ?ascii_char?";
787 return TCL_ERROR;
788 }
789
790 size = (int)strtoul(argv[3],(char **)NULL,0);
791 nbytes = (int)strtoul(argv[4],(char **)NULL,0);
792 bpr = (int)strtoul(argv[5],(char **)NULL,0);
793 if (nbytes <= 0 || bpr <= 0 || size <= 0)
794 {
795 interp->result = "Invalid number of bytes.";
796 return TCL_ERROR;
797 }
018d76dd
KS
798
799 addr = (CORE_ADDR)strtoul(argv[1],(char **)NULL,0);
018d76dd 800 format = *argv[2];
ac3dff67
EZ
801 mbuf = (char *)malloc (nbytes+32);
802 if (!mbuf)
803 {
804 interp->result = "Out of memory.";
805 return TCL_ERROR;
806 }
807 memset (mbuf, 0, nbytes+32);
808 mptr = cptr = mbuf;
809
810 rnum = target_read_memory_partial (addr, mbuf, nbytes, NULL);
811
812 if (argv[6])
813 aschar = *argv[6];
814 else
815 aschar = 0;
018d76dd
KS
816
817 switch (size) {
818 case 1:
819 val_type = builtin_type_char;
820 asize = 'b';
821 break;
822 case 2:
823 val_type = builtin_type_short;
824 asize = 'h';
825 break;
826 case 4:
827 val_type = builtin_type_int;
828 asize = 'w';
829 break;
830 case 8:
831 val_type = builtin_type_long_long;
832 asize = 'g';
833 break;
834 default:
835 val_type = builtin_type_char;
836 asize = 'b';
837 }
838
ac3dff67
EZ
839 bc = 0; /* count of bytes in a row */
840 buff[0] = '"'; /* buffer for ascii dump */
841 bptr = &buff[1]; /* pointer for ascii dump */
842
843 for (i=0; i < nbytes; i+= size)
018d76dd 844 {
ac3dff67
EZ
845 if ( i >= rnum)
846 {
847 fputs_unfiltered ("N/A ", gdb_stdout);
848 if (aschar)
849 for ( j = 0; j < size; j++)
850 *bptr++ = 'X';
851 }
852 else
853 {
854 print_scalar_formatted (mptr, val_type, format, asize, gdb_stdout);
855 fputs_unfiltered (" ", gdb_stdout);
856 if (aschar)
857 {
858 for ( j = 0; j < size; j++)
859 {
860 c = *cptr++;
861 if (c < 32 || c > 126)
862 c = aschar;
863 if (c == '"')
864 *bptr++ = '\\';
865 *bptr++ = c;
866 }
867 }
868 }
018d76dd 869
ac3dff67
EZ
870 mptr += size;
871 bc += size;
872
873 if (aschar && (bc >= bpr))
018d76dd 874 {
ac3dff67
EZ
875 /* end of row. print it and reset variables */
876 bc = 0;
877 *bptr++ = '"';
878 *bptr++ = ' ';
879 *bptr = 0;
880 fputs_unfiltered (buff, gdb_stdout);
881 bptr = &buff[1];
018d76dd 882 }
018d76dd 883 }
ac3dff67
EZ
884
885 free (mbuf);
018d76dd
KS
886 return TCL_OK;
887}
888
746d1df4
SG
889static int
890map_arg_registers (argc, argv, func, argp)
891 int argc;
892 char *argv[];
6131622e 893 void (*func) PARAMS ((int regnum, void *argp));
746d1df4
SG
894 void *argp;
895{
896 int regnum;
897
898 /* Note that the test for a valid register must include checking the
899 reg_names array because NUM_REGS may be allocated for the union of the
900 register sets within a family of related processors. In this case, the
901 trailing entries of reg_names will change depending upon the particular
902 processor being debugged. */
903
904 if (argc == 0) /* No args, just do all the regs */
905 {
906 for (regnum = 0;
907 regnum < NUM_REGS
908 && reg_names[regnum] != NULL
909 && *reg_names[regnum] != '\000';
910 regnum++)
911 func (regnum, argp);
912
913 return TCL_OK;
914 }
915
916 /* Else, list of register #s, just do listed regs */
917 for (; argc > 0; argc--, argv++)
918 {
919 regnum = atoi (*argv);
920
921 if (regnum >= 0
922 && regnum < NUM_REGS
923 && reg_names[regnum] != NULL
924 && *reg_names[regnum] != '\000')
925 func (regnum, argp);
926 else
6131622e 927 error ("bad register number");
746d1df4
SG
928 }
929
930 return TCL_OK;
931}
932
6131622e 933static void
746d1df4
SG
934get_register_name (regnum, argp)
935 int regnum;
936 void *argp; /* Ignored */
937{
6131622e 938 Tcl_DStringAppendElement (result_ptr, reg_names[regnum]);
746d1df4
SG
939}
940
5b21fb68
SG
941/* This implements the TCL command `gdb_regnames', which returns a list of
942 all of the register names. */
943
944static int
945gdb_regnames (clientData, interp, argc, argv)
946 ClientData clientData;
947 Tcl_Interp *interp;
948 int argc;
949 char *argv[];
950{
746d1df4
SG
951 argc--;
952 argv++;
953
b607efe7 954 return map_arg_registers (argc, argv, get_register_name, NULL);
746d1df4
SG
955}
956
746d1df4
SG
957#ifndef REGISTER_CONVERTIBLE
958#define REGISTER_CONVERTIBLE(x) (0 != 0)
959#endif
960
961#ifndef REGISTER_CONVERT_TO_VIRTUAL
962#define REGISTER_CONVERT_TO_VIRTUAL(x, y, z, a)
963#endif
964
965#ifndef INVALID_FLOAT
966#define INVALID_FLOAT(x, y) (0 != 0)
967#endif
968
6131622e 969static void
746d1df4 970get_register (regnum, fp)
6131622e 971 int regnum;
746d1df4
SG
972 void *fp;
973{
974 char raw_buffer[MAX_REGISTER_RAW_SIZE];
975 char virtual_buffer[MAX_REGISTER_VIRTUAL_SIZE];
976 int format = (int)fp;
977
929db6e5
EZ
978 if (format == 'N')
979 format = 0;
980
746d1df4
SG
981 if (read_relative_register_raw_bytes (regnum, raw_buffer))
982 {
6131622e 983 Tcl_DStringAppendElement (result_ptr, "Optimized out");
746d1df4
SG
984 return;
985 }
986
746d1df4
SG
987 /* Convert raw data to virtual format if necessary. */
988
989 if (REGISTER_CONVERTIBLE (regnum))
990 {
991 REGISTER_CONVERT_TO_VIRTUAL (regnum, REGISTER_VIRTUAL_TYPE (regnum),
992 raw_buffer, virtual_buffer);
993 }
994 else
995 memcpy (virtual_buffer, raw_buffer, REGISTER_VIRTUAL_SIZE (regnum));
996
3d9f68c0
FF
997 if (format == 'r')
998 {
999 int j;
1000 printf_filtered ("0x");
1001 for (j = 0; j < REGISTER_RAW_SIZE (regnum); j++)
1002 {
1003 register int idx = TARGET_BYTE_ORDER == BIG_ENDIAN ? j
1004 : REGISTER_RAW_SIZE (regnum) - 1 - j;
1005 printf_filtered ("%02x", (unsigned char)raw_buffer[idx]);
1006 }
1007 }
1008 else
1009 val_print (REGISTER_VIRTUAL_TYPE (regnum), virtual_buffer, 0,
1010 gdb_stdout, format, 1, 0, Val_pretty_default);
746d1df4 1011
6131622e 1012 Tcl_DStringAppend (result_ptr, " ", -1);
746d1df4
SG
1013}
1014
929db6e5
EZ
1015static int
1016get_pc_register (clientData, interp, argc, argv)
1017 ClientData clientData;
1018 Tcl_Interp *interp;
1019 int argc;
1020 char *argv[];
1021{
1022 sprintf(interp->result,"0x%llx",(long long)read_register(PC_REGNUM));
1023 return TCL_OK;
1024}
1025
746d1df4
SG
1026static int
1027gdb_fetch_registers (clientData, interp, argc, argv)
1028 ClientData clientData;
1029 Tcl_Interp *interp;
1030 int argc;
1031 char *argv[];
1032{
1033 int format;
1034
1035 if (argc < 2)
6131622e 1036 error ("wrong # args");
5b21fb68 1037
929db6e5 1038 argc -= 2;
746d1df4 1039 argv++;
746d1df4 1040 format = **argv++;
929db6e5 1041
b607efe7 1042 return map_arg_registers (argc, argv, get_register, (void *) format);
746d1df4
SG
1043}
1044
1045/* This contains the previous values of the registers, since the last call to
1046 gdb_changed_register_list. */
1047
1048static char old_regs[REGISTER_BYTES];
1049
6131622e 1050static void
746d1df4 1051register_changed_p (regnum, argp)
6131622e 1052 int regnum;
746d1df4
SG
1053 void *argp; /* Ignored */
1054{
1055 char raw_buffer[MAX_REGISTER_RAW_SIZE];
746d1df4
SG
1056
1057 if (read_relative_register_raw_bytes (regnum, raw_buffer))
1058 return;
1059
1060 if (memcmp (&old_regs[REGISTER_BYTE (regnum)], raw_buffer,
1061 REGISTER_RAW_SIZE (regnum)) == 0)
1062 return;
1063
fda6fadc 1064 /* Found a changed register. Save new value and return its number. */
746d1df4
SG
1065
1066 memcpy (&old_regs[REGISTER_BYTE (regnum)], raw_buffer,
1067 REGISTER_RAW_SIZE (regnum));
1068
9468f8aa 1069 dsprintf_append_element (result_ptr, "%d", regnum);
746d1df4
SG
1070}
1071
1072static int
1073gdb_changed_register_list (clientData, interp, argc, argv)
1074 ClientData clientData;
1075 Tcl_Interp *interp;
1076 int argc;
1077 char *argv[];
1078{
746d1df4
SG
1079 argc--;
1080 argv++;
1081
1082 return map_arg_registers (argc, argv, register_changed_p, NULL);
5b21fb68
SG
1083}
1084\f
0422b59e
KS
1085/* This implements the tcl command "gdb_immediate", which does exactly
1086 the same thing as gdb_cmd, except NONE of its outut is buffered. */
4350602f
KS
1087/* This will also ALWAYS cause the busy,update, and idle hooks to be
1088 called, contrasted with gdb_cmd, which NEVER calls them. */
0422b59e
KS
1089static int
1090gdb_immediate_command (clientData, interp, argc, argv)
1091 ClientData clientData;
1092 Tcl_Interp *interp;
1093 int argc;
1094 char *argv[];
1095{
1096 Tcl_DString *save_ptr = NULL;
1097
1098 if (argc != 2)
1099 error ("wrong # args");
1100
ed5fa7c3 1101 if (running_now || load_in_progress)
0422b59e
KS
1102 return TCL_OK;
1103
0b7148e4
KS
1104 No_Update = 0;
1105
0422b59e
KS
1106 Tcl_DStringAppend (result_ptr, "", -1);
1107 save_ptr = result_ptr;
1108 result_ptr = NULL;
1109
1110 execute_command (argv[1], 1);
1111
1112 bpstat_do_actions (&stop_bpstat);
1113
1114 result_ptr = save_ptr;
1115
1116 return TCL_OK;
1117}
1118
fda6fadc 1119/* This implements the TCL command `gdb_cmd', which sends its argument into
754e5da2 1120 the GDB command scanner. */
4350602f
KS
1121/* This command will never cause the update, idle and busy hooks to be called
1122 within the GUI. */
754e5da2
SG
1123static int
1124gdb_cmd (clientData, interp, argc, argv)
1125 ClientData clientData;
1126 Tcl_Interp *interp;
1127 int argc;
1128 char *argv[];
1129{
018d76dd
KS
1130 Tcl_DString *save_ptr = NULL;
1131
0b7148e4 1132 if (argc < 2)
6131622e 1133 error ("wrong # args");
754e5da2 1134
ed5fa7c3 1135 if (running_now || load_in_progress)
fda6fadc
SS
1136 return TCL_OK;
1137
4350602f 1138 No_Update = 1;
0b7148e4 1139
018d76dd
KS
1140 /* for the load instruction (and possibly others later) we
1141 set result_ptr to NULL so gdbtk_fputs() will not buffer
1142 all the data until the command is finished. */
1143
4f17e6eb
KS
1144 if (strncmp ("load ", argv[1], 5) == 0
1145 || strncmp ("while ", argv[1], 6) == 0)
1146 {
1147 Tcl_DStringAppend (result_ptr, "", -1);
1148 save_ptr = result_ptr;
1149 result_ptr = NULL;
0776b0b0 1150 load_in_progress = 1;
0776b0b0 1151 gdbtk_start_timer ();
4f17e6eb 1152 }
018d76dd 1153
86db943c 1154 execute_command (argv[1], 1);
479f0f18 1155
0776b0b0 1156 if (load_in_progress)
7234efcb
KS
1157 {
1158 gdbtk_stop_timer ();
1159 load_in_progress = 0;
1160 }
0776b0b0 1161
754e5da2 1162 bpstat_do_actions (&stop_bpstat);
018d76dd
KS
1163
1164 if (save_ptr)
1165 result_ptr = save_ptr;
754e5da2 1166
754e5da2
SG
1167 return TCL_OK;
1168}
1169
c14cabba
AC
1170/* Client of call_wrapper - this routine performs the actual call to
1171 the client function. */
1172
1173struct wrapped_call_args
1174{
1175 Tcl_Interp *interp;
1176 Tcl_CmdProc *func;
1177 int argc;
1178 char **argv;
1179 int val;
1180};
1181
1182static int
1183wrapped_call (args)
1184 struct wrapped_call_args *args;
1185{
1186 args->val = (*args->func) (args->func, args->interp, args->argc, args->argv);
1187 return 1;
1188}
1189
ff62d310
JI
1190struct wrapped_call_objs
1191{
1192 Tcl_Interp *interp;
fed03c01 1193 Tcl_ObjCmdProc *func;
ff62d310 1194 int objc;
fed03c01 1195 Tcl_Obj * CONST *objv;
ff62d310
JI
1196 int val;
1197};
1198
1199static int
1200wrapped_obj_call (args)
1201 struct wrapped_call_objs *args;
1202{
1203 args->val = (*args->func) (args->func, args->interp, args->objc, args->objv);
1204 return 1;
1205}
1206
86db943c
SG
1207/* This routine acts as a top-level for all GDB code called by tcl/Tk. It
1208 handles cleanups, and calls to return_to_top_level (usually via error).
1209 This is necessary in order to prevent a longjmp out of the bowels of Tk,
1210 possibly leaving things in a bad state. Since this routine can be called
1211 recursively, it needs to save and restore the contents of the jmp_buf as
1212 necessary. */
1213
1214static int
1215call_wrapper (clientData, interp, argc, argv)
1216 ClientData clientData;
1217 Tcl_Interp *interp;
1218 int argc;
1219 char *argv[];
1220{
c14cabba 1221 struct wrapped_call_args wrapped_args;
6131622e 1222 Tcl_DString result, *old_result_ptr;
018d76dd 1223 Tcl_DString error_string, *old_error_string_ptr;
6131622e
SG
1224
1225 Tcl_DStringInit (&result);
1226 old_result_ptr = result_ptr;
1227 result_ptr = &result;
86db943c 1228
018d76dd
KS
1229 Tcl_DStringInit (&error_string);
1230 old_error_string_ptr = error_string_ptr;
1231 error_string_ptr = &error_string;
1232
c14cabba
AC
1233 wrapped_args.func = (Tcl_CmdProc *)clientData;
1234 wrapped_args.interp = interp;
1235 wrapped_args.argc = argc;
1236 wrapped_args.argv = argv;
1237 wrapped_args.val = 0;
86db943c 1238
c14cabba 1239 if (!catch_errors (wrapped_call, &wrapped_args, "", RETURN_MASK_ALL))
86db943c 1240 {
c14cabba 1241 wrapped_args.val = TCL_ERROR; /* Flag an error for TCL */
86db943c 1242
0776b0b0
MH
1243 /* Make sure the timer interrupts are turned off. */
1244 if (gdbtk_timer_going)
7234efcb 1245 gdbtk_stop_timer ();
86db943c 1246
0776b0b0 1247 gdb_flush (gdb_stderr); /* Flush error output */
09722039
SG
1248 gdb_flush (gdb_stdout); /* Sometimes error output comes here as well */
1249
fda6fadc
SS
1250 /* In case of an error, we may need to force the GUI into idle
1251 mode because gdbtk_call_command may have bombed out while in
1252 the command routine. */
86db943c 1253
40dffa42 1254 running_now = 0;
4e327047 1255 Tcl_Eval (interp, "gdbtk_tcl_idle");
86db943c 1256 }
929db6e5
EZ
1257
1258 /* do not suppress any errors -- a remote target could have errored */
1259 load_in_progress = 0;
0776b0b0 1260
018d76dd
KS
1261 if (Tcl_DStringLength (&error_string) == 0)
1262 {
1263 Tcl_DStringResult (interp, &result);
1264 Tcl_DStringFree (&error_string);
1265 }
1266 else if (Tcl_DStringLength (&result) == 0)
1267 {
1268 Tcl_DStringResult (interp, &error_string);
1269 Tcl_DStringFree (&result);
0776b0b0 1270 Tcl_DStringFree (&error_string);
018d76dd
KS
1271 }
1272 else
1273 {
1274 Tcl_ResetResult (interp);
1275 Tcl_AppendResult (interp, Tcl_DStringValue (&result),
1276 Tcl_DStringValue (&error_string), (char *) NULL);
1277 Tcl_DStringFree (&result);
1278 Tcl_DStringFree (&error_string);
1279 }
1280
6131622e 1281 result_ptr = old_result_ptr;
018d76dd
KS
1282 error_string_ptr = old_error_string_ptr;
1283
ff62d310
JI
1284#ifdef _WIN32
1285 close_bfds ();
1286#endif
1287
1288 return wrapped_args.val;
1289}
1290static int
1291call_obj_wrapper (clientData, interp, objc, objv)
1292 ClientData clientData;
1293 Tcl_Interp *interp;
1294 int objc;
1295 Tcl_Obj *CONST objv[];
1296{
1297 struct wrapped_call_objs wrapped_args;
1298 Tcl_DString result, *old_result_ptr;
1299 Tcl_DString error_string, *old_error_string_ptr;
1300
1301 /* The obj call wrapper works differently from the string wrapper, because
1302 * the obj calls currently insert their results directly into the
1303 * interpreter's result. So there is no need to have a result_ptr...
1304 * FIXME - rewrite all the object commands so they use a result_obj_ptr
1305 * - rewrite all the string commands to be object commands.
1306 */
1307
1308 Tcl_DStringInit (&result);
1309 old_result_ptr = result_ptr;
1310 result_ptr = &result;
1311
1312 Tcl_DStringInit (&error_string);
1313
1314 Tcl_DStringInit (&error_string);
1315 old_error_string_ptr = error_string_ptr;
1316 error_string_ptr = &error_string;
1317
fed03c01 1318 wrapped_args.func = (Tcl_ObjCmdProc *)clientData;
ff62d310
JI
1319 wrapped_args.interp = interp;
1320 wrapped_args.objc = objc;
1321 wrapped_args.objv = objv;
1322 wrapped_args.val = 0;
1323
1324 if (!catch_errors (wrapped_obj_call, &wrapped_args, "", RETURN_MASK_ALL))
1325 {
1326 wrapped_args.val = TCL_ERROR; /* Flag an error for TCL */
1327
1328 /* Make sure the timer interrupts are turned off. */
1329 if (gdbtk_timer_going)
1330 gdbtk_stop_timer ();
1331
1332 gdb_flush (gdb_stderr); /* Flush error output */
1333 gdb_flush (gdb_stdout); /* Sometimes error output comes here as well */
1334
1335 /* In case of an error, we may need to force the GUI into idle
1336 mode because gdbtk_call_command may have bombed out while in
1337 the command routine. */
1338
1339 running_now = 0;
1340 Tcl_Eval (interp, "gdbtk_tcl_idle");
51c5a136
JI
1341 /* if the error message is in RESULT instead of ERROR_STRING we copy it
1342 back to ERROR_STRING and free RESULT */
1343
1344 if ((Tcl_DStringLength (&error_string) == 0) &&
1345 (Tcl_DStringLength (&result) > 0))
1346 {
1347 Tcl_DStringAppend (&error_string, Tcl_DStringValue (&result),
1348 Tcl_DStringLength (&result));
1349 Tcl_DStringFree (&result);
1350 }
ff62d310
JI
1351 }
1352
1353 /* do not suppress any errors -- a remote target could have errored */
1354 load_in_progress = 0;
1355
1356 if (Tcl_DStringLength (&error_string) == 0)
1357 {
1358 /* We should insert the result here, but the obj commands now
1359 * do this directly, so we don't need to.
1360 * FIXME - ultimately, all this should be redone so that all the
1361 * commands either manipulate the Tcl result directly, or use a result_ptr.
1362 */
1363
1364 Tcl_DStringFree (&error_string);
1365 }
1366 else if (*(Tcl_GetStringResult (interp)) == '\0')
1367 {
1368 Tcl_DStringResult (interp, &error_string);
1369 Tcl_DStringFree (&error_string);
1370 }
1371 else
1372 {
1373 Tcl_AppendToObj(Tcl_GetObjResult(interp), Tcl_DStringValue (&error_string),
1374 Tcl_DStringLength (&error_string));
1375 Tcl_DStringFree (&error_string);
1376 }
1377
1378 result_ptr = old_result_ptr;
1379 error_string_ptr = old_error_string_ptr;
1380
018d76dd
KS
1381#ifdef _WIN32
1382 close_bfds ();
1383#endif
6131622e 1384
c14cabba 1385 return wrapped_args.val;
86db943c
SG
1386}
1387
754e5da2 1388static int
0776b0b0
MH
1389comp_files (file1, file2)
1390 const char *file1[], *file2[];
1391{
1392 return strcmp(*file1,*file2);
1393}
1394
0776b0b0
MH
1395static int
1396gdb_listfiles (clientData, interp, objc, objv)
1397 ClientData clientData;
1398 Tcl_Interp *interp;
1399 int objc;
1400 Tcl_Obj *CONST objv[];
754e5da2 1401{
754e5da2
SG
1402 struct objfile *objfile;
1403 struct partial_symtab *psymtab;
546b8ca7 1404 struct symtab *symtab;
6da4c15f
JM
1405 char *lastfile, *pathname, **files;
1406 int files_size;
0776b0b0
MH
1407 int i, numfiles = 0, len = 0;
1408 Tcl_Obj *mylist;
1409
6da4c15f
JM
1410 files_size = 1000;
1411 files = (char **) xmalloc (sizeof (char *) * files_size);
1412
0776b0b0
MH
1413 if (objc > 2)
1414 {
1415 Tcl_WrongNumArgs (interp, 1, objv, "Usage: gdb_listfiles ?pathname?");
1416 return TCL_ERROR;
1417 }
1418 else if (objc == 2)
1419 pathname = Tcl_GetStringFromObj (objv[1], &len);
1420
1421 mylist = Tcl_NewListObj (0, NULL);
754e5da2
SG
1422
1423 ALL_PSYMTABS (objfile, psymtab)
0776b0b0 1424 {
6da4c15f
JM
1425 if (numfiles == files_size)
1426 {
1427 files_size = files_size * 2;
1428 files = (char **) xrealloc (files, sizeof (char *) * files_size);
1429 }
0776b0b0
MH
1430 if (len == 0)
1431 {
1432 if (psymtab->filename)
1433 files[numfiles++] = basename(psymtab->filename);
1434 }
1435 else if (!strcmp(psymtab->filename,basename(psymtab->filename))
1436 || !strncmp(pathname,psymtab->filename,len))
1437 if (psymtab->filename)
1438 files[numfiles++] = basename(psymtab->filename);
1439 }
754e5da2 1440
546b8ca7 1441 ALL_SYMTABS (objfile, symtab)
0776b0b0 1442 {
6da4c15f
JM
1443 if (numfiles == files_size)
1444 {
1445 files_size = files_size * 2;
1446 files = (char **) xrealloc (files, sizeof (char *) * files_size);
1447 }
0776b0b0
MH
1448 if (len == 0)
1449 {
1450 if (symtab->filename)
1451 files[numfiles++] = basename(symtab->filename);
1452 }
1453 else if (!strcmp(symtab->filename,basename(symtab->filename))
1454 || !strncmp(pathname,symtab->filename,len))
1455 if (symtab->filename)
1456 files[numfiles++] = basename(symtab->filename);
1457 }
1458
1459 qsort (files, numfiles, sizeof(char *), comp_files);
546b8ca7 1460
0776b0b0
MH
1461 lastfile = "";
1462 for (i = 0; i < numfiles; i++)
1463 {
1464 if (strcmp(files[i],lastfile))
1465 Tcl_ListObjAppendElement (interp, mylist, Tcl_NewStringObj(files[i], -1));
1466 lastfile = files[i];
1467 }
1468 Tcl_SetObjResult (interp, mylist);
6da4c15f 1469 free (files);
754e5da2
SG
1470 return TCL_OK;
1471}
479f0f18 1472
99c98415
MH
1473static int
1474gdb_listfuncs (clientData, interp, argc, argv)
1475 ClientData clientData;
1476 Tcl_Interp *interp;
1477 int argc;
1478 char *argv[];
1479{
1480 struct symtab *symtab;
1481 struct blockvector *bv;
1482 struct block *b;
1483 struct symbol *sym;
929db6e5 1484 char buf[128];
99c98415 1485 int i,j;
929db6e5 1486
99c98415
MH
1487 if (argc != 2)
1488 error ("wrong # args");
1489
929db6e5 1490 symtab = full_lookup_symtab (argv[1]);
99c98415
MH
1491 if (!symtab)
1492 error ("No such file");
1493
1494 bv = BLOCKVECTOR (symtab);
1495 for (i = GLOBAL_BLOCK; i <= STATIC_BLOCK; i++)
1496 {
1497 b = BLOCKVECTOR_BLOCK (bv, i);
1498 /* Skip the sort if this block is always sorted. */
1499 if (!BLOCK_SHOULD_SORT (b))
1500 sort_block_syms (b);
1501 for (j = 0; j < BLOCK_NSYMS (b); j++)
1502 {
1503 sym = BLOCK_SYM (b, j);
1504 if (SYMBOL_CLASS (sym) == LOC_BLOCK)
1505 {
929db6e5
EZ
1506
1507 char *name = cplus_demangle (SYMBOL_NAME(sym), 0);
1508 if (name)
1509 {
1510 sprintf (buf,"{%s} 1", name);
1511 }
1512 else
1513 sprintf (buf,"{%s} 0", SYMBOL_NAME(sym));
1514 Tcl_DStringAppendElement (result_ptr, buf);
99c98415
MH
1515 }
1516 }
1517 }
1518 return TCL_OK;
1519}
1520
ed5fa7c3
MH
1521static int
1522target_stop_wrapper (args)
1523 char * args;
1524{
1525 target_stop ();
1526 return 1;
1527}
1528
479f0f18
SG
1529static int
1530gdb_stop (clientData, interp, argc, argv)
1531 ClientData clientData;
1532 Tcl_Interp *interp;
1533 int argc;
1534 char *argv[];
1535{
c14cabba 1536 if (target_stop)
ed5fa7c3
MH
1537 {
1538 catch_errors (target_stop_wrapper, NULL, "",
1539 RETURN_MASK_ALL);
1540 }
c14cabba
AC
1541 else
1542 quit_flag = 1; /* hope something sees this */
546b8ca7
SG
1543
1544 return TCL_OK;
479f0f18 1545}
018d76dd
KS
1546
1547/* Prepare to accept a new executable file. This is called when we
1548 want to clear away everything we know about the old file, without
1549 asking the user. The Tcl code will have already asked the user if
1550 necessary. After this is called, we should be able to run the
1551 `file' command without getting any questions. */
1552
1553static int
1554gdb_clear_file (clientData, interp, argc, argv)
1555 ClientData clientData;
1556 Tcl_Interp *interp;
1557 int argc;
1558 char *argv[];
1559{
1560 if (inferior_pid != 0 && target_has_execution)
1561 {
1562 if (attach_flag)
1563 target_detach (NULL, 0);
1564 else
1565 target_kill ();
1566 }
1567
1568 if (target_has_execution)
1569 pop_target ();
1570
1571 symbol_file_command (NULL, 0);
1572
0776b0b0
MH
1573 /* gdb_loc refers to stop_pc, but nothing seems to clear it, so we
1574 clear it here. FIXME: This seems like an abstraction violation
1575 somewhere. */
1576 stop_pc = 0;
1577
018d76dd
KS
1578 return TCL_OK;
1579}
1580
1581/* Ask the user to confirm an exit request. */
1582
1583static int
1584gdb_confirm_quit (clientData, interp, argc, argv)
1585 ClientData clientData;
1586 Tcl_Interp *interp;
1587 int argc;
1588 char *argv[];
1589{
1590 int ret;
1591
1592 ret = quit_confirm ();
1593 Tcl_DStringAppendElement (result_ptr, ret ? "1" : "0");
1594 return TCL_OK;
1595}
1596
1597/* Quit without asking for confirmation. */
1598
1599static int
1600gdb_force_quit (clientData, interp, argc, argv)
1601 ClientData clientData;
1602 Tcl_Interp *interp;
1603 int argc;
1604 char *argv[];
1605{
1606 quit_force ((char *) NULL, 1);
1607 return TCL_OK;
1608}
09722039
SG
1609\f
1610/* This implements the TCL command `gdb_disassemble'. */
479f0f18 1611
09722039
SG
1612static int
1613gdbtk_dis_asm_read_memory (memaddr, myaddr, len, info)
1614 bfd_vma memaddr;
1615 bfd_byte *myaddr;
1616 int len;
1617 disassemble_info *info;
1618{
1619 extern struct target_ops exec_ops;
1620 int res;
1621
1622 errno = 0;
1623 res = xfer_memory (memaddr, myaddr, len, 0, &exec_ops);
1624
1625 if (res == len)
1626 return 0;
1627 else
1628 if (errno == 0)
1629 return EIO;
1630 else
1631 return errno;
1632}
1633
1634/* We need a different sort of line table from the normal one cuz we can't
1635 depend upon implicit line-end pc's for lines. This is because of the
1636 reordering we are about to do. */
1637
1638struct my_line_entry {
1639 int line;
1640 CORE_ADDR start_pc;
1641 CORE_ADDR end_pc;
1642};
1643
1644static int
1645compare_lines (mle1p, mle2p)
1646 const PTR mle1p;
1647 const PTR mle2p;
1648{
1649 struct my_line_entry *mle1, *mle2;
1650 int val;
1651
1652 mle1 = (struct my_line_entry *) mle1p;
1653 mle2 = (struct my_line_entry *) mle2p;
1654
1655 val = mle1->line - mle2->line;
1656
1657 if (val != 0)
1658 return val;
1659
1660 return mle1->start_pc - mle2->start_pc;
1661}
1662
1663static int
1664gdb_disassemble (clientData, interp, argc, argv)
1665 ClientData clientData;
1666 Tcl_Interp *interp;
1667 int argc;
1668 char *argv[];
1669{
1670 CORE_ADDR pc, low, high;
1671 int mixed_source_and_assembly;
fc941258
DE
1672 static disassemble_info di;
1673 static int di_initialized;
1674
1675 if (! di_initialized)
1676 {
91550191
SG
1677 INIT_DISASSEMBLE_INFO_NO_ARCH (di, gdb_stdout,
1678 (fprintf_ftype) fprintf_unfiltered);
caeec767 1679 di.flavour = bfd_target_unknown_flavour;
fc941258
DE
1680 di.memory_error_func = dis_asm_memory_error;
1681 di.print_address_func = dis_asm_print_address;
1682 di_initialized = 1;
1683 }
09722039 1684
91550191
SG
1685 di.mach = tm_print_insn_info.mach;
1686 if (TARGET_BYTE_ORDER == BIG_ENDIAN)
e4bb9027 1687 di.endian = BFD_ENDIAN_BIG;
91550191 1688 else
e4bb9027 1689 di.endian = BFD_ENDIAN_LITTLE;
91550191 1690
09722039 1691 if (argc != 3 && argc != 4)
6131622e 1692 error ("wrong # args");
09722039
SG
1693
1694 if (strcmp (argv[1], "source") == 0)
1695 mixed_source_and_assembly = 1;
1696 else if (strcmp (argv[1], "nosource") == 0)
1697 mixed_source_and_assembly = 0;
1698 else
6131622e 1699 error ("First arg must be 'source' or 'nosource'");
09722039
SG
1700
1701 low = parse_and_eval_address (argv[2]);
1702
1703 if (argc == 3)
1704 {
1705 if (find_pc_partial_function (low, NULL, &low, &high) == 0)
6131622e 1706 error ("No function contains specified address");
09722039
SG
1707 }
1708 else
1709 high = parse_and_eval_address (argv[3]);
1710
1711 /* If disassemble_from_exec == -1, then we use the following heuristic to
1712 determine whether or not to do disassembly from target memory or from the
1713 exec file:
1714
1715 If we're debugging a local process, read target memory, instead of the
1716 exec file. This makes disassembly of functions in shared libs work
1717 correctly.
1718
1719 Else, we're debugging a remote process, and should disassemble from the
fda6fadc 1720 exec file for speed. However, this is no good if the target modifies its
09722039
SG
1721 code (for relocation, or whatever).
1722 */
1723
1724 if (disassemble_from_exec == -1)
1725 if (strcmp (target_shortname, "child") == 0
d7c4766c
SS
1726 || strcmp (target_shortname, "procfs") == 0
1727 || strcmp (target_shortname, "vxprocess") == 0)
09722039
SG
1728 disassemble_from_exec = 0; /* It's a child process, read inferior mem */
1729 else
1730 disassemble_from_exec = 1; /* It's remote, read the exec file */
1731
1732 if (disassemble_from_exec)
a76ef70a
SG
1733 di.read_memory_func = gdbtk_dis_asm_read_memory;
1734 else
1735 di.read_memory_func = dis_asm_read_memory;
09722039
SG
1736
1737 /* If just doing straight assembly, all we need to do is disassemble
1738 everything between low and high. If doing mixed source/assembly, we've
1739 got a totally different path to follow. */
1740
1741 if (mixed_source_and_assembly)
1742 { /* Come here for mixed source/assembly */
1743 /* The idea here is to present a source-O-centric view of a function to
1744 the user. This means that things are presented in source order, with
1745 (possibly) out of order assembly immediately following. */
1746 struct symtab *symtab;
1747 struct linetable_entry *le;
1748 int nlines;
c81a3fa9 1749 int newlines;
09722039
SG
1750 struct my_line_entry *mle;
1751 struct symtab_and_line sal;
1752 int i;
1753 int out_of_order;
c81a3fa9 1754 int next_line;
09722039
SG
1755
1756 symtab = find_pc_symtab (low); /* Assume symtab is valid for whole PC range */
1757
1758 if (!symtab)
1759 goto assembly_only;
1760
1761/* First, convert the linetable to a bunch of my_line_entry's. */
1762
1763 le = symtab->linetable->item;
1764 nlines = symtab->linetable->nitems;
1765
1766 if (nlines <= 0)
1767 goto assembly_only;
1768
1769 mle = (struct my_line_entry *) alloca (nlines * sizeof (struct my_line_entry));
1770
1771 out_of_order = 0;
1772
c81a3fa9
SG
1773/* Copy linetable entries for this function into our data structure, creating
1774 end_pc's and setting out_of_order as appropriate. */
1775
1776/* First, skip all the preceding functions. */
1777
1778 for (i = 0; i < nlines - 1 && le[i].pc < low; i++) ;
1779
1780/* Now, copy all entries before the end of this function. */
1781
1782 newlines = 0;
1783 for (; i < nlines - 1 && le[i].pc < high; i++)
09722039 1784 {
c81a3fa9
SG
1785 if (le[i].line == le[i + 1].line
1786 && le[i].pc == le[i + 1].pc)
1787 continue; /* Ignore duplicates */
1788
1789 mle[newlines].line = le[i].line;
09722039
SG
1790 if (le[i].line > le[i + 1].line)
1791 out_of_order = 1;
c81a3fa9
SG
1792 mle[newlines].start_pc = le[i].pc;
1793 mle[newlines].end_pc = le[i + 1].pc;
1794 newlines++;
09722039
SG
1795 }
1796
c81a3fa9
SG
1797/* If we're on the last line, and it's part of the function, then we need to
1798 get the end pc in a special way. */
1799
1800 if (i == nlines - 1
1801 && le[i].pc < high)
1802 {
1803 mle[newlines].line = le[i].line;
1804 mle[newlines].start_pc = le[i].pc;
1805 sal = find_pc_line (le[i].pc, 0);
1806 mle[newlines].end_pc = sal.end;
1807 newlines++;
1808 }
09722039
SG
1809
1810/* Now, sort mle by line #s (and, then by addresses within lines). */
1811
1812 if (out_of_order)
c81a3fa9 1813 qsort (mle, newlines, sizeof (struct my_line_entry), compare_lines);
09722039
SG
1814
1815/* Now, for each line entry, emit the specified lines (unless they have been
1816 emitted before), followed by the assembly code for that line. */
1817
c81a3fa9
SG
1818 next_line = 0; /* Force out first line */
1819 for (i = 0; i < newlines; i++)
09722039 1820 {
c81a3fa9
SG
1821/* Print out everything from next_line to the current line. */
1822
1823 if (mle[i].line >= next_line)
09722039 1824 {
c81a3fa9
SG
1825 if (next_line != 0)
1826 print_source_lines (symtab, next_line, mle[i].line + 1, 0);
09722039 1827 else
c81a3fa9
SG
1828 print_source_lines (symtab, mle[i].line, mle[i].line + 1, 0);
1829
1830 next_line = mle[i].line + 1;
09722039 1831 }
c81a3fa9 1832
09722039
SG
1833 for (pc = mle[i].start_pc; pc < mle[i].end_pc; )
1834 {
1835 QUIT;
1836 fputs_unfiltered (" ", gdb_stdout);
1837 print_address (pc, gdb_stdout);
1838 fputs_unfiltered (":\t ", gdb_stdout);
d039851f 1839 pc += (*tm_print_insn) (pc, &di);
09722039
SG
1840 fputs_unfiltered ("\n", gdb_stdout);
1841 }
1842 }
1843 }
1844 else
1845 {
1846assembly_only:
1847 for (pc = low; pc < high; )
1848 {
1849 QUIT;
1850 fputs_unfiltered (" ", gdb_stdout);
1851 print_address (pc, gdb_stdout);
1852 fputs_unfiltered (":\t ", gdb_stdout);
d039851f 1853 pc += (*tm_print_insn) (pc, &di);
09722039
SG
1854 fputs_unfiltered ("\n", gdb_stdout);
1855 }
1856 }
1857
09722039
SG
1858 gdb_flush (gdb_stdout);
1859
1860 return TCL_OK;
1861}
754e5da2
SG
1862\f
1863static void
1864tk_command (cmd, from_tty)
1865 char *cmd;
1866 int from_tty;
1867{
546b8ca7
SG
1868 int retval;
1869 char *result;
1870 struct cleanup *old_chain;
1871
572977a5
FF
1872 /* Catch case of no argument, since this will make the tcl interpreter dump core. */
1873 if (cmd == NULL)
1874 error_no_arg ("tcl command to interpret");
1875
546b8ca7
SG
1876 retval = Tcl_Eval (interp, cmd);
1877
1878 result = strdup (interp->result);
754e5da2 1879
546b8ca7
SG
1880 old_chain = make_cleanup (free, result);
1881
1882 if (retval != TCL_OK)
1883 error (result);
1884
1885 printf_unfiltered ("%s\n", result);
1886
1887 do_cleanups (old_chain);
754e5da2
SG
1888}
1889
1890static void
1891cleanup_init (ignored)
1892 int ignored;
1893{
754e5da2
SG
1894 if (interp != NULL)
1895 Tcl_DeleteInterp (interp);
1896 interp = NULL;
1897}
1898
637b1661
SG
1899/* Come here during long calculations to check for GUI events. Usually invoked
1900 via the QUIT macro. */
1901
1902static void
1903gdbtk_interactive ()
1904{
1905 /* Tk_DoOneEvent (TK_DONT_WAIT|TK_IDLE_EVENTS); */
1906}
1907
479f0f18
SG
1908/* Come here when there is activity on the X file descriptor. */
1909
1910static void
1911x_event (signo)
1912 int signo;
1913{
ed5fa7c3
MH
1914 static int in_x_event = 0;
1915 static Tcl_Obj *varname = NULL;
ed5fa7c3
MH
1916 if (in_x_event || in_fputs)
1917 return;
1918
1919 in_x_event = 1;
1920
21b3bc77
KS
1921#ifdef __CYGWIN32__
1922 if (signo == -2)
1923 if (gdbtk_timer_going)
1924 gdbtk_stop_timer ();
1925#endif
1926
479f0f18 1927 /* Process pending events */
0776b0b0
MH
1928 while (Tcl_DoOneEvent (TCL_DONT_WAIT|TCL_ALL_EVENTS) != 0)
1929 ;
1930
0776b0b0
MH
1931 if (load_in_progress)
1932 {
ed5fa7c3
MH
1933 int val;
1934 if (varname == NULL)
1935 {
1936 Tcl_Obj *varnamestrobj = Tcl_NewStringObj("download_cancel_ok",-1);
1937 varname = Tcl_ObjGetVar2(interp,varnamestrobj,NULL,TCL_GLOBAL_ONLY);
1938 }
1939 if ((Tcl_GetIntFromObj(interp,varname,&val) == TCL_OK) && val)
0776b0b0
MH
1940 {
1941 quit_flag = 1;
1942#ifdef REQUEST_QUIT
1943 REQUEST_QUIT;
1944#else
1945 if (immediate_quit)
1946 quit ();
1947#endif
1948 }
1949 }
ed5fa7c3 1950 in_x_event = 0;
479f0f18
SG
1951}
1952
018d76dd
KS
1953/* For Cygwin32, we use a timer to periodically check for Windows
1954 messages. FIXME: It would be better to not poll, but to instead
1955 rewrite the target_wait routines to serve as input sources.
1956 Unfortunately, that will be a lot of work. */
ed5fa7c3
MH
1957static sigset_t nullsigmask;
1958static struct sigaction act1, act2;
1959static struct itimerval it_on, it_off;
018d76dd
KS
1960
1961static void
1962gdbtk_start_timer ()
1963{
ed5fa7c3
MH
1964 static int first = 1;
1965 /*TclDebug ("Starting timer....");*/
1966 if (first)
1967 {
1968 /* first time called, set up all the structs */
1969 first = 0;
1970 sigemptyset (&nullsigmask);
018d76dd 1971
ed5fa7c3
MH
1972 act1.sa_handler = x_event;
1973 act1.sa_mask = nullsigmask;
1974 act1.sa_flags = 0;
018d76dd 1975
ed5fa7c3
MH
1976 act2.sa_handler = SIG_IGN;
1977 act2.sa_mask = nullsigmask;
1978 act2.sa_flags = 0;
018d76dd 1979
ed5fa7c3 1980 it_on.it_interval.tv_sec = 0;
7234efcb 1981 it_on.it_interval.tv_usec = 250000; /* .25 sec */
ed5fa7c3 1982 it_on.it_value.tv_sec = 0;
7234efcb 1983 it_on.it_value.tv_usec = 250000;
0776b0b0 1984
ed5fa7c3
MH
1985 it_off.it_interval.tv_sec = 0;
1986 it_off.it_interval.tv_usec = 0;
1987 it_off.it_value.tv_sec = 0;
1988 it_off.it_value.tv_usec = 0;
1989 }
7234efcb
KS
1990
1991 if (!gdbtk_timer_going)
1992 {
1993 sigaction (SIGALRM, &act1, NULL);
1994 setitimer (ITIMER_REAL, &it_on, NULL);
1995 gdbtk_timer_going = 1;
1996 }
018d76dd
KS
1997}
1998
1999static void
2000gdbtk_stop_timer ()
2001{
7234efcb
KS
2002 if (gdbtk_timer_going)
2003 {
2004 gdbtk_timer_going = 0;
2005 /*TclDebug ("Stopping timer.");*/
2006 setitimer (ITIMER_REAL, &it_off, NULL);
2007 sigaction (SIGALRM, &act2, NULL);
2008 }
018d76dd
KS
2009}
2010
018d76dd
KS
2011/* This hook function is called whenever we want to wait for the
2012 target. */
2013
479f0f18
SG
2014static int
2015gdbtk_wait (pid, ourstatus)
2016 int pid;
2017 struct target_waitstatus *ourstatus;
2018{
7234efcb 2019 gdbtk_start_timer ();
479f0f18 2020 pid = target_wait (pid, ourstatus);
7234efcb 2021 gdbtk_stop_timer ();
479f0f18
SG
2022 return pid;
2023}
2024
2025/* This is called from execute_command, and provides a wrapper around
2026 various command routines in a place where both protocol messages and
2027 user input both flow through. Mostly this is used for indicating whether
2028 the target process is running or not.
2029*/
2030
2031static void
2032gdbtk_call_command (cmdblk, arg, from_tty)
2033 struct cmd_list_element *cmdblk;
2034 char *arg;
2035 int from_tty;
2036{
fda6fadc 2037 running_now = 0;
018d76dd 2038 if (cmdblk->class == class_run || cmdblk->class == class_trace)
479f0f18 2039 {
ff62d310
JI
2040
2041/* HACK! HACK! This is to get the gui to update the tstart/tstop
2042 button only incase of tstart/tstop commands issued from the console
fed03c01 2043 We don't want to update the src window, so we need to have specific
ff62d310 2044 procedures to do tstart and tstop
fed03c01
EZ
2045 Unfortunately this will not display errors from tstart or tstop in the
2046 console window itself, but as dialogs.*/
2047
ff62d310 2048 if (!strcmp(cmdblk->name, "tstart") && !No_Update)
fed03c01 2049 {
ff62d310 2050 Tcl_Eval (interp, "gdbtk_tcl_tstart");
fed03c01
EZ
2051 (*cmdblk->function.cfunc)(arg, from_tty);
2052 }
ff62d310 2053 else if (!strcmp(cmdblk->name, "tstop") && !No_Update)
fed03c01 2054 {
ff62d310 2055 Tcl_Eval (interp, "gdbtk_tcl_tstop");
fed03c01
EZ
2056 (*cmdblk->function.cfunc)(arg, from_tty);
2057 }
ff62d310
JI
2058/* end of hack */
2059 else
2060 {
2061 running_now = 1;
2062 if (!No_Update)
2063 Tcl_Eval (interp, "gdbtk_tcl_busy");
2064 (*cmdblk->function.cfunc)(arg, from_tty);
2065 running_now = 0;
2066 if (!No_Update)
2067 Tcl_Eval (interp, "gdbtk_tcl_idle");
2068 }
479f0f18
SG
2069 }
2070 else
2071 (*cmdblk->function.cfunc)(arg, from_tty);
2072}
2073
5bac2b50
FF
2074/* This function is called instead of gdb's internal command loop. This is the
2075 last chance to do anything before entering the main Tk event loop. */
2076
2077static void
2078tk_command_loop ()
2079{
41756e56
FF
2080 extern GDB_FILE *instream;
2081
2082 /* We no longer want to use stdin as the command input stream */
2083 instream = NULL;
018d76dd
KS
2084
2085 if (Tcl_Eval (interp, "gdbtk_tcl_preloop") != TCL_OK)
2086 {
2087 char *msg;
2088
2089 /* Force errorInfo to be set up propertly. */
2090 Tcl_AddErrorInfo (interp, "");
2091
2092 msg = Tcl_GetVar (interp, "errorInfo", TCL_GLOBAL_ONLY);
2093#ifdef _WIN32
2094 MessageBox (NULL, msg, NULL, MB_OK | MB_ICONERROR | MB_TASKMODAL);
2095#else
2096 fputs_unfiltered (msg, gdb_stderr);
2097#endif
2098 }
2099
2100#ifdef _WIN32
2101 close_bfds ();
2102#endif
2103
5bac2b50
FF
2104 Tk_MainLoop ();
2105}
2106
9a2f9219
ILT
2107/* gdbtk_init installs this function as a final cleanup. */
2108
2109static void
2110gdbtk_cleanup (dummy)
2111 PTR dummy;
2112{
929db6e5
EZ
2113#ifdef IDE
2114 struct ide_event_handle *h = (struct ide_event_handle *) dummy;
2115
2116 ide_interface_deregister_all (h);
2117#endif
9a2f9219
ILT
2118 Tcl_Finalize ();
2119}
2120
2121/* Initialize gdbtk. */
2122
754e5da2 2123static void
2476848a
MH
2124gdbtk_init ( argv0 )
2125 char *argv0;
754e5da2
SG
2126{
2127 struct cleanup *old_chain;
74089546 2128 char *lib, *gdbtk_lib, *gdbtk_lib_tmp, *gdbtk_file;
8a19b35a 2129 int i, found_main;
018d76dd 2130#ifndef WINNT
736a82e7
SG
2131 struct sigaction action;
2132 static sigset_t nullsigmask = {0};
018d76dd 2133#endif
2476848a 2134#ifdef IDE
018d76dd 2135 /* start-sanitize-ide */
2476848a
MH
2136 struct ide_event_handle *h;
2137 const char *errmsg;
2138 char *libexecdir;
018d76dd 2139 /* end-sanitize-ide */
2476848a 2140#endif
754e5da2 2141
fe58c81f
FF
2142 /* If there is no DISPLAY environment variable, Tk_Init below will fail,
2143 causing gdb to abort. If instead we simply return here, gdb will
2144 gracefully degrade to using the command line interface. */
2145
8a19b35a 2146#ifndef WINNT
fe58c81f
FF
2147 if (getenv ("DISPLAY") == NULL)
2148 return;
8a19b35a 2149#endif
fe58c81f 2150
754e5da2
SG
2151 old_chain = make_cleanup (cleanup_init, 0);
2152
2153 /* First init tcl and tk. */
2476848a 2154 Tcl_FindExecutable (argv0);
754e5da2
SG
2155 interp = Tcl_CreateInterp ();
2156
ed5fa7c3
MH
2157#ifdef TCL_MEM_DEBUG
2158 Tcl_InitMemory (interp);
2159#endif
2160
754e5da2
SG
2161 if (!interp)
2162 error ("Tcl_CreateInterp failed");
2163
754e5da2
SG
2164 if (Tcl_Init(interp) != TCL_OK)
2165 error ("Tcl_Init failed: %s", interp->result);
2166
929db6e5
EZ
2167#ifndef IDE
2168 /* For the IDE we register the cleanup later, after we've
2169 initialized events. */
2170 make_final_cleanup (gdbtk_cleanup, NULL);
2171#endif
2476848a 2172
9a2f9219 2173 /* Initialize the Paths variable. */
74089546 2174 if (ide_initialize_paths (interp, "gdbtcl") != TCL_OK)
9a2f9219
ILT
2175 error ("ide_initialize_paths failed: %s", interp->result);
2176
dd3dd918 2177#ifdef IDE
018d76dd 2178 /* start-sanitize-ide */
2476848a
MH
2179 /* Find the directory where we expect to find idemanager. We ignore
2180 errors since it doesn't really matter if this fails. */
2181 libexecdir = Tcl_GetVar2 (interp, "Paths", "libexecdir", TCL_GLOBAL_ONLY);
2182
2183 IluTk_Init ();
2184
7b94b2ea 2185 h = ide_event_init_from_environment (&errmsg, libexecdir);
929db6e5 2186 make_final_cleanup (gdbtk_cleanup, h);
2476848a
MH
2187 if (h == NULL)
2188 {
2189 Tcl_AppendResult (interp, "can't initialize event system: ", errmsg,
2190 (char *) NULL);
2191 fprintf(stderr, "WARNING: ide_event_init_client failed: %s\n", interp->result);
9a2f9219 2192
aa3b21bf 2193 Tcl_SetVar (interp, "IDE_ENABLED", "0", 0);
2476848a
MH
2194 }
2195 else
2196 {
2197 if (ide_create_tclevent_command (interp, h) != TCL_OK)
2198 error ("ide_create_tclevent_command failed: %s", interp->result);
018d76dd 2199
2476848a
MH
2200 if (ide_create_edit_command (interp, h) != TCL_OK)
2201 error ("ide_create_edit_command failed: %s", interp->result);
2202
2203 if (ide_create_property_command (interp, h) != TCL_OK)
2204 error ("ide_create_property_command failed: %s", interp->result);
018d76dd
KS
2205
2206 if (ide_create_build_command (interp, h) != TCL_OK)
2207 error ("ide_create_build_command failed: %s", interp->result);
2208
2209 if (ide_create_window_register_command (interp, h, "gdb-restore")
2210 != TCL_OK)
9a2f9219
ILT
2211 error ("ide_create_window_register_command failed: %s",
2212 interp->result);
2213
2214 if (ide_create_window_command (interp, h) != TCL_OK)
2215 error ("ide_create_window_command failed: %s", interp->result);
2216
018d76dd
KS
2217 if (ide_create_exit_command (interp, h) != TCL_OK)
2218 error ("ide_create_exit_command failed: %s", interp->result);
2219
2220 if (ide_create_help_command (interp) != TCL_OK)
2221 error ("ide_create_help_command failed: %s", interp->result);
2222
2476848a
MH
2223 /*
2224 if (ide_initialize (interp, "gdb") != TCL_OK)
2225 error ("ide_initialize failed: %s", interp->result);
2226 */
9a2f9219 2227
aa3b21bf 2228 Tcl_SetVar (interp, "IDE_ENABLED", "1", 0);
2476848a 2229 }
018d76dd 2230 /* end-sanitize-ide */
2476848a 2231#else
aa3b21bf 2232 Tcl_SetVar (interp, "IDE_ENABLED", "0", 0);
2476848a
MH
2233#endif /* IDE */
2234
9a2f9219
ILT
2235 /* We don't want to open the X connection until we've done all the
2236 IDE initialization. Otherwise, goofy looking unfinished windows
2237 pop up when ILU drops into the TCL event loop. */
2238
2239 if (Tk_Init(interp) != TCL_OK)
2240 error ("Tk_Init failed: %s", interp->result);
2241
2242 if (Itcl_Init(interp) == TCL_ERROR)
2243 error ("Itcl_Init failed: %s", interp->result);
2244
2245 if (Tix_Init(interp) != TCL_OK)
2246 error ("Tix_Init failed: %s", interp->result);
2247
94a6f14f
MH
2248 if (Tktable_Init(interp) != TCL_OK)
2249 error ("Tktable_Init failed: %s", interp->result);
2250 Tcl_StaticPackage(interp, "Tktable", Tktable_Init,
2251 (Tcl_PackageInitProc *) NULL);
2252
018d76dd 2253#ifdef __CYGWIN32__
929db6e5
EZ
2254 if (ide_create_messagebox_command (interp) != TCL_OK)
2255 error ("messagebox command initialization failed");
018d76dd
KS
2256 /* On Windows, create a sizebox widget command */
2257 if (ide_create_sizebox_command (interp) != TCL_OK)
2258 error ("sizebox creation failed");
2259 if (ide_create_winprint_command (interp) != TCL_OK)
2260 error ("windows print code initialization failed");
2261 /* start-sanitize-ide */
2262 /* An interface to ShellExecute. */
2263 if (ide_create_shell_execute_command (interp) != TCL_OK)
2264 error ("shell execute command initialization failed");
06434f5f 2265 /* end-sanitize-ide */
929db6e5
EZ
2266 if (ide_create_win_grab_command (interp) != TCL_OK)
2267 error ("grab support command initialization failed");
2268 /* Path conversion functions. */
2269 if (ide_create_cygwin_path_command (interp) != TCL_OK)
2270 error ("cygwin path command initialization failed");
018d76dd
KS
2271#endif
2272
86db943c 2273 Tcl_CreateCommand (interp, "gdb_cmd", call_wrapper, gdb_cmd, NULL);
0422b59e
KS
2274 Tcl_CreateCommand (interp, "gdb_immediate", call_wrapper,
2275 gdb_immediate_command, NULL);
86db943c 2276 Tcl_CreateCommand (interp, "gdb_loc", call_wrapper, gdb_loc, NULL);
8a19b35a 2277 Tcl_CreateCommand (interp, "gdb_path_conv", call_wrapper, gdb_path_conv, NULL);
ff62d310 2278 Tcl_CreateObjCommand (interp, "gdb_listfiles", call_obj_wrapper, gdb_listfiles, NULL);
99c98415
MH
2279 Tcl_CreateCommand (interp, "gdb_listfuncs", call_wrapper, gdb_listfuncs,
2280 NULL);
018d76dd
KS
2281 Tcl_CreateCommand (interp, "gdb_get_mem", call_wrapper, gdb_get_mem,
2282 NULL);
86db943c
SG
2283 Tcl_CreateCommand (interp, "gdb_stop", call_wrapper, gdb_stop, NULL);
2284 Tcl_CreateCommand (interp, "gdb_regnames", call_wrapper, gdb_regnames, NULL);
2285 Tcl_CreateCommand (interp, "gdb_fetch_registers", call_wrapper,
2286 gdb_fetch_registers, NULL);
2287 Tcl_CreateCommand (interp, "gdb_changed_register_list", call_wrapper,
2288 gdb_changed_register_list, NULL);
09722039
SG
2289 Tcl_CreateCommand (interp, "gdb_disassemble", call_wrapper,
2290 gdb_disassemble, NULL);
2291 Tcl_CreateCommand (interp, "gdb_eval", call_wrapper, gdb_eval, NULL);
6131622e
SG
2292 Tcl_CreateCommand (interp, "gdb_get_breakpoint_list", call_wrapper,
2293 gdb_get_breakpoint_list, NULL);
2294 Tcl_CreateCommand (interp, "gdb_get_breakpoint_info", call_wrapper,
2295 gdb_get_breakpoint_info, NULL);
018d76dd
KS
2296 Tcl_CreateCommand (interp, "gdb_clear_file", call_wrapper,
2297 gdb_clear_file, NULL);
2298 Tcl_CreateCommand (interp, "gdb_confirm_quit", call_wrapper,
2299 gdb_confirm_quit, NULL);
2300 Tcl_CreateCommand (interp, "gdb_force_quit", call_wrapper,
2301 gdb_force_quit, NULL);
2302 Tcl_CreateCommand (interp, "gdb_target_has_execution",
2303 gdb_target_has_execution_command,
2304 NULL, NULL);
41158958
EZ
2305 Tcl_CreateCommand (interp, "gdb_is_tracing",
2306 gdb_trace_status,
2307 NULL, NULL);
ff62d310 2308 Tcl_CreateObjCommand (interp, "gdb_load_info", call_obj_wrapper, gdb_load_info, NULL);
b33b741a 2309 Tcl_CreateObjCommand (interp, "gdb_get_locals", call_obj_wrapper, gdb_get_locals_command,
ff62d310 2310 NULL);
b33b741a 2311 Tcl_CreateObjCommand (interp, "gdb_get_args", call_obj_wrapper, gdb_get_args_command,
ff62d310
JI
2312 NULL);
2313 Tcl_CreateObjCommand (interp, "gdb_get_function", call_obj_wrapper, gdb_get_function_command,
2314 NULL);
2315 Tcl_CreateObjCommand (interp, "gdb_get_line", call_obj_wrapper, gdb_get_line_command,
2316 NULL);
2317 Tcl_CreateObjCommand (interp, "gdb_get_file", call_obj_wrapper, gdb_get_file_command,
2318 NULL);
018d76dd 2319 Tcl_CreateObjCommand (interp, "gdb_tracepoint_exists",
ff62d310 2320 call_obj_wrapper, gdb_tracepoint_exists_command, NULL);
018d76dd 2321 Tcl_CreateObjCommand (interp, "gdb_get_tracepoint_info",
ff62d310 2322 call_obj_wrapper, gdb_get_tracepoint_info, NULL);
018d76dd 2323 Tcl_CreateObjCommand (interp, "gdb_actions",
ff62d310 2324 call_obj_wrapper, gdb_actions_command, NULL);
018d76dd 2325 Tcl_CreateObjCommand (interp, "gdb_prompt",
ff62d310 2326 call_obj_wrapper, gdb_prompt_command, NULL);
e0f7db02 2327 Tcl_CreateObjCommand (interp, "gdb_find_file",
ff62d310 2328 call_obj_wrapper, gdb_find_file_command, NULL);
4f17e6eb 2329 Tcl_CreateObjCommand (interp, "gdb_get_tracepoint_list",
ff62d310 2330 call_obj_wrapper, gdb_get_tracepoint_list, NULL);
929db6e5 2331 Tcl_CreateCommand (interp, "gdb_pc_reg", get_pc_register, NULL, NULL);
ff62d310
JI
2332 Tcl_CreateObjCommand (interp, "gdb_loadfile", call_obj_wrapper, gdb_loadfile, NULL);
2333 Tcl_CreateObjCommand (interp, "gdb_set_bp", call_obj_wrapper, gdb_set_bp, NULL);
fed03c01
EZ
2334 Tcl_CreateObjCommand (interp, "gdb_get_trace_frame_num",
2335 call_obj_wrapper, gdb_get_trace_frame_num, NULL);
929db6e5 2336
5bac2b50 2337 command_loop_hook = tk_command_loop;
a5f4fbff 2338 print_frame_info_listing_hook = gdbtk_print_frame_info;
09722039 2339 query_hook = gdbtk_query;
e6e9507d 2340 warning_hook = gdbtk_warning;
09722039
SG
2341 flush_hook = gdbtk_flush;
2342 create_breakpoint_hook = gdbtk_create_breakpoint;
2343 delete_breakpoint_hook = gdbtk_delete_breakpoint;
6131622e 2344 modify_breakpoint_hook = gdbtk_modify_breakpoint;
09722039
SG
2345 interactive_hook = gdbtk_interactive;
2346 target_wait_hook = gdbtk_wait;
2347 call_command_hook = gdbtk_call_command;
41756e56
FF
2348 readline_begin_hook = gdbtk_readline_begin;
2349 readline_hook = gdbtk_readline;
2350 readline_end_hook = gdbtk_readline_end;
018d76dd 2351 ui_load_progress_hook = gdbtk_load_hash;
21b3bc77
KS
2352#ifdef __CYGWIN32__
2353 ui_loop_hook = x_event;
2354#endif
11f91b2b
KS
2355 pre_add_symbol_hook = gdbtk_pre_add_symbol;
2356 post_add_symbol_hook = gdbtk_post_add_symbol;
018d76dd
KS
2357 create_tracepoint_hook = gdbtk_create_tracepoint;
2358 delete_tracepoint_hook = gdbtk_delete_tracepoint;
a5f4fbff 2359 modify_tracepoint_hook = gdbtk_modify_tracepoint;
929db6e5 2360 pc_changed_hook = pc_changed;
479f0f18 2361
754e5da2
SG
2362 add_com ("tk", class_obscure, tk_command,
2363 "Send a command directly into tk.");
09722039 2364
09722039
SG
2365 Tcl_LinkVar (interp, "disassemble-from-exec", (char *)&disassemble_from_exec,
2366 TCL_LINK_INT);
2367
8a19b35a 2368 /* find the gdb tcl library and source main.tcl */
09722039 2369
8a19b35a
MH
2370 gdbtk_lib = getenv ("GDBTK_LIBRARY");
2371 if (!gdbtk_lib)
2372 if (access ("gdbtcl/main.tcl", R_OK) == 0)
2373 gdbtk_lib = "gdbtcl";
09722039 2374 else
8a19b35a
MH
2375 gdbtk_lib = GDBTK_LIBRARY;
2376
74089546
ILT
2377 gdbtk_lib_tmp = xstrdup (gdbtk_lib);
2378
8a19b35a
MH
2379 found_main = 0;
2380 /* see if GDBTK_LIBRARY is a path list */
2381 lib = strtok (gdbtk_lib_tmp, GDBTK_PATH_SEP);
2382 do
2383 {
2384 if (Tcl_VarEval (interp, "lappend auto_path ", lib, NULL) != TCL_OK)
2385 {
2386 fputs_unfiltered (Tcl_GetVar (interp, "errorInfo", 0), gdb_stderr);
2387 error ("");
2388 }
2389 if (!found_main)
2390 {
74089546 2391 gdbtk_file = concat (lib, "/main.tcl", (char *) NULL);
8a19b35a
MH
2392 if (access (gdbtk_file, R_OK) == 0)
2393 {
2394 found_main++;
2395 Tcl_SetVar (interp, "GDBTK_LIBRARY", lib, 0);
2396 }
2397 }
2398 }
56e327b3 2399 while ((lib = strtok (NULL, ":")) != NULL);
74089546
ILT
2400
2401 free (gdbtk_lib_tmp);
2402
74089546
ILT
2403 if (!found_main)
2404 {
2405 /* Try finding it with the auto path. */
2406
2407 static const char script[] ="\
2408proc gdbtk_find_main {} {\n\
2409 global auto_path GDBTK_LIBRARY\n\
2410 foreach dir $auto_path {\n\
2411 set f [file join $dir main.tcl]\n\
2412 if {[file exists $f]} then {\n\
2413 set GDBTK_LIBRARY $dir\n\
2414 return $f\n\
2415 }\n\
2416 }\n\
2417 return ""\n\
2418}\n\
2419gdbtk_find_main";
2420
2421 if (Tcl_GlobalEval (interp, (char *) script) != TCL_OK)
2422 {
2423 fputs_unfiltered (Tcl_GetVar (interp, "errorInfo", 0), gdb_stderr);
2424 error ("");
2425 }
2426
2427 if (interp->result[0] != '\0')
2428 {
2429 gdbtk_file = xstrdup (interp->result);
2430 found_main++;
2431 }
2432 }
74089546 2433
8a19b35a
MH
2434 if (!found_main)
2435 {
2436 fputs_unfiltered_hook = NULL; /* Force errors to stdout/stderr */
2437 if (getenv("GDBTK_LIBRARY"))
2438 {
2439 fprintf_unfiltered (stderr, "Unable to find main.tcl in %s\n",getenv("GDBTK_LIBRARY"));
2440 fprintf_unfiltered (stderr,
2441 "Please set GDBTK_LIBRARY to a path that includes the GDB tcl files.\n");
2442 }
2443 else
2444 {
2445 fprintf_unfiltered (stderr, "Unable to find main.tcl in %s\n", GDBTK_LIBRARY);
2446 fprintf_unfiltered (stderr, "You might want to set GDBTK_LIBRARY\n");
2447 }
2448 error("");
2449 }
09722039 2450
724498fd
SG
2451/* Defer setup of fputs_unfiltered_hook to near the end so that error messages
2452 prior to this point go to stdout/stderr. */
2453
2454 fputs_unfiltered_hook = gdbtk_fputs;
2455
51c5a136
JI
2456/* start-sanitize-tclpro */
2457#ifdef TCLPRO_DEBUGGER
2458 {
2459 Tcl_DString source_cmd;
2460
2461 Tcl_DStringInit (&source_cmd);
2462 Tcl_DStringAppend (&source_cmd,
2463 "if {[info exists env(TCLPRO_DEBUG_DIR)]} {source [file join $env(TCLPRO_DEBUG_DIR) src loader.tcl];", -1);
2464 Tcl_DStringAppend (&source_cmd, "debugger_init; debugger_eval {source {", -1);
2465 Tcl_DStringAppend (&source_cmd, gdbtk_file, -1);
2466 Tcl_DStringAppend (&source_cmd, "}}} else {source {", -1);
2467 Tcl_DStringAppend (&source_cmd, gdbtk_file, -1);
2468 Tcl_DStringAppend (&source_cmd, "}}", -1);
2469 if (Tcl_GlobalEval (interp, Tcl_DStringValue (&source_cmd)) != TCL_OK)
2470#else
2471/* end-sanitize-tclpro */
2472 if (Tcl_EvalFile (interp, gdbtk_file) != TCL_OK)
2473/* start-sanitize-tclpro */
2474#endif
2475/* end-sanitize-tclpro */
2476 {
018d76dd
KS
2477 char *msg;
2478
2479 /* Force errorInfo to be set up propertly. */
2480 Tcl_AddErrorInfo (interp, "");
2481
2482 msg = Tcl_GetVar (interp, "errorInfo", TCL_GLOBAL_ONLY);
2483
724498fd
SG
2484 fputs_unfiltered_hook = NULL; /* Force errors to stdout/stderr */
2485
018d76dd
KS
2486#ifdef _WIN32
2487 MessageBox (NULL, msg, NULL, MB_OK | MB_ICONERROR | MB_TASKMODAL);
2488#else
2489 fputs_unfiltered (msg, gdb_stderr);
2490#endif
b66051ec 2491
b66051ec 2492 error ("");
724498fd 2493 }
51c5a136
JI
2494/* start-sanitize-tclpro */
2495#ifdef TCLPRO_DEBUGGER
2496 Tcl_DStringFree(&source_cmd);
2497 }
2498#endif
2499/* end-sanitize-tclpro */
2500
018d76dd
KS
2501#ifdef IDE
2502 /* start-sanitize-ide */
2503 /* Don't do this until we have initialized. Otherwise, we may get a
2504 run command before we are ready for one. */
2505 if (ide_run_server_init (interp, h) != TCL_OK)
2506 error ("ide_run_server_init failed: %s", interp->result);
2507 /* end-sanitize-ide */
2508#endif
2509
74089546
ILT
2510 free (gdbtk_file);
2511
09722039 2512 discard_cleanups (old_chain);
754e5da2
SG
2513}
2514
018d76dd
KS
2515static int
2516gdb_target_has_execution_command (clientData, interp, argc, argv)
2517 ClientData clientData;
2518 Tcl_Interp *interp;
2519 int argc;
2520 char *argv[];
2521{
2522 int result = 0;
2523
2524 if (target_has_execution && inferior_pid != 0)
2525 result = 1;
2526
2527 Tcl_SetIntObj (Tcl_GetObjResult (interp), result);
2528 return TCL_OK;
2529}
2530
41158958
EZ
2531static int
2532gdb_trace_status (clientData, interp, argc, argv)
2533 ClientData clientData;
2534 Tcl_Interp *interp;
2535 int argc;
2536 char *argv[];
2537{
2538 int result = 0;
2539
2540 if (trace_running_p)
2541 result = 1;
2542
2543 Tcl_SetIntObj (Tcl_GetObjResult (interp), result);
2544 return TCL_OK;
2545}
2546
018d76dd
KS
2547/* gdb_load_info - returns information about the file about to be downloaded */
2548
2549static int
2550gdb_load_info (clientData, interp, objc, objv)
2551 ClientData clientData;
2552 Tcl_Interp *interp;
2553 int objc;
2554 Tcl_Obj *CONST objv[];
2555{
2556 bfd *loadfile_bfd;
2557 struct cleanup *old_cleanups;
2558 asection *s;
2559 Tcl_Obj *ob[2];
2560 Tcl_Obj *res[16];
2561 int i = 0;
2562
2563 char *filename = Tcl_GetStringFromObj (objv[1], NULL);
2564
2565 loadfile_bfd = bfd_openr (filename, gnutarget);
2566 if (loadfile_bfd == NULL)
2567 {
2568 Tcl_SetObjResult (interp, Tcl_NewStringObj ("Open failed", -1));
2569 return TCL_ERROR;
2570 }
2571 old_cleanups = make_cleanup (bfd_close, loadfile_bfd);
2572
2573 if (!bfd_check_format (loadfile_bfd, bfd_object))
2574 {
2575 Tcl_SetObjResult (interp, Tcl_NewStringObj ("Bad Object File", -1));
2576 return TCL_ERROR;
2577 }
2578
2579 for (s = loadfile_bfd->sections; s; s = s->next)
2580 {
2581 if (s->flags & SEC_LOAD)
2582 {
2583 bfd_size_type size = bfd_get_section_size_before_reloc (s);
2584 if (size > 0)
2585 {
2586 ob[0] = Tcl_NewStringObj((char *)bfd_get_section_name(loadfile_bfd, s), -1);
2587 ob[1] = Tcl_NewLongObj ((long)size);
2588 res[i++] = Tcl_NewListObj (2, ob);
2589 }
2590 }
2591 }
2592
2593 Tcl_SetObjResult (interp, Tcl_NewListObj (i, res));
2594 do_cleanups (old_cleanups);
2595 return TCL_OK;
2596}
2597
2598
2599int
2600gdbtk_load_hash (section, num)
2601 char *section;
2602 unsigned long num;
2603{
018d76dd
KS
2604 char buf[128];
2605 sprintf (buf, "download_hash %s %ld", section, num);
0776b0b0
MH
2606 Tcl_Eval (interp, buf);
2607 return atoi (interp->result);
018d76dd
KS
2608}
2609
ff62d310
JI
2610/* gdb_get_locals -
2611 * This and gdb_get_locals just call gdb_get_vars_command with the right
2612 * value of clientData. We can't use the client data in the definition
2613 * of the command, because the call wrapper uses this instead...
2614 */
2615
2616static int
b33b741a 2617gdb_get_locals_command (clientData, interp, objc, objv)
ff62d310
JI
2618 ClientData clientData;
2619 Tcl_Interp *interp;
2620 int objc;
2621 Tcl_Obj *CONST objv[];
2622{
2623
2624 return gdb_get_vars_command((ClientData) 0, interp, objc, objv);
2625
2626}
2627
2628static int
b33b741a 2629gdb_get_args_command (clientData, interp, objc, objv)
ff62d310
JI
2630 ClientData clientData;
2631 Tcl_Interp *interp;
2632 int objc;
2633 Tcl_Obj *CONST objv[];
2634{
2635
2636 return gdb_get_vars_command((ClientData) 1, interp, objc, objv);
2637
2638}
2639
018d76dd
KS
2640/* gdb_get_vars_command -
2641 *
2642 * Implements the "gdb_get_locals" and "gdb_get_args" tcl commands. This
2643 * function sets the Tcl interpreter's result to a list of variable names
2644 * depending on clientData. If clientData is one, the result is a list of
2645 * arguments; zero returns a list of locals -- all relative to the block
2646 * specified as an argument to the command. Valid commands include
2647 * anything decode_line_1 can handle (like "main.c:2", "*0x02020202",
2648 * and "main").
2649 */
2650static int
2651gdb_get_vars_command (clientData, interp, objc, objv)
2652 ClientData clientData;
2653 Tcl_Interp *interp;
2654 int objc;
2655 Tcl_Obj *CONST objv[];
2656{
2657 Tcl_Obj *result;
2658 struct symtabs_and_lines sals;
2659 struct symbol *sym;
2660 struct block *block;
2661 char **canonical, *args;
2662 int i, nsyms, arguments;
2663
2664 if (objc != 2)
2665 {
2666 Tcl_AppendResult (interp,
2667 "wrong # of args: should be \"",
2668 Tcl_GetStringFromObj (objv[0], NULL),
2669 " function:line|function|line|*addr\"");
2670 return TCL_ERROR;
2671 }
2672
2673 arguments = (int) clientData;
2674 args = Tcl_GetStringFromObj (objv[1], NULL);
2675 sals = decode_line_1 (&args, 1, NULL, 0, &canonical);
2676 if (sals.nelts == 0)
2677 {
2678 Tcl_AppendResult (interp,
2679 "error decoding line", NULL);
2680 return TCL_ERROR;
2681 }
2682
2683 /* Initialize a list that will hold the results */
2684 result = Tcl_NewListObj (0, NULL);
2685
2686 /* Resolve all line numbers to PC's */
2687 for (i = 0; i < sals.nelts; i++)
2688 resolve_sal_pc (&sals.sals[i]);
2689
2690 block = block_for_pc (sals.sals[0].pc);
2691 while (block != 0)
2692 {
2693 nsyms = BLOCK_NSYMS (block);
2694 for (i = 0; i < nsyms; i++)
2695 {
2696 sym = BLOCK_SYM (block, i);
2697 switch (SYMBOL_CLASS (sym)) {
2698 default:
2699 case LOC_UNDEF: /* catches errors */
2700 case LOC_CONST: /* constant */
018d76dd
KS
2701 case LOC_TYPEDEF: /* local typedef */
2702 case LOC_LABEL: /* local label */
2703 case LOC_BLOCK: /* local function */
2704 case LOC_CONST_BYTES: /* loc. byte seq. */
2705 case LOC_UNRESOLVED: /* unresolved static */
2706 case LOC_OPTIMIZED_OUT: /* optimized out */
2707 break;
2708 case LOC_ARG: /* argument */
2709 case LOC_REF_ARG: /* reference arg */
2710 case LOC_REGPARM: /* register arg */
2711 case LOC_REGPARM_ADDR: /* indirect register arg */
2712 case LOC_LOCAL_ARG: /* stack arg */
2713 case LOC_BASEREG_ARG: /* basereg arg */
2714 if (arguments)
2715 Tcl_ListObjAppendElement (interp, result,
2716 Tcl_NewStringObj (SYMBOL_NAME (sym), -1));
2717 break;
2718 case LOC_LOCAL: /* stack local */
fadce6f6
KS
2719 case LOC_STATIC: /* static */
2720 case LOC_REGISTER: /* register */
018d76dd
KS
2721 case LOC_BASEREG: /* basereg local */
2722 if (!arguments)
2723 Tcl_ListObjAppendElement (interp, result,
2724 Tcl_NewStringObj (SYMBOL_NAME (sym), -1));
2725 break;
2726 }
2727 }
2728 if (BLOCK_FUNCTION (block))
2729 break;
2730 else
2731 block = BLOCK_SUPERBLOCK (block);
2732 }
2733
2734 Tcl_SetObjResult (interp, result);
2735 return TCL_OK;
2736}
2737
2738static int
2739gdb_get_line_command (clientData, interp, objc, objv)
2740 ClientData clientData;
2741 Tcl_Interp *interp;
2742 int objc;
2743 Tcl_Obj *CONST objv[];
2744{
2745 Tcl_Obj *result;
2746 struct symtabs_and_lines sals;
2747 char *args, **canonical;
2748
2749 if (objc != 2)
2750 {
2751 Tcl_AppendResult (interp, "wrong # of args: should be \"",
2752 Tcl_GetStringFromObj (objv[0], NULL),
2753 " linespec\"");
2754 return TCL_ERROR;
2755 }
2756
2757 args = Tcl_GetStringFromObj (objv[1], NULL);
2758 sals = decode_line_1 (&args, 1, NULL, 0, &canonical);
2759 if (sals.nelts == 1)
2760 {
2761 Tcl_SetObjResult (interp, Tcl_NewIntObj (sals.sals[0].line));
2762 return TCL_OK;
2763 }
2764
2765 Tcl_SetResult (interp, "N/A", TCL_STATIC);
2766 return TCL_OK;
2767}
2768
fed03c01
EZ
2769
2770static int
2771gdb_get_trace_frame_num (clientData, interp, objc, objv)
2772 ClientData clientData;
2773 Tcl_Interp *interp;
2774 int objc;
2775 Tcl_Obj *CONST objv[];
2776{
2777 if (objc != 1)
2778 {
2779 Tcl_AppendResult (interp, "wrong # of args: should be \"",
2780 Tcl_GetStringFromObj (objv[0], NULL),
2781 " linespec\"");
2782 return TCL_ERROR;
2783 }
2784
2785 Tcl_SetObjResult (interp, Tcl_NewIntObj (get_traceframe_number ()));
2786 return TCL_OK;
2787}
2788
2789
2790
018d76dd
KS
2791static int
2792gdb_get_file_command (clientData, interp, objc, objv)
2793 ClientData clientData;
2794 Tcl_Interp *interp;
2795 int objc;
2796 Tcl_Obj *CONST objv[];
2797{
2798 Tcl_Obj *result;
2799 struct symtabs_and_lines sals;
2800 char *args, **canonical;
2801
2802 if (objc != 2)
2803 {
2804 Tcl_AppendResult (interp, "wrong # of args: should be \"",
2805 Tcl_GetStringFromObj (objv[0], NULL),
2806 " linespec\"");
2807 return TCL_ERROR;
2808 }
2809
2810 args = Tcl_GetStringFromObj (objv[1], NULL);
2811 sals = decode_line_1 (&args, 1, NULL, 0, &canonical);
2812 if (sals.nelts == 1)
2813 {
2814 Tcl_SetResult (interp, sals.sals[0].symtab->filename, TCL_VOLATILE);
2815 return TCL_OK;
2816 }
2817
2818 Tcl_SetResult (interp, "N/A", TCL_STATIC);
2819 return TCL_OK;
2820}
2821
2822static int
2823gdb_get_function_command (clientData, interp, objc, objv)
2824 ClientData clientData;
2825 Tcl_Interp *interp;
2826 int objc;
2827 Tcl_Obj *CONST objv[];
2828{
2829 Tcl_Obj *result;
2830 char *function;
2831 struct symtabs_and_lines sals;
2832 char *args, **canonical;
2833
2834 if (objc != 2)
2835 {
2836 Tcl_AppendResult (interp, "wrong # of args: should be \"",
2837 Tcl_GetStringFromObj (objv[0], NULL),
2838 " linespec\"");
2839 return TCL_ERROR;
2840 }
2841
2842 args = Tcl_GetStringFromObj (objv[1], NULL);
2843 sals = decode_line_1 (&args, 1, NULL, 0, &canonical);
2844 if (sals.nelts == 1)
2845 {
2846 resolve_sal_pc (&sals.sals[0]);
2847 find_pc_partial_function (sals.sals[0].pc, &function, NULL, NULL);
2848 if (function != NULL)
2849 {
2850 Tcl_SetResult (interp, function, TCL_VOLATILE);
2851 return TCL_OK;
2852 }
2853 }
2854
2855 Tcl_SetResult (interp, "N/A", TCL_STATIC);
2856 return TCL_OK;
2857}
2858
2859static int
2860gdb_get_tracepoint_info (clientData, interp, objc, objv)
2861 ClientData clientData;
2862 Tcl_Interp *interp;
2863 int objc;
2864 Tcl_Obj *CONST objv[];
2865{
2866 struct symtab_and_line sal;
018d76dd
KS
2867 int tpnum;
2868 struct tracepoint *tp;
2869 struct action_line *al;
2870 Tcl_Obj *list, *action_list;
09e4fde2 2871 char *filename, *funcname;
018d76dd
KS
2872 char tmp[19];
2873
2874 if (objc != 2)
2875 error ("wrong # args");
2876
2877 Tcl_GetIntFromObj (NULL, objv[1], &tpnum);
2878
2879 ALL_TRACEPOINTS (tp)
2880 if (tp->number == tpnum)
2881 break;
2882
2883 if (tp == NULL)
2884 error ("Tracepoint #%d does not exist", tpnum);
2885
2886 list = Tcl_NewListObj (0, NULL);
09e4fde2
KS
2887 sal = find_pc_line (tp->address, 0);
2888 filename = symtab_to_filename (sal.symtab);
2889 if (filename == NULL)
2890 filename = "N/A";
2891 Tcl_ListObjAppendElement (interp, list,
2892 Tcl_NewStringObj (filename, -1));
09e4fde2
KS
2893 find_pc_partial_function (tp->address, &funcname, NULL, NULL);
2894 Tcl_ListObjAppendElement (interp, list, Tcl_NewStringObj (funcname, -1));
4f17e6eb 2895 Tcl_ListObjAppendElement (interp, list, Tcl_NewIntObj (sal.line));
c62a71b6 2896 sprintf (tmp, "0x%lx", tp->address);
018d76dd
KS
2897 Tcl_ListObjAppendElement (interp, list, Tcl_NewStringObj (tmp, -1));
2898 Tcl_ListObjAppendElement (interp, list, Tcl_NewIntObj (tp->enabled));
2899 Tcl_ListObjAppendElement (interp, list, Tcl_NewIntObj (tp->pass_count));
2900 Tcl_ListObjAppendElement (interp, list, Tcl_NewIntObj (tp->step_count));
2901 Tcl_ListObjAppendElement (interp, list, Tcl_NewIntObj (tp->thread));
2902 Tcl_ListObjAppendElement (interp, list, Tcl_NewIntObj (tp->hit_count));
2903
2904 /* Append a list of actions */
2905 action_list = Tcl_NewListObj (0, NULL);
2906 for (al = tp->actions; al != NULL; al = al->next)
2907 {
2908 Tcl_ListObjAppendElement (interp, action_list,
2909 Tcl_NewStringObj (al->action, -1));
2910 }
2911 Tcl_ListObjAppendElement (interp, list, action_list);
2912
2913 Tcl_SetObjResult (interp, list);
2914 return TCL_OK;
2915}
2916
929db6e5
EZ
2917
2918/* TclDebug (const char *fmt, ...) works just like printf() but */
2919/* sends the output to the GDB TK debug window. */
2920/* Not for normal use; just a convenient tool for debugging */
2921void
2922#ifdef ANSI_PROTOTYPES
2923TclDebug (const char *fmt, ...)
2924#else
2925TclDebug (va_alist)
2926 va_dcl
2927#endif
2928{
2929 va_list args;
2930 char buf[512], *v[2], *merge;
2931
2932#ifdef ANSI_PROTOTYPES
2933 va_start (args, fmt);
2934#else
2935 char *fmt;
2936 va_start (args);
2937 fmt = va_arg (args, char *);
2938#endif
2939
2940 v[0] = "debug";
2941 v[1] = buf;
2942
2943 vsprintf (buf, fmt, args);
2944 va_end (args);
2945
2946 merge = Tcl_Merge (2, v);
2947 Tcl_Eval (interp, merge);
2948 Tcl_Free (merge);
2949}
2950
2951
2952/* Find the full pathname to a file, searching the symbol tables */
2953
2954static int
2955gdb_find_file_command (clientData, interp, objc, objv)
2956 ClientData clientData;
2957 Tcl_Interp *interp;
2958 int objc;
2959 Tcl_Obj *CONST objv[];
2960{
2961 char *filename = NULL;
2962 struct symtab *st;
2963
2964 if (objc != 2)
2965 {
2966 Tcl_WrongNumArgs(interp, 1, objv, "filename");
2967 return TCL_ERROR;
2968 }
2969
2970 st = full_lookup_symtab (Tcl_GetStringFromObj (objv[1], NULL));
2971 if (st)
2972 filename = st->fullname;
2973
2974 if (filename == NULL)
2975 Tcl_SetObjResult (interp, Tcl_NewStringObj ("", 0));
2976 else
2977 Tcl_SetObjResult (interp, Tcl_NewStringObj (filename, -1));
2978
2979 return TCL_OK;
2980}
2981
018d76dd
KS
2982static void
2983gdbtk_create_tracepoint (tp)
2984 struct tracepoint *tp;
2985{
2986 tracepoint_notify (tp, "create");
2987}
2988
2989static void
2990gdbtk_delete_tracepoint (tp)
2991 struct tracepoint *tp;
2992{
2993 tracepoint_notify (tp, "delete");
2994}
2995
a5f4fbff
KS
2996static void
2997gdbtk_modify_tracepoint (tp)
2998 struct tracepoint *tp;
2999{
3000 tracepoint_notify (tp, "modify");
3001}
3002
018d76dd
KS
3003static void
3004tracepoint_notify(tp, action)
3005 struct tracepoint *tp;
3006 const char *action;
3007{
3008 char buf[256];
018d76dd 3009 int v;
09e4fde2
KS
3010 struct symtab_and_line sal;
3011 char *filename;
018d76dd
KS
3012
3013 /* We ensure that ACTION contains no special Tcl characters, so we
3014 can do this. */
09e4fde2
KS
3015 sal = find_pc_line (tp->address, 0);
3016
3017 filename = symtab_to_filename (sal.symtab);
3018 if (filename == NULL)
3019 filename = "N/A";
018d76dd 3020 sprintf (buf, "gdbtk_tcl_tracepoint %s %d 0x%lx %d {%s}", action, tp->number,
41158958 3021 (long)tp->address, sal.line, filename, tp->pass_count);
018d76dd
KS
3022
3023 v = Tcl_Eval (interp, buf);
3024
3025 if (v != TCL_OK)
3026 {
3027 gdbtk_fputs (interp->result, gdb_stdout);
3028 gdbtk_fputs ("\n", gdb_stdout);
3029 }
3030}
3031
3032/* returns -1 if not found, tracepoint # if found */
3033int
3034tracepoint_exists (char * args)
3035{
3036 struct tracepoint *tp;
3037 char **canonical;
3038 struct symtabs_and_lines sals;
3039 char *file = NULL;
3040 int result = -1;
3041
3042 sals = decode_line_1 (&args, 1, NULL, 0, &canonical);
3043 if (sals.nelts == 1)
3044 {
3045 resolve_sal_pc (&sals.sals[0]);
3046 file = xmalloc (strlen (sals.sals[0].symtab->dirname)
3047 + strlen (sals.sals[0].symtab->filename) + 1);
3048 if (file != NULL)
3049 {
3050 strcpy (file, sals.sals[0].symtab->dirname);
3051 strcat (file, sals.sals[0].symtab->filename);
3052
3053 ALL_TRACEPOINTS (tp)
3054 {
3055 if (tp->address == sals.sals[0].pc)
3056 result = tp->number;
c62a71b6
KS
3057#if 0
3058 /* Why is this here? This messes up assembly traces */
018d76dd
KS
3059 else if (tp->source_file != NULL
3060 && strcmp (tp->source_file, file) == 0
3061 && sals.sals[0].line == tp->line_number)
018d76dd 3062 result = tp->number;
c62a71b6 3063#endif
018d76dd
KS
3064 }
3065 }
3066 }
3067 if (file != NULL)
3068 free (file);
3069 return result;
3070}
3071
3072static int
3073gdb_actions_command (clientData, interp, objc, objv)
3074 ClientData clientData;
3075 Tcl_Interp *interp;
3076 int objc;
3077 Tcl_Obj *CONST objv[];
3078{
3079 struct tracepoint *tp;
3080 Tcl_Obj **actions;
3081 int nactions, i, len;
3082 char *number, *args, *action;
43b043cf 3083 long step_count;
018d76dd 3084 struct action_line *next = NULL, *temp;
fed03c01 3085 enum actionline_type linetype;
018d76dd
KS
3086
3087 if (objc != 3)
3088 {
3089 Tcl_AppendResult (interp, "wrong # args: should be: \"",
3090 Tcl_GetStringFromObj (objv[0], NULL),
3091 " number actions\"");
3092 return TCL_ERROR;
3093 }
3094
3095 args = number = Tcl_GetStringFromObj (objv[1], NULL);
3096 tp = get_tracepoint_by_number (&args);
3097 if (tp == NULL)
3098 {
3099 Tcl_AppendResult (interp, "Tracepoint \"", number, "\" does not exist");
3100 return TCL_ERROR;
3101 }
3102
3103 /* Free any existing actions */
a5f4fbff
KS
3104 if (tp->actions != NULL)
3105 free_actions (tp);
3106
43b043cf 3107 step_count = 0;
018d76dd
KS
3108
3109 Tcl_ListObjGetElements (interp, objv[2], &nactions, &actions);
fed03c01
EZ
3110
3111 /* Add the actions to the tracepoint */
018d76dd
KS
3112 for (i = 0; i < nactions; i++)
3113 {
3114 temp = xmalloc (sizeof (struct action_line));
3115 temp->next = NULL;
3116 action = Tcl_GetStringFromObj (actions[i], &len);
3117 temp->action = savestring (action, len);
fed03c01
EZ
3118
3119 linetype = validate_actionline (&(temp->action), tp);
3120
3121 if (linetype == BADLINE)
3122 {
3123 free (temp);
3124 continue;
3125 }
3126
018d76dd
KS
3127 if (next == NULL)
3128 {
3129 tp->actions = temp;
3130 next = temp;
3131 }
3132 else
3133 {
3134 next->next = temp;
3135 next = temp;
3136 }
3137 }
3138
3139 return TCL_OK;
3140}
3141
3142static int
3143gdb_tracepoint_exists_command (clientData, interp, objc, objv)
3144 ClientData clientData;
3145 Tcl_Interp *interp;
3146 int objc;
3147 Tcl_Obj *CONST objv[];
3148{
3149 char * args;
3150
3151 if (objc != 2)
3152 {
3153 Tcl_AppendResult (interp, "wrong # of args: should be \"",
3154 Tcl_GetStringFromObj (objv[0], NULL),
3155 " function:line|function|line|*addr\"");
3156 return TCL_ERROR;
3157 }
3158
3159 args = Tcl_GetStringFromObj (objv[1], NULL);
3160
3161 Tcl_SetObjResult (interp, Tcl_NewIntObj (tracepoint_exists (args)));
3162 return TCL_OK;
3163}
3164
3165/* Return the prompt to the interpreter */
3166static int
3167gdb_prompt_command (clientData, interp, objc, objv)
3168 ClientData clientData;
3169 Tcl_Interp *interp;
3170 int objc;
3171 Tcl_Obj *CONST objv[];
3172{
3173 Tcl_SetResult (interp, get_prompt (), TCL_VOLATILE);
3174 return TCL_OK;
3175}
3176
4f17e6eb
KS
3177/* return a list of all tracepoint numbers in interpreter */
3178static int
3179gdb_get_tracepoint_list (clientData, interp, objc, objv)
3180 ClientData clientData;
3181 Tcl_Interp *interp;
3182 int objc;
3183 Tcl_Obj *CONST objv[];
3184{
3185 Tcl_Obj *list;
3186 struct tracepoint *tp;
3187
3188 list = Tcl_NewListObj (0, NULL);
3189
3190 ALL_TRACEPOINTS (tp)
3191 Tcl_ListObjAppendElement (interp, list, Tcl_NewIntObj (tp->number));
3192
3193 Tcl_SetObjResult (interp, list);
3194 return TCL_OK;
3195}
e0f7db02 3196
e0f7db02 3197
929db6e5
EZ
3198/* This hook is called whenever we are ready to load a symbol file so that
3199 the UI can notify the user... */
3200void
3201gdbtk_pre_add_symbol (name)
3202 char *name;
3203{
e924e162 3204 char *merge, *v[2];
e0f7db02 3205
e924e162
EZ
3206 v[0] = "gdbtk_tcl_pre_add_symbol";
3207 v[1] = name;
3208 merge = Tcl_Merge (2, v);
3209 Tcl_Eval (interp, merge);
3210 Tcl_Free (merge);
929db6e5 3211}
e0f7db02 3212
929db6e5
EZ
3213/* This hook is called whenever we finish loading a symbol file. */
3214void
3215gdbtk_post_add_symbol ()
3216{
3217 Tcl_Eval (interp, "gdbtk_tcl_post_add_symbol");
3218}
e0f7db02 3219
e0f7db02 3220
e0f7db02 3221
929db6e5
EZ
3222static void
3223gdbtk_print_frame_info (s, line, stopline, noerror)
3224 struct symtab *s;
3225 int line;
3226 int stopline;
3227 int noerror;
3228{
3229 current_source_symtab = s;
3230 current_source_line = line;
3231}
3232
3233
3234/* The lookup_symtab() in symtab.c doesn't work correctly */
3235/* It will not work will full pathnames and if multiple */
3236/* source files have the same basename, it will return */
3237/* the first one instead of the correct one. This version */
3238/* also always makes sure symtab->fullname is set. */
3239
3240static struct symtab *
3241full_lookup_symtab(file)
3242 char *file;
3243{
3244 struct symtab *st;
3245 struct objfile *objfile;
3246 char *bfile, *fullname;
3247 struct partial_symtab *pt;
3248
3249 if (!file)
3250 return NULL;
3251
3252 /* first try a direct lookup */
3253 st = lookup_symtab (file);
3254 if (st)
3255 {
3256 if (!st->fullname)
3257 symtab_to_filename(st);
3258 return st;
3259 }
3260
3261 /* if the direct approach failed, try */
3262 /* looking up the basename and checking */
3263 /* all matches with the fullname */
3264 bfile = basename (file);
3265 ALL_SYMTABS (objfile, st)
3266 {
3267 if (!strcmp (bfile, basename(st->filename)))
3268 {
3269 if (!st->fullname)
3270 fullname = symtab_to_filename (st);
3271 else
3272 fullname = st->fullname;
3273
3274 if (!strcmp (file, fullname))
3275 return st;
3276 }
3277 }
3278
3279 /* still no luck? look at psymtabs */
3280 ALL_PSYMTABS (objfile, pt)
3281 {
3282 if (!strcmp (bfile, basename(pt->filename)))
3283 {
3284 st = PSYMTAB_TO_SYMTAB (pt);
3285 if (st)
3286 {
3287 fullname = symtab_to_filename (st);
3288 if (!strcmp (file, fullname))
3289 return st;
3290 }
3291 }
3292 }
3293 return NULL;
3294}
3295
e6e9507d
EZ
3296static int
3297perror_with_name_wrapper (args)
3298 char * args;
3299{
3300 perror_with_name (args);
3301 return 1;
3302}
929db6e5
EZ
3303
3304/* gdb_loadfile loads a c source file into a text widget. */
3305
3306/* LTABLE_SIZE is the number of bytes to allocate for the */
3307/* line table. Its size limits the maximum number of lines */
3308/* in a file to 8 * LTABLE_SIZE. This memory is freed after */
3309/* the file is loaded, so it is OK to make this very large. */
3310/* Additional memory will be allocated if needed. */
3311#define LTABLE_SIZE 20000
e0f7db02 3312
e0f7db02 3313static int
929db6e5 3314gdb_loadfile (clientData, interp, objc, objv)
e0f7db02
KS
3315 ClientData clientData;
3316 Tcl_Interp *interp;
3317 int objc;
3318 Tcl_Obj *CONST objv[];
3319{
929db6e5
EZ
3320 char *file, *widget, *line, *buf, msg[128];
3321 int linenumbers, ln, anum, lnum, ltable_size;
3322 Tcl_Obj *a[2], *b[2], *cmd;
3323 FILE *fp;
3324 char *ltable;
3325 struct symtab *symtab;
3326 struct linetable_entry *le;
e6e9507d
EZ
3327 long mtime = 0;
3328 struct stat st;
3329
929db6e5
EZ
3330
3331 if (objc != 4)
3332 {
3333 Tcl_WrongNumArgs(interp, 1, objv, "widget filename linenumbers");
3334 return TCL_ERROR;
3335 }
e0f7db02 3336
929db6e5
EZ
3337 widget = Tcl_GetStringFromObj (objv[1], NULL);
3338 file = Tcl_GetStringFromObj (objv[2], NULL);
3339 Tcl_GetBooleanFromObj (interp, objv[3], &linenumbers);
3340
3341 if ((fp = fopen ( file, "r" )) == NULL)
3342 return TCL_ERROR;
3343
3344 symtab = full_lookup_symtab (file);
3345 if (!symtab)
e0f7db02 3346 {
ed5fa7c3
MH
3347 sprintf(msg, "File not found");
3348 Tcl_SetStringObj ( Tcl_GetObjResult (interp), msg, -1);
929db6e5 3349 fclose (fp);
e0f7db02
KS
3350 return TCL_ERROR;
3351 }
3352
d2a3ee23 3353 if (stat (file, &st) < 0)
e6e9507d
EZ
3354 {
3355 catch_errors (perror_with_name_wrapper, "gdbtk: get time stamp", "",
3356 RETURN_MASK_ALL);
3357 return TCL_ERROR;
3358 }
3359
3360 if (symtab && symtab->objfile && symtab->objfile->obfd)
3361 mtime = bfd_get_mtime(symtab->objfile->obfd);
3362 else if (exec_bfd)
3363 mtime = bfd_get_mtime(exec_bfd);
3364
3365 if (mtime && mtime < st.st_mtime)
cb432079 3366 gdbtk_ignorable_warning("Source file is more recent than executable.\n");
e6e9507d
EZ
3367
3368
929db6e5
EZ
3369 /* Source linenumbers don't appear to be in order, and a sort is */
3370 /* too slow so the fastest solution is just to allocate a huge */
3371 /* array and set the array entry for each linenumber */
3372
3373 ltable_size = LTABLE_SIZE;
3374 ltable = (char *)malloc (LTABLE_SIZE);
3375 if (ltable == NULL)
3376 {
3377 sprintf(msg, "Out of memory.");
3378 Tcl_SetStringObj ( Tcl_GetObjResult (interp), msg, -1);
3379 fclose (fp);
3380 return TCL_ERROR;
3381 }
3382
3383 memset (ltable, 0, LTABLE_SIZE);
3384
3385 if (symtab->linetable && symtab->linetable->nitems)
3386 {
3387 le = symtab->linetable->item;
3388 for (ln = symtab->linetable->nitems ;ln > 0; ln--, le++)
3389 {
3390 lnum = le->line >> 3;
3391 if (lnum >= ltable_size)
3392 {
3393 char *new_ltable;
3394 new_ltable = (char *)realloc (ltable, ltable_size*2);
3395 memset (new_ltable + ltable_size, 0, ltable_size);
3396 ltable_size *= 2;
3397 if (new_ltable == NULL)
3398 {
3399 sprintf(msg, "Out of memory.");
3400 Tcl_SetStringObj ( Tcl_GetObjResult (interp), msg, -1);
3401 free (ltable);
3402 fclose (fp);
3403 return TCL_ERROR;
3404 }
3405 ltable = new_ltable;
3406 }
3407 ltable[lnum] |= 1 << (le->line % 8);
3408 }
3409 }
11f91b2b 3410
929db6e5
EZ
3411 /* create an object with enough space, then grab its */
3412 /* buffer and sprintf directly into it. */
3413 a[0] = Tcl_NewStringObj (ltable, 1024);
3414 a[1] = Tcl_NewListObj(0,NULL);
3415 buf = a[0]->bytes;
3416 b[0] = Tcl_NewStringObj (ltable,1024);
3417 b[1] = Tcl_NewStringObj ("source_tag", -1);
3418 Tcl_IncrRefCount (b[0]);
3419 Tcl_IncrRefCount (b[1]);
3420 line = b[0]->bytes + 1;
3421 strcpy(b[0]->bytes,"\t");
3422
3423 ln = 1;
3424 while (fgets (line, 980, fp))
3425 {
3426 if (linenumbers)
3427 {
3428 if (ltable[ln >> 3] & (1 << (ln % 8)))
390ca26a
KS
3429 {
3430 sprintf (buf,"%s insert end {-\t%d} break_tag", widget, ln);
3431 a[0]->length = strlen (buf);
3432 }
929db6e5 3433 else
390ca26a
KS
3434 {
3435 sprintf (buf,"%s insert end { \t%d} \"\"", widget, ln);
3436 a[0]->length = strlen (buf);
3437 }
929db6e5
EZ
3438 }
3439 else
3440 {
3441 if (ltable[ln >> 3] & (1 << (ln % 8)))
390ca26a
KS
3442 {
3443 sprintf (buf,"%s insert end {-\t} break_tag", widget);
3444 a[0]->length = strlen (buf);
3445 }
929db6e5 3446 else
390ca26a
KS
3447 {
3448 sprintf (buf,"%s insert end { \t} \"\"", widget);
3449 a[0]->length = strlen (buf);
3450 }
929db6e5
EZ
3451 }
3452 b[0]->length = strlen(b[0]->bytes);
3453 Tcl_SetListObj(a[1],2,b);
3454 cmd = Tcl_ConcatObj(2,a);
3455 Tcl_EvalObj (interp, cmd);
3456 Tcl_DecrRefCount (cmd);
3457 ln++;
3458 }
3459 Tcl_DecrRefCount (b[0]);
3460 Tcl_DecrRefCount (b[0]);
3461 Tcl_DecrRefCount (b[1]);
3462 Tcl_DecrRefCount (b[1]);
3463 free (ltable);
3464 fclose (fp);
11f91b2b
KS
3465 return TCL_OK;
3466}
3467
929db6e5
EZ
3468/* at some point make these static in breakpoint.c and move GUI code there */
3469extern struct breakpoint *set_raw_breakpoint (struct symtab_and_line sal);
3470extern void set_breakpoint_count (int);
3471extern int breakpoint_count;
3472
3473/* set a breakpoint by source file and line number */
3474/* flags are as follows: */
3475/* least significant 2 bits are disposition, rest is */
3476/* type (normally 0).
3477
3478enum bptype {
3479 bp_breakpoint, Normal breakpoint
3480 bp_hardware_breakpoint, Hardware assisted breakpoint
3481}
3482
3483Disposition of breakpoint. Ie: what to do after hitting it.
3484enum bpdisp {
3485 del, Delete it
3486 del_at_next_stop, Delete at next stop, whether hit or not
3487 disable, Disable it
3488 donttouch Leave it alone
3489 };
3490*/
3491
3492static int
3493gdb_set_bp (clientData, interp, objc, objv)
3494 ClientData clientData;
3495 Tcl_Interp *interp;
3496 int objc;
3497 Tcl_Obj *CONST objv[];
3498
11f91b2b 3499{
929db6e5
EZ
3500 struct symtab_and_line sal;
3501 int line, flags, ret;
3502 struct breakpoint *b;
3503 char buf[64];
3504 Tcl_Obj *a[5], *cmd;
e0f7db02 3505
929db6e5 3506 if (objc != 4)
e0f7db02 3507 {
929db6e5
EZ
3508 Tcl_WrongNumArgs(interp, 1, objv, "filename line type");
3509 return TCL_ERROR;
e0f7db02 3510 }
11f91b2b 3511
929db6e5
EZ
3512 sal.symtab = full_lookup_symtab (Tcl_GetStringFromObj( objv[1], NULL));
3513 if (sal.symtab == NULL)
3514 return TCL_ERROR;
3515
3516 if (Tcl_GetIntFromObj( interp, objv[2], &line) == TCL_ERROR)
3517 return TCL_ERROR;
3518
3519 if (Tcl_GetIntFromObj( interp, objv[3], &flags) == TCL_ERROR)
3520 return TCL_ERROR;
3521
3522 sal.line = line;
3523 sal.pc = find_line_pc (sal.symtab, sal.line);
3524 if (sal.pc == 0)
3525 return TCL_ERROR;
3526
3527 sal.section = find_pc_overlay (sal.pc);
3528 b = set_raw_breakpoint (sal);
3529 set_breakpoint_count (breakpoint_count + 1);
3530 b->number = breakpoint_count;
3531 b->type = flags >> 2;
3532 b->disposition = flags & 3;
3533
3534 /* FIXME: this won't work for duplicate basenames! */
3535 sprintf (buf, "%s:%d", basename(Tcl_GetStringFromObj( objv[1], NULL)), line);
3536 b->addr_string = strsave (buf);
3537
3538 /* now send notification command back to GUI */
3539 sprintf (buf, "0x%x", sal.pc);
3540 a[0] = Tcl_NewStringObj ("gdbtk_tcl_breakpoint create", -1);
3541 a[1] = Tcl_NewIntObj (b->number);
3542 a[2] = Tcl_NewStringObj (buf, -1);
3543 a[3] = objv[2];
3544 a[4] = Tcl_NewListObj (1,&objv[1]);
3545 cmd = Tcl_ConcatObj(5,a);
3546 ret = Tcl_EvalObj (interp, cmd);
3547 Tcl_DecrRefCount (cmd);
3548 return ret;
11f91b2b 3549}
4f17e6eb 3550
3f37b696 3551/* Come here during initialize_all_files () */
754e5da2
SG
3552
3553void
3554_initialize_gdbtk ()
3555{
c5197511
SG
3556 if (use_windows)
3557 {
3558 /* Tell the rest of the world that Gdbtk is now set up. */
754e5da2 3559
c5197511 3560 init_ui_hook = gdbtk_init;
47792960
KS
3561#ifdef __CYGWIN32__
3562 (void) FreeConsole ();
3563#endif
c5197511 3564 }
cb432079
EZ
3565#ifdef __CYGWIN32__
3566 else
3567 {
3568 DWORD ft = GetFileType (GetStdHandle (STD_INPUT_HANDLE));
3569 void cygwin32_attach_handle_to_fd (char *, int, HANDLE, int, int);
3570
3571 switch (ft)
3572 {
3573 case FILE_TYPE_DISK:
3574 case FILE_TYPE_CHAR:
3575 case FILE_TYPE_PIPE:
3576 break;
3577 default:
3578 AllocConsole();
3579 cygwin32_attach_handle_to_fd ("/dev/conin", 0,
3580 GetStdHandle (STD_INPUT_HANDLE),
3581 1, GENERIC_READ);
3582 cygwin32_attach_handle_to_fd ("/dev/conout", 1,
3583 GetStdHandle (STD_OUTPUT_HANDLE),
3584 0, GENERIC_WRITE);
3585 cygwin32_attach_handle_to_fd ("/dev/conout", 2,
3586 GetStdHandle (STD_ERROR_HANDLE),
3587 0, GENERIC_WRITE);
3588 break;
3589 }
3590 }
3591#endif
754e5da2 3592}
This page took 0.346712 seconds and 4 git commands to generate.