blob: 8c06bcb7a5392f7d5dfa47013175f3d2d433347a (
plain) (
blame)
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
|
#pragma once
#include "public.h"
#include <atomic>
namespace NYT {
////////////////////////////////////////////////////////////////////////////////
template <class T>
struct TFreeListItemBase
{
std::atomic<T*> Next = nullptr;
};
using TAtomicUint128 = volatile unsigned __int128 __attribute__((aligned(16)));
template <class TItem>
class TFreeList
{
private:
struct THead
{
std::atomic<TItem*> Pointer = nullptr;
std::atomic<size_t> Epoch = 0;
THead() = default;
explicit THead(TItem* pointer);
};
union
{
THead Head_;
TAtomicUint128 AtomicHead_;
};
// Avoid false sharing.
char Padding[CacheLineSize - sizeof(TAtomicUint128)];
public:
TFreeList();
TFreeList(TFreeList&& other);
~TFreeList();
template <class TPredicate>
bool PutIf(TItem* head, TItem* tail, TPredicate predicate);
void Put(TItem* head, TItem* tail);
void Put(TItem* item);
TItem* Extract();
TItem* ExtractAll();
bool IsEmpty() const;
void Append(TFreeList& other);
};
////////////////////////////////////////////////////////////////////////////////
} // namespace NYT
#define FREE_LIST_INL_H_
#include "free_list-inl.h"
#undef FREE_LIST_INL_H_
|