2016-08-29 17:59:46 +00:00
|
|
|
#undef NDEBUG
|
|
|
|
#include <cassert>
|
2016-10-07 18:04:50 +00:00
|
|
|
#include <cstddef>
|
2015-03-18 20:34:43 +00:00
|
|
|
|
|
|
|
#include "benchmark/benchmark.h"
|
|
|
|
|
|
|
|
#if __cplusplus >= 201103L
|
|
|
|
#error C++11 or greater detected. Should be C++03.
|
|
|
|
#endif
|
|
|
|
|
2017-09-14 21:50:33 +00:00
|
|
|
#ifdef BENCHMARK_HAS_CXX11
|
|
|
|
#error C++11 or greater detected by the library. BENCHMARK_HAS_CXX11 is defined.
|
|
|
|
#endif
|
|
|
|
|
2015-03-18 20:34:43 +00:00
|
|
|
void BM_empty(benchmark::State& state) {
|
2016-10-07 18:04:50 +00:00
|
|
|
while (state.KeepRunning()) {
|
Iteration counts should be `uint64_t` globally. (#817)
This is a shameless rip-off of https://github.com/google/benchmark/pull/646
I did promise to look into why that proposed PR was producing
so much worse assembly, and so i finally did.
The reason is - that diff changes `size_t` (unsigned) to `int64_t` (signed).
There is this nice little `assert`:
https://github.com/google/benchmark/blob/7a1c37028359ca9d386d719a6ad527743cf1b753/include/benchmark/benchmark.h#L744
It ensures that we didn't magically decide to advance our iterator
when we should have finished benchmarking.
When `cached_` was unsigned, the `assert` was `cached_ UGT 0`.
But we only ever get to that `assert` if `cached_ NE 0`,
and naturally if `cached_` is not `0`, then it is bigger than `0`,
so the `assert` is tautological, and gets folded away.
But now that `cached_` became signed, the assert became `cached_ SGT 0`.
And we still only know that `cached_ NE 0`, so the assert can't be
optimized out, or at least it doesn't currently.
Regardless of whether or not that is a bug in itself,
that particular diff would have regressed the normal 64-bit systems,
by halving the maximal iteration space (since we go from unsigned counter
to signed one, of the same bit-width), which seems like a bug.
And just so it happens, fixing *this* bug, fixes the other bug.
This produces fully (bit-by-bit) identical state_assembly_test.s
The filecheck change is actually needed regardless of this patch,
else this test does not pass for me even without this diff.
2019-05-13 09:33:11 +00:00
|
|
|
volatile benchmark::IterationCount x = state.iterations();
|
2016-10-07 18:04:50 +00:00
|
|
|
((void)x);
|
|
|
|
}
|
2015-03-18 20:34:43 +00:00
|
|
|
}
|
|
|
|
BENCHMARK(BM_empty);
|
|
|
|
|
2016-08-29 17:59:46 +00:00
|
|
|
// The new C++11 interface for args/ranges requires initializer list support.
|
|
|
|
// Therefore we provide the old interface to support C++03.
|
|
|
|
void BM_old_arg_range_interface(benchmark::State& state) {
|
2016-10-07 18:04:50 +00:00
|
|
|
assert((state.range(0) == 1 && state.range(1) == 2) ||
|
|
|
|
(state.range(0) == 5 && state.range(1) == 6));
|
|
|
|
while (state.KeepRunning()) {
|
|
|
|
}
|
2016-08-29 17:59:46 +00:00
|
|
|
}
|
|
|
|
BENCHMARK(BM_old_arg_range_interface)->ArgPair(1, 2)->RangePair(5, 5, 6, 6);
|
|
|
|
|
2015-03-18 20:34:43 +00:00
|
|
|
template <class T, class U>
|
|
|
|
void BM_template2(benchmark::State& state) {
|
2016-10-07 18:04:50 +00:00
|
|
|
BM_empty(state);
|
2015-03-18 20:34:43 +00:00
|
|
|
}
|
|
|
|
BENCHMARK_TEMPLATE2(BM_template2, int, long);
|
|
|
|
|
|
|
|
template <class T>
|
|
|
|
void BM_template1(benchmark::State& state) {
|
2016-10-07 18:04:50 +00:00
|
|
|
BM_empty(state);
|
2015-03-18 20:34:43 +00:00
|
|
|
}
|
|
|
|
BENCHMARK_TEMPLATE(BM_template1, long);
|
|
|
|
BENCHMARK_TEMPLATE1(BM_template1, int);
|
|
|
|
|
2017-10-09 19:10:37 +00:00
|
|
|
template <class T>
|
2021-11-10 16:22:31 +00:00
|
|
|
struct BM_Fixture : public ::benchmark::Fixture {};
|
2017-10-09 19:10:37 +00:00
|
|
|
|
|
|
|
BENCHMARK_TEMPLATE_F(BM_Fixture, BM_template1, long)(benchmark::State& state) {
|
|
|
|
BM_empty(state);
|
|
|
|
}
|
|
|
|
BENCHMARK_TEMPLATE1_F(BM_Fixture, BM_template2, int)(benchmark::State& state) {
|
|
|
|
BM_empty(state);
|
|
|
|
}
|
|
|
|
|
2017-03-02 00:23:42 +00:00
|
|
|
void BM_counters(benchmark::State& state) {
|
2021-11-10 16:22:31 +00:00
|
|
|
BM_empty(state);
|
|
|
|
state.counters["Foo"] = 2;
|
2017-03-02 00:23:42 +00:00
|
|
|
}
|
|
|
|
BENCHMARK(BM_counters);
|
|
|
|
|
2017-12-04 01:45:07 +00:00
|
|
|
BENCHMARK_MAIN();
|