PR 14125
* NEWS: Document additions to .gdb_index. * dwarf2read.c: #include "gdb/gdb-index.h". (DW2_GDB_INDEX_SYMBOL_STATIC_SET_VALUE): New macro. (DW2_GDB_INDEX_SYMBOL_KIND_SET_VALUE): New macro. (DW2_GDB_INDEX_CU_SET_VALUE): New macro. (dwarf2_read_index): Recognize version 7. (dw2_do_expand_symtabs_matching): New args want_specific_block, block_kind, domain): All callers updated. (dw2_find_symbol_file): Handle new index CU values. (dw2_expand_symtabs_matching): Match symbol kind if requested. (add_index_entry): New args is_static, kind. All callers updated. (offset_type_compare, uniquify_cu_indices): New functions (symbol_kind): New function. (write_psymtabs_to_index): Remove duplicate CU values. (write_psymtabs_to_index): Write .gdb_index version 7. doc/ * gdb.texinfo (Index Section Format): Document version 7 format. include/gdb/ * gdb-index.h: New file.
This commit is contained in:
parent
970790c681
commit
4aebe6cd45
@ -1,3 +1,7 @@
|
||||
2012-06-23 Doug Evans <dje@google.com>
|
||||
|
||||
* gdb-index.h: New file.
|
||||
|
||||
2012-05-24 Pedro Alves <palves@redhat.com>
|
||||
|
||||
PR gdb/7205
|
||||
|
99
include/gdb/gdb-index.h
Normal file
99
include/gdb/gdb-index.h
Normal file
@ -0,0 +1,99 @@
|
||||
/* Public attributes of the .gdb_index section.
|
||||
Copyright 2012 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GDB.
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
||||
|
||||
/* This file contains values for understanding the .gdb_index section
|
||||
needed by more than just GDB, e.g. readelf. */
|
||||
|
||||
#ifndef GDB_INDEX_H
|
||||
#define GDB_INDEX_H
|
||||
|
||||
/* Each symbol in .gdb_index refers to a set of CUs that defines the symbol.
|
||||
Each CU is represented by a 32 bit number that is the index of the CU in
|
||||
the CU table, plus some attributes of the use of the symbol in that CU.
|
||||
|
||||
The values are defined such that if all the bits are zero, then no
|
||||
special meaning is assigned to any of them. This is done to preserve
|
||||
compatibility with older indices. The way this is done is to specify
|
||||
that if the GDB_INDEX_SYMBOL_KIND value is zero then all other attribute
|
||||
bits must be zero.
|
||||
|
||||
0-23 CU index
|
||||
24-27 reserved
|
||||
28-30 symbol kind
|
||||
31 0 == global, 1 == static
|
||||
|
||||
Bits 24-27 are reserved because it's easier to relax restrictions than
|
||||
it is to impose them after the fact. At present 24 bits to represent
|
||||
the CU index is plenty. If we need more bits for the CU index or for
|
||||
attributes then we have them. */
|
||||
|
||||
/* Whether the symbol is in GLOBAL_BLOCK (== 0) or STATIC_BLOCK (== 1). */
|
||||
#define GDB_INDEX_SYMBOL_STATIC_SHIFT 31
|
||||
#define GDB_INDEX_SYMBOL_STATIC_MASK 1
|
||||
#define GDB_INDEX_SYMBOL_STATIC_VALUE(cu_index) \
|
||||
(((cu_index) >> GDB_INDEX_SYMBOL_STATIC_SHIFT) & GDB_INDEX_SYMBOL_STATIC_MASK)
|
||||
#define GDB_INDEX_SYMBOL_STATIC_SET_VALUE(cu_index, value) \
|
||||
do { \
|
||||
(cu_index) |= (((value) & GDB_INDEX_SYMBOL_STATIC_MASK) \
|
||||
<< GDB_INDEX_SYMBOL_STATIC_SHIFT); \
|
||||
} while (0)
|
||||
|
||||
/* The kind of the symbol.
|
||||
We don't use GDB's internal values as these numbers are published
|
||||
so that other tools can build and read .gdb_index. */
|
||||
|
||||
typedef enum {
|
||||
/* Special value to indicate no attributes are present. */
|
||||
GDB_INDEX_SYMBOL_KIND_NONE = 0,
|
||||
GDB_INDEX_SYMBOL_KIND_TYPE = 1,
|
||||
GDB_INDEX_SYMBOL_KIND_VARIABLE = 2,
|
||||
GDB_INDEX_SYMBOL_KIND_FUNCTION = 3,
|
||||
GDB_INDEX_SYMBOL_KIND_OTHER = 4,
|
||||
/* We currently allocate 3 bits to record the symbol kind.
|
||||
Give the unused bits a value so gdb will print them sensibly. */
|
||||
GDB_INDEX_SYMBOL_KIND_UNUSED5 = 5,
|
||||
GDB_INDEX_SYMBOL_KIND_UNUSED6 = 6,
|
||||
GDB_INDEX_SYMBOL_KIND_UNUSED7 = 7,
|
||||
} gdb_index_symbol_kind;
|
||||
|
||||
#define GDB_INDEX_SYMBOL_KIND_SHIFT 28
|
||||
#define GDB_INDEX_SYMBOL_KIND_MASK 7
|
||||
#define GDB_INDEX_SYMBOL_KIND_VALUE(cu_index) \
|
||||
((gdb_index_symbol_kind) (((cu_index) >> GDB_INDEX_SYMBOL_KIND_SHIFT) \
|
||||
& GDB_INDEX_SYMBOL_KIND_MASK))
|
||||
#define GDB_INDEX_SYMBOL_KIND_SET_VALUE(cu_index, value) \
|
||||
do { \
|
||||
(cu_index) |= (((value) & GDB_INDEX_SYMBOL_KIND_MASK) \
|
||||
<< GDB_INDEX_SYMBOL_KIND_SHIFT); \
|
||||
} while (0)
|
||||
|
||||
#define GDB_INDEX_RESERVED_SHIFT 24
|
||||
#define GDB_INDEX_RESERVED_MASK 15
|
||||
#define GDB_INDEX_RESERVED_VALUE(cu_index) \
|
||||
(((cu_index) >> GDB_INDEX_RESERVED_SHIFT) & GDB_INDEX_RESERVED_MASK)
|
||||
|
||||
/* CU index. */
|
||||
#define GDB_INDEX_CU_BITSIZE 24
|
||||
#define GDB_INDEX_CU_MASK ((1 << GDB_INDEX_CU_BITSIZE) - 1)
|
||||
#define GDB_INDEX_CU_VALUE(cu_index) ((cu_index) & GDB_INDEX_CU_MASK)
|
||||
#define GDB_INDEX_CU_SET_VALUE(cu_index, value) \
|
||||
do { \
|
||||
(cu_index) |= (value) & GDB_INDEX_CU_MASK; \
|
||||
} while (0)
|
||||
|
||||
#endif /* GDB_INDEX_H */
|
Loading…
x
Reference in New Issue
Block a user