citra-shitamoto-network/src/common/break_points.h

51 lines
1.1 KiB
C
Raw Normal View History

2014-12-17 11:08:14 +05:30
// Copyright 2013 Dolphin Emulator Project / 2014 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#pragma once
#include <vector>
#include <string>
2015-05-06 12:36:12 +05:30
#include "common/common_types.h"
class DebugInterface;
struct TBreakPoint
{
u32 iAddress;
bool bOn;
bool bTemporary;
};
// Code breakpoints.
class BreakPoints
{
public:
2014-04-02 03:50:08 +05:30
typedef std::vector<TBreakPoint> TBreakPoints;
typedef std::vector<std::string> TBreakPointsStr;
2014-04-02 03:50:08 +05:30
const TBreakPoints& GetBreakPoints() { return m_BreakPoints; }
2014-04-02 03:50:08 +05:30
TBreakPointsStr GetStrings() const;
void AddFromStrings(const TBreakPointsStr& bps);
2014-04-02 03:50:08 +05:30
// is address breakpoint
2015-03-31 01:07:34 +05:30
bool IsAddressBreakPoint(u32 iAddress) const;
bool IsTempBreakPoint(u32 iAddress) const;
2014-04-02 03:50:08 +05:30
// Add BreakPoint
void Add(u32 em_address, bool temp=false);
void Add(const TBreakPoint& bp);
2014-04-02 03:50:08 +05:30
// Remove Breakpoint
void Remove(u32 iAddress);
2014-04-02 03:50:08 +05:30
void Clear();
void DeleteByAddress(u32 Address);
private:
2014-04-02 03:50:08 +05:30
TBreakPoints m_BreakPoints;
u32 m_iBreakOnCount;
};