QuickCppLib 0.10
Eliminate all the tedious hassle when making state-of-the-art C++ 14 - 23 libraries!
Loading...
Searching...
No Matches
quickcpplib::_xxx::mem_flush_loads_stores Namespace Reference

Namespaces

namespace  detail
 

Enumerations

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

Functions

memory_flush 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 mem_force_reload (const byte(&region)[N], memory_flush kind=memory_flush_none, std::memory_order order=std::memory_order_acquire) noexcept
 
memory_flush 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 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 memory_flush_none = memory_flush::memory_flush_none
 No memory flushing.
 
constexpr memory_flush memory_flush_retain = memory_flush::memory_flush_retain
 Flush modified cache line to memory, but retain as unmodified in cache.
 
constexpr memory_flush memory_flush_evict = memory_flush::memory_flush_evict
 Flush modified cache line to memory, and evict completely from all caches.
 

Enumeration Type Documentation

◆ memory_flush

The kinds of cache line flushing which can be performed.

Enumerator
memory_flush_none 

No memory flushing.

memory_flush_retain 

Flush modified cache line to memory, but retain as unmodified in cache.

memory_flush_evict 

Flush modified cache line to memory, and evict completely from all caches.

45 {
46 memory_flush_none, //!< No memory flushing.
47 memory_flush_retain, //!< Flush modified cache line to memory, but retain as unmodified in cache.
48 memory_flush_evict //!< Flush modified cache line to memory, and evict completely from all caches.
49 };
constexpr memory_flush memory_flush_retain
Flush modified cache line to memory, but retain as unmodified in cache.
Definition mem_flush_loads_stores.hpp:53
constexpr memory_flush memory_flush_evict
Flush modified cache line to memory, and evict completely from all caches.
Definition mem_flush_loads_stores.hpp:55
constexpr memory_flush memory_flush_none
No memory flushing.
Definition mem_flush_loads_stores.hpp:51

Function Documentation

◆ mem_force_reload() [1/2]

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 
)
inlinenoexcept
236 {
237 memory_flush ret = kind;
238 // Ensure reload elimination does not occur on our region by calling a
239 // potentially unknown external function which forces the compiler to
240 // reload state after this call returns
241 detail::potentially_unknown_jump()(data, bytes);
242 if(memory_flush_evict == kind)
243 {
244 // TODO FIXME We assume a 64 byte cache line, which is bold.
245 void *_data = (void *) (((uintptr_t) data) & ~63);
246 size_t _bytes = ((uintptr_t) data + bytes + 63) - ((uintptr_t) _data);
247 _bytes &= ~63;
248 ret = detail::flush_impl()(_data, _bytes, kind);
249 }
250 // I really wish this would work on a region, not globally
251 atomic_thread_fence(order);
252 return ret;
253 }
memory_flush
The kinds of cache line flushing which can be performed.
Definition mem_flush_loads_stores.hpp:45

◆ mem_force_reload() [2/2]

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 
)
inlinenoexcept
261 {
262 return mem_force_reload(region, N, kind, order);
263 }
memory_flush mem_force_reload(const byte *data, size_t bytes, memory_flush kind=memory_flush_none, std::memory_order order=std::memory_order_acquire) noexcept
Definition mem_flush_loads_stores.hpp:234

◆ mem_flush_stores() [1/2]

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 
)
inlinenoexcept
284 {
285 // I really wish this would work on a region, not globally
286 atomic_thread_fence(order);
287 // Ensure dead store elimination does not occur on our region by calling a
288 // potentially unknown external function which forces the compiler to dump
289 // out all pending writes before this call
290 detail::potentially_unknown_jump()(data, bytes);
291 if(memory_flush_none != kind)
292 {
293 // TODO FIXME We assume a 64 byte cache line, which is bold.
294 void *_data = (void *) (((uintptr_t) data) & ~63);
295 size_t _bytes = ((uintptr_t) data + bytes + 63) - ((uintptr_t) _data);
296 _bytes &= ~63;
297 memory_flush ret = detail::flush_impl()(_data, _bytes, kind);
298 return ret;
299 }
300 return kind;
301 }

◆ mem_flush_stores() [2/2]

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 
)
inlinenoexcept
309 {
310 return mem_flush_stores(region, N, kind, order);
311 }
memory_flush mem_flush_stores(const byte *data, size_t bytes, memory_flush kind=memory_flush_none, std::memory_order order=std::memory_order_release) noexcept
Definition mem_flush_loads_stores.hpp:282

Variable Documentation

◆ memory_flush_none

constexpr memory_flush quickcpplib::_xxx::mem_flush_loads_stores::memory_flush_none = memory_flush::memory_flush_none
constexpr

No memory flushing.

◆ memory_flush_retain

constexpr memory_flush quickcpplib::_xxx::mem_flush_loads_stores::memory_flush_retain = memory_flush::memory_flush_retain
constexpr

Flush modified cache line to memory, but retain as unmodified in cache.

◆ memory_flush_evict

constexpr memory_flush quickcpplib::_xxx::mem_flush_loads_stores::memory_flush_evict = memory_flush::memory_flush_evict
constexpr

Flush modified cache line to memory, and evict completely from all caches.