folly copyright 2015 -> copyright 2016
[folly.git] / folly / experimental / test / ReadMostlySharedPtrBenchmark.cpp
1 /*
2  * Copyright 2016 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
18 #include <thread>
19 #include <iostream>
20 #include <folly/Benchmark.h>
21 #include <folly/Memory.h>
22 #include <gflags/gflags.h>
23
24 #include <folly/experimental/RCURefCount.h>
25 #include <folly/experimental/ReadMostlySharedPtr.h>
26
27 template <template<typename> class MainPtr,
28           template<typename> class WeakPtr,
29           size_t threadCount>
30 void benchmark(size_t n) {
31   MainPtr<int> mainPtr(folly::make_unique<int>(42));
32
33   std::vector<std::thread> ts;
34
35   for (size_t t = 0; t < threadCount; ++t) {
36     ts.emplace_back([&]() {
37         WeakPtr<int> weakPtr(mainPtr);
38
39         for (size_t i = 0; i < n; ++i) {
40           weakPtr.lock();
41         }
42       });
43   }
44
45   for (auto& t: ts) {
46     t.join();
47   }
48 }
49
50 template <typename T>
51 using RCUMainPtr = folly::ReadMostlyMainPtr<T, folly::RCURefCount>;
52 template <typename T>
53 using RCUWeakPtr = folly::ReadMostlyWeakPtr<T, folly::RCURefCount>;
54 template <typename T>
55 using TLMainPtr = folly::ReadMostlyMainPtr<T, folly::TLRefCount>;
56 template <typename T>
57 using TLWeakPtr = folly::ReadMostlyWeakPtr<T, folly::TLRefCount>;
58
59
60 BENCHMARK(WeakPtrOneThread, n) {
61   benchmark<std::shared_ptr, std::weak_ptr, 1>(n);
62 }
63
64 BENCHMARK(WeakPtrFourThreads, n) {
65   benchmark<std::shared_ptr, std::weak_ptr, 4>(n);
66 }
67
68 BENCHMARK(RCUReadMostlyWeakPtrOneThread, n) {
69   benchmark<RCUMainPtr, RCUWeakPtr, 1>(n);
70 }
71
72 BENCHMARK(RCUReadMostlyWeakPtrFourThreads, n) {
73   benchmark<RCUMainPtr, RCUWeakPtr, 4>(n);
74 }
75
76 BENCHMARK(TLReadMostlyWeakPtrOneThread, n) {
77   benchmark<TLMainPtr, TLWeakPtr, 1>(n);
78 }
79
80 BENCHMARK(TLReadMostlyWeakPtrFourThreads, n) {
81   benchmark<TLMainPtr, TLWeakPtr, 4>(n);
82 }
83
84 int main(int argc, char** argv) {
85   gflags::ParseCommandLineFlags(&argc, &argv, true);
86   gflags::SetCommandLineOptionWithMode(
87     "bm_min_usec", "100000", gflags::SET_FLAG_IF_DEFAULT
88   );
89
90   folly::runBenchmarks();
91
92   return 0;
93 }