Bug 439685 compiler warning in callgrind/main.c
[valgrind.git] / coregrind / m_debuginfo / README.txt
blobf231adeb13786ac7ffe19b30641b24c066fe1466
2 On 4 Apr 06, the debuginfo reader (m_debuginfo) was majorly cleaned up
3 and restructured.  It has been a bit of a tangle for a while.  On 18 Sep 14
4 the STABS support was completely removed. The new structure looks like this:
6                   debuginfo.c 
7   
8                    readelf.c
10                   readdwarf.c
12                    storage.c
14 Each .c can only call those below it on the page.
16 storage.c contains the SegInfo structure and stuff for 
17 maintaining/searching arrays of symbols, line-numbers, and Dwarf CF 
18 info records.
20 readdwarf.c parses the relevant kind of info and call storage.c to
21 store the results.
23 readelf.c reads ELF format, hands syms directly to storage.c,
24 then delegates to readdwarf.c for debug info.  All straightforward.
26 debuginfo.c is the top-level file, and is quite small.
28 There are 2 goals to this:
30 (1) Generally tidy up something which needs tidying up
32 (2) Introduce more modularity, so as to make it easier to add
33     readers for other formats, if needed
35 Rationale for (1) and (2) are obvious.
37 Originally there was also goal (3) Simplify the stabs reader.
38 But stabs support was broken since 3.9.0 and completely removed in 3.10.0.
40 The worst thing is that it is the stabs type reader that was crashing,
41 not the stabs line-number reader.
42 Old versions of the stabs type reader can be found in the subversion repository
43 as m_debuginfo/UNUSED_STABS.txt, the stabs line-number reader was in
44 m_debuginfo/readstabs.c. The old version of this file explained more
45 about the setup.