[Lldb-commits] [PATCH] D148175: [lldb] Add `operator StringRef` to ConstString
Dave Lee via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Wed Apr 12 15:06:30 PDT 2023
kastiglione created this revision.
kastiglione added reviewers: aprantl, JDevlieghere, jingham.
Herald added a project: All.
kastiglione requested review of this revision.
Herald added a project: LLDB.
Herald added a subscriber: lldb-commits.
Add a `StringRef` conversion function to `ConstString`.
This will make using llvm and other non-ConstString APIs more convenient.
For demonstration, this updates Module.cpp to demonstrate.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D148175
Files:
lldb/include/lldb/Utility/ConstString.h
lldb/source/Core/Module.cpp
Index: lldb/source/Core/Module.cpp
===================================================================
--- lldb/source/Core/Module.cpp
+++ lldb/source/Core/Module.cpp
@@ -748,8 +748,7 @@
// relatively inexpensive since no demangling is actually occuring. See
// Mangled::SetValue for more context.
const bool function_name_may_be_mangled =
- Mangled::GetManglingScheme(function_name.GetStringRef()) !=
- Mangled::eManglingSchemeNone;
+ Mangled::GetManglingScheme(function_name) != Mangled::eManglingSchemeNone;
ConstString demangled_function_name = function_name;
if (function_name_may_be_mangled) {
Mangled mangled_function_name(function_name);
@@ -760,11 +759,10 @@
// Otherwise just check that the demangled function name contains the
// demangled user-provided name.
if (Language *language = Language::FindPlugin(language_type))
- return language->DemangledNameContainsPath(m_name.GetStringRef(),
- demangled_function_name);
+ return language->DemangledNameContainsPath(m_name, demangled_function_name);
- llvm::StringRef function_name_ref = demangled_function_name.GetStringRef();
- return function_name_ref.contains(m_name.GetStringRef());
+ llvm::StringRef function_name_ref = demangled_function_name;
+ return function_name_ref.contains(m_name);
}
void Module::LookupInfo::Prune(SymbolContextList &sc_list,
@@ -803,7 +801,7 @@
CPlusPlusLanguage::MethodName cpp_method(full_name);
if (cpp_method.IsValid()) {
if (cpp_method.GetContext().empty()) {
- if (cpp_method.GetBasename().compare(m_name.GetStringRef()) != 0) {
+ if (cpp_method.GetBasename().compare(m_name) != 0) {
sc_list.RemoveContextAtIndex(i);
continue;
}
@@ -1026,8 +1024,8 @@
FindTypes_Impl(name, CompilerDeclContext(), UINT_MAX,
searched_symbol_files, typesmap);
if (exact_match) {
- typesmap.RemoveMismatchedTypes(type_scope, name.GetStringRef(),
- type_class, exact_match);
+ typesmap.RemoveMismatchedTypes(type_scope, name, type_class,
+ exact_match);
}
}
}
@@ -1132,7 +1130,7 @@
return;
StreamString ss;
- ss << file_name.GetStringRef()
+ ss << file_name
<< " was compiled with optimization - stepping may behave "
"oddly; variables may not be available.";
Debugger::ReportWarning(std::string(ss.GetString()), debugger_id,
@@ -1668,7 +1666,7 @@
llvm::raw_string_ostream id_strm(identifier);
id_strm << m_arch.GetTriple().str() << '-' << m_file.GetPath();
if (m_object_name)
- id_strm << '(' << m_object_name.GetStringRef() << ')';
+ id_strm << '(' << m_object_name << ')';
if (m_object_offset > 0)
id_strm << m_object_offset;
const auto mtime = llvm::sys::toTimeT(m_object_mod_time);
@@ -1682,7 +1680,7 @@
llvm::raw_string_ostream strm(key);
strm << m_arch.GetTriple().str() << '-' << m_file.GetFilename();
if (m_object_name)
- strm << '(' << m_object_name.GetStringRef() << ')';
+ strm << '(' << m_object_name << ')';
strm << '-' << llvm::format_hex(Hash(), 10);
return strm.str();
}
Index: lldb/include/lldb/Utility/ConstString.h
===================================================================
--- lldb/include/lldb/Utility/ConstString.h
+++ lldb/include/lldb/Utility/ConstString.h
@@ -180,6 +180,9 @@
bool operator<(ConstString rhs) const;
+ // Implicitly convert \class ConstString instances to \class StringRef.
+ operator llvm::StringRef() const { return GetStringRef(); }
+
/// Get the string value as a C string.
///
/// Get the value of the contained string as a NULL terminated C string
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D148175.512981.patch
Type: text/x-patch
Size: 3814 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20230412/bf70b151/attachment.bin>
More information about the lldb-commits
mailing list