2 * Copyright 2016 Facebook, Inc.
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
19 #include <folly/Portability.h>
20 #include <folly/Preprocessor.h> // for FB_ANONYMOUS_VARIABLE
21 #include <folly/ScopeGuard.h>
22 #include <folly/Traits.h>
23 #include <folly/portability/GFlags.h>
24 #include <folly/portability/Time.h>
28 #include <boost/function_types/function_arity.hpp>
30 #include <glog/logging.h>
32 #include <type_traits>
34 DECLARE_bool(benchmark);
39 * Runs all benchmarks defined. Usually put in main().
44 * Runs all benchmarks defined if and only if the --benchmark flag has
45 * been passed to the program. Usually put in main().
47 inline bool runBenchmarksOnFlag() {
48 if (FLAGS_benchmark) {
51 return FLAGS_benchmark;
56 typedef std::pair<uint64_t, unsigned int> TimeIterPair;
59 * Adds a benchmark wrapped in a std::function. Only used
60 * internally. Pass by value is intentional.
62 void addBenchmarkImpl(const char* file,
64 std::function<TimeIterPair(unsigned int)>);
67 * Takes the difference between two timespec values. end is assumed to
70 inline uint64_t timespecDiff(timespec end, timespec start) {
71 if (end.tv_sec == start.tv_sec) {
72 assert(end.tv_nsec >= start.tv_nsec);
73 return end.tv_nsec - start.tv_nsec;
75 assert(end.tv_sec > start.tv_sec);
76 auto diff = uint64_t(end.tv_sec - start.tv_sec);
78 std::numeric_limits<uint64_t>::max() / 1000000000UL);
79 return diff * 1000000000UL
80 + end.tv_nsec - start.tv_nsec;
84 * Takes the difference between two sets of timespec values. The first
85 * two come from a high-resolution clock whereas the other two come
86 * from a low-resolution clock. The crux of the matter is that
87 * high-res values may be bogus as documented in
88 * http://linux.die.net/man/3/clock_gettime. The trouble is when the
89 * running process migrates from one CPU to another, which is more
90 * likely for long-running processes. Therefore we watch for high
91 * differences between the two timings.
93 * This function is subject to further improvements.
95 inline uint64_t timespecDiff(timespec end, timespec start,
96 timespec endCoarse, timespec startCoarse) {
97 auto fine = timespecDiff(end, start);
98 auto coarse = timespecDiff(endCoarse, startCoarse);
99 if (coarse - fine >= 1000000) {
100 // The fine time is in all likelihood bogus
106 } // namespace detail
109 * Supporting type for BENCHMARK_SUSPEND defined below.
111 struct BenchmarkSuspender {
112 BenchmarkSuspender() {
113 CHECK_EQ(0, clock_gettime(CLOCK_REALTIME, &start));
116 BenchmarkSuspender(const BenchmarkSuspender &) = delete;
117 BenchmarkSuspender(BenchmarkSuspender && rhs) noexcept {
119 rhs.start.tv_nsec = rhs.start.tv_sec = 0;
122 BenchmarkSuspender& operator=(const BenchmarkSuspender &) = delete;
123 BenchmarkSuspender& operator=(BenchmarkSuspender && rhs) {
124 if (start.tv_nsec > 0 || start.tv_sec > 0) {
128 rhs.start.tv_nsec = rhs.start.tv_sec = 0;
132 ~BenchmarkSuspender() {
133 if (start.tv_nsec > 0 || start.tv_sec > 0) {
139 assert(start.tv_nsec > 0 || start.tv_sec > 0);
141 start.tv_nsec = start.tv_sec = 0;
145 assert(start.tv_nsec == 0 || start.tv_sec == 0);
146 CHECK_EQ(0, clock_gettime(CLOCK_REALTIME, &start));
150 auto dismissing(F f) -> typename std::result_of<F()>::type {
151 SCOPE_EXIT { rehire(); };
157 * This is for use inside of if-conditions, used in BENCHMARK macros.
158 * If-conditions bypass the explicit on operator bool.
160 explicit operator bool() const {
165 * Accumulates nanoseconds spent outside benchmark.
167 typedef uint64_t NanosecondsSpent;
168 static NanosecondsSpent nsSpent;
173 CHECK_EQ(0, clock_gettime(CLOCK_REALTIME, &end));
174 nsSpent += detail::timespecDiff(end, start);
182 * Adds a benchmark. Usually not called directly but instead through
183 * the macro BENCHMARK defined below. The lambda function involved
184 * must take exactly one parameter of type unsigned, and the benchmark
185 * uses it with counter semantics (iteration occurs inside the
188 template <typename Lambda>
189 typename std::enable_if<
190 boost::function_types::function_arity<decltype(&Lambda::operator())>::value
193 addBenchmark(const char* file, const char* name, Lambda&& lambda) {
194 auto execute = [=](unsigned int times) {
195 BenchmarkSuspender::nsSpent = 0;
199 // CORE MEASUREMENT STARTS
200 auto const r1 = clock_gettime(CLOCK_REALTIME, &start);
201 niter = lambda(times);
202 auto const r2 = clock_gettime(CLOCK_REALTIME, &end);
203 // CORE MEASUREMENT ENDS
208 return detail::TimeIterPair(
209 detail::timespecDiff(end, start) - BenchmarkSuspender::nsSpent,
213 detail::addBenchmarkImpl(file, name,
214 std::function<detail::TimeIterPair(unsigned int)>(execute));
218 * Adds a benchmark. Usually not called directly but instead through
219 * the macro BENCHMARK defined below. The lambda function involved
220 * must take zero parameters, and the benchmark calls it repeatedly
221 * (iteration occurs outside the function).
223 template <typename Lambda>
224 typename std::enable_if<
225 boost::function_types::function_arity<decltype(&Lambda::operator())>::value
228 addBenchmark(const char* file, const char* name, Lambda&& lambda) {
229 addBenchmark(file, name, [=](unsigned int times) {
230 unsigned int niter = 0;
231 while (times-- > 0) {
239 * Call doNotOptimizeAway(var) to ensure that var will be computed even
240 * post-optimization. Use it for variables that are computed during
241 * benchmarking but otherwise are useless. The compiler tends to do a
242 * good job at eliminating unused variables, and this function fools it
243 * into thinking var is in fact needed.
245 * Call makeUnpredictable(var) when you don't want the optimizer to use
246 * its knowledge of var to shape the following code. This is useful
247 * when constant propagation or power reduction is possible during your
248 * benchmark but not in real use cases.
253 #pragma optimize("", off)
255 inline void doNotOptimizeDependencySink(const void*) {}
257 #pragma optimize("", on)
260 void doNotOptimizeAway(const T& datum) {
261 doNotOptimizeDependencySink(&datum);
264 template <typename T>
265 void makeUnpredictable(T& datum) {
266 doNotOptimizeDependencySink(&datum);
272 template <typename T>
273 struct DoNotOptimizeAwayNeedsIndirect {
274 using Decayed = typename std::decay<T>::type;
276 // First two constraints ensure it can be an "r" operand.
277 // std::is_pointer check is because callers seem to expect that
278 // doNotOptimizeAway(&x) is equivalent to doNotOptimizeAway(x).
279 constexpr static bool value = !folly::IsTriviallyCopyable<Decayed>::value ||
280 sizeof(Decayed) > sizeof(long) || std::is_pointer<Decayed>::value;
282 } // detail namespace
284 template <typename T>
285 auto doNotOptimizeAway(const T& datum) -> typename std::enable_if<
286 !detail::DoNotOptimizeAwayNeedsIndirect<T>::value>::type {
287 asm volatile("" ::"X"(datum));
290 template <typename T>
291 auto doNotOptimizeAway(const T& datum) -> typename std::enable_if<
292 detail::DoNotOptimizeAwayNeedsIndirect<T>::value>::type {
293 asm volatile("" ::"m"(datum) : "memory");
296 template <typename T>
297 auto makeUnpredictable(T& datum) -> typename std::enable_if<
298 !detail::DoNotOptimizeAwayNeedsIndirect<T>::value>::type {
299 asm volatile("" : "+r"(datum));
302 template <typename T>
303 auto makeUnpredictable(T& datum) -> typename std::enable_if<
304 detail::DoNotOptimizeAwayNeedsIndirect<T>::value>::type {
305 asm volatile("" ::"m"(datum) : "memory");
313 * Introduces a benchmark function. Used internally, see BENCHMARK and
316 #define BENCHMARK_IMPL(funName, stringName, rv, paramType, paramName) \
317 static void funName(paramType); \
318 static bool FB_ANONYMOUS_VARIABLE(follyBenchmarkUnused) = ( \
319 ::folly::addBenchmark(__FILE__, stringName, \
320 [](paramType paramName) -> unsigned { funName(paramName); \
323 static void funName(paramType paramName)
326 * Introduces a benchmark function with support for returning the actual
327 * number of iterations. Used internally, see BENCHMARK_MULTI and friends
330 #define BENCHMARK_MULTI_IMPL(funName, stringName, paramType, paramName) \
331 static unsigned funName(paramType); \
332 static bool FB_ANONYMOUS_VARIABLE(follyBenchmarkUnused) = ( \
333 ::folly::addBenchmark(__FILE__, stringName, \
334 [](paramType paramName) { return funName(paramName); }), \
336 static unsigned funName(paramType paramName)
339 * Introduces a benchmark function. Use with either one or two arguments.
340 * The first is the name of the benchmark. Use something descriptive, such
341 * as insertVectorBegin. The second argument may be missing, or could be a
342 * symbolic counter. The counter dictates how many internal iteration the
343 * benchmark does. Example:
345 * BENCHMARK(vectorPushBack) {
350 * BENCHMARK(insertVectorBegin, n) {
352 * FOR_EACH_RANGE (i, 0, n) {
353 * v.insert(v.begin(), 42);
357 #define BENCHMARK(name, ...) \
360 FB_STRINGIZE(name), \
361 FB_ARG_2_OR_1(1, ## __VA_ARGS__), \
362 FB_ONE_OR_NONE(unsigned, ## __VA_ARGS__), \
366 * Like BENCHMARK above, but allows the user to return the actual
367 * number of iterations executed in the function body. This can be
368 * useful if the benchmark function doesn't know upfront how many
369 * iterations it's going to run or if it runs through a certain
370 * number of test cases, e.g.:
372 * BENCHMARK_MULTI(benchmarkSomething) {
373 * std::vector<int> testCases { 0, 1, 1, 2, 3, 5 };
374 * for (int c : testCases) {
377 * return testCases.size();
380 #define BENCHMARK_MULTI(name, ...) \
381 BENCHMARK_MULTI_IMPL( \
383 FB_STRINGIZE(name), \
384 FB_ONE_OR_NONE(unsigned, ## __VA_ARGS__), \
388 * Defines a benchmark that passes a parameter to another one. This is
389 * common for benchmarks that need a "problem size" in addition to
390 * "number of iterations". Consider:
392 * void pushBack(uint n, size_t initialSize) {
394 * BENCHMARK_SUSPEND {
395 * v.resize(initialSize);
397 * FOR_EACH_RANGE (i, 0, n) {
401 * BENCHMARK_PARAM(pushBack, 0)
402 * BENCHMARK_PARAM(pushBack, 1000)
403 * BENCHMARK_PARAM(pushBack, 1000000)
405 * The benchmark above estimates the speed of push_back at different
406 * initial sizes of the vector. The framework will pass 0, 1000, and
407 * 1000000 for initialSize, and the iteration count for n.
409 #define BENCHMARK_PARAM(name, param) \
410 BENCHMARK_NAMED_PARAM(name, param, param)
413 * Same as BENCHMARK_PARAM, but allows one to return the actual number of
414 * iterations that have been run.
416 #define BENCHMARK_PARAM_MULTI(name, param) \
417 BENCHMARK_NAMED_PARAM_MULTI(name, param, param)
420 * Like BENCHMARK_PARAM(), but allows a custom name to be specified for each
421 * parameter, rather than using the parameter value.
423 * Useful when the parameter value is not a valid token for string pasting,
424 * of when you want to specify multiple parameter arguments.
428 * void addValue(uint n, int64_t bucketSize, int64_t min, int64_t max) {
429 * Histogram<int64_t> hist(bucketSize, min, max);
431 * FOR_EACH_RANGE (i, 0, n) {
432 * hist.addValue(num);
434 * if (num > max) { num = min; }
438 * BENCHMARK_NAMED_PARAM(addValue, 0_to_100, 1, 0, 100)
439 * BENCHMARK_NAMED_PARAM(addValue, 0_to_1000, 10, 0, 1000)
440 * BENCHMARK_NAMED_PARAM(addValue, 5k_to_20k, 250, 5000, 20000)
442 #define BENCHMARK_NAMED_PARAM(name, param_name, ...) \
444 FB_CONCATENATE(name, FB_CONCATENATE(_, param_name)), \
445 FB_STRINGIZE(name) "(" FB_STRINGIZE(param_name) ")", \
449 name(iters, ## __VA_ARGS__); \
453 * Same as BENCHMARK_NAMED_PARAM, but allows one to return the actual number
454 * of iterations that have been run.
456 #define BENCHMARK_NAMED_PARAM_MULTI(name, param_name, ...) \
457 BENCHMARK_MULTI_IMPL( \
458 FB_CONCATENATE(name, FB_CONCATENATE(_, param_name)), \
459 FB_STRINGIZE(name) "(" FB_STRINGIZE(param_name) ")", \
462 return name(iters, ## __VA_ARGS__); \
466 * Just like BENCHMARK, but prints the time relative to a
467 * baseline. The baseline is the most recent BENCHMARK() seen in
468 * the current scope. Example:
470 * // This is the baseline
471 * BENCHMARK(insertVectorBegin, n) {
473 * FOR_EACH_RANGE (i, 0, n) {
474 * v.insert(v.begin(), 42);
478 * BENCHMARK_RELATIVE(insertListBegin, n) {
480 * FOR_EACH_RANGE (i, 0, n) {
481 * s.insert(s.begin(), 42);
485 * Any number of relative benchmark can be associated with a
486 * baseline. Another BENCHMARK() occurrence effectively establishes a
489 #define BENCHMARK_RELATIVE(name, ...) \
492 "%" FB_STRINGIZE(name), \
493 FB_ARG_2_OR_1(1, ## __VA_ARGS__), \
494 FB_ONE_OR_NONE(unsigned, ## __VA_ARGS__), \
498 * Same as BENCHMARK_RELATIVE, but allows one to return the actual number
499 * of iterations that have been run.
501 #define BENCHMARK_RELATIVE_MULTI(name, ...) \
502 BENCHMARK_MULTI_IMPL( \
504 "%" FB_STRINGIZE(name), \
505 FB_ONE_OR_NONE(unsigned, ## __VA_ARGS__), \
509 * A combination of BENCHMARK_RELATIVE and BENCHMARK_PARAM.
511 #define BENCHMARK_RELATIVE_PARAM(name, param) \
512 BENCHMARK_RELATIVE_NAMED_PARAM(name, param, param)
515 * Same as BENCHMARK_RELATIVE_PARAM, but allows one to return the actual
516 * number of iterations that have been run.
518 #define BENCHMARK_RELATIVE_PARAM_MULTI(name, param) \
519 BENCHMARK_RELATIVE_NAMED_PARAM_MULTI(name, param, param)
522 * A combination of BENCHMARK_RELATIVE and BENCHMARK_NAMED_PARAM.
524 #define BENCHMARK_RELATIVE_NAMED_PARAM(name, param_name, ...) \
526 FB_CONCATENATE(name, FB_CONCATENATE(_, param_name)), \
527 "%" FB_STRINGIZE(name) "(" FB_STRINGIZE(param_name) ")", \
531 name(iters, ## __VA_ARGS__); \
535 * Same as BENCHMARK_RELATIVE_NAMED_PARAM, but allows one to return the
536 * actual number of iterations that have been run.
538 #define BENCHMARK_RELATIVE_NAMED_PARAM_MULTI(name, param_name, ...) \
539 BENCHMARK_MULTI_IMPL( \
540 FB_CONCATENATE(name, FB_CONCATENATE(_, param_name)), \
541 "%" FB_STRINGIZE(name) "(" FB_STRINGIZE(param_name) ")", \
544 return name(iters, ## __VA_ARGS__); \
548 * Draws a line of dashes.
550 #define BENCHMARK_DRAW_LINE() \
551 static bool FB_ANONYMOUS_VARIABLE(follyBenchmarkUnused) = ( \
552 ::folly::addBenchmark(__FILE__, "-", []() -> unsigned { return 0; }), \
556 * Allows execution of code that doesn't count torward the benchmark's
557 * time budget. Example:
559 * BENCHMARK_START_GROUP(insertVectorBegin, n) {
561 * BENCHMARK_SUSPEND {
564 * FOR_EACH_RANGE (i, 0, n) {
565 * v.insert(v.begin(), 42);
569 #define BENCHMARK_SUSPEND \
570 if (auto FB_ANONYMOUS_VARIABLE(BENCHMARK_SUSPEND) = \
571 ::folly::BenchmarkSuspender()) {} \