diff options
author | Jim Blandy <jimb@codesourcery.com> | 2002-05-16 21:00:14 +0000 |
---|---|---|
committer | Jim Blandy <jimb@codesourcery.com> | 2002-05-16 21:00:14 +0000 |
commit | 2e2761252bc9d29d6b96fce80d677991ef5c4e75 (patch) | |
tree | f909b59ecf512c63e696babe277676f678c97c4c /gdb/Makefile.in | |
parent | 2f53fe6c16e478e97398d0fad47662425b00cce3 (diff) | |
download | gdb-2e2761252bc9d29d6b96fce80d677991ef5c4e75.zip gdb-2e2761252bc9d29d6b96fce80d677991ef5c4e75.tar.gz gdb-2e2761252bc9d29d6b96fce80d677991ef5c4e75.tar.bz2 |
Teach the Dwarf 2 reader to read macro information.
* dwarf2read.c: #include "macrotab.h".
(dwarf_macinfo_buffer): New variable.
(struct dwarf2_pinfo): New members: dwarf_macinfo_buffer, and
dwarf_macinfo_size.
(DWARF_MACINFO_BUFFER, DWARF_MACINFO_SIZE): New macros.
(dwarf2_missing_macinfo_section, dwarf2_macros_too_long,
dwarf2_macros_not_terminated, dwarf2_macro_outside_file,
dwarf2_macro_unmatched_end_file, dwarf2_macro_malformed_definition,
dwarf2_macro_spaces_in_definition): New complaints.
(dwarf2_has_info): Initialize dwarf_macinfo_offset.
(dwarf2_build_psymtabs): Read the .dwarf_macinfo section.
(dwarf2_build_psymtabs_hard): Record the buffer and its size in
the partial symbol table.
(psymtab_to_symtab_1): Set the macinfo buffer and size globals
from what's recorded in the partial symbol table.
(read_file_scope): If the compilation unit has a
`DW_AT_macro_info' attribute, read its macro information.
* Makefile.in (dwarf2read.o): Depend on macrotab.h.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index e6d43ad..dfcbf8c 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -1426,7 +1426,7 @@ dwarfread.o: dwarfread.c $(bfd_h) $(buildsym_h) $(complaints_h) $(defs_h) \ dwarf2read.o: dwarf2read.c $(bfd_h) $(buildsym_h) $(defs_h) \ $(expression_h) $(gdbtypes_h) $(language_h) $(objfiles_h) \ - $(symfile_h) $(symtab_h) $(gdb_string_h) + $(symfile_h) $(symtab_h) $(gdb_string_h) $(macrotab_h) elfread.o: elfread.c $(bfd_h) $(buildsym_h) $(complaints_h) $(defs_h) \ $(gdb_stabs_h) $(objfiles_h) $(symfile_h) $(symtab_h) $(gdb_string_h) \ |