mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2024-12-28 01:29:18 +00:00
29 lines
442 B
C
29 lines
442 B
C
|
#pragma once
|
||
|
|
||
|
#include <array>
|
||
|
#include <cstdint>
|
||
|
|
||
|
#include "Disassembler.h"
|
||
|
|
||
|
class LR35902;
|
||
|
|
||
|
class Profiler {
|
||
|
public:
|
||
|
Profiler(LR35902& cpu);
|
||
|
|
||
|
void add(uint16_t address, uint8_t instruction);
|
||
|
|
||
|
void dump() const;
|
||
|
|
||
|
private:
|
||
|
std::array<uint64_t, 0x100> m_instructions;
|
||
|
std::array<uint64_t, 0x10000> m_addresses;
|
||
|
LR35902& m_cpu;
|
||
|
|
||
|
Disassembler m_disassembler;
|
||
|
|
||
|
void dumpInstructionProfiles() const;
|
||
|
void dumpAddressProfiles() const;
|
||
|
};
|
||
|
|