[Lldb-commits] [PATCH] D153675: [lldb][NFCI] Remove ConstString from Process::ConfigureStructuredData
Alex Langford via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Fri Jun 23 18:03:05 PDT 2023
bulbazord created this revision.
bulbazord added reviewers: JDevlieghere, mib, jingham, clayborg.
Herald added a project: All.
bulbazord requested review of this revision.
Herald added a project: LLDB.
Herald added a subscriber: lldb-commits.
This is a follow-up to b4827a3c0a7ef121ca376713e115b04eff0f5194 <https://reviews.llvm.org/rGb4827a3c0a7ef121ca376713e115b04eff0f5194>.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D153675
Files:
lldb/include/lldb/Target/Process.h
lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h
lldb/source/Plugins/StructuredData/DarwinLog/StructuredDataDarwinLog.cpp
lldb/source/Target/Process.cpp
Index: lldb/source/Target/Process.cpp
===================================================================
--- lldb/source/Target/Process.cpp
+++ lldb/source/Target/Process.cpp
@@ -6007,7 +6007,7 @@
}
Status
-Process::ConfigureStructuredData(ConstString type_name,
+Process::ConfigureStructuredData(llvm::StringRef type_name,
const StructuredData::ObjectSP &config_sp) {
// If you get this, the Process-derived class needs to implement a method to
// enable an already-reported asynchronous structured data feature. See
Index: lldb/source/Plugins/StructuredData/DarwinLog/StructuredDataDarwinLog.cpp
===================================================================
--- lldb/source/Plugins/StructuredData/DarwinLog/StructuredDataDarwinLog.cpp
+++ lldb/source/Plugins/StructuredData/DarwinLog/StructuredDataDarwinLog.cpp
@@ -822,8 +822,8 @@
// Send configuration to the feature by way of the process. Construct the
// options we will use.
auto config_sp = m_options_sp->BuildConfigurationData(m_enable);
- const Status error = process_sp->ConfigureStructuredData(
- ConstString(GetDarwinLogTypeName()), config_sp);
+ const Status error =
+ process_sp->ConfigureStructuredData(GetDarwinLogTypeName(), config_sp);
// Report results.
if (!error.Success()) {
@@ -1831,8 +1831,8 @@
// We can run it directly.
// Send configuration to the feature by way of the process.
- const Status error = process_sp->ConfigureStructuredData(
- ConstString(GetDarwinLogTypeName()), config_sp);
+ const Status error =
+ process_sp->ConfigureStructuredData(GetDarwinLogTypeName(), config_sp);
// Report results.
if (!error.Success()) {
Index: lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h
===================================================================
--- lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h
+++ lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h
@@ -211,7 +211,7 @@
lldb::addr_t image_count) override;
Status
- ConfigureStructuredData(ConstString type_name,
+ ConfigureStructuredData(llvm::StringRef type_name,
const StructuredData::ObjectSP &config_sp) override;
StructuredData::ObjectSP GetLoadedDynamicLibrariesInfos() override;
Index: lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
===================================================================
--- lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
+++ lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
@@ -3922,7 +3922,7 @@
}
Status ProcessGDBRemote::ConfigureStructuredData(
- ConstString type_name, const StructuredData::ObjectSP &config_sp) {
+ llvm::StringRef type_name, const StructuredData::ObjectSP &config_sp) {
return m_gdb_comm.ConfigureRemoteStructuredData(type_name, config_sp);
}
Index: lldb/include/lldb/Target/Process.h
===================================================================
--- lldb/include/lldb/Target/Process.h
+++ lldb/include/lldb/Target/Process.h
@@ -2537,7 +2537,7 @@
/// \return
/// Returns the result of attempting to configure the feature.
virtual Status
- ConfigureStructuredData(ConstString type_name,
+ ConfigureStructuredData(llvm::StringRef type_name,
const StructuredData::ObjectSP &config_sp);
/// Broadcasts the given structured data object from the given plugin.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D153675.534139.patch
Type: text/x-patch
Size: 3484 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20230624/3948a437/attachment.bin>
More information about the lldb-commits
mailing list