2011-09-22 18:04:58 +00:00
|
|
|
//===-- CommandObjectWatchpoint.h -------------------------------*- C++ -*-===//
|
|
|
|
|
//
|
2019-01-19 08:50:56 +00:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2011-09-22 18:04:58 +00:00
|
|
|
//
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
2020-02-17 15:57:45 -08:00
|
|
|
#ifndef LLDB_SOURCE_COMMANDS_COMMANDOBJECTWATCHPOINT_H
|
|
|
|
|
#define LLDB_SOURCE_COMMANDS_COMMANDOBJECTWATCHPOINT_H
|
2011-09-22 18:04:58 +00:00
|
|
|
|
|
|
|
|
#include "lldb/Interpreter/CommandObjectMultiword.h"
|
2012-01-30 21:46:17 +00:00
|
|
|
#include "lldb/Interpreter/OptionGroupWatchpoint.h"
|
2011-09-22 18:04:58 +00:00
|
|
|
|
|
|
|
|
namespace lldb_private {
|
|
|
|
|
|
|
|
|
|
// CommandObjectMultiwordWatchpoint
|
|
|
|
|
|
|
|
|
|
class CommandObjectMultiwordWatchpoint : public CommandObjectMultiword {
|
|
|
|
|
public:
|
|
|
|
|
CommandObjectMultiwordWatchpoint(CommandInterpreter &interpreter);
|
|
|
|
|
|
2015-09-02 09:33:09 +00:00
|
|
|
~CommandObjectMultiwordWatchpoint() override;
|
2012-06-19 22:12:58 +00:00
|
|
|
|
2013-07-02 02:09:46 +00:00
|
|
|
static bool VerifyWatchpointIDs(Target *target, Args &args,
|
|
|
|
|
std::vector<uint32_t> &wp_ids);
|
2011-09-22 18:04:58 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace lldb_private
|
|
|
|
|
|
2020-02-17 15:57:45 -08:00
|
|
|
#endif // LLDB_SOURCE_COMMANDS_COMMANDOBJECTWATCHPOINT_H
|