diff options
author | Richard Henderson <rth@redhat.com> | 1999-06-26 15:48:47 +0000 |
---|---|---|
committer | Richard Henderson <rth@redhat.com> | 1999-06-26 15:48:47 +0000 |
commit | 241ffc3574ce94bb2ee1c184b3c74a6a16b14fab (patch) | |
tree | 8a4c3b4659a9cde0fc280b453a41dd0b6c46ee07 /bfd/dwarf2.c | |
parent | 1de43a06da1d8b9a09eddf4f1997aa57a4e531be (diff) | |
download | gdb-241ffc3574ce94bb2ee1c184b3c74a6a16b14fab.tar.gz |
David Mosberger <davidm@hpl.hp.com>
* dwarf2.c (struct dwarf2_debug): Add member dwarf_line_buffer.
(decode_line_info): Add variable STASH and initialize it to point
to the per-bfd dwarf2_debug info. Remove static variable
dwarf_line_buffer and use stash->dwarf_line_buffer in its place.
Diffstat (limited to 'bfd/dwarf2.c')
-rw-r--r-- | bfd/dwarf2.c | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/bfd/dwarf2.c b/bfd/dwarf2.c index 010d049618f..57f5482e735 100644 --- a/bfd/dwarf2.c +++ b/bfd/dwarf2.c @@ -99,6 +99,9 @@ struct dwarf2_debug { /* Length of the loaded .debug_abbrev section. */ unsigned long dwarf_abbrev_size; + + /* Buffer for decode_line_info. */ + char *dwarf_line_buffer; }; @@ -710,7 +713,7 @@ decode_line_info (unit) { bfd *abfd = unit->abfd; - static char* dwarf_line_buffer = 0; + struct dwarf2_debug *stash; struct line_info_table* table; @@ -727,7 +730,9 @@ decode_line_info (unit) bfd_vma hi_pc = 0, lo_pc = ~ (bfd_vma) 0; #endif - if (! dwarf_line_buffer) + stash = elf_tdata (abfd)->dwarf2_find_line_info; + + if (! stash->dwarf_line_buffer) { asection *msec; unsigned long size; @@ -741,7 +746,7 @@ decode_line_info (unit) } size = bfd_get_section_size_before_reloc (msec); - dwarf_line_buffer = (char*) bfd_alloc (abfd, size); + stash->dwarf_line_buffer = (char *) bfd_alloc (abfd, size); if (! dwarf_line_buffer) return 0; @@ -768,7 +773,7 @@ decode_line_info (unit) table->files = NULL; table->last_line = NULL; - line_ptr = dwarf_line_buffer + unit->line_offset; + line_ptr = stash->dwarf_line_buffer + unit->line_offset; /* read in the prologue */ lh.total_length = read_4_bytes (abfd, line_ptr); |