use crate::loom::hint;
use core::{
fmt,
ops::{Deref, DerefMut},
};
macro_rules! feature {
(
#![$meta:meta]
$($item:item)*
) => {
$(
#[cfg($meta)]
$item
)*
}
}
macro_rules! test_trace {
($($tt:tt)*) => {
#[cfg(test)]
tracing::trace!($($tt)*)
}
}
#[derive(Debug, Clone)]
pub(crate) struct Backoff {
exp: u8,
max: u8,
}
pub(crate) use cache_pad::CachePadded;
#[cfg(feature = "no-cache-pad")]
mod cache_pad {
#[derive(Clone, Copy, Default, Hash, PartialEq, Eq)]
pub(crate) struct CachePadded<T>(pub(crate) T);
}
#[cfg(not(feature = "no-cache-pad"))]
mod cache_pad {
#[cfg_attr(any(target_arch = "x86_64", target_arch = "aarch64"), repr(align(128)))]
#[cfg_attr(
not(any(target_arch = "x86_64", target_arch = "aarch64")),
repr(align(64))
)]
#[derive(Clone, Copy, Default, Hash, PartialEq, Eq)]
pub(crate) struct CachePadded<T>(pub(crate) T);
}
pub(crate) struct FmtOption<'a, T> {
opt: Option<&'a T>,
or_else: &'a str,
}
impl Backoff {
pub(crate) const DEFAULT_MAX_EXPONENT: u8 = 8;
pub(crate) const fn new() -> Self {
Self {
exp: 0,
max: Self::DEFAULT_MAX_EXPONENT,
}
}
#[allow(dead_code)]
pub(crate) fn with_max_exponent(max: u8) -> Self {
assert!(max <= Self::DEFAULT_MAX_EXPONENT);
Self { exp: 0, max }
}
#[inline(always)]
pub(crate) fn spin(&mut self) {
for _ in 0..(1 << self.exp) {
hint::spin_loop();
}
if self.exp < self.max {
self.exp += 1
}
}
}
impl Default for Backoff {
fn default() -> Self {
Self::new()
}
}
impl<T> Deref for CachePadded<T> {
type Target = T;
#[inline]
fn deref(&self) -> &T {
&self.0
}
}
impl<T> DerefMut for CachePadded<T> {
#[inline]
fn deref_mut(&mut self) -> &mut T {
&mut self.0
}
}
impl<T: fmt::Debug> fmt::Debug for CachePadded<T> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
self.0.fmt(f)
}
}
impl<'a, T> FmtOption<'a, T> {
pub(crate) fn new(opt: &'a Option<T>) -> Self {
Self {
opt: opt.as_ref(),
or_else: "None",
}
}
}
impl<T: fmt::Debug> fmt::Debug for FmtOption<'_, T> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match self.opt {
Some(val) => val.fmt(f),
None => f.write_str(self.or_else),
}
}
}
impl<T: fmt::Display> fmt::Display for FmtOption<'_, T> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match self.opt {
Some(val) => val.fmt(f),
None => f.write_str(self.or_else),
}
}
}
#[cfg(test)]
pub(crate) fn assert_send_sync<T: Send + Sync>() {}