-
Notifications
You must be signed in to change notification settings - Fork 0
/
insert.cpp
183 lines (154 loc) · 4.13 KB
/
insert.cpp
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
// Copyright 2020 The Division Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Author [email protected] && [email protected]
#include "linked_list.h"
#include "plf_list.h"
#include <benchmark/benchmark.h>
#include <boost/intrusive/list.hpp>
#include <boost/intrusive/list_hook.hpp>
#include <iostream>
#include <list>
#include <llvm/ADT/FoldingSet.h>
#include <llvm/ADT/ImmutableList.h>
#include <llvm/ADT/ilist.h>
#include <llvm/ADT/simple_ilist.h>
using mode = boost::intrusive::link_mode<boost::intrusive::safe_link>;
using constant_time_size = boost::intrusive::constant_time_size<true>;
struct SList : public boost::intrusive::list_base_hook<mode>
{
int x{};
};
struct LNode : public llvm::ilist_node<LNode, llvm::ilist_tag<LNode>>
{
int x{};
};
struct INode
{
int x{};
void Profile(llvm::FoldingSetNodeID &ID) const {}
};
static void BenchListInsert(benchmark::State &state)
{
for (auto _ : state)
{
std::list<SList> v;
for (auto i = 0; i < state.range(0); i++)
{
v.push_back({});
}
}
}
BENCHMARK(BenchListInsert)->Range(1, 65536);
struct BUNode : public SList, public butil::LinkNode<BUNode>
{
int x{};
};
static void BenchBUListInsert(benchmark::State &state)
{
for (auto _ : state)
{
butil::LinkedList<BUNode> v;
std::vector<BUNode> vs;
vs.resize(state.range(0));
for (auto i = 0; i < state.range(0); i++)
{
v.Append(&vs[i]);
}
}
}
BENCHMARK(BenchBUListInsert)->Range(1, 65536);
static void BenchIntrusiveListInsert(benchmark::State &state)
{
for (auto _ : state)
{
std::vector<SList> lst(state.range(0));
boost::intrusive::list<SList, constant_time_size> v;
for (auto i = 0; i < state.range(0); i++)
{
v.push_back(lst[i]);
}
}
}
BENCHMARK(BenchIntrusiveListInsert)->Range(1, 65536);
static void BenchPlfListInsert(benchmark::State &state)
{
for (auto _ : state)
{
plf::list<SList> v;
for (auto i = 0; i < state.range(0); i++)
{
v.push_back({});
}
}
}
BENCHMARK(BenchPlfListInsert)->Range(1, 65536);
static void BenchAdtList(benchmark::State &state)
{
for (auto _ : state)
{
llvm::ilist<LNode, llvm::ilist_tag<LNode>> v;
for (auto i = 0; i < state.range(0); i++)
{
v.push_back(new LNode);
}
}
}
BENCHMARK(BenchAdtList)->Range(1, 65536);
static void BenchAdtSimpleList(benchmark::State &state)
{
for (auto _ : state)
{
llvm::simple_ilist<LNode, llvm::ilist_tag<LNode>> v;
std::vector<LNode> vs;
vs.resize(state.range(0));
for (auto i = 0; i < state.range(0); i++)
{
v.push_back(vs[i]);
}
}
}
BENCHMARK(BenchAdtSimpleList)->Range(1, 65536);
static void BenchAdtImmutableList(benchmark::State &state)
{
for (auto _ : state)
{
llvm::ImmutableList<INode>::Factory factory;
auto list = factory.getEmptyList();
std::vector<INode> vn;
vn.resize(state.range(0));
for (auto i = 0; i < state.range(0); i++)
{
list = factory.emplace(list, vn[i]);
}
}
}
BENCHMARK(BenchAdtImmutableList)->Range(1, 65536);
int main(int argc, char **argv)
{
butil::LinkedList<BUNode> v;
std::vector<BUNode> vs;
vs.resize(10, {});
for (auto i = 0; i < 10; i++)
{
vs[i].x = i;
v.Append(&vs[i]);
}
for (auto it : v)
{
std::cout << it.value()->x << '\n';
}
benchmark::Initialize(&argc, argv);
benchmark::RunSpecifiedBenchmarks();
return 0;
}