1 #ifndef SIPLASPLAS_UTILITY_MEMORY_MANIP_HPP 2 #define SIPLASPLAS_UTILITY_MEMORY_MANIP_HPP 5 #include <siplasplas/utility/export.hpp> 11 SIPLASPLAS_UTILITY_EXPORT
char* aligned_ptr(
char* pointer, std::size_t alignment);
12 SIPLASPLAS_UTILITY_EXPORT
void* aligned_ptr(
void* pointer, std::size_t alignment);
15 void write_at(
char* pointer,
const T& value, std::intptr_t offset = 0)
17 *(
reinterpret_cast<T*
>(pointer) + offset) = value;
21 void write_at(
void* pointer,
const T& value, std::intptr_t offset = 0)
23 write_at(reinterpret_cast<char*>(pointer), value, offset);
27 T read_at(
const char* pointer, std::intptr_t offset = 0)
29 return *(
reinterpret_cast<const T*
>(pointer + offset));
33 T read_at(
const void* pointer, std::intptr_t offset = 0)
35 return read_at<T>(
reinterpret_cast<const char*
>(pointer), offset);
39 void write_before(
char* pointer,
const T& value)
41 write_at(pointer, value, -
sizeof(T));
45 void write_before(
void* pointer,
const T& value)
47 write_before(reinterpret_cast<char*>(pointer), value);
51 T read_before(
const char* pointer)
53 return read_at<T>(pointer, -
sizeof(T));
57 T read_before(
const void* pointer)
59 return read_before<T>(
reinterpret_cast<const char*
>(pointer));
66 RawReaderWriter(
void* at) :
67 _at{
reinterpret_cast<char*
>(at)}
72 return detail::read_at<T>(_at);
82 detail::write_at(_at, value);
91 #endif // SIPLASPLAS_UTILITY_MEMORY_MANIP_HPP Definition: canary_allocator.hpp:7