Cthulhu  0.2.10
Cthulhu compiler collection
Stacktrace library

Backtrace library. More...

Collaboration diagram for Stacktrace library:

Data Structures

struct  bt_symbol_t
 a symbol More...
 
struct  bt_error_t
 system error handling callbacks More...
 

Macros

#define BT_PRI_ADDRESS   PRIuLEAST64
 format specifier for bt_address_t More...
 

Typedefs

typedef uint_least64_t bt_address_t
 an address of a symbol More...
 
typedef void(* bt_trace_t) (bt_address_t frame, void *user)
 user callback for bt_read More...
 
typedef void(* bt_error_begin_t) (size_t error, void *user)
 called once when a system error occurs More...
 
typedef void(* bt_error_end_t) (void *user)
 called once when a system error occurs More...
 

Enumerations

enum  bt_resolve_t {
  eResolveNothing = (0) , eResolveLine = (1 << 0) , eResolveName = (1 << 1) , eResolveDemangledName = (1 << 2) | eResolveName ,
  eResolveFile = (1 << 3) , eResolveAll = eResolveLine | eResolveName | eResolveFile
}
 how much of a frame was reconstructed More...
 

Functions

CT_BACKTRACE_API void bt_init (void)
 initialize the backtrace backend More...
 
CT_BACKTRACE_API void bt_update (void)
 update the loaded module cache More...
 
STA_RET_STRING CT_CONSTFN CT_BACKTRACE_API const char * bt_backend (void)
 get the backtrace backend name More...
 
CT_BACKTRACE_API void bt_read (bt_trace_t callback, void *user)
 get a backtrace from the current location using a callback More...
 
CT_BACKTRACE_API bt_resolve_t bt_resolve_symbol (bt_address_t frame, bt_symbol_t *symbol)
 resolve a frame to a symbol More...
 

Variables

CT_BACKTRACE_API bt_error_t gSystemError
 the global system error handler More...
 

Detailed Description

Backtrace library.

Macro Definition Documentation

◆ BT_PRI_ADDRESS

#define BT_PRI_ADDRESS   PRIuLEAST64

format specifier for bt_address_t

Definition at line 29 of file backtrace.h.

Typedef Documentation

◆ bt_address_t

typedef uint_least64_t bt_address_t

an address of a symbol

Definition at line 26 of file backtrace.h.

◆ bt_error_begin_t

typedef void(* bt_error_begin_t) (size_t error, void *user)

called once when a system error occurs

Parameters
errorthe error to report
userthe user data

Definition at line 80 of file backtrace.h.

◆ bt_error_end_t

typedef void(* bt_error_end_t) (void *user)

called once when a system error occurs

Parameters
userthe user data

Definition at line 85 of file backtrace.h.

◆ bt_trace_t

typedef void(* bt_trace_t) (bt_address_t frame, void *user)

user callback for bt_read

Parameters
framethe frame to resolve
useruser data

Definition at line 74 of file backtrace.h.

Enumeration Type Documentation

◆ bt_resolve_t

how much of a frame was reconstructed

Enumerator
eResolveNothing 

nothing was resolved

eResolveLine 

the line number was found

Note
this does not imply eResolveFile
eResolveName 

the symbol name was found

Note
this does not imply eResolveDemangledName
eResolveDemangledName 

the symbol name was demangled

eResolveFile 

the file path was found

Note
this does not imply eResolveLine
eResolveAll 

all information was resolved

Definition at line 46 of file backtrace.h.

Function Documentation

◆ bt_backend()

STA_RET_STRING CT_CONSTFN CT_BACKTRACE_API const char* bt_backend ( void  )

get the backtrace backend name

Returns
the backtrace backend name

Definition at line 17 of file dbghelp.c.

◆ bt_init()

CT_BACKTRACE_API void bt_init ( void  )

initialize the backtrace backend

Note
this function must be called before any other backtrace function

Definition at line 139 of file dbghelp.c.

◆ bt_read()

CT_BACKTRACE_API void bt_read ( bt_trace_t  callback,
void *  user 
)

get a backtrace from the current location using a callback

Note
this function is not thread safe
Precondition
bt_init must be called before calling this function
Parameters
callbackthe callback to call for each frame
userthe user data to pass to the callback

Definition at line 35 of file common.c.

◆ bt_resolve_symbol()

CT_BACKTRACE_API bt_resolve_t bt_resolve_symbol ( bt_address_t  frame,
bt_symbol_t symbol 
)

resolve a frame to a symbol

Precondition
bt_init must be called before calling this function
Parameters
framethe frame to resolve
symbolthe symbol to fill

Definition at line 14 of file common.c.

◆ bt_update()

CT_BACKTRACE_API void bt_update ( void  )

update the loaded module cache

Warning
this function is not thread safe
Note
this function should be called after loading a shared library

Definition at line 147 of file dbghelp.c.

Variable Documentation

◆ gSystemError

CT_BACKTRACE_API bt_error_t gSystemError
extern

the global system error handler

Definition at line 11 of file common.c.