- Added support for querying information about .plt sections.
- Added support for .got.plt sections.


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@8127 a5019735-40e9-0310-863c-91ae7b9d1cf9
diff --git a/include/pub_tool_debuginfo.h b/include/pub_tool_debuginfo.h
index a6849ab..b43e0a6 100644
--- a/include/pub_tool_debuginfo.h
+++ b/include/pub_tool_debuginfo.h
@@ -119,6 +119,10 @@
 /* Fish bits out of DebugInfos. */
 extern       Addr     VG_(seginfo_get_text_avma)( const DebugInfo *di );
 extern       SizeT    VG_(seginfo_get_text_size)( const DebugInfo *di );
+extern       Addr     VG_(seginfo_get_plt_avma) ( const DebugInfo *di );
+extern       SizeT    VG_(seginfo_get_plt_size) ( const DebugInfo *di );
+extern       Addr     VG_(seginfo_get_gotplt_avma)( const DebugInfo *di );
+extern       SizeT    VG_(seginfo_get_gotplt_size)( const DebugInfo *di );
 extern const UChar*   VG_(seginfo_soname)       ( const DebugInfo *di );
 extern const UChar*   VG_(seginfo_filename)     ( const DebugInfo *di );
 extern       ULong    VG_(seginfo_get_text_bias)( const DebugInfo *di );
@@ -151,6 +155,7 @@
       Vg_SectBSS,
       Vg_SectGOT,
       Vg_SectPLT,
+      Vg_SectGOTPLT,
       Vg_SectOPD
    }
    VgSectKind;