1
1
mirror of https://github.com/rui314/mold.git synced 2024-09-22 10:27:48 +03:00
mold/perf.cc
Rui Ueyama c4632f8dae wip
2021-01-29 21:49:19 +09:00

93 lines
2.0 KiB
C++

#include "mold.h"
#include <functional>
#include <iomanip>
#include <ios>
#include <sys/resource.h>
#include <sys/time.h>
i64 Counter::get_value() {
return values.combine(std::plus());
}
void Counter::print() {
sort(instances, [](Counter *a, Counter *b) {
return a->get_value() > b->get_value();
});
for (Counter *c : instances)
std::cout << std::setw(20) << std::right << c->name
<< "=" << c->get_value() << "\n";
}
static i64 now_nsec() {
struct timespec t;
clock_gettime(CLOCK_MONOTONIC, &t);
return (i64)t.tv_sec * 1000000000 + t.tv_nsec;
}
static i64 to_nsec(struct timeval t) {
return (i64)t.tv_sec * 1000000000 + t.tv_usec * 1000;
}
TimerRecord::TimerRecord(std::string name) : name(name) {
struct rusage usage;
getrusage(RUSAGE_SELF, &usage);
start = now_nsec();
user = to_nsec(usage.ru_utime);
sys = to_nsec(usage.ru_stime);
}
void TimerRecord::stop() {
if (stopped)
return;
stopped = true;
struct rusage usage;
getrusage(RUSAGE_SELF, &usage);
end = now_nsec();
user = to_nsec(usage.ru_utime) - user;
sys = to_nsec(usage.ru_stime) - sys;
}
Timer::Timer(std::string name) {
record = new TimerRecord(name);
records.push_back(record);
}
Timer::~Timer() {
record->stop();
}
void Timer::stop() {
record->stop();
}
void Timer::print() {
for (i64 i = records.size() - 1; i >= 0; i--)
records[i]->stop();
std::vector<i64> depth(records.size());
for (i64 i = 0; i < records.size(); i++)
for (i64 j = 0; j < i; j++)
if (records[i]->end < records[j]->end)
depth[i]++;
std::cout << " User System Real Name\n";
for (i64 i = 0; i < records.size(); i++) {
TimerRecord &rec = *records[i];
printf(" % 8.3f % 8.3f % 8.3f %s%s\n",
((double)rec.user / 1000000000),
((double)rec.sys / 1000000000),
(((double)rec.end - rec.start) / 1000000000),
std::string(depth[i] * 2, ' ').c_str(),
rec.name.c_str());
}
std::cout << std::flush;
}