LLDB mainline
UdtRecordCompleter.cpp
Go to the documentation of this file.
2
3#include "PdbAstBuilder.h"
4#include "PdbIndex.h"
5#include "PdbSymUid.h"
6#include "PdbUtil.h"
7
12#include "SymbolFileNativePDB.h"
13#include "lldb/Core/Address.h"
14#include "lldb/Symbol/Type.h"
18#include "lldb/lldb-forward.h"
19
20#include "llvm/ADT/STLExtras.h"
21#include "llvm/DebugInfo/CodeView/SymbolDeserializer.h"
22#include "llvm/DebugInfo/CodeView/TypeDeserializer.h"
23#include "llvm/DebugInfo/CodeView/TypeIndex.h"
24#include "llvm/DebugInfo/PDB/Native/GlobalsStream.h"
25#include "llvm/DebugInfo/PDB/Native/TpiStream.h"
26#include "llvm/DebugInfo/PDB/PDBTypes.h"
27#include <optional>
28
29using namespace llvm::codeview;
30using namespace llvm::pdb;
31using namespace lldb;
32using namespace lldb_private;
33using namespace lldb_private::npdb;
34
35using Error = llvm::Error;
36
38 PdbTypeSymId id, CompilerType &derived_ct, clang::TagDecl &tag_decl,
39 PdbAstBuilder &ast_builder, PdbIndex &index,
40 llvm::DenseMap<clang::Decl *, DeclStatus> &decl_to_status,
41 llvm::DenseMap<lldb::opaque_compiler_type_t,
42 llvm::SmallSet<std::pair<llvm::StringRef, CompilerType>, 8>>
43 &cxx_record_map)
44 : m_cv_tag_record(CVTagRecord::create(index.tpi().getType(id.index))),
45 m_id(id), m_derived_ct(derived_ct), m_tag_decl(tag_decl),
46 m_ast_builder(ast_builder), m_index(index),
47 m_decl_to_status(decl_to_status), m_cxx_record_map(cxx_record_map) {
48 switch (m_cv_tag_record.kind()) {
49 case CVTagRecord::Enum:
50 break;
51 case CVTagRecord::Union:
52 m_layout.bit_size = m_cv_tag_record.asUnion().getSize() * 8;
53 m_record.record.kind = Member::Union;
54 break;
55 case CVTagRecord::Class:
56 case CVTagRecord::Struct:
57 m_layout.bit_size = m_cv_tag_record.asClass().getSize() * 8;
58 m_record.record.kind = Member::Struct;
59 break;
60 }
61}
62
64 llvm::codeview::TypeIndex ti, llvm::codeview::MemberAccess access,
65 std::optional<uint64_t> vtable_idx) {
66 PdbTypeSymId type_id(ti);
67 clang::QualType qt = m_ast_builder.GetOrCreateType(type_id);
68
69 CVType udt_cvt = m_index.tpi().getType(ti);
70
71 std::unique_ptr<clang::CXXBaseSpecifier> base_spec =
72 m_ast_builder.clang().CreateBaseClassSpecifier(
73 qt.getAsOpaquePtr(), TranslateMemberAccess(access),
74 vtable_idx.has_value(), udt_cvt.kind() == LF_CLASS);
75 if (!base_spec)
76 return {};
77
78 m_bases.push_back(
79 std::make_pair(vtable_idx.value_or(0), std::move(base_spec)));
80
81 return qt;
82}
83
84void UdtRecordCompleter::AddMethod(llvm::StringRef name, TypeIndex type_idx,
85 MemberAccess access, MethodOptions options,
86 MemberAttributes attrs) {
87 clang::QualType method_qt =
88 m_ast_builder.GetOrCreateType(PdbTypeSymId(type_idx));
89 if (method_qt.isNull())
90 return;
91 CompilerType method_ct = m_ast_builder.ToCompilerType(method_qt);
93 lldb::opaque_compiler_type_t derived_opaque_ty =
94 m_derived_ct.GetOpaqueQualType();
95 auto iter = m_cxx_record_map.find(derived_opaque_ty);
96 if (iter != m_cxx_record_map.end()) {
97 if (iter->getSecond().contains({name, method_ct})) {
98 return;
99 }
100 }
101
102 lldb::AccessType access_type = TranslateMemberAccess(access);
103 bool is_artificial = (options & MethodOptions::CompilerGenerated) ==
104 MethodOptions::CompilerGenerated;
105 m_ast_builder.clang().AddMethodToCXXRecordType(
106 derived_opaque_ty, name.data(), /*asm_label=*/{}, method_ct, access_type,
107 attrs.isVirtual(), attrs.isStatic(), false, false, false, is_artificial);
108
109 m_cxx_record_map[derived_opaque_ty].insert({name, method_ct});
110}
111
112Error UdtRecordCompleter::visitKnownMember(CVMemberRecord &cvr,
113 BaseClassRecord &base) {
114 clang::QualType base_qt =
115 AddBaseClassForTypeIndex(base.Type, base.getAccess());
116
117 if (base_qt.isNull())
118 return llvm::Error::success();
119 auto decl =
120 m_ast_builder.clang().GetAsCXXRecordDecl(base_qt.getAsOpaquePtr());
121 lldbassert(decl);
122
123 auto offset = clang::CharUnits::fromQuantity(base.getBaseOffset());
124 m_layout.base_offsets.insert(std::make_pair(decl, offset));
125
126 return llvm::Error::success();
127}
128
129Error UdtRecordCompleter::visitKnownMember(CVMemberRecord &cvr,
130 VirtualBaseClassRecord &base) {
131 AddBaseClassForTypeIndex(base.BaseType, base.getAccess(), base.VTableIndex);
132
133 return Error::success();
134}
135
136Error UdtRecordCompleter::visitKnownMember(CVMemberRecord &cvr,
137 ListContinuationRecord &cont) {
138 return Error::success();
139}
140
141Error UdtRecordCompleter::visitKnownMember(CVMemberRecord &cvr,
142 VFPtrRecord &vfptr) {
143 return Error::success();
144}
145
146Error UdtRecordCompleter::visitKnownMember(
147 CVMemberRecord &cvr, StaticDataMemberRecord &static_data_member) {
148 clang::QualType member_type =
149 m_ast_builder.GetOrCreateType(PdbTypeSymId(static_data_member.Type));
150 if (member_type.isNull())
151 return llvm::Error::success();
152
153 CompilerType member_ct = m_ast_builder.ToCompilerType(member_type);
154
155 lldb::AccessType access =
156 TranslateMemberAccess(static_data_member.getAccess());
158 m_derived_ct, static_data_member.Name, member_ct, access);
159
160 // Static constant members may be a const[expr] declaration.
161 // Query the symbol's value as the variable initializer if valid.
162 if (member_ct.IsConst() && member_ct.IsCompleteType()) {
163 // Reconstruct the full name for the static member. Use the names as given
164 // in the PDB. This ensures we match the compiler's style of names (e.g.
165 // "A<B<int> >::Foo" vs "A<B<int>>::Foo").
166 std::string qual_name =
167 (m_cv_tag_record.name() + "::" + static_data_member.Name).str();
168
169 auto results =
170 m_index.globals().findRecordsByName(qual_name, m_index.symrecords());
171
172 for (const auto &result : results) {
173 if (result.second.kind() == SymbolKind::S_CONSTANT) {
174 ConstantSym constant(SymbolRecordKind::ConstantSym);
175 cantFail(SymbolDeserializer::deserializeAs<ConstantSym>(result.second,
176 constant));
177
178 clang::QualType qual_type = decl->getType();
179 unsigned type_width = decl->getASTContext().getIntWidth(qual_type);
180 unsigned constant_width = constant.Value.getBitWidth();
181
182 if (qual_type->isIntegralOrEnumerationType()) {
183 if (type_width >= constant_width) {
185 decl, constant.Value.extOrTrunc(type_width));
186 } else {
188 "Class '{0}' has a member '{1}' of type '{2}' ({3} bits) "
189 "which resolves to a wider constant value ({4} bits). "
190 "Ignoring constant.",
191 m_derived_ct.GetTypeName(), static_data_member.Name,
192 member_ct.GetTypeName(), type_width, constant_width);
193 }
194 } else {
195 lldb::BasicType basic_type_enum = member_ct.GetBasicTypeEnumeration();
196 switch (basic_type_enum) {
200 if (type_width == constant_width) {
202 decl, basic_type_enum == lldb::eBasicTypeFloat
203 ? llvm::APFloat(constant.Value.bitsToFloat())
204 : llvm::APFloat(constant.Value.bitsToDouble()));
205 decl->setConstexpr(true);
206 } else {
207 LLDB_LOG(
209 "Class '{0}' has a member '{1}' of type '{2}' ({3} bits) "
210 "which resolves to a constant value of mismatched width "
211 "({4} bits). Ignoring constant.",
212 m_derived_ct.GetTypeName(), static_data_member.Name,
213 member_ct.GetTypeName(), type_width, constant_width);
214 }
215 break;
216 default:
217 break;
218 }
219 }
220 break;
221 }
222 }
223 }
224
225 // FIXME: Add a PdbSymUid namespace for field list members and update
226 // the m_uid_to_decl map with this decl.
227 return Error::success();
228}
229
230Error UdtRecordCompleter::visitKnownMember(CVMemberRecord &cvr,
231 NestedTypeRecord &nested) {
232 // Typedefs can only be added on structs.
233 if (m_record.record.kind != Member::Struct)
234 return Error::success();
235
236 clang::QualType qt =
237 m_ast_builder.GetOrCreateType(PdbTypeSymId(nested.Type, false));
238 if (qt.isNull())
239 return Error::success();
240 CompilerType ct = m_ast_builder.ToCompilerType(qt);
241
242 // There's no distinction between nested types and typedefs, so check if we
243 // encountered a nested type.
244 auto *pdb = static_cast<SymbolFileNativePDB *>(
245 m_ast_builder.clang().GetSymbolFile()->GetBackingSymbolFile());
246 std::optional<TypeIndex> parent = pdb->GetParentType(nested.Type);
247 if (parent && *parent == m_id.index && ct.GetTypeName(true) == nested.Name)
248 return Error::success();
249
250 clang::DeclContext *decl_ctx =
251 m_ast_builder.GetOrCreateDeclContextForUid(m_id);
252 if (!decl_ctx)
253 return Error::success();
254
255 std::string name = nested.Name.str();
256 ct.CreateTypedef(name.c_str(), m_ast_builder.ToCompilerDeclContext(*decl_ctx),
257 0);
258 return Error::success();
259}
260
261Error UdtRecordCompleter::visitKnownMember(CVMemberRecord &cvr,
262 DataMemberRecord &data_member) {
263
264 uint64_t offset = data_member.FieldOffset * 8;
265 uint32_t bitfield_width = 0;
266
267 TypeIndex ti(data_member.Type);
268 if (!ti.isSimple()) {
269 CVType cvt = m_index.tpi().getType(ti);
270 if (cvt.kind() == LF_BITFIELD) {
271 BitFieldRecord bfr;
272 llvm::cantFail(TypeDeserializer::deserializeAs<BitFieldRecord>(cvt, bfr));
273 offset += bfr.BitOffset;
274 bitfield_width = bfr.BitSize;
275 ti = bfr.Type;
276 }
277 }
278
279 clang::QualType member_qt = m_ast_builder.GetOrCreateType(PdbTypeSymId(ti));
280 if (member_qt.isNull())
281 return Error::success();
282 TypeSystemClang::RequireCompleteType(m_ast_builder.ToCompilerType(member_qt));
283 lldb::AccessType access = TranslateMemberAccess(data_member.getAccess());
284 size_t field_size =
285 bitfield_width ? bitfield_width : GetSizeOfType(ti, m_index.tpi()) * 8;
286 if (field_size == 0)
287 return Error::success();
288 m_record.CollectMember(data_member.Name, offset, field_size, member_qt, access,
289 bitfield_width);
290 return Error::success();
291}
292
293Error UdtRecordCompleter::visitKnownMember(CVMemberRecord &cvr,
294 OneMethodRecord &one_method) {
295 AddMethod(one_method.Name, one_method.Type, one_method.getAccess(),
296 one_method.getOptions(), one_method.Attrs);
297
298 return Error::success();
299}
300
301Error UdtRecordCompleter::visitKnownMember(CVMemberRecord &cvr,
302 OverloadedMethodRecord &overloaded) {
303 TypeIndex method_list_idx = overloaded.MethodList;
304
305 CVType method_list_type = m_index.tpi().getType(method_list_idx);
306 assert(method_list_type.kind() == LF_METHODLIST);
307
308 MethodOverloadListRecord method_list;
309 llvm::cantFail(TypeDeserializer::deserializeAs<MethodOverloadListRecord>(
310 method_list_type, method_list));
311
312 for (const OneMethodRecord &method : method_list.Methods)
313 AddMethod(overloaded.Name, method.Type, method.getAccess(),
314 method.getOptions(), method.Attrs);
315
316 return Error::success();
317}
318
319Error UdtRecordCompleter::visitKnownMember(CVMemberRecord &cvr,
320 EnumeratorRecord &enumerator) {
321 Declaration decl;
322 llvm::StringRef name = DropNameScope(enumerator.getName());
323
324 m_ast_builder.clang().AddEnumerationValueToEnumerationType(
325 m_derived_ct, decl, name.str().c_str(), enumerator.Value);
326 return Error::success();
327}
328
330 // Ensure the correct order for virtual bases.
331 llvm::stable_sort(m_bases, llvm::less_first());
332
333 std::vector<std::unique_ptr<clang::CXXBaseSpecifier>> bases;
334 bases.reserve(m_bases.size());
335 for (auto &ib : m_bases)
336 bases.push_back(std::move(ib.second));
337
339 // Make sure all base classes refer to complete types and not forward
340 // declarations. If we don't do this, clang will crash with an
341 // assertion in the call to clang_type.TransferBaseClasses()
342 for (const auto &base_class : bases) {
343 clang::TypeSourceInfo *type_source_info =
344 base_class->getTypeSourceInfo();
345 if (type_source_info) {
347 clang.GetType(type_source_info->getType()));
348 }
349 }
350
351 clang.TransferBaseClasses(m_derived_ct.GetOpaqueQualType(), std::move(bases));
352
353 clang.AddMethodOverridesForCXXRecordType(m_derived_ct.GetOpaqueQualType());
354 FinishRecord();
357
358 if (auto *record_decl = llvm::dyn_cast<clang::CXXRecordDecl>(&m_tag_decl)) {
359 m_ast_builder.GetClangASTImporter().SetRecordLayout(record_decl, m_layout);
360 }
361}
362
363uint64_t
365 uint64_t bit_offset, CompilerType parent_ct,
366 ClangASTImporter::LayoutInfo &parent_layout,
367 clang::DeclContext *parent_decl_ctx) {
369 clang.GetSymbolFile()->GetBackingSymbolFile());
370 clang::FieldDecl *field_decl = nullptr;
371 uint64_t bit_size = 0;
372 switch (field->kind) {
373 case Member::Field: {
375 parent_ct, field->name, m_ast_builder.ToCompilerType(field->qt),
376 field->access, field->bitfield_width);
377 bit_size = field->bit_size;
378 break;
379 };
380 case Member::Struct:
381 case Member::Union: {
382 clang::TagTypeKind kind = field->kind == Member::Struct
383 ? clang::TagTypeKind::Struct
384 : clang::TagTypeKind::Union;
385 ClangASTMetadata metadata;
386 metadata.SetUserID(pdb->anonymous_id);
387 metadata.SetIsDynamicCXXType(false);
388 CompilerType record_ct = clang.CreateRecordType(
389 parent_decl_ctx, OptionalClangModuleID(), lldb::eAccessPublic, "",
390 llvm::to_underlying(kind), lldb::eLanguageTypeC_plus_plus, metadata);
393 clang::DeclContext *decl_ctx = clang.GetDeclContextForType(record_ct);
394 for (const auto &member : field->fields) {
395 uint64_t member_offset = field->kind == Member::Struct
396 ? member->bit_offset - field->base_offset
397 : 0;
398 uint64_t member_bit_size = AddMember(clang, member.get(), member_offset,
399 record_ct, layout, decl_ctx);
400 if (field->kind == Member::Struct)
401 bit_size = std::max(bit_size, member_offset + member_bit_size);
402 else
403 bit_size = std::max(bit_size, member_bit_size);
404 }
405 layout.bit_size = bit_size;
407 clang::RecordDecl *record_decl = clang.GetAsRecordDecl(record_ct);
408 m_ast_builder.GetClangASTImporter().SetRecordLayout(record_decl, layout);
410 parent_ct, "", record_ct, lldb::eAccessPublic, 0);
411 // Mark this record decl as completed.
412 DeclStatus status;
413 status.resolved = true;
414 status.uid = pdb->anonymous_id--;
415 m_decl_to_status.insert({record_decl, status});
416 break;
417 };
418 }
419 // FIXME: Add a PdbSymUid namespace for field list members and update
420 // the m_uid_to_decl map with this decl.
421 parent_layout.field_offsets.insert({field_decl, bit_offset});
422 return bit_size;
423}
424
427 clang::DeclContext *decl_ctx =
428 m_ast_builder.GetOrCreateDeclContextForUid(m_id);
429 m_record.ConstructRecord();
430 // Maybe we should check the construsted record size with the size in pdb. If
431 // they mismatch, it might be pdb has fields info missing.
432 for (const auto &field : m_record.record.fields) {
433 AddMember(clang, field.get(), field->bit_offset, m_derived_ct, m_layout,
434 decl_ctx);
435 }
436}
437
439 llvm::StringRef name, uint64_t offset, uint64_t field_size,
440 clang::QualType qt, lldb::AccessType access, uint64_t bitfield_width) {
441 fields_map[offset].push_back(std::make_unique<Member>(
442 name, offset, field_size, qt, access, bitfield_width));
443 if (start_offset > offset)
444 start_offset = offset;
445}
446
448 // For anonymous unions in a struct, msvc generated pdb doesn't have the
449 // entity for that union. So, we need to construct anonymous union and struct
450 // based on field offsets. The final AST is likely not matching the exact
451 // original AST, but the memory layout is preseved.
452 // After we collecting all fields in visitKnownMember, we have all fields in
453 // increasing offset order in m_fields. Since we are iterating in increase
454 // offset order, if the current offset is equal to m_start_offset, we insert
455 // it as direct field of top level record. If the current offset is greater
456 // than m_start_offset, we should be able to find a field in end_offset_map
457 // whose end offset is less than or equal to current offset. (if not, it might
458 // be missing field info. We will ignore the field in this case. e.g. Field A
459 // starts at 0 with size 4 bytes, and Field B starts at 2 with size 4 bytes.
460 // Normally, there must be something which ends at/before 2.) Then we will
461 // append current field to the end of parent record. If parent is struct, we
462 // can just grow it. If parent is a field, it's a field inside an union. We
463 // convert it into an anonymous struct containing old field and new field.
464
465 // The end offset to a vector of field/struct that ends at the offset.
466 std::map<uint64_t, std::vector<Member *>> end_offset_map;
467 auto is_last_end_offset = [&](auto it) {
468 return it != end_offset_map.end() && ++it == end_offset_map.end();
469 };
470
471 for (auto &pair : fields_map) {
472 uint64_t offset = pair.first;
473 auto &fields = pair.second;
474 lldbassert(offset >= start_offset);
475 Member *parent = &record;
476 if (offset > start_offset) {
477 // Find the field with largest end offset that is <= offset. If it's less
478 // than offset, it indicates there are padding bytes between end offset
479 // and offset.
480 lldbassert(!end_offset_map.empty());
481 auto iter = end_offset_map.lower_bound(offset);
482 if (iter == end_offset_map.end())
483 --iter;
484 else if (iter->first > offset) {
485 if (iter == end_offset_map.begin())
486 continue;
487 --iter;
488 }
489 if (iter->second.empty())
490 continue;
491
492 // If the new fields come after the already added ones
493 // without overlap, go back to the root.
494 if (iter->first <= offset && is_last_end_offset(iter)) {
495 if (record.kind == Member::Struct) {
496 parent = &record;
497 } else {
498 assert(record.kind == Member::Union &&
499 "Current record must be a union");
500 assert(!record.fields.empty());
501 // For unions, append the field to the last struct
502 parent = record.fields.back().get();
503 }
504 } else {
505 parent = iter->second.back();
506 iter->second.pop_back();
507 }
508 }
509 // If it's a field, then the field is inside a union, so we can safely
510 // increase its size by converting it to a struct to hold multiple fields.
511 if (parent->kind == Member::Field)
512 parent->ConvertToStruct();
513
514 if (fields.size() == 1) {
515 uint64_t end_offset = offset + fields.back()->bit_size;
516 parent->fields.push_back(std::move(fields.back()));
517 if (parent->kind == Member::Struct) {
518 end_offset_map[end_offset].push_back(parent);
519 } else {
520 lldbassert(parent == &record &&
521 "If parent is union, it must be the top level record.");
522 end_offset_map[end_offset].push_back(parent->fields.back().get());
523 }
524 } else {
525 if (parent->kind == Member::Struct) {
526 parent->fields.push_back(std::make_unique<Member>(Member::Union));
527 parent = parent->fields.back().get();
528 parent->bit_offset = offset;
529 } else {
530 lldbassert(parent == &record &&
531 "If parent is union, it must be the top level record.");
532 }
533 for (auto &field : fields) {
534 int64_t bit_size = field->bit_size;
535 parent->fields.push_back(std::move(field));
536 end_offset_map[offset + bit_size].push_back(
537 parent->fields.back().get());
538 }
539 }
540 }
541}
#define lldbassert(x)
Definition LLDBAssert.h:16
#define LLDB_LOG(log,...)
The LLDB_LOG* macros defined below are the way to emit log messages.
Definition Log.h:369
llvm::Error Error
void SetUserID(lldb::user_id_t user_id)
void SetIsDynamicCXXType(std::optional< bool > b)
Generic representation of a type in a programming language.
lldb::BasicType GetBasicTypeEnumeration() const
ConstString GetTypeName(bool BaseOnly=false) const
CompilerType CreateTypedef(const char *name, const CompilerDeclContext &decl_ctx, uint32_t payload) const
Create a typedef to this type using "name" as the name of the typedef this type is valid and the type...
A TypeSystem implementation based on Clang.
static clang::FieldDecl * AddFieldToRecordType(const CompilerType &type, llvm::StringRef name, const CompilerType &field_type, lldb::AccessType access, uint32_t bitfield_bit_size)
static void SetFloatingInitializerForVariable(clang::VarDecl *var, const llvm::APFloat &init_value)
Initializes a variable with a floating point value.
static void SetIntegerInitializerForVariable(clang::VarDecl *var, const llvm::APInt &init_value)
Initializes a variable with an integer value.
static void BuildIndirectFields(const CompilerType &type)
static clang::CXXRecordDecl * GetAsCXXRecordDecl(lldb::opaque_compiler_type_t type)
static bool CompleteTagDeclarationDefinition(const CompilerType &type)
static bool StartTagDeclarationDefinition(const CompilerType &type)
static clang::VarDecl * AddVariableToRecordType(const CompilerType &type, llvm::StringRef name, const CompilerType &var_type, lldb::AccessType access)
static void RequireCompleteType(CompilerType type)
Complete a type from debug info, or mark it as forcefully completed if there is no definition of the ...
PdbIndex - Lazy access to the important parts of a PDB file.
Definition PdbIndex.h:47
llvm::DenseMap< lldb::opaque_compiler_type_t, llvm::SmallSet< std::pair< llvm::StringRef, CompilerType >, 8 > > & m_cxx_record_map
ClangASTImporter::LayoutInfo m_layout
llvm::DenseMap< clang::Decl *, DeclStatus > & m_decl_to_status
uint64_t AddMember(TypeSystemClang &clang, Member *field, uint64_t bit_offset, CompilerType parent_ct, ClangASTImporter::LayoutInfo &parent_layout, clang::DeclContext *decl_ctx)
clang::QualType AddBaseClassForTypeIndex(llvm::codeview::TypeIndex ti, llvm::codeview::MemberAccess access, std::optional< uint64_t > vtable_idx=std::optional< uint64_t >())
void AddMethod(llvm::StringRef name, llvm::codeview::TypeIndex type_idx, llvm::codeview::MemberAccess access, llvm::codeview::MethodOptions options, llvm::codeview::MemberAttributes attrs)
UdtRecordCompleter(PdbTypeSymId id, CompilerType &derived_ct, clang::TagDecl &tag_decl, PdbAstBuilder &ast_builder, PdbIndex &index, llvm::DenseMap< clang::Decl *, DeclStatus > &decl_to_status, llvm::DenseMap< lldb::opaque_compiler_type_t, llvm::SmallSet< std::pair< llvm::StringRef, CompilerType >, 8 > > &cxx_record_map)
llvm::StringRef DropNameScope(llvm::StringRef name)
Definition PdbUtil.cpp:599
lldb::AccessType TranslateMemberAccess(llvm::codeview::MemberAccess access)
size_t GetSizeOfType(PdbTypeSymId id, llvm::pdb::TpiStream &tpi)
Definition PdbUtil.cpp:1094
A class that represents a running process on the host machine.
Log * GetLog(Cat mask)
Retrieve the Log object for the channel associated with the given log enum.
Definition Log.h:332
void * opaque_compiler_type_t
Definition lldb-types.h:89
BasicType
Basic types enumeration for the public API SBType::GetBasicType().
@ eBasicTypeLongDouble
@ eLanguageTypeC_plus_plus
ISO C++:1998.
llvm::DenseMap< const clang::FieldDecl *, uint64_t > field_offsets
enum lldb_private::npdb::UdtRecordCompleter::Member::Kind kind
void CollectMember(llvm::StringRef name, uint64_t offset, uint64_t field_size, clang::QualType qt, lldb::AccessType access, uint64_t bitfield_width)
std::map< uint64_t, llvm::SmallVector< MemberUP, 1 > > fields_map