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