LLVM API Documentation
#include <PrettyStackTrace.h>
Public Member Functions | |
PrettyStackTraceEntry () | |
virtual | ~PrettyStackTraceEntry () |
virtual void | print (raw_ostream &OS) const =0 |
print - Emit information about this stack frame to OS. More... | |
const PrettyStackTraceEntry * | getNextEntry () const |
getNextEntry - Return the next entry in the list of frames. More... | |
PrettyStackTraceEntry - This class is used to represent a frame of the "pretty" stack trace that is dumped when a program crashes. You can define subclasses of this and declare them on the program stack: when they are constructed and destructed, they will add their symbolic frames to a virtual stack trace. This gets dumped out if the program crashes.
Definition at line 31 of file PrettyStackTrace.h.
PrettyStackTraceEntry::PrettyStackTraceEntry | ( | ) |
Definition at line 102 of file PrettyStackTrace.cpp.
References PrettyStackTraceHead.
|
virtual |
Definition at line 108 of file PrettyStackTrace.cpp.
References getNextEntry(), and PrettyStackTraceHead.
|
inline |
getNextEntry - Return the next entry in the list of frames.
Definition at line 43 of file PrettyStackTrace.h.
Referenced by PrintStack(), and ~PrettyStackTraceEntry().
|
pure virtual |
print - Emit information about this stack frame to OS.
Implemented in llvm::PassManagerPrettyStackEntry, llvm::PrettyStackTraceProgram, and llvm::PrettyStackTraceString.
Referenced by PrintStack().