Fix gdb build on 32-bit hosts w/ --enable-64-bit-bfd
[deliverable/binutils-gdb.git] / gdb / source.h
CommitLineData
c2c6d25f 1/* List lines of source files for GDB, the GNU debugger.
e2882c85 2 Copyright (C) 1999-2018 Free Software Foundation, Inc.
c2c6d25f
JM
3
4 This file is part of GDB.
5
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
c2c6d25f
JM
9 (at your option) any later version.
10
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.
15
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/>. */
c2c6d25f
JM
18
19#ifndef SOURCE_H
20#define SOURCE_H
21
2179fbc3
TT
22#include "common/scoped_fd.h"
23
da3331ec
AC
24struct symtab;
25
b46a8d7c
TT
26/* See openp function definition for their description. */
27
28enum openp_flag
29{
30 OPF_TRY_CWD_FIRST = 0x01,
31 OPF_SEARCH_IN_PATH = 0x02,
32 OPF_RETURN_REALPATH = 0x04,
33};
34
35DEF_ENUM_FLAGS_TYPE(openp_flag, openp_flags);
36
e0cc99a6
TT
37extern int openp (const char *, openp_flags, const char *, int,
38 gdb::unique_xmalloc_ptr<char> *);
b46a8d7c 39
e0cc99a6 40extern int source_full_path_of (const char *, gdb::unique_xmalloc_ptr<char> *);
b46a8d7c
TT
41
42extern void mod_path (const char *, char **);
43
44extern void add_path (const char *, char **, int);
45
46extern void directory_switch (const char *, int);
47
48extern char *source_path;
49
50extern void init_source_path (void);
51
9340a6c0
PA
52/* This function is capable of finding the absolute path to a
53 source file, and opening it, provided you give it a FILENAME. Both the
54 DIRNAME and FULLNAME are only added suggestions on where to find the file.
55
56 FILENAME should be the filename to open.
57 DIRNAME is the compilation directory of a particular source file.
58 Only some debug formats provide this info.
59 FULLNAME can be the last known absolute path to the file in question.
60 Space for the path must have been malloc'd. If a path substitution
61 is applied we free the old value and set a new one.
62
63 On Success
64 A valid file descriptor is returned (the return value is positive).
65 FULLNAME is set to the absolute path to the file just opened.
66 The caller is responsible for freeing FULLNAME.
67
68 On Failure
69 An invalid file descriptor is returned (the return value is negative).
70 FULLNAME is set to NULL. */
2179fbc3
TT
71extern scoped_fd find_and_open_source (const char *filename,
72 const char *dirname,
73 gdb::unique_xmalloc_ptr<char> *fullname);
9340a6c0 74
c2c6d25f
JM
75/* Open a source file given a symtab S. Returns a file descriptor or
76 negative number for error. */
2179fbc3 77extern scoped_fd open_source_file (struct symtab *s);
c2c6d25f 78
0b581c69 79extern gdb::unique_xmalloc_ptr<char> rewrite_source_path (const char *path);
fbd9ab74 80
0b0865da 81extern const char *symtab_to_fullname (struct symtab *s);
57c22c6c 82
1b56eb55
JK
83/* Returns filename without the compile directory part, basename or absolute
84 filename. It depends on 'set filename-display' value. */
85extern const char *symtab_to_filename_for_display (struct symtab *symtab);
86
c2c6d25f
JM
87/* Create and initialize the table S->line_charpos that records the
88 positions of the lines in the source file, which is assumed to be
89 open on descriptor DESC. All set S->nlines to the number of such
90 lines. */
91extern void find_source_lines (struct symtab *s, int desc);
92
5166082f
PA
93/* Return the first line listed by print_source_lines. Used by
94 command interpreters to request listing from a previous point. If
95 0, then no source lines have yet been listed since the last time
96 the current source line was changed. */
0378c332
FN
97extern int get_first_line_listed (void);
98
99/* Return the default number of lines to print with commands like the
100 cli "list". The caller of print_source_lines must use this to
101 calculate the end line and use it in the call to print_source_lines
c378eb4e 102 as it does not automatically use this value. */
0378c332
FN
103extern int get_lines_to_list (void);
104
105/* Return the current source file for listing and next line to list.
c378eb4e 106 NOTE: The returned sal pc and end fields are not valid. */
53cb0458 107extern struct symtab_and_line get_current_source_symtab_and_line (void);
0378c332 108
53cb0458
FN
109/* If the current source file for listing is not set, try and get a default.
110 Usually called before get_current_source_symtab_and_line() is called.
0378c332 111 It may err out if a default cannot be determined.
53cb0458
FN
112 We must be cautious about where it is called, as it can recurse as the
113 process of determining a new default may call the caller!
114 Use get_current_source_symtab_and_line only to get whatever
c378eb4e 115 we have without erroring out or trying to get a default. */
53cb0458 116extern void set_default_source_symtab_and_line (void);
0378c332
FN
117
118/* Return the current default file for listing and next line to list
119 (the returned sal pc and end fields are not valid.)
53cb0458 120 and set the current default to whatever is in SAL.
c378eb4e 121 NOTE: The returned sal pc and end fields are not valid. */
51abb421
PA
122extern symtab_and_line set_current_source_symtab_and_line
123 (const symtab_and_line &sal);
0378c332 124
c378eb4e 125/* Reset any information stored about a default file and line to print. */
53cb0458 126extern void clear_current_source_symtab_and_line (void);
29b0e8a2
JM
127
128/* Add a source path substitution rule. */
129extern void add_substitute_path_rule (char *, char *);
c2c6d25f 130#endif
This page took 1.796212 seconds and 4 git commands to generate.