[Lldb-commits] [PATCH] D128694: [lldb/Dataformatters] Adapt C++ std::string dataformatter for D128285
Med Ismail Bennani via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Tue Jun 28 15:34:36 PDT 2022
This revision was automatically updated to reflect the committed changes.
Closed by commit rG44a114fec715: [lldb/Dataformatters] Adapt C++ std::string dataformatter for D128285 (authored by mib).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D128694/new/
https://reviews.llvm.org/D128694
Files:
lldb/source/Plugins/Language/CPlusPlus/LibCxx.cpp
Index: lldb/source/Plugins/Language/CPlusPlus/LibCxx.cpp
===================================================================
--- lldb/source/Plugins/Language/CPlusPlus/LibCxx.cpp
+++ lldb/source/Plugins/Language/CPlusPlus/LibCxx.cpp
@@ -583,8 +583,18 @@
: eLibcxxStringLayoutModeCSD;
uint64_t size_mode_value = 0;
- if (ValueObjectSP is_long = dataval_sp->GetChildAtNamePath(
- {ConstString("__s"), ConstString("__is_long_")})) {
+ ValueObjectSP short_sp(dataval_sp->GetChildAtIndex(1, true));
+ if (!short_sp)
+ return {};
+
+ // After D128285, we need to access the `__is_long_` and `__size_` fields from
+ // a packed anonymous struct
+ ValueObjectSP packed_fields_sp = short_sp->GetChildAtIndex(0, true);
+ if (!packed_fields_sp)
+ return {};
+
+ if (ValueObjectSP is_long = packed_fields_sp->GetChildMemberWithName(
+ ConstString("__is_long_"), true)) {
using_bitmasks = false;
short_mode = !is_long->GetValueAsUnsigned(/*fail_value=*/0);
if (ValueObjectSP size_member =
@@ -621,14 +631,11 @@
}
if (short_mode) {
- ValueObjectSP short_sp(dataval_sp->GetChildAtIndex(1, true));
- if (!short_sp)
- return {};
- ValueObjectSP location_sp = short_sp->GetChildAtIndex(
+ ValueObjectSP location_sp = packed_fields_sp->GetChildAtIndex(
(layout == eLibcxxStringLayoutModeDSC) ? 0 : 1, true);
// After D125496, there is a flat layout.
if (location_sp->GetName() == g_size_name)
- location_sp = short_sp->GetChildAtIndex(3, true);
+ location_sp = short_sp->GetChildMemberWithName(g_data_name, true);
if (using_bitmasks)
size = (layout == eLibcxxStringLayoutModeDSC)
? size_mode_value
@@ -650,13 +657,19 @@
ValueObjectSP l(dataval_sp->GetChildAtIndex(0, true));
if (!l)
return {};
+
+ // After D128285, we need to access the `__cap_` field from a packed anonymous
+ // struct
+ packed_fields_sp = l->GetChildAtIndex(0, true);
+ if (!packed_fields_sp)
+ return {};
// we can use the layout_decider object as the data pointer
ValueObjectSP location_sp =
l->GetChildMemberWithName(ConstString("__data_"), /*can_create=*/true);
ValueObjectSP size_vo =
l->GetChildMemberWithName(ConstString("__size_"), /*can_create=*/true);
- ValueObjectSP capacity_vo =
- l->GetChildMemberWithName(ConstString("__cap_"), /*can_create=*/true);
+ ValueObjectSP capacity_vo = packed_fields_sp->GetChildMemberWithName(
+ ConstString("__cap_"), /*can_create=*/true);
if (!size_vo || !location_sp || !capacity_vo)
return {};
size = size_vo->GetValueAsUnsigned(LLDB_INVALID_OFFSET);
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D128694.440795.patch
Type: text/x-patch
Size: 2689 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20220628/6bf55970/attachment.bin>
More information about the lldb-commits
mailing list