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 | 69dd2e2d55f35811d5bf411ad62c5073caed42d6 (patch) | |
tree | 7b60a621e2d94e698df4f0e6d8f1251fcfc33bf2 /bfd/dwarf2.c | |
parent | 1d7b28df8d646300cfc6a27be632ecdfd96f5a85 (diff) | |
download | gdb-69dd2e2d55f35811d5bf411ad62c5073caed42d6.zip gdb-69dd2e2d55f35811d5bf411ad62c5073caed42d6.tar.gz gdb-69dd2e2d55f35811d5bf411ad62c5073caed42d6.tar.bz2 |
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 010d049..57f5482 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); |