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