PStack
2.0
Stack trace printer for MSVC and GCC binaries
|
Formatting facilities for std::ostream
output.
More...
Namespaces | |
internal | |
Internal structures used for the psystem::format namespace. | |
Bitmask Pretty-print | |
template<typename T > | |
internal::mask_ostream_output_tag< T > | mask (T const m) noexcept |
Mark output stream data to be formatted as a bit-mask. More... | |
Hexadecimal Pretty-print | |
template<typename T > | |
internal::hex_ostream_output_tag< T > | hex (T const v) noexcept |
Mark output stream data to be formatted as a hexadecimal number. More... | |
Pointer Pretty-print | |
internal::ptr_ostream_output_tag | ptr (void const *p) noexcept |
Mark output stream data to be formatted as a memory address. More... | |
internal::ptr_ostream_output_tag | ptr (psystem::address_t const p) noexcept |
Mark output stream data to be formatted as a memory address. More... | |
template<typename R , typename... Args> | |
internal::ptr_ostream_output_tag | ptr (R(*p)(Args...)) noexcept |
Mark a function pointer to be formatted to an output stream as a memory address. More... | |
Boolean Value Pretty-print | |
internal::swtch_ostream_output_tag | swtch (bool const s) noexcept |
Mark output stream data to be formatted as an on/off switch. More... | |
Formatting facilities for std::ostream
output.
These are tags that have little or no run-time cost, and will format data as it sends it directly to the output stream. An example program:
... which outputs:
File permissions are: (0x000001ED)
|
inlinenoexcept |
Mark output stream data to be formatted as a hexadecimal number.
This will be sent to an std::ostream
instance using operator<<
as an hexidecimal number. For example:
...produces the output:
The number is: 0x800C
T | The parameter type must be an intergral type. |
[in] | v | The numerical data to format. |
|
inlinenoexcept |
Mark output stream data to be formatted as a bit-mask.
Depending on the size of the input data, this will be sent to an std::ostream
instance using operator<<
as a zero-padded hexidecimal number. It will be surrounded by parentheses. For example:
...produces the output:
The flags are: (0x0013)
T | The parameter type must be an intergral type. |
[in] | m | The bit-mask to format. |
|
inlinenoexcept |
Mark output stream data to be formatted as a memory address.
This function only applies to data that can be converted implicitly to a void*
data-type. The output will be zero-padded to the length of addresses on the target architecture. For example:
...produces output like:
The address is: 0x0000007FF018E924
[in] | p | The pointer / address to format. |
|
inlinenoexcept |
Mark output stream data to be formatted as a memory address.
This function only applies to input that can be converted to the psystem::address_t type. The output will be zero-padded to the length of addresses on the target architecture. For example:
...produces output like:
The address is: 0x0000001FE0384BB4
[in] | p | The address to format. |
|
inlinenoexcept |
Mark a function pointer to be formatted to an output stream as a memory address.
This is a specialization to implicitly convert function pointer types to printable memory addresses. The output will be zero-padded to the length of addresses on the target architecture. For example:
...produces output like:
The address is: 0x00000080DD198C02
void*
and back because one doesn't know where the memory being pointed to actually physically resides. Some hardware may have separate locations for code segments and data segments. Since we're not actually accessing the memory, but are more interested in the pointer value itself, it's OK to reinterpret the bytes as a void*
.R | The function's return type. |
Args... | The full argument list for the function. |
[in] | p | The function pointer format. |
|
inlinenoexcept |
Mark output stream data to be formatted as an on/off switch.
Output simply translates a boolean value to a more human-friendly format. For example:
...produces the output:
The is_true switch is set to: on
[in] | s | The boolean value to format. |