QuickCppLib 0.10
Eliminate all the tedious hassle when making state-of-the-art C++ 14 - 23 libraries!
|
A space packed stack backtrace letting you store twice or more stack frames in the same space. More...
#include "packed_backtrace.hpp"
Public Types | |
using | value_type = FramePtrType |
The type stored in the container. | |
using | const_value_type = typename detail::constify< FramePtrType >::type |
The const type stored in the container. | |
using | size_type = size_t |
The size type. | |
using | difference_type = ptrdiff_t |
The difference type. | |
using | reference = FramePtrType |
The reference type. | |
using | const_reference = const FramePtrType |
The const reference type. | |
using | pointer = FramePtrType * |
The pointer type. | |
using | const_pointer = const FramePtrType * |
The const pointer type. | |
using | const_iterator = iterator |
The const iterator type. | |
using | reverse_iterator = std::reverse_iterator< iterator > |
The reverse iterator type. | |
using | const_reverse_iterator = std::reverse_iterator< const_iterator > |
The const reverse iterator type. | |
Public Member Functions | |
packed_backtrace (span::span< const char > storage) | |
Construct a packed backtrace view, parsing the given byte storage. | |
packed_backtrace (span::span< char > storage, std::nullptr_t) | |
Construct a packed backtrace view, not parsing the given byte storage. | |
packed_backtrace (const packed_backtrace &)=default | |
Default copy constructor. | |
packed_backtrace (packed_backtrace &&)=default | |
Default move constructor. | |
packed_backtrace & | operator= (const packed_backtrace &)=default |
Default copy assignment. | |
packed_backtrace & | operator= (packed_backtrace &&)=default |
Default move assignment. | |
bool | empty () const noexcept |
Returns true if the index is empty. | |
size_type | size () const noexcept |
Returns the number of items in the backtrace. | |
size_type | max_size () const noexcept |
Returns the maximum number of items in the backtrace. | |
iterator | begin () noexcept |
Returns an iterator to the first item in the backtrace. | |
const_iterator | begin () const noexcept |
Returns an iterator to the first item in the backtrace. | |
const_iterator | cbegin () const noexcept |
Returns an iterator to the first item in the backtrace. | |
iterator | end () noexcept |
Returns an iterator to the item after the last in the backtrace. | |
const_iterator | end () const noexcept |
Returns an iterator to the item after the last in the backtrace. | |
const_iterator | cend () const noexcept |
Returns an iterator to the item after the last in the backtrace. | |
value_type | operator[] (size_type i) const noexcept |
Returns the specified element, unchecked. | |
value_type | at (size_type i) const |
Returns the specified element, checked. | |
void | swap (packed_backtrace &o) noexcept |
Swaps with another instance. | |
void | assign (span::span< const_value_type > input) noexcept |
Assigns a raw stack backtrace to the packed storage. | |
A space packed stack backtrace letting you store twice or more stack frames in the same space.
FramePtrType | The type each stack backtrace frame ought to be represented as. |
make_packed_backtrace()
to create one of these from a raw backtrace. Construct an instance on a byte span to load in the packed data so you can parse it.64 bit address stack backtraces tend to waste a lot of storage which can be a problem when storing lengthy backtraces. Most 64 bit architectures only use the first 43 bits of address space wasting 2.5 bytes per entry, plus stack backtraces tend to be within a few megabytes and even kilobytes from one another. Intelligently packing the bits based on this knowledge can double or more the number of items you can store for a given number of bytes with virtually no runtime overhead, unlike compression.
On 32 bit architectures this class simply stores the stack normally, but otherwise works the same.
Performance:
The 64-bit coding scheme is quite straightforward:
Sample 1:
Sample 2:
|
inherited |
The type stored in the container.
|
inherited |
The const type stored in the container.
|
inherited |
The size type.
|
inherited |
The difference type.
|
inherited |
The reference type.
|
inherited |
The const reference type.
|
inherited |
The pointer type.
|
inherited |
The const pointer type.
|
inherited |
The const iterator type.
|
inherited |
The reverse iterator type.
|
inherited |
The const reverse iterator type.
|
inlineexplicit |
Construct a packed backtrace view, parsing the given byte storage.
|
inlineexplicit |
Construct a packed backtrace view, not parsing the given byte storage.
|
default |
Default copy constructor.
|
default |
Default move constructor.
|
default |
Default copy assignment.
|
default |
Default move assignment.
|
inlinenoexceptinherited |
Returns true if the index is empty.
|
inlinenoexceptinherited |
Returns the number of items in the backtrace.
|
inlinenoexceptinherited |
Returns the maximum number of items in the backtrace.
|
inlinenoexceptinherited |
Returns an iterator to the first item in the backtrace.
|
inlinenoexceptinherited |
Returns an iterator to the first item in the backtrace.
|
inlinenoexceptinherited |
Returns an iterator to the first item in the backtrace.
|
inlinenoexceptinherited |
Returns an iterator to the item after the last in the backtrace.
|
inlinenoexceptinherited |
Returns an iterator to the item after the last in the backtrace.
|
inlinenoexceptinherited |
Returns an iterator to the item after the last in the backtrace.
|
inlinenoexceptinherited |
Returns the specified element, unchecked.
|
inlineinherited |
Returns the specified element, checked.
|
inlinenoexceptinherited |
|
inlinenoexceptinherited |
Assigns a raw stack backtrace to the packed storage.