* defs.h (TARGET_FLOAT_FORMAT, TARGET_DOUBLE_FORMAT): Define using
[deliverable/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 switch ((enum switches_opts) index)
1362 {
1363 case SWITCH_FILES:
1364 {
1365 int result;
1366 if (switch_objc < 2)
1367 {
1368 Tcl_WrongNumArgs (interp, 2, objv, "[-files fileList -static 1|0]");
1369 result_ptr->flags |= GDBTK_IN_TCL_RESULT;
1370 return TCL_ERROR;
1371 }
1372 result = Tcl_ListObjGetElements (interp, switch_objv[1], &nfiles, &file_list);
1373 if (result != TCL_OK)
1374 return result;
1375
1376 files = (char **) xmalloc (nfiles * sizeof (char *));
1377 for (i = 0; i < nfiles; i++)
1378 files[i] = Tcl_GetStringFromObj (file_list[i], NULL);
1379 switch_objc--;
1380 switch_objv++;
1381 }
1382 break;
1383 case SWITCH_STATIC_ONLY:
1384 if (switch_objc < 2)
1385 {
1386 Tcl_WrongNumArgs (interp, 2, objv, "[-files fileList] [-static 1|0]");
1387 result_ptr->flags |= GDBTK_IN_TCL_RESULT;
1388 return TCL_ERROR;
1389 }
1390 if ( Tcl_GetBooleanFromObj (interp, switch_objv[1], &static_only) !=
1391 TCL_OK) {
1392 result_ptr->flags |= GDBTK_IN_TCL_RESULT;
1393 return TCL_ERROR;
1394 }
1395 switch_objc--;
1396 switch_objv++;
1397 }
1398 switch_objc--;
1399 switch_objv++;
1400 }
1401
1402 search_symbols (regexp, space, nfiles, files, &ss);
1403 if (ss != NULL)
1404 old_chain = make_cleanup ((make_cleanup_func) free_search_symbols, ss);
1405
1406 Tcl_SetListObj(result_ptr->obj_ptr, 0, NULL);
1407
1408 for (p = ss; p != NULL; p = p->next)
1409 {
1410 Tcl_Obj *elem;
1411
1412 if (static_only && p->block != STATIC_BLOCK)
1413 continue;
1414
1415 /* Strip off some C++ special symbols, like RTTI and global
1416 constructors/destructors. */
1417 if ((p->symbol != NULL && !STREQN (SYMBOL_NAME (p->symbol), "__tf", 4)
1418 && !STREQN (SYMBOL_NAME (p->symbol), "_GLOBAL_", 8))
1419 || p->msymbol != NULL)
1420 {
1421 elem = Tcl_NewListObj (0, NULL);
1422
1423 if (p->msymbol == NULL)
1424 Tcl_ListObjAppendElement (interp, elem,
1425 Tcl_NewStringObj (SYMBOL_SOURCE_NAME (p->symbol), -1));
1426 else
1427 Tcl_ListObjAppendElement (interp, elem,
1428 Tcl_NewStringObj (SYMBOL_SOURCE_NAME (p->msymbol), -1));
1429
1430 Tcl_ListObjAppendElement (interp, result_ptr->obj_ptr, elem);
1431 }
1432 }
1433
1434 if (ss != NULL)
1435 do_cleanups (old_chain);
1436
1437 return TCL_OK;
1438 }
1439
1440 /* This implements the tcl command gdb_listfuncs
1441 *
1442 * It lists all the functions defined in a given file
1443 *
1444 * Arguments:
1445 * file - the file to look in
1446 * Tcl Result:
1447 * A list of two element lists, the first element is
1448 * the symbol name, and the second is a boolean indicating
1449 * whether the symbol is demangled (1 for yes).
1450 */
1451
1452 static int
1453 gdb_listfuncs (clientData, interp, objc, objv)
1454 ClientData clientData;
1455 Tcl_Interp *interp;
1456 int objc;
1457 Tcl_Obj *CONST objv[];
1458 {
1459 struct symtab *symtab;
1460 struct blockvector *bv;
1461 struct block *b;
1462 struct symbol *sym;
1463 int i,j;
1464 Tcl_Obj *funcVals[2];
1465
1466 if (objc != 2)
1467 {
1468 Tcl_SetStringObj (result_ptr->obj_ptr, "wrong # args", -1);
1469 }
1470
1471 symtab = full_lookup_symtab (Tcl_GetStringFromObj (objv[1], NULL));
1472 if (!symtab)
1473 {
1474 Tcl_SetStringObj (result_ptr->obj_ptr, "No such file", -1);
1475 return TCL_ERROR;
1476 }
1477
1478 if (mangled == NULL)
1479 {
1480 mangled = Tcl_NewBooleanObj(1);
1481 not_mangled = Tcl_NewBooleanObj(0);
1482 Tcl_IncrRefCount(mangled);
1483 Tcl_IncrRefCount(not_mangled);
1484 }
1485
1486 Tcl_SetListObj (result_ptr->obj_ptr, 0, NULL);
1487
1488 bv = BLOCKVECTOR (symtab);
1489 for (i = GLOBAL_BLOCK; i <= STATIC_BLOCK; i++)
1490 {
1491 b = BLOCKVECTOR_BLOCK (bv, i);
1492 /* Skip the sort if this block is always sorted. */
1493 if (!BLOCK_SHOULD_SORT (b))
1494 sort_block_syms (b);
1495 for (j = 0; j < BLOCK_NSYMS (b); j++)
1496 {
1497 sym = BLOCK_SYM (b, j);
1498 if (SYMBOL_CLASS (sym) == LOC_BLOCK)
1499 {
1500
1501 char *name = cplus_demangle (SYMBOL_NAME(sym), 0);
1502 if (name)
1503 {
1504 /* strip out "global constructors" and "global destructors" */
1505 /* because we aren't interested in them. */
1506 if (strncmp (name, "global ", 7))
1507 {
1508 funcVals[0] = Tcl_NewStringObj(name, -1);
1509 funcVals[1] = mangled;
1510 }
1511 else
1512 continue;
1513
1514 }
1515 else
1516 {
1517 funcVals[0] = Tcl_NewStringObj(SYMBOL_NAME(sym), -1);
1518 funcVals[1] = not_mangled;
1519 }
1520 Tcl_ListObjAppendElement (NULL, result_ptr->obj_ptr,
1521 Tcl_NewListObj (2, funcVals));
1522 }
1523 }
1524 }
1525 return TCL_OK;
1526 }
1527
1528 \f
1529 /*
1530 * This section contains all the commands that act on the registers:
1531 */
1532
1533 /* This is a sort of mapcar function for operations on registers */
1534
1535 static int
1536 map_arg_registers (objc, objv, func, argp)
1537 int objc;
1538 Tcl_Obj *CONST objv[];
1539 void (*func) PARAMS ((int regnum, void *argp));
1540 void *argp;
1541 {
1542 int regnum;
1543
1544 /* Note that the test for a valid register must include checking the
1545 REGISTER_NAME because NUM_REGS may be allocated for the union of
1546 the register sets within a family of related processors. In this
1547 case, some entries of REGISTER_NAME will change depending upon
1548 the particular processor being debugged. */
1549
1550 if (objc == 0) /* No args, just do all the regs */
1551 {
1552 for (regnum = 0;
1553 regnum < NUM_REGS
1554 && REGISTER_NAME (regnum) != NULL
1555 && *REGISTER_NAME (regnum) != '\000';
1556 regnum++)
1557 func (regnum, argp);
1558
1559 return TCL_OK;
1560 }
1561
1562 /* Else, list of register #s, just do listed regs */
1563 for (; objc > 0; objc--, objv++)
1564 {
1565 if (Tcl_GetIntFromObj (NULL, *objv, &regnum) != TCL_OK)
1566 {
1567 result_ptr->flags |= GDBTK_IN_TCL_RESULT;
1568 return TCL_ERROR;
1569 }
1570
1571 if (regnum >= 0
1572 && regnum < NUM_REGS
1573 && REGISTER_NAME (regnum) != NULL
1574 && *REGISTER_NAME (regnum) != '\000')
1575 func (regnum, argp);
1576 else
1577 {
1578 Tcl_SetStringObj (result_ptr->obj_ptr, "bad register number", -1);
1579 return TCL_ERROR;
1580 }
1581 }
1582
1583 return TCL_OK;
1584 }
1585
1586 /* This implements the TCL command `gdb_regnames', which returns a list of
1587 all of the register names. */
1588
1589 static int
1590 gdb_regnames (clientData, interp, objc, objv)
1591 ClientData clientData;
1592 Tcl_Interp *interp;
1593 int objc;
1594 Tcl_Obj *CONST objv[];
1595 {
1596 objc--;
1597 objv++;
1598
1599 return map_arg_registers (objc, objv, get_register_name, NULL);
1600 }
1601
1602 static void
1603 get_register_name (regnum, argp)
1604 int regnum;
1605 void *argp; /* Ignored */
1606 {
1607 Tcl_ListObjAppendElement (NULL, result_ptr->obj_ptr,
1608 Tcl_NewStringObj (REGISTER_NAME (regnum), -1));
1609 }
1610
1611 /* This implements the tcl command gdb_fetch_registers
1612 * Pass it a list of register names, and it will
1613 * return their values as a list.
1614 *
1615 * Tcl Arguments:
1616 * format: The format string for printing the values
1617 * args: the registers to look for
1618 * Tcl Result:
1619 * A list of their values.
1620 */
1621
1622 static int
1623 gdb_fetch_registers (clientData, interp, objc, objv)
1624 ClientData clientData;
1625 Tcl_Interp *interp;
1626 int objc;
1627 Tcl_Obj *CONST objv[];
1628 {
1629 int format, result;
1630
1631 if (objc < 2)
1632 {
1633 Tcl_SetStringObj (result_ptr->obj_ptr,
1634 "wrong # args, should be gdb_fetch_registers format ?register1 register2 ...?", -1);
1635 }
1636 objc -= 2;
1637 objv++;
1638 format = *(Tcl_GetStringFromObj(objv[0], NULL));
1639 objv++;
1640
1641
1642 result_ptr->flags |= GDBTK_MAKES_LIST; /* Output the results as a list */
1643 result = map_arg_registers (objc, objv, get_register, (void *) format);
1644 result_ptr->flags &= ~GDBTK_MAKES_LIST;
1645
1646 return result;
1647 }
1648
1649 static void
1650 get_register (regnum, fp)
1651 int regnum;
1652 void *fp;
1653 {
1654 char raw_buffer[MAX_REGISTER_RAW_SIZE];
1655 char virtual_buffer[MAX_REGISTER_VIRTUAL_SIZE];
1656 int format = (int)fp;
1657 int optim;
1658
1659 if (format == 'N')
1660 format = 0;
1661
1662 /* read_relative_register_raw_bytes returns a virtual frame pointer
1663 (FRAME_FP (selected_frame)) if regnum == FP_REGNUM instead
1664 of the real contents of the register. To get around this,
1665 use get_saved_register instead. */
1666 get_saved_register (raw_buffer, &optim, (CORE_ADDR *) NULL, selected_frame,
1667 regnum, (enum lval_type *) NULL);
1668 if (optim)
1669 {
1670 Tcl_ListObjAppendElement (NULL, result_ptr->obj_ptr,
1671 Tcl_NewStringObj ("Optimized out", -1));
1672 return;
1673 }
1674
1675 /* Convert raw data to virtual format if necessary. */
1676
1677 if (REGISTER_CONVERTIBLE (regnum))
1678 {
1679 REGISTER_CONVERT_TO_VIRTUAL (regnum, REGISTER_VIRTUAL_TYPE (regnum),
1680 raw_buffer, virtual_buffer);
1681 }
1682 else
1683 memcpy (virtual_buffer, raw_buffer, REGISTER_VIRTUAL_SIZE (regnum));
1684
1685 if (format == 'r')
1686 {
1687 int j;
1688 printf_filtered ("0x");
1689 for (j = 0; j < REGISTER_RAW_SIZE (regnum); j++)
1690 {
1691 register int idx = TARGET_BYTE_ORDER == BIG_ENDIAN ? j
1692 : REGISTER_RAW_SIZE (regnum) - 1 - j;
1693 printf_filtered ("%02x", (unsigned char)raw_buffer[idx]);
1694 }
1695 }
1696 else
1697 val_print (REGISTER_VIRTUAL_TYPE (regnum), virtual_buffer, 0,
1698 gdb_stdout, format, 1, 0, Val_pretty_default);
1699
1700 }
1701
1702 /* This implements the tcl command get_pc_reg
1703 * It returns the value of the PC register
1704 *
1705 * Tcl Arguments:
1706 * None
1707 * Tcl Result:
1708 * The value of the pc register.
1709 */
1710
1711 static int
1712 get_pc_register (clientData, interp, objc, objv)
1713 ClientData clientData;
1714 Tcl_Interp *interp;
1715 int objc;
1716 Tcl_Obj *CONST objv[];
1717 {
1718 char buff[64];
1719
1720 sprintf (buff, "0x%llx",(long long) read_register (PC_REGNUM));
1721 Tcl_SetStringObj(result_ptr->obj_ptr, buff, -1);
1722 return TCL_OK;
1723 }
1724
1725 /* This implements the tcl command "gdb_changed_register_list"
1726 * It takes a list of registers, and returns a list of
1727 * the registers on that list that have changed since the last
1728 * time the proc was called.
1729 *
1730 * Tcl Arguments:
1731 * A list of registers.
1732 * Tcl Result:
1733 * A list of changed registers.
1734 */
1735
1736 static int
1737 gdb_changed_register_list (clientData, interp, objc, objv)
1738 ClientData clientData;
1739 Tcl_Interp *interp;
1740 int objc;
1741 Tcl_Obj *CONST objv[];
1742 {
1743 objc--;
1744 objv++;
1745
1746 return map_arg_registers (objc, objv, register_changed_p, NULL);
1747 }
1748
1749 static void
1750 register_changed_p (regnum, argp)
1751 int regnum;
1752 void *argp; /* Ignored */
1753 {
1754 char raw_buffer[MAX_REGISTER_RAW_SIZE];
1755
1756 if (read_relative_register_raw_bytes (regnum, raw_buffer))
1757 return;
1758
1759 if (memcmp (&old_regs[REGISTER_BYTE (regnum)], raw_buffer,
1760 REGISTER_RAW_SIZE (regnum)) == 0)
1761 return;
1762
1763 /* Found a changed register. Save new value and return its number. */
1764
1765 memcpy (&old_regs[REGISTER_BYTE (regnum)], raw_buffer,
1766 REGISTER_RAW_SIZE (regnum));
1767
1768 Tcl_ListObjAppendElement (NULL, result_ptr->obj_ptr, Tcl_NewIntObj(regnum));
1769 }
1770 \f
1771 /*
1772 * This section contains the commands that deal with tracepoints:
1773 */
1774
1775 /* return a list of all tracepoint numbers in interpreter */
1776 static int
1777 gdb_get_tracepoint_list (clientData, interp, objc, objv)
1778 ClientData clientData;
1779 Tcl_Interp *interp;
1780 int objc;
1781 Tcl_Obj *CONST objv[];
1782 {
1783 struct tracepoint *tp;
1784
1785 Tcl_SetListObj (result_ptr->obj_ptr, 0, NULL);
1786
1787 ALL_TRACEPOINTS (tp)
1788 Tcl_ListObjAppendElement (interp, result_ptr->obj_ptr, Tcl_NewIntObj (tp->number));
1789
1790 return TCL_OK;
1791 }
1792
1793 /* returns -1 if not found, tracepoint # if found */
1794 int
1795 tracepoint_exists (char * args)
1796 {
1797 struct tracepoint *tp;
1798 char **canonical;
1799 struct symtabs_and_lines sals;
1800 char *file = NULL;
1801 int result = -1;
1802
1803 sals = decode_line_1 (&args, 1, NULL, 0, &canonical);
1804 if (sals.nelts == 1)
1805 {
1806 resolve_sal_pc (&sals.sals[0]);
1807 file = xmalloc (strlen (sals.sals[0].symtab->dirname)
1808 + strlen (sals.sals[0].symtab->filename) + 1);
1809 if (file != NULL)
1810 {
1811 strcpy (file, sals.sals[0].symtab->dirname);
1812 strcat (file, sals.sals[0].symtab->filename);
1813
1814 ALL_TRACEPOINTS (tp)
1815 {
1816 if (tp->address == sals.sals[0].pc)
1817 result = tp->number;
1818 #if 0
1819 /* Why is this here? This messes up assembly traces */
1820 else if (tp->source_file != NULL
1821 && strcmp (tp->source_file, file) == 0
1822 && sals.sals[0].line == tp->line_number)
1823 result = tp->number;
1824 #endif
1825 }
1826 }
1827 }
1828 if (file != NULL)
1829 free (file);
1830 return result;
1831 }
1832
1833 static int
1834 gdb_tracepoint_exists_command (clientData, interp, objc, objv)
1835 ClientData clientData;
1836 Tcl_Interp *interp;
1837 int objc;
1838 Tcl_Obj *CONST objv[];
1839 {
1840 char * args;
1841
1842 if (objc != 2)
1843 {
1844 Tcl_AppendStringsToObj (result_ptr->obj_ptr, "wrong # of args: should be \"",
1845 Tcl_GetStringFromObj (objv[0], NULL),
1846 " function:line|function|line|*addr\"", NULL);
1847 return TCL_ERROR;
1848 }
1849
1850 args = Tcl_GetStringFromObj (objv[1], NULL);
1851
1852 Tcl_SetIntObj (result_ptr->obj_ptr, tracepoint_exists (args));
1853 return TCL_OK;
1854 }
1855
1856 static int
1857 gdb_get_tracepoint_info (clientData, interp, objc, objv)
1858 ClientData clientData;
1859 Tcl_Interp *interp;
1860 int objc;
1861 Tcl_Obj *CONST objv[];
1862 {
1863 struct symtab_and_line sal;
1864 int tpnum;
1865 struct tracepoint *tp;
1866 struct action_line *al;
1867 Tcl_Obj *action_list;
1868 char *filename, *funcname, *fname;
1869 char tmp[19];
1870
1871 if (objc != 2)
1872 {
1873 Tcl_SetStringObj (result_ptr->obj_ptr, "wrong # args", -1);
1874 return TCL_ERROR;
1875 }
1876
1877 if (Tcl_GetIntFromObj (NULL, objv[1], &tpnum) != TCL_OK)
1878 {
1879 result_ptr->flags |= GDBTK_IN_TCL_RESULT;
1880 return TCL_ERROR;
1881 }
1882
1883 ALL_TRACEPOINTS (tp)
1884 if (tp->number == tpnum)
1885 break;
1886
1887 if (tp == NULL)
1888 {
1889 char buff[64];
1890 sprintf (buff, "Tracepoint #%d does not exist", tpnum);
1891 Tcl_SetStringObj (result_ptr->obj_ptr, buff, -1);
1892 return TCL_ERROR;
1893 }
1894
1895 Tcl_SetListObj (result_ptr->obj_ptr, 0, NULL);
1896 sal = find_pc_line (tp->address, 0);
1897 filename = symtab_to_filename (sal.symtab);
1898 if (filename == NULL)
1899 filename = "N/A";
1900 Tcl_ListObjAppendElement (interp, result_ptr->obj_ptr,
1901 Tcl_NewStringObj (filename, -1));
1902
1903 find_pc_partial_function (tp->address, &funcname, NULL, NULL);
1904 fname = cplus_demangle (funcname, 0);
1905 if (fname)
1906 {
1907 Tcl_ListObjAppendElement (interp, result_ptr->obj_ptr, Tcl_NewStringObj
1908 (fname, -1));
1909 free (fname);
1910 }
1911 else
1912 Tcl_ListObjAppendElement (interp, result_ptr->obj_ptr, Tcl_NewStringObj
1913 (funcname, -1));
1914
1915 Tcl_ListObjAppendElement (interp, result_ptr->obj_ptr, Tcl_NewIntObj (sal.line));
1916 sprintf (tmp, "0x%lx", tp->address);
1917 Tcl_ListObjAppendElement (interp, result_ptr->obj_ptr, Tcl_NewStringObj (tmp, -1));
1918 Tcl_ListObjAppendElement (interp, result_ptr->obj_ptr, Tcl_NewIntObj (tp->enabled));
1919 Tcl_ListObjAppendElement (interp, result_ptr->obj_ptr, Tcl_NewIntObj (tp->pass_count));
1920 Tcl_ListObjAppendElement (interp, result_ptr->obj_ptr, Tcl_NewIntObj (tp->step_count));
1921 Tcl_ListObjAppendElement (interp, result_ptr->obj_ptr, Tcl_NewIntObj (tp->thread));
1922 Tcl_ListObjAppendElement (interp, result_ptr->obj_ptr, Tcl_NewIntObj (tp->hit_count));
1923
1924 /* Append a list of actions */
1925 action_list = Tcl_NewObj ();
1926 for (al = tp->actions; al != NULL; al = al->next)
1927 {
1928 Tcl_ListObjAppendElement (interp, action_list,
1929 Tcl_NewStringObj (al->action, -1));
1930 }
1931 Tcl_ListObjAppendElement (interp, result_ptr->obj_ptr, action_list);
1932
1933 return TCL_OK;
1934 }
1935
1936
1937 static int
1938 gdb_trace_status (clientData, interp, objc, objv)
1939 ClientData clientData;
1940 Tcl_Interp *interp;
1941 int objc;
1942 Tcl_Obj *CONST objv[];
1943 {
1944 int result = 0;
1945
1946 if (trace_running_p)
1947 result = 1;
1948
1949 Tcl_SetIntObj (result_ptr->obj_ptr, result);
1950 return TCL_OK;
1951 }
1952
1953
1954
1955 static int
1956 gdb_get_trace_frame_num (clientData, interp, objc, objv)
1957 ClientData clientData;
1958 Tcl_Interp *interp;
1959 int objc;
1960 Tcl_Obj *CONST objv[];
1961 {
1962 if (objc != 1)
1963 {
1964 Tcl_AppendStringsToObj (result_ptr->obj_ptr, "wrong # of args: should be \"",
1965 Tcl_GetStringFromObj (objv[0], NULL),
1966 " linespec\"", NULL);
1967 return TCL_ERROR;
1968 }
1969
1970 Tcl_SetIntObj (result_ptr->obj_ptr, get_traceframe_number ());
1971 return TCL_OK;
1972
1973 }
1974
1975 /* This implements the tcl command gdb_actions
1976 * It sets actions for a given tracepoint.
1977 *
1978 * Tcl Arguments:
1979 * number: the tracepoint in question
1980 * actions: the actions to add to this tracepoint
1981 * Tcl Result:
1982 * None.
1983 */
1984
1985 static int
1986 gdb_actions_command (clientData, interp, objc, objv)
1987 ClientData clientData;
1988 Tcl_Interp *interp;
1989 int objc;
1990 Tcl_Obj *CONST objv[];
1991 {
1992 struct tracepoint *tp;
1993 Tcl_Obj **actions;
1994 int nactions, i, len;
1995 char *number, *args, *action;
1996 long step_count;
1997 struct action_line *next = NULL, *temp;
1998 enum actionline_type linetype;
1999
2000 if (objc != 3)
2001 {
2002 Tcl_AppendStringsToObj (result_ptr->obj_ptr, "wrong # args: should be: \"",
2003 Tcl_GetStringFromObj (objv[0], NULL),
2004 " number actions\"", NULL);
2005 return TCL_ERROR;
2006 }
2007
2008 args = number = Tcl_GetStringFromObj (objv[1], NULL);
2009 tp = get_tracepoint_by_number (&args);
2010 if (tp == NULL)
2011 {
2012 Tcl_AppendStringsToObj (result_ptr->obj_ptr, "Tracepoint \"", number, "\" does not exist", NULL);
2013 return TCL_ERROR;
2014 }
2015
2016 /* Free any existing actions */
2017 if (tp->actions != NULL)
2018 free_actions (tp);
2019
2020 step_count = 0;
2021
2022 Tcl_ListObjGetElements (interp, objv[2], &nactions, &actions);
2023
2024 /* Add the actions to the tracepoint */
2025 for (i = 0; i < nactions; i++)
2026 {
2027 temp = xmalloc (sizeof (struct action_line));
2028 temp->next = NULL;
2029 action = Tcl_GetStringFromObj (actions[i], &len);
2030 temp->action = savestring (action, len);
2031
2032 linetype = validate_actionline (&(temp->action), tp);
2033
2034 if (linetype == BADLINE)
2035 {
2036 free (temp);
2037 continue;
2038 }
2039
2040 if (next == NULL)
2041 {
2042 tp->actions = temp;
2043 next = temp;
2044 }
2045 else
2046 {
2047 next->next = temp;
2048 next = temp;
2049 }
2050 }
2051
2052 return TCL_OK;
2053 }
2054 \f
2055 /*
2056 * This section has commands that handle source disassembly.
2057 */
2058
2059 /* This implements the tcl command gdb_disassemble
2060 *
2061 * Arguments:
2062 * source_with_assm - must be "source" or "nosource"
2063 * low_address - the address from which to start disassembly
2064 * ?hi_address? - the address to which to disassemble, defaults
2065 * to the end of the function containing low_address.
2066 * Tcl Result:
2067 * The disassembled code is passed to fputs_unfiltered, so it
2068 * either goes to the console if result_ptr->obj_ptr is NULL or to
2069 * the Tcl result.
2070 */
2071
2072 static int
2073 gdb_disassemble (clientData, interp, objc, objv)
2074 ClientData clientData;
2075 Tcl_Interp *interp;
2076 int objc;
2077 Tcl_Obj *CONST objv[];
2078 {
2079 CORE_ADDR pc, low, high;
2080 int mixed_source_and_assembly;
2081 static disassemble_info di;
2082 static int di_initialized;
2083 char *arg_ptr;
2084
2085 if (objc != 3 && objc != 4)
2086 error ("wrong # args");
2087
2088 if (! di_initialized)
2089 {
2090 INIT_DISASSEMBLE_INFO_NO_ARCH (di, gdb_stdout,
2091 (fprintf_ftype) fprintf_unfiltered);
2092 di.flavour = bfd_target_unknown_flavour;
2093 di.memory_error_func = dis_asm_memory_error;
2094 di.print_address_func = dis_asm_print_address;
2095 di_initialized = 1;
2096 }
2097
2098 di.mach = TARGET_PRINT_INSN_INFO->mach;
2099 if (TARGET_BYTE_ORDER == BIG_ENDIAN)
2100 di.endian = BFD_ENDIAN_BIG;
2101 else
2102 di.endian = BFD_ENDIAN_LITTLE;
2103
2104 arg_ptr = Tcl_GetStringFromObj (objv[1], NULL);
2105 if (*arg_ptr == 's' && strcmp (arg_ptr, "source") == 0)
2106 mixed_source_and_assembly = 1;
2107 else if (*arg_ptr == 'n' && strcmp (arg_ptr, "nosource") == 0)
2108 mixed_source_and_assembly = 0;
2109 else
2110 error ("First arg must be 'source' or 'nosource'");
2111
2112 low = parse_and_eval_address (Tcl_GetStringFromObj (objv[2], NULL));
2113
2114 if (objc == 3)
2115 {
2116 if (find_pc_partial_function (low, NULL, &low, &high) == 0)
2117 error ("No function contains specified address");
2118 }
2119 else
2120 high = parse_and_eval_address (Tcl_GetStringFromObj (objv[3], NULL));
2121
2122 /* If disassemble_from_exec == -1, then we use the following heuristic to
2123 determine whether or not to do disassembly from target memory or from the
2124 exec file:
2125
2126 If we're debugging a local process, read target memory, instead of the
2127 exec file. This makes disassembly of functions in shared libs work
2128 correctly.
2129
2130 Else, we're debugging a remote process, and should disassemble from the
2131 exec file for speed. However, this is no good if the target modifies its
2132 code (for relocation, or whatever).
2133 */
2134
2135 if (disassemble_from_exec == -1)
2136 {
2137 if (strcmp (target_shortname, "child") == 0
2138 || strcmp (target_shortname, "procfs") == 0
2139 || strcmp (target_shortname, "vxprocess") == 0)
2140 disassemble_from_exec = 0; /* It's a child process, read inferior mem */
2141 else
2142 disassemble_from_exec = 1; /* It's remote, read the exec file */
2143 }
2144
2145 if (disassemble_from_exec)
2146 di.read_memory_func = gdbtk_dis_asm_read_memory;
2147 else
2148 di.read_memory_func = dis_asm_read_memory;
2149
2150 /* If just doing straight assembly, all we need to do is disassemble
2151 everything between low and high. If doing mixed source/assembly, we've
2152 got a totally different path to follow. */
2153
2154 if (mixed_source_and_assembly)
2155 { /* Come here for mixed source/assembly */
2156 /* The idea here is to present a source-O-centric view of a function to
2157 the user. This means that things are presented in source order, with
2158 (possibly) out of order assembly immediately following. */
2159 struct symtab *symtab;
2160 struct linetable_entry *le;
2161 int nlines;
2162 int newlines;
2163 struct my_line_entry *mle;
2164 struct symtab_and_line sal;
2165 int i;
2166 int out_of_order;
2167 int next_line;
2168
2169 symtab = find_pc_symtab (low); /* Assume symtab is valid for whole PC range */
2170
2171 if (!symtab || !symtab->linetable)
2172 goto assembly_only;
2173
2174 /* First, convert the linetable to a bunch of my_line_entry's. */
2175
2176 le = symtab->linetable->item;
2177 nlines = symtab->linetable->nitems;
2178
2179 if (nlines <= 0)
2180 goto assembly_only;
2181
2182 mle = (struct my_line_entry *) alloca (nlines * sizeof (struct my_line_entry));
2183
2184 out_of_order = 0;
2185
2186 /* Copy linetable entries for this function into our data structure, creating
2187 end_pc's and setting out_of_order as appropriate. */
2188
2189 /* First, skip all the preceding functions. */
2190
2191 for (i = 0; i < nlines - 1 && le[i].pc < low; i++) ;
2192
2193 /* Now, copy all entries before the end of this function. */
2194
2195 newlines = 0;
2196 for (; i < nlines - 1 && le[i].pc < high; i++)
2197 {
2198 if (le[i].line == le[i + 1].line
2199 && le[i].pc == le[i + 1].pc)
2200 continue; /* Ignore duplicates */
2201
2202 mle[newlines].line = le[i].line;
2203 if (le[i].line > le[i + 1].line)
2204 out_of_order = 1;
2205 mle[newlines].start_pc = le[i].pc;
2206 mle[newlines].end_pc = le[i + 1].pc;
2207 newlines++;
2208 }
2209
2210 /* If we're on the last line, and it's part of the function, then we need to
2211 get the end pc in a special way. */
2212
2213 if (i == nlines - 1
2214 && le[i].pc < high)
2215 {
2216 mle[newlines].line = le[i].line;
2217 mle[newlines].start_pc = le[i].pc;
2218 sal = find_pc_line (le[i].pc, 0);
2219 mle[newlines].end_pc = sal.end;
2220 newlines++;
2221 }
2222
2223 /* Now, sort mle by line #s (and, then by addresses within lines). */
2224
2225 if (out_of_order)
2226 qsort (mle, newlines, sizeof (struct my_line_entry), compare_lines);
2227
2228 /* Now, for each line entry, emit the specified lines (unless they have been
2229 emitted before), followed by the assembly code for that line. */
2230
2231 next_line = 0; /* Force out first line */
2232 for (i = 0; i < newlines; i++)
2233 {
2234 /* Print out everything from next_line to the current line. */
2235
2236 if (mle[i].line >= next_line)
2237 {
2238 if (next_line != 0)
2239 print_source_lines (symtab, next_line, mle[i].line + 1, 0);
2240 else
2241 print_source_lines (symtab, mle[i].line, mle[i].line + 1, 0);
2242
2243 next_line = mle[i].line + 1;
2244 }
2245
2246 for (pc = mle[i].start_pc; pc < mle[i].end_pc; )
2247 {
2248 QUIT;
2249 fputs_unfiltered (" ", gdb_stdout);
2250 print_address (pc, gdb_stdout);
2251 fputs_unfiltered (":\t ", gdb_stdout);
2252 pc += (*tm_print_insn) (pc, &di);
2253 fputs_unfiltered ("\n", gdb_stdout);
2254 }
2255 }
2256 }
2257 else
2258 {
2259 assembly_only:
2260 for (pc = low; pc < high; )
2261 {
2262 QUIT;
2263 fputs_unfiltered (" ", gdb_stdout);
2264 print_address (pc, gdb_stdout);
2265 fputs_unfiltered (":\t ", gdb_stdout);
2266 pc += (*tm_print_insn) (pc, &di);
2267 fputs_unfiltered ("\n", gdb_stdout);
2268 }
2269 }
2270
2271 gdb_flush (gdb_stdout);
2272
2273 return TCL_OK;
2274 }
2275
2276 /* This is the memory_read_func for gdb_disassemble when we are
2277 disassembling from the exec file. */
2278
2279 static int
2280 gdbtk_dis_asm_read_memory (memaddr, myaddr, len, info)
2281 bfd_vma memaddr;
2282 bfd_byte *myaddr;
2283 int len;
2284 disassemble_info *info;
2285 {
2286 extern struct target_ops exec_ops;
2287 int res;
2288
2289 errno = 0;
2290 res = xfer_memory (memaddr, myaddr, len, 0, &exec_ops);
2291
2292 if (res == len)
2293 return 0;
2294 else
2295 if (errno == 0)
2296 return EIO;
2297 else
2298 return errno;
2299 }
2300
2301 /* This will be passed to qsort to sort the results of the disassembly */
2302
2303 static int
2304 compare_lines (mle1p, mle2p)
2305 const PTR mle1p;
2306 const PTR mle2p;
2307 {
2308 struct my_line_entry *mle1, *mle2;
2309 int val;
2310
2311 mle1 = (struct my_line_entry *) mle1p;
2312 mle2 = (struct my_line_entry *) mle2p;
2313
2314 val = mle1->line - mle2->line;
2315
2316 if (val != 0)
2317 return val;
2318
2319 return mle1->start_pc - mle2->start_pc;
2320 }
2321
2322 /* This implements the TCL command `gdb_loc',
2323 *
2324 * Arguments:
2325 * ?symbol? The symbol or address to locate - defaults to pc
2326 * Tcl Return:
2327 * a list consisting of the following:
2328 * basename, function name, filename, line number, address, current pc
2329 */
2330
2331 static int
2332 gdb_loc (clientData, interp, objc, objv)
2333 ClientData clientData;
2334 Tcl_Interp *interp;
2335 int objc;
2336 Tcl_Obj *CONST objv[];
2337 {
2338 char *filename;
2339 struct symtab_and_line sal;
2340 char *funcname, *fname;
2341 CORE_ADDR pc;
2342
2343 if (!have_full_symbols () && !have_partial_symbols ())
2344 {
2345 Tcl_SetStringObj (result_ptr->obj_ptr, "No symbol table is loaded", -1);
2346 return TCL_ERROR;
2347 }
2348
2349 if (objc == 1)
2350 {
2351 if (selected_frame && (selected_frame->pc != stop_pc))
2352 {
2353 /* Note - this next line is not correct on all architectures. */
2354 /* For a graphical debugger we really want to highlight the */
2355 /* assembly line that called the next function on the stack. */
2356 /* Many architectures have the next instruction saved as the */
2357 /* pc on the stack, so what happens is the next instruction is hughlighted. */
2358 /* FIXME */
2359 pc = selected_frame->pc;
2360 sal = find_pc_line (selected_frame->pc,
2361 selected_frame->next != NULL
2362 && !selected_frame->next->signal_handler_caller
2363 && !frame_in_dummy (selected_frame->next));
2364 }
2365 else
2366 {
2367 pc = stop_pc;
2368 sal = find_pc_line (stop_pc, 0);
2369 }
2370 }
2371 else if (objc == 2)
2372 {
2373 struct symtabs_and_lines sals;
2374 int nelts;
2375
2376 sals = decode_line_spec (Tcl_GetStringFromObj (objv[1], NULL), 1);
2377
2378 nelts = sals.nelts;
2379 sal = sals.sals[0];
2380 free (sals.sals);
2381
2382 if (sals.nelts != 1)
2383 {
2384 Tcl_SetStringObj (result_ptr->obj_ptr, "Ambiguous line spec", -1);
2385 return TCL_ERROR;
2386 }
2387 pc = sal.pc;
2388 }
2389 else
2390 {
2391 Tcl_SetStringObj (result_ptr->obj_ptr, "wrong # args", -1);
2392 return TCL_ERROR;
2393 }
2394
2395 if (sal.symtab)
2396 Tcl_ListObjAppendElement (NULL, result_ptr->obj_ptr,
2397 Tcl_NewStringObj (sal.symtab->filename, -1));
2398 else
2399 Tcl_ListObjAppendElement (NULL, result_ptr->obj_ptr, Tcl_NewStringObj ("", 0));
2400
2401 find_pc_partial_function (pc, &funcname, NULL, NULL);
2402 fname = cplus_demangle (funcname, 0);
2403 if (fname)
2404 {
2405 Tcl_ListObjAppendElement (NULL, result_ptr->obj_ptr,
2406 Tcl_NewStringObj (fname, -1));
2407 free (fname);
2408 }
2409 else
2410 Tcl_ListObjAppendElement (NULL, result_ptr->obj_ptr,
2411 Tcl_NewStringObj (funcname, -1));
2412
2413 filename = symtab_to_filename (sal.symtab);
2414 if (filename == NULL)
2415 filename = "";
2416
2417 Tcl_ListObjAppendElement (NULL, result_ptr->obj_ptr,
2418 Tcl_NewStringObj (filename, -1));
2419 Tcl_ListObjAppendElement (NULL, result_ptr->obj_ptr, Tcl_NewIntObj(sal.line)); /* line number */
2420 sprintf_append_element_to_obj (result_ptr->obj_ptr, "0x%s", paddr_nz(pc)); /* PC in current frame */
2421 sprintf_append_element_to_obj (result_ptr->obj_ptr, "0x%s", paddr_nz(stop_pc)); /* Real PC */
2422 return TCL_OK;
2423 }
2424
2425 /* This implements the Tcl command 'gdb_get_mem', which
2426 * dumps a block of memory
2427 * Arguments:
2428 * gdb_get_mem addr form size num aschar
2429 *
2430 * addr: address of data to dump
2431 * form: a char indicating format
2432 * size: size of each element; 1,2,4, or 8 bytes
2433 * num: the number of bytes to read
2434 * acshar: an optional ascii character to use in ASCII dump
2435 *
2436 * Return:
2437 * a list of elements followed by an optional ASCII dump
2438 */
2439
2440 static int
2441 gdb_get_mem (clientData, interp, objc, objv)
2442 ClientData clientData;
2443 Tcl_Interp *interp;
2444 int objc;
2445 Tcl_Obj *CONST objv[];
2446 {
2447 int size, asize, i, j, bc;
2448 CORE_ADDR addr;
2449 int nbytes, rnum, bpr;
2450 long tmp;
2451 char format, c, buff[128], aschar, *mbuf, *mptr, *cptr, *bptr;
2452 struct type *val_type;
2453
2454 if (objc < 6 || objc > 7)
2455 {
2456 Tcl_SetStringObj (result_ptr->obj_ptr,
2457 "addr format size bytes bytes_per_row ?ascii_char?", -1);
2458 return TCL_ERROR;
2459 }
2460
2461 if (Tcl_GetIntFromObj (interp, objv[3], &size) != TCL_OK)
2462 {
2463 result_ptr->flags |= GDBTK_IN_TCL_RESULT;
2464 return TCL_ERROR;
2465 }
2466 else if (size <= 0)
2467 {
2468 Tcl_SetStringObj (result_ptr->obj_ptr, "Invalid size, must be > 0", -1);
2469 return TCL_ERROR;
2470 }
2471
2472 if (Tcl_GetIntFromObj (interp, objv[4], &nbytes) != TCL_OK)
2473 {
2474 result_ptr->flags |= GDBTK_IN_TCL_RESULT;
2475 return TCL_ERROR;
2476 }
2477 else if (size <= 0)
2478 {
2479 Tcl_SetStringObj (result_ptr->obj_ptr, "Invalid number of bytes, must be > 0",
2480 -1);
2481 return TCL_ERROR;
2482 }
2483
2484 if (Tcl_GetIntFromObj (interp, objv[5], &bpr) != TCL_OK)
2485 {
2486 result_ptr->flags |= GDBTK_IN_TCL_RESULT;
2487 return TCL_ERROR;
2488 }
2489 else if (size <= 0)
2490 {
2491 Tcl_SetStringObj (result_ptr->obj_ptr, "Invalid bytes per row, must be > 0", -1);
2492 return TCL_ERROR;
2493 }
2494
2495 if (Tcl_GetLongFromObj (interp, objv[1], &tmp) != TCL_OK)
2496 return TCL_OK;
2497
2498 addr = (CORE_ADDR) tmp;
2499
2500 format = *(Tcl_GetStringFromObj (objv[2], NULL));
2501 mbuf = (char *)malloc (nbytes+32);
2502 if (!mbuf)
2503 {
2504 Tcl_SetStringObj (result_ptr->obj_ptr, "Out of memory.", -1);
2505 return TCL_ERROR;
2506 }
2507
2508 memset (mbuf, 0, nbytes+32);
2509 mptr = cptr = mbuf;
2510
2511 rnum = target_read_memory_partial (addr, mbuf, nbytes, NULL);
2512
2513 if (objc == 7)
2514 aschar = *(Tcl_GetStringFromObj(objv[6], NULL));
2515 else
2516 aschar = 0;
2517
2518 switch (size) {
2519 case 1:
2520 val_type = builtin_type_char;
2521 asize = 'b';
2522 break;
2523 case 2:
2524 val_type = builtin_type_short;
2525 asize = 'h';
2526 break;
2527 case 4:
2528 val_type = builtin_type_int;
2529 asize = 'w';
2530 break;
2531 case 8:
2532 val_type = builtin_type_long_long;
2533 asize = 'g';
2534 break;
2535 default:
2536 val_type = builtin_type_char;
2537 asize = 'b';
2538 }
2539
2540 bc = 0; /* count of bytes in a row */
2541 buff[0] = '"'; /* buffer for ascii dump */
2542 bptr = &buff[1]; /* pointer for ascii dump */
2543
2544 result_ptr->flags |= GDBTK_MAKES_LIST; /* Build up the result as a list... */
2545
2546 for (i=0; i < nbytes; i+= size)
2547 {
2548 if ( i >= rnum)
2549 {
2550 fputs_unfiltered ("N/A ", gdb_stdout);
2551 if (aschar)
2552 for ( j = 0; j < size; j++)
2553 *bptr++ = 'X';
2554 }
2555 else
2556 {
2557 print_scalar_formatted (mptr, val_type, format, asize, gdb_stdout);
2558
2559 if (aschar)
2560 {
2561 for ( j = 0; j < size; j++)
2562 {
2563 c = *cptr++;
2564 if (c < 32 || c > 126)
2565 c = aschar;
2566 if (c == '"')
2567 *bptr++ = '\\';
2568 *bptr++ = c;
2569 }
2570 }
2571 }
2572
2573 mptr += size;
2574 bc += size;
2575
2576 if (aschar && (bc >= bpr))
2577 {
2578 /* end of row. print it and reset variables */
2579 bc = 0;
2580 *bptr++ = '"';
2581 *bptr++ = ' ';
2582 *bptr = 0;
2583 fputs_unfiltered (buff, gdb_stdout);
2584 bptr = &buff[1];
2585 }
2586 }
2587
2588 result_ptr->flags &= ~GDBTK_MAKES_LIST;
2589
2590 free (mbuf);
2591 return TCL_OK;
2592 }
2593
2594 \f
2595
2596 /* This implements the tcl command "gdb_loadfile"
2597 * It loads a c source file into a text widget.
2598 *
2599 * Tcl Arguments:
2600 * widget: the name of the text widget to fill
2601 * filename: the name of the file to load
2602 * linenumbers: A boolean indicating whether or not to display line numbers.
2603 * Tcl Result:
2604 *
2605 */
2606
2607 /* In this routine, we will build up a "line table", i.e. a
2608 * table of bits showing which lines in the source file are executible.
2609 * LTABLE_SIZE is the number of bytes to allocate for the line table.
2610 *
2611 * Its size limits the maximum number of lines
2612 * in a file to 8 * LTABLE_SIZE. This memory is freed after
2613 * the file is loaded, so it is OK to make this very large.
2614 * Additional memory will be allocated if needed. */
2615 #define LTABLE_SIZE 20000
2616 static int
2617 gdb_loadfile (clientData, interp, objc, objv)
2618 ClientData clientData;
2619 Tcl_Interp *interp;
2620 int objc;
2621 Tcl_Obj *CONST objv[];
2622 {
2623 char *file, *widget;
2624 int linenumbers, ln, lnum, ltable_size;
2625 FILE *fp;
2626 char *ltable;
2627 struct symtab *symtab;
2628 struct linetable_entry *le;
2629 long mtime = 0;
2630 struct stat st;
2631 Tcl_DString text_cmd_1, text_cmd_2, *cur_cmd;
2632 char line[1024], line_num_buf[16];
2633 int prefix_len_1, prefix_len_2, cur_prefix_len, widget_len;
2634
2635
2636 if (objc != 4)
2637 {
2638 Tcl_WrongNumArgs(interp, 1, objv, "widget filename linenumbers");
2639 return TCL_ERROR;
2640 }
2641
2642 widget = Tcl_GetStringFromObj (objv[1], NULL);
2643 if ( Tk_NameToWindow (interp, widget, Tk_MainWindow (interp)) == NULL)
2644 {
2645 return TCL_ERROR;
2646 }
2647
2648 file = Tcl_GetStringFromObj (objv[2], NULL);
2649 Tcl_GetBooleanFromObj (interp, objv[3], &linenumbers);
2650
2651 symtab = full_lookup_symtab (file);
2652 if (!symtab)
2653 {
2654 Tcl_SetStringObj ( result_ptr->obj_ptr, "File not found in symtab", -1);
2655 fclose (fp);
2656 return TCL_ERROR;
2657 }
2658
2659 file = symtab_to_filename ( symtab );
2660 if ((fp = fopen ( file, "r" )) == NULL)
2661 {
2662 Tcl_SetStringObj ( result_ptr->obj_ptr, "Can't open file for reading", -1);
2663 return TCL_ERROR;
2664 }
2665
2666 if (stat (file, &st) < 0)
2667 {
2668 catch_errors (perror_with_name_wrapper, "gdbtk: get time stamp", "",
2669 RETURN_MASK_ALL);
2670 return TCL_ERROR;
2671 }
2672
2673 if (symtab && symtab->objfile && symtab->objfile->obfd)
2674 mtime = bfd_get_mtime(symtab->objfile->obfd);
2675 else if (exec_bfd)
2676 mtime = bfd_get_mtime(exec_bfd);
2677
2678 if (mtime && mtime < st.st_mtime)
2679 gdbtk_ignorable_warning("Source file is more recent than executable.\n");
2680
2681
2682 /* Source linenumbers don't appear to be in order, and a sort is */
2683 /* too slow so the fastest solution is just to allocate a huge */
2684 /* array and set the array entry for each linenumber */
2685
2686 ltable_size = LTABLE_SIZE;
2687 ltable = (char *)malloc (LTABLE_SIZE);
2688 if (ltable == NULL)
2689 {
2690 Tcl_SetStringObj ( result_ptr->obj_ptr, "Out of memory.", -1);
2691 fclose (fp);
2692 return TCL_ERROR;
2693 }
2694
2695 memset (ltable, 0, LTABLE_SIZE);
2696
2697 if (symtab->linetable && symtab->linetable->nitems)
2698 {
2699 le = symtab->linetable->item;
2700 for (ln = symtab->linetable->nitems ;ln > 0; ln--, le++)
2701 {
2702 lnum = le->line >> 3;
2703 if (lnum >= ltable_size)
2704 {
2705 char *new_ltable;
2706 new_ltable = (char *)realloc (ltable, ltable_size*2);
2707 memset (new_ltable + ltable_size, 0, ltable_size);
2708 ltable_size *= 2;
2709 if (new_ltable == NULL)
2710 {
2711 Tcl_SetStringObj ( result_ptr->obj_ptr, "Out of memory.", -1);
2712 free (ltable);
2713 fclose (fp);
2714 return TCL_ERROR;
2715 }
2716 ltable = new_ltable;
2717 }
2718 ltable[lnum] |= 1 << (le->line % 8);
2719 }
2720 }
2721
2722 Tcl_DStringInit(&text_cmd_1);
2723 Tcl_DStringInit(&text_cmd_2);
2724
2725 ln = 1;
2726
2727 widget_len = strlen (widget);
2728 line[0] = '\t';
2729
2730 Tcl_DStringAppend (&text_cmd_1, widget, widget_len);
2731 Tcl_DStringAppend (&text_cmd_2, widget, widget_len);
2732
2733 if (linenumbers)
2734 {
2735 Tcl_DStringAppend (&text_cmd_1, " insert end {-\t", -1);
2736 prefix_len_1 = Tcl_DStringLength(&text_cmd_1);
2737
2738 Tcl_DStringAppend (&text_cmd_2, " insert end { \t", -1);
2739 prefix_len_2 = Tcl_DStringLength(&text_cmd_2);
2740
2741 while (fgets (line + 1, 980, fp))
2742 {
2743 sprintf (line_num_buf, "%d", ln);
2744 if (ltable[ln >> 3] & (1 << (ln % 8)))
2745 {
2746 cur_cmd = &text_cmd_1;
2747 cur_prefix_len = prefix_len_1;
2748 Tcl_DStringAppend (cur_cmd, line_num_buf, -1);
2749 Tcl_DStringAppend (cur_cmd, "} break_rgn_tag", 15);
2750 }
2751 else
2752 {
2753 cur_cmd = &text_cmd_2;
2754 cur_prefix_len = prefix_len_2;
2755 Tcl_DStringAppend (cur_cmd, line_num_buf, -1);
2756 Tcl_DStringAppend (cur_cmd, "} \"\"", 4);
2757 }
2758
2759 Tcl_DStringAppendElement (cur_cmd, line);
2760 Tcl_DStringAppend (cur_cmd, " source_tag", 11);
2761
2762 Tcl_Eval(interp, Tcl_DStringValue(cur_cmd));
2763 Tcl_DStringSetLength(cur_cmd, cur_prefix_len);
2764 ln++;
2765 }
2766 }
2767 else
2768 {
2769 Tcl_DStringAppend (&text_cmd_1, " insert end {- } break_rgn_tag", -1);
2770 prefix_len_1 = Tcl_DStringLength(&text_cmd_1);
2771 Tcl_DStringAppend (&text_cmd_2, " insert end { } \"\"", -1);
2772 prefix_len_2 = Tcl_DStringLength(&text_cmd_2);
2773
2774 while (fgets (line + 1, 980, fp))
2775 {
2776 if (ltable[ln >> 3] & (1 << (ln % 8)))
2777 {
2778 cur_cmd = &text_cmd_1;
2779 cur_prefix_len = prefix_len_1;
2780 }
2781 else
2782 {
2783 cur_cmd = &text_cmd_2;
2784 cur_prefix_len = prefix_len_2;
2785 }
2786
2787 Tcl_DStringAppendElement (cur_cmd, line);
2788 Tcl_DStringAppend (cur_cmd, " source_tag", 11);
2789
2790 Tcl_Eval(interp, Tcl_DStringValue(cur_cmd));
2791 Tcl_DStringSetLength(cur_cmd, cur_prefix_len);
2792
2793 ln++;
2794 }
2795 }
2796
2797 Tcl_DStringFree (&text_cmd_1);
2798 Tcl_DStringFree (&text_cmd_2);
2799 free (ltable);
2800 fclose (fp);
2801 return TCL_OK;
2802 }
2803 \f
2804 /*
2805 * This section contains commands for manipulation of breakpoints.
2806 */
2807
2808
2809 /* set a breakpoint by source file and line number */
2810 /* flags are as follows: */
2811 /* least significant 2 bits are disposition, rest is */
2812 /* type (normally 0).
2813
2814 enum bptype {
2815 bp_breakpoint, Normal breakpoint
2816 bp_hardware_breakpoint, Hardware assisted breakpoint
2817 }
2818
2819 Disposition of breakpoint. Ie: what to do after hitting it.
2820 enum bpdisp {
2821 del, Delete it
2822 del_at_next_stop, Delete at next stop, whether hit or not
2823 disable, Disable it
2824 donttouch Leave it alone
2825 };
2826 */
2827
2828 /* This implements the tcl command "gdb_set_bp"
2829 * It sets breakpoints, and runs the Tcl command
2830 * gdbtk_tcl_breakpoint create
2831 * to register the new breakpoint with the GUI.
2832 *
2833 * Tcl Arguments:
2834 * filename: the file in which to set the breakpoint
2835 * line: the line number for the breakpoint
2836 * type: the type of the breakpoint
2837 * thread: optional thread number
2838 * Tcl Result:
2839 * The return value of the call to gdbtk_tcl_breakpoint.
2840 */
2841
2842 static int
2843 gdb_set_bp (clientData, interp, objc, objv)
2844 ClientData clientData;
2845 Tcl_Interp *interp;
2846 int objc;
2847 Tcl_Obj *CONST objv[];
2848
2849 {
2850 struct symtab_and_line sal;
2851 int line, flags, ret, thread = -1;
2852 struct breakpoint *b;
2853 char buf[64];
2854 Tcl_DString cmd;
2855
2856 if (objc != 4 && objc != 5)
2857 {
2858 Tcl_WrongNumArgs(interp, 1, objv, "filename line type [thread]");
2859 return TCL_ERROR;
2860 }
2861
2862 sal.symtab = full_lookup_symtab (Tcl_GetStringFromObj( objv[1], NULL));
2863 if (sal.symtab == NULL)
2864 return TCL_ERROR;
2865
2866 if (Tcl_GetIntFromObj( interp, objv[2], &line) == TCL_ERROR)
2867 {
2868 result_ptr->flags = GDBTK_IN_TCL_RESULT;
2869 return TCL_ERROR;
2870 }
2871
2872 if (Tcl_GetIntFromObj( interp, objv[3], &flags) == TCL_ERROR)
2873 {
2874 result_ptr->flags = GDBTK_IN_TCL_RESULT;
2875 return TCL_ERROR;
2876 }
2877
2878 if (objc == 5)
2879 {
2880 if (Tcl_GetIntFromObj( interp, objv[4], &thread) == TCL_ERROR)
2881 {
2882 result_ptr->flags = GDBTK_IN_TCL_RESULT;
2883 return TCL_ERROR;
2884 }
2885 }
2886
2887 sal.line = line;
2888 if (!find_line_pc (sal.symtab, sal.line, &sal.pc))
2889 return TCL_ERROR;
2890
2891 sal.section = find_pc_overlay (sal.pc);
2892 b = set_raw_breakpoint (sal);
2893 set_breakpoint_count (breakpoint_count + 1);
2894 b->number = breakpoint_count;
2895 b->type = flags >> 2;
2896 b->disposition = flags & 3;
2897 b->thread = thread;
2898
2899 /* FIXME: this won't work for duplicate basenames! */
2900 sprintf (buf, "%s:%d", basename (Tcl_GetStringFromObj ( objv[1], NULL)), line);
2901 b->addr_string = strsave (buf);
2902
2903 /* now send notification command back to GUI */
2904
2905 Tcl_DStringInit (&cmd);
2906
2907 Tcl_DStringAppend (&cmd, "gdbtk_tcl_breakpoint create ", -1);
2908 sprintf (buf, "%d", b->number);
2909 Tcl_DStringAppendElement(&cmd, buf);
2910 sprintf (buf, "0x%lx", (long)sal.pc);
2911 Tcl_DStringAppendElement (&cmd, buf);
2912 Tcl_DStringAppendElement (&cmd, Tcl_GetStringFromObj (objv[2], NULL));
2913 Tcl_DStringAppendElement (&cmd, Tcl_GetStringFromObj (objv[1], NULL));
2914 Tcl_DStringAppendElement (&cmd, bpdisp[b->disposition]);
2915 sprintf (buf, "%d", b->enable);
2916 Tcl_DStringAppendElement (&cmd, buf);
2917 sprintf (buf, "%d", b->thread);
2918 Tcl_DStringAppendElement (&cmd, buf);
2919
2920
2921 ret = Tcl_Eval (interp, Tcl_DStringValue (&cmd));
2922 Tcl_DStringFree (&cmd);
2923 return ret;
2924 }
2925
2926 /* This implements the tcl command "gdb_set_bp_addr"
2927 * It sets breakpoints, and runs the Tcl command
2928 * gdbtk_tcl_breakpoint create
2929 * to register the new breakpoint with the GUI.
2930 *
2931 * Tcl Arguments:
2932 * addr: the address at which to set the breakpoint
2933 * type: the type of the breakpoint
2934 * thread: optional thread number
2935 * Tcl Result:
2936 * The return value of the call to gdbtk_tcl_breakpoint.
2937 */
2938
2939 static int
2940 gdb_set_bp_addr (clientData, interp, objc, objv)
2941 ClientData clientData;
2942 Tcl_Interp *interp;
2943 int objc;
2944 Tcl_Obj *CONST objv[];
2945
2946 {
2947 struct symtab_and_line sal;
2948 int line, flags, ret, thread = -1;
2949 long addr;
2950 struct breakpoint *b;
2951 char *filename, buf[64];
2952 Tcl_DString cmd;
2953
2954 if (objc != 4 && objc != 3)
2955 {
2956 Tcl_WrongNumArgs(interp, 1, objv, "addr type ?thread?");
2957 return TCL_ERROR;
2958 }
2959
2960 if (Tcl_GetLongFromObj( interp, objv[1], &addr) == TCL_ERROR)
2961 {
2962 result_ptr->flags = GDBTK_IN_TCL_RESULT;
2963 return TCL_ERROR;
2964 }
2965
2966 if (Tcl_GetIntFromObj( interp, objv[2], &flags) == TCL_ERROR)
2967 {
2968 result_ptr->flags = GDBTK_IN_TCL_RESULT;
2969 return TCL_ERROR;
2970 }
2971
2972 if (objc == 4)
2973 {
2974 if (Tcl_GetIntFromObj( interp, objv[3], &thread) == TCL_ERROR)
2975 {
2976 result_ptr->flags = GDBTK_IN_TCL_RESULT;
2977 return TCL_ERROR;
2978 }
2979 }
2980
2981 sal = find_pc_line (addr, 0);
2982 sal.pc = addr;
2983 b = set_raw_breakpoint (sal);
2984 set_breakpoint_count (breakpoint_count + 1);
2985 b->number = breakpoint_count;
2986 b->type = flags >> 2;
2987 b->disposition = flags & 3;
2988 b->thread = thread;
2989
2990 sprintf (buf, "*(0x%lx)",addr);
2991 b->addr_string = strsave (buf);
2992
2993 /* now send notification command back to GUI */
2994
2995 Tcl_DStringInit (&cmd);
2996
2997 Tcl_DStringAppend (&cmd, "gdbtk_tcl_breakpoint create ", -1);
2998 sprintf (buf, "%d", b->number);
2999 Tcl_DStringAppendElement(&cmd, buf);
3000 sprintf (buf, "0x%lx", addr);
3001 Tcl_DStringAppendElement (&cmd, buf);
3002 sprintf (buf, "%d", b->line_number);
3003 Tcl_DStringAppendElement (&cmd, buf);
3004
3005 filename = symtab_to_filename (sal.symtab);
3006 if (filename == NULL)
3007 filename = "";
3008 Tcl_DStringAppendElement (&cmd, filename);
3009 Tcl_DStringAppendElement (&cmd, bpdisp[b->disposition]);
3010 sprintf (buf, "%d", b->enable);
3011 Tcl_DStringAppendElement (&cmd, buf);
3012 sprintf (buf, "%d", b->thread);
3013 Tcl_DStringAppendElement (&cmd, buf);
3014
3015 ret = Tcl_Eval (interp, Tcl_DStringValue (&cmd));
3016 Tcl_DStringFree (&cmd);
3017 return ret;
3018 }
3019
3020 /* This implements the tcl command "gdb_find_bp_at_line"
3021 *
3022 * Tcl Arguments:
3023 * filename: the file in which to find the breakpoint
3024 * line: the line number for the breakpoint
3025 * Tcl Result:
3026 * It returns a list of breakpoint numbers
3027 */
3028
3029 static int
3030 gdb_find_bp_at_line(clientData, interp, objc, objv)
3031 ClientData clientData;
3032 Tcl_Interp *interp;
3033 int objc;
3034 Tcl_Obj *CONST objv[];
3035
3036 {
3037 struct symtab *s;
3038 int line;
3039 struct breakpoint *b;
3040 extern struct breakpoint *breakpoint_chain;
3041
3042 if (objc != 3)
3043 {
3044 Tcl_WrongNumArgs(interp, 1, objv, "filename line");
3045 return TCL_ERROR;
3046 }
3047
3048 s = full_lookup_symtab (Tcl_GetStringFromObj( objv[1], NULL));
3049 if (s == NULL)
3050 return TCL_ERROR;
3051
3052 if (Tcl_GetIntFromObj( interp, objv[2], &line) == TCL_ERROR)
3053 {
3054 result_ptr->flags = GDBTK_IN_TCL_RESULT;
3055 return TCL_ERROR;
3056 }
3057
3058 Tcl_SetListObj (result_ptr->obj_ptr ,0 ,NULL);
3059 for (b = breakpoint_chain; b; b = b->next)
3060 if (b->line_number == line && !strcmp(b->source_file, s->filename))
3061 Tcl_ListObjAppendElement (NULL, result_ptr->obj_ptr,
3062 Tcl_NewIntObj (b->number));
3063
3064 return TCL_OK;
3065 }
3066
3067
3068 /* This implements the tcl command "gdb_find_bp_at_addr"
3069 *
3070 * Tcl Arguments:
3071 * addr: address
3072 * Tcl Result:
3073 * It returns a list of breakpoint numbers
3074 */
3075
3076 static int
3077 gdb_find_bp_at_addr(clientData, interp, objc, objv)
3078 ClientData clientData;
3079 Tcl_Interp *interp;
3080 int objc;
3081 Tcl_Obj *CONST objv[];
3082
3083 {
3084 long addr;
3085 struct breakpoint *b;
3086 extern struct breakpoint *breakpoint_chain;
3087
3088 if (objc != 2)
3089 {
3090 Tcl_WrongNumArgs(interp, 1, objv, "address");
3091 return TCL_ERROR;
3092 }
3093
3094 if (Tcl_GetLongFromObj( interp, objv[1], &addr) == TCL_ERROR)
3095 {
3096 result_ptr->flags = GDBTK_IN_TCL_RESULT;
3097 return TCL_ERROR;
3098 }
3099
3100 Tcl_SetListObj (result_ptr->obj_ptr ,0 ,NULL);
3101 for (b = breakpoint_chain; b; b = b->next)
3102 if (b->address == (CORE_ADDR)addr)
3103 Tcl_ListObjAppendElement (NULL, result_ptr->obj_ptr,
3104 Tcl_NewIntObj (b->number));
3105
3106 return TCL_OK;
3107 }
3108
3109 /* This implements the tcl command gdb_get_breakpoint_info
3110 *
3111 *
3112 * Tcl Arguments:
3113 * breakpoint_number
3114 * Tcl Result:
3115 * A list with {file, function, line_number, address, type, enabled?,
3116 * disposition, ignore_count, {list_of_commands}, thread, hit_count}
3117 */
3118
3119 static int
3120 gdb_get_breakpoint_info (clientData, interp, objc, objv)
3121 ClientData clientData;
3122 Tcl_Interp *interp;
3123 int objc;
3124 Tcl_Obj *CONST objv[];
3125 {
3126 struct symtab_and_line sal;
3127 struct command_line *cmd;
3128 int bpnum;
3129 struct breakpoint *b;
3130 extern struct breakpoint *breakpoint_chain;
3131 char *funcname, *fname, *filename;
3132 Tcl_Obj *new_obj;
3133
3134 if (objc != 2)
3135 {
3136 Tcl_SetStringObj (result_ptr->obj_ptr, "wrong number of args, should be \"breakpoint\"", -1);
3137 return TCL_ERROR;
3138 }
3139
3140 if ( Tcl_GetIntFromObj(NULL, objv[1], &bpnum) != TCL_OK)
3141 {
3142 result_ptr->flags = GDBTK_IN_TCL_RESULT;
3143 return TCL_ERROR;
3144 }
3145
3146 for (b = breakpoint_chain; b; b = b->next)
3147 if (b->number == bpnum)
3148 break;
3149
3150 if (!b || b->type != bp_breakpoint)
3151 {
3152 char err_buf[64];
3153 sprintf(err_buf, "Breakpoint #%d does not exist.", bpnum);
3154 Tcl_SetStringObj (result_ptr->obj_ptr, err_buf, -1);
3155 return TCL_ERROR;
3156 }
3157
3158 sal = find_pc_line (b->address, 0);
3159
3160 filename = symtab_to_filename (sal.symtab);
3161 if (filename == NULL)
3162 filename = "";
3163
3164 Tcl_SetListObj (result_ptr->obj_ptr ,0 ,NULL);
3165 Tcl_ListObjAppendElement (NULL, result_ptr->obj_ptr,
3166 Tcl_NewStringObj (filename, -1));
3167
3168 find_pc_partial_function (b->address, &funcname, NULL, NULL);
3169 fname = cplus_demangle (funcname, 0);
3170 if (fname)
3171 {
3172 new_obj = Tcl_NewStringObj (fname, -1);
3173 free (fname);
3174 }
3175 else
3176 new_obj = Tcl_NewStringObj (funcname, -1);
3177
3178 Tcl_ListObjAppendElement (NULL, result_ptr->obj_ptr, new_obj);
3179
3180 Tcl_ListObjAppendElement (NULL, result_ptr->obj_ptr, Tcl_NewIntObj (b->line_number));
3181 sprintf_append_element_to_obj (result_ptr->obj_ptr, "0x%lx", b->address);
3182 Tcl_ListObjAppendElement (NULL, result_ptr->obj_ptr,
3183 Tcl_NewStringObj (bptypes[b->type], -1));
3184 Tcl_ListObjAppendElement (NULL, result_ptr->obj_ptr, Tcl_NewBooleanObj(b->enable == enabled));
3185 Tcl_ListObjAppendElement (NULL, result_ptr->obj_ptr,
3186 Tcl_NewStringObj (bpdisp[b->disposition], -1));
3187 Tcl_ListObjAppendElement (NULL, result_ptr->obj_ptr, Tcl_NewIntObj (b->ignore_count));
3188
3189 new_obj = Tcl_NewObj();
3190 for (cmd = b->commands; cmd; cmd = cmd->next)
3191 Tcl_ListObjAppendElement (NULL, new_obj,
3192 Tcl_NewStringObj (cmd->line, -1));
3193 Tcl_ListObjAppendElement(NULL, result_ptr->obj_ptr, new_obj);
3194
3195 Tcl_ListObjAppendElement (NULL, result_ptr->obj_ptr,
3196 Tcl_NewStringObj (b->cond_string, -1));
3197
3198 Tcl_ListObjAppendElement (NULL, result_ptr->obj_ptr, Tcl_NewIntObj (b->thread));
3199 Tcl_ListObjAppendElement (NULL, result_ptr->obj_ptr, Tcl_NewIntObj (b->hit_count));
3200
3201 return TCL_OK;
3202 }
3203
3204
3205 /* This implements the tcl command gdb_get_breakpoint_list
3206 * It builds up a list of the current breakpoints.
3207 *
3208 * Tcl Arguments:
3209 * None.
3210 * Tcl Result:
3211 * A list of breakpoint numbers.
3212 */
3213
3214 static int
3215 gdb_get_breakpoint_list (clientData, interp, objc, objv)
3216 ClientData clientData;
3217 Tcl_Interp *interp;
3218 int objc;
3219 Tcl_Obj *CONST objv[];
3220 {
3221 struct breakpoint *b;
3222 extern struct breakpoint *breakpoint_chain;
3223 Tcl_Obj *new_obj;
3224
3225 if (objc != 1)
3226 error ("wrong number of args, none are allowed");
3227
3228 for (b = breakpoint_chain; b; b = b->next)
3229 if (b->type == bp_breakpoint)
3230 {
3231 new_obj = Tcl_NewIntObj (b->number);
3232 Tcl_ListObjAppendElement (NULL, result_ptr->obj_ptr, new_obj);
3233 }
3234
3235 return TCL_OK;
3236 }
3237 \f
3238 /* The functions in this section deal with stacks and backtraces. */
3239
3240 /* This implements the tcl command gdb_stack.
3241 * It builds up a list of stack frames.
3242 *
3243 * Tcl Arguments:
3244 * start - starting stack frame
3245 * count - number of frames to inspect
3246 * Tcl Result:
3247 * A list of function names
3248 */
3249
3250 static int
3251 gdb_stack (clientData, interp, objc, objv) ClientData clientData;
3252 Tcl_Interp *interp;
3253 int objc;
3254 Tcl_Obj *CONST objv[];
3255 {
3256 int start, count;
3257
3258 if (objc < 3)
3259 {
3260 Tcl_WrongNumArgs (interp, 1, objv, "start count");
3261 result_ptr->flags |= GDBTK_IN_TCL_RESULT;
3262 return TCL_ERROR;
3263 }
3264
3265 if (Tcl_GetIntFromObj (NULL, objv[1], &start))
3266 {
3267 result_ptr->flags |= GDBTK_IN_TCL_RESULT;
3268 return TCL_ERROR;
3269 }
3270 if (Tcl_GetIntFromObj (NULL, objv[2], &count))
3271 {
3272 result_ptr->flags |= GDBTK_IN_TCL_RESULT;
3273 return TCL_ERROR;
3274 }
3275
3276 Tcl_SetListObj (result_ptr->obj_ptr, 0, NULL);
3277
3278 if (target_has_stack)
3279 {
3280 struct frame_info *top;
3281 struct frame_info *fi;
3282
3283 /* Find the outermost frame */
3284 fi = get_current_frame ();
3285 while (fi != NULL)
3286 {
3287 top = fi;
3288 fi = get_prev_frame (fi);
3289 }
3290
3291 /* top now points to the top (outermost frame) of the
3292 stack, so point it to the requested start */
3293 start = -start;
3294 top = find_relative_frame (top, &start);
3295
3296 /* If start != 0, then we have asked to start outputting
3297 frames beyond the innermost stack frame */
3298 if (start == 0)
3299 {
3300 fi = top;
3301 while (fi && count--)
3302 {
3303 get_frame_name (interp, result_ptr->obj_ptr, fi);
3304 fi = get_next_frame (fi);
3305 }
3306 }
3307 }
3308
3309 return TCL_OK;
3310 }
3311
3312 /* A helper function for get_stack which adds information about
3313 * the stack frame FI to the caller's LIST.
3314 *
3315 * This is stolen from print_frame_info in stack.c.
3316 */
3317 static void
3318 get_frame_name (interp, list, fi)
3319 Tcl_Interp *interp;
3320 Tcl_Obj *list;
3321 struct frame_info *fi;
3322 {
3323 struct symtab_and_line sal;
3324 struct symbol *func = NULL;
3325 register char *funname = 0;
3326 enum language funlang = language_unknown;
3327 Tcl_Obj *objv[1];
3328
3329 if (frame_in_dummy (fi))
3330 {
3331 objv[0] = Tcl_NewStringObj ("<function called from gdb>\n", -1);
3332 Tcl_ListObjAppendElement (interp, list, objv[0]);
3333 return;
3334 }
3335 if (fi->signal_handler_caller)
3336 {
3337 objv[0] = Tcl_NewStringObj ("<signal handler called>\n", -1);
3338 Tcl_ListObjAppendElement (interp, list, objv[0]);
3339 return;
3340 }
3341
3342 sal =
3343 find_pc_line (fi->pc,
3344 fi->next != NULL
3345 && !fi->next->signal_handler_caller
3346 && !frame_in_dummy (fi->next));
3347
3348 func = find_pc_function (fi->pc);
3349 if (func)
3350 {
3351 struct minimal_symbol *msymbol = lookup_minimal_symbol_by_pc (fi->pc);
3352 if (msymbol != NULL
3353 && (SYMBOL_VALUE_ADDRESS (msymbol)
3354 > BLOCK_START (SYMBOL_BLOCK_VALUE (func))))
3355 {
3356 func = 0;
3357 funname = SYMBOL_NAME (msymbol);
3358 funlang = SYMBOL_LANGUAGE (msymbol);
3359 }
3360 else
3361 {
3362 funname = SYMBOL_NAME (func);
3363 funlang = SYMBOL_LANGUAGE (func);
3364 }
3365 }
3366 else
3367 {
3368 struct minimal_symbol *msymbol = lookup_minimal_symbol_by_pc (fi->pc);
3369 if (msymbol != NULL)
3370 {
3371 funname = SYMBOL_NAME (msymbol);
3372 funlang = SYMBOL_LANGUAGE (msymbol);
3373 }
3374 }
3375
3376 if (sal.symtab)
3377 {
3378 char *name = NULL;
3379
3380 if (funlang == language_cplus)
3381 name = cplus_demangle (funname, 0);
3382 if (name == NULL)
3383 name = funname;
3384
3385 objv[0] = Tcl_NewStringObj (name, -1);
3386 Tcl_ListObjAppendElement (interp, list, objv[0]);
3387 }
3388 else
3389 {
3390 #if 0
3391 /* we have no convenient way to deal with this yet... */
3392 if (fi->pc != sal.pc || !sal.symtab)
3393 {
3394 print_address_numeric (fi->pc, 1, gdb_stdout);
3395 printf_filtered (" in ");
3396 }
3397 printf_symbol_filtered (gdb_stdout, funname ? funname : "??", funlang,
3398 DMGL_ANSI);
3399 #endif
3400 objv[0] = Tcl_NewStringObj (funname != NULL ? funname : "??", -1);
3401 #ifdef PC_LOAD_SEGMENT
3402 /* If we couldn't print out function name but if can figure out what
3403 load segment this pc value is from, at least print out some info
3404 about its load segment. */
3405 if (!funname)
3406 {
3407 Tcl_AppendStringsToObj (objv[0], " from ", PC_LOAD_SEGMENT (fi->pc),
3408 (char *) NULL);
3409 }
3410 #endif
3411 #ifdef PC_SOLIB
3412 if (!funname)
3413 {
3414 char *lib = PC_SOLIB (fi->pc);
3415 if (lib)
3416 {
3417 Tcl_AppendStringsToObj (objv[0], " from ", lib, (char *) NULL);
3418 }
3419 }
3420 #endif
3421 Tcl_ListObjAppendElement (interp, list, objv[0]);
3422 }
3423 }
3424
3425 \f
3426 /*
3427 * This section contains a bunch of miscellaneous utility commands
3428 */
3429
3430 /* This implements the tcl command gdb_path_conv
3431 *
3432 * On Windows, it canonicalizes the pathname,
3433 * On Unix, it is a no op.
3434 *
3435 * Arguments:
3436 * path
3437 * Tcl Result:
3438 * The canonicalized path.
3439 */
3440
3441 static int
3442 gdb_path_conv (clientData, interp, objc, objv)
3443 ClientData clientData;
3444 Tcl_Interp *interp;
3445 int objc;
3446 Tcl_Obj *CONST objv[];
3447 {
3448 if (objc != 2)
3449 error ("wrong # args");
3450
3451 #ifdef __CYGWIN__
3452 {
3453 char pathname[256], *ptr;
3454
3455 cygwin32_conv_to_full_win32_path (Tcl_GetStringFromObj (objv[1], NULL), pathname);
3456 for (ptr = pathname; *ptr; ptr++)
3457 {
3458 if (*ptr == '\\')
3459 *ptr = '/';
3460 }
3461 Tcl_SetStringObj (result_ptr->obj_ptr, pathname, -1);
3462 }
3463 #else
3464 Tcl_SetStringObj (result_ptr->obj_ptr, Tcl_GetStringFromObj (objv[1], NULL), -1);
3465 #endif
3466
3467 return TCL_OK;
3468 }
3469 \f
3470 /*
3471 * This section has utility routines that are not Tcl commands.
3472 */
3473
3474 static int
3475 perror_with_name_wrapper (args)
3476 char * args;
3477 {
3478 perror_with_name (args);
3479 return 1;
3480 }
3481
3482 /* The lookup_symtab() in symtab.c doesn't work correctly */
3483 /* It will not work will full pathnames and if multiple */
3484 /* source files have the same basename, it will return */
3485 /* the first one instead of the correct one. This version */
3486 /* also always makes sure symtab->fullname is set. */
3487
3488 static struct symtab *
3489 full_lookup_symtab(file)
3490 char *file;
3491 {
3492 struct symtab *st;
3493 struct objfile *objfile;
3494 char *bfile, *fullname;
3495 struct partial_symtab *pt;
3496
3497 if (!file)
3498 return NULL;
3499
3500 /* first try a direct lookup */
3501 st = lookup_symtab (file);
3502 if (st)
3503 {
3504 if (!st->fullname)
3505 symtab_to_filename(st);
3506 return st;
3507 }
3508
3509 /* if the direct approach failed, try */
3510 /* looking up the basename and checking */
3511 /* all matches with the fullname */
3512 bfile = basename (file);
3513 ALL_SYMTABS (objfile, st)
3514 {
3515 if (!strcmp (bfile, basename(st->filename)))
3516 {
3517 if (!st->fullname)
3518 fullname = symtab_to_filename (st);
3519 else
3520 fullname = st->fullname;
3521
3522 if (!strcmp (file, fullname))
3523 return st;
3524 }
3525 }
3526
3527 /* still no luck? look at psymtabs */
3528 ALL_PSYMTABS (objfile, pt)
3529 {
3530 if (!strcmp (bfile, basename(pt->filename)))
3531 {
3532 st = PSYMTAB_TO_SYMTAB (pt);
3533 if (st)
3534 {
3535 fullname = symtab_to_filename (st);
3536 if (!strcmp (file, fullname))
3537 return st;
3538 }
3539 }
3540 }
3541 return NULL;
3542 }
This page took 0.169691 seconds and 4 git commands to generate.