LLDB mainline
LibCxxAtomic.cpp
Go to the documentation of this file.
1//===-- LibCxxAtomic.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 "LibCxxAtomic.h"
11
12using namespace lldb;
13using namespace lldb_private;
14using namespace lldb_private::formatters;
15
16//
17// We are supporting two versions of libc++ std::atomic
18//
19// Given std::atomic<int> i;
20//
21// The previous version of std::atomic was laid out like this
22//
23// (lldb) frame var -L -R i
24// 0x00007ffeefbff9a0: (std::__1::atomic<int>) i = {
25// 0x00007ffeefbff9a0: std::__1::__atomic_base<int, true> = {
26// 0x00007ffeefbff9a0: std::__1::__atomic_base<int, false> = {
27// 0x00007ffeefbff9a0: __a_ = 5
28// }
29// }
30// }
31//
32// In this case we need to obtain __a_ and the current version is laid out as so
33//
34// (lldb) frame var -L -R i
35// 0x00007ffeefbff9b0: (std::__1::atomic<int>) i = {
36// 0x00007ffeefbff9b0: std::__1::__atomic_base<int, true> = {
37// 0x00007ffeefbff9b0: std::__1::__atomic_base<int, false> = {
38// 0x00007ffeefbff9b0: __a_ = {
39// 0x00007ffeefbff9b0: std::__1::__cxx_atomic_base_impl<int> = {
40// 0x00007ffeefbff9b0: __a_value = 5
41// }
42// }
43// }
44// }
45//}
46//
47// In this case we need to obtain __a_value
48//
49// The below method covers both cases and returns the relevant member as a
50// ValueObjectSP
51//
54 ValueObjectSP non_sythetic = valobj.GetNonSyntheticValue();
55 if (!non_sythetic)
56 return {};
57
58 ValueObjectSP member__a_ = non_sythetic->GetChildMemberWithName("__a_");
59 if (!member__a_)
60 return {};
61
62 ValueObjectSP member__a_value =
63 member__a_->GetChildMemberWithName("__a_value");
64 if (!member__a_value)
65 return member__a_;
66
67 return member__a_value;
68}
69
71 ValueObject &valobj, Stream &stream, const TypeSummaryOptions &options) {
72
73 if (ValueObjectSP atomic_value = GetLibCxxAtomicValue(valobj)) {
74 std::string summary;
75 if (atomic_value->GetSummaryAsCString(summary, options) &&
76 summary.size() > 0) {
77 stream.Printf("%s", summary.c_str());
78 return true;
79 }
80 }
81
82 return false;
83}
84
85namespace lldb_private {
86namespace formatters {
88public:
90
92
93 llvm::Expected<uint32_t> CalculateNumChildren() override;
94
95 lldb::ValueObjectSP GetChildAtIndex(uint32_t idx) override;
96
98
99 llvm::Expected<size_t> GetIndexOfChildWithName(ConstString name) override;
100
101private:
103};
104} // namespace formatters
105} // namespace lldb_private
106
110
119
124
127 uint32_t idx) {
128 if (idx == 0)
129 return m_real_child->GetSP()->Clone(ConstString("Value"));
130 return nullptr;
131}
132
133llvm::Expected<size_t>
136 if (name == "Value")
137 return 0;
138 return llvm::createStringError("Type has no child named '%s'",
139 name.AsCString());
140}
141
145 if (valobj_sp)
146 return new LibcxxStdAtomicSyntheticFrontEnd(valobj_sp);
147 return nullptr;
148}
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.
A stream class that can stream formatted output to a file.
Definition Stream.h:28
size_t Printf(const char *format,...) __attribute__((format(printf
Output printf formatted output to the stream.
Definition Stream.cpp:134
SyntheticChildrenFrontEnd(ValueObject &backend)
virtual lldb::ValueObjectSP GetNonSyntheticValue()
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
llvm::Expected< uint32_t > CalculateNumChildren() override
bool LibCxxAtomicSummaryProvider(ValueObject &valobj, Stream &stream, const TypeSummaryOptions &options)
SyntheticChildrenFrontEnd * LibcxxAtomicSyntheticFrontEndCreator(CXXSyntheticChildren *, lldb::ValueObjectSP)
lldb::ValueObjectSP GetLibCxxAtomicValue(ValueObject &valobj)
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