[ARM] Fix vcmp with #0.0
[deliverable/binutils-gdb.git] / gdb / source.c
CommitLineData
c906108c 1/* List lines of source files for GDB, the GNU debugger.
ecd75fc8 2 Copyright (C) 1986-2014 Free Software Foundation, Inc.
c906108c 3
c5aa993b 4 This file is part of GDB.
c906108c 5
c5aa993b
JM
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
a9762ec7 8 the Free Software Foundation; either version 3 of the License, or
c5aa993b 9 (at your option) any later version.
c906108c 10
c5aa993b
JM
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
c906108c 15
c5aa993b 16 You should have received a copy of the GNU General Public License
a9762ec7 17 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c
SS
18
19#include "defs.h"
5af949e3 20#include "arch-utils.h"
c906108c
SS
21#include "symtab.h"
22#include "expression.h"
23#include "language.h"
24#include "command.h"
c2c6d25f 25#include "source.h"
c906108c
SS
26#include "gdbcmd.h"
27#include "frame.h"
28#include "value.h"
614c279d 29#include "filestuff.h"
c906108c
SS
30
31#include <sys/types.h>
53ce3c39 32#include <sys/stat.h>
c906108c 33#include <fcntl.h>
c906108c 34#include "gdbcore.h"
88987551 35#include "gdb_regex.h"
c906108c
SS
36#include "symfile.h"
37#include "objfiles.h"
38#include "annotate.h"
39#include "gdbtypes.h"
c5f0f3d0 40#include "linespec.h"
fe4e3eb8 41#include "filenames.h" /* for DOSish file names */
d75b5104 42#include "completer.h"
8b93c638 43#include "ui-out.h"
dbda9972 44#include "readline/readline.h"
c906108c 45
c906108c
SS
46#define OPEN_MODE (O_RDONLY | O_BINARY)
47#define FDOPEN_MODE FOPEN_RB
48
c378eb4e 49/* Prototypes for exported functions. */
c906108c 50
a14ed312 51void _initialize_source (void);
c906108c 52
c378eb4e 53/* Prototypes for local functions. */
c906108c 54
a14ed312 55static int get_filename_and_charpos (struct symtab *, char **);
c906108c 56
a14ed312 57static void reverse_search_command (char *, int);
c906108c 58
a14ed312 59static void forward_search_command (char *, int);
c906108c 60
a14ed312 61static void line_info (char *, int);
c906108c 62
a14ed312 63static void source_info (char *, int);
c906108c 64
c906108c
SS
65/* Path of directories to search for source files.
66 Same format as the PATH environment variable's value. */
67
68char *source_path;
69
2f61ca93
JB
70/* Support for source path substitution commands. */
71
72struct substitute_path_rule
73{
74 char *from;
75 char *to;
76 struct substitute_path_rule *next;
77};
78
79static struct substitute_path_rule *substitute_path_rules = NULL;
80
c906108c
SS
81/* Symtab of default file for listing lines of. */
82
0378c332 83static struct symtab *current_source_symtab;
c906108c
SS
84
85/* Default next line to list. */
86
0378c332 87static int current_source_line;
c906108c 88
6c95b8df
PA
89static struct program_space *current_source_pspace;
90
c906108c
SS
91/* Default number of lines to print with commands like "list".
92 This is based on guessing how many long (i.e. more than chars_per_line
93 characters) lines there will be. To be completely correct, "list"
94 and friends should be rewritten to count characters and see where
95 things are wrapping, but that would be a fair amount of work. */
96
97int lines_to_list = 10;
920d2a44
AC
98static void
99show_lines_to_list (struct ui_file *file, int from_tty,
100 struct cmd_list_element *c, const char *value)
101{
3e43a32a
MS
102 fprintf_filtered (file,
103 _("Number of source lines gdb "
104 "will list by default is %s.\n"),
920d2a44
AC
105 value);
106}
c906108c 107
1b56eb55
JK
108/* Possible values of 'set filename-display'. */
109static const char filename_display_basename[] = "basename";
110static const char filename_display_relative[] = "relative";
111static const char filename_display_absolute[] = "absolute";
112
113static const char *const filename_display_kind_names[] = {
114 filename_display_basename,
115 filename_display_relative,
116 filename_display_absolute,
117 NULL
118};
119
120static const char *filename_display_string = filename_display_relative;
121
122static void
123show_filename_display_string (struct ui_file *file, int from_tty,
124 struct cmd_list_element *c, const char *value)
125{
126 fprintf_filtered (file, _("Filenames are displayed as \"%s\".\n"), value);
127}
128
c906108c
SS
129/* Line number of last line printed. Default for various commands.
130 current_source_line is usually, but not always, the same as this. */
131
132static int last_line_listed;
133
5166082f
PA
134/* First line number listed by last listing command. If 0, then no
135 source lines have yet been listed since the last time the current
136 source line was changed. */
c906108c
SS
137
138static int first_line_listed;
139
140/* Saves the name of the last source file visited and a possible error code.
c378eb4e 141 Used to prevent repeating annoying "No such file or directories" msgs. */
c906108c
SS
142
143static struct symtab *last_source_visited = NULL;
144static int last_source_error = 0;
c906108c 145\f
0378c332
FN
146/* Return the first line listed by print_source_lines.
147 Used by command interpreters to request listing from
c378eb4e 148 a previous point. */
0378c332
FN
149
150int
151get_first_line_listed (void)
152{
153 return first_line_listed;
154}
155
5166082f
PA
156/* Clear line listed range. This makes the next "list" center the
157 printed source lines around the current source line. */
158
159static void
160clear_lines_listed_range (void)
161{
162 first_line_listed = 0;
163 last_line_listed = 0;
164}
165
0378c332
FN
166/* Return the default number of lines to print with commands like the
167 cli "list". The caller of print_source_lines must use this to
168 calculate the end line and use it in the call to print_source_lines
c378eb4e 169 as it does not automatically use this value. */
0378c332
FN
170
171int
172get_lines_to_list (void)
173{
174 return lines_to_list;
175}
176
177/* Return the current source file for listing and next line to list.
c378eb4e 178 NOTE: The returned sal pc and end fields are not valid. */
0378c332
FN
179
180struct symtab_and_line
181get_current_source_symtab_and_line (void)
182{
245c7f48 183 struct symtab_and_line cursal = { 0 };
0378c332 184
6c95b8df 185 cursal.pspace = current_source_pspace;
0378c332
FN
186 cursal.symtab = current_source_symtab;
187 cursal.line = current_source_line;
53cb0458
FN
188 cursal.pc = 0;
189 cursal.end = 0;
0378c332
FN
190
191 return cursal;
192}
193
53cb0458
FN
194/* If the current source file for listing is not set, try and get a default.
195 Usually called before get_current_source_symtab_and_line() is called.
0378c332 196 It may err out if a default cannot be determined.
53cb0458
FN
197 We must be cautious about where it is called, as it can recurse as the
198 process of determining a new default may call the caller!
199 Use get_current_source_symtab_and_line only to get whatever
c378eb4e 200 we have without erroring out or trying to get a default. */
0378c332 201
53cb0458
FN
202void
203set_default_source_symtab_and_line (void)
0378c332 204{
0378c332 205 if (!have_full_symbols () && !have_partial_symbols ())
8a3fe4f8 206 error (_("No symbol table is loaded. Use the \"file\" command."));
0378c332 207
c378eb4e 208 /* Pull in a current source symtab if necessary. */
0378c332
FN
209 if (current_source_symtab == 0)
210 select_source_symtab (0);
0378c332
FN
211}
212
213/* Return the current default file for listing and next line to list
214 (the returned sal pc and end fields are not valid.)
53cb0458 215 and set the current default to whatever is in SAL.
c378eb4e 216 NOTE: The returned sal pc and end fields are not valid. */
0378c332
FN
217
218struct symtab_and_line
53cb0458 219set_current_source_symtab_and_line (const struct symtab_and_line *sal)
0378c332 220{
245c7f48 221 struct symtab_and_line cursal = { 0 };
6c95b8df
PA
222
223 cursal.pspace = current_source_pspace;
0378c332
FN
224 cursal.symtab = current_source_symtab;
225 cursal.line = current_source_line;
6c95b8df
PA
226 cursal.pc = 0;
227 cursal.end = 0;
0378c332 228
6c95b8df 229 current_source_pspace = sal->pspace;
0378c332
FN
230 current_source_symtab = sal->symtab;
231 current_source_line = sal->line;
6c95b8df 232
5166082f
PA
233 /* Force the next "list" to center around the current line. */
234 clear_lines_listed_range ();
235
0378c332
FN
236 return cursal;
237}
238
c378eb4e 239/* Reset any information stored about a default file and line to print. */
0378c332
FN
240
241void
242clear_current_source_symtab_and_line (void)
243{
244 current_source_symtab = 0;
245 current_source_line = 0;
246}
c5aa993b 247
c906108c
SS
248/* Set the source file default for the "list" command to be S.
249
250 If S is NULL, and we don't have a default, find one. This
251 should only be called when the user actually tries to use the
252 default, since we produce an error if we can't find a reasonable
253 default. Also, since this can cause symbols to be read, doing it
254 before we need to would make things slower than necessary. */
255
256void
aa1ee363 257select_source_symtab (struct symtab *s)
c906108c
SS
258{
259 struct symtabs_and_lines sals;
260 struct symtab_and_line sal;
c906108c 261 struct objfile *ofp;
c5aa993b 262
c906108c
SS
263 if (s)
264 {
265 current_source_symtab = s;
266 current_source_line = 1;
6c95b8df 267 current_source_pspace = SYMTAB_PSPACE (s);
c906108c
SS
268 return;
269 }
270
271 if (current_source_symtab)
272 return;
273
274 /* Make the default place to list be the function `main'
275 if one exists. */
2570f2b7 276 if (lookup_symbol (main_name (), 0, VAR_DOMAIN, 0))
c906108c 277 {
39cf75f7
DE
278 sals = decode_line_with_current_source (main_name (),
279 DECODE_LINE_FUNFIRSTLINE);
c906108c 280 sal = sals.sals[0];
b8c9b27d 281 xfree (sals.sals);
6c95b8df 282 current_source_pspace = sal.pspace;
c906108c
SS
283 current_source_symtab = sal.symtab;
284 current_source_line = max (sal.line - (lines_to_list - 1), 1);
285 if (current_source_symtab)
c5aa993b 286 return;
c906108c 287 }
c5aa993b 288
8340a3fb
LM
289 /* Alright; find the last file in the symtab list (ignoring .h's
290 and namespace symtabs). */
c906108c
SS
291
292 current_source_line = 1;
293
6c95b8df 294 ALL_OBJFILES (ofp)
c906108c 295 {
c5aa993b 296 for (s = ofp->symtabs; s; s = s->next)
c906108c 297 {
591e78ff 298 const char *name = s->filename;
c906108c 299 int len = strlen (name);
433759f7 300
8340a3fb
LM
301 if (!(len > 2 && (strcmp (&name[len - 2], ".h") == 0
302 || strcmp (name, "<<C++-namespaces>>") == 0)))
6c95b8df
PA
303 {
304 current_source_pspace = current_program_space;
305 current_source_symtab = s;
306 }
c906108c
SS
307 }
308 }
6c95b8df 309
c906108c
SS
310 if (current_source_symtab)
311 return;
312
6c95b8df 313 ALL_OBJFILES (ofp)
ccefe4c4
TT
314 {
315 if (ofp->sf)
316 s = ofp->sf->qf->find_last_source_symtab (ofp);
317 if (s)
318 current_source_symtab = s;
319 }
c906108c
SS
320 if (current_source_symtab)
321 return;
322
8a3fe4f8 323 error (_("Can't find a default source file"));
c906108c
SS
324}
325\f
99e7ae30
DE
326/* Handler for "set directories path-list" command.
327 "set dir mumble" doesn't prepend paths, it resets the entire
328 path list. The theory is that set(show(dir)) should be a no-op. */
329
330static void
331set_directories_command (char *args, int from_tty, struct cmd_list_element *c)
332{
333 /* This is the value that was set.
334 It needs to be processed to maintain $cdir:$cwd and remove dups. */
335 char *set_path = source_path;
336
337 /* We preserve the invariant that $cdir:$cwd begins life at the end of
338 the list by calling init_source_path. If they appear earlier in
339 SET_PATH then mod_path will move them appropriately.
340 mod_path will also remove duplicates. */
341 init_source_path ();
342 if (*set_path != '\0')
343 mod_path (set_path, &source_path);
344
345 xfree (set_path);
346}
347
348/* Print the list of source directories.
349 This is used by the "ld" command, so it has the signature of a command
350 function. */
351
c906108c 352static void
99e7ae30 353show_directories_1 (char *ignore, int from_tty)
c906108c
SS
354{
355 puts_filtered ("Source directories searched: ");
356 puts_filtered (source_path);
357 puts_filtered ("\n");
358}
359
99e7ae30
DE
360/* Handler for "show directories" command. */
361
362static void
363show_directories_command (struct ui_file *file, int from_tty,
364 struct cmd_list_element *c, const char *value)
365{
366 show_directories_1 (NULL, from_tty);
367}
368
00174a86
TT
369/* Forget line positions and file names for the symtabs in a
370 particular objfile. */
371
372void
373forget_cached_source_info_for_objfile (struct objfile *objfile)
374{
375 struct symtab *s;
376
377 ALL_OBJFILE_SYMTABS (objfile, s)
378 {
379 if (s->line_charpos != NULL)
380 {
381 xfree (s->line_charpos);
382 s->line_charpos = NULL;
383 }
384 if (s->fullname != NULL)
385 {
386 xfree (s->fullname);
387 s->fullname = NULL;
388 }
00174a86 389 }
6f809020
DE
390
391 if (objfile->sf)
392 objfile->sf->qf->forget_cached_source_info (objfile);
00174a86
TT
393}
394
c906108c
SS
395/* Forget what we learned about line positions in source files, and
396 which directories contain them; must check again now since files
397 may be found in a different directory now. */
398
399void
fba45db2 400forget_cached_source_info (void)
c906108c 401{
6c95b8df 402 struct program_space *pspace;
52f0bd74 403 struct objfile *objfile;
c906108c 404
6c95b8df
PA
405 ALL_PSPACES (pspace)
406 ALL_PSPACE_OBJFILES (pspace, objfile)
c906108c 407 {
00174a86 408 forget_cached_source_info_for_objfile (objfile);
c906108c 409 }
c4e86dd4
DJ
410
411 last_source_visited = NULL;
c906108c
SS
412}
413
414void
fba45db2 415init_source_path (void)
c906108c
SS
416{
417 char buf[20];
418
08850b56 419 xsnprintf (buf, sizeof (buf), "$cdir%c$cwd", DIRNAME_SEPARATOR);
4fcf66da 420 source_path = xstrdup (buf);
c906108c
SS
421 forget_cached_source_info ();
422}
423
424/* Add zero or more directories to the front of the source path. */
c5aa993b 425
28da1647 426static void
fba45db2 427directory_command (char *dirname, int from_tty)
c906108c
SS
428{
429 dont_repeat ();
c378eb4e 430 /* FIXME, this goes to "delete dir"... */
c906108c
SS
431 if (dirname == 0)
432 {
80618b99 433 if (!from_tty || query (_("Reinitialize source path to empty? ")))
c906108c 434 {
b8c9b27d 435 xfree (source_path);
c906108c
SS
436 init_source_path ();
437 }
438 }
439 else
440 {
441 mod_path (dirname, &source_path);
c4e86dd4 442 forget_cached_source_info ();
c906108c
SS
443 }
444 if (from_tty)
99e7ae30 445 show_directories_1 ((char *) 0, from_tty);
c906108c
SS
446}
447
13d35ae5
AS
448/* Add a path given with the -d command line switch.
449 This will not be quoted so we must not treat spaces as separators. */
450
451void
452directory_switch (char *dirname, int from_tty)
453{
454 add_path (dirname, &source_path, 0);
455}
456
c906108c
SS
457/* Add zero or more directories to the front of an arbitrary path. */
458
459void
fba45db2 460mod_path (char *dirname, char **which_path)
c04e0a08
JJ
461{
462 add_path (dirname, which_path, 1);
463}
464
465/* Workhorse of mod_path. Takes an extra argument to determine
466 if dirname should be parsed for separators that indicate multiple
467 directories. This allows for interfaces that pre-parse the dirname
468 and allow specification of traditional separator characters such
c378eb4e 469 as space or tab. */
c04e0a08
JJ
470
471void
472add_path (char *dirname, char **which_path, int parse_separators)
c906108c
SS
473{
474 char *old = *which_path;
475 int prefix = 0;
e4ab2fad
JK
476 VEC (char_ptr) *dir_vec = NULL;
477 struct cleanup *back_to;
478 int ix;
479 char *name;
c906108c
SS
480
481 if (dirname == 0)
482 return;
483
13d35ae5
AS
484 if (parse_separators)
485 {
e4ab2fad
JK
486 char **argv, **argvp;
487
13d35ae5 488 /* This will properly parse the space and tab separators
e4ab2fad 489 and any quotes that may exist. */
d1a41061 490 argv = gdb_buildargv (dirname);
13d35ae5 491
e4ab2fad
JK
492 for (argvp = argv; *argvp; argvp++)
493 dirnames_to_char_ptr_vec_append (&dir_vec, *argvp);
494
495 freeargv (argv);
13d35ae5
AS
496 }
497 else
e4ab2fad
JK
498 VEC_safe_push (char_ptr, dir_vec, xstrdup (dirname));
499 back_to = make_cleanup_free_char_ptr_vec (dir_vec);
c906108c 500
e4ab2fad 501 for (ix = 0; VEC_iterate (char_ptr, dir_vec, ix, name); ++ix)
c906108c 502 {
aa1ee363 503 char *p;
c906108c
SS
504 struct stat st;
505
e4ab2fad
JK
506 /* Spaces and tabs will have been removed by buildargv().
507 NAME is the start of the directory.
508 P is the '\0' following the end. */
509 p = name + strlen (name);
13d35ae5
AS
510
511 while (!(IS_DIR_SEPARATOR (*name) && p <= name + 1) /* "/" */
c3690141 512#ifdef HAVE_DOS_BASED_FILE_SYSTEM
7be570e7 513 /* On MS-DOS and MS-Windows, h:\ is different from h: */
13d35ae5 514 && !(p == name + 3 && name[1] == ':') /* "d:/" */
7be570e7 515#endif
13d35ae5 516 && IS_DIR_SEPARATOR (p[-1]))
c378eb4e 517 /* Sigh. "foo/" => "foo" */
c906108c 518 --p;
c906108c
SS
519 *p = '\0';
520
7be570e7 521 while (p > name && p[-1] == '.')
c906108c
SS
522 {
523 if (p - name == 1)
524 {
525 /* "." => getwd (). */
526 name = current_directory;
527 goto append;
528 }
fe4e3eb8 529 else if (p > name + 1 && IS_DIR_SEPARATOR (p[-2]))
c906108c
SS
530 {
531 if (p - name == 2)
532 {
533 /* "/." => "/". */
534 *--p = '\0';
535 goto append;
536 }
537 else
538 {
539 /* "...foo/." => "...foo". */
540 p -= 2;
541 *p = '\0';
542 continue;
543 }
544 }
545 else
546 break;
547 }
548
549 if (name[0] == '~')
550 name = tilde_expand (name);
c3690141 551#ifdef HAVE_DOS_BASED_FILE_SYSTEM
fe4e3eb8 552 else if (IS_ABSOLUTE_PATH (name) && p == name + 2) /* "d:" => "d:." */
1754f103 553 name = concat (name, ".", (char *)NULL);
7be570e7 554#endif
fe4e3eb8 555 else if (!IS_ABSOLUTE_PATH (name) && name[0] != '$')
1754f103 556 name = concat (current_directory, SLASH_STRING, name, (char *)NULL);
c906108c
SS
557 else
558 name = savestring (name, p - name);
b8c9b27d 559 make_cleanup (xfree, name);
c906108c
SS
560
561 /* Unless it's a variable, check existence. */
c5aa993b
JM
562 if (name[0] != '$')
563 {
564 /* These are warnings, not errors, since we don't want a
565 non-existent directory in a .gdbinit file to stop processing
566 of the .gdbinit file.
567
568 Whether they get added to the path is more debatable. Current
569 answer is yes, in case the user wants to go make the directory
570 or whatever. If the directory continues to not exist/not be
571 a directory/etc, then having them in the path should be
572 harmless. */
573 if (stat (name, &st) < 0)
574 {
575 int save_errno = errno;
433759f7 576
c5aa993b
JM
577 fprintf_unfiltered (gdb_stderr, "Warning: ");
578 print_sys_errmsg (name, save_errno);
579 }
580 else if ((st.st_mode & S_IFMT) != S_IFDIR)
8a3fe4f8 581 warning (_("%s is not a directory."), name);
c5aa993b 582 }
c906108c
SS
583
584 append:
585 {
aa1ee363 586 unsigned int len = strlen (name);
5ee4ed9f 587 char tinybuf[2];
c906108c
SS
588
589 p = *which_path;
5e3f4fab 590 while (1)
c906108c 591 {
5e3f4fab
EBM
592 /* FIXME: we should use realpath() or its work-alike
593 before comparing. Then all the code above which
594 removes excess slashes and dots could simply go away. */
595 if (!filename_ncmp (p, name, len)
596 && (p[len] == '\0' || p[len] == DIRNAME_SEPARATOR))
597 {
598 /* Found it in the search path, remove old copy. */
599 if (p > *which_path)
600 {
601 /* Back over leading separator. */
602 p--;
603 }
604 if (prefix > p - *which_path)
605 {
606 /* Same dir twice in one cmd. */
607 goto skip_dup;
608 }
609 /* Copy from next '\0' or ':'. */
610 memmove (p, &p[len + 1], strlen (&p[len + 1]) + 1);
611 }
612 p = strchr (p, DIRNAME_SEPARATOR);
613 if (p != 0)
614 ++p;
615 else
616 break;
c906108c 617 }
c906108c 618
5ee4ed9f
JK
619 tinybuf[0] = DIRNAME_SEPARATOR;
620 tinybuf[1] = '\0';
c906108c 621
5ee4ed9f
JK
622 /* If we have already tacked on a name(s) in this command,
623 be sure they stay on the front as we tack on some
624 more. */
625 if (prefix)
626 {
627 char *temp, c;
628
629 c = old[prefix];
630 old[prefix] = '\0';
631 temp = concat (old, tinybuf, name, (char *)NULL);
632 old[prefix] = c;
633 *which_path = concat (temp, "", &old[prefix], (char *) NULL);
634 prefix = strlen (temp);
635 xfree (temp);
636 }
637 else
638 {
639 *which_path = concat (name, (old[0] ? tinybuf : old),
640 old, (char *)NULL);
641 prefix = strlen (name);
c906108c 642 }
5ee4ed9f
JK
643 xfree (old);
644 old = *which_path;
c906108c 645 }
82ae4854 646 skip_dup:
b27cf2b3 647 ;
c5aa993b 648 }
e4ab2fad
JK
649
650 do_cleanups (back_to);
c906108c
SS
651}
652
653
654static void
fba45db2 655source_info (char *ignore, int from_tty)
c906108c 656{
52f0bd74 657 struct symtab *s = current_source_symtab;
c906108c
SS
658
659 if (!s)
660 {
a3f17187 661 printf_filtered (_("No current source file.\n"));
c906108c
SS
662 return;
663 }
a3f17187 664 printf_filtered (_("Current source file is %s\n"), s->filename);
c906108c 665 if (s->dirname)
a3f17187 666 printf_filtered (_("Compilation directory is %s\n"), s->dirname);
c906108c 667 if (s->fullname)
a3f17187 668 printf_filtered (_("Located in %s\n"), s->fullname);
c906108c 669 if (s->nlines)
a3f17187 670 printf_filtered (_("Contains %d line%s.\n"), s->nlines,
c906108c
SS
671 s->nlines == 1 ? "" : "s");
672
a3f17187
AC
673 printf_filtered (_("Source language is %s.\n"), language_str (s->language));
674 printf_filtered (_("Compiled with %s debugging format.\n"), s->debugformat);
675 printf_filtered (_("%s preprocessor macro info.\n"),
919d772c 676 s->macro_table ? "Includes" : "Does not include");
c906108c 677}
c5aa993b 678\f
c906108c 679
c378eb4e 680/* Return True if the file NAME exists and is a regular file. */
1da1a192
JB
681static int
682is_regular_file (const char *name)
683{
684 struct stat st;
685 const int status = stat (name, &st);
686
687 /* Stat should never fail except when the file does not exist.
688 If stat fails, analyze the source of error and return True
689 unless the file does not exist, to avoid returning false results
c378eb4e
MS
690 on obscure systems where stat does not work as expected. */
691
1da1a192
JB
692 if (status != 0)
693 return (errno != ENOENT);
694
695 return S_ISREG (st.st_mode);
696}
c906108c 697
c906108c 698/* Open a file named STRING, searching path PATH (dir names sep by some char)
fbdebf46
JK
699 using mode MODE in the calls to open. You cannot use this function to
700 create files (O_CREAT).
c906108c 701
014d698b
EZ
702 OPTS specifies the function behaviour in specific cases.
703
704 If OPF_TRY_CWD_FIRST, try to open ./STRING before searching PATH.
c906108c 705 (ie pretend the first element of PATH is "."). This also indicates
e3e06db3
DE
706 that, unless OPF_SEARCH_IN_PATH is also specified, a slash in STRING
707 disables searching of the path (this is so that "exec-file ./foo" or
708 "symbol-file ./foo" insures that you get that particular version of
709 foo or an error message).
c906108c 710
014d698b
EZ
711 If OPTS has OPF_SEARCH_IN_PATH set, absolute names will also be
712 searched in path (we usually want this for source files but not for
713 executables).
714
e7a8479f 715 If FILENAME_OPENED is non-null, set it to a newly allocated string naming
a89f66e4 716 the actual file opened (this string will always start with a "/"). We
c906108c
SS
717 have to take special pains to avoid doubling the "/" between the directory
718 and the file, sigh! Emacs gets confuzzed by this when we print the
719 source file name!!!
720
492c0ab7
JK
721 If OPTS has OPF_RETURN_REALPATH set return FILENAME_OPENED resolved by
722 gdb_realpath. Even without OPF_RETURN_REALPATH this function still returns
723 filename starting with "/". If FILENAME_OPENED is NULL this option has no
724 effect.
1f0c4988 725
c906108c
SS
726 If a file is found, return the descriptor.
727 Otherwise, return -1, with errno set for the last name we tried to open. */
728
729/* >>>> This should only allow files of certain types,
c378eb4e 730 >>>> eg executable, non-directory. */
c906108c 731int
014d698b 732openp (const char *path, int opts, const char *string,
fbdebf46 733 int mode, char **filename_opened)
c906108c 734{
52f0bd74
AC
735 int fd;
736 char *filename;
c906108c 737 int alloclen;
e4ab2fad
JK
738 VEC (char_ptr) *dir_vec;
739 struct cleanup *back_to;
740 int ix;
741 char *dir;
c906108c 742
fbdebf46
JK
743 /* The open syscall MODE parameter is not specified. */
744 gdb_assert ((mode & O_CREAT) == 0);
f91e5ac3
JB
745 gdb_assert (string != NULL);
746
747 /* A file with an empty name cannot possibly exist. Report a failure
748 without further checking.
749
750 This is an optimization which also defends us against buggy
751 implementations of the "stat" function. For instance, we have
752 noticed that a MinGW debugger built on Windows XP 32bits crashes
753 when the debugger is started with an empty argument. */
754 if (string[0] == '\0')
755 {
756 errno = ENOENT;
757 return -1;
758 }
fbdebf46 759
c906108c
SS
760 if (!path)
761 path = ".";
762
c906108c 763 mode |= O_BINARY;
c906108c 764
014d698b 765 if ((opts & OPF_TRY_CWD_FIRST) || IS_ABSOLUTE_PATH (string))
c906108c
SS
766 {
767 int i;
072b1022
DJ
768
769 if (is_regular_file (string))
770 {
771 filename = alloca (strlen (string) + 1);
772 strcpy (filename, string);
614c279d 773 fd = gdb_open_cloexec (filename, mode, 0);
072b1022
DJ
774 if (fd >= 0)
775 goto done;
776 }
777 else
3f565f1e
DJ
778 {
779 filename = NULL;
780 fd = -1;
781 }
072b1022 782
014d698b
EZ
783 if (!(opts & OPF_SEARCH_IN_PATH))
784 for (i = 0; string[i]; i++)
785 if (IS_DIR_SEPARATOR (string[i]))
786 goto done;
c906108c
SS
787 }
788
e6d9b9c2
DE
789 /* For dos paths, d:/foo -> /foo, and d:foo -> foo. */
790 if (HAS_DRIVE_SPEC (string))
791 string = STRIP_DRIVE_SPEC (string);
792
c378eb4e 793 /* /foo => foo, to avoid multiple slashes that Emacs doesn't like. */
014d698b
EZ
794 while (IS_DIR_SEPARATOR(string[0]))
795 string++;
796
c906108c 797 /* ./foo => foo */
fe4e3eb8 798 while (string[0] == '.' && IS_DIR_SEPARATOR (string[1]))
c906108c
SS
799 string += 2;
800
801 alloclen = strlen (path) + strlen (string) + 2;
1f8cc6db 802 filename = alloca (alloclen);
c906108c 803 fd = -1;
e4ab2fad
JK
804
805 dir_vec = dirnames_to_char_ptr_vec (path);
806 back_to = make_cleanup_free_char_ptr_vec (dir_vec);
807
808 for (ix = 0; VEC_iterate (char_ptr, dir_vec, ix, dir); ++ix)
c906108c 809 {
e4ab2fad 810 size_t len = strlen (dir);
c906108c 811
e4ab2fad 812 if (strcmp (dir, "$cwd") == 0)
c5aa993b
JM
813 {
814 /* Name is $cwd -- insert current directory name instead. */
815 int newlen;
816
c378eb4e 817 /* First, realloc the filename buffer if too short. */
c5aa993b
JM
818 len = strlen (current_directory);
819 newlen = len + strlen (string) + 2;
820 if (newlen > alloclen)
821 {
822 alloclen = newlen;
1f8cc6db 823 filename = alloca (alloclen);
c5aa993b
JM
824 }
825 strcpy (filename, current_directory);
826 }
ebd86fb5
TJB
827 else if (strchr(dir, '~'))
828 {
829 /* See whether we need to expand the tilde. */
830 int newlen;
831 char *tilde_expanded;
832
833 tilde_expanded = tilde_expand (dir);
834
835 /* First, realloc the filename buffer if too short. */
836 len = strlen (tilde_expanded);
837 newlen = len + strlen (string) + 2;
838 if (newlen > alloclen)
839 {
840 alloclen = newlen;
841 filename = alloca (alloclen);
842 }
843 strcpy (filename, tilde_expanded);
844 xfree (tilde_expanded);
845 }
c5aa993b
JM
846 else
847 {
848 /* Normal file name in path -- just use it. */
e4ab2fad 849 strcpy (filename, dir);
08001717
DE
850
851 /* Don't search $cdir. It's also a magic path like $cwd, but we
852 don't have enough information to expand it. The user *could*
853 have an actual directory named '$cdir' but handling that would
854 be confusing, it would mean different things in different
855 contexts. If the user really has '$cdir' one can use './$cdir'.
856 We can get $cdir when loading scripts. When loading source files
857 $cdir must have already been expanded to the correct value. */
e4ab2fad 858 if (strcmp (dir, "$cdir") == 0)
08001717 859 continue;
c906108c 860 }
c906108c 861
c378eb4e 862 /* Remove trailing slashes. */
fe4e3eb8 863 while (len > 0 && IS_DIR_SEPARATOR (filename[len - 1]))
c906108c
SS
864 filename[--len] = 0;
865
c5aa993b 866 strcat (filename + len, SLASH_STRING);
c906108c
SS
867 strcat (filename, string);
868
1da1a192 869 if (is_regular_file (filename))
5e987968 870 {
614c279d 871 fd = gdb_open_cloexec (filename, mode, 0);
5e987968
AS
872 if (fd >= 0)
873 break;
874 }
c906108c
SS
875 }
876
e4ab2fad
JK
877 do_cleanups (back_to);
878
c5aa993b 879done:
c906108c
SS
880 if (filename_opened)
881 {
f5b95b50 882 /* If a file was opened, canonicalize its filename. */
c906108c 883 if (fd < 0)
1f8cc6db 884 *filename_opened = NULL;
04affae3
JK
885 else if ((opts & OPF_RETURN_REALPATH) != 0)
886 *filename_opened = gdb_realpath (filename);
c906108c 887 else
04affae3 888 *filename_opened = gdb_abspath (filename);
c906108c 889 }
c906108c
SS
890
891 return fd;
892}
893
c5aa993b 894
c906108c
SS
895/* This is essentially a convenience, for clients that want the behaviour
896 of openp, using source_path, but that really don't want the file to be
897 opened but want instead just to know what the full pathname is (as
898 qualified against source_path).
899
900 The current working directory is searched first.
901
902 If the file was found, this function returns 1, and FULL_PATHNAME is
903 set to the fully-qualified pathname.
904
5e987968 905 Else, this functions returns 0, and FULL_PATHNAME is set to NULL. */
c906108c 906int
24f81874 907source_full_path_of (const char *filename, char **full_pathname)
c906108c 908{
c5aa993b 909 int fd;
c906108c 910
492c0ab7
JK
911 fd = openp (source_path,
912 OPF_TRY_CWD_FIRST | OPF_SEARCH_IN_PATH | OPF_RETURN_REALPATH,
913 filename, O_RDONLY, full_pathname);
c906108c
SS
914 if (fd < 0)
915 {
916 *full_pathname = NULL;
917 return 0;
918 }
919
920 close (fd);
921 return 1;
922}
923
2f61ca93
JB
924/* Return non-zero if RULE matches PATH, that is if the rule can be
925 applied to PATH. */
926
927static int
928substitute_path_rule_matches (const struct substitute_path_rule *rule,
929 const char *path)
930{
931 const int from_len = strlen (rule->from);
932 const int path_len = strlen (path);
2f61ca93
JB
933
934 if (path_len < from_len)
935 return 0;
936
937 /* The substitution rules are anchored at the start of the path,
486ef3b9 938 so the path should start with rule->from. */
2f61ca93 939
486ef3b9 940 if (filename_ncmp (path, rule->from, from_len) != 0)
2f61ca93
JB
941 return 0;
942
943 /* Make sure that the region in the path that matches the substitution
944 rule is immediately followed by a directory separator (or the end of
945 string character). */
230cd560 946
2f61ca93
JB
947 if (path[from_len] != '\0' && !IS_DIR_SEPARATOR (path[from_len]))
948 return 0;
949
950 return 1;
951}
952
953/* Find the substitute-path rule that applies to PATH and return it.
954 Return NULL if no rule applies. */
955
956static struct substitute_path_rule *
957get_substitute_path_rule (const char *path)
958{
959 struct substitute_path_rule *rule = substitute_path_rules;
960
961 while (rule != NULL && !substitute_path_rule_matches (rule, path))
962 rule = rule->next;
963
964 return rule;
965}
966
967/* If the user specified a source path substitution rule that applies
968 to PATH, then apply it and return the new path. This new path must
c378eb4e 969 be deallocated afterwards.
2f61ca93
JB
970
971 Return NULL if no substitution rule was specified by the user,
972 or if no rule applied to the given PATH. */
973
fbd9ab74 974char *
2f61ca93
JB
975rewrite_source_path (const char *path)
976{
977 const struct substitute_path_rule *rule = get_substitute_path_rule (path);
978 char *new_path;
979 int from_len;
980
981 if (rule == NULL)
982 return NULL;
983
984 from_len = strlen (rule->from);
985
986 /* Compute the rewritten path and return it. */
987
988 new_path =
989 (char *) xmalloc (strlen (path) + 1 + strlen (rule->to) - from_len);
990 strcpy (new_path, rule->to);
991 strcat (new_path, path + from_len);
992
993 return new_path;
994}
995
ccefe4c4 996int
e2357892 997find_and_open_source (const char *filename,
5e987968
AS
998 const char *dirname,
999 char **fullname)
c906108c
SS
1000{
1001 char *path = source_path;
31889e00 1002 const char *p;
c906108c 1003 int result;
795d915c 1004 struct cleanup *cleanup;
c906108c 1005
c378eb4e 1006 /* Quick way out if we already know its full name. */
2f61ca93 1007
57c22c6c 1008 if (*fullname)
c906108c 1009 {
2f61ca93
JB
1010 /* The user may have requested that source paths be rewritten
1011 according to substitution rules he provided. If a substitution
1012 rule applies to this path, then apply it. */
1013 char *rewritten_fullname = rewrite_source_path (*fullname);
1014
1015 if (rewritten_fullname != NULL)
1016 {
1017 xfree (*fullname);
1018 *fullname = rewritten_fullname;
1019 }
1020
614c279d 1021 result = gdb_open_cloexec (*fullname, OPEN_MODE, 0);
c906108c 1022 if (result >= 0)
bc3aa6c3 1023 {
f5b95b50 1024 char *lpath = gdb_realpath (*fullname);
bc3aa6c3
DE
1025
1026 xfree (*fullname);
1027 *fullname = lpath;
1028 return result;
1029 }
1030
c378eb4e 1031 /* Didn't work -- free old one, try again. */
2dc74dc1 1032 xfree (*fullname);
57c22c6c 1033 *fullname = NULL;
c906108c
SS
1034 }
1035
795d915c
TT
1036 cleanup = make_cleanup (null_cleanup, NULL);
1037
57c22c6c 1038 if (dirname != NULL)
c906108c 1039 {
2f61ca93
JB
1040 /* If necessary, rewrite the compilation directory name according
1041 to the source path substitution rules specified by the user. */
1042
1043 char *rewritten_dirname = rewrite_source_path (dirname);
1044
1045 if (rewritten_dirname != NULL)
1046 {
1047 make_cleanup (xfree, rewritten_dirname);
1048 dirname = rewritten_dirname;
1049 }
1050
c378eb4e
MS
1051 /* Replace a path entry of $cdir with the compilation directory
1052 name. */
c906108c
SS
1053#define cdir_len 5
1054 /* We cast strstr's result in case an ANSIhole has made it const,
c378eb4e 1055 which produces a "required warning" when assigned to a nonconst. */
c5aa993b 1056 p = (char *) strstr (source_path, "$cdir");
c906108c 1057 if (p && (p == path || p[-1] == DIRNAME_SEPARATOR)
c5aa993b 1058 && (p[cdir_len] == DIRNAME_SEPARATOR || p[cdir_len] == '\0'))
c906108c
SS
1059 {
1060 int len;
1061
1062 path = (char *)
57c22c6c 1063 alloca (strlen (source_path) + 1 + strlen (dirname) + 1);
c906108c 1064 len = p - source_path;
c5aa993b 1065 strncpy (path, source_path, len); /* Before $cdir */
3e43a32a
MS
1066 strcpy (path + len, dirname); /* new stuff */
1067 strcat (path + len, source_path + len + cdir_len); /* After
1068 $cdir */
c906108c
SS
1069 }
1070 }
8da2a1df
DJ
1071
1072 if (IS_ABSOLUTE_PATH (filename))
56163ce1 1073 {
8da2a1df
DJ
1074 /* If filename is absolute path, try the source path
1075 substitution on it. */
56163ce1
JB
1076 char *rewritten_filename = rewrite_source_path (filename);
1077
1078 if (rewritten_filename != NULL)
1079 {
1080 make_cleanup (xfree, rewritten_filename);
1081 filename = rewritten_filename;
1082 }
1083 }
c906108c 1084
492c0ab7
JK
1085 result = openp (path, OPF_SEARCH_IN_PATH | OPF_RETURN_REALPATH, filename,
1086 OPEN_MODE, fullname);
c906108c
SS
1087 if (result < 0)
1088 {
c378eb4e 1089 /* Didn't work. Try using just the basename. */
57c22c6c
BR
1090 p = lbasename (filename);
1091 if (p != filename)
492c0ab7
JK
1092 result = openp (path, OPF_SEARCH_IN_PATH | OPF_RETURN_REALPATH, p,
1093 OPEN_MODE, fullname);
c906108c 1094 }
c906108c 1095
795d915c 1096 do_cleanups (cleanup);
c906108c
SS
1097 return result;
1098}
1099
57c22c6c
BR
1100/* Open a source file given a symtab S. Returns a file descriptor or
1101 negative number for error.
1102
c378eb4e 1103 This function is a convience function to find_and_open_source. */
57c22c6c
BR
1104
1105int
1106open_source_file (struct symtab *s)
1107{
5e987968
AS
1108 if (!s)
1109 return -1;
57c22c6c 1110
e2357892 1111 return find_and_open_source (s->filename, s->dirname, &s->fullname);
57c22c6c
BR
1112}
1113
1114/* Finds the fullname that a symtab represents.
c906108c 1115
f35a17b5
JK
1116 This functions finds the fullname and saves it in s->fullname.
1117 It will also return the value.
57c22c6c
BR
1118
1119 If this function fails to find the file that this symtab represents,
f35a17b5
JK
1120 the expected fullname is used. Therefore the files does not have to
1121 exist. */
256f06f3 1122
0b0865da 1123const char *
57c22c6c 1124symtab_to_fullname (struct symtab *s)
c906108c 1125{
256f06f3
DE
1126 /* Use cached copy if we have it.
1127 We rely on forget_cached_source_info being called appropriately
1128 to handle cases like the file being moved. */
f35a17b5 1129 if (s->fullname == NULL)
5e987968 1130 {
f35a17b5
JK
1131 int fd = find_and_open_source (s->filename, s->dirname, &s->fullname);
1132
1133 if (fd >= 0)
1134 close (fd);
f35a17b5 1135 else
f0a4b570
JK
1136 {
1137 char *fullname;
1138 struct cleanup *back_to;
1139
1140 /* rewrite_source_path would be applied by find_and_open_source, we
1141 should report the pathname where GDB tried to find the file. */
1142
57b3c00c 1143 if (s->dirname == NULL || IS_ABSOLUTE_PATH (s->filename))
f0a4b570
JK
1144 fullname = xstrdup (s->filename);
1145 else
1146 fullname = concat (s->dirname, SLASH_STRING, s->filename, NULL);
1147
1148 back_to = make_cleanup (xfree, fullname);
1149 s->fullname = rewrite_source_path (fullname);
1150 if (s->fullname == NULL)
1151 s->fullname = xstrdup (fullname);
1152 do_cleanups (back_to);
1153 }
f35a17b5 1154 }
c906108c 1155
f35a17b5 1156 return s->fullname;
57c22c6c 1157}
1b56eb55
JK
1158
1159/* See commentary in source.h. */
1160
1161const char *
1162symtab_to_filename_for_display (struct symtab *symtab)
1163{
1164 if (filename_display_string == filename_display_basename)
1165 return lbasename (symtab->filename);
1166 else if (filename_display_string == filename_display_absolute)
1167 return symtab_to_fullname (symtab);
1168 else if (filename_display_string == filename_display_relative)
1169 return symtab->filename;
1170 else
1171 internal_error (__FILE__, __LINE__, _("invalid filename_display_string"));
1172}
5e987968 1173\f
c906108c
SS
1174/* Create and initialize the table S->line_charpos that records
1175 the positions of the lines in the source file, which is assumed
1176 to be open on descriptor DESC.
1177 All set S->nlines to the number of such lines. */
1178
1179void
fba45db2 1180find_source_lines (struct symtab *s, int desc)
c906108c
SS
1181{
1182 struct stat st;
52f0bd74 1183 char *data, *p, *end;
c906108c
SS
1184 int nlines = 0;
1185 int lines_allocated = 1000;
1186 int *line_charpos;
1187 long mtime = 0;
1188 int size;
1189
be8ca11b 1190 gdb_assert (s);
7936743b 1191 line_charpos = (int *) xmalloc (lines_allocated * sizeof (int));
c906108c 1192 if (fstat (desc, &st) < 0)
05cba821 1193 perror_with_name (symtab_to_filename_for_display (s));
c906108c 1194
be8ca11b 1195 if (s->objfile && s->objfile->obfd)
c04ea773 1196 mtime = s->objfile->mtime;
c906108c 1197 else if (exec_bfd)
c04ea773 1198 mtime = exec_bfd_mtime;
c906108c
SS
1199
1200 if (mtime && mtime < st.st_mtime)
8a3fe4f8 1201 warning (_("Source file is more recent than executable."));
c906108c 1202
c906108c
SS
1203 {
1204 struct cleanup *old_cleanups;
1205
1206 /* st_size might be a large type, but we only support source files whose
1207 size fits in an int. */
1208 size = (int) st.st_size;
1209
1210 /* Use malloc, not alloca, because this may be pretty large, and we may
1211 run into various kinds of limits on stack size. */
1212 data = (char *) xmalloc (size);
b8c9b27d 1213 old_cleanups = make_cleanup (xfree, data);
c906108c
SS
1214
1215 /* Reassign `size' to result of read for systems where \r\n -> \n. */
1216 size = myread (desc, data, size);
1217 if (size < 0)
05cba821 1218 perror_with_name (symtab_to_filename_for_display (s));
c906108c
SS
1219 end = data + size;
1220 p = data;
1221 line_charpos[0] = 0;
1222 nlines = 1;
1223 while (p != end)
1224 {
1225 if (*p++ == '\n'
c5aa993b 1226 /* A newline at the end does not start a new line. */
c906108c
SS
1227 && p != end)
1228 {
1229 if (nlines == lines_allocated)
1230 {
1231 lines_allocated *= 2;
1232 line_charpos =
0efffb96
AC
1233 (int *) xrealloc ((char *) line_charpos,
1234 sizeof (int) * lines_allocated);
c906108c
SS
1235 }
1236 line_charpos[nlines++] = p - data;
1237 }
1238 }
1239 do_cleanups (old_cleanups);
1240 }
d4d4db8a 1241
c906108c
SS
1242 s->nlines = nlines;
1243 s->line_charpos =
0efffb96 1244 (int *) xrealloc ((char *) line_charpos, nlines * sizeof (int));
c906108c
SS
1245
1246}
1247
c906108c 1248\f
c5aa993b 1249
c906108c
SS
1250/* Get full pathname and line number positions for a symtab.
1251 Return nonzero if line numbers may have changed.
1252 Set *FULLNAME to actual name of the file as found by `openp',
1253 or to 0 if the file is not found. */
1254
1255static int
fba45db2 1256get_filename_and_charpos (struct symtab *s, char **fullname)
c906108c 1257{
52f0bd74 1258 int desc, linenums_changed = 0;
9fe4a216 1259 struct cleanup *cleanups;
c5aa993b 1260
c906108c
SS
1261 desc = open_source_file (s);
1262 if (desc < 0)
1263 {
1264 if (fullname)
1265 *fullname = NULL;
1266 return 0;
c5aa993b 1267 }
9fe4a216 1268 cleanups = make_cleanup_close (desc);
c906108c
SS
1269 if (fullname)
1270 *fullname = s->fullname;
c5aa993b
JM
1271 if (s->line_charpos == 0)
1272 linenums_changed = 1;
1273 if (linenums_changed)
1274 find_source_lines (s, desc);
9fe4a216 1275 do_cleanups (cleanups);
c906108c
SS
1276 return linenums_changed;
1277}
1278
1279/* Print text describing the full name of the source file S
1280 and the line number LINE and its corresponding character position.
1281 The text starts with two Ctrl-z so that the Emacs-GDB interface
1282 can easily find it.
1283
1284 MID_STATEMENT is nonzero if the PC is not at the beginning of that line.
1285
1286 Return 1 if successful, 0 if could not find the file. */
1287
1288int
fba45db2
KB
1289identify_source_line (struct symtab *s, int line, int mid_statement,
1290 CORE_ADDR pc)
c906108c
SS
1291{
1292 if (s->line_charpos == 0)
c5aa993b 1293 get_filename_and_charpos (s, (char **) NULL);
c906108c
SS
1294 if (s->fullname == 0)
1295 return 0;
1296 if (line > s->nlines)
1297 /* Don't index off the end of the line_charpos array. */
1298 return 0;
1299 annotate_source (s->fullname, line, s->line_charpos[line - 1],
5af949e3 1300 mid_statement, get_objfile_arch (s->objfile), pc);
c906108c
SS
1301
1302 current_source_line = line;
c906108c 1303 current_source_symtab = s;
5166082f 1304 clear_lines_listed_range ();
c906108c
SS
1305 return 1;
1306}
c906108c 1307\f
c5aa993b 1308
c906108c 1309/* Print source lines from the file of symtab S,
c378eb4e 1310 starting with line number LINE and stopping before line number STOPLINE. */
c906108c
SS
1311
1312static void
dfaae886
MM
1313print_source_lines_base (struct symtab *s, int line, int stopline,
1314 enum print_source_lines_flags flags)
c906108c 1315{
52f0bd74
AC
1316 int c;
1317 int desc;
f4dfd9c0 1318 int noprint = 0;
52f0bd74 1319 FILE *stream;
c906108c 1320 int nlines = stopline - line;
7c8a8b04 1321 struct cleanup *cleanup;
79a45e25 1322 struct ui_out *uiout = current_uiout;
c906108c 1323
c378eb4e 1324 /* Regardless of whether we can open the file, set current_source_symtab. */
c906108c
SS
1325 current_source_symtab = s;
1326 current_source_line = line;
1327 first_line_listed = line;
1328
3e43a32a 1329 /* If printing of source lines is disabled, just print file and line
c378eb4e 1330 number. */
8b93c638
JM
1331 if (ui_out_test_flags (uiout, ui_source_list))
1332 {
c378eb4e 1333 /* Only prints "No such file or directory" once. */
c5aa993b
JM
1334 if ((s != last_source_visited) || (!last_source_error))
1335 {
1336 last_source_visited = s;
1337 desc = open_source_file (s);
1338 }
1339 else
1340 {
1341 desc = last_source_error;
dfaae886 1342 flags |= PRINT_SOURCE_LINES_NOERROR;
c5aa993b 1343 }
8b93c638
JM
1344 }
1345 else
1346 {
f4dfd9c0 1347 desc = last_source_error;
dfaae886 1348 flags |= PRINT_SOURCE_LINES_NOERROR;
f4dfd9c0 1349 noprint = 1;
8b93c638 1350 }
c906108c 1351
f4dfd9c0 1352 if (desc < 0 || noprint)
c906108c
SS
1353 {
1354 last_source_error = desc;
1355
dfaae886 1356 if (!(flags & PRINT_SOURCE_LINES_NOERROR))
c5aa993b 1357 {
05cba821
JK
1358 const char *filename = symtab_to_filename_for_display (s);
1359 int len = strlen (filename) + 100;
08850b56
PM
1360 char *name = alloca (len);
1361
05cba821 1362 xsnprintf (name, len, "%d\t%s", line, filename);
c906108c
SS
1363 print_sys_errmsg (name, errno);
1364 }
1365 else
fc0ae648
AB
1366 {
1367 ui_out_field_int (uiout, "line", line);
1368 ui_out_text (uiout, "\tin ");
56d397a3 1369
23eb71e4
JK
1370 /* CLI expects only the "file" field. TUI expects only the
1371 "fullname" field (and TUI does break if "file" is printed).
1372 MI expects both fields. ui_source_list is set only for CLI,
1373 not for TUI. */
1374 if (ui_out_is_mi_like_p (uiout)
1375 || ui_out_test_flags (uiout, ui_source_list))
1376 ui_out_field_string (uiout, "file",
1377 symtab_to_filename_for_display (s));
56d397a3
JK
1378 if (ui_out_is_mi_like_p (uiout)
1379 || !ui_out_test_flags (uiout, ui_source_list))
8f1b8b82
JK
1380 {
1381 const char *s_fullname = symtab_to_fullname (s);
1382 char *local_fullname;
1383
1384 /* ui_out_field_string may free S_FULLNAME by calling
1385 open_source_file for it again. See e.g.,
1386 tui_field_string->tui_show_source. */
1387 local_fullname = alloca (strlen (s_fullname) + 1);
1388 strcpy (local_fullname, s_fullname);
1389
1390 ui_out_field_string (uiout, "fullname", local_fullname);
1391 }
23eb71e4 1392
fc0ae648
AB
1393 ui_out_text (uiout, "\n");
1394 }
c906108c
SS
1395
1396 return;
1397 }
1398
1399 last_source_error = 0;
1400
1401 if (s->line_charpos == 0)
1402 find_source_lines (s, desc);
1403
1404 if (line < 1 || line > s->nlines)
1405 {
1406 close (desc);
8a3fe4f8 1407 error (_("Line number %d out of range; %s has %d lines."),
05cba821 1408 line, symtab_to_filename_for_display (s), s->nlines);
c906108c
SS
1409 }
1410
1411 if (lseek (desc, s->line_charpos[line - 1], 0) < 0)
1412 {
1413 close (desc);
05cba821 1414 perror_with_name (symtab_to_filename_for_display (s));
c906108c
SS
1415 }
1416
1417 stream = fdopen (desc, FDOPEN_MODE);
1418 clearerr (stream);
7c8a8b04 1419 cleanup = make_cleanup_fclose (stream);
c906108c
SS
1420
1421 while (nlines-- > 0)
1422 {
8b93c638
JM
1423 char buf[20];
1424
1425 c = fgetc (stream);
1426 if (c == EOF)
1427 break;
1428 last_line_listed = current_source_line;
4cd29721
MM
1429 if (flags & PRINT_SOURCE_LINES_FILENAME)
1430 {
05cba821 1431 ui_out_text (uiout, symtab_to_filename_for_display (s));
4cd29721
MM
1432 ui_out_text (uiout, ":");
1433 }
08850b56 1434 xsnprintf (buf, sizeof (buf), "%d\t", current_source_line++);
8b93c638
JM
1435 ui_out_text (uiout, buf);
1436 do
1437 {
1438 if (c < 040 && c != '\t' && c != '\n' && c != '\r')
1439 {
08850b56 1440 xsnprintf (buf, sizeof (buf), "^%c", c + 0100);
8b93c638
JM
1441 ui_out_text (uiout, buf);
1442 }
1443 else if (c == 0177)
1444 ui_out_text (uiout, "^?");
8b93c638
JM
1445 else if (c == '\r')
1446 {
1447 /* Skip a \r character, but only before a \n. */
1448 int c1 = fgetc (stream);
1449
1450 if (c1 != '\n')
1451 printf_filtered ("^%c", c + 0100);
1452 if (c1 != EOF)
1453 ungetc (c1, stream);
1454 }
8b93c638
JM
1455 else
1456 {
08850b56 1457 xsnprintf (buf, sizeof (buf), "%c", c);
8b93c638
JM
1458 ui_out_text (uiout, buf);
1459 }
1460 }
1461 while (c != '\n' && (c = fgetc (stream)) >= 0);
c906108c
SS
1462 }
1463
7c8a8b04 1464 do_cleanups (cleanup);
c906108c
SS
1465}
1466\f
1467/* Show source lines from the file of symtab S, starting with line
f132ba9d 1468 number LINE and stopping before line number STOPLINE. If this is
c906108c 1469 not the command line version, then the source is shown in the source
c378eb4e 1470 window otherwise it is simply printed. */
c906108c 1471
c5aa993b 1472void
dfaae886
MM
1473print_source_lines (struct symtab *s, int line, int stopline,
1474 enum print_source_lines_flags flags)
c906108c 1475{
dfaae886 1476 print_source_lines_base (s, line, stopline, flags);
c906108c
SS
1477}
1478\f
c906108c
SS
1479/* Print info on range of pc's in a specified line. */
1480
1481static void
fba45db2 1482line_info (char *arg, int from_tty)
c906108c
SS
1483{
1484 struct symtabs_and_lines sals;
1485 struct symtab_and_line sal;
1486 CORE_ADDR start_pc, end_pc;
1487 int i;
f8eba3c6 1488 struct cleanup *cleanups;
c906108c 1489
fe39c653 1490 init_sal (&sal); /* initialize to zeroes */
c906108c
SS
1491
1492 if (arg == 0)
1493 {
1494 sal.symtab = current_source_symtab;
f8eba3c6 1495 sal.pspace = current_program_space;
5166082f
PA
1496 if (last_line_listed != 0)
1497 sal.line = last_line_listed;
1498 else
1499 sal.line = current_source_line;
1500
c906108c
SS
1501 sals.nelts = 1;
1502 sals.sals = (struct symtab_and_line *)
1503 xmalloc (sizeof (struct symtab_and_line));
1504 sals.sals[0] = sal;
1505 }
1506 else
1507 {
39cf75f7 1508 sals = decode_line_with_last_displayed (arg, DECODE_LINE_LIST_MODE);
c5aa993b 1509
c906108c
SS
1510 dont_repeat ();
1511 }
1512
f8eba3c6
TT
1513 cleanups = make_cleanup (xfree, sals.sals);
1514
c906108c 1515 /* C++ More than one line may have been specified, as when the user
c378eb4e 1516 specifies an overloaded function name. Print info on them all. */
c906108c
SS
1517 for (i = 0; i < sals.nelts; i++)
1518 {
1519 sal = sals.sals[i];
f8eba3c6
TT
1520 if (sal.pspace != current_program_space)
1521 continue;
c5aa993b 1522
c906108c
SS
1523 if (sal.symtab == 0)
1524 {
5af949e3
UW
1525 struct gdbarch *gdbarch = get_current_arch ();
1526
a3f17187 1527 printf_filtered (_("No line number information available"));
c906108c
SS
1528 if (sal.pc != 0)
1529 {
1530 /* This is useful for "info line *0x7f34". If we can't tell the
c5aa993b
JM
1531 user about a source line, at least let them have the symbolic
1532 address. */
c906108c
SS
1533 printf_filtered (" for address ");
1534 wrap_here (" ");
5af949e3 1535 print_address (gdbarch, sal.pc, gdb_stdout);
c906108c
SS
1536 }
1537 else
1538 printf_filtered (".");
1539 printf_filtered ("\n");
1540 }
1541 else if (sal.line > 0
1542 && find_line_pc_range (sal, &start_pc, &end_pc))
1543 {
5af949e3
UW
1544 struct gdbarch *gdbarch = get_objfile_arch (sal.symtab->objfile);
1545
c906108c
SS
1546 if (start_pc == end_pc)
1547 {
1548 printf_filtered ("Line %d of \"%s\"",
05cba821
JK
1549 sal.line,
1550 symtab_to_filename_for_display (sal.symtab));
c906108c
SS
1551 wrap_here (" ");
1552 printf_filtered (" is at address ");
5af949e3 1553 print_address (gdbarch, start_pc, gdb_stdout);
c906108c
SS
1554 wrap_here (" ");
1555 printf_filtered (" but contains no code.\n");
1556 }
1557 else
1558 {
1559 printf_filtered ("Line %d of \"%s\"",
05cba821
JK
1560 sal.line,
1561 symtab_to_filename_for_display (sal.symtab));
c906108c
SS
1562 wrap_here (" ");
1563 printf_filtered (" starts at address ");
5af949e3 1564 print_address (gdbarch, start_pc, gdb_stdout);
c906108c
SS
1565 wrap_here (" ");
1566 printf_filtered (" and ends at ");
5af949e3 1567 print_address (gdbarch, end_pc, gdb_stdout);
c906108c
SS
1568 printf_filtered (".\n");
1569 }
1570
1571 /* x/i should display this line's code. */
5af949e3 1572 set_next_address (gdbarch, start_pc);
c906108c
SS
1573
1574 /* Repeating "info line" should do the following line. */
1575 last_line_listed = sal.line + 1;
1576
1577 /* If this is the only line, show the source code. If it could
1578 not find the file, don't do anything special. */
1579 if (annotation_level && sals.nelts == 1)
1580 identify_source_line (sal.symtab, sal.line, 0, start_pc);
1581 }
1582 else
1583 /* Is there any case in which we get here, and have an address
1584 which the user would want to see? If we have debugging symbols
1585 and no line numbers? */
a3f17187 1586 printf_filtered (_("Line number %d is out of range for \"%s\".\n"),
05cba821 1587 sal.line, symtab_to_filename_for_display (sal.symtab));
c906108c 1588 }
f8eba3c6 1589 do_cleanups (cleanups);
c906108c
SS
1590}
1591\f
1592/* Commands to search the source file for a regexp. */
1593
c906108c 1594static void
fba45db2 1595forward_search_command (char *regex, int from_tty)
c906108c 1596{
52f0bd74
AC
1597 int c;
1598 int desc;
1599 FILE *stream;
c906108c
SS
1600 int line;
1601 char *msg;
9fe4a216 1602 struct cleanup *cleanups;
c906108c 1603
c906108c 1604 line = last_line_listed + 1;
c906108c
SS
1605
1606 msg = (char *) re_comp (regex);
1607 if (msg)
8a3fe4f8 1608 error (("%s"), msg);
c906108c
SS
1609
1610 if (current_source_symtab == 0)
1611 select_source_symtab (0);
1612
1613 desc = open_source_file (current_source_symtab);
1614 if (desc < 0)
05cba821 1615 perror_with_name (symtab_to_filename_for_display (current_source_symtab));
9fe4a216 1616 cleanups = make_cleanup_close (desc);
c906108c
SS
1617
1618 if (current_source_symtab->line_charpos == 0)
1619 find_source_lines (current_source_symtab, desc);
1620
1621 if (line < 1 || line > current_source_symtab->nlines)
9fe4a216 1622 error (_("Expression not found"));
c906108c
SS
1623
1624 if (lseek (desc, current_source_symtab->line_charpos[line - 1], 0) < 0)
05cba821 1625 perror_with_name (symtab_to_filename_for_display (current_source_symtab));
c906108c 1626
9fe4a216 1627 discard_cleanups (cleanups);
c906108c
SS
1628 stream = fdopen (desc, FDOPEN_MODE);
1629 clearerr (stream);
9fe4a216 1630 cleanups = make_cleanup_fclose (stream);
c5aa993b
JM
1631 while (1)
1632 {
1633 static char *buf = NULL;
aa1ee363 1634 char *p;
c5aa993b
JM
1635 int cursize, newsize;
1636
1637 cursize = 256;
1638 buf = xmalloc (cursize);
1639 p = buf;
1640
40aea477 1641 c = fgetc (stream);
c5aa993b
JM
1642 if (c == EOF)
1643 break;
1644 do
c906108c 1645 {
c5aa993b
JM
1646 *p++ = c;
1647 if (p - buf == cursize)
1648 {
1649 newsize = cursize + cursize / 2;
1650 buf = xrealloc (buf, newsize);
1651 p = buf + cursize;
1652 cursize = newsize;
1653 }
c906108c 1654 }
40aea477 1655 while (c != '\n' && (c = fgetc (stream)) >= 0);
c906108c 1656
7be570e7
JM
1657 /* Remove the \r, if any, at the end of the line, otherwise
1658 regular expressions that end with $ or \n won't work. */
1659 if (p - buf > 1 && p[-2] == '\r')
1660 {
1661 p--;
1662 p[-1] = '\n';
1663 }
7be570e7 1664
c378eb4e 1665 /* We now have a source line in buf, null terminate and match. */
c5aa993b
JM
1666 *p = 0;
1667 if (re_exec (buf) > 0)
1668 {
c378eb4e 1669 /* Match! */
e681b284 1670 do_cleanups (cleanups);
c5aa993b 1671 print_source_lines (current_source_symtab, line, line + 1, 0);
4fa62494 1672 set_internalvar_integer (lookup_internalvar ("_"), line);
c5aa993b
JM
1673 current_source_line = max (line - lines_to_list / 2, 1);
1674 return;
1675 }
1676 line++;
1677 }
c906108c 1678
a3f17187 1679 printf_filtered (_("Expression not found\n"));
9fe4a216 1680 do_cleanups (cleanups);
c906108c
SS
1681}
1682
c906108c 1683static void
fba45db2 1684reverse_search_command (char *regex, int from_tty)
c906108c 1685{
52f0bd74
AC
1686 int c;
1687 int desc;
1688 FILE *stream;
c906108c
SS
1689 int line;
1690 char *msg;
9fe4a216 1691 struct cleanup *cleanups;
063190b6 1692
c906108c 1693 line = last_line_listed - 1;
c906108c
SS
1694
1695 msg = (char *) re_comp (regex);
1696 if (msg)
8a3fe4f8 1697 error (("%s"), msg);
c906108c
SS
1698
1699 if (current_source_symtab == 0)
1700 select_source_symtab (0);
1701
1702 desc = open_source_file (current_source_symtab);
1703 if (desc < 0)
05cba821 1704 perror_with_name (symtab_to_filename_for_display (current_source_symtab));
9fe4a216 1705 cleanups = make_cleanup_close (desc);
c906108c
SS
1706
1707 if (current_source_symtab->line_charpos == 0)
1708 find_source_lines (current_source_symtab, desc);
1709
1710 if (line < 1 || line > current_source_symtab->nlines)
9fe4a216 1711 error (_("Expression not found"));
c906108c
SS
1712
1713 if (lseek (desc, current_source_symtab->line_charpos[line - 1], 0) < 0)
05cba821 1714 perror_with_name (symtab_to_filename_for_display (current_source_symtab));
c906108c 1715
9fe4a216 1716 discard_cleanups (cleanups);
c906108c
SS
1717 stream = fdopen (desc, FDOPEN_MODE);
1718 clearerr (stream);
9fe4a216 1719 cleanups = make_cleanup_fclose (stream);
c906108c
SS
1720 while (line > 1)
1721 {
c378eb4e
MS
1722/* FIXME!!! We walk right off the end of buf if we get a long line!!! */
1723 char buf[4096]; /* Should be reasonable??? */
aa1ee363 1724 char *p = buf;
c906108c 1725
40aea477 1726 c = fgetc (stream);
c906108c
SS
1727 if (c == EOF)
1728 break;
c5aa993b
JM
1729 do
1730 {
1731 *p++ = c;
1732 }
40aea477 1733 while (c != '\n' && (c = fgetc (stream)) >= 0);
c906108c 1734
7be570e7
JM
1735 /* Remove the \r, if any, at the end of the line, otherwise
1736 regular expressions that end with $ or \n won't work. */
1737 if (p - buf > 1 && p[-2] == '\r')
1738 {
1739 p--;
1740 p[-1] = '\n';
1741 }
7be570e7 1742
c906108c
SS
1743 /* We now have a source line in buf; null terminate and match. */
1744 *p = 0;
1745 if (re_exec (buf) > 0)
1746 {
c378eb4e 1747 /* Match! */
e681b284 1748 do_cleanups (cleanups);
c5aa993b 1749 print_source_lines (current_source_symtab, line, line + 1, 0);
4fa62494 1750 set_internalvar_integer (lookup_internalvar ("_"), line);
c906108c
SS
1751 current_source_line = max (line - lines_to_list / 2, 1);
1752 return;
1753 }
1754 line--;
1755 if (fseek (stream, current_source_symtab->line_charpos[line - 1], 0) < 0)
1756 {
05cba821
JK
1757 const char *filename;
1758
e681b284 1759 do_cleanups (cleanups);
05cba821
JK
1760 filename = symtab_to_filename_for_display (current_source_symtab);
1761 perror_with_name (filename);
c906108c
SS
1762 }
1763 }
1764
a3f17187 1765 printf_filtered (_("Expression not found\n"));
9fe4a216 1766 do_cleanups (cleanups);
c906108c
SS
1767 return;
1768}
2f61ca93
JB
1769
1770/* If the last character of PATH is a directory separator, then strip it. */
1771
1772static void
1773strip_trailing_directory_separator (char *path)
1774{
1775 const int last = strlen (path) - 1;
1776
1777 if (last < 0)
1778 return; /* No stripping is needed if PATH is the empty string. */
1779
1780 if (IS_DIR_SEPARATOR (path[last]))
1781 path[last] = '\0';
1782}
1783
1784/* Return the path substitution rule that matches FROM.
1785 Return NULL if no rule matches. */
1786
1787static struct substitute_path_rule *
1788find_substitute_path_rule (const char *from)
1789{
1790 struct substitute_path_rule *rule = substitute_path_rules;
1791
1792 while (rule != NULL)
1793 {
1794 if (FILENAME_CMP (rule->from, from) == 0)
1795 return rule;
1796 rule = rule->next;
1797 }
1798
1799 return NULL;
1800}
1801
1802/* Add a new substitute-path rule at the end of the current list of rules.
1803 The new rule will replace FROM into TO. */
1804
29b0e8a2 1805void
2f61ca93
JB
1806add_substitute_path_rule (char *from, char *to)
1807{
1808 struct substitute_path_rule *rule;
1809 struct substitute_path_rule *new_rule;
1810
1811 new_rule = xmalloc (sizeof (struct substitute_path_rule));
1812 new_rule->from = xstrdup (from);
1813 new_rule->to = xstrdup (to);
1814 new_rule->next = NULL;
1815
1816 /* If the list of rules are empty, then insert the new rule
1817 at the head of the list. */
1818
1819 if (substitute_path_rules == NULL)
1820 {
1821 substitute_path_rules = new_rule;
1822 return;
1823 }
1824
1825 /* Otherwise, skip to the last rule in our list and then append
1826 the new rule. */
1827
1828 rule = substitute_path_rules;
1829 while (rule->next != NULL)
1830 rule = rule->next;
1831
1832 rule->next = new_rule;
1833}
1834
1835/* Remove the given source path substitution rule from the current list
1836 of rules. The memory allocated for that rule is also deallocated. */
1837
1838static void
1839delete_substitute_path_rule (struct substitute_path_rule *rule)
1840{
1841 if (rule == substitute_path_rules)
1842 substitute_path_rules = rule->next;
1843 else
1844 {
1845 struct substitute_path_rule *prev = substitute_path_rules;
1846
1847 while (prev != NULL && prev->next != rule)
1848 prev = prev->next;
1849
1850 gdb_assert (prev != NULL);
1851
1852 prev->next = rule->next;
1853 }
1854
1855 xfree (rule->from);
1856 xfree (rule->to);
1857 xfree (rule);
1858}
1859
1860/* Implement the "show substitute-path" command. */
1861
1862static void
1863show_substitute_path_command (char *args, int from_tty)
1864{
1865 struct substitute_path_rule *rule = substitute_path_rules;
1866 char **argv;
1867 char *from = NULL;
5b3fca71 1868 struct cleanup *cleanup;
2f61ca93 1869
d1a41061 1870 argv = gdb_buildargv (args);
5b3fca71 1871 cleanup = make_cleanup_freeargv (argv);
2f61ca93
JB
1872
1873 /* We expect zero or one argument. */
1874
1875 if (argv != NULL && argv[0] != NULL && argv[1] != NULL)
1876 error (_("Too many arguments in command"));
1877
1878 if (argv != NULL && argv[0] != NULL)
1879 from = argv[0];
1880
1881 /* Print the substitution rules. */
1882
1883 if (from != NULL)
1884 printf_filtered
1885 (_("Source path substitution rule matching `%s':\n"), from);
1886 else
1887 printf_filtered (_("List of all source path substitution rules:\n"));
1888
1889 while (rule != NULL)
1890 {
1e2ccb61 1891 if (from == NULL || substitute_path_rule_matches (rule, from) != 0)
2f61ca93
JB
1892 printf_filtered (" `%s' -> `%s'.\n", rule->from, rule->to);
1893 rule = rule->next;
1894 }
5b3fca71
TT
1895
1896 do_cleanups (cleanup);
2f61ca93
JB
1897}
1898
1899/* Implement the "unset substitute-path" command. */
1900
1901static void
1902unset_substitute_path_command (char *args, int from_tty)
1903{
1904 struct substitute_path_rule *rule = substitute_path_rules;
d1a41061 1905 char **argv = gdb_buildargv (args);
2f61ca93
JB
1906 char *from = NULL;
1907 int rule_found = 0;
5b3fca71 1908 struct cleanup *cleanup;
2f61ca93
JB
1909
1910 /* This function takes either 0 or 1 argument. */
1911
5b3fca71 1912 cleanup = make_cleanup_freeargv (argv);
2f61ca93
JB
1913 if (argv != NULL && argv[0] != NULL && argv[1] != NULL)
1914 error (_("Incorrect usage, too many arguments in command"));
1915
1916 if (argv != NULL && argv[0] != NULL)
1917 from = argv[0];
1918
1919 /* If the user asked for all the rules to be deleted, ask him
1920 to confirm and give him a chance to abort before the action
1921 is performed. */
1922
1923 if (from == NULL
1924 && !query (_("Delete all source path substitution rules? ")))
1925 error (_("Canceled"));
1926
1927 /* Delete the rule matching the argument. No argument means that
1928 all rules should be deleted. */
1929
1930 while (rule != NULL)
1931 {
1932 struct substitute_path_rule *next = rule->next;
1933
1934 if (from == NULL || FILENAME_CMP (from, rule->from) == 0)
1935 {
1936 delete_substitute_path_rule (rule);
1937 rule_found = 1;
1938 }
1939
1940 rule = next;
1941 }
1942
1943 /* If the user asked for a specific rule to be deleted but
1944 we could not find it, then report an error. */
1945
1946 if (from != NULL && !rule_found)
1947 error (_("No substitution rule defined for `%s'"), from);
c4e86dd4
DJ
1948
1949 forget_cached_source_info ();
5b3fca71
TT
1950
1951 do_cleanups (cleanup);
2f61ca93
JB
1952}
1953
1954/* Add a new source path substitution rule. */
1955
1956static void
1957set_substitute_path_command (char *args, int from_tty)
1958{
2f61ca93
JB
1959 char **argv;
1960 struct substitute_path_rule *rule;
5b3fca71 1961 struct cleanup *cleanup;
2f61ca93 1962
d1a41061 1963 argv = gdb_buildargv (args);
5b3fca71 1964 cleanup = make_cleanup_freeargv (argv);
2f61ca93
JB
1965
1966 if (argv == NULL || argv[0] == NULL || argv [1] == NULL)
1967 error (_("Incorrect usage, too few arguments in command"));
1968
1969 if (argv[2] != NULL)
1970 error (_("Incorrect usage, too many arguments in command"));
1971
1972 if (*(argv[0]) == '\0')
1973 error (_("First argument must be at least one character long"));
1974
1975 /* Strip any trailing directory separator character in either FROM
1976 or TO. The substitution rule already implicitly contains them. */
1977 strip_trailing_directory_separator (argv[0]);
1978 strip_trailing_directory_separator (argv[1]);
1979
1980 /* If a rule with the same "from" was previously defined, then
1981 delete it. This new rule replaces it. */
1982
1983 rule = find_substitute_path_rule (argv[0]);
1984 if (rule != NULL)
1985 delete_substitute_path_rule (rule);
1986
1987 /* Insert the new substitution rule. */
1988
1989 add_substitute_path_rule (argv[0], argv[1]);
c4e86dd4 1990 forget_cached_source_info ();
5b3fca71
TT
1991
1992 do_cleanups (cleanup);
2f61ca93
JB
1993}
1994
c906108c
SS
1995\f
1996void
fba45db2 1997_initialize_source (void)
c906108c
SS
1998{
1999 struct cmd_list_element *c;
433759f7 2000
c906108c
SS
2001 current_source_symtab = 0;
2002 init_source_path ();
2003
2004 /* The intention is to use POSIX Basic Regular Expressions.
2005 Always use the GNU regex routine for consistency across all hosts.
2006 Our current GNU regex.c does not have all the POSIX features, so this is
2007 just an approximation. */
2008 re_set_syntax (RE_SYNTAX_GREP);
2009
1a966eab
AC
2010 c = add_cmd ("directory", class_files, directory_command, _("\
2011Add directory DIR to beginning of search path for source files.\n\
c906108c
SS
2012Forget cached info on source file locations and line positions.\n\
2013DIR can also be $cwd for the current working directory, or $cdir for the\n\
2014directory in which the source file was compiled into object code.\n\
1a966eab 2015With no argument, reset the search path to $cdir:$cwd, the default."),
c906108c
SS
2016 &cmdlist);
2017
2018 if (dbx_commands)
c5aa993b 2019 add_com_alias ("use", "directory", class_files, 0);
c906108c 2020
5ba2abeb 2021 set_cmd_completer (c, filename_completer);
c906108c 2022
99e7ae30
DE
2023 add_setshow_optional_filename_cmd ("directories",
2024 class_files,
2025 &source_path,
2026 _("\
2027Set the search path for finding source files."),
2028 _("\
2029Show the search path for finding source files."),
2030 _("\
c906108c 2031$cwd in the path means the current working directory.\n\
99e7ae30
DE
2032$cdir in the path means the compilation directory of the source file.\n\
2033GDB ensures the search path always ends with $cdir:$cwd by\n\
2034appending these directories if necessary.\n\
2035Setting the value to an empty string sets it to $cdir:$cwd, the default."),
2036 set_directories_command,
2037 show_directories_command,
2038 &setlist, &showlist);
c906108c
SS
2039
2040 if (xdb_commands)
2041 {
c5aa993b 2042 add_com_alias ("D", "directory", class_files, 0);
99e7ae30 2043 add_cmd ("ld", no_class, show_directories_1, _("\
1a966eab 2044Current search path for finding source files.\n\
c906108c 2045$cwd in the path means the current working directory.\n\
1a966eab 2046$cdir in the path means the compilation directory of the source file."),
c5aa993b 2047 &cmdlist);
c906108c
SS
2048 }
2049
2050 add_info ("source", source_info,
1bedd215 2051 _("Information about the current source file."));
c906108c 2052
1bedd215
AC
2053 add_info ("line", line_info, _("\
2054Core addresses of the code for a source line.\n\
c906108c
SS
2055Line can be specified as\n\
2056 LINENUM, to list around that line in current file,\n\
2057 FILE:LINENUM, to list around that line in that file,\n\
2058 FUNCTION, to list around beginning of that function,\n\
2059 FILE:FUNCTION, to distinguish among like-named static functions.\n\
c906108c
SS
2060Default is to describe the last source line that was listed.\n\n\
2061This sets the default address for \"x\" to the line's first instruction\n\
2062so that \"x/i\" suffices to start examining the machine code.\n\
1bedd215 2063The address is also stored as the value of \"$_\"."));
c906108c 2064
1bedd215
AC
2065 add_com ("forward-search", class_files, forward_search_command, _("\
2066Search for regular expression (see regex(3)) from last line listed.\n\
2067The matching line number is also stored as the value of \"$_\"."));
c906108c 2068 add_com_alias ("search", "forward-search", class_files, 0);
1e96de83 2069 add_com_alias ("fo", "forward-search", class_files, 1);
c906108c 2070
1bedd215
AC
2071 add_com ("reverse-search", class_files, reverse_search_command, _("\
2072Search backward for regular expression (see regex(3)) from last line listed.\n\
2073The matching line number is also stored as the value of \"$_\"."));
dd304d53 2074 add_com_alias ("rev", "reverse-search", class_files, 1);
c906108c
SS
2075
2076 if (xdb_commands)
2077 {
c5aa993b
JM
2078 add_com_alias ("/", "forward-search", class_files, 0);
2079 add_com_alias ("?", "reverse-search", class_files, 0);
c906108c
SS
2080 }
2081
7f7cc265 2082 add_setshow_integer_cmd ("listsize", class_support, &lines_to_list, _("\
35096d9d 2083Set number of source lines gdb will list by default."), _("\
f81d1120
PA
2084Show number of source lines gdb will list by default."), _("\
2085Use this to choose how many source lines the \"list\" displays (unless\n\
2086the \"list\" argument explicitly specifies some other number).\n\
2087A value of \"unlimited\", or zero, means there's no limit."),
7f7cc265
PA
2088 NULL,
2089 show_lines_to_list,
2090 &setlist, &showlist);
2f61ca93
JB
2091
2092 add_cmd ("substitute-path", class_files, set_substitute_path_command,
2093 _("\
7ef2b397
JB
2094Usage: set substitute-path FROM TO\n\
2095Add a substitution rule replacing FROM into TO in source file names.\n\
2096If a substitution rule was previously set for FROM, the old rule\n\
2097is replaced by the new one."),
2098 &setlist);
2f61ca93
JB
2099
2100 add_cmd ("substitute-path", class_files, unset_substitute_path_command,
2101 _("\
7ef2b397
JB
2102Usage: unset substitute-path [FROM]\n\
2103Delete the rule for substituting FROM in source file names. If FROM\n\
2104is not specified, all substituting rules are deleted.\n\
2105If the debugger cannot find a rule for FROM, it will display a warning."),
2f61ca93
JB
2106 &unsetlist);
2107
2108 add_cmd ("substitute-path", class_files, show_substitute_path_command,
7ef2b397
JB
2109 _("\
2110Usage: show substitute-path [FROM]\n\
2111Print the rule for substituting FROM in source file names. If FROM\n\
2112is not specified, print all substitution rules."),
2f61ca93 2113 &showlist);
1b56eb55
JK
2114
2115 add_setshow_enum_cmd ("filename-display", class_files,
2116 filename_display_kind_names,
2117 &filename_display_string, _("\
2118Set how to display filenames."), _("\
2119Show how to display filenames."), _("\
2120filename-display can be:\n\
2121 basename - display only basename of a filename\n\
2122 relative - display a filename relative to the compilation directory\n\
2123 absolute - display an absolute filename\n\
2124By default, relative filenames are displayed."),
2125 NULL,
2126 show_filename_display_string,
2127 &setlist, &showlist);
2128
c906108c 2129}
This page took 2.24519 seconds and 4 git commands to generate.