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 28 of file IgHook_IgHookTrace.h.

Constructor & Destructor Documentation

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

Definition at line 205 of file IgHook_IgHookTrace.cpp.

206  : m_alloc (parent ? parent->m_alloc : new IgHookTraceAlloc),
207  m_parent (parent),
208  m_next (parent ? parent->m_children : 0),
209  m_children (0),
210  m_address (address),
211  m_counters (0)
212 { if (m_parent) m_parent->m_children = this; }
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 223 of file IgHook_IgHookTrace.cpp.

224 { 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 219 of file IgHook_IgHookTrace.cpp.

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

Definition at line 202 of file IgHook_IgHookTrace.cpp.

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

Definition at line 215 of file IgHook_IgHookTrace.cpp.

216 { 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 227 of file IgHook_IgHookTrace.cpp.

232 {
233  sym = lib = 0;
234  offset = 0;
235  liboffset = (unsigned long) address;
236 
237  Dl_info info;
238  if (dladdr (address, &info))
239  {
240  if (info.dli_fname && info.dli_fname [0])
241  lib = info.dli_fname;
242 
243  if (info.dli_fbase)
244  liboffset = (unsigned long) address - (unsigned long) info.dli_fbase;
245 
246  if (info.dli_saddr)
247  offset = (unsigned long) address - (unsigned long) info.dli_saddr;
248 
249  if (info.dli_sname && info.dli_sname [0])
250  sym = info.dli_sname;
251 
252  return true;
253  }
254 
255  return false;
256 }
void * address(void)
bool IgHookTrace::symbol ( const char *&  sym,
const char *&  lib,
int &  offset,
int &  liboffset 
)

Definition at line 259 of file IgHook_IgHookTrace.cpp.

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

Definition at line 263 of file IgHook_IgHookTrace.cpp.

264 {
265  Dl_info info;
266  return (dladdr (address, &info)
267  && info.dli_fname
268  && info.dli_fname [0]
269  && info.dli_saddr)
270  ? info.dli_saddr : address;
271 }
void * address(void)

Member Data Documentation

void* IgHookTrace::m_address
private

Definition at line 100 of file IgHook_IgHookTrace.h.

IgHookTraceAlloc* IgHookTrace::m_alloc
private

Definition at line 96 of file IgHook_IgHookTrace.h.

IgHookTrace* IgHookTrace::m_children
private

Definition at line 99 of file IgHook_IgHookTrace.h.

CounterValue* IgHookTrace::m_counters
private

Definition at line 101 of file IgHook_IgHookTrace.h.

IgHookTrace* IgHookTrace::m_next
private

Definition at line 98 of file IgHook_IgHookTrace.h.

IgHookTrace* IgHookTrace::m_parent
private

Definition at line 97 of file IgHook_IgHookTrace.h.


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