From 69dd2e2d55f35811d5bf411ad62c5073caed42d6 Mon Sep 17 00:00:00 2001 From: Richard Henderson Date: Sat, 26 Jun 1999 15:48:47 +0000 Subject: [PATCH] David Mosberger * 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. --- bfd/ChangeLog | 7 +++++++ bfd/dwarf2.c | 13 +++++++++---- 2 files changed, 16 insertions(+), 4 deletions(-) diff --git a/bfd/ChangeLog b/bfd/ChangeLog index df85e98..405f110 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,10 @@ +1999-06-26 David Mosberger + + * 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. + 1999-06-26 Ian Lance Taylor * elflink.h (elf_link_output_extsym): It's OK for a -Bsymbolic 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); -- 2.7.4