You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
619 B
45 lines
619 B
#pragma once
|
|
|
|
#include <vector>
|
|
#include <string>
|
|
#include <chrono>
|
|
|
|
#include "ExecutionEngine.h"
|
|
|
|
namespace dev
|
|
{
|
|
namespace eth
|
|
{
|
|
namespace jit
|
|
{
|
|
|
|
class ExecStats : public ExecutionEngineListener
|
|
{
|
|
public:
|
|
using clock = std::chrono::high_resolution_clock;
|
|
using duration = clock::duration;
|
|
using time_point = clock::time_point;
|
|
|
|
std::string id;
|
|
duration time[(int)ExecState::Finished] = {};
|
|
|
|
void stateChanged(ExecState _state) override;
|
|
|
|
private:
|
|
ExecState m_state = {};
|
|
time_point m_tp = {};
|
|
|
|
};
|
|
|
|
|
|
class StatsCollector
|
|
{
|
|
public:
|
|
std::vector<std::unique_ptr<ExecStats>> stats;
|
|
|
|
~StatsCollector();
|
|
};
|
|
|
|
}
|
|
}
|
|
}
|
|
|