]> git.ipfire.org Git - thirdparty/elfutils.git/log
thirdparty/elfutils.git
14 years agoAdd check_self_referential_die pass to dwarflint. mjw/check_self_referential_die
Mark Wielaard [Thu, 17 Mar 2011 11:38:45 +0000 (12:38 +0100)] 
Add check_self_referential_die pass to dwarflint.

14 years agoMerge branch 'dwarf' of ssh://git.fedorahosted.org/git/elfutils into dwarf
Petr Machata [Wed, 16 Mar 2011 23:11:21 +0000 (00:11 +0100)] 
Merge branch 'dwarf' of ssh://git.fedorahosted.org/git/elfutils into dwarf

14 years agodwarflint: Better validation of .debug_line table header length
Petr Machata [Wed, 16 Mar 2011 23:10:56 +0000 (00:10 +0100)] 
dwarflint: Better validation of .debug_line table header length

14 years agoWorkaround weird (buggy) self referential DW_AT_containing_type case.
Mark Wielaard [Mon, 21 Feb 2011 15:58:26 +0000 (16:58 +0100)] 
Workaround weird (buggy) self referential DW_AT_containing_type case.

https://fedorahosted.org/pipermail/elfutils-devel/2011-February/001792.html

14 years agoAdd reference chain cycle detection.
Mark Wielaard [Mon, 21 Feb 2011 14:21:51 +0000 (15:21 +0100)] 
Add reference chain cycle detection.

14 years agoCalculate reference hash before finalizing, store in die_info.
Mark Wielaard [Fri, 18 Feb 2011 19:16:03 +0000 (20:16 +0100)] 
Calculate reference hash before finalizing, store in die_info.

Follows whole reference chain (ignoring children) and combines
local references of all dies found. Reduces number of attr_set
collisions a lot. Unfortunately there are circular reference
chains for some larger c++ programs. That was unexpected.
Needs cycle detection to figure out what is going on.

14 years agoAdd get_die_info to references, use for hash calculation.
Mark Wielaard [Fri, 18 Feb 2011 10:03:52 +0000 (11:03 +0100)] 
Add get_die_info to references, use for hash calculation.

14 years agoNever recalculate local hash, always reuse die_info stored one.
Mark Wielaard [Fri, 18 Feb 2011 08:58:28 +0000 (09:58 +0100)] 
Never recalculate local hash, always reuse die_info stored one.

14 years agoFetch local hash from pending or finalized entry die. Use it in attr_value.
Mark Wielaard [Wed, 16 Feb 2011 17:42:29 +0000 (18:42 +0100)] 
Fetch local hash from pending or finalized entry die. Use it in attr_value.

14 years agoDon't finalize entries on first go, just create and store die_info for them.
Mark Wielaard [Wed, 16 Feb 2011 08:14:23 +0000 (09:14 +0100)] 
Don't finalize entries on first go, just create and store die_info for them.

Do all finalization for the whole CU after walking the whole tree.

14 years agoCalculate local_hash only on finalizing entry, store in die_info.
Mark Wielaard [Mon, 14 Feb 2011 13:36:28 +0000 (14:36 +0100)] 
Calculate local_hash only on finalizing entry, store in die_info.

14 years agoAdd local hash for children_types.
Mark Wielaard [Fri, 21 Jan 2011 21:44:15 +0000 (22:44 +0100)] 
Add local hash for children_types.

14 years agoAdd local_hash to attributes_type and use it for die hash.
Mark Wielaard [Fri, 21 Jan 2011 09:37:08 +0000 (10:37 +0100)] 
Add local_hash to attributes_type and use it for die hash.

Skips values of reference attributes.

14 years agoTurn copier::entry into a value_reference so what_space works on it.
Mark Wielaard [Thu, 20 Jan 2011 15:23:48 +0000 (16:23 +0100)] 
Turn copier::entry into a value_reference so what_space works on it.

copier::entry is used as a value_reference when an attr_value has a
dangling reference to a DIE not yet built in the output. So make sure
its type matches that usage.

14 years agoIntroduce local_hash for dwarf_output debug_info_die.
Mark Wielaard [Thu, 20 Jan 2011 14:28:59 +0000 (15:28 +0100)] 
Introduce local_hash for dwarf_output debug_info_die.

Very simplistic local_hash implementation. Just takes tag name,
attributes and children sizes into account. But is good enough to
make all the dwarf_edit_output tests pass. Some dwarfcmp-test-self
tests fail though. it also generates a significant number of
collissions for the dwarf_output_collector attr_sets.

14 years agoAdd the *info () hack in dwarf_output, so we can rely on it for now.
Mark Wielaard [Wed, 23 Feb 2011 18:59:41 +0000 (19:59 +0100)] 
Add the *info () hack in dwarf_output, so we can rely on it for now.

14 years agoDW_AT_*_file is allowed to be zero, meaning "no file".
Mark Wielaard [Wed, 23 Feb 2011 16:26:09 +0000 (17:26 +0100)] 
DW_AT_*_file is allowed to be zero, meaning "no file".

14 years agoRemove unused output-shape from dwarf_output collector.
Mark Wielaard [Thu, 13 Jan 2011 12:09:31 +0000 (13:09 +0100)] 
Remove unused output-shape from dwarf_output collector.

14 years agodwarflint: Replace over-zealous assert with a warning
Petr Machata [Mon, 14 Mar 2011 13:19:59 +0000 (14:19 +0100)] 
dwarflint: Replace over-zealous assert with a warning

14 years agodwarflint: Fix "die chain not terminated by a null entry" for CU DIE
Petr Machata [Thu, 10 Mar 2011 15:03:18 +0000 (16:03 +0100)] 
dwarflint: Fix "die chain not terminated by a null entry" for CU DIE

- CU DIE is not part of DIE chain, it's a singleton (with optional null
  entries following it as padding)
- consequently, don't emit this message for CU DIE, and change it to full
  error for all other cases

14 years agodwarflint: Missing DW_LNE_end_sequence OK in empty line number program
Petr Machata [Thu, 10 Mar 2011 14:39:01 +0000 (15:39 +0100)] 
dwarflint: Missing DW_LNE_end_sequence OK in empty line number program

- also the fact that the line number program is empty is not a problem
  in itself, only when combined with otherwise unused file table

14 years agodwarflint: Fix last-die-has-sibling-attr message, don't let such to high-level
Petr Machata [Thu, 10 Mar 2011 13:54:09 +0000 (14:54 +0100)] 
dwarflint: Fix last-die-has-sibling-attr message, don't let such to high-level

14 years agodwarflint: Detect and diagnose empty CU
Petr Machata [Wed, 9 Mar 2011 23:51:43 +0000 (00:51 +0100)] 
dwarflint: Detect and diagnose empty CU

14 years agodwarflint: Check that CU DIE has stmt_list if children have decl_file
Petr Machata [Wed, 9 Mar 2011 20:33:31 +0000 (21:33 +0100)] 
dwarflint: Check that CU DIE has stmt_list if children have decl_file

- Mark's test case attached

14 years agodwarflint: Properly diagnose DW_AT_sibling with value of 0
Petr Machata [Wed, 9 Mar 2011 17:10:24 +0000 (18:10 +0100)] 
dwarflint: Properly diagnose DW_AT_sibling with value of 0

14 years agodwarflint: Fix attribute and form validation in .debug_abbrev and .debug_info
Petr Machata [Wed, 9 Mar 2011 12:18:18 +0000 (13:18 +0100)] 
dwarflint: Fix attribute and form validation in .debug_abbrev and .debug_info

- and a test case that used to SIGSEGV

14 years agodwarflint: Fix a SEGV for invalid address size in CU header
Petr Machata [Wed, 9 Mar 2011 01:00:28 +0000 (02:00 +0100)] 
dwarflint: Fix a SEGV for invalid address size in CU header

- read_address_size has a richer interface now.  New type error_code, which
  might be more generally useful
- adapt callers
- add test case

14 years agodwarflint: Clarify error message when CU headers can't be parsed
Petr Machata [Wed, 9 Mar 2011 00:57:25 +0000 (01:57 +0100)] 
dwarflint: Clarify error message when CU headers can't be parsed

14 years agodwarflint: Check that there's enough data for .debug_line opcode
Petr Machata [Wed, 9 Mar 2011 00:10:26 +0000 (01:10 +0100)] 
dwarflint: Check that there's enough data for .debug_line opcode

- fixes a SEGV on invalid data.  Test case provided

14 years agodwarflint: Don't let sibling address mismatches to high-level
Petr Machata [Tue, 8 Mar 2011 22:25:51 +0000 (23:25 +0100)] 
dwarflint: Don't let sibling address mismatches to high-level

14 years agodwarflint: Don't let unterminated strings in .debug_str to high-level
Petr Machata [Tue, 8 Mar 2011 22:24:53 +0000 (23:24 +0100)] 
dwarflint: Don't let unterminated strings in .debug_str to high-level

14 years agodwarflint: We should not let the abbrev code 0 propagate up
Petr Machata [Tue, 8 Mar 2011 19:09:14 +0000 (20:09 +0100)] 
dwarflint: We should not let the abbrev code 0 propagate up

14 years agodwarflint: Update TODO
Petr Machata [Tue, 8 Mar 2011 18:38:39 +0000 (19:38 +0100)] 
dwarflint: Update TODO

14 years agodwarflint: Fix the check that DIE chains are terminated with null entry
Petr Machata [Tue, 8 Mar 2011 18:35:07 +0000 (19:35 +0100)] 
dwarflint: Fix the check that DIE chains are terminated with null entry

- and turn in to strict message
- and update test cases

14 years agodwarflint: Put the --dump-offsets option to the right group
Petr Machata [Tue, 8 Mar 2011 18:20:03 +0000 (19:20 +0100)] 
dwarflint: Put the --dump-offsets option to the right group

14 years agodwarflint: Fix iteration over low-level attributes
Petr Machata [Tue, 8 Mar 2011 17:53:22 +0000 (18:53 +0100)] 
dwarflint: Fix iteration over low-level attributes

- this to allow (certainly bogus, but anyway) attribute name == 0
- test case that triggers this

14 years agodwarflint: Fail low-level cases if toplevel CU DIE has wrong tag
Petr Machata [Mon, 7 Mar 2011 16:30:15 +0000 (17:30 +0100)] 
dwarflint: Fail low-level cases if toplevel CU DIE has wrong tag

14 years agodwarflint: Check that the name of relocated section is valid
Petr Machata [Mon, 7 Mar 2011 14:57:38 +0000 (15:57 +0100)] 
dwarflint: Check that the name of relocated section is valid

14 years agodwarflint: More thorough checking of Dw4Ch7.5 (toplevel CU DIE)
Petr Machata [Mon, 7 Mar 2011 13:21:18 +0000 (14:21 +0100)] 
dwarflint: More thorough checking of Dw4Ch7.5 (toplevel CU DIE)

14 years agodwarflint: Rename readctx.{c,h} to .{cc,hh}
Petr Machata [Mon, 7 Mar 2011 12:35:53 +0000 (13:35 +0100)] 
dwarflint: Rename readctx.{c,h} to .{cc,hh}

- I had something in mind that needed the C++ bits from the rest of
  dwarflint, but that turned out to be too convoluted to be practical

14 years agodwarflint: A note in TODO
Petr Machata [Mon, 7 Mar 2011 07:04:34 +0000 (08:04 +0100)] 
dwarflint: A note in TODO

14 years agodwarflint: Add Mark's test case for the previous commit
Petr Machata [Mon, 7 Mar 2011 07:04:23 +0000 (08:04 +0100)] 
dwarflint: Add Mark's test case for the previous commit

14 years agodwarflint: Check for excess DIEs on top level
Petr Machata [Mon, 7 Mar 2011 07:04:02 +0000 (08:04 +0100)] 
dwarflint: Check for excess DIEs on top level

14 years agodwarflint: Drop useless variable prev_abbrev in check_debug_info
Petr Machata [Mon, 7 Mar 2011 06:59:55 +0000 (07:59 +0100)] 
dwarflint: Drop useless variable prev_abbrev in check_debug_info

14 years agodwarflint: Publish the option --dump-offsets
Petr Machata [Fri, 4 Mar 2011 20:28:40 +0000 (21:28 +0100)] 
dwarflint: Publish the option --dump-offsets

- must have been forgotten
- and one coding style nit

14 years agodwarflint: Add Mark's test cases
Petr Machata [Thu, 3 Mar 2011 16:47:54 +0000 (17:47 +0100)] 
dwarflint: Add Mark's test cases

14 years agodwarflint: Be lazy when looking into CU headers for check_debug_abbrev
Petr Machata [Thu, 3 Mar 2011 16:02:47 +0000 (17:02 +0100)] 
dwarflint: Be lazy when looking into CU headers for check_debug_abbrev

- And so don't complain that we have no headers in cases where we have
  no abbrevs either.
- Also consider no abbrevs a message, not an error
- Add a test case for the same

14 years agodwarflint: Fix all-dies-it
Petr Machata [Thu, 3 Mar 2011 13:24:27 +0000 (14:24 +0100)] 
dwarflint: Fix all-dies-it

- Account for the case that die.has_children and at the same time
  die.children().begin() == die.children().end()
- Change the algorithm to iterate DIEs acually in pre-order
- Add a test case

14 years agodwarflint: Fail check_debug_info test if serious error turns up
Petr Machata [Wed, 2 Mar 2011 20:32:38 +0000 (21:32 +0100)] 
dwarflint: Fail check_debug_info test if serious error turns up

- All the tracking was in place, we just forgot to actually throw the
  exception in the end.

14 years agodwarflint: Check that the relocation is formed using a defined symbol
Petr Machata [Tue, 1 Mar 2011 16:54:54 +0000 (17:54 +0100)] 
dwarflint: Check that the relocation is formed using a defined symbol

14 years agodwarflint: More checks on invalid section indices in relocations
Petr Machata [Tue, 1 Mar 2011 16:48:37 +0000 (17:48 +0100)] 
dwarflint: More checks on invalid section indices in relocations

14 years agodwarflint: Extract the relocation logic itself to a function
Petr Machata [Tue, 1 Mar 2011 12:56:27 +0000 (13:56 +0100)] 
dwarflint: Extract the relocation logic itself to a function

14 years agoFix handling of invalid relocs
Petr Machata [Tue, 1 Mar 2011 11:43:11 +0000 (12:43 +0100)] 
Fix handling of invalid relocs

14 years agoNits
Petr Machata [Fri, 25 Feb 2011 18:21:30 +0000 (19:21 +0100)] 
Nits

14 years agoGet rid of pri::locexpr_opcode
Petr Machata [Fri, 25 Feb 2011 18:14:13 +0000 (19:14 +0100)] 
Get rid of pri::locexpr_opcode

14 years agoDrop pri::form
Petr Machata [Fri, 25 Feb 2011 14:25:16 +0000 (15:25 +0100)] 
Drop pri::form

14 years agoDrop pri::tag, pri::attr
Petr Machata [Fri, 25 Feb 2011 14:19:54 +0000 (15:19 +0100)] 
Drop pri::tag, pri::attr

- dwarf::tags::name, dwarf::attributes::name should be used instead

14 years agoUse dwarf::{attributes,tags}::name instead of dwarf_{attr,tag}_string
Petr Machata [Fri, 25 Feb 2011 14:06:14 +0000 (15:06 +0100)] 
Use dwarf::{attributes,tags}::name instead of dwarf_{attr,tag}_string

14 years agoMerge branch 'dwarf' of ssh://git.fedorahosted.org/git/elfutils into dwarf
Petr Machata [Fri, 25 Feb 2011 13:39:41 +0000 (14:39 +0100)] 
Merge branch 'dwarf' of ssh://git.fedorahosted.org/git/elfutils into dwarf

14 years agotests/run-dwarfcmp-self.sh dwarflint is in its own directory now.
Mark Wielaard [Wed, 23 Feb 2011 22:06:20 +0000 (23:06 +0100)] 
tests/run-dwarfcmp-self.sh dwarflint is in its own directory now.

14 years agoDon't use dwarf_tag_string, but dwarf::tags::name for dwarf_edit_output test.
Mark Wielaard [Fri, 25 Feb 2011 12:45:14 +0000 (13:45 +0100)] 
Don't use dwarf_tag_string, but dwarf::tags::name for dwarf_edit_output test.

14 years agoMerge over dwarf string fixes from readelf master to dwarfstrings.
Mark Wielaard [Fri, 25 Feb 2011 12:04:21 +0000 (13:04 +0100)] 
Merge over dwarf string fixes from readelf master to dwarfstrings.

* src/dwarfstrings.c (dwarf_tag_string): Add type_unit,
rvalue_reference_type and template_alias.
(dwarf_tag_string): Add GNU_* tags.
(dwarf_attr_string): Add signature, main_subprogram, const_expr
and enum_class.

14 years agoAdjust location_attribute::const_iterator to changes in range_list iterator
Petr Machata [Fri, 25 Feb 2011 11:05:16 +0000 (12:05 +0100)] 
Adjust location_attribute::const_iterator to changes in range_list iterator

14 years agoUse __libdw_formptr in ranges iterator
Petr Machata [Fri, 25 Feb 2011 11:13:53 +0000 (12:13 +0100)] 
Use __libdw_formptr in ranges iterator

14 years agoTemporarily export __libdw_formptr for use by C++ code.
Roland McGrath [Thu, 24 Feb 2011 23:33:47 +0000 (15:33 -0800)] 
Temporarily export __libdw_formptr for use by C++ code.

14 years agoMake libdwP.h internal declarations C++-compatible.
Roland McGrath [Thu, 24 Feb 2011 23:25:43 +0000 (15:25 -0800)] 
Make libdwP.h internal declarations C++-compatible.

14 years agoFix dwarf_path_finder::jump for the general case.
Roland McGrath [Thu, 24 Feb 2011 23:11:58 +0000 (15:11 -0800)] 
Fix dwarf_path_finder::jump for the general case.

14 years agoPut the slow dwarfcmp tests last.
Roland McGrath [Thu, 24 Feb 2011 22:40:44 +0000 (14:40 -0800)] 
Put the slow dwarfcmp tests last.

14 years agoHandle DW_AT_linkage_name in dwarf_attr_string and dwarf-knowledge
Petr Machata [Wed, 23 Feb 2011 21:56:45 +0000 (22:56 +0100)] 
Handle DW_AT_linkage_name in dwarf_attr_string and dwarf-knowledge

14 years agoMerge branch 'dwarf' of ssh://git.fedorahosted.org/git/elfutils into dwarf
Petr Machata [Wed, 23 Feb 2011 20:55:32 +0000 (21:55 +0100)] 
Merge branch 'dwarf' of ssh://git.fedorahosted.org/git/elfutils into dwarf

14 years agodwarflint: Allow per-form configuration of CU bitness where form may appear
Petr Machata [Wed, 23 Feb 2011 20:52:44 +0000 (21:52 +0100)] 
dwarflint: Allow per-form configuration of CU bitness where form may appear

14 years agodwarflint: DW_AT_GNU_odr_signature is 8-byte constant
Petr Machata [Wed, 23 Feb 2011 20:31:14 +0000 (21:31 +0100)] 
dwarflint: DW_AT_GNU_odr_signature is 8-byte constant

- make dwarf_version::form_allowed virtual.  Override in dwarf_gnu to
  force the right exact

14 years agodwarflint: form::width takes cu_head, not cu argument
Petr Machata [Wed, 23 Feb 2011 19:44:34 +0000 (20:44 +0100)] 
dwarflint: form::width takes cu_head, not cu argument

- also the argument may be NULL, in which case the width may end up being
  fw_unknown

14 years agoAdd DW_AT_GNU_odr_signature expected value space.
Roland McGrath [Wed, 23 Feb 2011 18:54:30 +0000 (10:54 -0800)] 
Add DW_AT_GNU_odr_signature expected value space.

14 years agoAdd license boilerplate to src/dwarfstrings.*
Petr Machata [Wed, 23 Feb 2011 16:20:01 +0000 (17:20 +0100)] 
Add license boilerplate to src/dwarfstrings.*

- took the boilerplate from readelf.c, since that's where the code
  originated

14 years agoDon't emit two error messages for invalid attribute form
Petr Machata [Wed, 23 Feb 2011 16:12:58 +0000 (17:12 +0100)] 
Don't emit two error messages for invalid attribute form

- and add space to "complain" error message

14 years agoAdd DW_AT_GNU_* to dwarf_attr_string
Petr Machata [Wed, 23 Feb 2011 16:00:35 +0000 (17:00 +0100)] 
Add DW_AT_GNU_* to dwarf_attr_string

14 years agoRevamp dwarf_path_finder, should be more efficient.
Roland McGrath [Fri, 18 Feb 2011 22:59:21 +0000 (14:59 -0800)] 
Revamp dwarf_path_finder, should be more efficient.

14 years agoMerge commit 'elfutils-0.152' into dwarf
Roland McGrath [Tue, 15 Feb 2011 17:34:08 +0000 (09:34 -0800)] 
Merge commit 'elfutils-0.152' into dwarf

14 years agoPrepare 0.152 release. elfutils-0.152
Ulrich Drepper [Tue, 15 Feb 2011 14:36:26 +0000 (09:36 -0500)] 
Prepare 0.152 release.

14 years agol10n: Updates to Polish (pl) translation
raven [Sun, 13 Feb 2011 15:25:49 +0000 (15:25 +0000)] 
l10n: Updates to Polish (pl) translation

Transmitted-via: Transifex (translate.fedoraproject.org)

14 years agol10n: Updates to Ukrainian (uk) translation
yurchor [Sat, 12 Feb 2011 11:37:27 +0000 (11:37 +0000)] 
l10n: Updates to Ukrainian (uk) translation

Transmitted-via: Transifex (translate.fedoraproject.org)

14 years agoNEWS item for last change
Roland McGrath [Fri, 11 Feb 2011 20:38:36 +0000 (12:38 -0800)] 
NEWS item for last change

14 years agolibdwfl: Search for Linux kernel binaries with compression file name suffixes.
Roland McGrath [Fri, 11 Feb 2011 20:29:45 +0000 (12:29 -0800)] 
libdwfl: Search for Linux kernel binaries with compression file name suffixes.

14 years agoelfcmp: Add --l/--verbose flag.
Roland McGrath [Fri, 11 Feb 2011 18:42:45 +0000 (10:42 -0800)] 
elfcmp: Add --l/--verbose flag.

14 years agoelfcmp: Add --ignore-build-id flag.
Roland McGrath [Fri, 11 Feb 2011 18:32:30 +0000 (10:32 -0800)] 
elfcmp: Add --ignore-build-id flag.

14 years agoldscript: Remove unused variable.
Roland McGrath [Wed, 9 Feb 2011 03:48:42 +0000 (19:48 -0800)] 
ldscript: Remove unused variable.

14 years agounstrip: Remove unused variable.
Roland McGrath [Wed, 9 Feb 2011 03:48:02 +0000 (19:48 -0800)] 
unstrip: Remove unused variable.

14 years agoelflint: Remove unused variables.
Roland McGrath [Wed, 9 Feb 2011 03:46:50 +0000 (19:46 -0800)] 
elflint: Remove unused variables.

14 years agoelflint: Warn about missing xndx section only once.
Roland McGrath [Wed, 9 Feb 2011 03:45:26 +0000 (19:45 -0800)] 
elflint: Warn about missing xndx section only once.

14 years agold: Remove an unused variable.
Roland McGrath [Wed, 9 Feb 2011 03:45:12 +0000 (19:45 -0800)] 
ld: Remove an unused variable.

14 years ago0.152 NEWS item for nit fixes.
Roland McGrath [Wed, 9 Feb 2011 03:40:19 +0000 (19:40 -0800)] 
0.152 NEWS item for nit fixes.

14 years agoUse AC_LANG_SOURCE.
Roland McGrath [Wed, 9 Feb 2011 03:36:50 +0000 (19:36 -0800)] 
Use AC_LANG_SOURCE.

14 years agoRemove obsolete ALL_LINGUAS variable from configure.
Roland McGrath [Wed, 9 Feb 2011 02:59:04 +0000 (18:59 -0800)] 
Remove obsolete ALL_LINGUAS variable from configure.

14 years agolibasm: Remove an unused variable.
Roland McGrath [Tue, 8 Feb 2011 19:20:49 +0000 (11:20 -0800)] 
libasm: Remove an unused variable.

14 years ago0.152 NEWS item for latest libdwfl prelink fix
Roland McGrath [Thu, 3 Feb 2011 01:24:53 +0000 (17:24 -0800)] 
0.152 NEWS item for latest libdwfl prelink fix

14 years agorun-prelink-addr-test.sh: Add a .dynbss+.bss prelink split
Josh Stone [Thu, 3 Feb 2011 00:30:01 +0000 (16:30 -0800)] 
run-prelink-addr-test.sh: Add a .dynbss+.bss prelink split

14 years agolibdwfl: Use the section-end address as the synchronization point, rather than sh_addr.
Roland McGrath [Wed, 2 Feb 2011 03:06:21 +0000 (19:06 -0800)] 
libdwfl: Use the section-end address as the synchronization point, rather than sh_addr.

14 years agolibdwfl: Discover PT_INTERP p_vaddr separately from main phdrs and undo phdrs.
Roland McGrath [Wed, 2 Feb 2011 00:58:32 +0000 (16:58 -0800)] 
libdwfl: Discover PT_INTERP p_vaddr separately from main phdrs and undo phdrs.

14 years agolibdwfl: Fix prelink address_sync to find 64-bit PT_INTERP.
Roland McGrath [Wed, 2 Feb 2011 00:09:43 +0000 (16:09 -0800)] 
libdwfl: Fix prelink address_sync to find 64-bit PT_INTERP.