mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-06-06 14:58:28 +02:00
1sec between clock snapshots is too much of a gap in time for perfetto to reasonably interpolate between clock timelines. Signed-off-by: Rob Clark <rob.clark@oss.qualcomm.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/41315>
70 lines
2 KiB
C++
70 lines
2 KiB
C++
/*
|
|
* Copyright © 2019-2021 Collabora, Ltd.
|
|
* Author: Antonio Caggiano <antonio.caggiano@collabora.com>
|
|
* Author: Robert Beckett <bob.beckett@collabora.com>
|
|
* Author: Corentin Noël <corentin.noel@collabora.com>
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "pps.h"
|
|
#include "pps_driver.h"
|
|
|
|
namespace pps
|
|
{
|
|
struct GpuIncrementalState {
|
|
bool was_cleared = true;
|
|
std::unordered_map<uint32_t, double> last_counter_vals;
|
|
};
|
|
|
|
struct GpuDataSourceTraits : public perfetto::DefaultDataSourceTraits {
|
|
using IncrementalStateType = GpuIncrementalState;
|
|
};
|
|
|
|
class Driver;
|
|
|
|
/// @brief This datasource samples performance counters at a specified rate.
|
|
/// Once the data is available, it sends a protobuf packet to the perfetto service.
|
|
/// At the very beginning, it sends a description of the counters.
|
|
/// After that, it sends counter values using the IDs set in the description.
|
|
class GpuDataSource : public perfetto::DataSource<GpuDataSource, GpuDataSourceTraits>
|
|
{
|
|
public:
|
|
void OnSetup(const SetupArgs &args) override;
|
|
void OnStart(const StartArgs &args) override;
|
|
void OnStop(const StopArgs &args) override;
|
|
|
|
/// Blocks until the data source starts
|
|
static void wait_started();
|
|
|
|
/// @brief Perfetto trace callback
|
|
static void trace_callback(TraceContext ctx);
|
|
static void register_data_source(const std::string &driver_name);
|
|
|
|
void trace(TraceContext &ctx);
|
|
|
|
private:
|
|
State state = State::Stop;
|
|
|
|
/// Time between trace callbacks
|
|
std::chrono::nanoseconds time_to_sleep = std::chrono::nanoseconds(1000000);
|
|
|
|
/// Used to check whether the datasource is quick enough
|
|
std::chrono::nanoseconds time_to_trace;
|
|
|
|
/// Last CPU timestamp at which we correlated CPU/GPU timestamps
|
|
unsigned samples_since_correlation = 0;
|
|
|
|
/// CPU timestamp of packet sent with counter descriptors
|
|
uint64_t descriptor_timestamp = 0;
|
|
|
|
/// GPU timestamp of packet sent with counter descriptors
|
|
uint64_t descriptor_gpu_timestamp = 0;
|
|
|
|
/// Used to track the first available counters
|
|
bool got_first_counters = false;
|
|
};
|
|
|
|
} // namespace pps
|