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
|
//
// Copyright © 2019 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//
#pragma once
#include "Counter.hpp"
#include <string>
#include <vector>
#include <memory>
#include <unordered_set>
#include <unordered_map>
namespace arm
{
namespace pipe
{
// Forward declarations
class Category;
class Device;
class CounterSet;
// Profiling objects smart pointer types
using CategoryPtr = std::unique_ptr<Category>;
using DevicePtr = std::unique_ptr<Device>;
using CounterSetPtr = std::unique_ptr<CounterSet>;
using CounterPtr = std::shared_ptr<Counter>;
// Profiling objects collection types
using Categories = std::unordered_set<CategoryPtr>;
using Devices = std::unordered_map<uint16_t, DevicePtr>;
using CounterSets = std::unordered_map<uint16_t, CounterSetPtr>;
using Counters = std::unordered_map<uint16_t, CounterPtr>;
// Profiling objects collection iterator types
using CategoriesIt = Categories::const_iterator;
using DevicesIt = Devices::const_iterator;
using CounterSetsIt = CounterSets::const_iterator;
using CountersIt = Counters::const_iterator;
class Category final
{
public:
// Constructors
Category(const std::string& name)
: m_Name(name)
{}
// Fields
std::string m_Name;
// Connections
std::vector<uint16_t> m_Counters; // The UIDs of the counters associated with this category
};
class Device final
{
public:
// Constructors
Device(uint16_t deviceUid, const std::string& name, uint16_t cores)
: m_Uid(deviceUid)
, m_Name(name)
, m_Cores(cores)
{}
// Fields
uint16_t m_Uid;
std::string m_Name;
uint16_t m_Cores;
};
class CounterSet final
{
public:
// Constructors
CounterSet(uint16_t counterSetUid, const std::string& name, uint16_t count)
: m_Uid(counterSetUid)
, m_Name(name)
, m_Count(count)
{}
// Fields
uint16_t m_Uid;
std::string m_Name;
uint16_t m_Count;
};
class ICounterDirectory
{
public:
virtual ~ICounterDirectory() {}
// Getters for counts
virtual uint16_t GetCategoryCount() const = 0;
virtual uint16_t GetDeviceCount() const = 0;
virtual uint16_t GetCounterSetCount() const = 0;
virtual uint16_t GetCounterCount() const = 0;
// Getters for collections
virtual const Categories& GetCategories() const = 0;
virtual const Devices& GetDevices() const = 0;
virtual const CounterSets& GetCounterSets() const = 0;
virtual const Counters& GetCounters() const = 0;
// Getters for profiling objects
virtual const Category* GetCategory(const std::string& name) const = 0;
virtual const Device* GetDevice(uint16_t uid) const = 0;
virtual const CounterSet* GetCounterSet(uint16_t uid) const = 0;
virtual const Counter* GetCounter(uint16_t uid) const = 0;
};
} // namespace pipe
} // namespace arm
|