mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2024-11-03 05:05:15 +00:00
24 lines
416 B
C
24 lines
416 B
C
|
#pragma once
|
||
|
|
||
|
#include <array>
|
||
|
#include <cstdint>
|
||
|
|
||
|
namespace EightBit {
|
||
|
class Profiler {
|
||
|
public:
|
||
|
Profiler();
|
||
|
~Profiler();
|
||
|
|
||
|
void addInstruction(uint8_t instruction);
|
||
|
void addAddress(uint16_t address);
|
||
|
|
||
|
void dump() const;
|
||
|
|
||
|
private:
|
||
|
std::array<uint64_t, 0x100> m_instructions;
|
||
|
std::array<uint64_t, 0x10000> m_addresses;
|
||
|
|
||
|
void dumpInstructionProfiles() const;
|
||
|
void dumpAddressProfiles() const;
|
||
|
};
|
||
|
}
|