forked from ravendb/ravendb
-
Notifications
You must be signed in to change notification settings - Fork 1
/
PageLocatorV5.cs
206 lines (162 loc) · 5.93 KB
/
PageLocatorV5.cs
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
using System;
using System.Diagnostics;
using Voron.Impl;
namespace Micro.Benchmark.PageLocatorImpl
{
/// <summary>
/// Implements 4 loop unroll, uses ushorts rather than ints
/// </summary>
public class PageLocatorV5
{
private const ushort Invalid = 0;
private readonly LowLevelTransaction _tx;
private readonly int _cacheSize;
private readonly ushort[] _fingerprints;
private readonly PageHandlePtrV3[] _cache;
private int _current;
public PageLocatorV5(LowLevelTransaction tx, int cacheSize = 4)
{
//Debug.Assert(tx != null);
//Debug.Assert(cacheSize > 0);
_tx = tx;
if (tx != null)
Debug.Fail("");
// Align cache size to 4 for loop unrolling
_cacheSize = cacheSize;
if (_cacheSize % 4 != 0)
{
_cacheSize += 4 - _cacheSize % 4;
}
_current = -1;
_cache = new PageHandlePtrV3[_cacheSize];
_fingerprints = new ushort[_cacheSize];
for (ushort i = 0; i < _fingerprints.Length; i++)
_fingerprints[i] = Invalid;
}
public MyPage GetReadOnlyPage(long pageNumber)
{
ushort sfingerprint = (ushort)pageNumber;
int fingerprint = sfingerprint;
int i = 0;
int size = _cacheSize;
while (i < size)
{
int f1 = _fingerprints[i + 0];
int f2 = _fingerprints[i + 1];
int f3 = _fingerprints[i + 2];
int f4 = _fingerprints[i + 3];
// This is used to force the JIT to layout the code as if unlikely() compiler directive existed.
if (f1 == fingerprint)
goto Found;
if (f2 == fingerprint)
{
i += 1; goto Found;
}
if (f3 == fingerprint)
{
i += 2; goto Found;
}
if (f4 == fingerprint)
{
i += 1; goto Found;
}
i += 4;
}
// If we got here, there was a cache miss
_current = (_current + 1) % _cacheSize;
_cache[_current] = new PageHandlePtrV3(pageNumber, LowLevelTransactionStub.GetPage(pageNumber), false);
_fingerprints[_current] = sfingerprint;
return _cache[_current].Value;
Found:
// This is not the common case on the loop and we are returning anyways. It doesnt matter the jump is far.
if (_cache[i].PageNumber == pageNumber)
return _cache[i].Value;
_cache[i] = new PageHandlePtrV3(pageNumber, LowLevelTransactionStub.GetPage(pageNumber), false);
return _cache[i].Value;
}
public MyPage GetWritablePage(long pageNumber)
{
ushort sfingerprint = (ushort)pageNumber;
int fingerprint = sfingerprint;
int i = 0;
int size = _cacheSize;
while (i < size)
{
int f1 = _fingerprints[i + 0];
int f2 = _fingerprints[i + 1];
int f3 = _fingerprints[i + 2];
int f4 = _fingerprints[i + 3];
// This is used to force the JIT to layout the code as if unlikely() compiler directive existed.
if (f1 == fingerprint)
goto Found;
if (f2 == fingerprint)
{
i += 1; goto Found;
}
if (f3 == fingerprint)
{
i += 2; goto Found;
}
if (f4 == fingerprint)
{
i += 1; goto Found;
}
i += 4;
}
// If we got here, there was a cache miss
_current = (_current + 1) % _cacheSize;
_cache[_current] = new PageHandlePtrV3(pageNumber, LowLevelTransactionStub.ModifyPage(pageNumber), true);
_fingerprints[_current] = sfingerprint;
return _cache[_current].Value;
Found:
if (_cache[i].PageNumber == pageNumber && _cache[i].IsWritable)
return _cache[i].Value;
_cache[i] = new PageHandlePtrV3(pageNumber, LowLevelTransactionStub.ModifyPage(pageNumber), true);
return _cache[i].Value;
}
public void Clear()
{
_current = -1;
Array.Clear(_cache, 0, _cache.Length);
for (int i = 0; i < _fingerprints.Length; i++)
_fingerprints[i] = Invalid;
}
public void Reset(long pageNumber)
{
ushort sfingerprint = (ushort)pageNumber;
int fingerprint = sfingerprint;
int i = 0;
int size = _cacheSize;
while (i < size)
{
int f1 = _fingerprints[i + 0];
int f2 = _fingerprints[i + 1];
int f3 = _fingerprints[i + 2];
int f4 = _fingerprints[i + 3];
// This is used to force the JIT to layout the code as if unlikely() compiler directive existed.
if (f1 == fingerprint)
goto Found;
if (f2 == fingerprint)
{
i += 1; goto Found;
}
if (f3 == fingerprint)
{
i += 2; goto Found;
}
if (f4 == fingerprint)
{
i += 1; goto Found;
}
i += 4;
}
return;
Found:
if (_cache[i].PageNumber == pageNumber)
{
_cache[i] = new PageHandlePtrV3();
_fingerprints[i] = Invalid;
}
}
}
}