QuickCppLib 0.10
Eliminate all the tedious hassle when making state-of-the-art C++ 14 - 23 libraries!
Loading...
Searching...
No Matches
quickcpplib::_xxx::packed_backtrace::impl::packed_backtrace< FramePtrType, FrameTypeSize > Class Template Reference

#include "packed_backtrace.hpp"

Inheritance diagram for quickcpplib::_xxx::packed_backtrace::impl::packed_backtrace< FramePtrType, FrameTypeSize >:
quickcpplib::_xxx::packed_backtrace::packed_backtrace< FramePtrType >

Classes

class  iterator
 The iterator type. More...
 

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

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.
 

Protected Member Functions

 packed_backtrace (span::span< const char > storage)
 
 packed_backtrace (span::span< char > storage, std::nullptr_t)
 

Friends

class iterator
 

Member Typedef Documentation

◆ value_type

template<class FramePtrType , size_t FrameTypeSize>
using quickcpplib::_xxx::packed_backtrace::impl::packed_backtrace< FramePtrType, FrameTypeSize >::value_type = FramePtrType

The type stored in the container.

◆ const_value_type

template<class FramePtrType , size_t FrameTypeSize>
using quickcpplib::_xxx::packed_backtrace::impl::packed_backtrace< FramePtrType, FrameTypeSize >::const_value_type = typename detail::constify<FramePtrType>::type

The const type stored in the container.

◆ size_type

template<class FramePtrType , size_t FrameTypeSize>
using quickcpplib::_xxx::packed_backtrace::impl::packed_backtrace< FramePtrType, FrameTypeSize >::size_type = size_t

The size type.

◆ difference_type

template<class FramePtrType , size_t FrameTypeSize>
using quickcpplib::_xxx::packed_backtrace::impl::packed_backtrace< FramePtrType, FrameTypeSize >::difference_type = ptrdiff_t

The difference type.

◆ reference

template<class FramePtrType , size_t FrameTypeSize>
using quickcpplib::_xxx::packed_backtrace::impl::packed_backtrace< FramePtrType, FrameTypeSize >::reference = FramePtrType

The reference type.

◆ const_reference

template<class FramePtrType , size_t FrameTypeSize>
using quickcpplib::_xxx::packed_backtrace::impl::packed_backtrace< FramePtrType, FrameTypeSize >::const_reference = const FramePtrType

The const reference type.

◆ pointer

template<class FramePtrType , size_t FrameTypeSize>
using quickcpplib::_xxx::packed_backtrace::impl::packed_backtrace< FramePtrType, FrameTypeSize >::pointer = FramePtrType *

The pointer type.

◆ const_pointer

template<class FramePtrType , size_t FrameTypeSize>
using quickcpplib::_xxx::packed_backtrace::impl::packed_backtrace< FramePtrType, FrameTypeSize >::const_pointer = const FramePtrType *

The const pointer type.

◆ const_iterator

template<class FramePtrType , size_t FrameTypeSize>
using quickcpplib::_xxx::packed_backtrace::impl::packed_backtrace< FramePtrType, FrameTypeSize >::const_iterator = iterator

The const iterator type.

◆ reverse_iterator

template<class FramePtrType , size_t FrameTypeSize>
using quickcpplib::_xxx::packed_backtrace::impl::packed_backtrace< FramePtrType, FrameTypeSize >::reverse_iterator = std::reverse_iterator<iterator>

The reverse iterator type.

◆ const_reverse_iterator

template<class FramePtrType , size_t FrameTypeSize>
using quickcpplib::_xxx::packed_backtrace::impl::packed_backtrace< FramePtrType, FrameTypeSize >::const_reverse_iterator = std::reverse_iterator<const_iterator>

The const reverse iterator type.

Constructor & Destructor Documentation

◆ packed_backtrace() [1/2]

template<class FramePtrType , size_t FrameTypeSize>
quickcpplib::_xxx::packed_backtrace::impl::packed_backtrace< FramePtrType, FrameTypeSize >::packed_backtrace ( span::span< const char >  storage)
inlineexplicitprotected
236 : _storage(reinterpret_cast<uint8_t *>(const_cast<char *>(storage.data())), storage.size())
237 , _count(_decode_count())
238 {
239 }

◆ packed_backtrace() [2/2]

template<class FramePtrType , size_t FrameTypeSize>
quickcpplib::_xxx::packed_backtrace::impl::packed_backtrace< FramePtrType, FrameTypeSize >::packed_backtrace ( span::span< char >  storage,
std::nullptr_t   
)
inlineexplicitprotected
241 : _storage(reinterpret_cast<uint8_t *>(storage.data()), storage.size())
242 , _count(0)
243 {
244 }

Member Function Documentation

◆ empty()

template<class FramePtrType , size_t FrameTypeSize>
bool quickcpplib::_xxx::packed_backtrace::impl::packed_backtrace< FramePtrType, FrameTypeSize >::empty ( ) const
inlinenoexcept

Returns true if the index is empty.

369{ return _storage.empty(); }

◆ size()

template<class FramePtrType , size_t FrameTypeSize>
size_type quickcpplib::_xxx::packed_backtrace::impl::packed_backtrace< FramePtrType, FrameTypeSize >::size ( ) const
inlinenoexcept

Returns the number of items in the backtrace.

371{ return _count; }

◆ max_size()

template<class FramePtrType , size_t FrameTypeSize>
size_type quickcpplib::_xxx::packed_backtrace::impl::packed_backtrace< FramePtrType, FrameTypeSize >::max_size ( ) const
inlinenoexcept

Returns the maximum number of items in the backtrace.

373{ return _count; }

◆ begin() [1/2]

template<class FramePtrType , size_t FrameTypeSize>
iterator quickcpplib::_xxx::packed_backtrace::impl::packed_backtrace< FramePtrType, FrameTypeSize >::begin ( )
inlinenoexcept

Returns an iterator to the first item in the backtrace.

375{ return iterator(this); }
friend class iterator
Definition packed_backtrace.hpp:360

◆ begin() [2/2]

template<class FramePtrType , size_t FrameTypeSize>
const_iterator quickcpplib::_xxx::packed_backtrace::impl::packed_backtrace< FramePtrType, FrameTypeSize >::begin ( ) const
inlinenoexcept

Returns an iterator to the first item in the backtrace.

377{ return iterator(this); }

◆ cbegin()

template<class FramePtrType , size_t FrameTypeSize>
const_iterator quickcpplib::_xxx::packed_backtrace::impl::packed_backtrace< FramePtrType, FrameTypeSize >::cbegin ( ) const
inlinenoexcept

Returns an iterator to the first item in the backtrace.

379{ return iterator(this); }

◆ end() [1/2]

template<class FramePtrType , size_t FrameTypeSize>
iterator quickcpplib::_xxx::packed_backtrace::impl::packed_backtrace< FramePtrType, FrameTypeSize >::end ( )
inlinenoexcept

Returns an iterator to the item after the last in the backtrace.

381{ return iterator(); }

◆ end() [2/2]

template<class FramePtrType , size_t FrameTypeSize>
const_iterator quickcpplib::_xxx::packed_backtrace::impl::packed_backtrace< FramePtrType, FrameTypeSize >::end ( ) const
inlinenoexcept

Returns an iterator to the item after the last in the backtrace.

383{ return iterator(); }

◆ cend()

template<class FramePtrType , size_t FrameTypeSize>
const_iterator quickcpplib::_xxx::packed_backtrace::impl::packed_backtrace< FramePtrType, FrameTypeSize >::cend ( ) const
inlinenoexcept

Returns an iterator to the item after the last in the backtrace.

385{ return iterator(); }

◆ operator[]()

template<class FramePtrType , size_t FrameTypeSize>
value_type quickcpplib::_xxx::packed_backtrace::impl::packed_backtrace< FramePtrType, FrameTypeSize >::operator[] ( size_type  i) const
inlinenoexcept

Returns the specified element, unchecked.

388 {
389 uintptr_type out = 0;
390 size_t idx = 0;
391 for(size_type n = 0; n <= i; n++)
392 {
393 if(!_decode(out, idx))
394 return nullptr;
395 }
396 return reinterpret_cast<value_type>(out);
397 }
size_t size_type
The size type.
Definition packed_backtrace.hpp:252
FramePtrType value_type
The type stored in the container.
Definition packed_backtrace.hpp:248

◆ at()

template<class FramePtrType , size_t FrameTypeSize>
value_type quickcpplib::_xxx::packed_backtrace::impl::packed_backtrace< FramePtrType, FrameTypeSize >::at ( size_type  i) const
inline

Returns the specified element, checked.

400 {
401 uintptr_type out = 0;
402 size_t idx = 0;
403 for(size_type n = 0; n <= i; n++)
404 {
405 if(!_decode(out, idx))
406 {
407 abort(); // out of range
408 }
409 }
410 return reinterpret_cast<value_type>(out);
411 }

◆ swap()

template<class FramePtrType , size_t FrameTypeSize>
void quickcpplib::_xxx::packed_backtrace::impl::packed_backtrace< FramePtrType, FrameTypeSize >::swap ( packed_backtrace< FramePtrType, FrameTypeSize > &  o)
inlinenoexcept

Swaps with another instance.

414 {
415 using std::swap;
416 swap(_storage, o._storage);
417 swap(_count, o._count);
418 }
void swap(packed_backtrace &o) noexcept
Swaps with another instance.
Definition packed_backtrace.hpp:413

◆ assign()

template<class FramePtrType , size_t FrameTypeSize>
void quickcpplib::_xxx::packed_backtrace::impl::packed_backtrace< FramePtrType, FrameTypeSize >::assign ( span::span< const_value_type input)
inlinenoexcept

Assigns a raw stack backtrace to the packed storage.

422 {
423 uintptr_type out = 0;
424 size_t idx = 0;
425 memset(_storage.data(), 0, _storage.size());
426 _count = 0;
427 for(const auto &_i : input)
428 {
429 size_t startidx = idx;
430 uintptr_type i = reinterpret_cast<uintptr_type>(_i);
431 uintptr_type delta = i & bits63_43;
432 if((out & bits63_43) != delta)
433 {
434 if(idx > _storage.size() - 3)
435 return;
436 // std::cout << "For entry " << _i << " encoding bits 63-43: " << (void *) delta << std::endl;
437 _storage[idx++] = 0xc0 | ((delta >> 59) & 0x3f);
438 _storage[idx++] = (delta >> 51) & 0xff;
439 _storage[idx++] = (delta >> 43) & 0xff;
440 out &= bits42_0;
441 out |= delta;
442 }
443 delta = i & bits42_21;
444 if((out & bits42_21) != delta)
445 {
446 if(idx > _storage.size() - 3)
447 {
448 memset(_storage.data() + startidx, 0, idx - startidx);
449 return;
450 }
451 // std::cout << "For entry " << _i << " encoding bits 42-21: " << (void *) delta << std::endl;
452 _storage[idx++] = 0x80 | ((delta >> 37) & 0x3f);
453 _storage[idx++] = (delta >> 29) & 0xff;
454 _storage[idx++] = (delta >> 21) & 0xff;
455 out &= bits63_43;
456 out |= bit20;
457 out |= delta;
458 }
459 if(i - out >= (1 << 13) && out - i >= (1 << 13))
460 {
461 if(idx > _storage.size() - 3)
462 {
463 memset(_storage.data() + startidx, 0, idx - startidx);
464 return;
465 }
466 delta = static_cast<uintptr_type>(i - out);
467 // std::cout << "For entry " << _i << " with diff " << (intptr_t) delta << " encoding three byte delta: " << (void *) delta << std::endl;
468 _storage[idx++] = 0x40 | ((delta >> 16) & 0x3f);
469 _storage[idx++] = (delta >> 8) & 0xff;
470 _storage[idx++] = (delta >> 0) & 0xff;
471 out = i;
472 }
473 else
474 {
475 if(idx > _storage.size() - 2)
476 {
477 memset(_storage.data() + startidx, 0, idx - startidx);
478 return;
479 }
480 delta = static_cast<uintptr_type>(i - out);
481 // std::cout << "For entry " << _i << " with diff " << (intptr_t) delta << " encoding two byte delta: " << (void *) delta << std::endl;
482 _storage[idx++] = (delta >> 8) & 0x3f;
483 _storage[idx++] = (delta >> 0) & 0xff;
484 out = i;
485 }
486 _count++;
487 }
488 }

Friends And Related Symbol Documentation

◆ iterator

template<class FramePtrType , size_t FrameTypeSize>
friend class iterator
friend

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