blob: 75dc890cc40ed96b4181834a98774c77fdc91f4e [file] [log] [blame] [edit]
//===-- CommandObjectBreakpoint.cpp ---------------------------------------===//
//
// 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
//
//===----------------------------------------------------------------------===//
#include "CommandObjectBreakpoint.h"
#include "CommandObjectBreakpointCommand.h"
#include "lldb/Breakpoint/Breakpoint.h"
#include "lldb/Breakpoint/BreakpointIDList.h"
#include "lldb/Breakpoint/BreakpointLocation.h"
#include "lldb/Host/OptionParser.h"
#include "lldb/Interpreter/CommandInterpreter.h"
#include "lldb/Interpreter/CommandOptionArgumentTable.h"
#include "lldb/Interpreter/CommandReturnObject.h"
#include "lldb/Interpreter/OptionArgParser.h"
#include "lldb/Interpreter/OptionGroupPythonClassWithDict.h"
#include "lldb/Interpreter/OptionValueBoolean.h"
#include "lldb/Interpreter/OptionValueFileColonLine.h"
#include "lldb/Interpreter/OptionValueString.h"
#include "lldb/Interpreter/OptionValueUInt64.h"
#include "lldb/Interpreter/Options.h"
#include "lldb/Target/Language.h"
#include "lldb/Target/StackFrame.h"
#include "lldb/Target/Target.h"
#include "lldb/Target/ThreadSpec.h"
#include "lldb/Utility/RegularExpression.h"
#include "lldb/Utility/StreamString.h"
#include "llvm/Support/FormatAdapters.h"
#include <memory>
#include <optional>
#include <vector>
using namespace lldb;
using namespace lldb_private;
static void AddBreakpointDescription(Stream *s, Breakpoint *bp,
lldb::DescriptionLevel level) {
s->IndentMore();
bp->GetDescription(s, level, true);
s->IndentLess();
s->EOL();
}
static bool GetDefaultFile(Target &target, StackFrame *cur_frame,
FileSpec &file, CommandReturnObject &result) {
// First use the Source Manager's default file. Then use the current stack
// frame's file.
if (auto maybe_file_and_line =
target.GetSourceManager().GetDefaultFileAndLine()) {
file = maybe_file_and_line->support_file_nsp->GetSpecOnly();
return true;
}
if (cur_frame == nullptr) {
result.AppendError("No selected frame to use to find the default file.");
return false;
}
if (!cur_frame->HasDebugInformation()) {
result.AppendError("Cannot use the selected frame to find the default "
"file, it has no debug info.");
return false;
}
const SymbolContext &sc =
cur_frame->GetSymbolContext(eSymbolContextLineEntry);
if (sc.line_entry.GetFile()) {
file = sc.line_entry.GetFile();
} else {
result.AppendError("Can't find the file for the selected frame to "
"use as the default file.");
return false;
}
return true;
}
// Modifiable Breakpoint Options
#pragma mark Modify::CommandOptions
#define LLDB_OPTIONS_breakpoint_modify
#include "CommandOptions.inc"
class lldb_private::BreakpointOptionGroup : public OptionGroup {
public:
BreakpointOptionGroup() : m_bp_opts(false) {}
~BreakpointOptionGroup() override = default;
llvm::ArrayRef<OptionDefinition> GetDefinitions() override {
return llvm::ArrayRef(g_breakpoint_modify_options);
}
Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg,
ExecutionContext *execution_context) override {
Status error;
const int short_option =
g_breakpoint_modify_options[option_idx].short_option;
const char *long_option =
g_breakpoint_modify_options[option_idx].long_option;
switch (short_option) {
case 'c':
// Normally an empty breakpoint condition marks is as unset. But we need
// to say it was passed in.
m_bp_opts.GetCondition().SetText(option_arg.str());
m_bp_opts.m_set_flags.Set(BreakpointOptions::eCondition);
break;
case 'C':
m_commands.push_back(std::string(option_arg));
break;
case 'd':
m_bp_opts.SetEnabled(false);
break;
case 'e':
m_bp_opts.SetEnabled(true);
break;
case 'G': {
bool value, success;
value = OptionArgParser::ToBoolean(option_arg, false, &success);
if (success)
m_bp_opts.SetAutoContinue(value);
else
error = Status::FromError(
CreateOptionParsingError(option_arg, short_option, long_option,
g_bool_parsing_error_message));
} break;
case 'i': {
uint32_t ignore_count;
if (option_arg.getAsInteger(0, ignore_count))
error = Status::FromError(
CreateOptionParsingError(option_arg, short_option, long_option,
g_int_parsing_error_message));
else
m_bp_opts.SetIgnoreCount(ignore_count);
} break;
case 'o': {
bool value, success;
value = OptionArgParser::ToBoolean(option_arg, false, &success);
if (success) {
m_bp_opts.SetOneShot(value);
} else
error = Status::FromError(
CreateOptionParsingError(option_arg, short_option, long_option,
g_bool_parsing_error_message));
} break;
case 't': {
lldb::tid_t thread_id = LLDB_INVALID_THREAD_ID;
if (option_arg == "current") {
if (!execution_context) {
error = Status::FromError(CreateOptionParsingError(
option_arg, short_option, long_option,
"No context to determine current thread"));
} else {
ThreadSP ctx_thread_sp = execution_context->GetThreadSP();
if (!ctx_thread_sp || !ctx_thread_sp->IsValid()) {
error = Status::FromError(
CreateOptionParsingError(option_arg, short_option, long_option,
"No currently selected thread"));
} else {
thread_id = ctx_thread_sp->GetID();
}
}
} else if (option_arg.getAsInteger(0, thread_id)) {
error = Status::FromError(
CreateOptionParsingError(option_arg, short_option, long_option,
g_int_parsing_error_message));
}
if (thread_id != LLDB_INVALID_THREAD_ID)
m_bp_opts.SetThreadID(thread_id);
} break;
case 'T':
m_bp_opts.GetThreadSpec()->SetName(option_arg.str().c_str());
break;
case 'q':
m_bp_opts.GetThreadSpec()->SetQueueName(option_arg.str().c_str());
break;
case 'x': {
uint32_t thread_index = UINT32_MAX;
if (option_arg.getAsInteger(0, thread_index)) {
error = Status::FromError(
CreateOptionParsingError(option_arg, short_option, long_option,
g_int_parsing_error_message));
} else {
m_bp_opts.GetThreadSpec()->SetIndex(thread_index);
}
} break;
case 'Y': {
LanguageType language = Language::GetLanguageTypeFromString(option_arg);
LanguageSet languages_for_expressions =
Language::GetLanguagesSupportingTypeSystemsForExpressions();
if (language == eLanguageTypeUnknown)
error = Status::FromError(CreateOptionParsingError(
option_arg, short_option, long_option, "invalid language"));
else if (!languages_for_expressions[language])
error = Status::FromError(
CreateOptionParsingError(option_arg, short_option, long_option,
"no expression support for language"));
else
m_bp_opts.GetCondition().SetLanguage(language);
} break;
default:
llvm_unreachable("Unimplemented option");
}
return error;
}
void OptionParsingStarting(ExecutionContext *execution_context) override {
m_bp_opts.Clear();
m_commands.clear();
}
Status OptionParsingFinished(ExecutionContext *execution_context) override {
if (!m_commands.empty()) {
auto cmd_data = std::make_unique<BreakpointOptions::CommandData>();
for (std::string &str : m_commands)
cmd_data->user_source.AppendString(str);
cmd_data->stop_on_error = true;
m_bp_opts.SetCommandDataCallback(cmd_data);
}
return Status();
}
const BreakpointOptions &GetBreakpointOptions() { return m_bp_opts; }
std::vector<std::string> m_commands;
BreakpointOptions m_bp_opts;
};
// This is the Breakpoint Names option group - used to add Names to breakpoints
// while making them. Not to be confused with the "Breakpoint Name" option
// group which is the common options of various "breakpoint name" commands.
#define LLDB_OPTIONS_breakpoint_names
#include "CommandOptions.inc"
class BreakpointNamesOptionGroup : public OptionGroup {
public:
BreakpointNamesOptionGroup() = default;
~BreakpointNamesOptionGroup() override = default;
llvm::ArrayRef<OptionDefinition> GetDefinitions() override {
return g_breakpoint_names_options;
}
Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_value,
ExecutionContext *execution_context) override {
Status error;
const int short_option = GetDefinitions()[option_idx].short_option;
const char *long_option = GetDefinitions()[option_idx].long_option;
switch (short_option) {
case 'N':
if (BreakpointID::StringIsBreakpointName(option_value, error))
m_breakpoint_names.push_back(std::string(option_value));
else
error = Status::FromError(
CreateOptionParsingError(option_value, short_option, long_option,
"Invalid breakpoint name"));
break;
}
return error;
}
void OptionParsingStarting(ExecutionContext *execution_context) override {
m_breakpoint_names.clear();
}
const std::vector<std::string> &GetBreakpointNames() {
return m_breakpoint_names;
}
protected:
std::vector<std::string> m_breakpoint_names;
};
#define LLDB_OPTIONS_breakpoint_dummy
#include "CommandOptions.inc"
class BreakpointDummyOptionGroup : public OptionGroup {
public:
BreakpointDummyOptionGroup() = default;
~BreakpointDummyOptionGroup() override = default;
llvm::ArrayRef<OptionDefinition> GetDefinitions() override {
return llvm::ArrayRef(g_breakpoint_dummy_options);
}
Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg,
ExecutionContext *execution_context) override {
Status error;
const int short_option =
g_breakpoint_dummy_options[option_idx].short_option;
switch (short_option) {
case 'D':
m_use_dummy = true;
break;
default:
llvm_unreachable("Unimplemented option");
}
return error;
}
void OptionParsingStarting(ExecutionContext *execution_context) override {
m_use_dummy = false;
}
bool m_use_dummy;
};
#pragma mark AddAddress::CommandOptions
#define LLDB_OPTIONS_breakpoint_add_address
#include "CommandOptions.inc"
#pragma mark Add Address
static bool CopyOverBreakpointOptions(BreakpointSP bp_sp,
BreakpointOptionGroup &bp_opts,
const std::vector<std::string> &bp_names,
CommandReturnObject &result) {
assert(bp_sp && "CopyOverBreakpointOptions called with no breakpoint");
bp_sp->GetOptions().CopyOverSetOptions(bp_opts.GetBreakpointOptions());
Target &target = bp_sp->GetTarget();
if (!bp_names.empty()) {
Status name_error;
for (auto name : bp_names) {
target.AddNameToBreakpoint(bp_sp, name.c_str(), name_error);
if (name_error.Fail()) {
result.AppendErrorWithFormat("Invalid breakpoint name: %s",
name.c_str());
target.RemoveBreakpointByID(bp_sp->GetID());
return false;
}
}
}
return true;
}
static llvm::Expected<LanguageType>
GetExceptionLanguageForLanguage(llvm::StringRef lang_name,
char short_option = '\0',
llvm::StringRef long_option = {}) {
llvm::Expected<LanguageType> exception_language =
Language::GetExceptionLanguageForLanguage(lang_name);
if (!exception_language) {
std::string error_msg = llvm::toString(exception_language.takeError());
return CreateOptionParsingError(lang_name, short_option, long_option,
error_msg);
}
return exception_language;
}
static Status CompleteLineEntry(ExecutionContext &exe_ctx,
OptionValueFileColonLine &line_entry) {
Status error;
uint32_t line_num = line_entry.GetLineNumber();
if (!line_entry.GetFileSpec()) {
FileSpec default_file_spec;
std::string error_msg;
Target *target = exe_ctx.GetTargetPtr();
if (!target) {
error.FromErrorString("Can't complete a line entry with no "
"target");
return error;
}
Debugger &dbg = target->GetDebugger();
CommandReturnObject result(dbg.GetUseColor());
if (!GetDefaultFile(*target, exe_ctx.GetFramePtr(), default_file_spec,
result)) {
error.FromErrorStringWithFormatv("{0}/nCouldn't get default file for "
"line {1}: {2}",
result.GetErrorString(), line_num,
error_msg);
return error;
}
line_entry.SetFile(default_file_spec);
}
return error;
}
class CommandObjectBreakpointAddAddress : public CommandObjectParsed {
public:
CommandObjectBreakpointAddAddress(CommandInterpreter &interpreter)
: CommandObjectParsed(interpreter, "breakpoint add address",
"Add breakpoints by raw address", nullptr) {
CommandArgumentData bp_id_arg;
// Define the first (and only) variant of this arg.
m_all_options.Append(&m_bp_opts, LLDB_OPT_SET_ALL, LLDB_OPT_SET_1);
m_all_options.Append(&m_name_opts);
m_all_options.Append(&m_dummy_options, LLDB_OPT_SET_ALL, LLDB_OPT_SET_1);
m_all_options.Append(&m_options, LLDB_OPT_SET_ALL, LLDB_OPT_SET_1);
m_all_options.Finalize();
AddSimpleArgumentList(eArgTypeAddress, eArgRepeatPlus);
}
~CommandObjectBreakpointAddAddress() override = default;
Options *GetOptions() override { return &m_all_options; }
class CommandOptions : public OptionGroup {
public:
CommandOptions() = default;
~CommandOptions() override = default;
Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg,
ExecutionContext *execution_context) override {
Status error;
const int short_option = GetDefinitions()[option_idx].short_option;
const char *long_option = GetDefinitions()[option_idx].long_option;
switch (short_option) {
case 'H':
m_hardware = true;
break;
case 's':
if (m_modules.GetSize() == 0)
m_modules.AppendIfUnique(FileSpec(option_arg));
else
error = Status::FromError(
CreateOptionParsingError(option_arg, short_option, long_option,
"Only one shared library can be "
"specified for address breakpoints."));
break;
default:
llvm_unreachable("Unimplemented option");
}
return error;
}
void OptionParsingStarting(ExecutionContext *execution_context) override {
m_hardware = false;
m_modules.Clear();
}
llvm::ArrayRef<OptionDefinition> GetDefinitions() override {
return llvm::ArrayRef(g_breakpoint_add_address_options);
}
// Instance variables to hold the values for command options.
bool m_hardware = false; // FIXME - this can go in the "modify" options.
FileSpecList m_modules;
};
protected:
void DoExecute(Args &command, CommandReturnObject &result) override {
// We've already asserted that there can only be one entry in m_modules:
const ExecutionContext &exe_ctx = m_interpreter.GetExecutionContext();
// We don't set address breakpoints in the dummy target.
if (!exe_ctx.HasTargetScope() || exe_ctx.GetTargetPtr()->IsDummyTarget()) {
result.AppendError(
"can't set address breakpoints without a real target.");
return;
}
// Commands can't set internal breakpoints:
const bool internal = false;
Target &target = exe_ctx.GetTargetRef();
FileSpec module_spec;
bool has_module = false;
if (m_options.m_modules.GetSize() != 0) {
has_module = true;
module_spec = m_options.m_modules.GetFileSpecAtIndex(0);
}
BreakpointSP bp_sp;
// Let's process the arguments first so we can short-circuit if there are
// any errors:
std::vector<lldb::addr_t> bp_addrs;
for (const Args::ArgEntry &arg_entry : command) {
Address bp_address;
Status error;
lldb::addr_t bp_load_addr = OptionArgParser::ToAddress(
&exe_ctx, arg_entry.ref(), LLDB_INVALID_ADDRESS, &error);
if (error.Fail()) {
result.AppendErrorWithFormatv("invalid argument value '{0}': {1}",
arg_entry.ref(), error);
return;
}
bp_addrs.push_back(bp_load_addr);
}
for (auto bp_addr : bp_addrs) {
if (has_module)
bp_sp = target.CreateAddressInModuleBreakpoint(
bp_addr, internal, module_spec, m_options.m_hardware);
else
// ENHANCEMENT: we should see if bp_addr is in a single loaded module,
// and pass that module in if it is.
bp_sp =
target.CreateBreakpoint(bp_addr, internal, m_options.m_hardware);
}
if (bp_sp) {
CopyOverBreakpointOptions(bp_sp, m_bp_opts,
m_name_opts.GetBreakpointNames(), result);
Stream &output_stream = result.GetOutputStream();
bp_sp->GetDescription(&output_stream, lldb::eDescriptionLevelInitial,
/*show_locations=*/false);
result.SetStatus(eReturnStatusSuccessFinishResult);
} else {
result.AppendError("Breakpoint creation failed: No breakpoint created.");
}
}
private:
BreakpointOptionGroup m_bp_opts;
BreakpointNamesOptionGroup m_name_opts;
BreakpointDummyOptionGroup m_dummy_options;
CommandOptions m_options;
OptionGroupOptions m_all_options;
};
#pragma mark AddException::CommandOptions
#define LLDB_OPTIONS_breakpoint_add_exception
#include "CommandOptions.inc"
#pragma mark Add Exception
class CommandObjectBreakpointAddException : public CommandObjectParsed {
public:
CommandObjectBreakpointAddException(CommandInterpreter &interpreter)
: CommandObjectParsed(
interpreter, "breakpoint add exception",
"Add breakpoints on language exceptions. If no language is "
"specified, break on exceptions for all supported languages",
nullptr) {
// Define the first (and only) variant of this arg.
AddSimpleArgumentList(eArgTypeLanguage, eArgRepeatStar);
// Next add all the options.
m_all_options.Append(&m_bp_opts, LLDB_OPT_SET_ALL, LLDB_OPT_SET_1);
m_all_options.Append(&m_name_opts);
m_all_options.Append(&m_dummy_options, LLDB_OPT_SET_ALL, LLDB_OPT_SET_1);
m_all_options.Append(&m_options);
m_all_options.Finalize();
}
~CommandObjectBreakpointAddException() override = default;
Options *GetOptions() override { return &m_all_options; }
class CommandOptions : public OptionGroup {
public:
CommandOptions() = default;
~CommandOptions() override = default;
Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg,
ExecutionContext *execution_context) override {
Status error;
const int short_option = GetDefinitions()[option_idx].short_option;
switch (short_option) {
case 'E': {
uint32_t this_val = (uint32_t)OptionArgParser::ToOptionEnum(
option_arg, GetDefinitions()[option_idx].enum_values,
eExceptionStageThrow, error);
if (error.Fail())
return error;
m_exception_stage |= this_val;
} break;
case 'H':
m_hardware = true;
break;
case 'O':
m_exception_extra_args.AppendArgument("-O");
m_exception_extra_args.AppendArgument(option_arg);
break;
default:
llvm_unreachable("Unimplemented option");
}
return error;
}
void OptionParsingStarting(ExecutionContext *execution_context) override {
m_hardware = false;
m_exception_extra_args.Clear();
m_exception_stage = eExceptionStageThrow;
}
llvm::ArrayRef<OptionDefinition> GetDefinitions() override {
return llvm::ArrayRef(g_breakpoint_add_exception_options);
}
// Instance variables to hold the values for command options.
bool m_hardware = false; // FIXME - this can go in the "modify" options.
Args m_exception_extra_args;
uint32_t m_exception_stage = eExceptionStageThrow;
};
protected:
void DoExecute(Args &command, CommandReturnObject &result) override {
Target &target =
m_dummy_options.m_use_dummy ? GetDummyTarget() : GetTarget();
BreakpointSP bp_sp;
LanguageType exception_language = eLanguageTypeUnknown;
if (command.size() == 0) {
result.AppendError("no languages specified");
} else if (command.size() > 1) {
result.AppendError(
"can only set exception breakpoints on one language at a time");
} else {
llvm::Expected<LanguageType> language =
GetExceptionLanguageForLanguage(command[0].ref());
if (language)
exception_language = *language;
else {
result.SetError(language.takeError());
return;
}
}
Status precond_error;
const bool internal = false;
bool catch_bp = (m_options.m_exception_stage & eExceptionStageCatch) != 0;
bool throw_bp = (m_options.m_exception_stage & eExceptionStageThrow) != 0;
bp_sp = target.CreateExceptionBreakpoint(
exception_language, catch_bp, throw_bp, internal,
&m_options.m_exception_extra_args, &precond_error);
if (precond_error.Fail()) {
result.AppendErrorWithFormat(
"Error setting extra exception arguments: %s",
precond_error.AsCString());
target.RemoveBreakpointByID(bp_sp->GetID());
return;
}
if (bp_sp) {
CopyOverBreakpointOptions(bp_sp, m_bp_opts,
m_name_opts.GetBreakpointNames(), result);
Stream &output_stream = result.GetOutputStream();
bp_sp->GetDescription(&output_stream, lldb::eDescriptionLevelInitial,
/*show_locations=*/false);
// Note, we don't print a "got no locations" warning for exception
// breakpoints. They can get set in the dummy target, and we won't know
// how to actually set the breakpoint till we know what version of the
// relevant LanguageRuntime gets loaded.
if (&target == &GetDummyTarget())
output_stream.Printf("Breakpoint set in dummy target, will get copied "
"into future targets.\n");
result.SetStatus(eReturnStatusSuccessFinishResult);
} else {
result.AppendError("Breakpoint creation failed: No breakpoint created.");
}
}
private:
BreakpointOptionGroup m_bp_opts;
BreakpointNamesOptionGroup m_name_opts;
BreakpointDummyOptionGroup m_dummy_options;
CommandOptions m_options;
OptionGroupOptions m_all_options;
};
#pragma mark AddFile::CommandOptions
#define LLDB_OPTIONS_breakpoint_add_file
#include "CommandOptions.inc"
#pragma mark Add File
class CommandObjectBreakpointAddFile : public CommandObjectParsed {
public:
CommandObjectBreakpointAddFile(CommandInterpreter &interpreter)
: CommandObjectParsed(
interpreter, "breakpoint add file",
"Add breakpoints on lines in specified source files", nullptr) {
CommandArgumentEntry arg1;
CommandArgumentData linespec_arg;
CommandArgumentData no_arg;
// Any number of linespecs in group 1:
linespec_arg.arg_type = eArgTypeFileLineColumn;
linespec_arg.arg_repetition = eArgRepeatPlus;
linespec_arg.arg_opt_set_association = LLDB_OPT_SET_1;
arg1.push_back(linespec_arg);
// Leave arg2 empty, there are no arguments to this variant.
CommandArgumentEntry arg2;
no_arg.arg_type = eArgTypeNone;
no_arg.arg_repetition = eArgRepeatOptional;
no_arg.arg_opt_set_association = LLDB_OPT_SET_2;
arg2.push_back(linespec_arg);
// Push the data for the first argument into the m_arguments vector.
m_arguments.push_back(arg1);
m_arguments.push_back(arg2);
// Define the first (and only) variant of this arg.
m_all_options.Append(&m_bp_opts, LLDB_OPT_SET_ALL,
LLDB_OPT_SET_1 | LLDB_OPT_SET_2);
m_all_options.Append(&m_name_opts);
m_all_options.Append(&m_dummy_options, LLDB_OPT_SET_ALL,
LLDB_OPT_SET_1 | LLDB_OPT_SET_2);
m_all_options.Append(&m_options);
m_all_options.Finalize();
}
~CommandObjectBreakpointAddFile() override = default;
Options *GetOptions() override { return &m_all_options; }
class CommandOptions : public OptionGroup {
public:
CommandOptions() = default;
~CommandOptions() override = default;
Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg,
ExecutionContext *execution_context) override {
Status error;
const int short_option = GetDefinitions()[option_idx].short_option;
const char *long_option = GetDefinitions()[option_idx].long_option;
switch (short_option) {
case 'f':
m_cur_value.SetFile(FileSpec(option_arg));
break;
case 'l':
uint32_t line_num;
if (option_arg.getAsInteger(0, line_num))
error = Status::FromError(
CreateOptionParsingError(option_arg, short_option, long_option,
g_int_parsing_error_message));
else {
// The line number is the only required part of the options for a
// specifying the location - since we will fill in the file with the
// default file. So when we see a new line, the old line entry we
// were building is done. If we haven't gotten a file, try to fill
// in the default file, and then finish up this linespec and start
// the next one.
if (m_cur_value.GetLineNumber() != LLDB_INVALID_LINE_NUMBER) {
// FIXME: It should be possible to create a breakpoint with a list
// of file, line, column values. But for now we can only create
// one, so return an error here. The commented out code is what we
// will do when I come back to add that capability.
return Status::FromErrorString("Can only specify one file and line "
"pair at a time.");
#if 0 // This code will be appropriate once we have a resolver that can take
// more than one linespec at a time.
error = CompleteLineEntry(*execution_context, m_cur_value);
if (error.Fail())
return error;
m_line_specs.push_back(m_cur_value);
m_cur_value.Clear();
#endif
}
m_cur_value.SetLine(line_num);
}
break;
case 'u':
uint32_t column_num;
if (option_arg.getAsInteger(0, column_num))
error = Status::FromError(
CreateOptionParsingError(option_arg, short_option, long_option,
g_int_parsing_error_message));
else
m_cur_value.SetColumn(column_num);
break;
case 'K': {
bool success;
bool value;
value = OptionArgParser::ToBoolean(option_arg, true, &success);
if (value)
m_skip_prologue = eLazyBoolYes;
else
m_skip_prologue = eLazyBoolNo;
if (!success)
error = Status::FromError(
CreateOptionParsingError(option_arg, short_option, long_option,
g_bool_parsing_error_message));
} break;
case 'm': {
bool success;
bool value;
value = OptionArgParser::ToBoolean(option_arg, true, &success);
if (value)
m_move_to_nearest_code = eLazyBoolYes;
else
m_move_to_nearest_code = eLazyBoolNo;
if (!success)
error = Status::FromError(
CreateOptionParsingError(option_arg, short_option, long_option,
g_bool_parsing_error_message));
} break;
case 's':
m_modules.AppendIfUnique(FileSpec(option_arg));
break;
case 'H':
m_hardware = true;
break;
case 'S': {
lldb::addr_t tmp_offset_addr;
tmp_offset_addr = OptionArgParser::ToAddress(execution_context,
option_arg, 0, &error);
if (error.Success())
m_offset_addr = tmp_offset_addr;
} break;
default:
llvm_unreachable("Unimplemented option");
}
return error;
}
void OptionParsingStarting(ExecutionContext *execution_context) override {
m_hardware = false;
m_line_specs.clear();
m_cur_value.Clear();
m_skip_prologue = eLazyBoolCalculate;
m_modules.Clear();
m_move_to_nearest_code = eLazyBoolCalculate;
m_offset_addr = 0;
}
Status OptionParsingFinished(ExecutionContext *execution_context) override {
// We were supplied at least a line from the options, so fill in the
// default file if needed.
if (m_cur_value.GetLineNumber() != LLDB_INVALID_LINE_NUMBER) {
Status error = CompleteLineEntry(*execution_context, m_cur_value);
if (error.Fail())
return error;
m_line_specs.push_back(m_cur_value);
m_cur_value.Clear();
}
return {};
}
llvm::ArrayRef<OptionDefinition> GetDefinitions() override {
return llvm::ArrayRef(g_breakpoint_add_file_options);
}
// Instance variables to hold the values for command options.
bool m_hardware = false; // FIXME - this can go in the "modify" options.
std::vector<OptionValueFileColonLine> m_line_specs;
LazyBool m_skip_prologue = eLazyBoolCalculate;
OptionValueFileColonLine m_cur_value;
FileSpecList m_modules;
LazyBool m_move_to_nearest_code = eLazyBoolCalculate;
lldb::addr_t m_offset_addr = 0;
};
protected:
void DoExecute(Args &command, CommandReturnObject &result) override {
bool internal = false;
Target &target =
m_dummy_options.m_use_dummy ? GetDummyTarget() : GetTarget();
// FIXME: At present we can only make file & line breakpoints for one file
// and line pair. It wouldn't be hard to extend that, but I'm not adding
// features at this point so I'll leave that for a future patch. For now,
// flag this as an error.
// I'm leaving this as a loop since that's how it should be when we can
// do more than one linespec at a time.
FileSpec default_file;
for (const Args::ArgEntry &this_arg : command) {
OptionValueFileColonLine value;
uint32_t line_value = LLDB_INVALID_LINE_NUMBER;
if (!this_arg.ref().getAsInteger(0, line_value)) {
// The argument is a plain number. Treat that as a line number, and
// allow it if we can find a default file & line.
std::string error_msg;
if (!GetDefaultFile(target, m_exe_ctx.GetFramePtr(), default_file,
result)) {
result.AppendErrorWithFormatv("Couldn't find default file for line "
"input: {0} - {1}",
line_value, error_msg);
return;
}
value.SetLine(line_value);
value.SetFile(default_file);
} else {
Status error = value.SetValueFromString(this_arg.c_str());
if (error.Fail()) {
result.AppendErrorWithFormatv("Failed to parse linespec: {0}", error);
return;
}
}
m_options.m_line_specs.push_back(value);
}
if (m_options.m_line_specs.size() != 1) {
result.AppendError("Can only make file and line breakpoints with one "
"specification at a time.");
return;
}
BreakpointSP bp_sp;
// Only check for inline functions if
LazyBool check_inlines = eLazyBoolCalculate;
OptionValueFileColonLine &this_spec = m_options.m_line_specs[0];
bp_sp = target.CreateBreakpoint(
&(m_options.m_modules), this_spec.GetFileSpec(),
this_spec.GetLineNumber(), this_spec.GetColumnNumber(),
m_options.m_offset_addr, check_inlines, m_options.m_skip_prologue,
internal, m_options.m_hardware, m_options.m_move_to_nearest_code);
if (bp_sp) {
CopyOverBreakpointOptions(bp_sp, m_bp_opts,
m_name_opts.GetBreakpointNames(), result);
Stream &output_stream = result.GetOutputStream();
bp_sp->GetDescription(&output_stream, lldb::eDescriptionLevelInitial,
/*show_locations=*/false);
if (&target == &GetDummyTarget())
output_stream.Printf("Breakpoint set in dummy target, will get copied "
"into future targets.\n");
else {
// Don't print out this warning for exception breakpoints. They can
// get set before the target is set, but we won't know how to actually
// set the breakpoint till we run.
if (bp_sp->GetNumLocations() == 0) {
output_stream.Printf("WARNING: Unable to resolve breakpoint to any "
"actual locations.\n");
}
}
result.SetStatus(eReturnStatusSuccessFinishResult);
} else {
result.AppendError("Breakpoint creation failed: No breakpoint created.");
}
}
private:
BreakpointOptionGroup m_bp_opts;
BreakpointNamesOptionGroup m_name_opts;
BreakpointDummyOptionGroup m_dummy_options;
CommandOptions m_options;
OptionGroupOptions m_all_options;
};
#pragma mark AddName::CommandOptions
#define LLDB_OPTIONS_breakpoint_add_name
#include "CommandOptions.inc"
#pragma mark Add Name
class CommandObjectBreakpointAddName : public CommandObjectParsed {
public:
CommandObjectBreakpointAddName(CommandInterpreter &interpreter)
: CommandObjectParsed(interpreter, "breakpoint add name",
"Add breakpoints matching function or symbol names",
nullptr) {
// FIXME: Add a completer that's aware of the name match style.
// Define the first (and only) variant of this arg.
AddSimpleArgumentList(eArgTypeFunctionOrSymbol, eArgRepeatPlus);
// Now add all the options groups.
m_all_options.Append(&m_bp_opts, LLDB_OPT_SET_ALL, LLDB_OPT_SET_1);
m_all_options.Append(&m_name_opts);
m_all_options.Append(&m_dummy_options, LLDB_OPT_SET_ALL, LLDB_OPT_SET_1);
m_all_options.Append(&m_options);
m_all_options.Finalize();
}
~CommandObjectBreakpointAddName() override = default;
Options *GetOptions() override { return &m_all_options; }
class CommandOptions : public OptionGroup {
public:
CommandOptions() = default;
~CommandOptions() override = default;
Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg,
ExecutionContext *execution_context) override {
Status error;
const int short_option = GetDefinitions()[option_idx].short_option;
const char *long_option = GetDefinitions()[option_idx].long_option;
switch (short_option) {
case 'f':
m_files.AppendIfUnique(FileSpec(option_arg));
break;
case 'K': {
bool success;
bool value;
value = OptionArgParser::ToBoolean(option_arg, true, &success);
if (!success)
error = Status::FromError(
CreateOptionParsingError(option_arg, short_option, long_option,
g_bool_parsing_error_message));
else {
if (value)
m_skip_prologue = eLazyBoolYes;
else
m_skip_prologue = eLazyBoolNo;
}
} break;
case 'L': {
m_language = Language::GetLanguageTypeFromString(option_arg);
if (m_language == eLanguageTypeUnknown)
error = Status::FromError(
CreateOptionParsingError(option_arg, short_option, long_option,
g_language_parsing_error_message));
} break;
case 'm': {
uint32_t this_val = (uint32_t)OptionArgParser::ToOptionEnum(
option_arg, GetDefinitions()[option_idx].enum_values,
eNameMatchStyleAuto, error);
if (error.Fail())
return error;
m_lookup_style = (NameMatchStyle)this_val;
} break;
case 's':
m_modules.AppendIfUnique(FileSpec(option_arg));
break;
case 'H':
m_hardware = true;
break;
case 'S': {
lldb::addr_t tmp_offset_addr;
tmp_offset_addr = OptionArgParser::ToAddress(execution_context,
option_arg, 0, &error);
if (error.Success())
m_offset_addr = tmp_offset_addr;
} break;
default:
llvm_unreachable("Unimplemented option");
}
return error;
}
void OptionParsingStarting(ExecutionContext *execution_context) override {
m_hardware = false;
m_skip_prologue = eLazyBoolCalculate;
m_files.Clear();
m_language = eLanguageTypeUnknown;
m_modules.Clear();
m_offset_addr = 0;
m_lookup_style = eNameMatchStyleAuto;
}
llvm::ArrayRef<OptionDefinition> GetDefinitions() override {
return llvm::ArrayRef(g_breakpoint_add_name_options);
}
// Instance variables to hold the values for command options.
bool m_hardware = false; // FIXME - this can go in the "modify" options.
LazyBool m_skip_prologue = eLazyBoolCalculate;
FileSpecList m_modules;
LanguageType m_language = eLanguageTypeUnknown;
FileSpecList m_files;
LazyBool m_move_to_nearest_code = eLazyBoolCalculate;
lldb::addr_t m_offset_addr = 0;
NameMatchStyle m_lookup_style = eNameMatchStyleAuto;
};
protected:
void DoExecute(Args &command, CommandReturnObject &result) override {
const bool internal = false;
Target &target =
m_dummy_options.m_use_dummy ? GetDummyTarget() : GetTarget();
// Parse the argument list - this is a simple list of names.
std::vector<std::string> func_names;
for (const Args::ArgEntry &this_arg : command) {
func_names.push_back(this_arg.ref().str());
}
BreakpointSP bp_sp;
if (!(m_options.m_lookup_style & eNameMatchStyleRegex))
bp_sp = target.CreateBreakpoint(
&m_options.m_modules, &m_options.m_files, func_names,
(FunctionNameType)m_options.m_lookup_style, m_options.m_language,
m_options.m_offset_addr, m_options.m_skip_prologue, internal,
m_options.m_hardware);
else {
if (func_names.size() != 1) {
result.AppendError("Can only set function regular expression "
"breakpoints on one regex at a time.");
return;
}
std::string &func_regexp = func_names[0];
RegularExpression regexp(func_regexp);
if (llvm::Error err = regexp.GetError()) {
result.AppendErrorWithFormat(
"Function name regular expression could not be compiled: %s",
llvm::toString(std::move(err)).c_str());
// Check if the incorrect regex looks like a globbing expression and
// warn the user about it.
if (!func_regexp.empty()) {
if (func_regexp[0] == '*' || func_regexp[0] == '?')
result.AppendWarning(
"Function name regex does not accept glob patterns.");
}
return;
}
bp_sp = target.CreateFuncRegexBreakpoint(
&(m_options.m_modules), &(m_options.m_files), std::move(regexp),
m_options.m_language, m_options.m_skip_prologue, internal,
m_options.m_hardware);
}
if (bp_sp) {
CopyOverBreakpointOptions(bp_sp, m_bp_opts,
m_name_opts.GetBreakpointNames(), result);
Stream &output_stream = result.GetOutputStream();
bp_sp->GetDescription(&output_stream, lldb::eDescriptionLevelInitial,
/*show_locations=*/false);
if (&target == &GetDummyTarget())
output_stream.Printf("Breakpoint set in dummy target, will get copied "
"into future targets.\n");
else {
if (bp_sp->GetNumLocations() == 0) {
output_stream.Printf("WARNING: Unable to resolve breakpoint to any "
"actual locations.\n");
}
}
result.SetStatus(eReturnStatusSuccessFinishResult);
} else {
result.AppendError("Breakpoint creation failed: No breakpoint created.");
}
}
private:
BreakpointOptionGroup m_bp_opts;
BreakpointNamesOptionGroup m_name_opts;
BreakpointDummyOptionGroup m_dummy_options;
CommandOptions m_options;
OptionGroupOptions m_all_options;
};
#pragma mark AddPattern::CommandOptions
#define LLDB_OPTIONS_breakpoint_add_pattern
#include "CommandOptions.inc"
#pragma mark Add Pattern
class CommandObjectBreakpointAddPattern : public CommandObjectRaw {
public:
CommandObjectBreakpointAddPattern(CommandInterpreter &interpreter)
: CommandObjectRaw(interpreter, "breakpoint add pattern",
"Add breakpoints matching patterns in the source text",
"breakpoint add pattern [options] -- <pattern>") {
AddSimpleArgumentList(eArgTypeRegularExpression, eArgRepeatPlain);
// Now add all the options groups.
m_all_options.Append(&m_bp_opts, LLDB_OPT_SET_ALL, LLDB_OPT_SET_1);
m_all_options.Append(&m_name_opts);
m_all_options.Append(&m_dummy_options, LLDB_OPT_SET_ALL, LLDB_OPT_SET_1);
m_all_options.Append(&m_options);
m_all_options.Finalize();
}
~CommandObjectBreakpointAddPattern() override = default;
Options *GetOptions() override { return &m_all_options; }
class CommandOptions : public OptionGroup {
public:
CommandOptions() = default;
~CommandOptions() override = default;
Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg,
ExecutionContext *execution_context) override {
Status error;
const int short_option = GetDefinitions()[option_idx].short_option;
const char *long_option = GetDefinitions()[option_idx].long_option;
switch (short_option) {
case 'a': {
bool success;
bool value;
value = OptionArgParser::ToBoolean(option_arg, true, &success);
if (!success)
error = Status::FromError(
CreateOptionParsingError(option_arg, short_option, long_option,
g_bool_parsing_error_message));
else
m_all_files = value;
} break;
case 'f':
m_files.AppendIfUnique(FileSpec(option_arg));
break;
case 'm': {
bool success;
bool value;
value = OptionArgParser::ToBoolean(option_arg, true, &success);
if (!success)
error = Status::FromError(
CreateOptionParsingError(option_arg, short_option, long_option,
g_bool_parsing_error_message));
else {
if (value)
m_move_to_nearest_code = eLazyBoolYes;
else
m_move_to_nearest_code = eLazyBoolNo;
}
} break;
case 'n':
m_func_names.insert(option_arg.str());
break;
case 's':
m_modules.AppendIfUnique(FileSpec(option_arg));
break;
case 'H':
m_hardware = true;
break;
default:
llvm_unreachable("Unimplemented option");
}
return error;
}
void OptionParsingStarting(ExecutionContext *execution_context) override {
m_hardware = false;
m_skip_prologue = eLazyBoolCalculate;
m_modules.Clear();
m_files.Clear();
m_func_names.clear();
m_all_files = false;
m_move_to_nearest_code = eLazyBoolCalculate;
}
llvm::ArrayRef<OptionDefinition> GetDefinitions() override {
return llvm::ArrayRef(g_breakpoint_add_pattern_options);
}
// Instance variables to hold the values for command options.
bool m_hardware = false; // FIXME - this can go in the "modify" options.
LazyBool m_skip_prologue = eLazyBoolCalculate;
FileSpecList m_modules;
FileSpecList m_files;
std::unordered_set<std::string> m_func_names;
bool m_all_files = false;
LazyBool m_move_to_nearest_code = eLazyBoolCalculate;
};
protected:
void DoExecute(llvm::StringRef command,
CommandReturnObject &result) override {
const bool internal = false;
ExecutionContext exe_ctx = GetCommandInterpreter().GetExecutionContext();
m_all_options.NotifyOptionParsingStarting(&exe_ctx);
if (command.empty()) {
result.AppendError("no pattern to seek.");
return;
}
OptionsWithRaw args(command);
if (args.HasArgs()) {
if (!ParseOptionsAndNotify(args.GetArgs(), result, m_all_options,
exe_ctx))
return;
}
llvm::StringRef pattern = args.GetRawPart();
if (pattern.empty()) {
result.AppendError("no pattern to seek");
return;
}
Target &target =
m_dummy_options.m_use_dummy ? GetDummyTarget() : GetTarget();
BreakpointSP bp_sp;
const size_t num_files = m_options.m_files.GetSize();
if (num_files == 0 && !m_options.m_all_files) {
FileSpec file;
if (!GetDefaultFile(target, m_exe_ctx.GetFramePtr(), file, result)) {
result.AppendError(
"No files provided and could not find default file.");
return;
} else {
m_options.m_files.Append(file);
}
}
RegularExpression regexp(pattern);
if (llvm::Error err = regexp.GetError()) {
result.AppendErrorWithFormat(
"Source text regular expression could not be compiled: \"%s\"",
llvm::toString(std::move(err)).c_str());
return;
}
bp_sp = target.CreateSourceRegexBreakpoint(
&(m_options.m_modules), &(m_options.m_files), m_options.m_func_names,
std::move(regexp), internal, m_options.m_hardware,
m_options.m_move_to_nearest_code);
if (bp_sp) {
CopyOverBreakpointOptions(bp_sp, m_bp_opts,
m_name_opts.GetBreakpointNames(), result);
Stream &output_stream = result.GetOutputStream();
bp_sp->GetDescription(&output_stream, lldb::eDescriptionLevelInitial,
/*show_locations=*/false);
if (&target == &GetDummyTarget())
output_stream.Printf("Breakpoint set in dummy target, will get copied "
"into future targets.\n");
else {
// Don't print out this warning for exception breakpoints. They can
// get set before the target is set, but we won't know how to actually
// set the breakpoint till we run.
if (bp_sp->GetNumLocations() == 0) {
output_stream.Printf("WARNING: Unable to resolve breakpoint to any "
"actual locations.\n");
}
}
result.SetStatus(eReturnStatusSuccessFinishResult);
} else {
result.AppendError("Breakpoint creation failed: No breakpoint created.");
}
}
private:
BreakpointOptionGroup m_bp_opts;
BreakpointNamesOptionGroup m_name_opts;
BreakpointDummyOptionGroup m_dummy_options;
CommandOptions m_options;
OptionGroupOptions m_all_options;
};
#pragma mark AddScripted::CommandOptions
#define LLDB_OPTIONS_breakpoint_add_scripted
#include "CommandOptions.inc"
#pragma mark Add Scripted
class CommandObjectBreakpointAddScripted : public CommandObjectParsed {
public:
CommandObjectBreakpointAddScripted(CommandInterpreter &interpreter)
: CommandObjectParsed(
interpreter, "breakpoint add scripted",
"Add breakpoints using a scripted breakpoint resolver.", nullptr),
m_python_class_options("scripted breakpoint", true, 'P') {
// We're picking up all the normal options, commands and disable.
m_all_options.Append(&m_python_class_options,
LLDB_OPT_SET_1 | LLDB_OPT_SET_2, LLDB_OPT_SET_1);
// Define the first (and only) variant of this arg.
m_all_options.Append(&m_bp_opts, LLDB_OPT_SET_ALL, LLDB_OPT_SET_1);
m_all_options.Append(&m_name_opts);
m_all_options.Append(&m_dummy_options, LLDB_OPT_SET_ALL, LLDB_OPT_SET_1);
m_all_options.Append(&m_options);
m_all_options.Finalize();
}
~CommandObjectBreakpointAddScripted() override = default;
Options *GetOptions() override { return &m_all_options; }
class CommandOptions : public OptionGroup {
public:
CommandOptions() = default;
~CommandOptions() override = default;
Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg,
ExecutionContext *execution_context) override {
Status error;
const int short_option = GetDefinitions()[option_idx].short_option;
switch (short_option) {
case 'f':
m_files.Append(FileSpec(option_arg));
break;
case 's':
m_modules.AppendIfUnique(FileSpec(option_arg));
break;
case 'H':
m_hardware = true;
break;
default:
llvm_unreachable("Unimplemented option");
}
return error;
}
void OptionParsingStarting(ExecutionContext *execution_context) override {
m_hardware = false;
m_files.Clear();
m_modules.Clear();
}
llvm::ArrayRef<OptionDefinition> GetDefinitions() override {
return llvm::ArrayRef(g_breakpoint_add_scripted_options);
}
// Instance variables to hold the values for command options.
bool m_hardware = false; // FIXME - this can go in the "modify" options.
FileSpecList m_files;
FileSpecList m_modules;
};
protected:
void DoExecute(Args &command, CommandReturnObject &result) override {
Target &target =
m_dummy_options.m_use_dummy ? GetDummyTarget() : GetTarget();
BreakpointSP bp_sp;
Status error;
bp_sp = target.CreateScriptedBreakpoint(
m_python_class_options.GetName().c_str(), &(m_options.m_modules),
&(m_options.m_files), false, m_options.m_hardware,
m_python_class_options.GetStructuredData(), &error);
if (error.Fail()) {
result.AppendErrorWithFormat(
"error setting extra exception arguments: %s", error.AsCString());
target.RemoveBreakpointByID(bp_sp->GetID());
return;
}
if (bp_sp) {
CopyOverBreakpointOptions(bp_sp, m_bp_opts,
m_name_opts.GetBreakpointNames(), result);
Stream &output_stream = result.GetOutputStream();
bp_sp->GetDescription(&output_stream, lldb::eDescriptionLevelInitial,
/*show_locations=*/false);
if (&target == &GetDummyTarget())
output_stream.Printf("Breakpoint set in dummy target, will get copied "
"into future targets.\n");
else {
// Don't print out this warning for exception breakpoints. They can
// get set before the target is set, but we won't know how to actually
// set the breakpoint till we run.
if (bp_sp->GetNumLocations() == 0) {
output_stream.Printf("WARNING: Unable to resolve breakpoint to any "
"actual locations.\n");
}
}
result.SetStatus(eReturnStatusSuccessFinishResult);
} else {
result.AppendError("breakpoint creation failed: No breakpoint created.");
}
}
private:
BreakpointOptionGroup m_bp_opts;
BreakpointNamesOptionGroup m_name_opts;
BreakpointDummyOptionGroup m_dummy_options;
OptionGroupPythonClassWithDict m_python_class_options;
CommandOptions m_options;
OptionGroupOptions m_all_options;
};
#pragma mark Add::CommandOptions
#define LLDB_OPTIONS_breakpoint_add
#include "CommandOptions.inc"
#pragma mark Add
class CommandObjectBreakpointAdd : public CommandObjectMultiword {
public:
CommandObjectBreakpointAdd(CommandInterpreter &interpreter)
: CommandObjectMultiword(interpreter, "add",
"Commands to add breakpoints of various types") {
SetHelpLong(
R"(
Access the breakpoint search kernels built into lldb. Along with specifying the
search kernel, each breakpoint add operation can specify a common set of
"reaction" options for each breakpoint. The reaction options can also be
modified after breakpoint creation using the "breakpoint modify" command.
)");
CommandObjectSP address_command_object(
new CommandObjectBreakpointAddAddress(interpreter));
CommandObjectSP exception_command_object(
new CommandObjectBreakpointAddException(interpreter));
CommandObjectSP file_command_object(
new CommandObjectBreakpointAddFile(interpreter));
CommandObjectSP name_command_object(
new CommandObjectBreakpointAddName(interpreter));
CommandObjectSP pattern_command_object(
new CommandObjectBreakpointAddPattern(interpreter));
CommandObjectSP scripted_command_object(
new CommandObjectBreakpointAddScripted(interpreter));
LoadSubCommand("address", address_command_object);
LoadSubCommand("exception", exception_command_object);
LoadSubCommand("file", file_command_object);
LoadSubCommand("name", name_command_object);
LoadSubCommand("pattern", pattern_command_object);
LoadSubCommand("scripted", scripted_command_object);
}
};
#define LLDB_OPTIONS_breakpoint_set
#include "CommandOptions.inc"
// CommandObjectBreakpointSet
class CommandObjectBreakpointSet : public CommandObjectParsed {
public:
enum BreakpointSetType {
eSetTypeInvalid,
eSetTypeFileAndLine,
eSetTypeAddress,
eSetTypeFunctionName,
eSetTypeFunctionRegexp,
eSetTypeSourceRegexp,
eSetTypeException,
eSetTypeScripted,
};
CommandObjectBreakpointSet(CommandInterpreter &interpreter)
: CommandObjectParsed(
interpreter, "breakpoint set",
"Sets a breakpoint or set of breakpoints in the executable.",
"breakpoint set <cmd-options>"),
m_python_class_options("scripted breakpoint", true, 'P') {
// We're picking up all the normal options, commands and disable.
m_all_options.Append(&m_python_class_options,
LLDB_OPT_SET_1 | LLDB_OPT_SET_2, LLDB_OPT_SET_11);
m_all_options.Append(&m_bp_opts,
LLDB_OPT_SET_1 | LLDB_OPT_SET_3 | LLDB_OPT_SET_4,
LLDB_OPT_SET_ALL);
m_all_options.Append(&m_dummy_options, LLDB_OPT_SET_1, LLDB_OPT_SET_ALL);
m_all_options.Append(&m_options);
m_all_options.Finalize();
}
~CommandObjectBreakpointSet() override = default;
Options *GetOptions() override { return &m_all_options; }
class CommandOptions : public OptionGroup {
public:
CommandOptions() = default;
~CommandOptions() override = default;
Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg,
ExecutionContext *execution_context) override {
Status error;
const int short_option =
g_breakpoint_set_options[option_idx].short_option;
const char *long_option =
g_breakpoint_set_options[option_idx].long_option;
switch (short_option) {
case 'a': {
m_load_addr = OptionArgParser::ToAddress(execution_context, option_arg,
LLDB_INVALID_ADDRESS, &error);
} break;
case 'A':
m_all_files = true;
break;
case 'b':
m_func_names.push_back(std::string(option_arg));
m_func_name_type_mask |= eFunctionNameTypeBase;
break;
case 'u':
if (option_arg.getAsInteger(0, m_column))
error = Status::FromError(
CreateOptionParsingError(option_arg, short_option, long_option,
g_int_parsing_error_message));
break;
case 'E': {
llvm::Expected<LanguageType> language = GetExceptionLanguageForLanguage(
option_arg, short_option, long_option);
if (language)
m_exception_language = *language;
else
error = Status::FromError(language.takeError());
} break;
case 'f':
m_filenames.AppendIfUnique(FileSpec(option_arg));
break;
case 'F':
m_func_names.push_back(std::string(option_arg));
m_func_name_type_mask |= eFunctionNameTypeFull;
break;
case 'h': {
bool success;
m_catch_bp = OptionArgParser::ToBoolean(option_arg, true, &success);
if (!success)
error = Status::FromError(
CreateOptionParsingError(option_arg, short_option, long_option,
g_bool_parsing_error_message));
} break;
case 'H':
m_hardware = true;
break;
case 'K': {
bool success;
bool value;
value = OptionArgParser::ToBoolean(option_arg, true, &success);
if (value)
m_skip_prologue = eLazyBoolYes;
else
m_skip_prologue = eLazyBoolNo;
if (!success)
error = Status::FromError(
CreateOptionParsingError(option_arg, short_option, long_option,
g_bool_parsing_error_message));
} break;
case 'l':
if (option_arg.getAsInteger(0, m_line_num))
error = Status::FromError(
CreateOptionParsingError(option_arg, short_option, long_option,
g_int_parsing_error_message));
break;
case 'L':
m_language = Language::GetLanguageTypeFromString(option_arg);
if (m_language == eLanguageTypeUnknown)
error = Status::FromError(
CreateOptionParsingError(option_arg, short_option, long_option,
g_language_parsing_error_message));
break;
case 'm': {
bool success;
bool value;
value = OptionArgParser::ToBoolean(option_arg, true, &success);
if (value)
m_move_to_nearest_code = eLazyBoolYes;
else
m_move_to_nearest_code = eLazyBoolNo;
if (!success)
error = Status::FromError(
CreateOptionParsingError(option_arg, short_option, long_option,
g_bool_parsing_error_message));
break;
}
case 'M':
m_func_names.push_back(std::string(option_arg));
m_func_name_type_mask |= eFunctionNameTypeMethod;
break;
case 'n':
m_func_names.push_back(std::string(option_arg));
m_func_name_type_mask |= eFunctionNameTypeAuto;
break;
case 'N': {
if (BreakpointID::StringIsBreakpointName(option_arg, error))
m_breakpoint_names.push_back(std::string(option_arg));
else
error = Status::FromError(
CreateOptionParsingError(option_arg, short_option, long_option,
"Invalid breakpoint name"));
break;
}
case 'R': {
lldb::addr_t tmp_offset_addr;
tmp_offset_addr = OptionArgParser::ToAddress(execution_context,
option_arg, 0, &error);
if (error.Success())
m_offset_addr = tmp_offset_addr;
} break;
case 'O':
m_exception_extra_args.AppendArgument("-O");
m_exception_extra_args.AppendArgument(option_arg);
break;
case 'p':
m_source_text_regexp.assign(std::string(option_arg));
break;
case 'r':
m_func_regexp.assign(std::string(option_arg));
break;
case 's':
m_modules.AppendIfUnique(FileSpec(option_arg));
break;
case 'S':
m_func_names.push_back(std::string(option_arg));
m_func_name_type_mask |= eFunctionNameTypeSelector;
break;
case 'w': {
bool success;
m_throw_bp = OptionArgParser::ToBoolean(option_arg, true, &success);
if (!success)
error = Status::FromError(
CreateOptionParsingError(option_arg, short_option, long_option,
g_bool_parsing_error_message));
} break;
case 'X':
m_source_regex_func_names.insert(std::string(option_arg));
break;
case 'y':
{
OptionValueFileColonLine value;
Status fcl_err = value.SetValueFromString(option_arg);
if (!fcl_err.Success()) {
error = Status::FromError(CreateOptionParsingError(
option_arg, short_option, long_option, fcl_err.AsCString()));
} else {
m_filenames.AppendIfUnique(value.GetFileSpec());
m_line_num = value.GetLineNumber();
m_column = value.GetColumnNumber();
}
} break;
default:
llvm_unreachable("Unimplemented option");
}
return error;
}
void OptionParsingStarting(ExecutionContext *execution_context) override {
m_filenames.Clear();
m_line_num = 0;
m_column = 0;
m_func_names.clear();
m_func_name_type_mask = eFunctionNameTypeNone;
m_func_regexp.clear();
m_source_text_regexp.clear();
m_modules.Clear();
m_load_addr = LLDB_INVALID_ADDRESS;
m_offset_addr = 0;
m_catch_bp = false;
m_throw_bp = true;
m_hardware = false;
m_exception_language = eLanguageTypeUnknown;
m_language = lldb::eLanguageTypeUnknown;
m_skip_prologue = eLazyBoolCalculate;
m_breakpoint_names.clear();
m_all_files = false;
m_exception_extra_args.Clear();
m_move_to_nearest_code = eLazyBoolCalculate;
m_source_regex_func_names.clear();
m_current_key.clear();
}
llvm::ArrayRef<OptionDefinition> GetDefinitions() override {
return llvm::ArrayRef(g_breakpoint_set_options);
}
// Instance variables to hold the values for command options.
std::string m_condition;
FileSpecList m_filenames;
uint32_t m_line_num = 0;
uint32_t m_column = 0;
std::vector<std::string> m_func_names;
std::vector<std::string> m_breakpoint_names;
lldb::FunctionNameType m_func_name_type_mask = eFunctionNameTypeNone;
std::string m_func_regexp;
std::string m_source_text_regexp;
FileSpecList m_modules;
lldb::addr_t m_load_addr = 0;
lldb::addr_t m_offset_addr;
bool m_catch_bp = false;
bool m_throw_bp = true;
bool m_hardware = false; // Request to use hardware breakpoints
lldb::LanguageType m_exception_language = eLanguageTypeUnknown;
lldb::LanguageType m_language = lldb::eLanguageTypeUnknown;
LazyBool m_skip_prologue = eLazyBoolCalculate;
bool m_all_files = false;
Args m_exception_extra_args;
LazyBool m_move_to_nearest_code = eLazyBoolCalculate;
std::unordered_set<std::string> m_source_regex_func_names;
std::string m_current_key;
};
protected:
void DoExecute(Args &command, CommandReturnObject &result) override {
Target &target =
m_dummy_options.m_use_dummy ? GetDummyTarget() : GetTarget();
// The following are the various types of breakpoints that could be set:
// 1). -f -l -p [-s -g] (setting breakpoint by source location)
// 2). -a [-s -g] (setting breakpoint by address)
// 3). -n [-s -g] (setting breakpoint by function name)
// 4). -r [-s -g] (setting breakpoint by function name regular
// expression)
// 5). -p -f (setting a breakpoint by comparing a reg-exp
// to source text)
// 6). -E [-w -h] (setting a breakpoint for exceptions for a
// given language.)
BreakpointSetType break_type = eSetTypeInvalid;
if (!m_python_class_options.GetName().empty())
break_type = eSetTypeScripted;
else if (m_options.m_line_num != 0)
break_type = eSetTypeFileAndLine;
else if (m_options.m_load_addr != LLDB_INVALID_ADDRESS)
break_type = eSetTypeAddress;
else if (!m_options.m_func_names.empty())
break_type = eSetTypeFunctionName;
else if (!m_options.m_func_regexp.empty())
break_type = eSetTypeFunctionRegexp;
else if (!m_options.m_source_text_regexp.empty())
break_type = eSetTypeSourceRegexp;
else if (m_options.m_exception_language != eLanguageTypeUnknown)
break_type = eSetTypeException;
BreakpointSP bp_sp = nullptr;
FileSpec module_spec;
const bool internal = false;
// If the user didn't specify skip-prologue, having an offset should turn
// that off.
if (m_options.m_offset_addr != 0 &&
m_options.m_skip_prologue == eLazyBoolCalculate)
m_options.m_skip_prologue = eLazyBoolNo;
switch (break_type) {
case eSetTypeFileAndLine: // Breakpoint by source position
{
FileSpec file;
const size_t num_files = m_options.m_filenames.GetSize();
if (num_files == 0) {
if (!GetDefaultFile(target, m_exe_ctx.GetFramePtr(), file, result)) {
result.AppendError("no file supplied and no default file available.");
return;
}
} else if (num_files > 1) {
result.AppendError("only one file at a time is allowed for file and "
"line breakpoints");
return;
} else
file = m_options.m_filenames.GetFileSpecAtIndex(0);
// Only check for inline functions if
LazyBool check_inlines = eLazyBoolCalculate;
bp_sp = target.CreateBreakpoint(
&(m_options.m_modules), file, m_options.m_line_num,
m_options.m_column, m_options.m_offset_addr, check_inlines,
m_options.m_skip_prologue, internal, m_options.m_hardware,
m_options.m_move_to_nearest_code);
} break;
case eSetTypeAddress: // Breakpoint by address
{
// If a shared library has been specified, make an lldb_private::Address
// with the library, and use that. That way the address breakpoint
// will track the load location of the library.
size_t num_modules_specified = m_options.m_modules.GetSize();
if (num_modules_specified == 1) {
const FileSpec &file_spec =
m_options.m_modules.GetFileSpecAtIndex(0);
bp_sp = target.CreateAddressInModuleBreakpoint(
m_options.m_load_addr, internal, file_spec, m_options.m_hardware);
} else if (num_modules_specified == 0) {
bp_sp = target.CreateBreakpoint(m_options.m_load_addr, internal,
m_options.m_hardware);
} else {
result.AppendError("Only one shared library can be specified for "
"address breakpoints.");
return;
}
break;
}
case eSetTypeFunctionName: // Breakpoint by function name
{
FunctionNameType name_type_mask = m_options.m_func_name_type_mask;
if (name_type_mask == 0)
name_type_mask = eFunctionNameTypeAuto;
bp_sp = target.CreateBreakpoint(
&(m_options.m_modules), &(m_options.m_filenames),
m_options.m_func_names, name_type_mask, m_options.m_language,
m_options.m_offset_addr, m_options.m_skip_prologue, internal,
m_options.m_hardware);
} break;
case eSetTypeFunctionRegexp: // Breakpoint by regular expression function
// name
{
RegularExpression regexp(m_options.m_func_regexp);
if (llvm::Error err = regexp.GetError()) {
result.AppendErrorWithFormat(
"Function name regular expression could not be compiled: %s",
llvm::toString(std::move(err)).c_str());
// Check if the incorrect regex looks like a globbing expression and
// warn the user about it.
if (!m_options.m_func_regexp.empty()) {
if (m_options.m_func_regexp[0] == '*' ||
m_options.m_func_regexp[0] == '?')
result.AppendWarning(
"Function name regex does not accept glob patterns.");
}
return;
}
bp_sp = target.CreateFuncRegexBreakpoint(
&(m_options.m_modules), &(m_options.m_filenames), std::move(regexp),
m_options.m_language, m_options.m_skip_prologue, internal,
m_options.m_hardware);
} break;
case eSetTypeSourceRegexp: // Breakpoint by regexp on source text.
{
const size_t num_files = m_options.m_filenames.GetSize();
if (num_files == 0 && !m_options.m_all_files) {
FileSpec file;
if (!GetDefaultFile(target, m_exe_ctx.GetFramePtr(), file, result)) {
result.AppendError(
"No files provided and could not find default file.");
return;
} else {
m_options.m_filenames.Append(file);
}
}
RegularExpression regexp(m_options.m_source_text_regexp);
if (llvm::Error err = regexp.GetError()) {
result.AppendErrorWithFormat(
"Source text regular expression could not be compiled: \"%s\"",
llvm::toString(std::move(err)).c_str());
return;
}
bp_sp = target.CreateSourceRegexBreakpoint(
&(m_options.m_modules), &(m_options.m_filenames),
m_options.m_source_regex_func_names, std::move(regexp), internal,
m_options.m_hardware, m_options.m_move_to_nearest_code);
} break;
case eSetTypeException: {
Status precond_error;
bp_sp = target.CreateExceptionBreakpoint(
m_options.m_exception_language, m_options.m_catch_bp,
m_options.m_throw_bp, internal, &m_options.m_exception_extra_args,
&precond_error);
if (precond_error.Fail()) {
result.AppendErrorWithFormat(
"Error setting extra exception arguments: %s",
precond_error.AsCString());
target.RemoveBreakpointByID(bp_sp->GetID());
return;
}
} break;
case eSetTypeScripted: {
Status error;
bp_sp = target.CreateScriptedBreakpoint(
m_python_class_options.GetName().c_str(), &(m_options.m_modules),
&(m_options.m_filenames), false, m_options.m_hardware,
m_python_class_options.GetStructuredData(), &error);
if (error.Fail()) {
result.AppendErrorWithFormat(
"Error setting extra exception arguments: %s", error.AsCString());
target.RemoveBreakpointByID(bp_sp->GetID());
return;
}
} break;
default:
break;
}
// Now set the various options that were passed in:
if (bp_sp) {
bp_sp->GetOptions().CopyOverSetOptions(m_bp_opts.GetBreakpointOptions());
if (!m_options.m_breakpoint_names.empty()) {
Status name_error;
for (auto name : m_options.m_breakpoint_names) {
target.AddNameToBreakpoint(bp_sp, name.c_str(), name_error);
if (name_error.Fail()) {
result.AppendErrorWithFormat("Invalid breakpoint name: %s",
name.c_str());
target.RemoveBreakpointByID(bp_sp->GetID());
return;
}
}
}
}
if (bp_sp) {
Stream &output_stream = result.GetOutputStream();
const bool show_locations = false;
bp_sp->GetDescription(&output_stream, lldb::eDescriptionLevelInitial,
show_locations);
if (&target == &GetDummyTarget())
output_stream.Printf("Breakpoint set in dummy target, will get copied "
"into future targets.\n");
else {
// Don't print out this warning for exception breakpoints. They can
// get set before the target is set, but we won't know how to actually
// set the breakpoint till we run.
if (bp_sp->GetNumLocations() == 0 && break_type != eSetTypeException) {
output_stream.Printf("WARNING: Unable to resolve breakpoint to any "
"actual locations.\n");
}
}
result.SetStatus(eReturnStatusSuccessFinishResult);
} else if (!bp_sp) {
result.AppendError("breakpoint creation failed: no breakpoint created");
}
}
private:
BreakpointOptionGroup m_bp_opts;
BreakpointDummyOptionGroup m_dummy_options;
OptionGroupPythonClassWithDict m_python_class_options;
CommandOptions m_options;
OptionGroupOptions m_all_options;
};
// CommandObjectBreakpointModify
#pragma mark Modify
class CommandObjectBreakpointModify : public CommandObjectParsed {
public:
CommandObjectBreakpointModify(CommandInterpreter &interpreter)
: CommandObjectParsed(interpreter, "breakpoint modify",
"Modify the options on a breakpoint or set of "
"breakpoints in the executable. "
"If no breakpoint is specified, acts on the last "
"created breakpoint. "
"With the exception of -e, -d and -i, passing an "
"empty argument clears the modification.",
nullptr) {
CommandObject::AddIDsArgumentData(eBreakpointArgs);
m_options.Append(&m_bp_opts,
LLDB_OPT_SET_1 | LLDB_OPT_SET_2 | LLDB_OPT_SET_3,
LLDB_OPT_SET_ALL);
m_options.Append(&m_dummy_opts, LLDB_OPT_SET_1, LLDB_OPT_SET_ALL);
m_options.Finalize();
}
~CommandObjectBreakpointModify() override = default;
void
HandleArgumentCompletion(CompletionRequest &request,
OptionElementVector &opt_element_vector) override {
lldb_private::CommandCompletions::InvokeCommonCompletionCallbacks(
GetCommandInterpreter(), lldb::eBreakpointCompletion, request, nullptr);
}
Options *GetOptions() override { return &m_options; }
protected:
void DoExecute(Args &command, CommandReturnObject &result) override {
Target &target = m_dummy_opts.m_use_dummy ? GetDummyTarget() : GetTarget();
std::unique_lock<std::recursive_mutex> lock;
target.GetBreakpointList().GetListMutex(lock);
BreakpointIDList valid_bp_ids;
CommandObjectMultiwordBreakpoint::VerifyBreakpointOrLocationIDs(
command, target, result, &valid_bp_ids,
BreakpointName::Permissions::PermissionKinds::disablePerm);
if (result.Succeeded()) {
const size_t count = valid_bp_ids.GetSize();
for (size_t i = 0; i < count; ++i) {
BreakpointID cur_bp_id = valid_bp_ids.GetBreakpointIDAtIndex(i);
if (cur_bp_id.GetBreakpointID() != LLDB_INVALID_BREAK_ID) {
Breakpoint *bp =
target.GetBreakpointByID(cur_bp_id.GetBreakpointID()).get();
if (cur_bp_id.GetLocationID() != LLDB_INVALID_BREAK_ID) {
BreakpointLocation *location =
bp->FindLocationByID(cur_bp_id.GetLocationID()).get();
if (location)
location->GetLocationOptions().CopyOverSetOptions(
m_bp_opts.GetBreakpointOptions());
} else {
bp->GetOptions().CopyOverSetOptions(
m_bp_opts.GetBreakpointOptions());
}
}
}
}
}
private:
BreakpointOptionGroup m_bp_opts;
BreakpointDummyOptionGroup m_dummy_opts;
OptionGroupOptions m_options;
};
// CommandObjectBreakpointEnable
#pragma mark Enable
class CommandObjectBreakpointEnable : public CommandObjectParsed {
public:
CommandObjectBreakpointEnable(CommandInterpreter &interpreter)
: CommandObjectParsed(interpreter, "enable",
"Enable the specified disabled breakpoint(s). If "
"no breakpoints are specified, enable all of them.",
nullptr) {
CommandObject::AddIDsArgumentData(eBreakpointArgs);
}
~CommandObjectBreakpointEnable() override = default;
void
HandleArgumentCompletion(CompletionRequest &request,
OptionElementVector &opt_element_vector) override {
lldb_private::CommandCompletions::InvokeCommonCompletionCallbacks(
GetCommandInterpreter(), lldb::eBreakpointCompletion, request, nullptr);
}
protected:
void DoExecute(Args &command, CommandReturnObject &result) override {
Target &target = GetTarget();
std::unique_lock<std::recursive_mutex> lock;
target.GetBreakpointList().GetListMutex(lock);
const BreakpointList &breakpoints = target.GetBreakpointList();
size_t num_breakpoints = breakpoints.GetSize();
if (num_breakpoints == 0) {
result.AppendError("no breakpoints exist to be enabled");
return;
}
if (command.empty()) {
// No breakpoint selected; enable all currently set breakpoints.
target.EnableAllowedBreakpoints();
result.AppendMessageWithFormat("All breakpoints enabled. (%" PRIu64
" breakpoints)\n",
(uint64_t)num_breakpoints);
result.SetStatus(eReturnStatusSuccessFinishNoResult);
} else {
// Particular breakpoint selected; enable that breakpoint.
BreakpointIDList valid_bp_ids;
CommandObjectMultiwordBreakpoint::VerifyBreakpointOrLocationIDs(
command, target, result, &valid_bp_ids,
BreakpointName::Permissions::PermissionKinds::disablePerm);
if (result.Succeeded()) {
int enable_count = 0;
int loc_count = 0;
const size_t count = valid_bp_ids.GetSize();
for (size_t i = 0; i < count; ++i) {
BreakpointID cur_bp_id = valid_bp_ids.GetBreakpointIDAtIndex(i);
if (cur_bp_id.GetBreakpointID() != LLDB_INVALID_BREAK_ID) {
Breakpoint *breakpoint =
target.GetBreakpointByID(cur_bp_id.GetBreakpointID()).get();
if (cur_bp_id.GetLocationID() != LLDB_INVALID_BREAK_ID) {
BreakpointLocation *location =
breakpoint->FindLocationByID(cur_bp_id.GetLocationID()).get();
if (location) {
if (llvm::Error error = location->SetEnabled(true))
result.AppendErrorWithFormatv(
"failed to enable breakpoint location: {0}",
llvm::fmt_consume(std::move(error)));
++loc_count;
}
} else {
breakpoint->SetEnabled(true);
++enable_count;
}
}
}
result.AppendMessageWithFormat("%d breakpoints enabled.\n",
enable_count + loc_count);
result.SetStatus(eReturnStatusSuccessFinishNoResult);
}
}
}
};
// CommandObjectBreakpointDisable
#pragma mark Disable
class CommandObjectBreakpointDisable : public CommandObjectParsed {
public:
CommandObjectBreakpointDisable(CommandInterpreter &interpreter)
: CommandObjectParsed(
interpreter, "breakpoint disable",
"Disable the specified breakpoint(s) without deleting "
"them. If none are specified, disable all "
"breakpoints.",
nullptr) {
SetHelpLong(
"Disable the specified breakpoint(s) without deleting them. \
If none are specified, disable all breakpoints."
R"(
)"
"Note: disabling a breakpoint will cause none of its locations to be hit \
regardless of whether individual locations are enabled or disabled. After the sequence:"
R"(
(lldb) break disable 1
(lldb) break enable 1.1
execution will NOT stop at location 1.1. To achieve that, type:
(lldb) break disable 1.*
(lldb) break enable 1.1
)"
"The first command disables all locations for breakpoint 1, \
the second re-enables the first location.");
CommandObject::AddIDsArgumentData(eBreakpointArgs);
}
~CommandObjectBreakpointDisable() override = default;
void
HandleArgumentCompletion(CompletionRequest &request,
OptionElementVector &opt_element_vector) override {
lldb_private::CommandCompletions::InvokeCommonCompletionCallbacks(
GetCommandInterpreter(), lldb::eBreakpointCompletion, request, nullptr);
}
protected:
void DoExecute(Args &command, CommandReturnObject &result) override {
Target &target = GetTarget();
std::unique_lock<std::recursive_mutex> lock;
target.GetBreakpointList().GetListMutex(lock);
const BreakpointList &breakpoints = target.GetBreakpointList();
size_t num_breakpoints = breakpoints.GetSize();
if (num_breakpoints == 0) {
result.AppendError("no breakpoints exist to be disabled");
return;
}
if (command.empty()) {
// No breakpoint selected; disable all currently set breakpoints.
target.DisableAllowedBreakpoints();
result.AppendMessageWithFormat("All breakpoints disabled. (%" PRIu64
" breakpoints)\n",
(uint64_t)num_breakpoints);
result.SetStatus(eReturnStatusSuccessFinishNoResult);
} else {
// Particular breakpoint selected; disable that breakpoint.
BreakpointIDList valid_bp_ids;
CommandObjectMultiwordBreakpoint::VerifyBreakpointOrLocationIDs(
command, target, result, &valid_bp_ids,
BreakpointName::Permissions::PermissionKinds::disablePerm);
if (result.Succeeded()) {
int disable_count = 0;
int loc_count = 0;
const size_t count = valid_bp_ids.GetSize();
for (size_t i = 0; i < count; ++i) {
BreakpointID cur_bp_id = valid_bp_ids.GetBreakpointIDAtIndex(i);
if (cur_bp_id.GetBreakpointID() != LLDB_INVALID_BREAK_ID) {
Breakpoint *breakpoint =
target.GetBreakpointByID(cur_bp_id.GetBreakpointID()).get();
if (cur_bp_id.GetLocationID() != LLDB_INVALID_BREAK_ID) {
BreakpointLocation *location =
breakpoint->FindLocationByID(cur_bp_id.GetLocationID()).get();
if (location) {
if (llvm::Error error = location->SetEnabled(false))
result.AppendErrorWithFormatv(
"failed to disable breakpoint location: {0}",
llvm::fmt_consume(std::move(error)));
++loc_count;
}
} else {
breakpoint->SetEnabled(false);
++disable_count;
}
}
}
result.AppendMessageWithFormat("%d breakpoints disabled.\n",
disable_count + loc_count);
result.SetStatus(eReturnStatusSuccessFinishNoResult);
}
}
}
};
// CommandObjectBreakpointList
#pragma mark List::CommandOptions
#define LLDB_OPTIONS_breakpoint_list
#include "CommandOptions.inc"
#pragma mark List
class CommandObjectBreakpointList : public CommandObjectParsed {
public:
CommandObjectBreakpointList(CommandInterpreter &interpreter)
: CommandObjectParsed(
interpreter, "breakpoint list",
"List some or all breakpoints at configurable levels of detail.") {
// Define the first (and only) variant of this arg.
AddSimpleArgumentList(eArgTypeBreakpointID, eArgRepeatOptional);
}
~CommandObjectBreakpointList() override = default;
Options *GetOptions() override { return &m_options; }
class CommandOptions : public Options {
public:
CommandOptions() = default;
~CommandOptions() override = default;
Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg,
ExecutionContext *execution_context) override {
Status error;
const int short_option = m_getopt_table[option_idx].val;
switch (short_option) {
case 'b':
m_level = lldb::eDescriptionLevelBrief;
break;
case 'D':
m_use_dummy = true;
break;
case 'f':
m_level = lldb::eDescriptionLevelFull;
break;
case 'v':
m_level = lldb::eDescriptionLevelVerbose;
break;
case 'i':
m_internal = true;
break;
default:
llvm_unreachable("Unimplemented option");
}
return error;
}
void OptionParsingStarting(ExecutionContext *execution_context) override {
m_level = lldb::eDescriptionLevelFull;
m_internal = false;
m_use_dummy = false;
}
llvm::ArrayRef<OptionDefinition> GetDefinitions() override {
return llvm::ArrayRef(g_breakpoint_list_options);
}
// Instance variables to hold the values for command options.
lldb::DescriptionLevel m_level = lldb::eDescriptionLevelBrief;
bool m_internal;
bool m_use_dummy = false;
};
protected:
void DoExecute(Args &command, CommandReturnObject &result) override {
Target &target = m_options.m_use_dummy ? GetDummyTarget() : GetTarget();
const BreakpointList &breakpoints =
target.GetBreakpointList(m_options.m_internal);
std::unique_lock<std::recursive_mutex> lock;
target.GetBreakpointList(m_options.m_internal).GetListMutex(lock);
size_t num_breakpoints = breakpoints.GetSize();
if (num_breakpoints == 0) {
result.AppendMessage("No breakpoints currently set.");
result.SetStatus(eReturnStatusSuccessFinishNoResult);
return;
}
Stream &output_stream = result.GetOutputStream();
if (command.empty()) {
// No breakpoint selected; show info about all currently set breakpoints.
result.AppendMessage("Current breakpoints:");
for (size_t i = 0; i < num_breakpoints; ++i) {
Breakpoint *breakpoint = breakpoints.GetBreakpointAtIndex(i).get();
if (breakpoint->AllowList())
AddBreakpointDescription(&output_stream, breakpoint,
m_options.m_level);
}
result.SetStatus(eReturnStatusSuccessFinishNoResult);
} else {
// Particular breakpoints selected; show info about that breakpoint.
BreakpointIDList valid_bp_ids;
CommandObjectMultiwordBreakpoint::VerifyBreakpointOrLocationIDs(
command, target, result, &valid_bp_ids,
BreakpointName::Permissions::PermissionKinds::listPerm);
if (result.Succeeded()) {
for (size_t i = 0; i < valid_bp_ids.GetSize(); ++i) {
BreakpointID cur_bp_id = valid_bp_ids.GetBreakpointIDAtIndex(i);
Breakpoint *breakpoint =
target.GetBreakpointByID(cur_bp_id.GetBreakpointID()).get();
AddBreakpointDescription(&output_stream, breakpoint,
m_options.m_level);
}
result.SetStatus(eReturnStatusSuccessFinishNoResult);
} else {
result.AppendError("invalid breakpoint ID");
}
}
}
private:
CommandOptions m_options;
};
// CommandObjectBreakpointClear
#pragma mark Clear::CommandOptions
#define LLDB_OPTIONS_breakpoint_clear
#include "CommandOptions.inc"
#pragma mark Clear
class CommandObjectBreakpointClear : public CommandObjectParsed {
public:
enum BreakpointClearType { eClearTypeInvalid, eClearTypeFileAndLine };
CommandObjectBreakpointClear(CommandInterpreter &interpreter)
: CommandObjectParsed(interpreter, "breakpoint clear",
"Delete or disable breakpoints matching the "
"specified source file and line.",
"breakpoint clear <cmd-options>") {}
~CommandObjectBreakpointClear() override = default;
Options *GetOptions() override { return &m_options; }
class CommandOptions : public Options {
public:
CommandOptions() = default;
~CommandOptions() override = default;
Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg,
ExecutionContext *execution_context) override {
Status error;
const int short_option = m_getopt_table[option_idx].val;
switch (short_option) {
case 'f':
m_filename.assign(std::string(option_arg));
break;
case 'l':
option_arg.getAsInteger(0, m_line_num);
break;
default:
llvm_unreachable("Unimplemented option");
}
return error;
}
void OptionParsingStarting(ExecutionContext *execution_context) override {
m_filename.clear();
m_line_num = 0;
}
llvm::ArrayRef<OptionDefinition> GetDefinitions() override {
return llvm::ArrayRef(g_breakpoint_clear_options);
}
// Instance variables to hold the values for command options.
std::string m_filename;
uint32_t m_line_num = 0;
};
protected:
void DoExecute(Args &command, CommandReturnObject &result) override {
Target &target = GetTarget();
// The following are the various types of breakpoints that could be
// cleared:
// 1). -f -l (clearing breakpoint by source location)
BreakpointClearType break_type = eClearTypeInvalid;
if (m_options.m_line_num != 0)
break_type = eClearTypeFileAndLine;
std::unique_lock<std::recursive_mutex> lock;
target.GetBreakpointList().GetListMutex(lock);
BreakpointList &breakpoints = target.GetBreakpointList();
size_t num_breakpoints = breakpoints.GetSize();
// Early return if there's no breakpoint at all.
if (num_breakpoints == 0) {
result.AppendError("breakpoint clear: no breakpoint cleared");
return;
}
// Find matching breakpoints and delete them.
// First create a copy of all the IDs.
std::vector<break_id_t> BreakIDs;
for (size_t i = 0; i < num_breakpoints; ++i)
BreakIDs.push_back(breakpoints.GetBreakpointAtIndex(i)->GetID());
int num_cleared = 0;
StreamString ss;
switch (break_type) {
case eClearTypeFileAndLine: // Breakpoint by source position
{
const ConstString filename(m_options.m_filename.c_str());
BreakpointLocationCollection loc_coll;
for (size_t i = 0; i < num_breakpoints; ++i) {
Breakpoint *bp = breakpoints.FindBreakpointByID(BreakIDs[i]).get();
if (bp->GetMatchingFileLine(filename, m_options.m_line_num, loc_coll)) {
// If the collection size is 0, it's a full match and we can just
// remove the breakpoint.
if (loc_coll.GetSize() == 0) {
bp->GetDescription(&ss, lldb::eDescriptionLevelBrief);
ss.EOL();
target.RemoveBreakpointByID(bp->GetID());
++num_cleared;
}
}
}
} break;
default:
break;
}
if (num_cleared > 0) {
Stream &output_stream = result.GetOutputStream();
output_stream.Printf("%d breakpoints cleared:\n", num_cleared);
output_stream << ss.GetString();
output_stream.EOL();
result.SetStatus(eReturnStatusSuccessFinishNoResult);
} else {
result.AppendError("breakpoint clear: no breakpoint cleared");
}
}
private:
CommandOptions m_options;
};
// CommandObjectBreakpointDelete
#define LLDB_OPTIONS_breakpoint_delete
#include "CommandOptions.inc"
#pragma mark Delete
class CommandObjectBreakpointDelete : public CommandObjectParsed {
public:
CommandObjectBreakpointDelete(CommandInterpreter &interpreter)
: CommandObjectParsed(interpreter, "breakpoint delete",
"Delete the specified breakpoint(s). If no "
"breakpoints are specified, delete them all.",
nullptr) {
CommandObject::AddIDsArgumentData(eBreakpointArgs);
}
~CommandObjectBreakpointDelete() override = default;
void
HandleArgumentCompletion(CompletionRequest &request,
OptionElementVector &opt_element_vector) override {
lldb_private::CommandCompletions::InvokeCommonCompletionCallbacks(
GetCommandInterpreter(), lldb::eBreakpointCompletion, request, nullptr);
}
Options *GetOptions() override { return &m_options; }
class CommandOptions : public Options {
public:
CommandOptions() = default;
~CommandOptions() override = default;
Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg,
ExecutionContext *execution_context) override {
Status error;
const int short_option = m_getopt_table[option_idx].val;
switch (short_option) {
case 'f':
m_force = true;
break;
case 'D':
m_use_dummy = true;
break;
case 'd':
m_delete_disabled = true;
break;
default:
llvm_unreachable("Unimplemented option");
}
return error;
}
void OptionParsingStarting(ExecutionContext *execution_context) override {
m_use_dummy = false;
m_force = false;
m_delete_disabled = false;
}
llvm::ArrayRef<OptionDefinition> GetDefinitions() override {
return llvm::ArrayRef(g_breakpoint_delete_options);
}
// Instance variables to hold the values for command options.
bool m_use_dummy = false;
bool m_force = false;
bool m_delete_disabled = false;
};
protected:
void DoExecute(Args &command, CommandReturnObject &result) override {
Target &target = m_options.m_use_dummy ? GetDummyTarget() : GetTarget();
result.Clear();
std::unique_lock<std::recursive_mutex> lock;
target.GetBreakpointList().GetListMutex(lock);
BreakpointList &breakpoints = target.GetBreakpointList();
size_t num_breakpoints = breakpoints.GetSize();
if (num_breakpoints == 0) {
result.AppendError("no breakpoints exist to be deleted");
return;
}
// Handle the delete all breakpoints case:
if (command.empty() && !m_options.m_delete_disabled) {
if (!m_options.m_force &&
!m_interpreter.Confirm(
"About to delete all breakpoints, do you want to do that?",
true)) {
result.AppendMessage("Operation cancelled...");
} else {
target.RemoveAllowedBreakpoints();
result.AppendMessageWithFormat(
"All breakpoints removed. (%" PRIu64 " breakpoint%s)\n",
(uint64_t)num_breakpoints, num_breakpoints > 1 ? "s" : "");
}
result.SetStatus(eReturnStatusSuccessFinishNoResult);
return;
}
// Either we have some kind of breakpoint specification(s),
// or we are handling "break disable --deleted". Gather the list
// of breakpoints to delete here, the we'll delete them below.
BreakpointIDList valid_bp_ids;
if (m_options.m_delete_disabled) {
BreakpointIDList excluded_bp_ids;
if (!command.empty()) {
CommandObjectMultiwordBreakpoint::VerifyBreakpointOrLocationIDs(
command, target, result, &excluded_bp_ids,
BreakpointName::Permissions::PermissionKinds::deletePerm);
if (!result.Succeeded())
return;
}
for (auto breakpoint_sp : breakpoints.Breakpoints()) {
if (!breakpoint_sp->IsEnabled() && breakpoint_sp->AllowDelete()) {
BreakpointID bp_id(breakpoint_sp->GetID());
if (!excluded_bp_ids.Contains(bp_id))
valid_bp_ids.AddBreakpointID(bp_id);
}
}
if (valid_bp_ids.GetSize() == 0) {
result.AppendError("no disabled breakpoints");
return;
}
} else {
CommandObjectMultiwordBreakpoint::VerifyBreakpointOrLocationIDs(
command, target, result, &valid_bp_ids,
BreakpointName::Permissions::PermissionKinds::deletePerm);
if (!result.Succeeded())
return;
}
int delete_count = 0;
int disable_count = 0;
const size_t count = valid_bp_ids.GetSize();
for (size_t i = 0; i < count; ++i) {
BreakpointID cur_bp_id = valid_bp_ids.GetBreakpointIDAtIndex(i);
if (cur_bp_id.GetBreakpointID() != LLDB_INVALID_BREAK_ID) {
if (cur_bp_id.GetLocationID() != LLDB_INVALID_BREAK_ID) {
Breakpoint *breakpoint =
target.GetBreakpointByID(cur_bp_id.GetBreakpointID()).get();
BreakpointLocation *location =
breakpoint->FindLocationByID(cur_bp_id.GetLocationID()).get();
// It makes no sense to try to delete individual locations, so we
// disable them instead.
if (location) {
if (llvm::Error error = location->SetEnabled(false))
result.AppendErrorWithFormatv(
"failed to disable breakpoint location: {0}",
llvm::fmt_consume(std::move(error)));
++disable_count;
}
} else {
target.RemoveBreakpointByID(cur_bp_id.GetBreakpointID());
++delete_count;
}
}
}
result.AppendMessageWithFormat(
"%d breakpoints deleted; %d breakpoint locations disabled.\n",
delete_count, disable_count);
result.SetStatus(eReturnStatusSuccessFinishNoResult);
}
private:
CommandOptions m_options;
};
// CommandObjectBreakpointName
#define LLDB_OPTIONS_breakpoint_name
#include "CommandOptions.inc"
class BreakpointNameOptionGroup : public OptionGroup {
public:
BreakpointNameOptionGroup()
: m_breakpoint(LLDB_INVALID_BREAK_ID), m_use_dummy(false) {}
~BreakpointNameOptionGroup() override = default;
llvm::ArrayRef<OptionDefinition> GetDefinitions() override {
return llvm::ArrayRef(g_breakpoint_name_options);
}
Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg,
ExecutionContext *execution_context) override {
Status error;
const int short_option = g_breakpoint_name_options[option_idx].short_option;
const char *long_option = g_breakpoint_name_options[option_idx].long_option;
switch (short_option) {
case 'N':
if (BreakpointID::StringIsBreakpointName(option_arg, error) &&
error.Success())
m_name.SetValueFromString(option_arg);
break;
case 'B':
if (m_breakpoint.SetValueFromString(option_arg).Fail())
error = Status::FromError(
CreateOptionParsingError(option_arg, short_option, long_option,
g_int_parsing_error_message));
break;
case 'D':
if (m_use_dummy.SetValueFromString(option_arg).Fail())
error = Status::FromError(
CreateOptionParsingError(option_arg, short_option, long_option,
g_bool_parsing_error_message));
break;
case 'H':
m_help_string.SetValueFromString(option_arg);
break;
default:
llvm_unreachable("Unimplemented option");
}
return error;
}
void OptionParsingStarting(ExecutionContext *execution_context) override {
m_name.Clear();
m_breakpoint.Clear();
m_use_dummy.Clear();
m_use_dummy.SetDefaultValue(false);
m_help_string.Clear();
}
OptionValueString m_name;
OptionValueUInt64 m_breakpoint;
OptionValueBoolean m_use_dummy;
OptionValueString m_help_string;
};
#define LLDB_OPTIONS_breakpoint_access
#include "CommandOptions.inc"
class BreakpointAccessOptionGroup : public OptionGroup {
public:
BreakpointAccessOptionGroup() = default;
~BreakpointAccessOptionGroup() override = default;
llvm::ArrayRef<OptionDefinition> GetDefinitions() override {
return llvm::ArrayRef(g_breakpoint_access_options);
}
Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg,
ExecutionContext *execution_context) override {
Status error;
const int short_option =
g_breakpoint_access_options[option_idx].short_option;
const char *long_option =
g_breakpoint_access_options[option_idx].long_option;
switch (short_option) {
case 'L': {
bool value, success;
value = OptionArgParser::ToBoolean(option_arg, false, &success);
if (success) {
m_permissions.SetAllowList(value);
} else
error = Status::FromError(
CreateOptionParsingError(option_arg, short_option, long_option,
g_bool_parsing_error_message));
} break;
case 'A': {
bool value, success;
value = OptionArgParser::ToBoolean(option_arg, false, &success);
if (success) {
m_permissions.SetAllowDisable(value);
} else
error = Status::FromError(
CreateOptionParsingError(option_arg, short_option, long_option,
g_bool_parsing_error_message));
} break;
case 'D': {
bool value, success;
value = OptionArgParser::ToBoolean(option_arg, false, &success);
if (success) {
m_permissions.SetAllowDelete(value);
} else
error = Status::FromError(
CreateOptionParsingError(option_arg, short_option, long_option,
g_bool_parsing_error_message));
} break;
default:
llvm_unreachable("Unimplemented option");
}
return error;
}
void OptionParsingStarting(ExecutionContext *execution_context) override {}
const BreakpointName::Permissions &GetPermissions() const {
return m_permissions;
}
BreakpointName::Permissions m_permissions;
};
class CommandObjectBreakpointNameConfigure : public CommandObjectParsed {
public:
CommandObjectBreakpointNameConfigure(CommandInterpreter &interpreter)
: CommandObjectParsed(
interpreter, "configure",
"Configure the options for the breakpoint"
" name provided. "
"If you provide a breakpoint id, the options will be copied from "
"the breakpoint, otherwise only the options specified will be set "
"on the name.",
"breakpoint name configure <command-options> "
"<breakpoint-name-list>") {
AddSimpleArgumentList(eArgTypeBreakpointName, eArgRepeatOptional);
m_option_group.Append(&m_bp_opts, LLDB_OPT_SET_ALL, LLDB_OPT_SET_1);
m_option_group.Append(&m_access_options, LLDB_OPT_SET_ALL,
LLDB_OPT_SET_ALL);
m_option_group.Append(&m_bp_id, LLDB_OPT_SET_2 | LLDB_OPT_SET_4,
LLDB_OPT_SET_ALL);
m_option_group.Finalize();
}
~CommandObjectBreakpointNameConfigure() override = default;
Options *GetOptions() override { return &m_option_group; }
protected:
void DoExecute(Args &command, CommandReturnObject &result) override {
const size_t argc = command.GetArgumentCount();
if (argc == 0) {
result.AppendError("no names provided");
return;
}
Target &target = GetTarget();
std::unique_lock<std::recursive_mutex> lock;
target.GetBreakpointList().GetListMutex(lock);
// Make a pass through first to see that all the names are legal.
for (auto &entry : command.entries()) {
Status error;
if (!BreakpointID::StringIsBreakpointName(entry.ref(), error)) {
result.AppendErrorWithFormat("Invalid breakpoint name: %s - %s",
entry.c_str(), error.AsCString());
return;
}
}
// Now configure them, we already pre-checked the names so we don't need to
// check the error:
BreakpointSP bp_sp;
if (m_bp_id.m_breakpoint.OptionWasSet()) {
lldb::break_id_t bp_id =
m_bp_id.m_breakpoint.GetValueAs<uint64_t>().value_or(0);
bp_sp = target.GetBreakpointByID(bp_id);
if (!bp_sp) {
result.AppendErrorWithFormatv("Could not find specified breakpoint {0}",
bp_id);
return;
}
}
Status error;
for (auto &entry : command.entries()) {
ConstString name(entry.c_str());
BreakpointName *bp_name = target.FindBreakpointName(name, true, error);
if (!bp_name)
continue;
if (m_bp_id.m_help_string.OptionWasSet())
bp_name->SetHelp(m_bp_id.m_help_string.GetValueAs<llvm::StringRef>()
.value_or("")
.str()
.c_str());
if (bp_sp)
target.ConfigureBreakpointName(*bp_name, bp_sp->GetOptions(),
m_access_options.GetPermissions());
else
target.ConfigureBreakpointName(*bp_name,
m_bp_opts.GetBreakpointOptions(),
m_access_options.GetPermissions());
}
}
private:
BreakpointNameOptionGroup m_bp_id; // Only using the id part of this.
BreakpointOptionGroup m_bp_opts;
BreakpointAccessOptionGroup m_access_options;
OptionGroupOptions m_option_group;
};
class CommandObjectBreakpointNameAdd : public CommandObjectParsed {
public:
CommandObjectBreakpointNameAdd(CommandInterpreter &interpreter)
: CommandObjectParsed(
interpreter, "add", "Add a name to the breakpoints provided.",
"breakpoint name add <command-options> <breakpoint-id-list>") {
AddSimpleArgumentList(eArgTypeBreakpointID, eArgRepeatOptional);
m_option_group.Append(&m_name_options, LLDB_OPT_SET_1, LLDB_OPT_SET_ALL);
m_option_group.Finalize();
}
~CommandObjectBreakpointNameAdd() override = default;
void
HandleArgumentCompletion(CompletionRequest &request,
OptionElementVector &opt_element_vector) override {
lldb_private::CommandCompletions::InvokeCommonCompletionCallbacks(
GetCommandInterpreter(), lldb::eBreakpointCompletion, request, nullptr);
}
Options *GetOptions() override { return &m_option_group; }
protected:
void DoExecute(Args &command, CommandReturnObject &result) override {
if (!m_name_options.m_name.OptionWasSet()) {
result.AppendError("no name option provided");
return;
}
Target &target =
m_name_options.m_use_dummy ? GetDummyTarget() : GetTarget();
std::unique_lock<std::recursive_mutex> lock;
target.GetBreakpointList().GetListMutex(lock);
const BreakpointList &breakpoints = target.GetBreakpointList();
size_t num_breakpoints = breakpoints.GetSize();
if (num_breakpoints == 0) {
result.AppendError("no breakpoints, cannot add names");
return;
}
// Particular breakpoint selected; disable that breakpoint.
BreakpointIDList valid_bp_ids;
CommandObjectMultiwordBreakpoint::VerifyBreakpointIDs(
command, target, result, &valid_bp_ids,
BreakpointName::Permissions::PermissionKinds::listPerm);
if (result.Succeeded()) {
if (valid_bp_ids.GetSize() == 0) {
result.AppendError("no breakpoints specified, cannot add names");
return;
}
size_t num_valid_ids = valid_bp_ids.GetSize();
const char *bp_name = m_name_options.m_name.GetCurrentValue();
Status error; // This error reports illegal names, but we've already
// checked that, so we don't need to check it again here.
for (size_t index = 0; index < num_valid_ids; index++) {
lldb::break_id_t bp_id =
valid_bp_ids.GetBreakpointIDAtIndex(index).GetBreakpointID();
BreakpointSP bp_sp = breakpoints.FindBreakpointByID(bp_id);
target.AddNameToBreakpoint(bp_sp, bp_name, error);
}
}
}
private:
BreakpointNameOptionGroup m_name_options;
OptionGroupOptions m_option_group;
};
class CommandObjectBreakpointNameDelete : public CommandObjectParsed {
public:
CommandObjectBreakpointNameDelete(CommandInterpreter &interpreter)
: CommandObjectParsed(
interpreter, "delete",
"Delete a name from the breakpoints provided.",
"breakpoint name delete <command-options> <breakpoint-id-list>") {
AddSimpleArgumentList(eArgTypeBreakpointID, eArgRepeatOptional);
m_option_group.Append(&m_name_options, LLDB_OPT_SET_1, LLDB_OPT_SET_ALL);
m_option_group.Finalize();
}
~CommandObjectBreakpointNameDelete() override = default;
void
HandleArgumentCompletion(CompletionRequest &request,
OptionElementVector &opt_element_vector) override {
lldb_private::CommandCompletions::InvokeCommonCompletionCallbacks(
GetCommandInterpreter(), lldb::eBreakpointCompletion, request, nullptr);
}
Options *GetOptions() override { return &m_option_group; }
protected:
void DoExecute(Args &command, CommandReturnObject &result) override {
if (!m_name_options.m_name.OptionWasSet()) {
result.AppendError("no name option provided");
return;
}
Target &target =
m_name_options.m_use_dummy ? GetDummyTarget() : GetTarget();
std::unique_lock<std::recursive_mutex> lock;
target.GetBreakpointList().GetListMutex(lock);
const BreakpointList &breakpoints = target.GetBreakpointList();
size_t num_breakpoints = breakpoints.GetSize();
if (num_breakpoints == 0) {
result.AppendError("no breakpoints, cannot delete names");
return;
}
// Particular breakpoint selected; disable that breakpoint.
BreakpointIDList valid_bp_ids;
CommandObjectMultiwordBreakpoint::VerifyBreakpointIDs(
command, target, result, &valid_bp_ids,
BreakpointName::Permissions::PermissionKinds::deletePerm);
if (result.Succeeded()) {
if (valid_bp_ids.GetSize() == 0) {
result.AppendError("no breakpoints specified, cannot delete names");
return;
}
ConstString bp_name(m_name_options.m_name.GetCurrentValue());
size_t num_valid_ids = valid_bp_ids.GetSize();
for (size_t index = 0; index < num_valid_ids; index++) {
lldb::break_id_t bp_id =
valid_bp_ids.GetBreakpointIDAtIndex(index).GetBreakpointID();
BreakpointSP bp_sp = breakpoints.FindBreakpointByID(bp_id);
target.RemoveNameFromBreakpoint(bp_sp, bp_name);
}
}
}
private:
BreakpointNameOptionGroup m_name_options;
OptionGroupOptions m_option_group;
};
class CommandObjectBreakpointNameList : public CommandObjectParsed {
public:
CommandObjectBreakpointNameList(CommandInterpreter &interpreter)
: CommandObjectParsed(interpreter, "list",
"List either the names for a breakpoint or info "
"about a given name. With no arguments, lists all "
"names",
"breakpoint name list <command-options>") {
m_option_group.Append(&m_name_options, LLDB_OPT_SET_3, LLDB_OPT_SET_ALL);
m_option_group.Finalize();
}
~CommandObjectBreakpointNameList() override = default;
Options *GetOptions() override { return &m_option_group; }
protected:
void DoExecute(Args &command, CommandReturnObject &result) override {
Target &target =
m_name_options.m_use_dummy ? GetDummyTarget() : GetTarget();
std::vector<std::string> name_list;
if (command.empty()) {
target.GetBreakpointNames(name_list);
} else {
for (const Args::ArgEntry &arg : command) {
name_list.push_back(arg.c_str());
}
}
if (name_list.empty()) {
result.AppendMessage("No breakpoint names found.");
} else {
for (const std::string &name_str : name_list) {
const char *name = name_str.c_str();
// First print out the options for the name:
Status error;
BreakpointName *bp_name =
target.FindBreakpointName(ConstString(name), false, error);
if (bp_name) {
StreamString s;
result.AppendMessageWithFormat("Name: %s\n", name);
if (bp_name->GetDescription(&s, eDescriptionLevelFull)) {
result.AppendMessage(s.GetString());
}
std::unique_lock<std::recursive_mutex> lock;
target.GetBreakpointList().GetListMutex(lock);
BreakpointList &breakpoints = target.GetBreakpointList();
bool any_set = false;
for (BreakpointSP bp_sp : breakpoints.Breakpoints()) {
if (bp_sp->MatchesName(name)) {
StreamString s;
any_set = true;
bp_sp->GetDescription(&s, eDescriptionLevelBrief);
s.EOL();
result.AppendMessage(s.GetString());
}
}
if (!any_set)
result.AppendMessage("No breakpoints using this name.");
} else {
result.AppendMessageWithFormat("Name: %s not found.\n", name);
}
}
}
}
private:
BreakpointNameOptionGroup m_name_options;
OptionGroupOptions m_option_group;
};
// CommandObjectBreakpointName
class CommandObjectBreakpointName : public CommandObjectMultiword {
public:
CommandObjectBreakpointName(CommandInterpreter &interpreter)
: CommandObjectMultiword(
interpreter, "name", "Commands to manage breakpoint names") {
SetHelpLong(
R"(
Breakpoint names provide a general tagging mechanism for breakpoints. Each
breakpoint name can be added to any number of breakpoints, and each breakpoint
can have any number of breakpoint names attached to it. For instance:
(lldb) break name add -N MyName 1-10
adds the name MyName to breakpoints 1-10, and:
(lldb) break set -n myFunc -N Name1 -N Name2
adds two names to the breakpoint set at myFunc.
They have a number of interrelated uses:
1) They provide a stable way to refer to a breakpoint (e.g. in another
breakpoint's action). Using the breakpoint ID for this purpose is fragile, since
it depends on the order of breakpoint creation. Giving a name to the breakpoint
you want to act on, and then referring to it by name, is more robust:
(lldb) break set -n myFunc -N BKPT1
(lldb) break set -n myOtherFunc -C "break disable BKPT1"
2) This is actually just a specific use of a more general feature of breakpoint
names. The <breakpt-id-list> argument type used to specify one or more
breakpoints in most of the commands that deal with breakpoints also accepts
breakpoint names. That allows you to refer to one breakpoint in a stable
manner, but also makes them a convenient grouping mechanism, allowing you to
easily act on a group of breakpoints by using their name, for instance disabling
them all in one action:
(lldb) break set -n myFunc -N Group1
(lldb) break set -n myOtherFunc -N Group1
(lldb) break disable Group1
3) But breakpoint names are also entities in their own right, and can be
configured with all the modifiable attributes of a breakpoint. Then when you
add a breakpoint name to a breakpoint, the breakpoint will be configured to
match the state of the breakpoint name. The link between the name and the
breakpoints sharing it remains live, so if you change the configuration on the
name, it will also change the configurations on the breakpoints:
(lldb) break name configure -i 10 IgnoreSome
(lldb) break set -n myFunc -N IgnoreSome
(lldb) break list IgnoreSome
2: name = 'myFunc', locations = 0 (pending) Options: ignore: 10 enabled
Names:
IgnoreSome
(lldb) break name configure -i 5 IgnoreSome
(lldb) break list IgnoreSome
2: name = 'myFunc', locations = 0 (pending) Options: ignore: 5 enabled
Names:
IgnoreSome
Options that are not configured on a breakpoint name don't affect the value of
those options on the breakpoints they are added to. So for instance, if Name1
has the -i option configured and Name2 the -c option, adding both names to a
breakpoint will set the -i option from Name1 and the -c option from Name2, and
the other options will be unaltered.
If you add multiple names to a breakpoint which have configured values for
the same option, the last name added's value wins.
The "liveness" of these settings is one way, from name to breakpoint.
If you use "break modify" to change an option that is also configured on a name
which that breakpoint has, the "break modify" command will override the setting
for that breakpoint, but won't change the value configured in the name or on the
other breakpoints sharing that name.
4) Breakpoint names are also a convenient way to copy option sets from one
breakpoint to another. Using the -B option to "breakpoint name configure" makes
a name configured with all the options of the original breakpoint. Then
adding that name to another breakpoint copies over all the values from the
original breakpoint to the new one.
5) You can also use breakpoint names to hide breakpoints from the breakpoint
operations that act on all breakpoints: "break delete", "break disable" and
"break list". You do that by specifying a "false" value for the
--allow-{list,delete,disable} options to "breakpoint name configure" and then
adding that name to a breakpoint.
This won't keep the breakpoint from being deleted or disabled if you refer to it
specifically by ID. The point of the feature is to make sure users don't
inadvertently delete or disable useful breakpoints (e.g. ones an IDE is using
for its own purposes) as part of a "delete all" or "disable all" operation. The
list hiding is because it's confusing for people to see breakpoints they
didn't set.
)");
CommandObjectSP add_command_object(
new CommandObjectBreakpointNameAdd(interpreter));
CommandObjectSP delete_command_object(
new CommandObjectBreakpointNameDelete(interpreter));
CommandObjectSP list_command_object(
new CommandObjectBreakpointNameList(interpreter));
CommandObjectSP configure_command_object(
new CommandObjectBreakpointNameConfigure(interpreter));
LoadSubCommand("add", add_command_object);
LoadSubCommand("delete", delete_command_object);
LoadSubCommand("list", list_command_object);
LoadSubCommand("configure", configure_command_object);
}
~CommandObjectBreakpointName() override = default;
};
// CommandObjectBreakpointRead
#pragma mark Read::CommandOptions
#define LLDB_OPTIONS_breakpoint_read
#include "CommandOptions.inc"
#pragma mark Read
class CommandObjectBreakpointRead : public CommandObjectParsed {
public:
CommandObjectBreakpointRead(CommandInterpreter &interpreter)
: CommandObjectParsed(interpreter, "breakpoint read",
"Read and set the breakpoints previously saved to "
"a file with \"breakpoint write\". ",
nullptr) {}
~CommandObjectBreakpointRead() override = default;
Options *GetOptions() override { return &m_options; }
class CommandOptions : public Options {
public:
CommandOptions() = default;
~CommandOptions() override = default;
Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg,
ExecutionContext *execution_context) override {
Status error;
const int short_option = m_getopt_table[option_idx].val;
const char *long_option =
m_getopt_table[option_idx].definition->long_option;
switch (short_option) {
case 'f':
m_filename.assign(std::string(option_arg));
break;
case 'N': {
Status name_error;
if (!BreakpointID::StringIsBreakpointName(llvm::StringRef(option_arg),
name_error)) {
error = Status::FromError(CreateOptionParsingError(
option_arg, short_option, long_option, name_error.AsCString()));
}
m_names.push_back(std::string(option_arg));
break;
}
default:
llvm_unreachable("Unimplemented option");
}
return error;
}
void OptionParsingStarting(ExecutionContext *execution_context) override {
m_filename.clear();
m_names.clear();
}
llvm::ArrayRef<OptionDefinition> GetDefinitions() override {
return llvm::ArrayRef(g_breakpoint_read_options);
}
void HandleOptionArgumentCompletion(
CompletionRequest &request, OptionElementVector &opt_element_vector,
int opt_element_index, CommandInterpreter &interpreter) override {
int opt_arg_pos = opt_element_vector[opt_element_index].opt_arg_pos;
int opt_defs_index = opt_element_vector[opt_element_index].opt_defs_index;
switch (GetDefinitions()[opt_defs_index].short_option) {
case 'f':
lldb_private::CommandCompletions::InvokeCommonCompletionCallbacks(
interpreter, lldb::eDiskFileCompletion, request, nullptr);
break;
case 'N':
std::optional<FileSpec> file_spec;
const llvm::StringRef dash_f("-f");
for (int arg_idx = 0; arg_idx < opt_arg_pos; arg_idx++) {
if (dash_f == request.GetParsedLine().GetArgumentAtIndex(arg_idx)) {
file_spec.emplace(
request.GetParsedLine().GetArgumentAtIndex(arg_idx + 1));
break;
}
}
if (!file_spec)
return;
FileSystem::Instance().Resolve(*file_spec);
Status error;
StructuredData::ObjectSP input_data_sp =
StructuredData::ParseJSONFromFile(*file_spec, error);
if (!error.Success())
return;
StructuredData::Array *bkpt_array = input_data_sp->GetAsArray();
if (!bkpt_array)
return;
const size_t num_bkpts = bkpt_array->GetSize();
for (size_t i = 0; i < num_bkpts; i++) {
StructuredData::ObjectSP bkpt_object_sp =
bkpt_array->GetItemAtIndex(i);
if (!bkpt_object_sp)
return;
StructuredData::Dictionary *bkpt_dict =
bkpt_object_sp->GetAsDictionary();
if (!bkpt_dict)
return;
StructuredData::ObjectSP bkpt_data_sp =
bkpt_dict->GetValueForKey(Breakpoint::GetSerializationKey());
if (!bkpt_data_sp)
return;
bkpt_dict = bkpt_data_sp->GetAsDictionary();
if (!bkpt_dict)
return;
StructuredData::Array *names_array;
if (!bkpt_dict->GetValueForKeyAsArray("Names", names_array))
return;
size_t num_names = names_array->GetSize();
for (size_t i = 0; i < num_names; i++) {
if (std::optional<llvm::StringRef> maybe_name =
names_array->GetItemAtIndexAsString(i))
request.TryCompleteCurrentArg(*maybe_name);
}
}
}
}
std::string m_filename;
std::vector<std::string> m_names;
};
protected:
void DoExecute(Args &command, CommandReturnObject &result) override {
Target &target = GetTarget();
std::unique_lock<std::recursive_mutex> lock;
target.GetBreakpointList().GetListMutex(lock);
FileSpec input_spec(m_options.m_filename);
FileSystem::Instance().Resolve(input_spec);
BreakpointIDList new_bps;
Status error = target.CreateBreakpointsFromFile(input_spec,
m_options.m_names, new_bps);
if (!error.Success()) {
result.AppendError(error.AsCString());
return;
}
Stream &output_stream = result.GetOutputStream();
size_t num_breakpoints = new_bps.GetSize();
if (num_breakpoints == 0) {
result.AppendMessage("No breakpoints added.");
} else {
// No breakpoint selected; show info about all currently set breakpoints.
result.AppendMessage("New breakpoints:");
for (size_t i = 0; i < num_breakpoints; ++i) {
BreakpointID bp_id = new_bps.GetBreakpointIDAtIndex(i);
Breakpoint *bp = target.GetBreakpointList()
.FindBreakpointByID(bp_id.GetBreakpointID())
.get();
if (bp)
bp->GetDescription(&output_stream, lldb::eDescriptionLevelInitial,
false);
}
}
}
private:
CommandOptions m_options;
};
// CommandObjectBreakpointWrite
#pragma mark Write::CommandOptions
#define LLDB_OPTIONS_breakpoint_write
#include "CommandOptions.inc"
#pragma mark Write
class CommandObjectBreakpointWrite : public CommandObjectParsed {
public:
CommandObjectBreakpointWrite(CommandInterpreter &interpreter)
: CommandObjectParsed(interpreter, "breakpoint write",
"Write the breakpoints listed to a file that can "
"be read in with \"breakpoint read\". "
"If given no arguments, writes all breakpoints.",
nullptr) {
CommandObject::AddIDsArgumentData(eBreakpointArgs);
}
~CommandObjectBreakpointWrite() override = default;
void
HandleArgumentCompletion(CompletionRequest &request,
OptionElementVector &opt_element_vector) override {
lldb_private::CommandCompletions::InvokeCommonCompletionCallbacks(
GetCommandInterpreter(), lldb::eBreakpointCompletion, request, nullptr);
}
Options *GetOptions() override { return &m_options; }
class CommandOptions : public Options {
public:
CommandOptions() = default;
~CommandOptions() override = default;
Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg,
ExecutionContext *execution_context) override {
Status error;
const int short_option = m_getopt_table[option_idx].val;
switch (short_option) {
case 'f':
m_filename.assign(std::string(option_arg));
break;
case 'a':
m_append = true;
break;
default:
llvm_unreachable("Unimplemented option");
}
return error;
}
void OptionParsingStarting(ExecutionContext *execution_context) override {
m_filename.clear();
m_append = false;
}
llvm::ArrayRef<OptionDefinition> GetDefinitions() override {
return llvm::ArrayRef(g_breakpoint_write_options);
}
// Instance variables to hold the values for command options.
std::string m_filename;
bool m_append = false;
};
protected:
void DoExecute(Args &command, CommandReturnObject &result) override {
Target &target = GetTarget();
std::unique_lock<std::recursive_mutex> lock;
target.GetBreakpointList().GetListMutex(lock);
BreakpointIDList valid_bp_ids;
if (!command.empty()) {
CommandObjectMultiwordBreakpoint::VerifyBreakpointIDs(
command, target, result, &valid_bp_ids,
BreakpointName::Permissions::PermissionKinds::listPerm);
if (!result.Succeeded()) {
result.SetStatus(eReturnStatusFailed);
return;
}
}
FileSpec file_spec(m_options.m_filename);
FileSystem::Instance().Resolve(file_spec);
Status error = target.SerializeBreakpointsToFile(file_spec, valid_bp_ids,
m_options.m_append);
if (!error.Success()) {
result.AppendErrorWithFormat("error serializing breakpoints: %s.",
error.AsCString());
}
}
private:
CommandOptions m_options;
};
// CommandObjectMultiwordBreakpoint
#pragma mark MultiwordBreakpoint
CommandObjectMultiwordBreakpoint::CommandObjectMultiwordBreakpoint(
CommandInterpreter &interpreter)
: CommandObjectMultiword(
interpreter, "breakpoint",
"Commands for operating on breakpoints (see 'help b' for shorthand.)",
"breakpoint <subcommand> [<command-options>]") {
CommandObjectSP list_command_object(
new CommandObjectBreakpointList(interpreter));
CommandObjectSP enable_command_object(
new CommandObjectBreakpointEnable(interpreter));
CommandObjectSP disable_command_object(
new CommandObjectBreakpointDisable(interpreter));
CommandObjectSP clear_command_object(
new CommandObjectBreakpointClear(interpreter));
CommandObjectSP delete_command_object(
new CommandObjectBreakpointDelete(interpreter));
CommandObjectSP set_command_object(
new CommandObjectBreakpointSet(interpreter));
CommandObjectSP add_command_object(
new CommandObjectBreakpointAdd(interpreter));
CommandObjectSP command_command_object(
new CommandObjectBreakpointCommand(interpreter));
CommandObjectSP modify_command_object(
new CommandObjectBreakpointModify(interpreter));
CommandObjectSP name_command_object(
new CommandObjectBreakpointName(interpreter));
CommandObjectSP write_command_object(
new CommandObjectBreakpointWrite(interpreter));
CommandObjectSP read_command_object(
new CommandObjectBreakpointRead(interpreter));
list_command_object->SetCommandName("breakpoint list");
enable_command_object->SetCommandName("breakpoint enable");
disable_command_object->SetCommandName("breakpoint disable");
clear_command_object->SetCommandName("breakpoint clear");
delete_command_object->SetCommandName("breakpoint delete");
set_command_object->SetCommandName("breakpoint set");
add_command_object->SetCommandName("breakpoint add");
command_command_object->SetCommandName("breakpoint command");
modify_command_object->SetCommandName("breakpoint modify");
name_command_object->SetCommandName("breakpoint name");
write_command_object->SetCommandName("breakpoint write");
read_command_object->SetCommandName("breakpoint read");
LoadSubCommand("list", list_command_object);
LoadSubCommand("enable", enable_command_object);
LoadSubCommand("disable", disable_command_object);
LoadSubCommand("clear", clear_command_object);
LoadSubCommand("delete", delete_command_object);
LoadSubCommand("set", set_command_object);
LoadSubCommand("add", add_command_object);
LoadSubCommand("command", command_command_object);
LoadSubCommand("modify", modify_command_object);
LoadSubCommand("name", name_command_object);
LoadSubCommand("write", write_command_object);
LoadSubCommand("read", read_command_object);
}
CommandObjectMultiwordBreakpoint::~CommandObjectMultiwordBreakpoint() = default;
void CommandObjectMultiwordBreakpoint::VerifyIDs(
Args &args, Target &target, bool allow_locations,
CommandReturnObject &result, BreakpointIDList *valid_ids,
BreakpointName::Permissions ::PermissionKinds purpose) {
// args can be strings representing 1). integers (for breakpoint ids)
// 2). the full breakpoint & location
// canonical representation
// 3). the word "to" or a hyphen,
// representing a range (in which case there
// had *better* be an entry both before &
// after of one of the first two types.
// 4). A breakpoint name
// If args is empty, we will use the last created breakpoint (if there is
// one.)
Args temp_args;
if (args.empty()) {
if (target.GetLastCreatedBreakpoint()) {
valid_ids->AddBreakpointID(BreakpointID(
target.GetLastCreatedBreakpoint()->GetID(), LLDB_INVALID_BREAK_ID));
result.SetStatus(eReturnStatusSuccessFinishNoResult);
} else {
result.AppendError(
"No breakpoint specified and no last created breakpoint.");
}
return;
}
// Create a new Args variable to use; copy any non-breakpoint-id-ranges stuff
// directly from the old ARGS to the new TEMP_ARGS. Do not copy breakpoint
// id range strings over; instead generate a list of strings for all the
// breakpoint ids in the range, and shove all of those breakpoint id strings
// into TEMP_ARGS.
if (llvm::Error err = BreakpointIDList::FindAndReplaceIDRanges(
args, &target, allow_locations, purpose, temp_args)) {
result.SetError(std::move(err));
return;
}
result.SetStatus(eReturnStatusSuccessFinishNoResult);
// NOW, convert the list of breakpoint id strings in TEMP_ARGS into an actual
// BreakpointIDList:
for (llvm::StringRef temp_arg : temp_args.GetArgumentArrayRef())
if (auto bp_id = BreakpointID::ParseCanonicalReference(temp_arg))
valid_ids->AddBreakpointID(*bp_id);
// At this point, all of the breakpoint ids that the user passed in have
// been converted to breakpoint IDs and put into valid_ids.
// Now that we've converted everything from args into a list of breakpoint
// ids, go through our tentative list of breakpoint id's and verify that
// they correspond to valid/currently set breakpoints.
const size_t count = valid_ids->GetSize();
for (size_t i = 0; i < count; ++i) {
BreakpointID cur_bp_id = valid_ids->GetBreakpointIDAtIndex(i);
Breakpoint *breakpoint =
target.GetBreakpointByID(cur_bp_id.GetBreakpointID()).get();
if (breakpoint != nullptr) {
lldb::break_id_t cur_loc_id = cur_bp_id.GetLocationID();
// GetLocationID returns 0 when the location isn't specified.
if (cur_loc_id != 0 && !breakpoint->FindLocationByID(cur_loc_id)) {
StreamString id_str;
BreakpointID::GetCanonicalReference(
&id_str, cur_bp_id.GetBreakpointID(), cur_bp_id.GetLocationID());
i = valid_ids->GetSize() + 1;
result.AppendErrorWithFormat(
"'%s' is not a currently valid breakpoint/location id.\n",
id_str.GetData());
}
} else {
i = valid_ids->GetSize() + 1;
result.AppendErrorWithFormat(
"'%d' is not a currently valid breakpoint ID.\n",
cur_bp_id.GetBreakpointID());
}
}
}