LLDB mainline
LibCxxMap.cpp
Go to the documentation of this file.
1//===-- LibCxxMap.cpp -----------------------------------------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#include "LibCxx.h"
10
13#include "lldb/Target/Target.h"
15#include "lldb/Utility/Endian.h"
16#include "lldb/Utility/Status.h"
17#include "lldb/Utility/Stream.h"
21#include "lldb/lldb-forward.h"
22#include <cstdint>
23#include <locale>
24#include <optional>
25
26using namespace lldb;
27using namespace lldb_private;
28using namespace lldb_private::formatters;
29
30// The flattened layout of the std::__tree_iterator::__ptr_ looks
31// as follows:
32//
33// The following shows the contiguous block of memory:
34//
35// +-----------------------------+ class __tree_end_node
36// __ptr_ | pointer __left_; |
37// +-----------------------------+ class __tree_node_base
38// | pointer __right_; |
39// | __parent_pointer __parent_; |
40// | bool __is_black_; |
41// +-----------------------------+ class __tree_node
42// | __node_value_type __value_; | <<< our key/value pair
43// +-----------------------------+
44//
45// where __ptr_ has type __iter_pointer.
46
47class MapEntry {
48public:
49 MapEntry() = default;
50 explicit MapEntry(ValueObjectSP entry_sp) : m_entry_sp(entry_sp) {}
51 explicit MapEntry(ValueObject *entry)
52 : m_entry_sp(entry ? entry->GetSP() : ValueObjectSP()) {}
53
55 if (!m_entry_sp)
56 return m_entry_sp;
57 return m_entry_sp->GetSyntheticChildAtOffset(
58 0, m_entry_sp->GetCompilerType(), true);
59 }
60
62 if (!m_entry_sp)
63 return m_entry_sp;
64 return m_entry_sp->GetSyntheticChildAtOffset(
65 m_entry_sp->GetProcessSP()->GetAddressByteSize(),
66 m_entry_sp->GetCompilerType(), true);
67 }
68
70 if (!m_entry_sp)
71 return m_entry_sp;
72 return m_entry_sp->GetSyntheticChildAtOffset(
73 2 * m_entry_sp->GetProcessSP()->GetAddressByteSize(),
74 m_entry_sp->GetCompilerType(), true);
75 }
76
77 uint64_t value() const {
78 if (!m_entry_sp)
79 return 0;
80 return m_entry_sp->GetValueAsUnsigned(0);
81 }
82
83 bool error() const {
84 if (!m_entry_sp)
85 return true;
86 return m_entry_sp->GetError().Fail();
87 }
88
89 bool null() const { return (value() == 0); }
90
91 ValueObjectSP GetEntry() const { return m_entry_sp; }
92
93 void SetEntry(ValueObjectSP entry) { m_entry_sp = entry; }
94
95 bool operator==(const MapEntry &rhs) const {
96 return (rhs.m_entry_sp.get() == m_entry_sp.get());
97 }
98
99private:
101};
102
104public:
105 MapIterator(ValueObject *entry, size_t depth = 0)
106 : m_entry(entry), m_max_depth(depth), m_error(false) {}
107
108 MapIterator() = default;
109
110 ValueObjectSP value() { return m_entry.GetEntry(); }
111
112 ValueObjectSP advance(size_t count) {
113 ValueObjectSP fail;
114 if (m_error)
115 return fail;
116 size_t steps = 0;
117 while (count > 0) {
118 next();
119 count--, steps++;
120 if (m_error || m_entry.null() || (steps > m_max_depth))
121 return fail;
122 }
123 return m_entry.GetEntry();
124 }
125
126private:
127 /// Mimicks libc++'s __tree_next algorithm, which libc++ uses
128 /// in its __tree_iteartor::operator++.
129 void next() {
130 if (m_entry.null())
131 return;
132 MapEntry right(m_entry.right());
133 if (!right.null()) {
134 m_entry = tree_min(std::move(right));
135 return;
136 }
137 size_t steps = 0;
138 while (!is_left_child(m_entry)) {
139 if (m_entry.error()) {
140 m_error = true;
141 return;
142 }
143 m_entry.SetEntry(m_entry.parent());
144 steps++;
145 if (steps > m_max_depth) {
146 m_entry = MapEntry();
147 return;
148 }
149 }
150 m_entry = MapEntry(m_entry.parent());
151 }
152
153 /// Mimicks libc++'s __tree_min algorithm.
155 if (x.null())
156 return MapEntry();
157 MapEntry left(x.left());
158 size_t steps = 0;
159 while (!left.null()) {
160 if (left.error()) {
161 m_error = true;
162 return MapEntry();
163 }
164 x = left;
165 left.SetEntry(x.left());
166 steps++;
167 if (steps > m_max_depth)
168 return MapEntry();
169 }
170 return x;
171 }
172
173 bool is_left_child(const MapEntry &x) {
174 if (x.null())
175 return false;
176 MapEntry rhs(x.parent());
177 rhs.SetEntry(rhs.left());
178 return x.value() == rhs.value();
179 }
180
182 size_t m_max_depth = 0;
183 bool m_error = false;
184};
185
186namespace lldb_private {
187namespace formatters {
189public:
191
192 ~LibcxxStdMapSyntheticFrontEnd() override = default;
193
194 llvm::Expected<uint32_t> CalculateNumChildren() override;
195
196 lldb::ValueObjectSP GetChildAtIndex(uint32_t idx) override;
197
198 lldb::ChildCacheState Update() override;
199
200private:
201 llvm::Expected<uint32_t>
203
204 /// Returns the ValueObject for the __tree_node type that
205 /// holds the key/value pair of the node at index \ref idx.
206 ///
207 /// \param[in] idx The child index that we're looking to get
208 /// the key/value pair for.
209 ///
210 /// \param[in] max_depth The maximum search depth after which
211 /// we stop trying to find the key/value
212 /// pair for.
213 ///
214 /// \returns On success, returns the ValueObjectSP corresponding
215 /// to the __tree_node's __value_ member (which holds
216 /// the key/value pair the formatter wants to display).
217 /// On failure, will return nullptr.
218 ValueObjectSP GetKeyValuePair(size_t idx, size_t max_depth);
219
220 ValueObject *m_tree = nullptr;
224 std::map<size_t, MapIterator> m_iterators;
225};
226
228public:
230
231 llvm::Expected<uint32_t> CalculateNumChildren() override;
232
233 lldb::ValueObjectSP GetChildAtIndex(uint32_t idx) override;
234
235 lldb::ChildCacheState Update() override;
236
237 llvm::Expected<size_t> GetIndexOfChildWithName(ConstString name) override;
238
240
241private:
243};
244} // namespace formatters
245} // namespace lldb_private
246
253
254llvm::Expected<uint32_t>
257 auto node_sp = GetFirstValueOfLibCXXCompressedPair(pair);
258
259 if (!node_sp)
260 return 0;
261
262 m_count = node_sp->GetValueAsUnsigned(0);
263
264 return m_count;
265}
266
267llvm::Expected<uint32_t> lldb_private::formatters::
269 if (m_count != UINT32_MAX)
270 return m_count;
271
272 if (m_tree == nullptr)
273 return 0;
274
275 auto [size_sp, is_compressed_pair] =
276 GetValueOrOldCompressedPair(*m_tree, "__size_", "__pair3_");
277 if (!size_sp)
278 return llvm::createStringError("Unexpected std::map layout");
279
280 if (is_compressed_pair)
282
283 m_count = size_sp->GetValueAsUnsigned(0);
284 return m_count;
285}
286
289 size_t idx, size_t max_depth) {
290 MapIterator iterator(m_root_node, max_depth);
291
292 size_t advance_by = idx;
293 if (idx > 0) {
294 // If we have already created the iterator for the previous
295 // index, we can start from there and advance by 1.
296 auto cached_iterator = m_iterators.find(idx - 1);
297 if (cached_iterator != m_iterators.end()) {
298 iterator = cached_iterator->second;
299 advance_by = 1;
300 }
301 }
302
303 ValueObjectSP iterated_sp(iterator.advance(advance_by));
304 if (!iterated_sp)
305 // this tree is garbage - stop
306 return nullptr;
307
308 if (!m_node_ptr_type.IsValid())
309 return nullptr;
310
311 // iterated_sp is a __iter_pointer at this point.
312 // We can cast it to a __node_pointer (which is what libc++ does).
313 auto value_type_sp = iterated_sp->Cast(m_node_ptr_type);
314 if (!value_type_sp)
315 return nullptr;
316
317 // Finally, get the key/value pair.
318 value_type_sp = value_type_sp->GetChildMemberWithName("__value_");
319 if (!value_type_sp)
320 return nullptr;
321
322 m_iterators[idx] = iterator;
323
324 return value_type_sp;
325}
326
329 uint32_t idx) {
330 static ConstString g_cc_("__cc_"), g_cc("__cc");
331 static ConstString g_nc("__nc");
332 uint32_t num_children = CalculateNumChildrenIgnoringErrors();
333 if (idx >= num_children)
334 return nullptr;
335
336 if (m_tree == nullptr || m_root_node == nullptr)
337 return nullptr;
338
339 ValueObjectSP key_val_sp = GetKeyValuePair(idx, /*max_depth=*/num_children);
340 if (!key_val_sp) {
341 // this will stop all future searches until an Update() happens
342 m_tree = nullptr;
343 return nullptr;
344 }
345
346 // at this point we have a valid
347 // we need to copy current_sp into a new object otherwise we will end up with
348 // all items named __value_
349 StreamString name;
350 name.Printf("[%" PRIu64 "]", (uint64_t)idx);
351 auto potential_child_sp = key_val_sp->Clone(ConstString(name.GetString()));
352 if (potential_child_sp) {
353 switch (potential_child_sp->GetNumChildrenIgnoringErrors()) {
354 case 1: {
355 auto child0_sp = potential_child_sp->GetChildAtIndex(0);
356 if (child0_sp &&
357 (child0_sp->GetName() == g_cc_ || child0_sp->GetName() == g_cc))
358 potential_child_sp = child0_sp->Clone(ConstString(name.GetString()));
359 break;
360 }
361 case 2: {
362 auto child0_sp = potential_child_sp->GetChildAtIndex(0);
363 auto child1_sp = potential_child_sp->GetChildAtIndex(1);
364 if (child0_sp &&
365 (child0_sp->GetName() == g_cc_ || child0_sp->GetName() == g_cc) &&
366 child1_sp && child1_sp->GetName() == g_nc)
367 potential_child_sp = child0_sp->Clone(ConstString(name.GetString()));
368 break;
369 }
370 }
371 }
372 return potential_child_sp;
373}
374
378 m_tree = m_root_node = nullptr;
379 m_iterators.clear();
380 m_tree = m_backend.GetChildMemberWithName("__tree_").get();
381 if (!m_tree)
383
384 m_root_node = m_tree->GetChildMemberWithName("__begin_node_").get();
386 m_tree->GetCompilerType().GetDirectNestedTypeWithName("__node_pointer");
387
389}
390
394 return (valobj_sp ? new LibcxxStdMapSyntheticFrontEnd(valobj_sp) : nullptr);
395}
396
403
406 m_pair_sp.reset();
407
408 ValueObjectSP valobj_sp = m_backend.GetSP();
409 if (!valobj_sp)
411
412 TargetSP target_sp(valobj_sp->GetTargetSP());
413 if (!target_sp)
415
416 // m_backend is a std::map::iterator
417 // ...which is a __map_iterator<__tree_iterator<..., __node_pointer, ...>>
418 //
419 // Then, __map_iterator::__i_ is a __tree_iterator
420 auto tree_iter_sp = valobj_sp->GetChildMemberWithName("__i_");
421 if (!tree_iter_sp)
423
424 // Type is __tree_iterator::__node_pointer
425 // (We could alternatively also get this from the template argument)
426 auto node_pointer_type =
427 tree_iter_sp->GetCompilerType().GetDirectNestedTypeWithName(
428 "__node_pointer");
429 if (!node_pointer_type.IsValid())
431
432 // __ptr_ is a __tree_iterator::__iter_pointer
433 auto iter_pointer_sp = tree_iter_sp->GetChildMemberWithName("__ptr_");
434 if (!iter_pointer_sp)
436
437 // Cast the __iter_pointer to a __node_pointer (which stores our key/value
438 // pair)
439 auto node_pointer_sp = iter_pointer_sp->Cast(node_pointer_type);
440 if (!node_pointer_sp)
442
443 auto key_value_sp = node_pointer_sp->GetChildMemberWithName("__value_");
444 if (!key_value_sp)
446
447 // Create the synthetic child, which is a pair where the key and value can be
448 // retrieved by querying the synthetic frontend for
449 // GetIndexOfChildWithName("first") and GetIndexOfChildWithName("second")
450 // respectively.
451 //
452 // std::map stores the actual key/value pair in value_type::__cc_ (or
453 // previously __cc).
454 key_value_sp = key_value_sp->Clone(ConstString("pair"));
455 if (key_value_sp->GetNumChildrenIgnoringErrors() == 1) {
456 auto child0_sp = key_value_sp->GetChildAtIndex(0);
457 if (child0_sp &&
458 (child0_sp->GetName() == "__cc_" || child0_sp->GetName() == "__cc"))
459 key_value_sp = child0_sp->Clone(ConstString("pair"));
460 }
461
462 m_pair_sp = key_value_sp;
463
465}
466
471
474 uint32_t idx) {
475 if (!m_pair_sp)
476 return nullptr;
477
478 return m_pair_sp->GetChildAtIndex(idx);
479}
480
481llvm::Expected<size_t>
484 if (!m_pair_sp)
485 return llvm::createStringError("Type has no child named '%s'",
486 name.AsCString());
487
488 return m_pair_sp->GetIndexOfChildWithName(name);
489}
490
494 return (valobj_sp ? new LibCxxMapIteratorSyntheticFrontEnd(valobj_sp)
495 : nullptr);
496}
ValueObjectSP right() const
Definition LibCxxMap.cpp:61
bool null() const
Definition LibCxxMap.cpp:89
ValueObjectSP left() const
Definition LibCxxMap.cpp:54
MapEntry(ValueObject *entry)
Definition LibCxxMap.cpp:51
ValueObjectSP parent() const
Definition LibCxxMap.cpp:69
void SetEntry(ValueObjectSP entry)
Definition LibCxxMap.cpp:93
MapEntry()=default
ValueObjectSP m_entry_sp
ValueObjectSP GetEntry() const
Definition LibCxxMap.cpp:91
uint64_t value() const
Definition LibCxxMap.cpp:77
bool operator==(const MapEntry &rhs) const
Definition LibCxxMap.cpp:95
MapEntry(ValueObjectSP entry_sp)
Definition LibCxxMap.cpp:50
bool error() const
Definition LibCxxMap.cpp:83
ValueObjectSP advance(size_t count)
MapIterator(ValueObject *entry, size_t depth=0)
ValueObjectSP value()
size_t m_max_depth
MapEntry m_entry
void next()
Mimicks libc++'s __tree_next algorithm, which libc++ uses in its __tree_iteartor::operator++.
MapIterator()=default
bool is_left_child(const MapEntry &x)
MapEntry tree_min(MapEntry x)
Mimicks libc++'s __tree_min algorithm.
Generic representation of a type in a programming language.
A uniqued constant string class.
Definition ConstString.h:40
const char * AsCString(const char *value_if_empty=nullptr) const
Get the string value as a C string.
llvm::StringRef GetString() const
size_t Printf(const char *format,...) __attribute__((format(printf
Output printf formatted output to the stream.
Definition Stream.cpp:134
uint32_t CalculateNumChildrenIgnoringErrors(uint32_t max=UINT32_MAX)
SyntheticChildrenFrontEnd(ValueObject &backend)
llvm::Expected< uint32_t > CalculateNumChildren() override
lldb::ValueObjectSP GetChildAtIndex(uint32_t idx) override
llvm::Expected< size_t > GetIndexOfChildWithName(ConstString name) override
Determine the index of a named child.
lldb::ChildCacheState Update() override
This function is assumed to always succeed and if it fails, the front-end should know to deal with it...
LibCxxMapIteratorSyntheticFrontEnd(lldb::ValueObjectSP valobj_sp)
lldb::ValueObjectSP GetChildAtIndex(uint32_t idx) override
llvm::Expected< uint32_t > CalculateNumChildrenForOldCompressedPairLayout(ValueObject &pair)
lldb::ChildCacheState Update() override
This function is assumed to always succeed and if it fails, the front-end should know to deal with it...
llvm::Expected< uint32_t > CalculateNumChildren() override
LibcxxStdMapSyntheticFrontEnd(lldb::ValueObjectSP valobj_sp)
ValueObjectSP GetKeyValuePair(size_t idx, size_t max_depth)
Returns the ValueObject for the __tree_node type that holds the key/value pair of the node at index i...
#define UINT32_MAX
lldb::ValueObjectSP GetFirstValueOfLibCXXCompressedPair(ValueObject &pair)
Definition LibCxx.cpp:75
std::pair< lldb::ValueObjectSP, bool > GetValueOrOldCompressedPair(ValueObject &obj, llvm::StringRef child_name, llvm::StringRef compressed_pair_name)
Returns the ValueObjectSP of the child of obj.
Definition LibCxx.cpp:106
SyntheticChildrenFrontEnd * LibcxxStdMapSyntheticFrontEndCreator(CXXSyntheticChildren *, lldb::ValueObjectSP)
SyntheticChildrenFrontEnd * LibCxxMapIteratorSyntheticFrontEndCreator(CXXSyntheticChildren *, lldb::ValueObjectSP)
A class that represents a running process on the host machine.
ChildCacheState
Specifies if children need to be re-computed after a call to SyntheticChildrenFrontEnd::Update.
@ eRefetch
Children need to be recomputed dynamically.
std::shared_ptr< lldb_private::ValueObject > ValueObjectSP
std::shared_ptr< lldb_private::Target > TargetSP