blob: 9540bff97d2608b514e64a479dae3b1b66616fc3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
//===-- MsvcStlUnordered.cpp ----------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#include "MsvcStl.h"
#include "lldb/DataFormatters/TypeSynthetic.h"
using namespace lldb;
using namespace lldb_private;
namespace {
class UnorderedFrontEnd : public SyntheticChildrenFrontEnd {
public:
UnorderedFrontEnd(ValueObject &valobj) : SyntheticChildrenFrontEnd(valobj) {
Update();
}
llvm::Expected<size_t> GetIndexOfChildWithName(ConstString name) override {
if (!m_list_sp)
return llvm::createStringError("Missing _List");
return m_list_sp->GetIndexOfChildWithName(name);
}
lldb::ChildCacheState Update() override;
llvm::Expected<uint32_t> CalculateNumChildren() override {
if (!m_list_sp)
return llvm::createStringError("Missing _List");
return m_list_sp->GetNumChildren();
}
ValueObjectSP GetChildAtIndex(uint32_t idx) override {
if (!m_list_sp)
return nullptr;
return m_list_sp->GetChildAtIndex(idx);
}
private:
ValueObjectSP m_list_sp;
};
} // namespace
lldb::ChildCacheState UnorderedFrontEnd::Update() {
m_list_sp = nullptr;
ValueObjectSP list_sp = m_backend.GetChildMemberWithName("_List");
if (!list_sp)
return lldb::ChildCacheState::eRefetch;
m_list_sp = list_sp->GetSyntheticValue();
return lldb::ChildCacheState::eRefetch;
}
bool formatters::IsMsvcStlUnordered(ValueObject &valobj) {
if (auto valobj_sp = valobj.GetNonSyntheticValue())
return valobj_sp->GetChildMemberWithName("_List") != nullptr;
return false;
}
SyntheticChildrenFrontEnd *formatters::MsvcStlUnorderedSyntheticFrontEndCreator(
CXXSyntheticChildren *, lldb::ValueObjectSP valobj_sp) {
if (valobj_sp)
return new UnorderedFrontEnd(*valobj_sp);
return nullptr;
}
|