From: Julian Seward Date: Thu, 5 Jan 2006 14:12:53 +0000 (+0000) Subject: This is logically part of r5501 (ppc64-linux symbol reading fixes) X-Git-Tag: svn/VALGRIND_3_2_0~398 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=944c6443d66024afcf5c0252e7e2a8f4ba5a1479;p=thirdparty%2Fvalgrind.git This is logically part of r5501 (ppc64-linux symbol reading fixes) but got missed from 5501. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@5502 --- diff --git a/coregrind/m_debuginfo/priv_symtab.h b/coregrind/m_debuginfo/priv_symtab.h index 2ff12b056d..55f7afa79b 100644 --- a/coregrind/m_debuginfo/priv_symtab.h +++ b/coregrind/m_debuginfo/priv_symtab.h @@ -212,15 +212,17 @@ struct _SegInfo { */ OffT offset; - /* Bounds of data, BSS, PLT and GOT, so that tools can see what - section an address is in */ - Addr plt_start; + /* Bounds of data, BSS, PLT, GOT and OPD (for ppc64-linux) so that + tools can see what section an address is in. In the running image! */ + Addr plt_start_vma; UInt plt_size; - Addr got_start; + Addr got_start_vma; UInt got_size; - Addr data_start; + Addr opd_start_vma; + UInt opd_size; + Addr data_start_vma; UInt data_size; - Addr bss_start; + Addr bss_start_vma; UInt bss_size; /* data used by stabs parser */