QuickCppLib 0.10
Eliminate all the tedious hassle when making state-of-the-art C++ 14 - 23 libraries!
Loading...
Searching...
No Matches
mem_flush_loads_stores.hpp File Reference
#include "byte.hpp"
#include <atomic>
#include <cstddef>

Namespaces

namespace  quickcpplib
 The QuickCppLib namespace.
 
namespace  quickcpplib::_xxx
 Per commit unique namespace to prevent different git submodule versions clashing.
 
namespace  quickcpplib::_xxx::mem_flush_loads_stores
 
namespace  quickcpplib::_xxx::mem_flush_loads_stores::detail
 

Typedefs

using quickcpplib::_xxx::mem_flush_loads_stores::detail::flush_impl_type = memory_flush(*)(const void *addr, size_t bytes, memory_flush kind)
 
using quickcpplib::_xxx::mem_flush_loads_stores::detail::potentially_unknown_jump_ptr = void(*)(const byte *data, size_t bytes)
 

Enumerations

enum class  quickcpplib::_xxx::mem_flush_loads_stores::memory_flush { quickcpplib::_xxx::mem_flush_loads_stores::memory_flush_none , quickcpplib::_xxx::mem_flush_loads_stores::memory_flush_retain , quickcpplib::_xxx::mem_flush_loads_stores::memory_flush_evict }
 The kinds of cache line flushing which can be performed. More...
 

Functions

QUICKCPPLIB_NOINLINE flush_impl_type quickcpplib::_xxx::mem_flush_loads_stores::detail::make_flush_impl () noexcept
 
flush_impl_type quickcpplib::_xxx::mem_flush_loads_stores::detail::flush_impl () noexcept
 
potentially_unknown_jump_ptr quickcpplib::_xxx::mem_flush_loads_stores::detail::potentially_unknown_jump (potentially_unknown_jump_ptr set=nullptr)
 
memory_flush quickcpplib::_xxx::mem_flush_loads_stores::mem_force_reload (const byte *data, size_t bytes, memory_flush kind=memory_flush_none, std::memory_order order=std::memory_order_acquire) noexcept
 
template<size_t N>
memory_flush quickcpplib::_xxx::mem_flush_loads_stores::mem_force_reload (const byte(&region)[N], memory_flush kind=memory_flush_none, std::memory_order order=std::memory_order_acquire) noexcept
 
memory_flush quickcpplib::_xxx::mem_flush_loads_stores::mem_flush_stores (const byte *data, size_t bytes, memory_flush kind=memory_flush_none, std::memory_order order=std::memory_order_release) noexcept
 
template<size_t N>
memory_flush quickcpplib::_xxx::mem_flush_loads_stores::mem_flush_stores (const byte(&region)[N], memory_flush kind=memory_flush_none, std::memory_order order=std::memory_order_release) noexcept
 

Variables

constexpr memory_flush quickcpplib::_xxx::mem_flush_loads_stores::memory_flush_none = memory_flush::memory_flush_none
 No memory flushing.
 
constexpr memory_flush quickcpplib::_xxx::mem_flush_loads_stores::memory_flush_retain = memory_flush::memory_flush_retain
 Flush modified cache line to memory, but retain as unmodified in cache.
 
constexpr memory_flush quickcpplib::_xxx::mem_flush_loads_stores::memory_flush_evict = memory_flush::memory_flush_evict
 Flush modified cache line to memory, and evict completely from all caches.