mirror of
https://github.com/asmjit/asmjit.git
synced 2025-12-17 20:44:37 +03:00
29 lines
782 B
C++
29 lines
782 B
C++
// This file is part of AsmJit project <https://asmjit.com>
|
|
//
|
|
// See asmjit.h or LICENSE.md for license and copyright information
|
|
// SPDX-License-Identifier: Zlib
|
|
|
|
#ifndef PERFORMANCETIMER_H_INCLUDED
|
|
#define PERFORMANCETIMER_H_INCLUDED
|
|
|
|
#include <asmjit/core.h>
|
|
#include <chrono>
|
|
|
|
class PerformanceTimer {
|
|
public:
|
|
using TimePoint = std::chrono::high_resolution_clock::time_point;
|
|
|
|
TimePoint _startTime {};
|
|
TimePoint _endTime {};
|
|
|
|
inline void start() { _startTime = std::chrono::high_resolution_clock::now(); }
|
|
inline void stop() { _endTime = std::chrono::high_resolution_clock::now(); }
|
|
|
|
inline double duration() const {
|
|
std::chrono::duration<double> elapsed = _endTime - _startTime;
|
|
return elapsed.count() * 1000;
|
|
}
|
|
};
|
|
|
|
#endif // PERFORMANCETIMER_H_INCLUDED
|