
*** to conform to clang-format’s LLVM style. This kind of mass change has *** two obvious implications: Firstly, merging this particular commit into a downstream fork may be a huge effort. Alternatively, it may be worth merging all changes up to this commit, performing the same reformatting operation locally, and then discarding the merge for this particular commit. The commands used to accomplish this reformatting were as follows (with current working directory as the root of the repository): find . \( -iname "*.c" -or -iname "*.cpp" -or -iname "*.h" -or -iname "*.mm" \) -exec clang-format -i {} + find . -iname "*.py" -exec autopep8 --in-place --aggressive --aggressive {} + ; The version of clang-format used was 3.9.0, and autopep8 was 1.2.4. Secondly, “blame” style tools will generally point to this commit instead of a meaningful prior commit. There are alternatives available that will attempt to look through this change and find the appropriate prior commit. YMMV. llvm-svn: 280751
264 lines
7.7 KiB
C++
264 lines
7.7 KiB
C++
//===-- MICmdCmdBreak.h -----------------------------------------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Overview: CMICmdCmdBreakInsert interface.
|
|
// CMICmdCmdBreakDelete interface.
|
|
// CMICmdCmdBreakDisable interface.
|
|
// CMICmdCmdBreakEnable interface.
|
|
// CMICmdCmdBreakAfter interface.
|
|
// CMICmdCmdBreakCondition interface.
|
|
//
|
|
// To implement new MI commands derive a new command class from the
|
|
// command base
|
|
// class. To enable the new command for interpretation add the new
|
|
// command class
|
|
// to the command factory. The files of relevance are:
|
|
// MICmdCommands.cpp
|
|
// MICmdBase.h / .cpp
|
|
// MICmdCmd.h / .cpp
|
|
// For an introduction to adding a new command see
|
|
// CMICmdCmdSupportInfoMiCmdQuery
|
|
// command class as an example.
|
|
|
|
#pragma once
|
|
|
|
// Third party headers:
|
|
#include "lldb/API/SBBreakpoint.h"
|
|
|
|
// In-house headers:
|
|
#include "MICmdBase.h"
|
|
|
|
//++
|
|
//============================================================================
|
|
// Details: MI command class. MI commands derived from the command base class.
|
|
// *this class implements MI command "break-insert".
|
|
// This command does not follow the MI documentation exactly.
|
|
//--
|
|
class CMICmdCmdBreakInsert : public CMICmdBase {
|
|
// Statics:
|
|
public:
|
|
// Required by the CMICmdFactory when registering *this command
|
|
static CMICmdBase *CreateSelf();
|
|
|
|
// Methods:
|
|
public:
|
|
/* ctor */ CMICmdCmdBreakInsert();
|
|
|
|
// Overridden:
|
|
public:
|
|
// From CMICmdInvoker::ICmd
|
|
bool Execute() override;
|
|
bool Acknowledge() override;
|
|
bool ParseArgs() override;
|
|
// From CMICmnBase
|
|
/* dtor */ ~CMICmdCmdBreakInsert() override;
|
|
|
|
// Enumerations:
|
|
private:
|
|
//++ ===================================================================
|
|
// Details: The type of break point give in the MI command text.
|
|
//--
|
|
enum BreakPoint_e {
|
|
eBreakPoint_Invalid = 0,
|
|
eBreakPoint_ByFileLine,
|
|
eBreakPoint_ByFileFn,
|
|
eBreakPoint_ByName,
|
|
eBreakPoint_ByAddress,
|
|
eBreakPoint_count,
|
|
eBreakPoint_NotDefineYet
|
|
};
|
|
|
|
// Attributes:
|
|
private:
|
|
bool m_bBrkPtIsTemp;
|
|
bool m_bHaveArgOptionThreadGrp;
|
|
CMIUtilString m_brkName;
|
|
CMIUtilString m_strArgOptionThreadGrp;
|
|
lldb::SBBreakpoint m_brkPt;
|
|
bool m_bBrkPtIsPending;
|
|
MIuint m_nBrkPtIgnoreCount;
|
|
bool m_bBrkPtEnabled;
|
|
bool m_bBrkPtCondition;
|
|
CMIUtilString m_brkPtCondition;
|
|
bool m_bBrkPtThreadId;
|
|
MIuint m_nBrkPtThreadId;
|
|
const CMIUtilString m_constStrArgNamedTempBrkPt;
|
|
const CMIUtilString m_constStrArgNamedHWBrkPt; // Not handled by *this command
|
|
const CMIUtilString m_constStrArgNamedPendinfBrkPt;
|
|
const CMIUtilString m_constStrArgNamedDisableBrkPt;
|
|
const CMIUtilString m_constStrArgNamedTracePt; // Not handled by *this command
|
|
const CMIUtilString m_constStrArgNamedConditionalBrkPt;
|
|
const CMIUtilString m_constStrArgNamedInoreCnt;
|
|
const CMIUtilString m_constStrArgNamedRestrictBrkPtToThreadId;
|
|
const CMIUtilString m_constStrArgNamedLocation;
|
|
};
|
|
|
|
//++
|
|
//============================================================================
|
|
// Details: MI command class. MI commands derived from the command base class.
|
|
// *this class implements MI command "break-delete".
|
|
//--
|
|
class CMICmdCmdBreakDelete : public CMICmdBase {
|
|
// Statics:
|
|
public:
|
|
// Required by the CMICmdFactory when registering *this command
|
|
static CMICmdBase *CreateSelf();
|
|
|
|
// Methods:
|
|
public:
|
|
/* ctor */ CMICmdCmdBreakDelete();
|
|
|
|
// Overridden:
|
|
public:
|
|
// From CMICmdInvoker::ICmd
|
|
bool Execute() override;
|
|
bool Acknowledge() override;
|
|
bool ParseArgs() override;
|
|
// From CMICmnBase
|
|
/* dtor */ ~CMICmdCmdBreakDelete() override;
|
|
|
|
// Attributes:
|
|
private:
|
|
const CMIUtilString m_constStrArgNamedBrkPt;
|
|
};
|
|
|
|
//++
|
|
//============================================================================
|
|
// Details: MI command class. MI commands derived from the command base class.
|
|
// *this class implements MI command "break-disable".
|
|
//--
|
|
class CMICmdCmdBreakDisable : public CMICmdBase {
|
|
// Statics:
|
|
public:
|
|
// Required by the CMICmdFactory when registering *this command
|
|
static CMICmdBase *CreateSelf();
|
|
|
|
// Methods:
|
|
public:
|
|
/* ctor */ CMICmdCmdBreakDisable();
|
|
|
|
// Overridden:
|
|
public:
|
|
// From CMICmdInvoker::ICmd
|
|
bool Execute() override;
|
|
bool Acknowledge() override;
|
|
bool ParseArgs() override;
|
|
// From CMICmnBase
|
|
/* dtor */ ~CMICmdCmdBreakDisable() override;
|
|
|
|
// Attributes:
|
|
private:
|
|
const CMIUtilString m_constStrArgNamedBrkPt;
|
|
bool m_bBrkPtDisabledOk;
|
|
MIuint m_nBrkPtId;
|
|
};
|
|
|
|
//++
|
|
//============================================================================
|
|
// Details: MI command class. MI commands derived from the command base class.
|
|
// *this class implements MI command "break-enable".
|
|
//--
|
|
class CMICmdCmdBreakEnable : public CMICmdBase {
|
|
// Statics:
|
|
public:
|
|
// Required by the CMICmdFactory when registering *this command
|
|
static CMICmdBase *CreateSelf();
|
|
|
|
// Methods:
|
|
public:
|
|
/* ctor */ CMICmdCmdBreakEnable();
|
|
|
|
// Overridden:
|
|
public:
|
|
// From CMICmdInvoker::ICmd
|
|
bool Execute() override;
|
|
bool Acknowledge() override;
|
|
bool ParseArgs() override;
|
|
// From CMICmnBase
|
|
/* dtor */ ~CMICmdCmdBreakEnable() override;
|
|
|
|
// Attributes:
|
|
private:
|
|
const CMIUtilString m_constStrArgNamedBrkPt;
|
|
bool m_bBrkPtEnabledOk;
|
|
MIuint m_nBrkPtId;
|
|
};
|
|
|
|
//++
|
|
//============================================================================
|
|
// Details: MI command class. MI commands derived from the command base class.
|
|
// *this class implements MI command "break-after".
|
|
//--
|
|
class CMICmdCmdBreakAfter : public CMICmdBase {
|
|
// Statics:
|
|
public:
|
|
// Required by the CMICmdFactory when registering *this command
|
|
static CMICmdBase *CreateSelf();
|
|
|
|
// Methods:
|
|
public:
|
|
/* ctor */ CMICmdCmdBreakAfter();
|
|
|
|
// Overridden:
|
|
public:
|
|
// From CMICmdInvoker::ICmd
|
|
bool Execute() override;
|
|
bool Acknowledge() override;
|
|
bool ParseArgs() override;
|
|
// From CMICmnBase
|
|
/* dtor */ ~CMICmdCmdBreakAfter() override;
|
|
|
|
// Attributes:
|
|
private:
|
|
const CMIUtilString m_constStrArgNamedNumber;
|
|
const CMIUtilString m_constStrArgNamedCount;
|
|
MIuint m_nBrkPtId;
|
|
MIuint m_nBrkPtCount;
|
|
};
|
|
|
|
//++
|
|
//============================================================================
|
|
// Details: MI command class. MI commands derived from the command base class.
|
|
// *this class implements MI command "break-condition".
|
|
//--
|
|
class CMICmdCmdBreakCondition : public CMICmdBase {
|
|
// Statics:
|
|
public:
|
|
// Required by the CMICmdFactory when registering *this command
|
|
static CMICmdBase *CreateSelf();
|
|
|
|
// Methods:
|
|
public:
|
|
/* ctor */ CMICmdCmdBreakCondition();
|
|
|
|
// Overridden:
|
|
public:
|
|
// From CMICmdInvoker::ICmd
|
|
bool Execute() override;
|
|
bool Acknowledge() override;
|
|
bool ParseArgs() override;
|
|
// From CMICmnBase
|
|
/* dtor */ ~CMICmdCmdBreakCondition() override;
|
|
|
|
// Methods:
|
|
private:
|
|
CMIUtilString GetRestOfExpressionNotSurroundedInQuotes();
|
|
|
|
// Attributes:
|
|
private:
|
|
const CMIUtilString m_constStrArgNamedNumber;
|
|
const CMIUtilString m_constStrArgNamedExpr;
|
|
const CMIUtilString m_constStrArgNamedExprNoQuotes; // Not specified in MI
|
|
// spec, we need to handle
|
|
// expressions not
|
|
// surrounded by quotes
|
|
MIuint m_nBrkPtId;
|
|
CMIUtilString m_strBrkPtExpr;
|
|
};
|