1
1
mirror of https://github.com/rui314/mold.git synced 2024-09-11 13:06:59 +03:00

temporary

This commit is contained in:
Rui Ueyama 2021-01-09 18:15:09 +09:00
parent e77d7d46eb
commit 066bddedcd
2 changed files with 40 additions and 29 deletions

22
mold.h
View File

@ -871,6 +871,18 @@ private:
static std::vector<Counter *> instances;
};
struct TimerRecord {
TimerRecord(std::string name);
void stop();
std::string name;
u64 start;
u64 end;
u64 user;
u64 sys;
bool stopped = false;
};
class Timer {
public:
Timer(std::string name);
@ -879,14 +891,8 @@ public:
static void print();
private:
static std::vector<Timer *> instances;
std::string name;
u64 start;
u64 end;
u64 user;
u64 sys;
bool stopped = false;
static inline std::vector<TimerRecord *> records;
TimerRecord *record;
};
//

47
perf.cc
View File

@ -8,8 +8,6 @@
std::vector<Counter *> Counter::instances;
bool Counter::enabled = false;
std::vector<Timer *> Timer::instances;
void Counter::print() {
if (!enabled)
return;
@ -31,9 +29,7 @@ static u64 to_nsec(struct timeval t) {
return (u64)t.tv_sec * 1000000000 + t.tv_usec * 1000;
}
Timer::Timer(std::string name) : name(name) {
instances.push_back(this);
TimerRecord::TimerRecord(std::string name) : name(name) {
struct rusage usage;
getrusage(RUSAGE_SELF, &usage);
@ -42,11 +38,7 @@ Timer::Timer(std::string name) : name(name) {
sys = to_nsec(usage.ru_stime);
}
Timer::~Timer() {
stop();
}
void Timer::stop() {
void TimerRecord::stop() {
if (stopped)
return;
stopped = true;
@ -59,27 +51,40 @@ void Timer::stop() {
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 (int i = instances.size() - 1; i >= 0; i--)
instances[i]->stop();
for (int i = records.size() - 1; i >= 0; i--)
records[i]->stop();
std::vector<int> depth(instances.size());
std::vector<int> depth(records.size());
for (int i = 0; i < instances.size(); i++)
for (int i = 0; i < records.size(); i++)
for (int j = 0; j < i; j++)
if (instances[i]->end < instances[j]->end)
if (records[i]->end < records[j]->end)
depth[i]++;
std::cout << " User System Real Name\n";
for (int i = 0; i < instances.size(); i++) {
Timer &t = *instances[i];
for (int i = 0; i < records.size(); i++) {
TimerRecord &rec = *records[i];
printf(" % 8.3f % 8.3f % 8.3f %s%s\n",
((double)t.user / 1000000000),
((double)t.sys / 1000000000),
(((double)t.end - t.start) / 1000000000),
((double)rec.user / 1000000000),
((double)rec.sys / 1000000000),
(((double)rec.end - rec.start) / 1000000000),
std::string(depth[i] * 2, ' ').c_str(),
t.name.c_str());
rec.name.c_str());
}
std::cout << std::flush;