use std::cmp::PartialEq;
#[derive(Clone, Copy, Debug, Eq, Ord, PartialEq, PartialOrd)]
pub enum Tag {
None,
First,
Second,
Both,
}
impl Tag {
#[inline]
pub(super) const fn value(self) -> usize {
match self {
Self::None => 0,
Self::First => 1,
Self::Second => 2,
Self::Both => 3,
}
}
#[inline]
pub(super) fn into_tag<P>(ptr: *const P) -> Self {
match ((ptr as usize & 1) == 1, (ptr as usize & 2) == 2) {
(false, false) => Tag::None,
(true, false) => Tag::First,
(false, true) => Tag::Second,
_ => Tag::Both,
}
}
#[inline]
pub(super) fn update_tag<P>(ptr: *const P, tag: Tag) -> *const P {
(((ptr as usize) & (!3)) | tag.value()) as *const P
}
#[inline]
pub(super) fn unset_tag<P>(ptr: *const P) -> *const P {
((ptr as usize) & (!3)) as *const P
}
}
impl TryFrom<u8> for Tag {
type Error = u8;
#[inline]
fn try_from(val: u8) -> Result<Self, Self::Error> {
match val {
0 => Ok(Tag::None),
1 => Ok(Tag::First),
2 => Ok(Tag::Second),
3 => Ok(Tag::Both),
_ => Err(val),
}
}
}
impl From<Tag> for u8 {
#[inline]
fn from(t: Tag) -> Self {
match t {
Tag::None => 0,
Tag::First => 1,
Tag::Second => 2,
Tag::Both => 3,
}
}
}