PStack
2.0
Stack trace printer for MSVC and GCC binaries
|
Contains data about a single frame in a stack trace. More...
#include <stack_frame.hpp>
Construction / Destruction | |
stack_frame (STACKFRAME64 const &sf) noexcept | |
Construct a stack_frame instance. More... | |
Public Interface | |
address_t | get_fp () const noexcept |
Access the memory location for the current frame pointer. More... | |
address_t | get_pc () const noexcept |
Access the program counter location for the current stack frame. More... | |
Member Data | |
address_t | m_fp |
The program counter location for the current frame pointer. | |
address_t | m_pc |
The program counter location for the current stack frame. | |
Contains data about a single frame in a stack trace.
This is a simple container (data-only) object. It is free to copy, move, reassign, and will not affect any system-level debugging functionality.
|
explicitnoexcept |
Construct a stack_frame instance.
[in] | sf | Structure containing data about the stack frame to be copied into this instance. |
|
noexcept |
Access the memory location for the current frame pointer.
|
noexcept |
Access the program counter location for the current stack frame.