Skip to content

Commit

Permalink
[lldb] Support new libc++ __compressed_pair layout
Browse files Browse the repository at this point in the history
This patch is in preparation for the `__compressed_pair`
refactor in llvm#76756.

This gets the formatter tests to at least pass.

Currently in draft because there's still some cleanup to be done.
  • Loading branch information
Michael137 committed Jun 24, 2024
1 parent 62baf21 commit 3b4d962
Show file tree
Hide file tree
Showing 9 changed files with 256 additions and 106 deletions.
26 changes: 20 additions & 6 deletions lldb/examples/synthetic/libcxx.py
Original file line number Diff line number Diff line change
Expand Up @@ -721,6 +721,12 @@ def _get_value_of_compressed_pair(self, pair):
def update(self):
logger = lldb.formatters.Logger.Logger()
try:
has_compressed_pair_layout = True
alloc_valobj = self.valobj.GetChildMemberWithName("__alloc_")
size_valobj = self.valobj.GetChildMemberWithName("__size_")
if alloc_valobj.IsValid() and size_valobj.IsValid():
has_compressed_pair_layout = False

# A deque is effectively a two-dim array, with fixed width.
# 'map' contains pointers to the rows of this array. The
# full memory area allocated by the deque is delimited
Expand All @@ -734,9 +740,13 @@ def update(self):
# variable tells which element in this NxM array is the 0th
# one, and the 'size' element gives the number of elements
# in the deque.
count = self._get_value_of_compressed_pair(
self.valobj.GetChildMemberWithName("__size_")
)
if has_compressed_pair_layout:
count = self._get_value_of_compressed_pair(
self.valobj.GetChildMemberWithName("__size_")
)
else:
count = size_valobj.GetValueAsUnsigned(0)

# give up now if we cant access memory reliably
if self.block_size < 0:
logger.write("block_size < 0")
Expand All @@ -748,9 +758,13 @@ def update(self):
self.map_begin = map_.GetChildMemberWithName("__begin_")
map_begin = self.map_begin.GetValueAsUnsigned(0)
map_end = map_.GetChildMemberWithName("__end_").GetValueAsUnsigned(0)
map_endcap = self._get_value_of_compressed_pair(
map_.GetChildMemberWithName("__end_cap_")
)

if has_compressed_pair_layout:
map_endcap = self._get_value_of_compressed_pair(
map_.GetChildMemberWithName("__end_cap_")
)
else:
map_endcap = map_.GetChildMemberWithName("__end_cap_").GetValueAsUnsigned(0)

# check consistency
if not map_first <= map_begin <= map_end <= map_endcap:
Expand Down
61 changes: 47 additions & 14 deletions lldb/source/Plugins/Language/CPlusPlus/LibCxx.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
#include "Plugins/LanguageRuntime/CPlusPlus/CPPLanguageRuntime.h"
#include "Plugins/TypeSystem/Clang/TypeSystemClang.h"
#include "lldb/lldb-enumerations.h"
#include "lldb/lldb-forward.h"
#include <optional>
#include <tuple>

Expand Down Expand Up @@ -176,9 +177,9 @@ bool lldb_private::formatters::LibcxxUniquePointerSummaryProvider(
if (!ptr_sp)
return false;

ptr_sp = GetFirstValueOfLibCXXCompressedPair(*ptr_sp);
if (!ptr_sp)
return false;
if (ValueObjectSP compressed_pair_value__sp =
GetFirstValueOfLibCXXCompressedPair(*ptr_sp))
ptr_sp = std::move(compressed_pair_value__sp);

if (ptr_sp->GetValueAsUnsigned(0) == 0) {
stream.Printf("nullptr");
Expand Down Expand Up @@ -701,15 +702,28 @@ lldb_private::formatters::LibcxxUniquePtrSyntheticFrontEnd::Update() {
if (!ptr_sp)
return lldb::ChildCacheState::eRefetch;

bool has_compressed_pair_layout = true;
ValueObjectSP deleter_sp(valobj_sp->GetChildMemberWithName("__deleter_"));
if (deleter_sp)
has_compressed_pair_layout = false;

// Retrieve the actual pointer and the deleter, and clone them to give them
// user-friendly names.
ValueObjectSP value_pointer_sp = GetFirstValueOfLibCXXCompressedPair(*ptr_sp);
if (value_pointer_sp)
m_value_ptr_sp = value_pointer_sp->Clone(ConstString("pointer"));

ValueObjectSP deleter_sp = GetSecondValueOfLibCXXCompressedPair(*ptr_sp);
if (deleter_sp)
if (has_compressed_pair_layout) {
ValueObjectSP value_pointer_sp =
GetFirstValueOfLibCXXCompressedPair(*ptr_sp);
if (value_pointer_sp)
m_value_ptr_sp = value_pointer_sp->Clone(ConstString("pointer"));

ValueObjectSP deleter_sp = GetSecondValueOfLibCXXCompressedPair(*ptr_sp);
if (deleter_sp)
m_deleter_sp = deleter_sp->Clone(ConstString("deleter"));
} else {
// TODO: with the new layout, deleter is always a member, so empty deleters
// will be displayed
m_value_ptr_sp = ptr_sp->Clone(ConstString("pointer"));
m_deleter_sp = deleter_sp->Clone(ConstString("deleter"));
}

return lldb::ChildCacheState::eRefetch;
}
Expand Down Expand Up @@ -747,11 +761,7 @@ namespace {
enum class StringLayout { CSD, DSC };
}

/// Determine the size in bytes of \p valobj (a libc++ std::string object) and
/// extract its data payload. Return the size + payload pair.
// TODO: Support big-endian architectures.
static std::optional<std::pair<uint64_t, ValueObjectSP>>
ExtractLibcxxStringInfo(ValueObject &valobj) {
static ValueObjectSP ExtractLibCxxStringDataV1(ValueObject &valobj) {
ValueObjectSP valobj_r_sp = valobj.GetChildMemberWithName("__r_");
if (!valobj_r_sp || !valobj_r_sp->GetError().Success())
return {};
Expand All @@ -767,6 +777,29 @@ ExtractLibcxxStringInfo(ValueObject &valobj) {
if (!valobj_rep_sp)
return {};

return valobj_rep_sp;
}

static ValueObjectSP ExtractLibCxxStringDataV2(ValueObject &valobj) {
return valobj.GetChildMemberWithName("__rep_");
}

static ValueObjectSP ExtractLibCxxStringData(ValueObject &valobj) {
if (ValueObjectSP ret = ExtractLibCxxStringDataV1(valobj))
return ret;

return ExtractLibCxxStringDataV2(valobj);
}

/// Determine the size in bytes of \p valobj (a libc++ std::string object) and
/// extract its data payload. Return the size + payload pair.
// TODO: Support big-endian architectures.
static std::optional<std::pair<uint64_t, ValueObjectSP>>
ExtractLibcxxStringInfo(ValueObject &valobj) {
ValueObjectSP valobj_rep_sp = ExtractLibCxxStringData(valobj);
if (!valobj_rep_sp || !valobj_rep_sp->GetError().Success())
return {};

ValueObjectSP l = valobj_rep_sp->GetChildMemberWithName("__l");
if (!l)
return {};
Expand Down
83 changes: 53 additions & 30 deletions lldb/source/Plugins/Language/CPlusPlus/LibCxxList.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
#include "lldb/Utility/Endian.h"
#include "lldb/Utility/Status.h"
#include "lldb/Utility/Stream.h"
#include "lldb/lldb-enumerations.h"

using namespace lldb;
using namespace lldb_private;
Expand Down Expand Up @@ -294,12 +295,19 @@ lldb::ChildCacheState ForwardListFrontEnd::Update() {

ValueObjectSP impl_sp(m_backend.GetChildMemberWithName("__before_begin_"));
if (!impl_sp)
return lldb::ChildCacheState::eRefetch;
impl_sp = GetFirstValueOfLibCXXCompressedPair(*impl_sp);
if (!impl_sp)
return lldb::ChildCacheState::eRefetch;
return ChildCacheState::eRefetch;

m_head = impl_sp->GetChildMemberWithName("__next_").get();
return lldb::ChildCacheState::eRefetch;

// TODO: we have to do this in this order because __before_begin_ has a
// __value_ member, as does compressed_pair. Is this a problem elsewhere too?
if (!m_head) {
impl_sp = GetFirstValueOfLibCXXCompressedPair(*impl_sp);
if (impl_sp)
m_head = impl_sp->GetChildMemberWithName("__next_").get();
}

return ChildCacheState::eRefetch;
}

ListFrontEnd::ListFrontEnd(lldb::ValueObjectSP valobj_sp)
Expand All @@ -313,34 +321,49 @@ llvm::Expected<uint32_t> ListFrontEnd::CalculateNumChildren() {
return m_count;
if (!m_head || !m_tail || m_node_address == 0)
return 0;
ValueObjectSP size_alloc(m_backend.GetChildMemberWithName("__size_alloc_"));
if (size_alloc) {
ValueObjectSP value = GetFirstValueOfLibCXXCompressedPair(*size_alloc);
if (value) {
m_count = value->GetValueAsUnsigned(UINT32_MAX);
}

bool has_compressed_pair_layout = false;
// ValueObjectSP
// node_alloc(m_backend.GetChildMemberWithName("__node_alloc_")); if
// (!node_alloc)
// has_compressed_pair_layout = true;

ValueObjectSP size_node(m_backend.GetChildMemberWithName("__size_"));
if (!size_node) {
size_node = m_backend.GetChildMemberWithName(
"__size_alloc_"); // pre-compressed_pair rework
if (size_node)
has_compressed_pair_layout = true;
}
if (m_count != UINT32_MAX) {

if (size_node) {
if (has_compressed_pair_layout)
if (ValueObjectSP value = GetFirstValueOfLibCXXCompressedPair(*size_node))
size_node = std::move(value);

m_count = size_node->GetValueAsUnsigned(UINT32_MAX);
}

if (m_count != UINT32_MAX)
return m_count;
} else {
uint64_t next_val = m_head->GetValueAsUnsigned(0);
uint64_t prev_val = m_tail->GetValueAsUnsigned(0);
if (next_val == 0 || prev_val == 0)
return 0;
if (next_val == m_node_address)
return 0;
if (next_val == prev_val)
return 1;
uint64_t size = 2;
ListEntry current(m_head);
while (current.next() && current.next().value() != m_node_address) {
size++;
current = current.next();
if (size > m_list_capping_size)
break;
}
return m_count = (size - 1);

uint64_t next_val = m_head->GetValueAsUnsigned(0);
uint64_t prev_val = m_tail->GetValueAsUnsigned(0);
if (next_val == 0 || prev_val == 0)
return 0;
if (next_val == m_node_address)
return 0;
if (next_val == prev_val)
return 1;
uint64_t size = 2;
ListEntry current(m_head);
while (current.next() && current.next().value() != m_node_address) {
size++;
current = current.next();
if (size > m_list_capping_size)
break;
}
return m_count = (size - 1);
}

lldb::ValueObjectSP ListFrontEnd::GetChildAtIndex(uint32_t idx) {
Expand Down
68 changes: 52 additions & 16 deletions lldb/source/Plugins/Language/CPlusPlus/LibCxxMap.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,9 @@ class LibcxxStdMapSyntheticFrontEnd : public SyntheticChildrenFrontEnd {
size_t GetIndexOfChildWithName(ConstString name) override;

private:
size_t CalculateNumChildrenV1();
size_t CalculateNumChildrenV2();

bool GetDataType();

void GetValueOffset(const lldb::ValueObjectSP &node);
Expand All @@ -198,6 +201,7 @@ class LibcxxStdMapSyntheticFrontEnd : public SyntheticChildrenFrontEnd {
uint32_t m_skip_size = UINT32_MAX;
size_t m_count = UINT32_MAX;
std::map<size_t, MapIterator> m_iterators;
bool m_has_compressed_pair_layout = false;
};
} // namespace formatters
} // namespace lldb_private
Expand All @@ -209,6 +213,31 @@ lldb_private::formatters::LibcxxStdMapSyntheticFrontEnd::
Update();
}

size_t lldb_private::formatters::LibcxxStdMapSyntheticFrontEnd::
CalculateNumChildrenV2() {
ValueObjectSP node(m_tree->GetChildMemberWithName("__size_"));
if (!node)
return 0;

m_count = node->GetValueAsUnsigned(0);
return m_count;
}

size_t lldb_private::formatters::LibcxxStdMapSyntheticFrontEnd::
CalculateNumChildrenV1() {
ValueObjectSP node(m_tree->GetChildMemberWithName("__pair3_"));
if (!node)
return 0;

node = formatters::GetFirstValueOfLibCXXCompressedPair(*node);

if (!node)
return 0;

m_count = node->GetValueAsUnsigned(0);
return m_count;
}

llvm::Expected<uint32_t> lldb_private::formatters::
LibcxxStdMapSyntheticFrontEnd::CalculateNumChildren() {
if (m_count != UINT32_MAX)
Expand All @@ -217,17 +246,10 @@ llvm::Expected<uint32_t> lldb_private::formatters::
if (m_tree == nullptr)
return 0;

ValueObjectSP size_node(m_tree->GetChildMemberWithName("__pair3_"));
if (!size_node)
return 0;
if (m_has_compressed_pair_layout)
return CalculateNumChildrenV1();

size_node = GetFirstValueOfLibCXXCompressedPair(*size_node);

if (!size_node)
return 0;

m_count = size_node->GetValueAsUnsigned(0);
return m_count;
return CalculateNumChildrenV2();
}

bool lldb_private::formatters::LibcxxStdMapSyntheticFrontEnd::GetDataType() {
Expand All @@ -244,12 +266,22 @@ bool lldb_private::formatters::LibcxxStdMapSyntheticFrontEnd::GetDataType() {
m_element_type = deref->GetCompilerType();
return true;
}
deref = m_backend.GetChildAtNamePath({"__tree_", "__pair3_"});
if (!deref)
return false;
m_element_type = deref->GetCompilerType()
.GetTypeTemplateArgument(1)
.GetTypeTemplateArgument(1);

if (m_has_compressed_pair_layout) {
deref = m_backend.GetChildAtNamePath({"__tree_", "__pair3_"});

if (!deref)
return false;
m_element_type = deref->GetCompilerType()
.GetTypeTemplateArgument(1)
.GetTypeTemplateArgument(1);
} else {
deref = m_backend.GetChildAtNamePath({"__tree_", "__value_comp_"});
if (!deref)
return false;
m_element_type = deref->GetCompilerType().GetTypeTemplateArgument(1);
}

if (m_element_type) {
std::string name;
uint64_t bit_offset_ptr;
Expand Down Expand Up @@ -413,6 +445,10 @@ lldb_private::formatters::LibcxxStdMapSyntheticFrontEnd::Update() {
m_tree = m_backend.GetChildMemberWithName("__tree_").get();
if (!m_tree)
return lldb::ChildCacheState::eRefetch;

m_has_compressed_pair_layout =
m_tree->GetChildMemberWithName("__pair1_") != nullptr;

m_root_node = m_tree->GetChildMemberWithName("__begin_node_").get();
return lldb::ChildCacheState::eRefetch;
}
Expand Down
Loading

0 comments on commit 3b4d962

Please sign in to comment.