2011-02-19 00:15:24 +02:00
|
|
|
#include "benchmark.h"
|
|
|
|
|
2011-05-23 21:01:08 +03:00
|
|
|
#include <cerrno>
|
2011-02-19 00:15:24 +02:00
|
|
|
#include <cstring>
|
|
|
|
#include <cstdio>
|
2011-06-13 08:16:19 +03:00
|
|
|
#include <memory>
|
2011-05-23 21:01:08 +03:00
|
|
|
#include <sys/time.h>
|
2011-02-19 00:15:24 +02:00
|
|
|
#include <sys/resource.h>
|
|
|
|
|
2011-06-13 08:16:19 +03:00
|
|
|
#include <iomanip>
|
2011-02-19 00:15:24 +02:00
|
|
|
#include <iostream>
|
2011-06-13 08:16:19 +03:00
|
|
|
#include <sstream>
|
2011-02-19 00:15:24 +02:00
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
using std::cerr;
|
2011-06-13 08:16:19 +03:00
|
|
|
using std::cout;
|
2011-02-19 00:15:24 +02:00
|
|
|
using std::endl;
|
2011-06-13 08:16:19 +03:00
|
|
|
using std::setfill;
|
|
|
|
using std::setw;
|
2011-02-19 00:15:24 +02:00
|
|
|
using std::string;
|
2011-06-13 08:16:19 +03:00
|
|
|
using std::ostringstream;
|
2011-02-19 00:15:24 +02:00
|
|
|
using std::vector;
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
/* Subtract the `struct timeval' values X and Y,
|
|
|
|
storing the result in RESULT.
|
|
|
|
Return 1 if the difference is negative, otherwise 0. */
|
|
|
|
int timeval_subtract (
|
|
|
|
struct timeval *result, struct timeval *x, struct timeval* y) {
|
|
|
|
/* Perform the carry for the later subtraction by updating y. */
|
|
|
|
if (x->tv_usec < y->tv_usec) {
|
|
|
|
int nsec = (y->tv_usec - x->tv_usec) / 1000000 + 1;
|
|
|
|
y->tv_usec -= 1000000 * nsec;
|
|
|
|
y->tv_sec += nsec;
|
|
|
|
}
|
|
|
|
if (x->tv_usec - y->tv_usec > 1000000) {
|
|
|
|
int nsec = (x->tv_usec - y->tv_usec) / 1000000;
|
|
|
|
y->tv_usec += 1000000 * nsec;
|
|
|
|
y->tv_sec -= nsec;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Compute the time remaining to wait.
|
|
|
|
tv_usec is certainly positive. */
|
|
|
|
result->tv_sec = x->tv_sec - y->tv_sec;
|
|
|
|
result->tv_usec = x->tv_usec - y->tv_usec;
|
|
|
|
|
|
|
|
/* Return 1 if result is negative. */
|
|
|
|
return x->tv_sec < y->tv_sec;
|
|
|
|
}
|
|
|
|
|
2011-06-13 08:16:19 +03:00
|
|
|
// C++ iostream is terrible for formatting.
|
|
|
|
string timeval_to_string(timeval tv) {
|
|
|
|
ostringstream out;
|
|
|
|
out << setfill(' ') << setw(3) << tv.tv_sec << '.';
|
|
|
|
out << setfill('0') << setw(6) << tv.tv_usec;
|
|
|
|
return out.str();
|
|
|
|
}
|
|
|
|
|
2011-02-19 00:15:24 +02:00
|
|
|
struct rusage getrusage_or_die() {
|
|
|
|
struct rusage rs;
|
|
|
|
int ret = getrusage(RUSAGE_SELF, &rs);
|
|
|
|
if (ret != 0) {
|
|
|
|
cerr << "rusage failed: " << strerror(errno) << endl;
|
|
|
|
exit(-1);
|
|
|
|
}
|
|
|
|
return rs;
|
|
|
|
}
|
|
|
|
|
2011-05-23 21:01:08 +03:00
|
|
|
struct timeval gettimeofday_or_die() {
|
|
|
|
struct timeval tv;
|
|
|
|
int ret = gettimeofday(&tv, NULL);
|
|
|
|
if (ret != 0) {
|
|
|
|
cerr << "gettimeofday failed: " << strerror(errno) << endl;
|
|
|
|
exit(-1);
|
|
|
|
}
|
|
|
|
return tv;
|
|
|
|
}
|
|
|
|
|
2011-02-19 00:15:24 +02:00
|
|
|
#ifdef HAVE_CXA_DEMANGLE
|
|
|
|
string demangle(const string& name) {
|
|
|
|
char buf[1024];
|
|
|
|
unsigned int size = 1024;
|
|
|
|
int status;
|
|
|
|
char* res = abi::__cxa_demangle(
|
|
|
|
name.c_str(), buf, &size, &status);
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
string demangle(const string& name) { return name; }
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
static vector<cxxmph::Benchmark*> g_benchmarks;
|
|
|
|
|
|
|
|
} // anonymous namespace
|
|
|
|
|
|
|
|
namespace cxxmph {
|
|
|
|
|
|
|
|
/* static */ void Benchmark::Register(Benchmark* bm) {
|
|
|
|
if (bm->name().empty()) {
|
|
|
|
string name = demangle(typeid(*bm).name());
|
2011-05-16 02:47:42 +03:00
|
|
|
bm->set_name(name);
|
2011-02-19 00:15:24 +02:00
|
|
|
}
|
|
|
|
g_benchmarks.push_back(bm);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* static */ void Benchmark::RunAll() {
|
2012-04-15 06:03:00 +03:00
|
|
|
for (uint32_t i = 0; i < g_benchmarks.size(); ++i) {
|
2011-06-13 08:16:19 +03:00
|
|
|
std::auto_ptr<Benchmark> bm(g_benchmarks[i]);
|
|
|
|
if (!bm->SetUp()) {
|
|
|
|
cerr << "Set up phase for benchmark "
|
|
|
|
<< bm->name() << " failed." << endl;
|
|
|
|
continue;
|
|
|
|
}
|
2011-05-23 21:01:08 +03:00
|
|
|
bm->MeasureRun();
|
|
|
|
bm->TearDown();
|
2011-02-19 00:15:24 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Benchmark::MeasureRun() {
|
2011-05-23 21:01:08 +03:00
|
|
|
struct timeval walltime_begin = gettimeofday_or_die();
|
2011-02-19 00:15:24 +02:00
|
|
|
struct rusage begin = getrusage_or_die();
|
2011-05-23 21:01:08 +03:00
|
|
|
Run();
|
2011-02-19 00:15:24 +02:00
|
|
|
struct rusage end = getrusage_or_die();
|
2011-05-23 21:01:08 +03:00
|
|
|
struct timeval walltime_end = gettimeofday_or_die();
|
2011-02-19 00:15:24 +02:00
|
|
|
|
|
|
|
struct timeval utime;
|
|
|
|
timeval_subtract(&utime, &end.ru_utime, &begin.ru_utime);
|
|
|
|
struct timeval stime;
|
|
|
|
timeval_subtract(&stime, &end.ru_stime, &begin.ru_stime);
|
2011-05-23 21:01:08 +03:00
|
|
|
struct timeval wtime;
|
|
|
|
timeval_subtract(&wtime, &walltime_end, &walltime_begin);
|
2011-02-19 00:15:24 +02:00
|
|
|
|
2011-06-13 08:16:19 +03:00
|
|
|
cout << "Benchmark: " << name_ << endl;
|
|
|
|
cout << "CPU User time : " << timeval_to_string(utime) << endl;
|
|
|
|
cout << "CPU System time: " << timeval_to_string(stime) << endl;
|
|
|
|
cout << "Wall clock time: " << timeval_to_string(wtime) << endl;
|
|
|
|
cout << endl;
|
2011-02-19 00:15:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace cxxmph
|