[Lldb-commits] [PATCH] D153827: [lldb][NFCI] Remove use of ConstString from ProcessElfCore
Alex Langford via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Mon Jul 3 11:15:01 PDT 2023
This revision was automatically updated to reflect the committed changes.
Closed by commit rGe3921b8bff69: [lldb][NFCI] Remove use of ConstString from ProcessElfCore (authored by bulbazord).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D153827/new/
https://reviews.llvm.org/D153827
Files:
lldb/source/Plugins/Process/elf-core/ProcessElfCore.cpp
lldb/source/Plugins/Process/elf-core/ProcessElfCore.h
Index: lldb/source/Plugins/Process/elf-core/ProcessElfCore.h
===================================================================
--- lldb/source/Plugins/Process/elf-core/ProcessElfCore.h
+++ lldb/source/Plugins/Process/elf-core/ProcessElfCore.h
@@ -20,7 +20,6 @@
#include <vector>
#include "lldb/Target/PostMortemProcess.h"
-#include "lldb/Utility/ConstString.h"
#include "lldb/Utility/Status.h"
#include "Plugins/ObjectFile/ELF/ELFHeader.h"
@@ -117,7 +116,7 @@
lldb::addr_t start;
lldb::addr_t end;
lldb::addr_t file_ofs;
- lldb_private::ConstString path;
+ std::string path;
};
// For ProcessElfCore only
Index: lldb/source/Plugins/Process/elf-core/ProcessElfCore.cpp
===================================================================
--- lldb/source/Plugins/Process/elf-core/ProcessElfCore.cpp
+++ lldb/source/Plugins/Process/elf-core/ProcessElfCore.cpp
@@ -258,8 +258,8 @@
if (!m_nt_file_entries.empty()) {
ModuleSpec exe_module_spec;
exe_module_spec.GetArchitecture() = arch;
- exe_module_spec.GetFileSpec().SetFile(
- m_nt_file_entries[0].path.GetCString(), FileSpec::Style::native);
+ exe_module_spec.GetFileSpec().SetFile(m_nt_file_entries[0].path,
+ FileSpec::Style::native);
if (exe_module_spec.GetFileSpec()) {
exe_module_sp = GetTarget().GetOrCreateModule(exe_module_spec,
true /* notify */);
@@ -938,7 +938,7 @@
for (uint64_t i = 0; i < count; ++i) {
const char *path = note.data.GetCStr(&offset);
if (path && path[0])
- m_nt_file_entries[i].path.SetCString(path);
+ m_nt_file_entries[i].path.assign(path);
}
break;
}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D153827.536851.patch
Type: text/x-patch
Size: 1784 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20230703/0656b7d6/attachment.bin>
More information about the lldb-commits
mailing list