[lldb][DWARFUnit] Implement PeekDIEName query (#78486)
[llvm-project.git] / lldb / source / Symbol / TypeMap.cpp
blob8933de53749cc9923291d67838c2689225f763b9
1 //===-- TypeMap.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 //===----------------------------------------------------------------------===//
9 #include <vector>
11 #include "llvm/Support/FormattedStream.h"
12 #include "llvm/Support/raw_ostream.h"
14 #include "lldb/Symbol/SymbolFile.h"
15 #include "lldb/Symbol/SymbolVendor.h"
16 #include "lldb/Symbol/Type.h"
17 #include "lldb/Symbol/TypeMap.h"
19 using namespace lldb;
20 using namespace lldb_private;
22 TypeMap::TypeMap() : m_types() {}
24 // Destructor
25 TypeMap::~TypeMap() = default;
27 void TypeMap::Insert(const TypeSP &type_sp) {
28 // Just push each type on the back for now. We will worry about uniquing
29 // later
30 if (type_sp)
31 m_types.insert(std::make_pair(type_sp->GetID(), type_sp));
34 bool TypeMap::InsertUnique(const TypeSP &type_sp) {
35 if (type_sp) {
36 user_id_t type_uid = type_sp->GetID();
37 iterator pos, end = m_types.end();
39 for (pos = m_types.find(type_uid);
40 pos != end && pos->second->GetID() == type_uid; ++pos) {
41 if (pos->second.get() == type_sp.get())
42 return false;
44 Insert(type_sp);
46 return true;
49 // Find a base type by its unique ID.
50 // TypeSP
51 // TypeMap::FindType(lldb::user_id_t uid)
52 //{
53 // iterator pos = m_types.find(uid);
54 // if (pos != m_types.end())
55 // return pos->second;
56 // return TypeSP();
57 //}
59 // Find a type by name.
60 // TypeMap
61 // TypeMap::FindTypes (ConstString name)
62 //{
63 // // Do we ever need to make a lookup by name map? Here we are doing
64 // // a linear search which isn't going to be fast.
65 // TypeMap types(m_ast.getTargetInfo()->getTriple().getTriple().c_str());
66 // iterator pos, end;
67 // for (pos = m_types.begin(), end = m_types.end(); pos != end; ++pos)
68 // if (pos->second->GetName() == name)
69 // types.Insert (pos->second);
70 // return types;
71 //}
73 void TypeMap::Clear() { m_types.clear(); }
75 uint32_t TypeMap::GetSize() const { return m_types.size(); }
77 bool TypeMap::Empty() const { return m_types.empty(); }
79 // GetTypeAtIndex isn't used a lot for large type lists, currently only for
80 // type lists that are returned for "image dump -t TYPENAME" commands and other
81 // simple symbol queries that grab the first result...
83 TypeSP TypeMap::GetTypeAtIndex(uint32_t idx) {
84 iterator pos, end;
85 uint32_t i = idx;
86 for (pos = m_types.begin(), end = m_types.end(); pos != end; ++pos) {
87 if (i == 0)
88 return pos->second;
89 --i;
91 return TypeSP();
94 lldb::TypeSP TypeMap::FirstType() const {
95 if (m_types.empty())
96 return TypeSP();
97 return m_types.begin()->second;
100 void TypeMap::ForEach(
101 std::function<bool(const lldb::TypeSP &type_sp)> const &callback) const {
102 for (auto pos = m_types.begin(), end = m_types.end(); pos != end; ++pos) {
103 if (!callback(pos->second))
104 break;
108 void TypeMap::ForEach(
109 std::function<bool(lldb::TypeSP &type_sp)> const &callback) {
110 for (auto pos = m_types.begin(), end = m_types.end(); pos != end; ++pos) {
111 if (!callback(pos->second))
112 break;
116 bool TypeMap::Remove(const lldb::TypeSP &type_sp) {
117 if (type_sp) {
118 lldb::user_id_t uid = type_sp->GetID();
119 for (iterator pos = m_types.find(uid), end = m_types.end();
120 pos != end && pos->first == uid; ++pos) {
121 if (pos->second == type_sp) {
122 m_types.erase(pos);
123 return true;
127 return false;
130 void TypeMap::Dump(Stream *s, bool show_context,
131 lldb::DescriptionLevel level) const {
132 for (const auto &pair : m_types)
133 pair.second->Dump(s, show_context, level);
136 void TypeMap::RemoveMismatchedTypes(llvm::StringRef type_scope,
137 llvm::StringRef type_basename,
138 TypeClass type_class, bool exact_match) {
139 // Our "collection" type currently is a std::map which doesn't have any good
140 // way to iterate and remove items from the map so we currently just make a
141 // new list and add all of the matching types to it, and then swap it into
142 // m_types at the end
143 collection matching_types;
145 iterator pos, end = m_types.end();
147 for (pos = m_types.begin(); pos != end; ++pos) {
148 Type *the_type = pos->second.get();
149 bool keep_match = false;
150 TypeClass match_type_class = eTypeClassAny;
152 if (type_class != eTypeClassAny) {
153 match_type_class = the_type->GetForwardCompilerType().GetTypeClass();
154 if ((match_type_class & type_class) == 0)
155 continue;
158 ConstString match_type_name_const_str(the_type->GetQualifiedName());
159 if (match_type_name_const_str) {
160 const char *match_type_name = match_type_name_const_str.GetCString();
161 llvm::StringRef match_type_scope;
162 llvm::StringRef match_type_basename;
163 if (Type::GetTypeScopeAndBasename(match_type_name, match_type_scope,
164 match_type_basename,
165 match_type_class)) {
166 if (match_type_basename == type_basename) {
167 const size_t type_scope_size = type_scope.size();
168 const size_t match_type_scope_size = match_type_scope.size();
169 if (exact_match || (type_scope_size == match_type_scope_size)) {
170 keep_match = match_type_scope == type_scope;
171 } else {
172 if (match_type_scope_size > type_scope_size) {
173 const size_t type_scope_pos = match_type_scope.rfind(type_scope);
174 if (type_scope_pos == match_type_scope_size - type_scope_size) {
175 if (type_scope_pos >= 2) {
176 // Our match scope ends with the type scope we were looking
177 // for, but we need to make sure what comes before the
178 // matching type scope is a namespace boundary in case we are
179 // trying to match: type_basename = "d" type_scope = "b::c::"
180 // We want to match:
181 // match_type_scope "a::b::c::"
182 // But not:
183 // match_type_scope "a::bb::c::"
184 // So below we make sure what comes before "b::c::" in
185 // match_type_scope is "::", or the namespace boundary
186 if (match_type_scope[type_scope_pos - 1] == ':' &&
187 match_type_scope[type_scope_pos - 2] == ':') {
188 keep_match = true;
195 } else {
196 // The type we are currently looking at doesn't exists in a namespace
197 // or class, so it only matches if there is no type scope...
198 keep_match = type_scope.empty() && type_basename == match_type_name;
202 if (keep_match) {
203 matching_types.insert(*pos);
206 m_types.swap(matching_types);