* inferior.h (read_sp): Remove prototype.
[deliverable/binutils-gdb.git] / gdb / macroscope.c
CommitLineData
6821892e 1/* Functions for deciding which macros are currently in scope.
6aba47ca 2 Copyright (C) 2002, 2007 Free Software Foundation, Inc.
6821892e
JB
3 Contributed by Red Hat, Inc.
4
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
197e01b6
EZ
19 Foundation, Inc., 51 Franklin Street, Fifth Floor,
20 Boston, MA 02110-1301, USA. */
6821892e
JB
21
22#include "defs.h"
23
24#include "macroscope.h"
25#include "symtab.h"
0378c332 26#include "source.h"
6821892e
JB
27#include "target.h"
28#include "frame.h"
29#include "inferior.h"
568f8739 30#include "complaints.h"
6821892e
JB
31
32
33struct macro_scope *
34sal_macro_scope (struct symtab_and_line sal)
35{
d5d6fca5 36 struct macro_source_file *main_file, *inclusion;
6821892e
JB
37 struct macro_scope *ms;
38
39 if (! sal.symtab
40 || ! sal.symtab->macro_table)
41 return 0;
42
43 ms = (struct macro_scope *) xmalloc (sizeof (*ms));
44
d5d6fca5
DJ
45 main_file = macro_main (sal.symtab->macro_table);
46 inclusion = macro_lookup_inclusion (main_file, sal.symtab->filename);
6821892e 47
568f8739
JB
48 if (inclusion)
49 {
50 ms->file = inclusion;
51 ms->line = sal.line;
52 }
53 else
54 {
55 /* There are, unfortunately, cases where a compilation unit can
56 have a symtab for a source file that doesn't appear in the
57 macro table. For example, at the moment, Dwarf doesn't have
58 any way in the .debug_macinfo section to describe the effect
59 of #line directives, so if you debug a YACC parser you'll get
60 a macro table which only mentions the .c files generated by
61 YACC, but symtabs that mention the .y files consumed by YACC.
62
63 In the long run, we should extend the Dwarf macro info
64 representation to handle #line directives, and get GCC to
65 emit it.
66
67 For the time being, though, we'll just treat these as
68 occurring at the end of the main source file. */
d5d6fca5 69 ms->file = main_file;
568f8739
JB
70 ms->line = -1;
71
72 complaint (&symfile_complaints,
e2e0b3e5
AC
73 _("symtab found for `%s', but that file\n"
74 "is not covered in the compilation unit's macro information"),
568f8739
JB
75 sal.symtab->filename);
76 }
6821892e
JB
77
78 return ms;
79}
80
81
82struct macro_scope *
480dd42a 83default_macro_scope (void)
6821892e
JB
84{
85 struct symtab_and_line sal;
6821892e 86 struct macro_scope *ms;
206415a3 87 struct frame_info *frame;
6821892e 88
206415a3
DJ
89 /* If there's a selected frame, use its PC. */
90 frame = deprecated_safe_get_selected_frame ();
91 if (frame)
92 sal = find_pc_line (get_frame_pc (frame), 0);
6821892e 93
206415a3 94 /* Fall back to the current listing position. */
6821892e
JB
95 else
96 {
97 /* Don't call select_source_symtab here. That can raise an
98 error if symbols aren't loaded, but GDB calls the expression
99 evaluator in all sorts of contexts.
100
101 For example, commands like `set width' call the expression
102 evaluator to evaluate their numeric arguments. If the
103 current language is C, then that may call this function to
104 choose a scope for macro expansion. If you don't have any
0378c332 105 symbol files loaded, then get_current_or_default would raise an
6821892e
JB
106 error. But `set width' shouldn't raise an error just because
107 it can't decide which scope to macro-expand its argument in. */
0378c332
FN
108 struct symtab_and_line cursal =
109 get_current_source_symtab_and_line ();
110
111 sal.symtab = cursal.symtab;
112 sal.line = cursal.line;
6821892e
JB
113 }
114
115 return sal_macro_scope (sal);
116}
117
118
119/* Look up the definition of the macro named NAME in scope at the source
120 location given by BATON, which must be a pointer to a `struct
121 macro_scope' structure. */
122struct macro_definition *
123standard_macro_lookup (const char *name, void *baton)
124{
125 struct macro_scope *ms = (struct macro_scope *) baton;
126
127 return macro_lookup_definition (ms->file, ms->line, name);
128}
This page took 0.407262 seconds and 4 git commands to generate.