proxygen
ReadMostlySharedPtrBenchmark.cpp
Go to the documentation of this file.
1 /*
2  * Copyright 2015-present Facebook, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 /* -*- Mode: C++; tab-width: 2; c-basic-offset: 2; indent-tabs-mode: nil -*- */
17 
19 
20 #include <iostream>
21 #include <thread>
22 
23 #include <folly/Benchmark.h>
24 #include <folly/Memory.h>
26 
27 template <
28  template <typename> class MainPtr,
29  template <typename> class WeakPtr,
30  size_t threadCount>
31 void benchmark(size_t n) {
32  MainPtr<int> mainPtr(std::make_unique<int>(42));
33 
34  std::vector<std::thread> ts;
35 
36  for (size_t t = 0; t < threadCount; ++t) {
37  ts.emplace_back([&]() {
38  WeakPtr<int> weakPtr(mainPtr);
39  // Prevent the compiler from hoisting code out of the loop.
40  auto op = [&]() FOLLY_NOINLINE { weakPtr.lock(); };
41 
42  for (size_t i = 0; i < n; ++i) {
43  op();
44  }
45  });
46  }
47 
48  for (auto& t : ts) {
49  t.join();
50  }
51 }
52 
53 template <typename T>
55 template <typename T>
57 
58 BENCHMARK(WeakPtrOneThread, n) {
59  benchmark<std::shared_ptr, std::weak_ptr, 1>(n);
60 }
61 
62 BENCHMARK(WeakPtrFourThreads, n) {
63  benchmark<std::shared_ptr, std::weak_ptr, 4>(n);
64 }
65 
66 BENCHMARK(TLReadMostlyWeakPtrOneThread, n) {
67  benchmark<TLMainPtr, TLWeakPtr, 1>(n);
68 }
69 
70 BENCHMARK(TLReadMostlyWeakPtrFourThreads, n) {
71  benchmark<TLMainPtr, TLWeakPtr, 4>(n);
72 }
73 
74 int main(int argc, char** argv) {
75  gflags::ParseCommandLineFlags(&argc, &argv, true);
76  gflags::SetCommandLineOptionWithMode(
77  "bm_min_usec", "100000", gflags::SET_FLAG_IF_DEFAULT);
78 
80 
81  return 0;
82 }
int main(int argc, char **argv)
void runBenchmarks()
Definition: Benchmark.cpp:456
#define FOLLY_NOINLINE
Definition: CPortability.h:142
char ** argv
BENCHMARK(WeakPtrOneThread, n)
void benchmark(size_t n)