PStack  2.0
Stack trace printer for MSVC and GCC binaries
psystem::stack_frame Class Reference

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.
 

Detailed Description

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.

Author
Matt Bisson
Date
5 August, 2014
Since
PSystem 2.0
Version
PSystem 2.0

Constructor & Destructor Documentation

psystem::stack_frame::stack_frame ( STACKFRAME64 const &  sf)
explicitnoexcept

Construct a stack_frame instance.

Parameters
[in]sfStructure containing data about the stack frame to be copied into this instance.

Member Function Documentation

address_t psystem::stack_frame::get_fp ( ) const
noexcept

Access the memory location for the current frame pointer.

Returns
The memory location where the frame pointer is stored for the current context.
address_t psystem::stack_frame::get_pc ( ) const
noexcept

Access the program counter location for the current stack frame.

Returns
The memory location stored in the PC register for the current context.

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