LLDB mainline
TypeSystemClang.h
Go to the documentation of this file.
1//===-- TypeSystemClang.h ---------------------------------------*- C++ -*-===//
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#ifndef LLDB_SOURCE_PLUGINS_TYPESYSTEM_CLANG_TYPESYSTEMCLANG_H
10#define LLDB_SOURCE_PLUGINS_TYPESYSTEM_CLANG_TYPESYSTEMCLANG_H
11
12#include <cstdint>
13
14#include <functional>
15#include <initializer_list>
16#include <memory>
17#include <optional>
18#include <set>
19#include <string>
20#include <utility>
21#include <vector>
22
23#include "clang/AST/ASTContext.h"
24#include "clang/AST/ASTFwd.h"
25#include "clang/AST/Attr.h"
26#include "clang/AST/Decl.h"
27#include "clang/AST/TemplateBase.h"
28#include "clang/AST/Type.h"
29#include "clang/Basic/TargetInfo.h"
30#include "llvm/ADT/APSInt.h"
31#include "llvm/ADT/SmallVector.h"
32
38#include "lldb/Target/Target.h"
40#include "lldb/Utility/Flags.h"
41#include "lldb/Utility/Log.h"
43
45class PDBASTParser;
46
47namespace lldb_private {
48namespace npdb {
50} // namespace npdb
51} // namespace lldb_private
52
53namespace clang {
54class FileManager;
55class HeaderSearch;
56class HeaderSearchOptions;
57class ModuleMap;
58} // namespace clang
59
60namespace lldb_private {
61
62class ClangASTSource;
63class Declaration;
64
65/// A Clang module ID.
67 unsigned m_id = 0;
68
69public:
71 explicit OptionalClangModuleID(unsigned id) : m_id(id) {}
72 bool HasValue() const { return m_id != 0; }
73 unsigned GetValue() const { return m_id; }
74};
75
76/// The implementation of lldb::Type's m_payload field for TypeSystemClang.
78 /// The payload is used for typedefs and ptrauth types.
79 /// For typedefs, the Layout is as follows:
80 /// \verbatim
81 /// bit 0..30 ... Owning Module ID.
82 /// bit 31 ...... IsCompleteObjCClass.
83 /// \endverbatim
84 /// For ptrauth types, we store the PointerAuthQualifier as an opaque value.
86
87public:
88 TypePayloadClang() = default;
89 explicit TypePayloadClang(OptionalClangModuleID owning_module,
90 bool is_complete_objc_class = false);
91 explicit TypePayloadClang(uint32_t opaque_payload) : m_payload(opaque_payload) {}
92 operator Type::Payload() { return m_payload; }
93
94 static constexpr unsigned ObjCClassBit = 1 << 31;
96 void SetIsCompleteObjCClass(bool is_complete_objc_class) {
97 m_payload = is_complete_objc_class ? Flags(m_payload).Set(ObjCClassBit)
99 }
104 /// \}
105};
106
107/// A TypeSystem implementation based on Clang.
108///
109/// This class uses a single clang::ASTContext as the backend for storing
110/// its types and declarations. Every clang::ASTContext should also just have
111/// a single associated TypeSystemClang instance that manages it.
112///
113/// The clang::ASTContext instance can either be created by TypeSystemClang
114/// itself or it can adopt an existing clang::ASTContext (for example, when
115/// it is necessary to provide a TypeSystem interface for an existing
116/// clang::ASTContext that was created by clang::CompilerInstance).
118 // LLVM RTTI support
119 static char ID;
120
121public:
122 typedef void (*CompleteTagDeclCallback)(void *baton, clang::TagDecl *);
123 typedef void (*CompleteObjCInterfaceDeclCallback)(void *baton,
124 clang::ObjCInterfaceDecl *);
125
126 // llvm casting support
127 bool isA(const void *ClassID) const override { return ClassID == &ID; }
128 static bool classof(const TypeSystem *ts) { return ts->isA(&ID); }
129
130 /// Constructs a TypeSystemClang with an ASTContext using the given triple.
131 ///
132 /// \param name The name for the TypeSystemClang (for logging purposes)
133 /// \param triple The llvm::Triple used for the ASTContext. The triple defines
134 /// certain characteristics of the ASTContext and its types
135 /// (e.g., whether certain primitive types exist or what their
136 /// signedness is).
137 explicit TypeSystemClang(llvm::StringRef name, llvm::Triple triple);
138
139 /// Constructs a TypeSystemClang that uses an existing ASTContext internally.
140 /// Useful when having an existing ASTContext created by Clang.
141 ///
142 /// \param name The name for the TypeSystemClang (for logging purposes)
143 /// \param existing_ctxt An existing ASTContext.
144 explicit TypeSystemClang(llvm::StringRef name,
145 clang::ASTContext &existing_ctxt);
146
147 ~TypeSystemClang() override;
148
149 void Finalize() override;
150
151 // PluginInterface functions
152 llvm::StringRef GetPluginName() override { return GetPluginNameStatic(); }
153
154 static llvm::StringRef GetPluginNameStatic() { return "clang"; }
155
157 Module *module, Target *target);
158
161
162 static void Initialize();
163
164 static void Terminate();
165
166 static TypeSystemClang *GetASTContext(clang::ASTContext *ast_ctx);
167
168 /// Returns the display name of this TypeSystemClang that indicates what
169 /// purpose it serves in LLDB. Used for example in logs.
170 llvm::StringRef getDisplayName() const { return m_display_name; }
171
172 /// Returns the clang::ASTContext instance managed by this TypeSystemClang.
173 clang::ASTContext &getASTContext() const;
174
175 clang::MangleContext *getMangleContext();
176
177 std::shared_ptr<clang::TargetOptions> &getTargetOptions();
178
179 clang::TargetInfo *getTargetInfo();
180
181 void setSema(clang::Sema *s);
182 clang::Sema *getSema() { return m_sema; }
183
184 const char *GetTargetTriple();
185
187 llvm::IntrusiveRefCntPtr<clang::ExternalASTSource> ast_source_sp);
188
189 bool GetCompleteDecl(clang::Decl *decl) {
191 }
192
193 static void DumpDeclHiearchy(clang::Decl *decl);
194
195 static void DumpDeclContextHiearchy(clang::DeclContext *decl_ctx);
196
197 static bool GetCompleteDecl(clang::ASTContext *ast, clang::Decl *decl);
198
199 void SetMetadataAsUserID(const clang::Decl *decl, lldb::user_id_t user_id);
200 void SetMetadataAsUserID(const clang::Type *type, lldb::user_id_t user_id);
201
202 void SetMetadata(const clang::Decl *object, ClangASTMetadata meta_data);
203
204 void SetMetadata(const clang::Type *object, ClangASTMetadata meta_data);
205 std::optional<ClangASTMetadata> GetMetadata(const clang::Decl *object);
206 std::optional<ClangASTMetadata> GetMetadata(const clang::Type *object);
207
208 void SetCXXRecordDeclAccess(const clang::CXXRecordDecl *object,
209 clang::AccessSpecifier access);
210 clang::AccessSpecifier
211 GetCXXRecordDeclAccess(const clang::CXXRecordDecl *object);
212
213 // Basic Types
215 size_t bit_size) override;
216
218
219 static lldb::BasicType GetBasicTypeEnumeration(llvm::StringRef name);
220
222 GetBuiltinTypeForDWARFEncodingAndBitSize(llvm::StringRef type_name,
223 uint32_t dw_ate, uint32_t bit_size);
224
225 CompilerType GetCStringType(bool is_const);
226
227 static clang::DeclContext *GetDeclContextForType(clang::QualType type);
228
229 static clang::DeclContext *GetDeclContextForType(const CompilerType &type);
230
232 GetCompilerDeclContextForType(const CompilerType &type) override;
233
234 uint32_t GetPointerByteSize() override;
235
236 clang::TranslationUnitDecl *GetTranslationUnitDecl() {
237 return getASTContext().getTranslationUnitDecl();
238 }
239
240 static bool AreTypesSame(CompilerType type1, CompilerType type2,
241 bool ignore_qualifiers = false);
242
243 /// Creates a CompilerType from the given QualType with the current
244 /// TypeSystemClang instance as the CompilerType's typesystem.
245 /// \param qt The QualType for a type that belongs to the ASTContext of this
246 /// TypeSystemClang.
247 /// \return The CompilerType representing the given QualType. If the
248 /// QualType's type pointer is a nullptr then the function returns an
249 /// invalid CompilerType.
250 CompilerType GetType(clang::QualType qt) {
251 if (qt.getTypePtrOrNull() == nullptr)
252 return CompilerType();
253 // Check that the type actually belongs to this TypeSystemClang.
254 assert(qt->getAsTagDecl() == nullptr ||
255 &qt->getAsTagDecl()->getASTContext() == &getASTContext());
256 return CompilerType(weak_from_this(), qt.getAsOpaquePtr());
257 }
258
259 CompilerType GetTypeForDecl(clang::NamedDecl *decl);
260
261 CompilerType GetTypeForDecl(clang::TagDecl *decl);
262
263 CompilerType GetTypeForDecl(clang::ObjCInterfaceDecl *objc_decl);
264
265 CompilerType GetTypeForDecl(clang::ValueDecl *value_decl);
266
267 template <typename RecordDeclType>
269 GetTypeForIdentifier(const clang::ASTContext &Ctx, llvm::StringRef type_name,
270 clang::DeclContext *decl_context = nullptr) {
271 CompilerType compiler_type;
272 if (type_name.empty())
273 return compiler_type;
274
275 clang::ASTContext &ast = getASTContext();
276 if (!decl_context)
277 decl_context = ast.getTranslationUnitDecl();
278
279 clang::IdentifierInfo &myIdent = ast.Idents.get(type_name);
280 clang::DeclarationName myName =
281 ast.DeclarationNames.getIdentifier(&myIdent);
282 clang::DeclContext::lookup_result result = decl_context->lookup(myName);
283 if (result.empty())
284 return compiler_type;
285
286 clang::NamedDecl *named_decl = *result.begin();
287 if (const auto *type_decl = llvm::dyn_cast<clang::TypeDecl>(named_decl);
288 llvm::isa_and_nonnull<RecordDeclType>(type_decl))
289 compiler_type = CompilerType(
290 weak_from_this(), Ctx.getTypeDeclType(type_decl).getAsOpaquePtr());
291
292 return compiler_type;
293 }
294
296 llvm::StringRef type_name,
297 const std::initializer_list<std::pair<const char *, CompilerType>>
298 &type_fields,
299 bool packed = false);
300
302 llvm::StringRef type_name,
303 const std::initializer_list<std::pair<const char *, CompilerType>>
304 &type_fields,
305 bool packed = false);
306
307 static bool IsOperator(llvm::StringRef name,
308 clang::OverloadedOperatorKind &op_kind);
309
310 // Structure, Unions, Classes
311
312 static clang::AccessSpecifier
314
315 static clang::AccessSpecifier
316 UnifyAccessSpecifiers(clang::AccessSpecifier lhs, clang::AccessSpecifier rhs);
317
318 uint32_t GetNumBaseClasses(const clang::CXXRecordDecl *cxx_record_decl,
319 bool omit_empty_base_classes);
320
321 uint32_t GetIndexForRecordChild(const clang::RecordDecl *record_decl,
322 clang::NamedDecl *canonical_decl,
323 bool omit_empty_base_classes);
324
325 uint32_t GetIndexForRecordBase(const clang::RecordDecl *record_decl,
326 const clang::CXXBaseSpecifier *base_spec,
327 bool omit_empty_base_classes);
328
329 /// Synthesize a clang::Module and return its ID or a default-constructed ID.
332 bool is_framework = false,
333 bool is_explicit = false);
334
336 CreateRecordType(clang::DeclContext *decl_ctx,
337 OptionalClangModuleID owning_module,
338 lldb::AccessType access_type, llvm::StringRef name, int kind,
339 lldb::LanguageType language,
340 std::optional<ClangASTMetadata> metadata = std::nullopt,
341 bool exports_symbols = false);
342
344 public:
346 TemplateParameterInfos(llvm::ArrayRef<const char *> names_in,
347 llvm::ArrayRef<clang::TemplateArgument> args_in)
348 : names(names_in), args(args_in) {
349 assert(names.size() == args_in.size());
350 }
351
354
357
359
360 bool IsValid() const {
361 // Having a pack name but no packed args doesn't make sense, so mark
362 // these template parameters as invalid.
363 if (pack_name && !packed_args)
364 return false;
365 return args.size() == names.size() &&
366 (!packed_args || !packed_args->packed_args);
367 }
368
369 bool IsEmpty() const { return args.empty(); }
370 size_t Size() const { return args.size(); }
371
372 llvm::ArrayRef<clang::TemplateArgument> GetArgs() const { return args; }
373 llvm::ArrayRef<const char *> GetNames() const { return names; }
374
375 clang::TemplateArgument const &Front() const {
376 assert(!args.empty());
377 return args.front();
378 }
379
380 void InsertArg(char const *name, clang::TemplateArgument arg) {
381 args.emplace_back(std::move(arg));
382 names.push_back(name);
383 }
384
385 // Parameter pack related
386
387 bool hasParameterPack() const { return static_cast<bool>(packed_args); }
388
390 assert(packed_args != nullptr);
391 return *packed_args;
392 }
393
395 assert(packed_args != nullptr);
396 return *packed_args;
397 }
398
399 llvm::ArrayRef<clang::TemplateArgument> GetParameterPackArgs() const {
400 assert(packed_args != nullptr);
401 return packed_args->GetArgs();
402 }
403
404 bool HasPackName() const { return pack_name && pack_name[0]; }
405
406 llvm::StringRef GetPackName() const {
407 assert(HasPackName());
408 return pack_name;
409 }
410
411 void SetPackName(char const *name) { pack_name = name; }
412
413 void SetParameterPack(std::unique_ptr<TemplateParameterInfos> args) {
414 packed_args = std::move(args);
415 }
416
417 private:
418 /// Element 'names[i]' holds the template argument name
419 /// of 'args[i]'
420 llvm::SmallVector<const char *, 2> names;
421 llvm::SmallVector<clang::TemplateArgument, 2> args;
422
423 const char * pack_name = nullptr;
424 std::unique_ptr<TemplateParameterInfos> packed_args;
425 };
426
427 clang::FunctionTemplateDecl *CreateFunctionTemplateDecl(
428 clang::DeclContext *decl_ctx, OptionalClangModuleID owning_module,
429 clang::FunctionDecl *func_decl, const TemplateParameterInfos &infos);
430
432 clang::FunctionDecl *func_decl, clang::FunctionTemplateDecl *Template,
433 const TemplateParameterInfos &infos);
434
435 clang::ClassTemplateDecl *CreateClassTemplateDecl(
436 clang::DeclContext *decl_ctx, OptionalClangModuleID owning_module,
437 lldb::AccessType access_type, llvm::StringRef class_name, int kind,
438 const TemplateParameterInfos &infos);
439
440 clang::TemplateTemplateParmDecl *
441 CreateTemplateTemplateParmDecl(const char *template_name);
442
443 clang::ClassTemplateSpecializationDecl *CreateClassTemplateSpecializationDecl(
444 clang::DeclContext *decl_ctx, OptionalClangModuleID owning_module,
445 clang::ClassTemplateDecl *class_template_decl, int kind,
446 const TemplateParameterInfos &infos);
447
449 CreateClassTemplateSpecializationType(clang::ClassTemplateSpecializationDecl *
450 class_template_specialization_decl);
451
452 static clang::DeclContext *
453 GetAsDeclContext(clang::FunctionDecl *function_decl);
454
456 bool is_method, clang::OverloadedOperatorKind op_kind,
457 uint32_t num_params);
458
459 bool FieldIsBitfield(clang::FieldDecl *field, uint32_t &bitfield_bit_size);
460
461 bool RecordHasFields(const clang::RecordDecl *record_decl);
462
463 bool BaseSpecifierIsEmpty(const clang::CXXBaseSpecifier *b);
464
466 CreateObjCClass(llvm::StringRef name, clang::DeclContext *decl_ctx,
467 OptionalClangModuleID owning_module, bool isInternal,
468 std::optional<ClangASTMetadata> metadata = std::nullopt);
469
470 // Returns a mask containing bits from the TypeSystemClang::eTypeXXX
471 // enumerations
472
473 // Namespace Declarations
474
475 clang::NamespaceDecl *
476 GetUniqueNamespaceDeclaration(const char *name, clang::DeclContext *decl_ctx,
477 OptionalClangModuleID owning_module,
478 bool is_inline = false);
479
480 // Function Types
481
482 clang::FunctionDecl *CreateFunctionDeclaration(
483 clang::DeclContext *decl_ctx, OptionalClangModuleID owning_module,
484 llvm::StringRef name, const CompilerType &function_Type,
485 clang::StorageClass storage, bool is_inline, llvm::StringRef asm_label);
486
488 CreateFunctionType(const CompilerType &result_type,
489 llvm::ArrayRef<CompilerType> args, bool is_variadic,
490 unsigned type_quals, clang::CallingConv cc = clang::CC_C,
491 clang::RefQualifierKind ref_qual = clang::RQ_None);
492
493 clang::ParmVarDecl *
494 CreateParameterDeclaration(clang::DeclContext *decl_ctx,
495 OptionalClangModuleID owning_module,
496 const char *name, const CompilerType &param_type,
497 int storage, bool add_decl = false);
498
500
501 // Array Types
502
503 CompilerType CreateArrayType(const CompilerType &element_type,
504 std::optional<size_t> element_count,
505 bool is_vector);
506
507 // Enumeration Types
509 llvm::StringRef name, clang::DeclContext *decl_ctx,
510 OptionalClangModuleID owning_module, const Declaration &decl,
511 const CompilerType &integer_qual_type, bool is_scoped,
512 std::optional<clang::EnumExtensibilityAttr::Kind> enum_kind =
513 std::nullopt);
514
515 // Integer type functions
516
517 CompilerType GetIntTypeFromBitSize(size_t bit_size, bool is_signed);
518
519 CompilerType GetPointerSizedIntType(bool is_signed);
520
521 // Floating point functions
522
523 static CompilerType GetFloatTypeFromBitSize(clang::ASTContext *ast,
524 size_t bit_size);
525
526 // TypeSystem methods
528 PDBASTParser *GetPDBParser() override;
530
531 // TypeSystemClang callbacks for external source lookups.
532 void CompleteTagDecl(clang::TagDecl *);
533
534 void CompleteObjCInterfaceDecl(clang::ObjCInterfaceDecl *);
535
536 bool LayoutRecordType(
537 const clang::RecordDecl *record_decl, uint64_t &size, uint64_t &alignment,
538 llvm::DenseMap<const clang::FieldDecl *, uint64_t> &field_offsets,
539 llvm::DenseMap<const clang::CXXRecordDecl *, clang::CharUnits>
540 &base_offsets,
541 llvm::DenseMap<const clang::CXXRecordDecl *, clang::CharUnits>
542 &vbase_offsets);
543
544 /// Creates a CompilerDecl from the given Decl with the current
545 /// TypeSystemClang instance as its typesystem.
546 /// The Decl has to come from the ASTContext of this
547 /// TypeSystemClang.
548 CompilerDecl GetCompilerDecl(clang::Decl *decl) {
549 assert(&decl->getASTContext() == &getASTContext() &&
550 "CreateCompilerDecl for Decl from wrong ASTContext?");
551 return CompilerDecl(this, decl);
552 }
553
554 // CompilerDecl override functions
555 ConstString DeclGetName(void *opaque_decl) override;
556
557 ConstString DeclGetMangledName(void *opaque_decl) override;
558
559 CompilerDeclContext DeclGetDeclContext(void *opaque_decl) override;
560
561 CompilerType DeclGetFunctionReturnType(void *opaque_decl) override;
562
563 size_t DeclGetFunctionNumArguments(void *opaque_decl) override;
564
566 size_t arg_idx) override;
567
568 std::vector<lldb_private::CompilerContext>
569 DeclGetCompilerContext(void *opaque_decl) override;
570
571 Scalar DeclGetConstantValue(void *opaque_decl) override;
572
573 CompilerType GetTypeForDecl(void *opaque_decl) override;
574
575 // CompilerDeclContext override functions
576
577 /// Creates a CompilerDeclContext from the given DeclContext
578 /// with the current TypeSystemClang instance as its typesystem.
579 /// The DeclContext has to come from the ASTContext of this
580 /// TypeSystemClang.
581 CompilerDeclContext CreateDeclContext(clang::DeclContext *ctx);
582
583 /// Set the owning module for \p decl.
584 static void SetOwningModule(clang::Decl *decl,
585 OptionalClangModuleID owning_module);
586
587 std::vector<CompilerDecl>
588 DeclContextFindDeclByName(void *opaque_decl_ctx, ConstString name,
589 const bool ignore_using_decls) override;
590
591 ConstString DeclContextGetName(void *opaque_decl_ctx) override;
592
593 ConstString DeclContextGetScopeQualifiedName(void *opaque_decl_ctx) override;
594
595 bool DeclContextIsClassMethod(void *opaque_decl_ctx) override;
596
597 bool DeclContextIsContainedInLookup(void *opaque_decl_ctx,
598 void *other_opaque_decl_ctx) override;
599
600 lldb::LanguageType DeclContextGetLanguage(void *opaque_decl_ctx) override;
601
602 std::vector<lldb_private::CompilerContext>
603 DeclContextGetCompilerContext(void *opaque_decl_ctx) override;
604
605 // Clang specific clang::DeclContext functions
606
607 static clang::DeclContext *
609
610 static clang::ObjCMethodDecl *
612
613 static clang::CXXMethodDecl *
615
616 static clang::FunctionDecl *
618
619 static clang::NamespaceDecl *
621
622 static std::optional<ClangASTMetadata>
624 const clang::Decl *object);
625
626 static clang::ASTContext *
628
629 // Tests
630
631#ifndef NDEBUG
632 bool Verify(lldb::opaque_compiler_type_t type) override;
633#endif
634
636 CompilerType *element_type, uint64_t *size,
637 bool *is_incomplete) override;
638
640 CompilerType *element_type, uint64_t *size) override;
641
643
645
647
648 bool IsCharType(lldb::opaque_compiler_type_t type) override;
649
651
652 bool IsConst(lldb::opaque_compiler_type_t type) override;
653
654 bool IsCStringType(lldb::opaque_compiler_type_t type, uint32_t &length);
655
656 static bool IsCXXClassType(const CompilerType &type);
657
658 bool IsDefined(lldb::opaque_compiler_type_t type) override;
659
661 bool &is_complex) override;
662
663 unsigned GetPtrAuthKey(lldb::opaque_compiler_type_t type) override;
666
668
670 CompilerType *base_type_ptr) override;
671
672 size_t
674
676 const size_t index) override;
677
679
681
683 CompilerType *function_pointer_type_ptr) override;
684
686 bool &is_signed) override;
687
689 bool &is_signed) override;
690
692
693 static bool IsObjCClassType(const CompilerType &type);
694
695 static bool IsObjCObjectOrInterfaceType(const CompilerType &type);
696
697 static bool IsObjCObjectPointerType(const CompilerType &type,
698 CompilerType *target_type = nullptr);
699
701
703
705
707 CompilerType *target_type, // Can pass nullptr
708 bool check_cplusplus, bool check_objc) override;
709
711
713 CompilerType *pointee_type) override;
714
716 CompilerType *pointee_type) override;
717
719 CompilerType *pointee_type, bool *is_rvalue) override;
720
721 bool IsScalarType(lldb::opaque_compiler_type_t type) override;
722
724
725 bool IsVoidType(lldb::opaque_compiler_type_t type) override;
726
727 bool CanPassInRegisters(const CompilerType &type) override;
728
729 bool SupportsLanguage(lldb::LanguageType language) override;
730
731 static std::optional<std::string> GetCXXClassName(const CompilerType &type);
732
733 // Type Completion
734
736
738
739 // Accessors
740
742 bool base_only) override;
743
745
747 CompilerType *pointee_or_element_compiler_type) override;
748
751
752 lldb::TypeClass GetTypeClass(lldb::opaque_compiler_type_t type) override;
753
754 unsigned GetTypeQualifiers(lldb::opaque_compiler_type_t type) override;
755
756 // Creating related types
757
759 ExecutionContextScope *exe_scope) override;
760
762 uint64_t size) override;
763
765
768
771
772 // Returns -1 if this isn't a function of if the function doesn't have a
773 // prototype Returns a value >= 0 if there is a prototype.
775
777 size_t idx) override;
778
781
783
786 size_t idx) override;
787
789
791
793
796
799
801
803
805 uint32_t payload) override;
806
808
810
811 /// Using the current type, create a new typedef to that type using
812 /// "typedef_name" as the name and "decl_ctx" as the decl context.
813 /// \param opaque_payload is an opaque TypePayloadClang.
815 const char *name,
816 const CompilerDeclContext &decl_ctx,
817 uint32_t opaque_payload) override;
818
819 // If the current object represents a typedef type, get the underlying type
821
822 // Create related types using the current type's AST
824
825 // Create a generic function prototype that can be used in ValuObject types
826 // to correctly display a function pointer with the right value and summary.
828
829 // Exploring the type
830
831 const llvm::fltSemantics &GetFloatTypeSemantics(size_t byte_size,
832 lldb::Format format) override;
833
834 llvm::Expected<uint64_t> GetByteSize(lldb::opaque_compiler_type_t type,
835 ExecutionContextScope *exe_scope) {
836 auto bit_size_or_err = GetBitSize(type, exe_scope);
837 if (!bit_size_or_err)
838 return bit_size_or_err.takeError();
839 return (*bit_size_or_err + 7) / 8;
840 }
841
842 llvm::Expected<uint64_t>
844 ExecutionContextScope *exe_scope) override;
845
847
849
850 std::optional<size_t>
852 ExecutionContextScope *exe_scope) override;
853
854 llvm::Expected<uint32_t>
856 bool omit_empty_base_classes,
857 const ExecutionContext *exe_ctx) override;
858
860
863
866 std::function<bool(const CompilerType &integer_type,
867 ConstString name,
868 const llvm::APSInt &value)> const &callback) override;
869
870 uint32_t GetNumFields(lldb::opaque_compiler_type_t type) override;
871
873 std::string &name, uint64_t *bit_offset_ptr,
874 uint32_t *bitfield_bit_size_ptr,
875 bool *is_bitfield_ptr) override;
876
878
880
882 size_t idx,
883 uint32_t *bit_offset_ptr) override;
884
886 size_t idx,
887 uint32_t *bit_offset_ptr) override;
888
890 llvm::StringRef name) override;
891
892 static uint32_t GetNumPointeeChildren(clang::QualType type);
893
894 llvm::Expected<CompilerType>
896 ExecutionContext *exe_ctx, std::string &deref_name,
897 uint32_t &deref_byte_size, int32_t &deref_byte_offset,
898 ValueObject *valobj, uint64_t &language_flags) override;
899
900 llvm::Expected<CompilerType> GetChildCompilerTypeAtIndex(
901 lldb::opaque_compiler_type_t type, ExecutionContext *exe_ctx, size_t idx,
902 bool transparent_pointers, bool omit_empty_base_classes,
903 bool ignore_array_bounds, std::string &child_name,
904 uint32_t &child_byte_size, int32_t &child_byte_offset,
905 uint32_t &child_bitfield_bit_size, uint32_t &child_bitfield_bit_offset,
906 bool &child_is_base_class, bool &child_is_deref_of_parent,
907 ValueObject *valobj, uint64_t &language_flags) override;
908
909 // Lookup a child given a name. This function will match base class names and
910 // member member names in "clang_type" only, not descendants.
911 llvm::Expected<uint32_t>
913 llvm::StringRef name,
914 bool omit_empty_base_classes) override;
915
916 // Lookup a child member given a name. This function will match member names
917 // only and will descend into "clang_type" children in search for the first
918 // member in this class, or any base class that matches "name".
919 // TODO: Return all matches for a given name by returning a
920 // vector<vector<uint32_t>>
921 // so we catch all names that match a given child name, not just the first.
922 size_t
924 llvm::StringRef name,
925 bool omit_empty_base_classes,
926 std::vector<uint32_t> &child_indexes) override;
927
929 llvm::StringRef name) override;
930
932
934 bool expand_pack) override;
935
938 bool expand_pack) override;
940 size_t idx, bool expand_pack) override;
941 std::optional<CompilerType::IntegralTemplateArgument>
943 bool expand_pack) override;
944
945 CompilerType GetTypeForFormatters(void *type) override;
946
947 // DIL
948
950
951 llvm::Expected<CompilerType>
953 ExecutionContextScope *exe_scope) override;
954
955#define LLDB_INVALID_DECL_LEVEL UINT32_MAX
956 // LLDB_INVALID_DECL_LEVEL is returned by CountDeclLevels if child_decl_ctx
957 // could not be found in decl_ctx.
958 uint32_t CountDeclLevels(clang::DeclContext *frame_decl_ctx,
959 clang::DeclContext *child_decl_ctx,
960 ConstString *child_name = nullptr,
961 CompilerType *child_type = nullptr);
962
963 // Modifying RecordType
964 static clang::FieldDecl *AddFieldToRecordType(const CompilerType &type,
965 llvm::StringRef name,
966 const CompilerType &field_type,
967 lldb::AccessType access,
968 uint32_t bitfield_bit_size);
969
970 static void BuildIndirectFields(const CompilerType &type);
971
972 static void SetIsPacked(const CompilerType &type);
973
974 static clang::VarDecl *AddVariableToRecordType(const CompilerType &type,
975 llvm::StringRef name,
976 const CompilerType &var_type,
977 lldb::AccessType access);
978
979 /// Initializes a variable with an integer value.
980 /// \param var The variable to initialize. Must not already have an
981 /// initializer and must have an integer or enum type.
982 /// \param init_value The integer value that the variable should be
983 /// initialized to. Has to match the bit width of the
984 /// variable type.
985 static void SetIntegerInitializerForVariable(clang::VarDecl *var,
986 const llvm::APInt &init_value);
987
988 /// Initializes a variable with a floating point value.
989 /// \param var The variable to initialize. Must not already have an
990 /// initializer and must have a floating point type.
991 /// \param init_value The float value that the variable should be
992 /// initialized to.
993 static void
994 SetFloatingInitializerForVariable(clang::VarDecl *var,
995 const llvm::APFloat &init_value);
996
997 /// For each parameter type of \c prototype, creates a \c clang::ParmVarDecl
998 /// whose \c clang::DeclContext is \c context.
999 ///
1000 /// \param[in] context Non-null \c clang::FunctionDecl which will be the \c
1001 /// clang::DeclContext of each parameter created/returned by this function.
1002 /// \param[in] prototype The \c clang::FunctionProtoType of \c context.
1003 /// \param[in] param_names The ith element of this vector contains the name
1004 /// of the ith parameter. This parameter may be unnamed, in which case the
1005 /// ith entry in \c param_names is an empty string. This vector is either
1006 /// empty, or will have an entry for *each* parameter of the prototype
1007 /// regardless of whether a parameter is unnamed or not.
1008 ///
1009 /// \returns A list of newly created of non-null \c clang::ParmVarDecl (one
1010 /// for each parameter of \c prototype).
1011 llvm::SmallVector<clang::ParmVarDecl *> CreateParameterDeclarations(
1012 clang::FunctionDecl *context, const clang::FunctionProtoType &prototype,
1013 const llvm::SmallVector<llvm::StringRef> &param_names);
1014
1015 clang::CXXMethodDecl *AddMethodToCXXRecordType(
1016 lldb::opaque_compiler_type_t type, llvm::StringRef name,
1017 llvm::StringRef asm_label, const CompilerType &method_type,
1018 lldb::AccessType access, bool is_virtual, bool is_static, bool is_inline,
1019 bool is_explicit, bool is_attr_used, bool is_artificial);
1020
1022
1023 // C++ Base Classes
1024 std::unique_ptr<clang::CXXBaseSpecifier>
1026 lldb::AccessType access, bool is_virtual,
1027 bool base_of_class);
1028
1031 std::vector<std::unique_ptr<clang::CXXBaseSpecifier>> bases);
1032
1033 static bool SetObjCSuperClass(const CompilerType &type,
1034 const CompilerType &superclass_compiler_type);
1035
1036 static bool AddObjCClassProperty(const CompilerType &type,
1037 const char *property_name,
1038 const CompilerType &property_compiler_type,
1039 clang::ObjCIvarDecl *ivar_decl,
1040 const char *property_setter_name,
1041 const char *property_getter_name,
1042 uint32_t property_attributes,
1043 ClangASTMetadata metadata);
1044
1045 static clang::ObjCMethodDecl *AddMethodToObjCObjectType(
1046 const CompilerType &type,
1047 const char *name, // the full symbol name as seen in the symbol table
1048 // (lldb::opaque_compiler_type_t type, "-[NString
1049 // stringWithCString:]")
1050 const CompilerType &method_compiler_type, bool is_artificial,
1051 bool is_variadic, bool is_objc_direct_call);
1052
1054 bool has_extern);
1055
1056 // Tag Declarations
1057 static bool StartTagDeclarationDefinition(const CompilerType &type);
1058
1059 static bool CompleteTagDeclarationDefinition(const CompilerType &type);
1060
1061 // Modifying Enumeration types
1062 clang::EnumConstantDecl *AddEnumerationValueToEnumerationType(
1063 const CompilerType &enum_type, const Declaration &decl, const char *name,
1064 uint64_t enum_value, uint32_t enum_value_bit_size);
1065 clang::EnumConstantDecl *AddEnumerationValueToEnumerationType(
1066 const CompilerType &enum_type, const Declaration &decl, const char *name,
1067 const llvm::APSInt &value);
1068
1069 /// Returns the underlying integer type for an enum type. If the given type
1070 /// is invalid or not an enum-type, the function returns an invalid
1071 /// CompilerType.
1072 CompilerType GetEnumerationIntegerType(CompilerType type);
1073
1074 // Pointers & References
1075
1076 // Call this function using the class type when you want to make a member
1077 // pointer type to pointee_type.
1078 static CompilerType CreateMemberPointerType(const CompilerType &type,
1079 const CompilerType &pointee_type);
1080
1081 // Dumping types
1082#ifndef NDEBUG
1083 /// Convenience LLVM-style dump method for use in the debugger only.
1084 /// In contrast to the other \p Dump() methods this directly invokes
1085 /// \p clang::QualType::dump().
1086 LLVM_DUMP_METHOD void dump(lldb::opaque_compiler_type_t type) const override;
1087#endif
1088
1089 /// \see lldb_private::TypeSystem::Dump
1090 void Dump(llvm::raw_ostream &output, llvm::StringRef filter,
1091 bool show_color) override;
1092
1093 /// Dump clang AST types from the symbol file.
1094 ///
1095 /// \param[in] s
1096 /// A stream to send the dumped AST node(s) to
1097 /// \param[in] symbol_name
1098 /// The name of the symbol to dump, if it is empty dump all the symbols
1099 void DumpFromSymbolFile(Stream &s, llvm::StringRef symbol_name);
1100
1102 lldb::Format format, const DataExtractor &data,
1103 lldb::offset_t data_offset, size_t data_byte_size,
1104 uint32_t bitfield_bit_size, uint32_t bitfield_bit_offset,
1105 ExecutionContextScope *exe_scope) override;
1106
1110
1114
1115 static void DumpTypeName(const CompilerType &type);
1116
1117 static clang::EnumDecl *GetAsEnumDecl(const CompilerType &type);
1118
1119 static clang::RecordDecl *GetAsRecordDecl(const CompilerType &type);
1120
1121 static clang::TagDecl *GetAsTagDecl(const CompilerType &type);
1122
1123 static clang::TypedefNameDecl *GetAsTypedefDecl(const CompilerType &type);
1124
1125 static clang::CXXRecordDecl *
1127
1128 static clang::ObjCInterfaceDecl *
1129 GetAsObjCInterfaceDecl(const CompilerType &type);
1130
1131 clang::ClassTemplateDecl *ParseClassTemplateDecl(
1132 clang::DeclContext *decl_ctx, OptionalClangModuleID owning_module,
1133 lldb::AccessType access_type, const char *parent_name, int tag_decl_kind,
1134 const TypeSystemClang::TemplateParameterInfos &template_param_infos);
1135
1136 clang::BlockDecl *CreateBlockDeclaration(clang::DeclContext *ctx,
1137 OptionalClangModuleID owning_module);
1138
1139 clang::UsingDirectiveDecl *
1140 CreateUsingDirectiveDeclaration(clang::DeclContext *decl_ctx,
1141 OptionalClangModuleID owning_module,
1142 clang::NamespaceDecl *ns_decl);
1143
1144 clang::UsingDecl *CreateUsingDeclaration(clang::DeclContext *current_decl_ctx,
1145 OptionalClangModuleID owning_module,
1146 clang::NamedDecl *target);
1147
1148 clang::VarDecl *CreateVariableDeclaration(clang::DeclContext *decl_context,
1149 OptionalClangModuleID owning_module,
1150 const char *name,
1151 clang::QualType type);
1152
1154 GetOpaqueCompilerType(clang::ASTContext *ast, lldb::BasicType basic_type);
1155
1156 static clang::QualType GetQualType(lldb::opaque_compiler_type_t type) {
1157 if (type)
1158 return clang::QualType::getFromOpaquePtr(type);
1159 return clang::QualType();
1160 }
1161
1162 static clang::QualType
1164 if (type)
1165 return clang::QualType::getFromOpaquePtr(type).getCanonicalType();
1166 return clang::QualType();
1167 }
1168
1169 clang::DeclarationName
1170 GetDeclarationName(llvm::StringRef name,
1171 const CompilerType &function_clang_type);
1172
1173 clang::LangOptions *GetLangOpts() const {
1174 return m_language_options_up.get();
1175 }
1176 clang::SourceManager *GetSourceMgr() const {
1177 return m_source_manager_up.get();
1178 }
1179
1180 /// Complete a type from debug info, or mark it as forcefully completed if
1181 /// there is no definition of the type in the current Module. Call this
1182 /// function in contexts where the usual C++ rules require a type to be
1183 /// complete (base class, member, etc.).
1184 static void RequireCompleteType(CompilerType type);
1185
1186 bool SetDeclIsForcefullyCompleted(const clang::TagDecl *td);
1187
1188private:
1189 /// Returns the PrintingPolicy used when generating the internal type names.
1190 /// These type names are mostly used for the formatter selection.
1191 clang::PrintingPolicy GetTypePrintingPolicy();
1192 /// Returns the internal type name for the given NamedDecl using the
1193 /// type printing policy.
1194 std::string GetTypeNameForDecl(const clang::NamedDecl *named_decl,
1195 bool qualified = true);
1196
1197 const clang::ClassTemplateSpecializationDecl *
1199
1201 llvm::function_ref<bool(clang::QualType)> predicate) const;
1202
1203 /// Emits information about this TypeSystem into the expression log.
1204 ///
1205 /// Helper method that is used in \ref TypeSystemClang::TypeSystemClang
1206 /// on creation of a new instance.
1207 void LogCreation() const;
1208
1209 llvm::Expected<uint64_t> GetObjCBitSize(clang::QualType qual_type,
1210 ExecutionContextScope *exe_scope);
1211
1212 // Classes that inherit from TypeSystemClang can see and modify these
1213 std::string m_target_triple;
1214 std::unique_ptr<clang::ASTContext> m_ast_up;
1215 std::unique_ptr<clang::LangOptions> m_language_options_up;
1216 std::unique_ptr<clang::FileManager> m_file_manager_up;
1217 std::unique_ptr<clang::SourceManager> m_source_manager_up;
1218 std::unique_ptr<clang::DiagnosticOptions> m_diagnostic_options_up;
1219 std::unique_ptr<clang::DiagnosticsEngine> m_diagnostics_engine_up;
1220 std::unique_ptr<clang::DiagnosticConsumer> m_diagnostic_consumer_up;
1221 std::shared_ptr<clang::TargetOptions> m_target_options_rp;
1222 std::unique_ptr<clang::TargetInfo> m_target_info_up;
1223 std::unique_ptr<clang::IdentifierTable> m_identifier_table_up;
1224 std::unique_ptr<clang::SelectorTable> m_selector_table_up;
1225 std::unique_ptr<clang::Builtin::Context> m_builtins_up;
1226 std::unique_ptr<clang::HeaderSearchOptions> m_header_search_opts_up;
1227 std::unique_ptr<clang::HeaderSearch> m_header_search_up;
1228 std::unique_ptr<clang::ModuleMap> m_module_map_up;
1229 std::unique_ptr<DWARFASTParserClang> m_dwarf_ast_parser_up;
1230 std::unique_ptr<PDBASTParser> m_pdb_ast_parser_up;
1231 std::unique_ptr<npdb::PdbAstBuilderClang> m_native_pdb_ast_parser_up;
1232 std::unique_ptr<clang::MangleContext> m_mangle_ctx_up;
1234 bool m_ast_owned = false;
1235 /// A string describing what this TypeSystemClang represents (e.g.,
1236 /// AST for debug information, an expression, some other utility ClangAST).
1237 /// Useful for logging and debugging.
1238 std::string m_display_name;
1239
1240 typedef llvm::DenseMap<const clang::Decl *, ClangASTMetadata> DeclMetadataMap;
1241 /// Maps Decls to their associated ClangASTMetadata.
1243
1244 typedef llvm::DenseMap<const clang::Type *, ClangASTMetadata> TypeMetadataMap;
1245 /// Maps Types to their associated ClangASTMetadata.
1247
1248 typedef llvm::DenseMap<const clang::CXXRecordDecl *, clang::AccessSpecifier>
1250 /// Maps CXXRecordDecl to their most recent added method/field's
1251 /// AccessSpecifier.
1253
1254 /// The sema associated that is currently used to build this ASTContext.
1255 /// May be null if we are already done parsing this ASTContext or the
1256 /// ASTContext wasn't created by parsing source code.
1257 clang::Sema *m_sema = nullptr;
1258
1259 // For TypeSystemClang only
1262 /// Creates the internal ASTContext.
1263 void CreateASTContext();
1264 void SetTargetTriple(llvm::StringRef target_triple);
1265};
1266
1267/// The TypeSystemClang instance used for the scratch ASTContext in a
1268/// lldb::Target.
1270 /// LLVM RTTI support
1271 static char ID;
1272
1273public:
1274 ScratchTypeSystemClang(Target &target, llvm::Triple triple);
1275
1276 ~ScratchTypeSystemClang() override = default;
1277
1278 void Finalize() override;
1279
1280 /// The different kinds of isolated ASTs within the scratch TypeSystem.
1281 ///
1282 /// These ASTs are isolated from the main scratch AST and are each
1283 /// dedicated to a special language option/feature that makes the contained
1284 /// AST nodes incompatible with other AST nodes.
1286 /// The isolated AST for declarations/types from expressions that imported
1287 /// type information from a C++ module. The templates from a C++ module
1288 /// often conflict with the templates we generate from debug information,
1289 /// so we put these types in their own AST.
1291 };
1292
1293 /// Alias for requesting the default scratch TypeSystemClang in GetForTarget.
1294 // This isn't constexpr as gtest/std::optional comparison logic is trying
1295 // to get the address of this for pretty-printing.
1296 static const std::nullopt_t DefaultAST;
1297
1298 /// Infers the appropriate sub-AST from Clang's LangOptions.
1299 static std::optional<IsolatedASTKind>
1300 InferIsolatedASTKindFromLangOpts(const clang::LangOptions &l) {
1301 // If modules are activated we want the dedicated C++ module AST.
1302 // See IsolatedASTKind::CppModules for more info.
1303 if (l.Modules)
1305 return DefaultAST;
1306 }
1307
1308 /// Returns the scratch TypeSystemClang for the given target.
1309 /// \param target The Target which scratch TypeSystemClang should be returned.
1310 /// \param ast_kind Allows requesting a specific sub-AST instead of the
1311 /// default scratch AST. See also `IsolatedASTKind`.
1312 /// \param create_on_demand If the scratch TypeSystemClang instance can be
1313 /// created by this call if it doesn't exist yet. If it doesn't exist yet and
1314 /// this parameter is false, this function returns a nullptr.
1315 /// \return The scratch type system of the target or a nullptr in case an
1316 /// error occurred.
1318 GetForTarget(Target &target,
1319 std::optional<IsolatedASTKind> ast_kind = DefaultAST,
1320 bool create_on_demand = true);
1321
1322 /// Returns the scratch TypeSystemClang for the given target. The returned
1323 /// TypeSystemClang will be the scratch AST or a sub-AST, depending on which
1324 /// fits best to the passed LangOptions.
1325 /// \param target The Target which scratch TypeSystemClang should be returned.
1326 /// \param lang_opts The LangOptions of a clang ASTContext that the caller
1327 /// wants to export type information from. This is used to
1328 /// find the best matching sub-AST that will be returned.
1330 GetForTarget(Target &target, const clang::LangOptions &lang_opts) {
1331 return GetForTarget(target, InferIsolatedASTKindFromLangOpts(lang_opts));
1332 }
1333
1334 /// \see lldb_private::TypeSystem::Dump
1335 void Dump(llvm::raw_ostream &output, llvm::StringRef filter,
1336 bool show_color) override;
1337
1338 UserExpression *GetUserExpression(llvm::StringRef expr,
1339 llvm::StringRef prefix,
1340 SourceLanguage language,
1341 Expression::ResultType desired_type,
1342 const EvaluateExpressionOptions &options,
1343 ValueObject *ctx_obj) override;
1344
1345 FunctionCaller *GetFunctionCaller(const CompilerType &return_type,
1346 const Address &function_address,
1347 const ValueList &arg_value_list,
1348 const char *name) override;
1349
1350 std::unique_ptr<UtilityFunction>
1351 CreateUtilityFunction(std::string text, std::string name) override;
1352
1354
1355 /// Unregisters the given ASTContext as a source from the scratch AST (and
1356 /// all sub-ASTs).
1357 /// \see ClangASTImporter::ForgetSource
1358 void ForgetSource(clang::ASTContext *src_ctx, ClangASTImporter &importer);
1359
1360 // llvm casting support
1361 bool isA(const void *ClassID) const override {
1362 return ClassID == &ID || TypeSystemClang::isA(ClassID);
1363 }
1364 static bool classof(const TypeSystem *ts) { return ts->isA(&ID); }
1365
1366private:
1367 std::unique_ptr<ClangASTSource> CreateASTSource();
1368 /// Returns the requested sub-AST.
1369 /// Will lazily create the sub-AST if it hasn't been created before.
1371
1372 /// The target triple.
1373 /// This was potentially adjusted and might not be identical to the triple
1374 /// of `m_target_wp`.
1375 llvm::Triple m_triple;
1377 /// The persistent variables associated with this process for the expression
1378 /// parser.
1379 std::unique_ptr<ClangPersistentVariables> m_persistent_variables;
1380 /// The ExternalASTSource that performs lookups and completes minimally
1381 /// imported types.
1382 std::unique_ptr<ClangASTSource> m_scratch_ast_source_up;
1383
1384 // FIXME: GCC 5.x doesn't support enum as map keys.
1385 typedef int IsolatedASTKey;
1386
1387 /// Map from IsolatedASTKind to their actual TypeSystemClang instance.
1388 /// This map is lazily filled with sub-ASTs and should be accessed via
1389 /// `GetSubAST` (which lazily fills this map).
1390 llvm::DenseMap<IsolatedASTKey, std::shared_ptr<TypeSystemClang>>
1392};
1393
1394} // namespace lldb_private
1395
1396#endif // LLDB_SOURCE_PLUGINS_TYPESYSTEM_CLANG_TYPESYSTEMCLANG_H
A section + offset based address class.
Definition Address.h:62
Manages and observes all Clang AST node importing in LLDB.
Provider for named objects defined in the debug info for Clang.
Represents a generic declaration context in a program.
Represents a generic declaration such as a function declaration.
Generic representation of a type in a programming language.
A uniqued constant string class.
Definition ConstString.h:40
A class that describes the declaration location of a lldb object.
Definition Declaration.h:24
"lldb/Target/ExecutionContextScope.h" Inherit from this if your object can reconstruct its execution ...
"lldb/Target/ExecutionContext.h" A class that contains an execution context.
A class to manage flags.
Definition Flags.h:22
ValueType Clear(ValueType mask=~static_cast< ValueType >(0))
Clear one or more flags.
Definition Flags.h:61
bool Test(ValueType bit) const
Test a single flag bit.
Definition Flags.h:96
ValueType Set(ValueType mask)
Set one or more flags by logical OR'ing mask with the current flags.
Definition Flags.h:73
Encapsulates a function that can be called.
A class that describes an executable image and its associated object and symbol files.
Definition Module.h:90
static std::optional< IsolatedASTKind > InferIsolatedASTKindFromLangOpts(const clang::LangOptions &l)
Infers the appropriate sub-AST from Clang's LangOptions.
void Finalize() override
Free up any resources associated with this TypeSystem.
static lldb::TypeSystemClangSP GetForTarget(Target &target, std::optional< IsolatedASTKind > ast_kind=DefaultAST, bool create_on_demand=true)
Returns the scratch TypeSystemClang for the given target.
llvm::Triple m_triple
The target triple.
std::unique_ptr< ClangASTSource > CreateASTSource()
TypeSystemClang & GetIsolatedAST(IsolatedASTKind feature)
Returns the requested sub-AST.
UserExpression * GetUserExpression(llvm::StringRef expr, llvm::StringRef prefix, SourceLanguage language, Expression::ResultType desired_type, const EvaluateExpressionOptions &options, ValueObject *ctx_obj) override
std::unique_ptr< ClangASTSource > m_scratch_ast_source_up
The ExternalASTSource that performs lookups and completes minimally imported types.
IsolatedASTKind
The different kinds of isolated ASTs within the scratch TypeSystem.
@ CppModules
The isolated AST for declarations/types from expressions that imported type information from a C++ mo...
void Dump(llvm::raw_ostream &output, llvm::StringRef filter, bool show_color) override
std::unique_ptr< ClangPersistentVariables > m_persistent_variables
The persistent variables associated with this process for the expression parser.
bool isA(const void *ClassID) const override
static char ID
LLVM RTTI support.
PersistentExpressionState * GetPersistentExpressionState() override
static lldb::TypeSystemClangSP GetForTarget(Target &target, const clang::LangOptions &lang_opts)
Returns the scratch TypeSystemClang for the given target.
~ScratchTypeSystemClang() override=default
FunctionCaller * GetFunctionCaller(const CompilerType &return_type, const Address &function_address, const ValueList &arg_value_list, const char *name) override
std::unique_ptr< UtilityFunction > CreateUtilityFunction(std::string text, std::string name) override
void ForgetSource(clang::ASTContext *src_ctx, ClangASTImporter &importer)
Unregisters the given ASTContext as a source from the scratch AST (and all sub-ASTs).
static bool classof(const TypeSystem *ts)
static const std::nullopt_t DefaultAST
Alias for requesting the default scratch TypeSystemClang in GetForTarget.
ScratchTypeSystemClang(Target &target, llvm::Triple triple)
llvm::DenseMap< IsolatedASTKey, std::shared_ptr< TypeSystemClang > > m_isolated_asts
Map from IsolatedASTKind to their actual TypeSystemClang instance.
void SetIsCompleteObjCClass(bool is_complete_objc_class)
TypePayloadClang(uint32_t opaque_payload)
OptionalClangModuleID GetOwningModule()
Type::Payload m_payload
The payload is used for typedefs and ptrauth types.
void SetOwningModule(OptionalClangModuleID id)
static constexpr unsigned ObjCClassBit
llvm::ArrayRef< clang::TemplateArgument > GetParameterPackArgs() const
TemplateParameterInfos & operator=(TemplateParameterInfos &&)=delete
void SetParameterPack(std::unique_ptr< TemplateParameterInfos > args)
std::unique_ptr< TemplateParameterInfos > packed_args
clang::TemplateArgument const & Front() const
TemplateParameterInfos(TemplateParameterInfos &&)=delete
void InsertArg(char const *name, clang::TemplateArgument arg)
TemplateParameterInfos & operator=(TemplateParameterInfos const &)=delete
TemplateParameterInfos(TemplateParameterInfos const &)=delete
TemplateParameterInfos(llvm::ArrayRef< const char * > names_in, llvm::ArrayRef< clang::TemplateArgument > args_in)
llvm::SmallVector< clang::TemplateArgument, 2 > args
llvm::SmallVector< const char *, 2 > names
Element 'names[i]' holds the template argument name of 'args[i]'.
TemplateParameterInfos const & GetParameterPack() const
llvm::ArrayRef< const char * > GetNames() const
llvm::ArrayRef< clang::TemplateArgument > GetArgs() const
A TypeSystem implementation based on Clang.
bool IsMemberFunctionPointerType(lldb::opaque_compiler_type_t type) override
clang::TranslationUnitDecl * GetTranslationUnitDecl()
CompilerType GetTypeForIdentifier(const clang::ASTContext &Ctx, llvm::StringRef type_name, clang::DeclContext *decl_context=nullptr)
llvm::Expected< uint64_t > GetBitSize(lldb::opaque_compiler_type_t type, ExecutionContextScope *exe_scope) override
CompilerType CreateFunctionType(const CompilerType &result_type, llvm::ArrayRef< CompilerType > args, bool is_variadic, unsigned type_quals, clang::CallingConv cc=clang::CC_C, clang::RefQualifierKind ref_qual=clang::RQ_None)
size_t GetIndexOfChildMemberWithName(lldb::opaque_compiler_type_t type, llvm::StringRef name, bool omit_empty_base_classes, std::vector< uint32_t > &child_indexes) override
static clang::TypedefNameDecl * GetAsTypedefDecl(const CompilerType &type)
std::string GetTypeNameForDecl(const clang::NamedDecl *named_decl, bool qualified=true)
Returns the internal type name for the given NamedDecl using the type printing policy.
static clang::ObjCInterfaceDecl * GetAsObjCInterfaceDecl(const CompilerType &type)
bool DumpTypeValue(lldb::opaque_compiler_type_t type, Stream &s, lldb::Format format, const DataExtractor &data, lldb::offset_t data_offset, size_t data_byte_size, uint32_t bitfield_bit_size, uint32_t bitfield_bit_offset, ExecutionContextScope *exe_scope) override
std::string m_display_name
A string describing what this TypeSystemClang represents (e.g., AST for debug information,...
ConstString GetTypeName(lldb::opaque_compiler_type_t type, bool base_only) override
static void SetOwningModule(clang::Decl *decl, OptionalClangModuleID owning_module)
Set the owning module for decl.
llvm::Expected< uint64_t > GetObjCBitSize(clang::QualType qual_type, ExecutionContextScope *exe_scope)
std::unique_ptr< clang::TargetInfo > m_target_info_up
std::unique_ptr< clang::LangOptions > m_language_options_up
Scalar DeclGetConstantValue(void *opaque_decl) override
static clang::DeclContext * GetAsDeclContext(clang::FunctionDecl *function_decl)
llvm::Expected< CompilerType > GetDereferencedType(lldb::opaque_compiler_type_t type, ExecutionContext *exe_ctx, std::string &deref_name, uint32_t &deref_byte_size, int32_t &deref_byte_offset, ValueObject *valobj, uint64_t &language_flags) override
bool BaseSpecifierIsEmpty(const clang::CXXBaseSpecifier *b)
static uint32_t GetNumPointeeChildren(clang::QualType type)
ConstString DeclGetMangledName(void *opaque_decl) override
CompilerType GetBasicType(lldb::BasicType type)
clang::ClassTemplateDecl * CreateClassTemplateDecl(clang::DeclContext *decl_ctx, OptionalClangModuleID owning_module, lldb::AccessType access_type, llvm::StringRef class_name, int kind, const TemplateParameterInfos &infos)
std::unique_ptr< clang::HeaderSearchOptions > m_header_search_opts_up
clang::UsingDecl * CreateUsingDeclaration(clang::DeclContext *current_decl_ctx, OptionalClangModuleID owning_module, clang::NamedDecl *target)
static clang::AccessSpecifier ConvertAccessTypeToAccessSpecifier(lldb::AccessType access)
CompilerType GetNonReferenceType(lldb::opaque_compiler_type_t type) override
bool IsForcefullyCompleted(lldb::opaque_compiler_type_t type) override
bool SupportsLanguage(lldb::LanguageType language) override
uint32_t GetNumDirectBaseClasses(lldb::opaque_compiler_type_t type) override
OptionalClangModuleID GetOrCreateClangModule(llvm::StringRef name, OptionalClangModuleID parent, bool is_framework=false, bool is_explicit=false)
Synthesize a clang::Module and return its ID or a default-constructed ID.
void CompleteTagDecl(clang::TagDecl *)
static clang::FieldDecl * AddFieldToRecordType(const CompilerType &type, llvm::StringRef name, const CompilerType &field_type, lldb::AccessType access, uint32_t bitfield_bit_size)
std::shared_ptr< clang::TargetOptions > & getTargetOptions()
static TypeSystemClang * GetASTContext(clang::ASTContext *ast_ctx)
bool IsReferenceType(lldb::opaque_compiler_type_t type, CompilerType *pointee_type, bool *is_rvalue) override
CompilerType GetBuiltinTypeForEncodingAndBitSize(lldb::Encoding encoding, size_t bit_size) override
TypeSystemClang(llvm::StringRef name, llvm::Triple triple)
Constructs a TypeSystemClang with an ASTContext using the given triple.
TypeSystemClang(const TypeSystemClang &)
static lldb::TypeSystemSP CreateInstance(lldb::LanguageType language, Module *module, Target *target)
clang::TargetInfo * getTargetInfo()
clang::FunctionTemplateDecl * CreateFunctionTemplateDecl(clang::DeclContext *decl_ctx, OptionalClangModuleID owning_module, clang::FunctionDecl *func_decl, const TemplateParameterInfos &infos)
CompilerType CreateArrayType(const CompilerType &element_type, std::optional< size_t > element_count, bool is_vector)
static bool AreTypesSame(CompilerType type1, CompilerType type2, bool ignore_qualifiers=false)
CompilerType GetArrayType(lldb::opaque_compiler_type_t type, uint64_t size) override
bool IsFunctionType(lldb::opaque_compiler_type_t type) override
CompilerType GetFunctionReturnType(lldb::opaque_compiler_type_t type) override
std::optional< ClangASTMetadata > GetMetadata(const clang::Decl *object)
CompilerType GetLValueReferenceType(lldb::opaque_compiler_type_t type) override
bool SetDeclIsForcefullyCompleted(const clang::TagDecl *td)
lldb::Format GetFormat(lldb::opaque_compiler_type_t type) override
bool CanPassInRegisters(const CompilerType &type) override
CompilerDecl GetStaticFieldWithName(lldb::opaque_compiler_type_t type, llvm::StringRef name) override
static clang::DeclContext * GetDeclContextForType(clang::QualType type)
bool IsEnumerationType(lldb::opaque_compiler_type_t type, bool &is_signed) override
bool IsTemplateType(lldb::opaque_compiler_type_t type) override
CompilerType GetTypeTemplateArgument(lldb::opaque_compiler_type_t type, size_t idx, bool expand_pack) override
llvm::DenseMap< const clang::CXXRecordDecl *, clang::AccessSpecifier > CXXRecordDeclAccessMap
static bool IsCXXClassType(const CompilerType &type)
bool IsIntegerType(lldb::opaque_compiler_type_t type, bool &is_signed) override
void SetCXXRecordDeclAccess(const clang::CXXRecordDecl *object, clang::AccessSpecifier access)
std::unique_ptr< npdb::PdbAstBuilderClang > m_native_pdb_ast_parser_up
uint32_t GetNumFields(lldb::opaque_compiler_type_t type) override
static bool IsOperator(llvm::StringRef name, clang::OverloadedOperatorKind &op_kind)
bool IsCharType(lldb::opaque_compiler_type_t type) override
CompilerType CreateStructForIdentifier(llvm::StringRef type_name, const std::initializer_list< std::pair< const char *, CompilerType > > &type_fields, bool packed=false)
static void SetFloatingInitializerForVariable(clang::VarDecl *var, const llvm::APFloat &init_value)
Initializes a variable with a floating point value.
uint32_t GetTypeInfo(lldb::opaque_compiler_type_t type, CompilerType *pointee_or_element_compiler_type) override
llvm::Expected< CompilerType > GetChildCompilerTypeAtIndex(lldb::opaque_compiler_type_t type, ExecutionContext *exe_ctx, size_t idx, bool transparent_pointers, bool omit_empty_base_classes, bool ignore_array_bounds, std::string &child_name, uint32_t &child_byte_size, int32_t &child_byte_offset, uint32_t &child_bitfield_bit_size, uint32_t &child_bitfield_bit_offset, bool &child_is_base_class, bool &child_is_deref_of_parent, ValueObject *valobj, uint64_t &language_flags) override
CompilerType GetType(clang::QualType qt)
Creates a CompilerType from the given QualType with the current TypeSystemClang instance as the Compi...
static clang::TagDecl * GetAsTagDecl(const CompilerType &type)
ConstString GetDisplayTypeName(lldb::opaque_compiler_type_t type) override
bool TransferBaseClasses(lldb::opaque_compiler_type_t type, std::vector< std::unique_ptr< clang::CXXBaseSpecifier > > bases)
bool IsBeingDefined(lldb::opaque_compiler_type_t type) override
ConstString DeclContextGetScopeQualifiedName(void *opaque_decl_ctx) override
std::unique_ptr< clang::IdentifierTable > m_identifier_table_up
static lldb::BasicType GetBasicTypeEnumeration(llvm::StringRef name)
static void SetIntegerInitializerForVariable(clang::VarDecl *var, const llvm::APInt &init_value)
Initializes a variable with an integer value.
bool IsPolymorphicClass(lldb::opaque_compiler_type_t type) override
CompilerType GetFieldAtIndex(lldb::opaque_compiler_type_t type, size_t idx, std::string &name, uint64_t *bit_offset_ptr, uint32_t *bitfield_bit_size_ptr, bool *is_bitfield_ptr) override
bool LayoutRecordType(const clang::RecordDecl *record_decl, uint64_t &size, uint64_t &alignment, llvm::DenseMap< const clang::FieldDecl *, uint64_t > &field_offsets, llvm::DenseMap< const clang::CXXRecordDecl *, clang::CharUnits > &base_offsets, llvm::DenseMap< const clang::CXXRecordDecl *, clang::CharUnits > &vbase_offsets)
bool IsScopedEnumerationType(lldb::opaque_compiler_type_t type) override
std::unique_ptr< clang::SourceManager > m_source_manager_up
bool IsVoidType(lldb::opaque_compiler_type_t type) override
static void SetIsPacked(const CompilerType &type)
void ForEachEnumerator(lldb::opaque_compiler_type_t type, std::function< bool(const CompilerType &integer_type, ConstString name, const llvm::APSInt &value)> const &callback) override
clang::AccessSpecifier GetCXXRecordDeclAccess(const clang::CXXRecordDecl *object)
CompilerType CreateClassTemplateSpecializationType(clang::ClassTemplateSpecializationDecl *class_template_specialization_decl)
static bool classof(const TypeSystem *ts)
bool IsPointerType(lldb::opaque_compiler_type_t type, CompilerType *pointee_type) override
std::unique_ptr< clang::DiagnosticOptions > m_diagnostic_options_up
void CreateFunctionTemplateSpecializationInfo(clang::FunctionDecl *func_decl, clang::FunctionTemplateDecl *Template, const TemplateParameterInfos &infos)
void(* CompleteObjCInterfaceDeclCallback)(void *baton, clang::ObjCInterfaceDecl *)
clang::EnumConstantDecl * AddEnumerationValueToEnumerationType(const CompilerType &enum_type, const Declaration &decl, const char *name, uint64_t enum_value, uint32_t enum_value_bit_size)
llvm::StringRef getDisplayName() const
Returns the display name of this TypeSystemClang that indicates what purpose it serves in LLDB.
bool IsCStringType(lldb::opaque_compiler_type_t type, uint32_t &length)
CompilerType GetRValueReferenceType(lldb::opaque_compiler_type_t type) override
llvm::StringRef GetPluginName() override
CompilerDecl GetCompilerDecl(clang::Decl *decl)
Creates a CompilerDecl from the given Decl with the current TypeSystemClang instance as its typesyste...
unsigned GetPtrAuthDiscriminator(lldb::opaque_compiler_type_t type) override
CompilerType GetPointeeType(lldb::opaque_compiler_type_t type) override
bool GetCompleteType(lldb::opaque_compiler_type_t type) override
bool IsBlockPointerType(lldb::opaque_compiler_type_t type, CompilerType *function_pointer_type_ptr) override
bool IsConst(lldb::opaque_compiler_type_t type) override
static clang::AccessSpecifier UnifyAccessSpecifiers(clang::AccessSpecifier lhs, clang::AccessSpecifier rhs)
std::unique_ptr< clang::CXXBaseSpecifier > CreateBaseClassSpecifier(lldb::opaque_compiler_type_t type, lldb::AccessType access, bool is_virtual, bool base_of_class)
CompilerType GetEnumerationIntegerType(lldb::opaque_compiler_type_t type) override
std::vector< CompilerDecl > DeclContextFindDeclByName(void *opaque_decl_ctx, ConstString name, const bool ignore_using_decls) override
const llvm::fltSemantics & GetFloatTypeSemantics(size_t byte_size, lldb::Format format) override
llvm::Expected< uint32_t > GetIndexOfChildWithName(lldb::opaque_compiler_type_t type, llvm::StringRef name, bool omit_empty_base_classes) override
uint32_t GetPointerByteSize() override
bool IsCompleteType(lldb::opaque_compiler_type_t type) override
bool isA(const void *ClassID) const override
CompilerType GetIntTypeFromBitSize(size_t bit_size, bool is_signed)
clang::MangleContext * getMangleContext()
void CompleteObjCInterfaceDecl(clang::ObjCInterfaceDecl *)
unsigned GetPtrAuthKey(lldb::opaque_compiler_type_t type) override
static void DumpDeclContextHiearchy(clang::DeclContext *decl_ctx)
TypeSystemClang(llvm::StringRef name, clang::ASTContext &existing_ctxt)
Constructs a TypeSystemClang that uses an existing ASTContext internally.
CompilerDeclContext CreateDeclContext(clang::DeclContext *ctx)
Creates a CompilerDeclContext from the given DeclContext with the current TypeSystemClang instance as...
CompilerType GetTypeForFormatters(void *type) override
void SetMetadataAsUserID(const clang::Decl *decl, lldb::user_id_t user_id)
bool IsRuntimeGeneratedType(lldb::opaque_compiler_type_t type) override
This is used by swift.
const TypeSystemClang & operator=(const TypeSystemClang &)
static LanguageSet GetSupportedLanguagesForExpressions()
clang::FunctionDecl * CreateFunctionDeclaration(clang::DeclContext *decl_ctx, OptionalClangModuleID owning_module, llvm::StringRef name, const CompilerType &function_Type, clang::StorageClass storage, bool is_inline, llvm::StringRef asm_label)
CompilerType GetTypedefedType(lldb::opaque_compiler_type_t type) override
CompilerDeclContext GetCompilerDeclContextForType(const CompilerType &type) override
Returns the direct parent context of specified type.
std::unique_ptr< clang::SelectorTable > m_selector_table_up
PDBASTParser * GetPDBParser() override
std::optional< CompilerType::IntegralTemplateArgument > GetIntegralTemplateArgument(lldb::opaque_compiler_type_t type, size_t idx, bool expand_pack) override
bool DeclContextIsClassMethod(void *opaque_decl_ctx) override
CompilerType GetTypeForDecl(clang::ObjCInterfaceDecl *objc_decl)
void SetTargetTriple(llvm::StringRef target_triple)
CompilerType GetVirtualBaseClassAtIndex(lldb::opaque_compiler_type_t type, size_t idx, uint32_t *bit_offset_ptr) override
static bool CheckOverloadedOperatorKindParameterCount(bool is_method, clang::OverloadedOperatorKind op_kind, uint32_t num_params)
clang::DeclarationName GetDeclarationName(llvm::StringRef name, const CompilerType &function_clang_type)
DeclMetadataMap m_decl_metadata
Maps Decls to their associated ClangASTMetadata.
static clang::CXXMethodDecl * DeclContextGetAsCXXMethodDecl(const CompilerDeclContext &dc)
CompilerType GetFullyUnqualifiedType(lldb::opaque_compiler_type_t type) override
uint32_t CountDeclLevels(clang::DeclContext *frame_decl_ctx, clang::DeclContext *child_decl_ctx, ConstString *child_name=nullptr, CompilerType *child_type=nullptr)
static clang::QualType GetQualType(lldb::opaque_compiler_type_t type)
clang::PrintingPolicy GetTypePrintingPolicy()
Returns the PrintingPolicy used when generating the internal type names.
uint32_t GetNumVirtualBaseClasses(lldb::opaque_compiler_type_t type) override
static clang::RecordDecl * GetAsRecordDecl(const CompilerType &type)
CompilerType GetPointerSizedIntType(bool is_signed)
uint32_t GetNumBaseClasses(const clang::CXXRecordDecl *cxx_record_decl, bool omit_empty_base_classes)
lldb::LanguageType DeclContextGetLanguage(void *opaque_decl_ctx) override
std::unique_ptr< DWARFASTParserClang > m_dwarf_ast_parser_up
CompilerType GetBuiltinTypeForDWARFEncodingAndBitSize(llvm::StringRef type_name, uint32_t dw_ate, uint32_t bit_size)
lldb::Encoding GetEncoding(lldb::opaque_compiler_type_t type) override
bool IsFunctionPointerType(lldb::opaque_compiler_type_t type) override
int GetFunctionArgumentCount(lldb::opaque_compiler_type_t type) override
static void BuildIndirectFields(const CompilerType &type)
std::unique_ptr< clang::FileManager > m_file_manager_up
uint32_t GetIndexForRecordBase(const clang::RecordDecl *record_decl, const clang::CXXBaseSpecifier *base_spec, bool omit_empty_base_classes)
bool IsAnonymousType(lldb::opaque_compiler_type_t type) override
bool Verify(lldb::opaque_compiler_type_t type) override
Verify the integrity of the type to catch CompilerTypes that mix and match invalid TypeSystem/Opaque ...
void(* CompleteTagDeclCallback)(void *baton, clang::TagDecl *)
size_t GetNumberOfFunctionArguments(lldb::opaque_compiler_type_t type) override
void AddMethodOverridesForCXXRecordType(lldb::opaque_compiler_type_t type)
CompilerType CreateBlockPointerType(const CompilerType &function_type)
lldb::LanguageType GetMinimumLanguage(lldb::opaque_compiler_type_t type) override
bool FieldIsBitfield(clang::FieldDecl *field, uint32_t &bitfield_bit_size)
clang::ClassTemplateSpecializationDecl * CreateClassTemplateSpecializationDecl(clang::DeclContext *decl_ctx, OptionalClangModuleID owning_module, clang::ClassTemplateDecl *class_template_decl, int kind, const TemplateParameterInfos &infos)
llvm::SmallVector< clang::ParmVarDecl * > CreateParameterDeclarations(clang::FunctionDecl *context, const clang::FunctionProtoType &prototype, const llvm::SmallVector< llvm::StringRef > &param_names)
For each parameter type of prototype, creates a clang::ParmVarDecl whose clang::DeclContext is contex...
clang::SourceManager * GetSourceMgr() const
std::unique_ptr< clang::HeaderSearch > m_header_search_up
void Finalize() override
Free up any resources associated with this TypeSystem.
static clang::ASTContext * DeclContextGetTypeSystemClang(const CompilerDeclContext &dc)
uint32_t IsHomogeneousAggregate(lldb::opaque_compiler_type_t type, CompilerType *base_type_ptr) override
LLVM_DUMP_METHOD void dump(lldb::opaque_compiler_type_t type) const override
Convenience LLVM-style dump method for use in the debugger only.
CXXRecordDeclAccessMap m_cxx_record_decl_access
Maps CXXRecordDecl to their most recent added method/field's AccessSpecifier.
static CompilerType GetFloatTypeFromBitSize(clang::ASTContext *ast, size_t bit_size)
clang::NamespaceDecl * GetUniqueNamespaceDeclaration(const char *name, clang::DeclContext *decl_ctx, OptionalClangModuleID owning_module, bool is_inline=false)
std::unique_ptr< clang::ASTContext > m_ast_up
CompilerType CreateGenericFunctionPrototype() override
static clang::QualType GetCanonicalQualType(lldb::opaque_compiler_type_t type)
CompilerType DeclGetFunctionReturnType(void *opaque_decl) override
static bool IsEnumType(lldb::opaque_compiler_type_t type)
static clang::CXXRecordDecl * GetAsCXXRecordDecl(lldb::opaque_compiler_type_t type)
CompilerType GetDirectNestedTypeWithName(lldb::opaque_compiler_type_t type, llvm::StringRef name) override
static bool SetObjCSuperClass(const CompilerType &type, const CompilerType &superclass_compiler_type)
clang::UsingDirectiveDecl * CreateUsingDirectiveDeclaration(clang::DeclContext *decl_ctx, OptionalClangModuleID owning_module, clang::NamespaceDecl *ns_decl)
static lldb::opaque_compiler_type_t GetOpaqueCompilerType(clang::ASTContext *ast, lldb::BasicType basic_type)
bool IsArrayType(lldb::opaque_compiler_type_t type, CompilerType *element_type, uint64_t *size, bool *is_incomplete) override
void DumpFromSymbolFile(Stream &s, llvm::StringRef symbol_name)
Dump clang AST types from the symbol file.
CompilerType AddConstModifier(lldb::opaque_compiler_type_t type) override
static void DumpDeclHiearchy(clang::Decl *decl)
static clang::ObjCMethodDecl * DeclContextGetAsObjCMethodDecl(const CompilerDeclContext &dc)
static clang::FunctionDecl * DeclContextGetAsFunctionDecl(const CompilerDeclContext &dc)
bool IsScalarType(lldb::opaque_compiler_type_t type) override
bool GetPtrAuthAddressDiversity(lldb::opaque_compiler_type_t type) override
std::shared_ptr< clang::TargetOptions > m_target_options_rp
lldb::TypeClass GetTypeClass(lldb::opaque_compiler_type_t type) override
static bool IsClassType(lldb::opaque_compiler_type_t type)
bool IsDefined(lldb::opaque_compiler_type_t type) override
static bool IsObjCClassType(const CompilerType &type)
TypeMetadataMap m_type_metadata
Maps Types to their associated ClangASTMetadata.
CompilerType GetCanonicalType(lldb::opaque_compiler_type_t type) override
bool RecordHasFields(const clang::RecordDecl *record_decl)
CompilerType GetFunctionArgumentAtIndex(lldb::opaque_compiler_type_t type, const size_t index) override
static std::optional< ClangASTMetadata > DeclContextGetMetaData(const CompilerDeclContext &dc, const clang::Decl *object)
static bool CompleteTagDeclarationDefinition(const CompilerType &type)
unsigned GetTypeQualifiers(lldb::opaque_compiler_type_t type) override
static clang::ObjCMethodDecl * AddMethodToObjCObjectType(const CompilerType &type, const char *name, const CompilerType &method_compiler_type, bool is_artificial, bool is_variadic, bool is_objc_direct_call)
CompilerDeclContext DeclGetDeclContext(void *opaque_decl) override
CompilerType CreateRecordType(clang::DeclContext *decl_ctx, OptionalClangModuleID owning_module, lldb::AccessType access_type, llvm::StringRef name, int kind, lldb::LanguageType language, std::optional< ClangASTMetadata > metadata=std::nullopt, bool exports_symbols=false)
bool DeclContextIsContainedInLookup(void *opaque_decl_ctx, void *other_opaque_decl_ctx) override
CompilerType AddPtrAuthModifier(lldb::opaque_compiler_type_t type, uint32_t payload) override
static bool AddObjCClassProperty(const CompilerType &type, const char *property_name, const CompilerType &property_compiler_type, clang::ObjCIvarDecl *ivar_decl, const char *property_setter_name, const char *property_getter_name, uint32_t property_attributes, ClangASTMetadata metadata)
static bool SetHasExternalStorage(lldb::opaque_compiler_type_t type, bool has_extern)
void SetMetadata(const clang::Decl *object, ClangASTMetadata meta_data)
clang::ParmVarDecl * CreateParameterDeclaration(clang::DeclContext *decl_ctx, OptionalClangModuleID owning_module, const char *name, const CompilerType &param_type, int storage, bool add_decl=false)
void DumpTypeDescription(lldb::opaque_compiler_type_t type, lldb::DescriptionLevel level=lldb::eDescriptionLevelFull) override
Dump the type to stdout.
CompilerType GetFunctionArgumentTypeAtIndex(lldb::opaque_compiler_type_t type, size_t idx) override
static clang::NamespaceDecl * DeclContextGetAsNamespaceDecl(const CompilerDeclContext &dc)
CompilerType CreateEnumerationType(llvm::StringRef name, clang::DeclContext *decl_ctx, OptionalClangModuleID owning_module, const Declaration &decl, const CompilerType &integer_qual_type, bool is_scoped, std::optional< clang::EnumExtensibilityAttr::Kind > enum_kind=std::nullopt)
npdb::PdbAstBuilder * GetNativePDBParser() override
std::unique_ptr< clang::DiagnosticConsumer > m_diagnostic_consumer_up
CompilerType GetTypeForDecl(clang::TagDecl *decl)
CompilerType CreateObjCClass(llvm::StringRef name, clang::DeclContext *decl_ctx, OptionalClangModuleID owning_module, bool isInternal, std::optional< ClangASTMetadata > metadata=std::nullopt)
CompilerType GetTypeForDecl(clang::NamedDecl *decl)
CompilerType GetDirectBaseClassAtIndex(lldb::opaque_compiler_type_t type, size_t idx, uint32_t *bit_offset_ptr) override
CompilerType GetArrayElementType(lldb::opaque_compiler_type_t type, ExecutionContextScope *exe_scope) override
llvm::Expected< CompilerType > DoIntegralPromotion(CompilerType from, ExecutionContextScope *exe_scope) override
Perform integral promotion on a given type.
static clang::DeclContext * DeclContextGetAsDeclContext(const CompilerDeclContext &dc)
bool IsTypedefType(lldb::opaque_compiler_type_t type) override
CompilerType GetPointerType(lldb::opaque_compiler_type_t type) override
std::optional< size_t > GetTypeBitAlign(lldb::opaque_compiler_type_t type, ExecutionContextScope *exe_scope) override
void Dump(llvm::raw_ostream &output, llvm::StringRef filter, bool show_color) override
std::unique_ptr< clang::Builtin::Context > m_builtins_up
CompilerType GetBuiltinTypeByName(ConstString name) override
bool GetCompleteDecl(clang::Decl *decl)
static bool StartTagDeclarationDefinition(const CompilerType &type)
uint32_t GetIndexForRecordChild(const clang::RecordDecl *record_decl, clang::NamedDecl *canonical_decl, bool omit_empty_base_classes)
bool IsPossibleDynamicType(lldb::opaque_compiler_type_t type, CompilerType *target_type, bool check_cplusplus, bool check_objc) override
CompilerType GetOrCreateStructForIdentifier(llvm::StringRef type_name, const std::initializer_list< std::pair< const char *, CompilerType > > &type_fields, bool packed=false)
void LogCreation() const
Emits information about this TypeSystem into the expression log.
static llvm::StringRef GetPluginNameStatic()
clang::Sema * m_sema
The sema associated that is currently used to build this ASTContext.
size_t GetNumMemberFunctions(lldb::opaque_compiler_type_t type) override
clang::LangOptions * GetLangOpts() const
static clang::VarDecl * AddVariableToRecordType(const CompilerType &type, llvm::StringRef name, const CompilerType &var_type, lldb::AccessType access)
CompilerType GetBasicTypeFromAST(lldb::BasicType basic_type) override
const clang::ClassTemplateSpecializationDecl * GetAsTemplateSpecialization(lldb::opaque_compiler_type_t type)
std::unique_ptr< clang::MangleContext > m_mangle_ctx_up
TypeMemberFunctionImpl GetMemberFunctionAtIndex(lldb::opaque_compiler_type_t type, size_t idx) override
bool IsTypeImpl(lldb::opaque_compiler_type_t type, llvm::function_ref< bool(clang::QualType)> predicate) const
size_t DeclGetFunctionNumArguments(void *opaque_decl) override
CompilerType GetAtomicType(lldb::opaque_compiler_type_t type) override
std::unique_ptr< PDBASTParser > m_pdb_ast_parser_up
std::unique_ptr< clang::DiagnosticsEngine > m_diagnostics_engine_up
static std::optional< std::string > GetCXXClassName(const CompilerType &type)
static void DumpTypeName(const CompilerType &type)
plugin::dwarf::DWARFASTParser * GetDWARFParser() override
CompilerType DeclGetFunctionArgumentType(void *opaque_decl, size_t arg_idx) override
bool IsPointerOrReferenceType(lldb::opaque_compiler_type_t type, CompilerType *pointee_type) override
static clang::EnumDecl * GetAsEnumDecl(const CompilerType &type)
bool IsFloatingPointType(lldb::opaque_compiler_type_t type, bool &is_complex) override
CompilerType AddVolatileModifier(lldb::opaque_compiler_type_t type) override
std::unique_ptr< clang::ModuleMap > m_module_map_up
clang::CXXMethodDecl * AddMethodToCXXRecordType(lldb::opaque_compiler_type_t type, llvm::StringRef name, llvm::StringRef asm_label, const CompilerType &method_type, lldb::AccessType access, bool is_virtual, bool is_static, bool is_inline, bool is_explicit, bool is_attr_used, bool is_artificial)
static bool IsObjCObjectOrInterfaceType(const CompilerType &type)
static void RequireCompleteType(CompilerType type)
Complete a type from debug info, or mark it as forcefully completed if there is no definition of the ...
CompilerType CreateTypedef(lldb::opaque_compiler_type_t type, const char *name, const CompilerDeclContext &decl_ctx, uint32_t opaque_payload) override
Using the current type, create a new typedef to that type using "typedef_name" as the name and "decl_...
llvm::DenseMap< const clang::Type *, ClangASTMetadata > TypeMetadataMap
llvm::Expected< uint32_t > GetNumChildren(lldb::opaque_compiler_type_t type, bool omit_empty_base_classes, const ExecutionContext *exe_ctx) override
CompilerType AddRestrictModifier(lldb::opaque_compiler_type_t type) override
clang::TemplateTemplateParmDecl * CreateTemplateTemplateParmDecl(const char *template_name)
lldb::TemplateArgumentKind GetTemplateArgumentKind(lldb::opaque_compiler_type_t type, size_t idx, bool expand_pack) override
clang::ClassTemplateDecl * ParseClassTemplateDecl(clang::DeclContext *decl_ctx, OptionalClangModuleID owning_module, lldb::AccessType access_type, const char *parent_name, int tag_decl_kind, const TypeSystemClang::TemplateParameterInfos &template_param_infos)
clang::ASTContext & getASTContext() const
Returns the clang::ASTContext instance managed by this TypeSystemClang.
std::vector< lldb_private::CompilerContext > DeclGetCompilerContext(void *opaque_decl) override
static CompilerType CreateMemberPointerType(const CompilerType &type, const CompilerType &pointee_type)
std::vector< lldb_private::CompilerContext > DeclContextGetCompilerContext(void *opaque_decl_ctx) override
void CreateASTContext()
Creates the internal ASTContext.
void SetExternalSource(llvm::IntrusiveRefCntPtr< clang::ExternalASTSource > ast_source_sp)
CompilerType GetCStringType(bool is_const)
bool IsAggregateType(lldb::opaque_compiler_type_t type) override
bool IsPromotableIntegerType(lldb::opaque_compiler_type_t type) override
Checks if the type is eligible for integral promotion.
static bool IsObjCObjectPointerType(const CompilerType &type, CompilerType *target_type=nullptr)
bool IsVectorType(lldb::opaque_compiler_type_t type, CompilerType *element_type, uint64_t *size) override
static LanguageSet GetSupportedLanguagesForTypes()
clang::VarDecl * CreateVariableDeclaration(clang::DeclContext *decl_context, OptionalClangModuleID owning_module, const char *name, clang::QualType type)
clang::BlockDecl * CreateBlockDeclaration(clang::DeclContext *ctx, OptionalClangModuleID owning_module)
llvm::DenseMap< const clang::Decl *, ClangASTMetadata > DeclMetadataMap
llvm::Expected< uint64_t > GetByteSize(lldb::opaque_compiler_type_t type, ExecutionContextScope *exe_scope)
ConstString DeclContextGetName(void *opaque_decl_ctx) override
size_t GetNumTemplateArguments(lldb::opaque_compiler_type_t type, bool expand_pack) override
ConstString DeclGetName(void *opaque_decl) override
Interface for representing a type system.
Definition TypeSystem.h:70
virtual bool isA(const void *ClassID) const =0
uint32_t Payload
Definition Type.h:570
Encapsulates a one-time expression for use in lldb.
A class that represents a running process on the host machine.
std::shared_ptr< lldb_private::TypeSystem > TypeSystemSP
void * opaque_compiler_type_t
Definition lldb-types.h:89
DescriptionLevel
Description levels for "void GetDescription(Stream *, DescriptionLevel)" calls.
@ eDescriptionLevelFull
BasicType
Basic types enumeration for the public API SBType::GetBasicType().
Format
Display format definitions.
uint64_t offset_t
Definition lldb-types.h:85
LanguageType
Programming language type.
Encoding
Register encoding definitions.
std::shared_ptr< lldb_private::TypeSystemClang > TypeSystemClangSP
uint64_t user_id_t
Definition lldb-types.h:82
std::weak_ptr< lldb_private::Target > TargetWP
A SmallBitVector that represents a set of source languages (lldb::LanguageType).
Definition Type.h:38
A type-erased pair of llvm::dwarf::SourceLanguageName and version.