|
From: <sv...@va...> - 2006-01-05 14:13:09
|
Author: sewardj
Date: 2006-01-05 14:12:53 +0000 (Thu, 05 Jan 2006)
New Revision: 5502
Log:
This is logically part of r5501 (ppc64-linux symbol reading fixes)
but got missed from 5501.
Modified:
trunk/coregrind/m_debuginfo/priv_symtab.h
Modified: trunk/coregrind/m_debuginfo/priv_symtab.h
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- trunk/coregrind/m_debuginfo/priv_symtab.h 2006-01-05 14:11:31 UTC (re=
v 5501)
+++ trunk/coregrind/m_debuginfo/priv_symtab.h 2006-01-05 14:12:53 UTC (re=
v 5502)
@@ -212,15 +212,17 @@
*/
OffT offset;
=20
- /* 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;
=20
/* data used by stabs parser */
|