]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
This is logically part of r5501 (ppc64-linux symbol reading fixes)
authorJulian Seward <jseward@acm.org>
Thu, 5 Jan 2006 14:12:53 +0000 (14:12 +0000)
committerJulian Seward <jseward@acm.org>
Thu, 5 Jan 2006 14:12:53 +0000 (14:12 +0000)
but got missed from 5501.

git-svn-id: svn://svn.valgrind.org/valgrind/trunk@5502

coregrind/m_debuginfo/priv_symtab.h

index 2ff12b056d2f88892e296229c2490f5aec7aa516..55f7afa79b3d258c3f3eaf2e51178b577251847c 100644 (file)
@@ -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 */