mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-12-12 18:02:43 +00:00
[lldb][NFCI] Remove CommandReturnObject from BreakpointIDList (#77858)
BreakpointIDList does not need to know about CommandReturnObject. BreakpointIDList::FindAndReplaceIDRanges is the last place that uses it in BreakpointIDList. Instead of passing in a CommandReturnObject, it now returns an llvm::Error. The callsite uses the Error to populate the CommandReturnObject as needed.
This commit is contained in:
parent
4618ef8cf5
commit
c8ef88c446
@ -12,12 +12,13 @@
|
||||
#include <utility>
|
||||
#include <vector>
|
||||
|
||||
|
||||
#include "lldb/lldb-enumerations.h"
|
||||
#include "lldb/Breakpoint/BreakpointID.h"
|
||||
#include "lldb/Breakpoint/BreakpointName.h"
|
||||
#include "lldb/lldb-enumerations.h"
|
||||
#include "lldb/lldb-private.h"
|
||||
|
||||
#include "llvm/Support/Error.h"
|
||||
|
||||
namespace lldb_private {
|
||||
|
||||
// class BreakpointIDList
|
||||
@ -54,11 +55,9 @@ public:
|
||||
static std::pair<llvm::StringRef, llvm::StringRef>
|
||||
SplitIDRangeExpression(llvm::StringRef in_string);
|
||||
|
||||
static void FindAndReplaceIDRanges(Args &old_args, Target *target,
|
||||
bool allow_locations,
|
||||
BreakpointName::Permissions
|
||||
::PermissionKinds purpose,
|
||||
CommandReturnObject &result,
|
||||
static llvm::Error
|
||||
FindAndReplaceIDRanges(Args &old_args, Target *target, bool allow_locations,
|
||||
BreakpointName::Permissions ::PermissionKinds purpose,
|
||||
Args &new_args);
|
||||
|
||||
private:
|
||||
|
@ -11,9 +11,9 @@
|
||||
|
||||
#include "lldb/Breakpoint/Breakpoint.h"
|
||||
#include "lldb/Breakpoint/BreakpointLocation.h"
|
||||
#include "lldb/Interpreter/CommandReturnObject.h"
|
||||
#include "lldb/Target/Target.h"
|
||||
#include "lldb/Utility/Args.h"
|
||||
#include "lldb/Utility/StreamString.h"
|
||||
|
||||
using namespace lldb;
|
||||
using namespace lldb_private;
|
||||
@ -93,12 +93,9 @@ bool BreakpointIDList::FindBreakpointID(const char *bp_id_str,
|
||||
// NEW_ARGS should be a copy of OLD_ARGS, with and ID range specifiers replaced
|
||||
// by the members of the range.
|
||||
|
||||
void BreakpointIDList::FindAndReplaceIDRanges(Args &old_args, Target *target,
|
||||
bool allow_locations,
|
||||
BreakpointName::Permissions
|
||||
::PermissionKinds purpose,
|
||||
CommandReturnObject &result,
|
||||
Args &new_args) {
|
||||
llvm::Error BreakpointIDList::FindAndReplaceIDRanges(
|
||||
Args &old_args, Target *target, bool allow_locations,
|
||||
BreakpointName::Permissions ::PermissionKinds purpose, Args &new_args) {
|
||||
llvm::StringRef range_from;
|
||||
llvm::StringRef range_to;
|
||||
llvm::StringRef current_arg;
|
||||
@ -109,11 +106,11 @@ void BreakpointIDList::FindAndReplaceIDRanges(Args &old_args, Target *target,
|
||||
|
||||
current_arg = old_args[i].ref();
|
||||
if (!allow_locations && current_arg.contains('.')) {
|
||||
result.AppendErrorWithFormat(
|
||||
new_args.Clear();
|
||||
return llvm::createStringError(
|
||||
llvm::inconvertibleErrorCode(),
|
||||
"Breakpoint locations not allowed, saw location: %s.",
|
||||
current_arg.str().c_str());
|
||||
new_args.Clear();
|
||||
return;
|
||||
}
|
||||
|
||||
Status error;
|
||||
@ -125,8 +122,8 @@ void BreakpointIDList::FindAndReplaceIDRanges(Args &old_args, Target *target,
|
||||
} else if (BreakpointID::StringIsBreakpointName(current_arg, error)) {
|
||||
if (!error.Success()) {
|
||||
new_args.Clear();
|
||||
result.AppendError(error.AsCString());
|
||||
return;
|
||||
return llvm::createStringError(llvm::inconvertibleErrorCode(),
|
||||
error.AsCString());
|
||||
} else
|
||||
names_found.insert(std::string(current_arg));
|
||||
} else if ((i + 2 < old_args.size()) &&
|
||||
@ -152,9 +149,10 @@ void BreakpointIDList::FindAndReplaceIDRanges(Args &old_args, Target *target,
|
||||
breakpoint_sp = target->GetBreakpointByID(bp_id->GetBreakpointID());
|
||||
if (!breakpoint_sp) {
|
||||
new_args.Clear();
|
||||
result.AppendErrorWithFormat("'%d' is not a valid breakpoint ID.\n",
|
||||
return llvm::createStringError(
|
||||
llvm::inconvertibleErrorCode(),
|
||||
"'%d' is not a valid breakpoint ID.\n",
|
||||
bp_id->GetBreakpointID());
|
||||
return;
|
||||
}
|
||||
const size_t num_locations = breakpoint_sp->GetNumLocations();
|
||||
for (size_t j = 0; j < num_locations; ++j) {
|
||||
@ -180,17 +178,17 @@ void BreakpointIDList::FindAndReplaceIDRanges(Args &old_args, Target *target,
|
||||
if (!start_bp ||
|
||||
!target->GetBreakpointByID(start_bp->GetBreakpointID())) {
|
||||
new_args.Clear();
|
||||
result.AppendErrorWithFormat("'%s' is not a valid breakpoint ID.\n",
|
||||
return llvm::createStringError(llvm::inconvertibleErrorCode(),
|
||||
"'%s' is not a valid breakpoint ID.\n",
|
||||
range_from.str().c_str());
|
||||
return;
|
||||
}
|
||||
|
||||
if (!end_bp ||
|
||||
!target->GetBreakpointByID(end_bp->GetBreakpointID())) {
|
||||
new_args.Clear();
|
||||
result.AppendErrorWithFormat("'%s' is not a valid breakpoint ID.\n",
|
||||
return llvm::createStringError(llvm::inconvertibleErrorCode(),
|
||||
"'%s' is not a valid breakpoint ID.\n",
|
||||
range_to.str().c_str());
|
||||
return;
|
||||
}
|
||||
break_id_t start_bp_id = start_bp->GetBreakpointID();
|
||||
break_id_t start_loc_id = start_bp->GetLocationID();
|
||||
@ -201,11 +199,11 @@ void BreakpointIDList::FindAndReplaceIDRanges(Args &old_args, Target *target,
|
||||
((start_loc_id != LLDB_INVALID_BREAK_ID) &&
|
||||
(end_loc_id == LLDB_INVALID_BREAK_ID))) {
|
||||
new_args.Clear();
|
||||
result.AppendError("Invalid breakpoint id range: Either "
|
||||
return llvm::createStringError(llvm::inconvertibleErrorCode(),
|
||||
"Invalid breakpoint id range: Either "
|
||||
"both ends of range must specify"
|
||||
" a breakpoint location, or neither can "
|
||||
"specify a breakpoint location.");
|
||||
return;
|
||||
}
|
||||
|
||||
// We have valid range starting & ending breakpoint IDs. Go through all
|
||||
@ -221,13 +219,13 @@ void BreakpointIDList::FindAndReplaceIDRanges(Args &old_args, Target *target,
|
||||
(end_loc_id != LLDB_INVALID_BREAK_ID)) {
|
||||
if (start_bp_id != end_bp_id) {
|
||||
new_args.Clear();
|
||||
result.AppendErrorWithFormat(
|
||||
return llvm::createStringError(
|
||||
llvm::inconvertibleErrorCode(),
|
||||
"Invalid range: Ranges that specify particular breakpoint "
|
||||
"locations"
|
||||
" must be within the same major breakpoint; you specified two"
|
||||
" different major breakpoints, %d and %d.\n",
|
||||
start_bp_id, end_bp_id);
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
@ -302,8 +300,7 @@ void BreakpointIDList::FindAndReplaceIDRanges(Args &old_args, Target *target,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
result.SetStatus(eReturnStatusSuccessFinishNoResult);
|
||||
return llvm::Error::success();
|
||||
}
|
||||
|
||||
std::pair<llvm::StringRef, llvm::StringRef>
|
||||
|
@ -2488,8 +2488,12 @@ void CommandObjectMultiwordBreakpoint::VerifyIDs(
|
||||
// breakpoint ids in the range, and shove all of those breakpoint id strings
|
||||
// into TEMP_ARGS.
|
||||
|
||||
BreakpointIDList::FindAndReplaceIDRanges(args, target, allow_locations,
|
||||
purpose, result, 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:
|
||||
@ -2501,7 +2505,6 @@ void CommandObjectMultiwordBreakpoint::VerifyIDs(
|
||||
// At this point, all of the breakpoint ids that the user passed in have
|
||||
// been converted to breakpoint IDs and put into valid_ids.
|
||||
|
||||
if (result.Succeeded()) {
|
||||
// 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.
|
||||
@ -2530,4 +2533,3 @@ void CommandObjectMultiwordBreakpoint::VerifyIDs(
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user