*** empty log message ***
[deliverable/binutils-gdb.git] / gdb / block.h
CommitLineData
fe898f56
DC
1/* Code dealing with blocks for GDB.
2
6aba47ca 3 Copyright (C) 2003, 2007 Free Software Foundation, Inc.
fe898f56
DC
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
a9762ec7 9 the Free Software Foundation; either version 3 of the License, or
fe898f56
DC
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
a9762ec7 18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
fe898f56
DC
19
20#ifndef BLOCK_H
21#define BLOCK_H
22
23/* Opaque declarations. */
24
25struct symbol;
26struct symtab;
9219021c
DC
27struct block_namespace_info;
28struct using_direct;
29struct obstack;
de4f826b 30struct dictionary;
fe898f56
DC
31
32/* All of the name-scope contours of the program
33 are represented by `struct block' objects.
34 All of these objects are pointed to by the blockvector.
35
36 Each block represents one name scope.
37 Each lexical context has its own block.
38
39 The blockvector begins with some special blocks.
40 The GLOBAL_BLOCK contains all the symbols defined in this compilation
41 whose scope is the entire program linked together.
42 The STATIC_BLOCK contains all the symbols whose scope is the
43 entire compilation excluding other separate compilations.
44 Blocks starting with the FIRST_LOCAL_BLOCK are not special.
45
46 Each block records a range of core addresses for the code that
47 is in the scope of the block. The STATIC_BLOCK and GLOBAL_BLOCK
48 give, for the range of code, the entire range of code produced
49 by the compilation that the symbol segment belongs to.
50
51 The blocks appear in the blockvector
52 in order of increasing starting-address,
53 and, within that, in order of decreasing ending-address.
54
55 This implies that within the body of one function
56 the blocks appear in the order of a depth-first tree walk. */
57
58struct block
59{
60
61 /* Addresses in the executable code that are in this block. */
62
63 CORE_ADDR startaddr;
64 CORE_ADDR endaddr;
65
66 /* The symbol that names this block, if the block is the body of a
67 function; otherwise, zero. */
68
69 struct symbol *function;
70
71 /* The `struct block' for the containing block, or 0 if none.
72
73 The superblock of a top-level local block (i.e. a function in the
74 case of C) is the STATIC_BLOCK. The superblock of the
75 STATIC_BLOCK is the GLOBAL_BLOCK. */
76
77 struct block *superblock;
78
de4f826b
DC
79 /* This is used to store the symbols in the block. */
80
81 struct dictionary *dict;
82
9219021c
DC
83 /* Used for language-specific info. */
84
85 union
86 {
87 struct
88 {
89 /* Contains information about namespace-related info relevant to
90 this block: using directives and the current namespace
91 scope. */
92
93 struct block_namespace_info *namespace;
94 }
95 cplus_specific;
96 }
97 language_specific;
fe898f56
DC
98};
99
100#define BLOCK_START(bl) (bl)->startaddr
101#define BLOCK_END(bl) (bl)->endaddr
102#define BLOCK_FUNCTION(bl) (bl)->function
103#define BLOCK_SUPERBLOCK(bl) (bl)->superblock
de4f826b 104#define BLOCK_DICT(bl) (bl)->dict
9219021c 105#define BLOCK_NAMESPACE(bl) (bl)->language_specific.cplus_specific.namespace
fe898f56 106
de4f826b
DC
107/* Macro to loop through all symbols in a block BL, in no particular
108 order. ITER helps keep track of the iteration, and should be a
109 struct dict_iterator. SYM points to the current symbol. */
fe898f56 110
de4f826b
DC
111#define ALL_BLOCK_SYMBOLS(block, iter, sym) \
112 ALL_DICT_SYMBOLS (BLOCK_DICT (block), iter, sym)
fe898f56 113
fe898f56
DC
114struct blockvector
115{
116 /* Number of blocks in the list. */
117 int nblocks;
118 /* The blocks themselves. */
119 struct block *block[1];
120};
121
122#define BLOCKVECTOR_NBLOCKS(blocklist) (blocklist)->nblocks
123#define BLOCKVECTOR_BLOCK(blocklist,n) (blocklist)->block[n]
124
125/* Special block numbers */
126
887432a5 127enum { GLOBAL_BLOCK = 0, STATIC_BLOCK = 1, FIRST_LOCAL_BLOCK = 2 };
fe898f56 128
0cf566ec 129extern struct symbol *block_function (const struct block *);
fe898f56 130
0cf566ec 131extern int contained_in (const struct block *, const struct block *);
fe898f56
DC
132
133extern struct blockvector *blockvector_for_pc (CORE_ADDR, int *);
134
135extern struct blockvector *blockvector_for_pc_sect (CORE_ADDR, asection *,
136 int *, struct symtab *);
137
138extern struct block *block_for_pc (CORE_ADDR);
139
140extern struct block *block_for_pc_sect (CORE_ADDR, asection *);
141
1fcb5155
DC
142extern const char *block_scope (const struct block *block);
143
9219021c
DC
144extern void block_set_scope (struct block *block, const char *scope,
145 struct obstack *obstack);
146
1fcb5155
DC
147extern struct using_direct *block_using (const struct block *block);
148
9219021c
DC
149extern void block_set_using (struct block *block,
150 struct using_direct *using,
151 struct obstack *obstack);
152
89a9d1b1
DC
153extern const struct block *block_static_block (const struct block *block);
154
1fcb5155
DC
155extern const struct block *block_global_block (const struct block *block);
156
5c4e30ca
DC
157extern struct block *allocate_block (struct obstack *obstack);
158
fe898f56 159#endif /* BLOCK_H */
This page took 0.346682 seconds and 4 git commands to generate.