Refactor the benchmark code.
Changes: - Modify the benchmarks to derive from a single Benchmark object. - Rewrite the main iteration code. This includes changing the iteration code to use the actual total time calculated by the benchmark as a basis for determining whether there are enough iterations instead of using the time it takes to run the benchmark. - Allow benchmarks to take no argument, int, or double. - Fix the PrettyInt printer for negative integers. - Modify the max column width name to include the whole name including the arg part. - Reformat property_benchmark.cpp in line with the rest of the code. - Modify a few of the math benchmarks to take an argument instead of separate benchmarks for the same function with different args. - Create a vector of regex_t structs to represent the args all at once instead of when running each benchmark. This change is in preparation for adding new math based benchmarks. Tested by running on a nexus flo running at max using the new code and the old code and comparing. All of the numbers are similar, but some of the iterations are different due to the slightly different algorithm used. Change-Id: I57ad1f3ff083282b9ffeb72e687cab369ce3523a
This commit is contained in:
@@ -14,14 +14,14 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#include "benchmark.h"
|
||||
|
||||
#include <unistd.h>
|
||||
#include <sys/syscall.h>
|
||||
#include <sys/time.h>
|
||||
#include <time.h>
|
||||
|
||||
static void BM_time_clock_gettime(int iters) {
|
||||
#include <benchmark/Benchmark.h>
|
||||
|
||||
BENCHMARK_NO_ARG(BM_time_clock_gettime);
|
||||
void BM_time_clock_gettime::Run(int iters) {
|
||||
StartBenchmarkTiming();
|
||||
|
||||
timespec t;
|
||||
@@ -31,9 +31,9 @@ static void BM_time_clock_gettime(int iters) {
|
||||
|
||||
StopBenchmarkTiming();
|
||||
}
|
||||
BENCHMARK(BM_time_clock_gettime);
|
||||
|
||||
static void BM_time_clock_gettime_syscall(int iters) {
|
||||
BENCHMARK_NO_ARG(BM_time_clock_gettime_syscall);
|
||||
void BM_time_clock_gettime_syscall::Run(int iters) {
|
||||
StartBenchmarkTiming();
|
||||
|
||||
timespec t;
|
||||
@@ -43,9 +43,9 @@ static void BM_time_clock_gettime_syscall(int iters) {
|
||||
|
||||
StopBenchmarkTiming();
|
||||
}
|
||||
BENCHMARK(BM_time_clock_gettime_syscall);
|
||||
|
||||
static void BM_time_gettimeofday(int iters) {
|
||||
BENCHMARK_NO_ARG(BM_time_gettimeofday);
|
||||
void BM_time_gettimeofday::Run(int iters) {
|
||||
StartBenchmarkTiming();
|
||||
|
||||
timeval tv;
|
||||
@@ -55,9 +55,9 @@ static void BM_time_gettimeofday(int iters) {
|
||||
|
||||
StopBenchmarkTiming();
|
||||
}
|
||||
BENCHMARK(BM_time_gettimeofday);
|
||||
|
||||
static void BM_time_gettimeofday_syscall(int iters) {
|
||||
BENCHMARK_NO_ARG(BM_time_gettimeofday_syscall);
|
||||
void BM_time_gettimeofday_syscall::Run(int iters) {
|
||||
StartBenchmarkTiming();
|
||||
|
||||
timeval tv;
|
||||
@@ -67,9 +67,9 @@ static void BM_time_gettimeofday_syscall(int iters) {
|
||||
|
||||
StopBenchmarkTiming();
|
||||
}
|
||||
BENCHMARK(BM_time_gettimeofday_syscall);
|
||||
|
||||
static void BM_time_time(int iters) {
|
||||
BENCHMARK_NO_ARG(BM_time_time);
|
||||
void BM_time_time::Run(int iters) {
|
||||
StartBenchmarkTiming();
|
||||
|
||||
for (int i = 0; i < iters; ++i) {
|
||||
@@ -78,4 +78,3 @@ static void BM_time_time(int iters) {
|
||||
|
||||
StopBenchmarkTiming();
|
||||
}
|
||||
BENCHMARK(BM_time_time);
|
||||
|
Reference in New Issue
Block a user