The Gaudi Framework  v31r0 (aeb156f0)
IgHookTrace Class Reference

#include <src/component/IgHook_IgHookTrace.h>

Collaboration diagram for IgHookTrace:

Classes

struct  Counter
 Nearly dummy object type to identify a counter. More...
 
class  CounterValue
 Value for a counter chained from a trace. More...
 

Public Member Functions

void * operator new (size_t n, IgHookTraceAlloc *alloc=0)
 
 IgHookTrace (IgHookTrace *parent=0, void *address=0)
 
IgHookTraceparent (void)
 
IgHookTracenext (void)
 
void * address (void)
 
bool symbol (const char *&sym, const char *&lib, int &offset, int &liboffset)
 
IgHookTracechildren (void)
 
IgHookTracechild (void *address)
 
CounterValuecounters (void)
 
CounterValuecounter (Counter *id)
 
void merge (IgHookTrace *other)
 

Static Public Member Functions

static int stacktrace (void **addresses, int nmax)
 
static void * tosymbol (void *address)
 
static bool symbol (void *address, const char *&sym, const char *&lib, int &offset, int &liboffset)
 

Private Attributes

IgHookTraceAllocm_alloc
 
IgHookTracem_parent
 
IgHookTracem_next
 
IgHookTracem_children
 
void * m_address
 
CounterValuem_counters
 

Detailed Description

Definition at line 27 of file IgHook_IgHookTrace.h.

Constructor & Destructor Documentation

IgHookTrace::IgHookTrace ( IgHookTrace parent = 0,
void *  address = 0 
)

Definition at line 196 of file IgHook_IgHookTrace.cpp.

197  : m_alloc( parent ? parent->m_alloc : new IgHookTraceAlloc )
198  , m_parent( parent )
199  , m_next( parent ? parent->m_children : 0 )
200  , m_children( 0 )
201  , m_address( address )
202  , m_counters( 0 ) {
203  if ( m_parent ) m_parent->m_children = this;
204 }
IgHookTrace * m_children
IgHookTrace * m_parent
void * address(void)
IgHookTrace * m_next
CounterValue * m_counters
IgHookTraceAlloc * m_alloc

Member Function Documentation

void * IgHookTrace::address ( void  )

Definition at line 210 of file IgHook_IgHookTrace.cpp.

210 { return m_address; }
IgHookTrace* IgHookTrace::child ( void *  address)
IgHookTrace* IgHookTrace::children ( void  )
CounterValue* IgHookTrace::counter ( Counter id)
CounterValue* IgHookTrace::counters ( void  )
void IgHookTrace::merge ( IgHookTrace other)
IgHookTrace * IgHookTrace::next ( void  )

Definition at line 208 of file IgHook_IgHookTrace.cpp.

208 { return m_next; }
IgHookTrace * m_next
void * IgHookTrace::operator new ( size_t  n,
IgHookTraceAlloc alloc = 0 
)

Definition at line 192 of file IgHook_IgHookTrace.cpp.

192  {
193  return alloc ? alloc->allocate( n ) : ::operator new( n );
194 }
void * allocate(size_t bytes)
IgHookTrace * IgHookTrace::parent ( void  )

Definition at line 206 of file IgHook_IgHookTrace.cpp.

206 { return m_parent; }
IgHookTrace * m_parent
static int IgHookTrace::stacktrace ( void **  addresses,
int  nmax 
)
static
bool IgHookTrace::symbol ( void *  address,
const char *&  sym,
const char *&  lib,
int &  offset,
int &  liboffset 
)
static

Definition at line 212 of file IgHook_IgHookTrace.cpp.

212  {
213  sym = lib = 0;
214  offset = 0;
215  liboffset = (unsigned long)address;
216 
217  Dl_info info;
218  if ( dladdr( address, &info ) ) {
219  if ( info.dli_fname && info.dli_fname[0] ) lib = info.dli_fname;
220 
221  if ( info.dli_fbase ) liboffset = (unsigned long)address - (unsigned long)info.dli_fbase;
222 
223  if ( info.dli_saddr ) offset = (unsigned long)address - (unsigned long)info.dli_saddr;
224 
225  if ( info.dli_sname && info.dli_sname[0] ) sym = info.dli_sname;
226 
227  return true;
228  }
229 
230  return false;
231 }
void * address(void)
bool IgHookTrace::symbol ( const char *&  sym,
const char *&  lib,
int &  offset,
int &  liboffset 
)

Definition at line 233 of file IgHook_IgHookTrace.cpp.

233  {
234  return symbol( m_address, sym, lib, offset, liboffset );
235 }
static bool symbol(void *address, const char *&sym, const char *&lib, int &offset, int &liboffset)
void * IgHookTrace::tosymbol ( void *  address)
static

Definition at line 237 of file IgHook_IgHookTrace.cpp.

237  {
238  Dl_info info;
239  return ( dladdr( address, &info ) && info.dli_fname && info.dli_fname[0] && info.dli_saddr ) ? info.dli_saddr
240  : address;
241 }
void * address(void)

Member Data Documentation

void* IgHookTrace::m_address
private

Definition at line 94 of file IgHook_IgHookTrace.h.

IgHookTraceAlloc* IgHookTrace::m_alloc
private

Definition at line 90 of file IgHook_IgHookTrace.h.

IgHookTrace* IgHookTrace::m_children
private

Definition at line 93 of file IgHook_IgHookTrace.h.

CounterValue* IgHookTrace::m_counters
private

Definition at line 95 of file IgHook_IgHookTrace.h.

IgHookTrace* IgHookTrace::m_next
private

Definition at line 92 of file IgHook_IgHookTrace.h.

IgHookTrace* IgHookTrace::m_parent
private

Definition at line 91 of file IgHook_IgHookTrace.h.


The documentation for this class was generated from the following files: