]> Git Repo - binutils.git/blame - gdb/symtab.h
* bout.c (callj_callback), coff-a29k.c (a29k_reloc), coff-m88k.c
[binutils.git] / gdb / symtab.h
CommitLineData
bd5635a1 1/* Symbol table definitions for GDB.
4a35d6e9 2 Copyright (C) 1986, 1989, 1991 Free Software Foundation, Inc.
bd5635a1
RP
3
4This file is part of GDB.
5
4a35d6e9 6This program is free software; you can redistribute it and/or modify
bd5635a1 7it under the terms of the GNU General Public License as published by
4a35d6e9
FF
8the Free Software Foundation; either version 2 of the License, or
9(at your option) any later version.
bd5635a1 10
4a35d6e9 11This program is distributed in the hope that it will be useful,
bd5635a1
RP
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
4a35d6e9
FF
17along with this program; if not, write to the Free Software
18Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
bd5635a1
RP
19
20#if !defined (SYMTAB_H)
21#define SYMTAB_H 1
7d9884b9 22#include "obstack.h"
bd5635a1
RP
23
24/* An obstack to hold objects that should be freed
25 when we load a new symbol table.
26 This includes the symbols made by dbxread
27 and the types that are not permanent. */
28
29extern struct obstack *symbol_obstack;
30extern struct obstack *psymbol_obstack;
31
32/* Some definitions and declarations to go with use of obstacks. */
33#define obstack_chunk_alloc xmalloc
34#define obstack_chunk_free free
bd5635a1
RP
35
36/* Some macros for char-based bitfields. */
37#define B_SET(a,x) (a[x>>3] |= (1 << (x&7)))
38#define B_CLR(a,x) (a[x>>3] &= ~(1 << (x&7)))
39#define B_TST(a,x) (a[x>>3] & (1 << (x&7)))
40#define B_TYPE unsigned char
41#define B_BYTES(x) ( 1 + ((x)>>3) )
42#define B_CLRALL(a,x) bzero (a, B_BYTES(x))
43
44/* gdb can know one or several symbol tables at the same time;
45 the ultimate intent is to have one for each separately-compiled module.
46 Each such symbol table is recorded by a struct symtab, and they
47 are all chained together. */
48
49/* In addition, gdb can record any number of miscellaneous undebuggable
50 functions' addresses. In a system that appends _ to function names,
51 the _'s are removed from the names stored in this table. */
52
53/* Actually, the misc function list is used to store *all* of the
54 global symbols (text, data, bss, and abs). It is sometimes used
55 to figure out what symtabs to read in. The "type" field is used
4a35d6e9 56 occasionally. Calling it the misc "function" vector is now a misnomer.
bd5635a1
RP
57
58 The misc_info field is available for machine-specific information
59 that can be cached along with a misc function vector entry. The
60 AMD 29000 tdep.c uses it to remember things it has decoded from the
61 instructions in the function header, so it doesn't have to rederive
62 the info constantly (over a serial line). It is initialized to zero
63 and stays that way until target-dependent code sets it. */
64
65enum misc_function_type {mf_unknown = 0, mf_text, mf_data, mf_bss, mf_abs};
66
67struct misc_function
68{
69 char *name;
70 CORE_ADDR address;
71 char *misc_info; /* Random pointer to misc info. void * but for old C */
72 enum misc_function_type type;
73};
74
75/* Address and length of the vector recording all misc function names/addresses. */
76
77struct misc_function *misc_function_vector;
78int misc_function_count;
79\f
bd5635a1
RP
80/* Different kinds of data types are distinguished by the `code' field. */
81
82enum type_code
83{
84 TYPE_CODE_UNDEF, /* Not used; catches errors */
85 TYPE_CODE_PTR, /* Pointer type */
86 TYPE_CODE_ARRAY, /* Array type, lower bound zero */
87 TYPE_CODE_STRUCT, /* C struct or Pascal record */
88 TYPE_CODE_UNION, /* C union or Pascal variant part */
89 TYPE_CODE_ENUM, /* Enumeration type */
90 TYPE_CODE_FUNC, /* Function type */
91 TYPE_CODE_INT, /* Integer type */
92 TYPE_CODE_FLT, /* Floating type */
93 TYPE_CODE_VOID, /* Void type (values zero length) */
94 TYPE_CODE_SET, /* Pascal sets */
95 TYPE_CODE_RANGE, /* Range (integers within spec'd bounds) */
96 TYPE_CODE_PASCAL_ARRAY, /* Array with explicit type of index */
97 TYPE_CODE_ERROR, /* Unknown type */
98
99 /* C++ */
100 TYPE_CODE_MEMBER, /* Member type */
101 TYPE_CODE_METHOD, /* Method type */
102 TYPE_CODE_REF, /* C++ Reference types */
4a35d6e9
FF
103
104 /* Modula-2 */
105 TYPE_CODE_CHAR, /* *real* character type */
0a5d35ed 106 TYPE_CODE_BOOL /* Builtin Modula-2 BOOLEAN */
bd5635a1
RP
107};
108
109/* This appears in a type's flags word for an unsigned integer type. */
110#define TYPE_FLAG_UNSIGNED 1
111/* This appears in a type's flags word
112 if it is a (pointer to a|function returning a)* built in scalar type.
113 These types are never freed. */
114#define TYPE_FLAG_PERM 4
115/* This appears in a type's flags word if it is a stub type (eg. if
116 someone referenced a type that wasn't definined in a source file
117 via (struct sir_not_appearing_in_this_film *)). */
118#define TYPE_FLAG_STUB 8
bd5635a1
RP
119
120struct type
121{
122 /* Code for kind of type */
123 enum type_code code;
124 /* Name of this type, or zero if none.
125 This is used for printing only, except by poorly designed C++ code.
126 Type names specified as input are defined by symbols. */
127 char *name;
128 /* Length in bytes of storage for a value of this type */
129 unsigned length;
130 /* For a pointer type, describes the type of object pointed to.
131 For an array type, describes the type of the elements.
132 For a function or method type, describes the type of the value.
133 For a range type, describes the type of the full range.
134 Unused otherwise. */
135 struct type *target_type;
f1d77e90 136
bd5635a1
RP
137 /* Type that is a pointer to this type.
138 Zero if no such pointer-to type is known yet.
139 The debugger may add the address of such a type
140 if it has to construct one later. */
141 struct type *pointer_type;
142 /* C++: also need a reference type. */
143 struct type *reference_type;
bd5635a1
RP
144 /* Type that is a function returning this type.
145 Zero if no such function type is known here.
146 The debugger may add the address of such a type
147 if it has to construct one later. */
148 struct type *function_type;
149
bd5635a1
RP
150 /* Flags about this type. */
151 short flags;
152 /* Number of fields described for this type */
153 short nfields;
154 /* For structure and union types, a description of each field.
155 For set and pascal array types, there is one "field",
156 whose type is the domain type of the set or array.
157 For range types, there are two "fields",
158 the minimum and maximum values (both inclusive).
159 For enum types, each possible value is described by one "field".
160
161 Using a pointer to a separate array of fields
162 allows all types to have the same size, which is useful
163 because we can allocate the space for a type before
164 we know what to put in it. */
165 struct field
166 {
167 /* Position of this field, counting in bits from start of
168 containing structure. For a function type, this is the
169 position in the argument list of this argument.
170 For a range bound or enum value, this is the value itself. */
171 int bitpos;
172 /* Size of this field, in bits, or zero if not packed.
173 For an unpacked field, the field's type's length
174 says how many bytes the field occupies. */
175 int bitsize;
176 /* In a struct or enum type, type of this field.
177 In a function type, type of this argument.
178 In an array type, the domain-type of the array. */
179 struct type *type;
180 /* Name of field, value or argument.
181 Zero for range bounds and array domains. */
182 char *name;
183 } *fields;
184
d018c8a6
FF
185 /* For types with virtual functions, VPTR_BASETYPE is the base class which
186 defined the virtual function table pointer. VPTR_FIELDNO is
187 the field number of that pointer in the structure.
188
189 For types that are pointer to member types, VPTR_BASETYPE
f1d77e90 190 is the type that this pointer is a member of.
d018c8a6
FF
191
192 Unused otherwise. */
193 struct type *vptr_basetype;
194
195 int vptr_fieldno;
196
197 /* Slot to point to additional language-specific fields of this type. */
67c29f75 198 union type_specific
d018c8a6 199 {
7e258d18 200 /* ARG_TYPES is for TYPE_CODE_METHOD and TYPE_CODE_FUNC. */
d018c8a6 201 struct type **arg_types;
0a5d35ed 202 /* CPLUS_STUFF is for TYPE_CODE_STRUCT. */
d018c8a6
FF
203 struct cplus_struct_type *cplus_stuff;
204 } type_specific;
205};
206
f1d77e90
JG
207/* C++ language-specific information for TYPE_CODE_STRUCT and TYPE_CODE_UNION
208 nodes. */
d018c8a6
FF
209struct cplus_struct_type
210{
bd5635a1
RP
211 B_TYPE *virtual_field_bits; /* if base class is virtual */
212 B_TYPE *private_field_bits;
213 B_TYPE *protected_field_bits;
214
215 /* Number of methods described for this type */
216 short nfn_fields;
217 /* Number of base classes this type derives from. */
218 short n_baseclasses;
219
220 /* Number of methods described for this type plus all the
221 methods that it derives from. */
222 int nfn_fields_total;
223
224 /* For classes, structures, and unions, a description of each field,
225 which consists of an overloaded name, followed by the types of
226 arguments that the method expects, and then the name after it
227 has been renamed to make it distinct. */
228 struct fn_fieldlist
229 {
230 /* The overloaded name. */
231 char *name;
232 /* The number of methods with this name. */
233 int length;
234 /* The list of methods. */
235 struct fn_field
236 {
bd5635a1
RP
237 /* The return value of the method */
238 struct type *type;
239 /* The argument list */
240 struct type **args;
241 /* The name after it has been processed */
242 char *physname;
243
244 /* For virtual functions. */
245 /* First baseclass that defines this virtual function. */
246 struct type *fcontext;
bcccec8c
PB
247 unsigned int is_const : 1;
248 unsigned int is_volatile : 1;
0a5d35ed
SG
249 unsigned int is_private : 1;
250 unsigned int is_protected : 1;
251 unsigned int is_stub : 1;
252 unsigned int dummy : 3;
253
bd5635a1 254 /* Index into that baseclass's virtual function table,
bcccec8c 255 minus 2; else if static: VOFFSET_STATIC; else: 0. */
0a5d35ed 256 unsigned voffset : 24;
bcccec8c 257# define VOFFSET_STATIC 1
bd5635a1
RP
258 } *fn_fields;
259
bd5635a1
RP
260 } *fn_fieldlists;
261
262 unsigned char via_protected;
263 unsigned char via_public;
bd5635a1 264};
7e258d18
PB
265/* The default value of TYPE_CPLUS_SPECIFIC(T) points to the
266 this shared static structure. */
267
268extern struct cplus_struct_type cplus_struct_default;
269
270extern void allocate_cplus_struct_type ();
271#define ALLOCATE_CPLUS_STRUCT_TYPE(type) allocate_cplus_struct_type (type)
272#define HAVE_CPLUS_STRUCT(type) \
273 (TYPE_CPLUS_SPECIFIC(type) != &cplus_struct_default)
274
bd5635a1
RP
275\f
276/* All of the name-scope contours of the program
277 are represented by `struct block' objects.
278 All of these objects are pointed to by the blockvector.
279
280 Each block represents one name scope.
281 Each lexical context has its own block.
282
283 The first two blocks in the blockvector are special.
284 The first one contains all the symbols defined in this compilation
285 whose scope is the entire program linked together.
286 The second one contains all the symbols whose scope is the
287 entire compilation excluding other separate compilations.
288 In C, these correspond to global symbols and static symbols.
289
290 Each block records a range of core addresses for the code that
291 is in the scope of the block. The first two special blocks
292 give, for the range of code, the entire range of code produced
293 by the compilation that the symbol segment belongs to.
294
295 The blocks appear in the blockvector
296 in order of increasing starting-address,
297 and, within that, in order of decreasing ending-address.
298
299 This implies that within the body of one function
300 the blocks appear in the order of a depth-first tree walk. */
301
302struct blockvector
303{
304 /* Number of blocks in the list. */
305 int nblocks;
306 /* The blocks themselves. */
307 struct block *block[1];
308};
309
92a29b47
JG
310/* Special block numbers */
311#define GLOBAL_BLOCK 0
312#define STATIC_BLOCK 1
313#define FIRST_LOCAL_BLOCK 2
314
bd5635a1
RP
315struct block
316{
317 /* Addresses in the executable code that are in this block.
318 Note: in an unrelocated symbol segment in a file,
319 these are always zero. They can be filled in from the
320 N_LBRAC and N_RBRAC symbols in the loader symbol table. */
321 CORE_ADDR startaddr, endaddr;
322 /* The symbol that names this block,
323 if the block is the body of a function;
324 otherwise, zero.
325 Note: In an unrelocated symbol segment in an object file,
326 this field may be zero even when the block has a name.
327 That is because the block is output before the name
328 (since the name resides in a higher block).
329 Since the symbol does point to the block (as its value),
330 it is possible to find the block and set its name properly. */
331 struct symbol *function;
332 /* The `struct block' for the containing block, or 0 if none. */
333 /* Note that in an unrelocated symbol segment in an object file
334 this pointer may be zero when the correct value should be
335 the second special block (for symbols whose scope is one compilation).
336 This is because the compiler ouptuts the special blocks at the
337 very end, after the other blocks. */
338 struct block *superblock;
339 /* A flag indicating whether or not the fucntion corresponding
340 to this block was compiled with gcc or not. If there is no
341 function corresponding to this block, this meaning of this flag
342 is undefined. (In practice it will be 1 if the block was created
343 while processing a file compiled with gcc and 0 when not). */
344 unsigned char gcc_compile_flag;
345 /* Number of local symbols. */
346 int nsyms;
347 /* The symbols. */
348 struct symbol *sym[1];
349};
350\f
351/* Represent one symbol name; a variable, constant, function or typedef. */
352
353/* Different name spaces for symbols. Looking up a symbol specifies
354 a namespace and ignores symbol definitions in other name spaces.
355
356 VAR_NAMESPACE is the usual namespace.
357 In C, this contains variables, function names, typedef names
358 and enum type values.
359
360 STRUCT_NAMESPACE is used in C to hold struct, union and enum type names.
361 Thus, if `struct foo' is used in a C program,
362 it produces a symbol named `foo' in the STRUCT_NAMESPACE.
363
364 LABEL_NAMESPACE may be used for names of labels (for gotos);
365 currently it is not used and labels are not recorded at all. */
366
367/* For a non-global symbol allocated statically,
368 the correct core address cannot be determined by the compiler.
369 The compiler puts an index number into the symbol's value field.
370 This index number can be matched with the "desc" field of
371 an entry in the loader symbol table. */
372
373enum namespace
374{
0a5d35ed 375 UNDEF_NAMESPACE, VAR_NAMESPACE, STRUCT_NAMESPACE, LABEL_NAMESPACE
bd5635a1
RP
376};
377
378/* An address-class says where to find the value of a symbol. */
379
380enum address_class
381{
382 LOC_UNDEF, /* Not used; catches errors */
383 LOC_CONST, /* Value is constant int SYMBOL_VALUE, host byteorder */
384 LOC_STATIC, /* Value is at fixed address SYMBOL_VALUE_ADDRESS */
385 LOC_REGISTER, /* Value is in register */
386 LOC_ARG, /* Value is at spec'd offset in arglist */
387 LOC_REF_ARG, /* Value address is at spec'd offset in arglist. */
388 LOC_REGPARM, /* Value is at spec'd offset in register window */
389 LOC_LOCAL, /* Value is at spec'd offset in stack frame */
390 LOC_TYPEDEF, /* Value not used; definition in SYMBOL_TYPE
391 Symbols in the namespace STRUCT_NAMESPACE
392 all have this class. */
393 LOC_LABEL, /* Value is address SYMBOL_VALUE_ADDRESS in the code */
394 LOC_BLOCK, /* Value is address SYMBOL_VALUE_BLOCK of a
395 `struct block'. Function names have this class. */
bd5635a1
RP
396 LOC_CONST_BYTES, /* Value is a constant byte-sequence pointed to by
397 SYMBOL_VALUE_ADDRESS, in target byte order. */
0a5d35ed 398 LOC_LOCAL_ARG /* Value is arg at spec'd offset in stack frame.
bd5635a1
RP
399 Differs from LOC_LOCAL in that symbol is an
400 argument; differs from LOC_ARG in that we find it
401 in the frame (FRAME_LOCALS_ADDRESS), not in the
402 arglist (FRAME_ARGS_ADDRESS). Added for i960,
403 which passes args in regs then copies to frame. */
404};
405
406struct symbol
407{
408 /* Symbol name */
409 char *name;
410 /* Name space code. */
411 enum namespace namespace;
412 /* Address class */
413 enum address_class class;
414 /* Data type of value */
415 struct type *type;
416
417 /* Line number of definition. */
418 unsigned short line;
419
420 /* constant value, or address if static, or register number,
421 or offset in arguments, or offset in stack frame. All of
422 these are in host byte order (though what they point to might
423 be in target byte order, e.g. LOC_CONST_BYTES). */
424 union
425 {
426 long value; /* for LOC_CONST, LOC_REGISTER, LOC_ARG,
427 LOC_REF_ARG, LOC_REGPARM, LOC_LOCAL */
428 struct block *block; /* for LOC_BLOCK */
429 char *bytes; /* for LOC_CONST_BYTES */
4a35d6e9 430 CORE_ADDR address; /* for LOC_STATIC, LOC_LABEL */
bd5635a1
RP
431 struct symbol *chain; /* for opaque typedef struct chain */
432 }
433 value;
434};
435
436
437/* A partial_symbol records the name, namespace, and address class of
438 symbols whose types we have not parsed yet. For functions, it also
439 contains their memory address, so we can find them from a PC value.
440 Each partial_symbol sits in a partial_symtab, all of which are chained
441 on the partial_symtab_list and which points to the corresponding
442 normal symtab once the partial_symtab has been referenced. */
443
444struct partial_symbol
445{
446 /* Symbol name */
447 char *name;
448 /* Name space code. */
449 enum namespace namespace;
450 /* Address class (for info_symbols) */
451 enum address_class class;
452 /* Value (only used for static functions currently). Done this
453 way so that we can use the struct symbol macros.
454 Note that the address of a function is SYMBOL_VALUE_ADDRESS (pst)
455 in a partial symbol table, but BLOCK_START (SYMBOL_BLOCK_VALUE (st))
456 in a symbol table. */
457 union
458 {
459 long value;
460 CORE_ADDR address;
461 }
462 value;
463};
464\f
465/* Source-file information.
466 This describes the relation between source files and line numbers
467 and addresses in the program text. */
468
469struct sourcevector
470{
471 int length; /* Number of source files described */
472 struct source *source[1]; /* Descriptions of the files */
473};
474
475/* Each item represents a line-->pc (or the reverse) mapping. This is
476 somewhat more wasteful of space than one might wish, but since only
477 the files which are actually debugged are read in to core, we don't
478 waste much space.
479
480 Each item used to be an int; either minus a line number, or a
481 program counter. If it represents a line number, that is the line
482 described by the next program counter value. If it is positive, it
483 is the program counter at which the code for the next line starts. */
484
485struct linetable_entry
486{
487 int line;
488 CORE_ADDR pc;
489};
490
491struct linetable
492{
493 int nitems;
494 struct linetable_entry item[1];
495};
496
497/* All the information on one source file. */
498
499struct source
500{
501 char *name; /* Name of file */
502 struct linetable contents;
503};
504
505/* Each source file is represented by a struct symtab.
506 These objects are chained through the `next' field. */
507
508struct symtab
509 {
510 /* Chain of all existing symtabs. */
511 struct symtab *next;
512 /* List of all symbol scope blocks for this symtab. */
513 struct blockvector *blockvector;
4137c5fc
JG
514 /* Table mapping core addresses to line numbers for this file.
515 Can be NULL if none. */
bd5635a1 516 struct linetable *linetable;
bd5635a1
RP
517 /* Name of this source file. */
518 char *filename;
519 /* Directory in which it was compiled, or NULL if we don't know. */
520 char *dirname;
521 /* This component says how to free the data we point to:
522 free_contents => do a tree walk and free each object.
523 free_nothing => do nothing; some other symtab will free
524 the data this one uses.
525 free_linetable => free just the linetable. */
526 enum free_code {free_nothing, free_contents, free_linetable}
527 free_code;
528 /* Pointer to one block of storage to be freed, if nonzero. */
529 /* This is IN ADDITION to the action indicated by free_code. */
530 char *free_ptr;
531 /* Total number of lines found in source file. */
532 int nlines;
533 /* Array mapping line number to character position. */
534 int *line_charpos;
535 /* Language of this source file. */
536 enum language language;
537 /* String of version information. May be zero. */
538 char *version;
539 /* Full name of file as found by searching the source path.
540 0 if not yet known. */
541 char *fullname;
8aa13b87 542
a048c8f5
JG
543 /* Object file from which this symbol information was read. */
544 struct objfile *objfile;
545 /* Chain of all symtabs owned by that objfile. */
546 struct symtab *objfile_chain;
547
8aa13b87
JK
548 /* Anything extra for this symtab. This is for target machines
549 with special debugging info of some sort (which cannot just
550 be represented in a normal symtab). */
551#if defined (EXTRA_SYMTAB_INFO)
552 EXTRA_SYMTAB_INFO
553#endif
bd5635a1
RP
554 };
555
556/* Each source file that has not been fully read in is represented by
557 a partial_symtab. This contains the information on where in the
558 executable the debugging symbols for a specific file are, and a
559 list of names of global symbols which are located in this file.
560 They are all chained on partial_symtab_list.
561
562 Even after the source file has been read into a symtab, the
563 partial_symtab remains around. They are allocated on an obstack,
564 psymbol_obstack. FIXME, this is bad for dynamic linking or VxWorks-
565 style execution of a bunch of .o's. */
566struct partial_symtab
567{
568 /* Chain of all existing partial symtabs. */
569 struct partial_symtab *next;
570 /* Name of the source file which this partial_symtab defines */
571 char *filename;
572
a048c8f5
JG
573 /* Information about the object file from which symbols should be read. */
574 struct objfile *objfile;
575 /* Chain of psymtabs owned by this objfile */
576 struct partial_symtab *objfile_chain;
577
bd5635a1
RP
578 /* Address relative to which the symbols in this file are. Need to
579 relocate by this amount when reading in symbols from the symbol
580 file. */
581 CORE_ADDR addr;
bd5635a1
RP
582 /* Range of text addresses covered by this file; texthigh is the
583 beginning of the next section. */
584 CORE_ADDR textlow, texthigh;
585 /* Array of pointers to all of the partial_symtab's which this one
586 depends on. Since this array can only be set to previous or
587 the current (?) psymtab, this dependency tree is guaranteed not
588 to have any loops. */
589 struct partial_symtab **dependencies;
590 int number_of_dependencies;
591 /* Global symbol list. This list will be sorted after readin to
592 improve access. Binary search will be the usual method of
593 finding a symbol within it. globals_offset is an integer offset
4a35d6e9 594 within global_psymbols[]. */
bd5635a1
RP
595 int globals_offset, n_global_syms;
596 /* Static symbol list. This list will *not* be sorted after readin;
597 to find a symbol in it, exhaustive search must be used. This is
598 reasonable because searches through this list will eventually
599 lead to either the read in of a files symbols for real (assumed
600 to take a *lot* of time; check) or an error (and we don't care
4a35d6e9
FF
601 how long errors take). This is an offset and size within
602 static_psymbols[]. */
bd5635a1
RP
603 int statics_offset, n_static_syms;
604 /* Pointer to symtab eventually allocated for this source file, 0 if
605 !readin or if we haven't looked for the symtab after it was readin. */
606 struct symtab *symtab;
607 /* Pointer to function which will read in the symtab corresponding to
608 this psymtab. */
609 void (*read_symtab) ();
4a35d6e9
FF
610 /* Information that lets read_symtab() locate the part of the symbol table
611 that this psymtab corresponds to. This information is private to the
612 format-dependent symbol reading routines. For further detail examine
613 the various symbol reading modules. Should really be (void *) but is
614 (char *) as with other such gdb variables. (FIXME) */
615 char *read_symtab_private;
bd5635a1
RP
616 /* Non-zero if the symtab corresponding to this psymtab has been
617 readin */
618 unsigned char readin;
619};
620
621/* A fast way to get from a psymtab to its symtab (after the first time). */
622#define PSYMTAB_TO_SYMTAB(pst) ((pst)->symtab? \
623 (pst)->symtab: \
624 psymtab_to_symtab (pst) )
625
626/* This is the list of struct symtab's that gdb considers current. */
627
628struct symtab *symtab_list;
629
630/* This is the list of struct partial_symtab's that gdb may need to access */
631
632struct partial_symtab *partial_symtab_list;
633
634/* This symtab variable specifies the current file for printing source lines */
635
636struct symtab *current_source_symtab;
637
638/* This is the next line to print for listing source lines. */
639
640int current_source_line;
641
bd5635a1
RP
642#define BLOCKVECTOR(symtab) (symtab)->blockvector
643
bd5635a1
RP
644#define LINETABLE(symtab) (symtab)->linetable
645\f
646/* Macros normally used to access components of symbol table structures. */
647
bd5635a1
RP
648#define BLOCKVECTOR_NBLOCKS(blocklist) (blocklist)->nblocks
649#define BLOCKVECTOR_BLOCK(blocklist,n) (blocklist)->block[n]
650
bd5635a1
RP
651#define BLOCK_START(bl) (bl)->startaddr
652#define BLOCK_END(bl) (bl)->endaddr
653#define BLOCK_NSYMS(bl) (bl)->nsyms
654#define BLOCK_SYM(bl, n) (bl)->sym[n]
655#define BLOCK_FUNCTION(bl) (bl)->function
656#define BLOCK_SUPERBLOCK(bl) (bl)->superblock
657#define BLOCK_GCC_COMPILED(bl) (bl)->gcc_compile_flag
658
659/* Nonzero if symbols of block BL should be sorted alphabetically. */
660#define BLOCK_SHOULD_SORT(bl) ((bl)->nsyms >= 40)
661
662#define SYMBOL_NAME(symbol) (symbol)->name
663#define SYMBOL_NAMESPACE(symbol) (symbol)->namespace
664#define SYMBOL_CLASS(symbol) (symbol)->class
665#define SYMBOL_VALUE(symbol) (symbol)->value.value
666#define SYMBOL_VALUE_ADDRESS(symbol) (symbol)->value.address
667#define SYMBOL_VALUE_BYTES(symbol) (symbol)->value.bytes
668#define SYMBOL_BLOCK_VALUE(symbol) (symbol)->value.block
669#define SYMBOL_VALUE_CHAIN(symbol) (symbol)->value.chain
670#define SYMBOL_TYPE(symbol) (symbol)->type
671#define SYMBOL_LINE(symbol) (symbol)->line
672
673#define TYPE_NAME(thistype) (thistype)->name
674#define TYPE_TARGET_TYPE(thistype) (thistype)->target_type
675#define TYPE_POINTER_TYPE(thistype) (thistype)->pointer_type
676#define TYPE_REFERENCE_TYPE(thistype) (thistype)->reference_type
677#define TYPE_FUNCTION_TYPE(thistype) (thistype)->function_type
bd5635a1
RP
678#define TYPE_LENGTH(thistype) (thistype)->length
679#define TYPE_FLAGS(thistype) (thistype)->flags
680#define TYPE_UNSIGNED(thistype) ((thistype)->flags & TYPE_FLAG_UNSIGNED)
681#define TYPE_CODE(thistype) (thistype)->code
682#define TYPE_NFIELDS(thistype) (thistype)->nfields
683#define TYPE_FIELDS(thistype) (thistype)->fields
684/* C++ */
685#define TYPE_VPTR_BASETYPE(thistype) (thistype)->vptr_basetype
686#define TYPE_DOMAIN_TYPE(thistype) (thistype)->vptr_basetype
687#define TYPE_VPTR_FIELDNO(thistype) (thistype)->vptr_fieldno
d018c8a6
FF
688#define TYPE_FN_FIELDS(thistype) TYPE_CPLUS_SPECIFIC(thistype)->fn_fields
689#define TYPE_NFN_FIELDS(thistype) TYPE_CPLUS_SPECIFIC(thistype)->nfn_fields
690#define TYPE_NFN_FIELDS_TOTAL(thistype) TYPE_CPLUS_SPECIFIC(thistype)->nfn_fields_total
67c29f75 691#define TYPE_TYPE_SPECIFIC(thistype) (thistype)->type_specific
d018c8a6
FF
692#define TYPE_ARG_TYPES(thistype) (thistype)->type_specific.arg_types
693#define TYPE_CPLUS_SPECIFIC(thistype) (thistype)->type_specific.cplus_stuff
bd5635a1 694#define TYPE_BASECLASS(thistype,index) (thistype)->fields[index].type
d018c8a6 695#define TYPE_N_BASECLASSES(thistype) TYPE_CPLUS_SPECIFIC(thistype)->n_baseclasses
bd5635a1
RP
696#define TYPE_BASECLASS_NAME(thistype,index) (thistype)->fields[index].name
697#define TYPE_BASECLASS_BITPOS(thistype,index) (thistype)->fields[index].bitpos
698#define BASETYPE_VIA_PUBLIC(thistype, index) (!TYPE_FIELD_PRIVATE(thistype, index))
d018c8a6
FF
699#define BASETYPE_VIA_VIRTUAL(thistype, index) \
700 B_TST(TYPE_CPLUS_SPECIFIC(thistype)->virtual_field_bits, (index))
bd5635a1
RP
701
702#define TYPE_FIELD(thistype, n) (thistype)->fields[n]
703#define TYPE_FIELD_TYPE(thistype, n) (thistype)->fields[n].type
704#define TYPE_FIELD_NAME(thistype, n) (thistype)->fields[n].name
705#define TYPE_FIELD_VALUE(thistype, n) (* (int*) &(thistype)->fields[n].type)
706#define TYPE_FIELD_BITPOS(thistype, n) (thistype)->fields[n].bitpos
707#define TYPE_FIELD_BITSIZE(thistype, n) (thistype)->fields[n].bitsize
708#define TYPE_FIELD_PACKED(thistype, n) (thistype)->fields[n].bitsize
709
d018c8a6
FF
710#define TYPE_FIELD_PRIVATE_BITS(thistype) \
711 TYPE_CPLUS_SPECIFIC(thistype)->private_field_bits
712#define TYPE_FIELD_PROTECTED_BITS(thistype) \
713 TYPE_CPLUS_SPECIFIC(thistype)->protected_field_bits
714#define TYPE_FIELD_VIRTUAL_BITS(thistype) \
715 TYPE_CPLUS_SPECIFIC(thistype)->virtual_field_bits
716#define SET_TYPE_FIELD_PRIVATE(thistype, n) \
717 B_SET (TYPE_CPLUS_SPECIFIC(thistype)->private_field_bits, (n))
718#define SET_TYPE_FIELD_PROTECTED(thistype, n) \
719 B_SET (TYPE_CPLUS_SPECIFIC(thistype)->protected_field_bits, (n))
720#define SET_TYPE_FIELD_VIRTUAL(thistype, n) \
721 B_SET (TYPE_CPLUS_SPECIFIC(thistype)->virtual_field_bits, (n))
722#define TYPE_FIELD_PRIVATE(thistype, n) \
7e258d18
PB
723 (TYPE_CPLUS_SPECIFIC(thistype)->private_field_bits == NULL ? 0 \
724 : B_TST(TYPE_CPLUS_SPECIFIC(thistype)->private_field_bits, (n)))
d018c8a6 725#define TYPE_FIELD_PROTECTED(thistype, n) \
7e258d18
PB
726 (TYPE_CPLUS_SPECIFIC(thistype)->protected_field_bits == NULL ? 0 \
727 : B_TST(TYPE_CPLUS_SPECIFIC(thistype)->protected_field_bits, (n)))
d018c8a6
FF
728#define TYPE_FIELD_VIRTUAL(thistype, n) \
729 B_TST(TYPE_CPLUS_SPECIFIC(thistype)->virtual_field_bits, (n))
bd5635a1
RP
730
731#define TYPE_FIELD_STATIC(thistype, n) ((thistype)->fields[n].bitpos == -1)
732#define TYPE_FIELD_STATIC_PHYSNAME(thistype, n) ((char *)(thistype)->fields[n].bitsize)
733
d018c8a6
FF
734#define TYPE_FN_FIELDLISTS(thistype) TYPE_CPLUS_SPECIFIC(thistype)->fn_fieldlists
735#define TYPE_FN_FIELDLIST(thistype, n) TYPE_CPLUS_SPECIFIC(thistype)->fn_fieldlists[n]
736#define TYPE_FN_FIELDLIST1(thistype, n) TYPE_CPLUS_SPECIFIC(thistype)->fn_fieldlists[n].fn_fields
737#define TYPE_FN_FIELDLIST_NAME(thistype, n) TYPE_CPLUS_SPECIFIC(thistype)->fn_fieldlists[n].name
738#define TYPE_FN_FIELDLIST_LENGTH(thistype, n) TYPE_CPLUS_SPECIFIC(thistype)->fn_fieldlists[n].length
739
740#define TYPE_FN_FIELD(thisfn, n) (thisfn)[n]
741#define TYPE_FN_FIELD_NAME(thisfn, n) (thisfn)[n].name
742#define TYPE_FN_FIELD_TYPE(thisfn, n) (thisfn)[n].type
743#define TYPE_FN_FIELD_ARGS(thisfn, n) TYPE_ARG_TYPES ((thisfn)[n].type)
744#define TYPE_FN_FIELD_PHYSNAME(thisfn, n) (thisfn)[n].physname
745#define TYPE_FN_FIELD_VIRTUAL_P(thisfn, n) ((thisfn)[n].voffset > 1)
746#define TYPE_FN_FIELD_STATIC_P(thisfn, n) ((thisfn)[n].voffset == VOFFSET_STATIC)
747#define TYPE_FN_FIELD_VOFFSET(thisfn, n) ((thisfn)[n].voffset-2)
748#define TYPE_FN_FIELD_FCONTEXT(thisfn, n) ((thisfn)[n].fcontext)
0a5d35ed
SG
749#define TYPE_FN_FIELD_STUB(thisfn, n) ((thisfn)[n].is_stub)
750#define TYPE_FN_FIELD_PRIVATE(thisfn, n) ((thisfn)[n].is_private)
751#define TYPE_FN_FIELD_PROTECTED(thisfn, n) ((thisfn)[n].is_protected)
bd5635a1
RP
752
753/* The virtual function table is now an array of structures
754 which have the form { int16 offset, delta; void *pfn; }.
aec4cb91 755
ea9cdf62
JK
756 In normal virtual function tables, OFFSET is unused.
757 DELTA is the amount which is added to the apparent object's base
758 address in order to point to the actual object to which the
759 virtual function should be applied.
760 PFN is a pointer to the virtual function. */
bd5635a1
RP
761
762#define VTBL_FNADDR_OFFSET 2
ea9cdf62
JK
763
764/* Macro that yields non-zero value iff NAME is the prefix
765 for C++ operator names. If you leave out the parenthesis
766 here you will lose!
767
768 Currently 'o' 'p' CPLUS_MARKER is used for both the symbol in the
769 symbol-file and the names in gdb's symbol table. */
770#define OPNAME_PREFIX_P(NAME) ((NAME)[0] == 'o' && (NAME)[1] == 'p' \
771 && (NAME)[2] == CPLUS_MARKER)
772
773#define VTBL_PREFIX_P(NAME) ((NAME)[3] == CPLUS_MARKER \
774 && !strncmp ((NAME), "_vt", 3))
bd5635a1
RP
775\f
776/* Functions that work on the objects described above */
777
778extern struct symtab *lookup_symtab ();
779extern struct symbol *lookup_symbol ();
780extern struct symbol *lookup_block_symbol ();
781extern int lookup_misc_func ();
782extern void check_stub_type ();
783extern void check_stub_method ();
784extern struct type *lookup_primitive_typename ();
785extern struct type *lookup_typename ();
786extern struct type *lookup_unsigned_typename ();
787extern struct type *lookup_struct ();
788extern struct type *lookup_union ();
789extern struct type *lookup_enum ();
790extern struct type *lookup_struct_elt_type ();
791extern struct type *lookup_pointer_type ();
792extern struct type *lookup_function_type ();
bd5635a1
RP
793extern struct type *create_array_type ();
794extern struct symbol *block_function ();
795extern struct symbol *find_pc_function ();
796extern int find_pc_partial_function ();
4a35d6e9 797extern void clear_pc_function_cache ();
bd5635a1
RP
798extern struct partial_symtab *lookup_partial_symtab ();
799extern struct partial_symtab *find_pc_psymtab ();
800extern struct symtab *find_pc_symtab ();
801extern struct partial_symbol *find_pc_psymbol ();
802extern int find_pc_misc_function ();
803extern int find_pc_line_pc_range ();
804extern char *type_name_no_tag ();
805extern int contained_in();
806
807/* C++ stuff. */
d018c8a6 808extern struct type *lookup_template_type ();
bd5635a1
RP
809extern struct type *lookup_reference_type ();
810extern struct type *lookup_member_type ();
bd5635a1 811extern void smash_to_method_type ();
e1ce8aa5
JK
812void smash_to_member_type (
813#ifdef __STDC__
814 struct type *, struct type *, struct type *
815#endif
816 );
ea9cdf62 817extern struct type *allocate_stub_method ();
bd5635a1
RP
818/* end of C++ stuff. */
819
bd5635a1
RP
820extern void reread_symbols ();
821
822extern struct type *builtin_type_void;
823extern struct type *builtin_type_char;
824extern struct type *builtin_type_short;
825extern struct type *builtin_type_int;
826extern struct type *builtin_type_long;
827extern struct type *builtin_type_unsigned_char;
828extern struct type *builtin_type_unsigned_short;
829extern struct type *builtin_type_unsigned_int;
830extern struct type *builtin_type_unsigned_long;
831extern struct type *builtin_type_float;
832extern struct type *builtin_type_double;
e2aab031
FF
833extern struct type *builtin_type_long_double;
834extern struct type *builtin_type_complex;
835extern struct type *builtin_type_double_complex;
bd5635a1
RP
836/* This type represents a type that was unrecognized in symbol
837 read-in. */
838extern struct type *builtin_type_error;
839
bd5635a1
RP
840extern struct type *builtin_type_long_long;
841extern struct type *builtin_type_unsigned_long_long;
842
4a35d6e9
FF
843/* Modula-2 types */
844extern struct type *builtin_type_m2_char;
845extern struct type *builtin_type_m2_int;
846extern struct type *builtin_type_m2_card;
847extern struct type *builtin_type_m2_real;
848extern struct type *builtin_type_m2_bool;
849
ea9cdf62
JK
850/* LONG_LONG is defined if the host has "long long". */
851#ifdef LONG_LONG
bd5635a1
RP
852#define BUILTIN_TYPE_LONGEST builtin_type_long_long
853#define BUILTIN_TYPE_UNSIGNED_LONGEST builtin_type_unsigned_long_long
854/* This should not be a typedef, because "unsigned LONGEST" needs
855 to work. */
856#define LONGEST long long
857
858#else /* not LONG_LONG. */
859
860#define BUILTIN_TYPE_LONGEST builtin_type_long
861#define BUILTIN_TYPE_UNSIGNED_LONGEST builtin_type_unsigned_long
862#define LONGEST long
863
864#endif /* not LONG_LONG. */
865
866struct symtab_and_line
867{
868 struct symtab *symtab;
869 int line;
870 CORE_ADDR pc;
871 CORE_ADDR end;
872};
873
874struct symtabs_and_lines
875{
876 struct symtab_and_line *sals;
877 int nelts;
878};
879
880/* Given a pc value, return line number it is in.
881 Second arg nonzero means if pc is on the boundary
882 use the previous statement's line number. */
883
884struct symtab_and_line find_pc_line ();
885
886/* Given a symtab and line number, return the pc there. */
887extern CORE_ADDR find_line_pc ();
888extern int find_line_pc_range ();
889
890/* Given a string, return the line specified by it.
891 For commands like "list" and "breakpoint". */
892
893struct symtabs_and_lines decode_line_spec ();
894struct symtabs_and_lines decode_line_spec_1 ();
895struct symtabs_and_lines decode_line_1 ();
896
5c43db6b
JG
897/* Symmisc.c */
898void free_symtab ();
899
bd5635a1
RP
900/* Symbol-reading stuff in symfile.c and solib.c. */
901struct symtab *psymtab_to_symtab ();
902void clear_solib ();
903void symbol_file_add ();
904
905/* source.c */
906int identify_source_line ();
907void print_source_lines ();
e1ce8aa5
JK
908void forget_cached_source_info (
909#ifdef __STDC__
910 void
911#endif
912 );
913void select_source_symtab (
914#ifdef __STDC__
915 struct symtab *
916#endif
917 );
bd5635a1
RP
918
919char **make_symbol_completion_list ();
920
4a35d6e9
FF
921/* Maximum and minimum values of built-in types */
922#define MAX_OF_TYPE(t) \
923 TYPE_UNSIGNED(t) ? UMAX_OF_SIZE(TYPE_LENGTH(t)) : MAX_OF_SIZE(TYPE_LENGTH(t))
924
925#define MIN_OF_TYPE(t) \
926 TYPE_UNSIGNED(t) ? UMIN_OF_SIZE(TYPE_LENGTH(t)) : MIN_OF_SIZE(TYPE_LENGTH(t))
927
bd5635a1 928#endif /* symtab.h not already included. */
This page took 0.211283 seconds and 4 git commands to generate.