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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
use memory::*;
#[derive(Copy, Clone, Debug)]
pub struct Guide {
pub hash: u32,
pub is_compact_bit: u32,
pub count: u32,
pub prism: AnchoredLine,
pub root: AnchoredLine,
}
impl Guide {
pub fn units() -> u32 { if cfg!(target_pointer_width = "32") { 2 } else { 1 } }
pub fn segment(&self) -> Segment { self.prism.segment() }
pub fn set_hash(mut self, hash: u32) -> Guide {
self.hash = hash;
self
}
pub fn clear_hash(mut self) -> Guide {
self.hash = 0;
self
}
pub fn has_hash(&self) -> bool { self.hash != 0 }
pub fn clear_compact(mut self) -> Guide {
self.is_compact_bit = 0;
self
}
pub fn inc_count(mut self) -> Guide {
self.count = self.count + 1;
self.clear_hash()
}
pub fn dec_count(mut self) -> Guide {
self.count = self.count - 1;
self.clear_hash()
}
pub fn reroot(mut self) -> Guide {
let root_offset = 1 + Guide::units() + (!self.is_compact_bit & 1);
self.root = self.prism.offset(root_offset as i32);
self
}
pub fn hydrate(prism: AnchoredLine) -> Guide {
if cfg!(target_pointer_width = "32") {
Guide::hydrate_top_bot(prism, prism[1].into(), prism[2].into())
} else {
let g: u64 = prism[1].into();
Guide::hydrate_top_bot(prism, (g >> 32) as u32, g as u32)
}
}
pub fn hydrate_top_bot(prism: AnchoredLine, top: u32, bot: u32) -> Guide {
let hash = top;
let is_compact_bit = (bot >> 31) & 1;
let count = {
let low_31 = (1 << 31) - 1;
bot & low_31
};
let root_offset = 1 + Guide::units() + (!is_compact_bit & 1);
let root = prism.offset(root_offset as i32);
Guide { hash, count, is_compact_bit, prism, root }
}
pub fn store_at(&self, mut prism: AnchoredLine) {
let top: u32 = self.hash;
let bot: u32 = (self.is_compact_bit << 31) | self.count;
if cfg!(target_pointer_width = "32") {
prism[1] = top.into();
prism[2] = bot.into();
} else {
let g: u64 = ((top as u64) << 32) | (bot as u64);
prism[1] = g.into();
}
}
pub fn store(self) -> Guide {
self.store_at(self.prism);
self
}
pub fn store_hash(self) -> Guide {
let prism = self.prism;
let top: u32 = self.hash;
let bot: u32 = (self.is_compact_bit << 31) | self.count;
if cfg!(target_pointer_width = "32") {
prism.store_hash(1, top.into());
prism.store_hash(2, bot.into());
} else {
let g: u64 = ((top as u64) << 32) | (bot as u64);
prism.store_hash(1, g.into())
}
self
}
}