use core::{mem, ptr};
use raw::bitmask::BitMask;
use raw::EMPTY;
#[cfg(any(
target_pointer_width = "64",
target_arch = "aarch64",
target_arch = "x86_64",
))]
type GroupWord = u64;
#[cfg(all(
target_pointer_width = "32",
not(target_arch = "aarch64"),
not(target_arch = "x86_64"),
))]
type GroupWord = u32;
pub type BitMaskWord = GroupWord;
pub const BITMASK_SHIFT: u32 = 3;
pub const BITMASK_MASK: GroupWord = 0x8080808080808080u64 as GroupWord;
#[inline]
fn repeat(byte: u8) -> GroupWord {
let repeat = byte as GroupWord;
let repeat = repeat | repeat.wrapping_shl(8);
let repeat = repeat | repeat.wrapping_shl(16);
repeat | repeat.wrapping_shl(32)
}
pub struct Group(GroupWord);
impl Group {
pub const WIDTH: usize = mem::size_of::<Self>();
#[inline]
pub fn static_empty() -> &'static [u8] {
#[repr(C)]
struct Dummy {
_align: [GroupWord; 0],
bytes: [u8; Group::WIDTH],
};
const DUMMY: Dummy = Dummy {
_align: [],
bytes: [EMPTY; Group::WIDTH],
};
&DUMMY.bytes
}
#[inline]
pub unsafe fn load(ptr: *const u8) -> Group {
Group(ptr::read_unaligned(ptr as *const _))
}
#[inline]
pub unsafe fn load_aligned(ptr: *const u8) -> Group {
Group(ptr::read(ptr as *const _))
}
#[inline]
pub unsafe fn store_aligned(&self, ptr: *mut u8) {
ptr::write(ptr as *mut _, self.0);
}
#[inline]
pub fn match_byte(&self, byte: u8) -> BitMask {
let cmp = self.0 ^ repeat(byte);
BitMask(((cmp - repeat(0x01)) & !cmp & repeat(0x80)).to_le())
}
#[inline]
pub fn match_empty(&self) -> BitMask {
BitMask((self.0 & (self.0 << 1) & repeat(0x80)).to_le())
}
#[inline]
pub fn match_empty_or_deleted(&self) -> BitMask {
BitMask((self.0 & repeat(0x80)).to_le())
}
#[inline]
pub fn convert_special_to_empty_and_full_to_deleted(&self) -> Group {
Group(((self.0 & repeat(0x80)) >> 7) * 0xff)
}
}