Mesen2/Core/Debugger/BreakpointManager.h
2024-09-23 21:05:55 +09:00

61 lines
No EOL
2 KiB
C++

#pragma once
#include "pch.h"
#include "Debugger/Breakpoint.h"
#include "Debugger/DebugTypes.h"
#include "Debugger/DebugUtilities.h"
class ExpressionEvaluator;
class Debugger;
class IDebugger;
class BaseEventManager;
struct ExpressionData;
enum class MemoryOperationType;
class BreakpointManager
{
private:
static constexpr int BreakpointTypeCount = (int)MemoryOperationType::PpuRenderingRead + 1;
Debugger* _debugger;
IDebugger *_cpuDebugger;
CpuType _cpuType;
BaseEventManager *_eventManager;
vector<Breakpoint> _breakpoints[BreakpointTypeCount];
vector<ExpressionData> _rpnList[BreakpointTypeCount];
bool _hasBreakpoint;
bool _hasBreakpointType[BreakpointTypeCount] = {};
vector<Breakpoint> _forbidBreakpoints;
vector<ExpressionData> _forbidRpn;
unique_ptr<ExpressionEvaluator> _bpExpEval;
BreakpointType GetBreakpointType(MemoryOperationType type);
template<uint8_t accessWidth> int InternalCheckBreakpoint(MemoryOperationInfo operationInfo, AddressInfo &address, bool processMarkedBreakpoints);
public:
BreakpointManager(Debugger *debugger, IDebugger* cpuDebugger, CpuType cpuType, BaseEventManager* eventManager);
void SetBreakpoints(Breakpoint breakpoints[], uint32_t count);
bool IsForbidden(MemoryOperationInfo* memoryOpPtr, AddressInfo& relAddr, AddressInfo& absAddr);
__forceinline bool HasBreakpoints() { return _hasBreakpoint; }
__forceinline bool HasBreakpointForType(MemoryOperationType opType);
template<uint8_t accessWidth = 1> __forceinline int CheckBreakpoint(MemoryOperationInfo operationInfo, AddressInfo &address, bool processMarkedBreakpoints);
};
__forceinline bool BreakpointManager::HasBreakpointForType(MemoryOperationType opType)
{
return _hasBreakpointType[(int)opType];
}
template<uint8_t accessWidth>
__forceinline int BreakpointManager::CheckBreakpoint(MemoryOperationInfo operationInfo, AddressInfo &address, bool processMarkedBreakpoints)
{
if(!_hasBreakpointType[(int)operationInfo.Type]) {
return -1;
}
return InternalCheckBreakpoint<accessWidth>(operationInfo, address, processMarkedBreakpoints);
}