2010-06-09 00:52:24 +08:00
|
|
|
//===-- CommandObjectBreakpoint.h -------------------------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef liblldb_CommandObjectBreakpoint_h_
|
|
|
|
#define liblldb_CommandObjectBreakpoint_h_
|
|
|
|
|
|
|
|
|
|
|
|
#include <utility>
|
|
|
|
#include <vector>
|
|
|
|
|
2017-09-15 04:22:49 +08:00
|
|
|
#include "lldb/lldb-private.h"
|
|
|
|
#include "lldb/Breakpoint/BreakpointName.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
#include "lldb/Core/Address.h"
|
2016-09-07 04:57:50 +08:00
|
|
|
#include "lldb/Core/STLUtils.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
#include "lldb/Interpreter/CommandObjectMultiword.h"
|
2010-06-16 03:49:27 +08:00
|
|
|
#include "lldb/Interpreter/Options.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
|
2017-09-15 04:22:49 +08:00
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
namespace lldb_private {
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
// CommandObjectMultiwordBreakpoint
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
class CommandObjectMultiwordBreakpoint : public CommandObjectMultiword {
|
2010-06-09 00:52:24 +08:00
|
|
|
public:
|
2016-09-07 04:57:50 +08:00
|
|
|
CommandObjectMultiwordBreakpoint(CommandInterpreter &interpreter);
|
2010-06-09 00:52:24 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
~CommandObjectMultiwordBreakpoint() override;
|
2010-06-09 00:52:24 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
static void VerifyBreakpointOrLocationIDs(Args &args, Target *target,
|
|
|
|
CommandReturnObject &result,
|
2017-09-15 04:22:49 +08:00
|
|
|
BreakpointIDList *valid_ids,
|
|
|
|
BreakpointName::Permissions
|
|
|
|
::PermissionKinds purpose) {
|
|
|
|
VerifyIDs(args, target, true, result, valid_ids, purpose);
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
2010-06-09 00:52:24 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
static void VerifyBreakpointIDs(Args &args, Target *target,
|
|
|
|
CommandReturnObject &result,
|
2017-09-15 04:22:49 +08:00
|
|
|
BreakpointIDList *valid_ids,
|
|
|
|
BreakpointName::Permissions::PermissionKinds
|
|
|
|
purpose) {
|
|
|
|
VerifyIDs(args, target, false, result, valid_ids, purpose);
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
2014-12-17 07:40:14 +08:00
|
|
|
|
|
|
|
private:
|
2016-09-07 04:57:50 +08:00
|
|
|
static void VerifyIDs(Args &args, Target *target, bool allow_locations,
|
|
|
|
CommandReturnObject &result,
|
2017-09-15 04:22:49 +08:00
|
|
|
BreakpointIDList *valid_ids,
|
|
|
|
BreakpointName::Permissions::PermissionKinds
|
|
|
|
purpose);
|
2010-06-09 00:52:24 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace lldb_private
|
|
|
|
|
2015-09-02 17:33:09 +08:00
|
|
|
#endif // liblldb_CommandObjectBreakpoint_h_
|