[Lldb-commits] [PATCH] D134043: [lldb] Log when we cannot find an equivalent for a gdb register type
David Spickett via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Fri Sep 16 06:44:41 PDT 2022
DavidSpickett created this revision.
Herald added a project: All.
DavidSpickett requested review of this revision.
Herald added a project: LLDB.
Herald added a subscriber: lldb-commits.
This happens if the type is described elsewhere in target xml as a
<flags> or <struct>.
Also hardcode the function names into the log messages because
if you use __FUNCTION__ in a lambda you just get "operator()".
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D134043
Files:
lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
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
@@ -4029,8 +4029,10 @@
if (!feature_node)
return false;
+ Log *log(GetLog(GDBRLog::Process));
+
feature_node.ForEachChildElementWithName(
- "reg", [&target_info, ®isters](const XMLNode ®_node) -> bool {
+ "reg", [&target_info, ®isters, log](const XMLNode ®_node) -> bool {
std::string gdb_group;
std::string gdb_type;
DynamicRegisterInfo::Register reg_info;
@@ -4039,9 +4041,9 @@
// FIXME: we're silently ignoring invalid data here
reg_node.ForEachAttribute([&target_info, &gdb_group, &gdb_type,
- &encoding_set, &format_set, ®_info](
- const llvm::StringRef &name,
- const llvm::StringRef &value) -> bool {
+ &encoding_set, &format_set, ®_info,
+ log](const llvm::StringRef &name,
+ const llvm::StringRef &value) -> bool {
if (name == "name") {
reg_info.name.SetString(value);
} else if (name == "bitsize") {
@@ -4098,10 +4100,10 @@
SplitCommaSeparatedRegisterNumberString(
value, reg_info.invalidate_regs, 0);
} else {
- Log *log(GetLog(GDBRLog::Process));
LLDB_LOGF(log,
- "ProcessGDBRemote::%s unhandled reg attribute %s = %s",
- __FUNCTION__, name.data(), value.data());
+ "ProcessGDBRemote::ParseRegisters unhandled reg "
+ "attribute %s = %s",
+ name.data(), value.data());
}
return true; // Keep iterating through all attributes
});
@@ -4123,6 +4125,12 @@
// them as vector (similarly to xmm/ymm)
reg_info.format = eFormatVectorOfUInt8;
reg_info.encoding = eEncodingVector;
+ } else {
+ LLDB_LOGF(
+ log,
+ "ProcessGDBRemote::ParseRegisters Could not determine lldb"
+ "format and encoding for gdb type %s",
+ gdb_type.c_str());
}
}
@@ -4140,7 +4148,6 @@
}
if (reg_info.byte_size == 0) {
- Log *log(GetLog(GDBRLog::Process));
LLDB_LOGF(log,
"ProcessGDBRemote::%s Skipping zero bitsize register %s",
__FUNCTION__, reg_info.name.AsCString());
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D134043.460734.patch
Type: text/x-patch
Size: 2775 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20220916/e818076e/attachment.bin>
More information about the lldb-commits
mailing list