LLDB mainline
LibCxxProxyArray.cpp
Go to the documentation of this file.
1//===-- LibCxxProxyArray.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 <optional>
14
15using namespace lldb;
16using namespace lldb_private;
17using namespace lldb_private::formatters;
18
19namespace lldb_private {
20namespace formatters {
21
22/// Data formatter for libc++'s std::"proxy_array".
23///
24/// A proxy_array's are created by using:
25/// std::gslice_array operator[](const std::gslice& gslicearr);
26/// std::mask_array operator[](const std::valarray<bool>& boolarr);
27/// std::indirect_array operator[](const std::valarray<std::size_t>& indarr);
28///
29/// These arrays have the following members:
30/// - __vp_ points to std::valarray::__begin_
31/// - __1d_ an array of offsets of the elements from @a __vp_
33public:
35
37
38 llvm::Expected<uint32_t> CalculateNumChildren() override;
39
40 lldb::ValueObjectSP GetChildAtIndex(uint32_t idx) override;
41
43
44 llvm::Expected<size_t> GetIndexOfChildWithName(ConstString name) override;
45
46private:
47 /// A non-owning pointer to the array's __vp_.
48 ValueObject *m_base = nullptr;
49 /// The type of the array's template argument T.
51 /// The sizeof the array's template argument T.
52 uint32_t m_element_size = 0;
53
54 /// A non-owning pointer to the array's __1d_.__begin_.
55 ValueObject *m_start = nullptr;
56 /// A non-owning pointer to the array's __1d_.__end_.
58 /// The type of the __1d_ array's template argument T (size_t).
60 /// The sizeof the __1d_ array's template argument T (size_t)
62};
63
64} // namespace formatters
65} // namespace lldb_private
66
73
76 // these need to stay around because they are child objects who will follow
77 // their parent's life cycle
78 // delete m_base;
79}
80
81llvm::Expected<uint32_t> lldb_private::formatters::
83
84 if (!m_start || !m_finish)
85 return 0;
86 uint64_t start_val = m_start->GetValueAsUnsigned(0);
87 uint64_t finish_val = m_finish->GetValueAsUnsigned(0);
88
89 if (start_val == 0 || finish_val == 0)
90 return 0;
91
92 if (start_val >= finish_val)
93 return 0;
94
95 size_t num_children = (finish_val - start_val);
96 if (num_children % m_element_size_size_t)
97 return 0;
98 return num_children / m_element_size_size_t;
99}
100
103 uint32_t idx) {
104 if (!m_base)
105 return lldb::ValueObjectSP();
106
107 uint64_t offset = idx * m_element_size_size_t;
108 offset = offset + m_start->GetValueAsUnsigned(0);
109
111 "", offset, m_backend.GetExecutionContextRef(), m_element_type_size_t);
112 if (!indirect)
113 return lldb::ValueObjectSP();
114
115 const size_t value = indirect->GetValueAsUnsigned(0);
116 if (!value)
117 return lldb::ValueObjectSP();
118
119 offset = value * m_element_size;
120 offset = offset + m_base->GetValueAsUnsigned(0);
121
122 StreamString name;
123 name.Printf("[%" PRIu64 "] -> [%zu]", (uint64_t)idx, value);
124 return CreateValueObjectFromAddress(name.GetString(), offset,
125 m_backend.GetExecutionContextRef(),
127}
128
131 m_base = nullptr;
132 m_start = nullptr;
133 m_finish = nullptr;
134
135 CompilerType type = m_backend.GetCompilerType();
136 if (type.GetNumTemplateArguments() == 0)
138
140 if (std::optional<uint64_t> size =
141 llvm::expectedToOptional(m_element_type.GetByteSize(nullptr)))
142 m_element_size = *size;
143
144 if (m_element_size == 0)
146
147 ValueObjectSP vector = m_backend.GetChildMemberWithName("__1d_");
148 if (!vector)
150
151 type = vector->GetCompilerType();
152 if (type.GetNumTemplateArguments() == 0)
154
156 if (std::optional<uint64_t> size =
157 llvm::expectedToOptional(m_element_type_size_t.GetByteSize(nullptr)))
158 m_element_size_size_t = *size;
159
160 if (m_element_size_size_t == 0)
162
163 ValueObjectSP base = m_backend.GetChildMemberWithName("__vp_");
164 ValueObjectSP start = vector->GetChildMemberWithName("__begin_");
165 ValueObjectSP finish = vector->GetChildMemberWithName("__end_");
166 if (!base || !start || !finish)
168
169 m_base = base.get();
170 m_start = start.get();
171 m_finish = finish.get();
172
174}
175
176llvm::Expected<size_t>
179 if (!m_base)
180 return llvm::createStringError("Type has no child named '%s'",
181 name.AsCString());
182 auto optional_idx = formatters::ExtractIndexFromString(name.GetCString());
183 if (!optional_idx) {
184 return llvm::createStringError("Type has no child named '%s'",
185 name.AsCString());
186 }
187 return *optional_idx;
188}
189
Generic representation of a type in a programming language.
CompilerType GetTypeTemplateArgument(size_t idx, bool expand_pack=false) const
size_t GetNumTemplateArguments(bool expand_pack=false) const
Return the number of template arguments the type has.
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.
const char * GetCString() 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
SyntheticChildrenFrontEnd(ValueObject &backend)
lldb::ValueObjectSP CreateValueObjectFromAddress(llvm::StringRef name, uint64_t address, const ExecutionContext &exe_ctx, CompilerType type, bool do_deref=true)
Data formatter for libc++'s std::"proxy_array".
uint32_t m_element_size
The sizeof the array's template argument T.
ValueObject * m_finish
A non-owning pointer to the array's __1d_.__end_.
uint32_t m_element_size_size_t
The sizeof the __1d_ array's template argument T (size_t)
CompilerType m_element_type_size_t
The type of the __1d_ array's template argument T (size_t).
lldb::ChildCacheState Update() override
This function is assumed to always succeed and if it fails, the front-end should know to deal with it...
lldb::ValueObjectSP GetChildAtIndex(uint32_t idx) override
llvm::Expected< size_t > GetIndexOfChildWithName(ConstString name) override
ValueObject * m_start
A non-owning pointer to the array's __1d_.__begin_.
ValueObject * m_base
A non-owning pointer to the array's __vp_.
CompilerType m_element_type
The type of the array's template argument T.
std::optional< size_t > ExtractIndexFromString(const char *item_name)
SyntheticChildrenFrontEnd * LibcxxStdProxyArraySyntheticFrontEndCreator(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