2015-05-24 04:32:32 +00:00
|
|
|
// Copyright 2012 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2+
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2014-02-10 18:54:46 +00:00
|
|
|
#pragma once
|
2012-06-17 11:58:29 +00:00
|
|
|
|
2015-12-21 02:49:49 +00:00
|
|
|
#include <memory>
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "Common/CommonTypes.h"
|
2012-06-17 11:58:29 +00:00
|
|
|
|
|
|
|
enum PerfQueryType
|
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
PQ_ZCOMP_INPUT_ZCOMPLOC = 0,
|
|
|
|
PQ_ZCOMP_OUTPUT_ZCOMPLOC,
|
|
|
|
PQ_ZCOMP_INPUT,
|
|
|
|
PQ_ZCOMP_OUTPUT,
|
|
|
|
PQ_BLEND_INPUT,
|
|
|
|
PQ_EFB_COPY_CLOCKS,
|
|
|
|
PQ_NUM_MEMBERS
|
2012-06-17 11:58:29 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enum PerfQueryGroup
|
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
PQG_ZCOMP_ZCOMPLOC,
|
|
|
|
PQG_ZCOMP,
|
|
|
|
PQG_EFB_COPY_CLOCKS,
|
|
|
|
PQG_NUM_MEMBERS,
|
2012-06-17 11:58:29 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class PerfQueryBase
|
|
|
|
{
|
|
|
|
public:
|
2016-06-24 08:43:46 +00:00
|
|
|
PerfQueryBase() : m_query_count(0) {}
|
|
|
|
virtual ~PerfQueryBase() {}
|
2019-04-01 10:49:24 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
// Checks if performance queries are enabled in the gameini configuration.
|
|
|
|
// NOTE: Called from CPU+GPU thread
|
|
|
|
static bool ShouldEmulate();
|
|
|
|
|
|
|
|
// Begin querying the specified value for the following host GPU commands
|
2019-04-01 10:49:24 +00:00
|
|
|
// The call to EnableQuery() should be placed immediately before the draw command, otherwise
|
|
|
|
// there is a risk of GPU resets if the query is left open and the buffer is submitted during
|
|
|
|
// resource binding (D3D12/Vulkan).
|
2016-06-24 08:43:46 +00:00
|
|
|
virtual void EnableQuery(PerfQueryGroup type) {}
|
2019-04-01 10:49:24 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
// Stop querying the specified value for the following host GPU commands
|
|
|
|
virtual void DisableQuery(PerfQueryGroup type) {}
|
2019-04-01 10:49:24 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
// Reset query counters to zero and drop any pending queries
|
|
|
|
virtual void ResetQuery() {}
|
2019-04-01 10:49:24 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
// Return the measured value for the specified query type
|
|
|
|
// NOTE: Called from CPU thread
|
|
|
|
virtual u32 GetQueryResult(PerfQueryType type) { return 0; }
|
2019-04-01 10:49:24 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
// Request the value of any pending queries - causes a pipeline flush and thus should be used
|
|
|
|
// carefully!
|
|
|
|
virtual void FlushResults() {}
|
2019-04-01 10:49:24 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
// True if there are no further pending query results
|
|
|
|
// NOTE: Called from CPU thread
|
|
|
|
virtual bool IsFlushed() const { return true; }
|
2018-04-12 12:18:04 +00:00
|
|
|
|
2015-04-15 23:22:16 +00:00
|
|
|
protected:
|
2016-06-24 08:43:46 +00:00
|
|
|
// TODO: sloppy
|
|
|
|
volatile u32 m_query_count;
|
|
|
|
volatile u32 m_results[PQG_NUM_MEMBERS];
|
2012-06-17 11:58:29 +00:00
|
|
|
};
|
|
|
|
|
2015-12-21 02:49:49 +00:00
|
|
|
extern std::unique_ptr<PerfQueryBase> g_perf_query;
|