Next: Man Pages, Previous: Trace File Format, Up: Top [Contents][Index]
.gdb_index
section formatThis section documents the index section that is created by save
gdb-index
(see Index Files). The index section is
DWARF-specific; some knowledge of DWARF is assumed in this
description.
The mapped index file format is designed to be directly
mmap
able on any architecture. In most cases, a datum is
represented using a little-endian 32-bit integer value, called an
offset_type
. Big endian machines must byte-swap the values
before using them. Exceptions to this rule are noted. The data is
laid out such that alignment is always respected.
A mapped index consists of several areas, laid out in order.
offset_type
unless otherwise noted:
GDB will only read version 4, 5, or 6 indices
by specifying set use-deprecated-index-sections on
.
GDB has a workaround for potentially broken version 7 indices so it is
currently not flagged as deprecated.
.debug_info
section. The second
element in each pair is the length of that CU. References to a CU
elsewhere in the map are done using a CU index, which is just the
0-based index into this table. Note that if there are type CUs, then
conceptually CUs and type CUs form a single list for the purposes of
CU indices.
DW_AT_high_pc
, the value is one byte beyond the end.
offset_type
value.
Each slot in the hash table consists of a pair of offset_type
values. The first value is the offset of the symbol’s name in the
constant pool. The second value is the offset of the CU vector in the
constant pool.
If both values are 0, then this slot in the hash table is empty. This is ok because while 0 is a valid constant pool index, it cannot be a valid index for both a string and a CU vector.
The hash value for a table entry is computed by applying an
iterative hash function to the symbol’s name. Starting with an
initial value of r = 0
, each (unsigned) character ‘c’ in
the string is incorporated into the hash using the formula depending on the
index version:
The formula is r = r * 67 + c - 113
.
The formula is r = r * 67 + tolower (c) - 113
.
The terminating ‘\0’ is not incorporated into the hash.
The step size used in the hash table is computed via
((hash * 17) & (size - 1)) | 1
, where ‘hash’ is the hash
value, and ‘size’ is the size of the hash table. The step size
is used to find the next candidate slot when handling a hash
collision.
The names of C++ symbols in the hash table are canonicalized. We don’t currently have a simple description of the canonicalization algorithm; if you intend to create new index sections, you must read the code.
A CU vector in the constant pool is a sequence of offset_type
values. The first value is the number of CU indices in the vector.
Each subsequent value is the index and symbol attributes of a CU in
the CU list. This element in the hash table is used to indicate which
CUs define the symbol and how the symbol is used.
See below for the format of each CU index+attributes entry.
A string in the constant pool is zero-terminated.
Attributes were added to CU index values in .gdb_index
version 7.
If a symbol has multiple uses within a CU then there is one
CU index+attributes value for each use.
The format of each CU index+attributes entry is as follows (bit 0 = LSB):
This is the index of the CU in the CU list.
These bits are reserved for future purposes and must be zero.
The kind of the symbol in the CU.
This value is reserved and should not be used.
By reserving zero the full offset_type
value is backwards compatible
with previous versions of the index.
The symbol is a type.
The symbol is a variable or an enum value.
The symbol is a function.
Any other kind of symbol.
These values are reserved.
This bit is zero if the value is global and one if it is static.
The determination of whether a symbol is global or static is complicated. The authorative reference is the file dwarf2read.c in GDB sources.
This pseudo-code describes the computation of a symbol’s kind and global/static attributes in the index.
is_external = get_attribute (die, DW_AT_external); language = get_attribute (cu_die, DW_AT_language); switch (die->tag) { case DW_TAG_typedef: case DW_TAG_base_type: case DW_TAG_subrange_type: kind = TYPE; is_static = 1; break; case DW_TAG_enumerator: kind = VARIABLE; is_static = language != CPLUS; break; case DW_TAG_subprogram: kind = FUNCTION; is_static = ! (is_external || language == ADA); break; case DW_TAG_constant: kind = VARIABLE; is_static = ! is_external; break; case DW_TAG_variable: kind = VARIABLE; is_static = ! is_external; break; case DW_TAG_namespace: kind = TYPE; is_static = 0; break; case DW_TAG_class_type: case DW_TAG_interface_type: case DW_TAG_structure_type: case DW_TAG_union_type: case DW_TAG_enumeration_type: kind = TYPE; is_static = language != CPLUS; break; default: assert (0); }
Next: Man Pages, Previous: Trace File Format, Up: Top [Contents][Index]