1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
use std::cmp::PartialEq;
#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub enum Tag {
None,
First,
Second,
Both,
}
impl Tag {
#[inline]
pub(super) 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) -> Tag {
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
}
}