forked from GPUOpen-Tools/gpu_performance_api
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGPASwCounterManager.cpp
129 lines (104 loc) · 2.81 KB
/
GPASwCounterManager.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
//==============================================================================
// Copyright (c) 2016 Advanced Micro Devices, Inc. All rights reserved.
/// \author AMD Developer Tools Team
/// \file
/// \brief Class to manage the D3D11 Query-based software counters
//==============================================================================
#include "GPASwCounterManager.h"
SwCounterManager::SwCounterManager() :
m_amdCounters(0),
m_swGPUTimeCounter(0),
m_swCountersGenerated(false),
m_swGPUTimeEnabled(false)
{
m_swCounters.clear();
m_enabledSwCounters.clear();
}
SwCounterManager::~SwCounterManager()
{
m_swCounters.clear();
m_enabledSwCounters.clear();
m_swCountersGenerated = false;
}
void SwCounterManager::AddSwCounter(const GPA_SoftwareCounterDesc& counterDesc)
{
m_swCounters.push_back(counterDesc);
}
void SwCounterManager::EnableSwCounter(gpa_uint32 index)
{
m_enabledSwCounters.insert(index);
}
void SwCounterManager::DisableSwCounter(gpa_uint32 index)
{
m_enabledSwCounters.erase(index);
}
void SwCounterManager::AddSwCounterMap(const gpa_uint32 pubIndex, const gpa_uint32 swIndex)
{
m_swCounterIndexMap[swIndex] = pubIndex;
}
void SwCounterManager::ClearSwCounterMap()
{
m_swCounterIndexMap.clear();
}
void SwCounterManager::SetSwGPUTimeCounterIndex(const gpa_uint32 pubIndex)
{
m_swGPUTimeCounter = pubIndex;
}
void SwCounterManager::SetSwGPUTimeCounterEnabled(const bool enabled)
{
m_swGPUTimeEnabled = enabled;
}
bool SwCounterManager::SwGPUTimeCounterEnabled() const
{
return m_swGPUTimeEnabled;
}
gpa_uint32 SwCounterManager::GetSwGPUTimeCounterIndex() const
{
return m_swGPUTimeCounter;
}
gpa_uint32 SwCounterManager::GetSwCounterPubIndex(const gpa_uint32 swIndex) const
{
gpa_uint32 pubIndex = 0;
auto search = m_swCounterIndexMap.find(swIndex);
if (search != m_swCounterIndexMap.end())
{
pubIndex = search->second;
}
return pubIndex;
}
void SwCounterManager::SetNumAmdCounters(const gpa_uint32 counters)
{
m_amdCounters = counters;
}
gpa_uint32 SwCounterManager::GetNumAmdCounters() const
{
return m_amdCounters;
}
bool SwCounterManager::SwCountersGenerated() const
{
return m_swCountersGenerated;
}
bool SwCounterManager::SwCounterEnabled() const
{
return (m_enabledSwCounters.empty() == false);
}
void SwCounterManager::ClearEnabledSwCounters()
{
m_enabledSwCounters.clear();
}
const SwCounterDescVec* SwCounterManager::GetSwCounters() const
{
return &m_swCounters;
}
gpa_uint32 SwCounterManager::GetNumSwCounters() const
{
return static_cast<gpa_uint32>(m_swCounters.size());
}
const EnabledSwCounterSet* SwCounterManager::GetEnabledSwCounters() const
{
return &m_enabledSwCounters;
}
void SwCounterManager::SetSwCountersGenerated(const bool set)
{
m_swCountersGenerated = set;
}