13#include "clang/AST/ASTContext.h"
14#include "clang/AST/Decl.h"
15#include "clang/AST/DeclCXX.h"
16#include "clang/AST/DeclObjC.h"
17#include "clang/AST/RecordLayout.h"
18#include "clang/Sema/Lookup.h"
19#include "clang/Sema/Sema.h"
20#include "llvm/Support/raw_ostream.h"
44 clang::ASTContext &src_clang_ast = src_ast->getASTContext();
54 llvm::Expected<QualType> ret_or_error = delegate_sp->Import(src_qual_type);
58 "Couldn't import type: {0}");
65 return CompilerType(dst_ast.weak_from_this(), dst_clang_type);
73 clang::ASTContext *src_ast = &decl->getASTContext();
81 llvm::Expected<clang::Decl *> result = delegate_sp->Import(decl);
84 LLDB_LOG_ERROR(log, result.takeError(),
"Couldn't import decl: {0}");
88 user_id = metadata->GetUserID();
90 if (NamedDecl *named_decl = dyn_cast<NamedDecl>(decl))
92 " [ClangASTImporter] WARNING: Failed to import a {0} "
93 "'{1}', metadata {2}",
94 decl->getDeclKindName(), named_decl->getNameAsString(),
98 " [ClangASTImporter] WARNING: Failed to import a {0}, "
100 decl->getDeclKindName(), user_id);
122 m_backups[decl] = {decl->getDeclContext(), decl->getLexicalDeclContext()};
124 decl->setDeclContext(decl->getASTContext().getTranslationUnitDecl());
125 decl->setLexicalDeclContext(decl->getASTContext().getTranslationUnitDecl());
131 decl->invalidateCachedLinkage();
135 clang::Decl *decl, clang::DeclContext *base,
136 clang::DeclContext *(clang::Decl::*contextFromDecl)(),
137 clang::DeclContext *(clang::DeclContext::*contextFromContext)()) {
138 for (DeclContext *decl_ctx = (decl->*contextFromDecl)(); decl_ctx;
139 decl_ctx = (decl_ctx->*contextFromContext)()) {
140 if (decl_ctx == base) {
149 clang::DeclContext *base =
nullptr) {
154 &clang::DeclContext::getParent) ||
156 &clang::DeclContext::getLexicalParent)) {
160 base = clang::dyn_cast<clang::DeclContext>(decl);
167 if (clang::DeclContext *context =
168 clang::dyn_cast<clang::DeclContext>(decl)) {
169 for (clang::Decl *decl : context->decls()) {
171 return escaped_child;
184 " [ClangASTImporter] DeclContextOverride couldn't "
185 "override ({0}Decl*){1} - its child ({2}Decl*){3} escapes",
186 decl->getDeclKindName(), decl, escaped_child->getDeclKindName(),
198 for (DeclContext *decl_context = decl->getLexicalDeclContext();
199 decl_context; decl_context = decl_context->getLexicalParent()) {
200 DeclContext *redecl_context = decl_context->getRedeclContext();
202 if (llvm::isa<FunctionDecl>(redecl_context) &&
203 llvm::isa<TranslationUnitDecl>(redecl_context->getLexicalParent())) {
204 for (clang::Decl *child_decl : decl_context->decls()) {
212 for (
const std::pair<clang::Decl *, Backup> &backup :
m_backups) {
213 backup.first->setDeclContext(backup.second.decl_context);
214 backup.first->setLexicalDeclContext(backup.second.lexical_decl_context);
230 llvm::SetVector<NamedDecl *> m_decls_to_complete;
233 llvm::SmallPtrSet<NamedDecl *, 32> m_decls_already_completed;
234 clang::ASTContext *m_dst_ctx;
235 clang::ASTContext *m_src_ctx;
236 ClangASTImporter &importer;
240 lldb_private::ClangASTImporter::ASTContextMetadata
const &to_context_md) {
251 if (
auto *tag_decl = dyn_cast<TagDecl>(decl)) {
252 if (
auto *original_tag_decl = dyn_cast<TagDecl>(original_decl)) {
253 if (original_tag_decl->isCompleteDefinition()) {
254 m_delegate->ImportDefinitionTo(tag_decl, original_tag_decl);
255 tag_decl->setCompleteDefinition(
true);
259 tag_decl->setHasExternalLexicalStorage(
false);
260 tag_decl->setHasExternalVisibleStorage(
false);
261 }
else if (
auto *container_decl = dyn_cast<ObjCContainerDecl>(decl)) {
262 container_decl->setHasExternalLexicalStorage(
false);
263 container_decl->setHasExternalVisibleStorage(
false);
272 explicit CompleteTagDeclsScope(ClangASTImporter &importer,
273 clang::ASTContext *dst_ctx,
274 clang::ASTContext *src_ctx)
275 : m_delegate(importer.GetDelegate(dst_ctx, src_ctx)), m_dst_ctx(dst_ctx),
276 m_src_ctx(src_ctx), importer(importer) {
277 m_delegate->SetImportListener(
this);
280 ~CompleteTagDeclsScope()
override {
285 while (!m_decls_to_complete.empty()) {
286 NamedDecl *decl = m_decls_to_complete.pop_back_val();
287 m_decls_already_completed.insert(decl);
289 CompleteDecl(decl, *to_context_md);
291 to_context_md->removeOrigin(decl);
296 m_delegate->RemoveImportListener();
299 void NewDeclImported(clang::Decl *from, clang::Decl *to)
override {
301 if (!isa<TagDecl>(to) && !isa<ObjCInterfaceDecl>(to))
303 auto *from_record_decl = dyn_cast<CXXRecordDecl>(from);
305 if (from_record_decl && from_record_decl->isInjectedClassName())
308 NamedDecl *to_named_decl = dyn_cast<NamedDecl>(to);
310 if (m_decls_already_completed.contains(to_named_decl))
313 m_decls_to_complete.insert(to_named_decl);
327 " [ClangASTImporter] DeportType called on ({0}Type*){1:x} "
328 "from (ASTContext*){2:x} to (ASTContext*){3:x}",
336 t->getOriginalDecl());
338 CompleteTagDeclsScope complete_scope(*
this, &dst.
getASTContext(),
339 &src_ctxt->getASTContext());
347 clang::ASTContext *src_ctx = &decl->getASTContext();
349 " [ClangASTImporter] DeportDecl called on ({0}Decl*){1:x} from "
350 "(ASTContext*){2:x} to (ASTContext*){3:x}",
351 decl->getDeclKindName(), decl, src_ctx, dst_ctx);
359 CompleteTagDeclsScope complete_scope(*
this, dst_ctx, src_ctx);
367 " [ClangASTImporter] DeportDecl deported ({0}Decl*){1:x} to "
369 decl->getDeclKindName(), decl, result->getDeclKindName(), result);
379 if (isa<ObjCInterfaceDecl>(d))
388 clang::QualType qual_type(
391 const clang::Type::TypeClass type_class = qual_type->getTypeClass();
392 switch (type_class) {
393 case clang::Type::Record:
394 return CanImport(qual_type->getAsCXXRecordDecl());
395 case clang::Type::Enum:
396 return CanImport(llvm::cast<clang::EnumType>(qual_type)->getOriginalDecl());
397 case clang::Type::ObjCObject:
398 case clang::Type::ObjCInterface: {
399 const clang::ObjCObjectType *objc_class_type =
400 llvm::dyn_cast<clang::ObjCObjectType>(qual_type);
401 if (objc_class_type) {
402 clang::ObjCInterfaceDecl *class_interface_decl =
403 objc_class_type->getInterface();
410 case clang::Type::Typedef:
412 llvm::cast<clang::TypedefType>(qual_type)
414 ->getUnderlyingType()
417 case clang::Type::Auto:
419 llvm::cast<clang::AutoType>(qual_type)
423 case clang::Type::Paren:
426 llvm::cast<clang::ParenType>(qual_type)->desugar().getAsOpaquePtr()));
439 clang::QualType qual_type(
442 const clang::Type::TypeClass type_class = qual_type->getTypeClass();
443 switch (type_class) {
444 case clang::Type::Record: {
445 const clang::CXXRecordDecl *cxx_record_decl =
446 qual_type->getAsCXXRecordDecl();
447 if (cxx_record_decl) {
453 case clang::Type::Enum: {
454 clang::EnumDecl *enum_decl =
455 llvm::cast<clang::EnumType>(qual_type)->getOriginalDecl();
462 case clang::Type::ObjCObject:
463 case clang::Type::ObjCInterface: {
464 const clang::ObjCObjectType *objc_class_type =
465 llvm::dyn_cast<clang::ObjCObjectType>(qual_type);
466 if (objc_class_type) {
467 clang::ObjCInterfaceDecl *class_interface_decl =
468 objc_class_type->getInterface();
471 if (class_interface_decl) {
478 case clang::Type::Typedef:
480 llvm::cast<clang::TypedefType>(qual_type)
482 ->getUnderlyingType()
485 case clang::Type::Auto:
487 llvm::cast<clang::AutoType>(qual_type)
491 case clang::Type::Paren:
494 llvm::cast<clang::ParenType>(qual_type)->desugar().getAsOpaquePtr()));
506 if (
Import(compiler_type)) {
535template <
class D,
class O>
537 llvm::DenseMap<const D *, O> &destination_map,
538 llvm::DenseMap<const D *, O> &source_map,
545 typedef llvm::DenseMap<const D *, O> MapType;
546 typedef typename MapType::value_type PairType;
547 std::vector<PairType> sorted_items;
548 sorted_items.reserve(source_map.size());
549 sorted_items.assign(source_map.begin(), source_map.end());
550 llvm::sort(sorted_items, llvm::less_second());
552 for (
const auto &item : sorted_items) {
557 destination_map.insert(
558 std::pair<const D *, O>(parser_decl.
decl, item.second));
574template <
bool IsVirtual>
577 llvm::DenseMap<
const clang::CXXRecordDecl *,
578 clang::CharUnits> &base_offsets) {
579 for (CXXRecordDecl::base_class_const_iterator
580 bi = (IsVirtual ? record->vbases_begin() : record->bases_begin()),
581 be = (IsVirtual ? record->vbases_end() : record->bases_end());
583 if (!IsVirtual && bi->isVirtual())
586 const clang::Type *origin_base_type = bi->getType().getTypePtr();
587 const clang::RecordType *origin_base_record_type =
588 origin_base_type->getAs<RecordType>();
590 if (!origin_base_record_type)
594 origin_base_record_type->getOriginalDecl());
605 CharUnits base_offset;
609 record_layout.getVBaseClassOffset(origin_base_cxx_record.
decl);
612 record_layout.getBaseClassOffset(origin_base_cxx_record.
decl);
614 base_offsets.insert(std::pair<const CXXRecordDecl *, CharUnits>(
615 origin_base_cxx_record.
decl, base_offset));
622 const RecordDecl *record, uint64_t &size, uint64_t &alignment,
623 llvm::DenseMap<const clang::FieldDecl *, uint64_t> &field_offsets,
624 llvm::DenseMap<const clang::CXXRecordDecl *, clang::CharUnits>
626 llvm::DenseMap<const clang::CXXRecordDecl *, clang::CharUnits>
631 clang::ASTContext &dest_ctx = record->getASTContext();
633 "LayoutRecordType on (ASTContext*){0:x} '{1}' for (RecordDecl*)"
634 "{2:x} [name = '{3}']",
645 std::remove_reference_t<
decltype(field_offsets)> origin_field_offsets;
646 std::remove_reference_t<
decltype(base_offsets)> origin_base_offsets;
647 std::remove_reference_t<
decltype(vbase_offsets)> origin_virtual_base_offsets;
650 &origin_record->getASTContext(),
651 const_cast<RecordDecl *
>(origin_record.
decl));
653 clang::RecordDecl *definition = origin_record.
decl->getDefinition();
654 if (!definition || !definition->isCompleteDefinition())
657 const ASTRecordLayout &record_layout(
658 origin_record->getASTContext().getASTRecordLayout(origin_record.
decl));
660 int field_idx = 0, field_count = record_layout.getFieldCount();
662 for (RecordDecl::field_iterator fi = origin_record->field_begin(),
663 fe = origin_record->field_end();
665 if (field_idx >= field_count)
668 uint64_t field_offset = record_layout.getFieldOffset(field_idx);
670 origin_field_offsets.insert(
671 std::pair<const FieldDecl *, uint64_t>(*fi, field_offset));
679 if (origin_cxx_record.
IsValid()) {
681 origin_base_offsets) ||
683 origin_virtual_base_offsets))
687 if (!
ImportOffsetMap(&dest_ctx, field_offsets, origin_field_offsets, *
this) ||
688 !
ImportOffsetMap(&dest_ctx, base_offsets, origin_base_offsets, *
this) ||
689 !
ImportOffsetMap(&dest_ctx, vbase_offsets, origin_virtual_base_offsets,
693 size = record_layout.getSize().getQuantity() * dest_ctx.getCharWidth();
695 record_layout.getAlignment().getQuantity() * dest_ctx.getCharWidth();
699 LLDB_LOG(log,
"LRT Original = (RecordDecl*){0:x}",
700 static_cast<const void *
>(origin_record.
decl));
701 LLDB_LOG(log,
"LRT Size = {0}", size);
702 LLDB_LOG(log,
"LRT Alignment = {0}", alignment);
704 for (RecordDecl::field_iterator fi = record->field_begin(),
705 fe = record->field_end();
709 "LRT (FieldDecl*){0:x}, Name = '{1}', Type = '{2}', Offset = "
711 *fi, fi->getName(), fi->getType().getAsString(), field_offsets[*fi]);
715 if (parser_cxx_record.
IsValid()) {
717 for (CXXRecordDecl::base_class_const_iterator
718 bi = parser_cxx_record->bases_begin(),
719 be = parser_cxx_record->bases_end();
721 bool is_virtual = bi->isVirtual();
723 QualType base_type = bi->getType();
724 const RecordType *base_record_type = base_type->getAs<RecordType>();
726 base_record_type->getOriginalDecl());
731 "LRT {0}(CXXRecordDecl*){1:x}, Name = '{2}', Offset = "
733 (is_virtual ?
"Virtual " :
""), base_cxx_record.
decl,
734 base_cxx_record.
decl->getName(),
736 ? vbase_offsets[base_cxx_record.
decl].getQuantity()
737 : base_offsets[base_cxx_record.
decl].getQuantity()));
740 LLDB_LOG(log,
"LRD Not a CXXRecord, so no bases");
748 const clang::RecordDecl *record_decl, uint64_t &bit_size,
750 llvm::DenseMap<const clang::FieldDecl *, uint64_t> &field_offsets,
751 llvm::DenseMap<const clang::CXXRecordDecl *, clang::CharUnits>
753 llvm::DenseMap<const clang::CXXRecordDecl *, clang::CharUnits>
755 RecordDeclToLayoutMap::iterator pos =
757 base_offsets.clear();
758 vbase_offsets.clear();
760 bit_size = pos->second.bit_size;
761 alignment = pos->second.alignment;
762 field_offsets.swap(pos->second.field_offsets);
763 base_offsets.swap(pos->second.base_offsets);
764 vbase_offsets.swap(pos->second.vbase_offsets);
774 field_offsets, base_offsets,
780 field_offsets.clear();
793 if (!decl_origin.
Valid())
803 &decl->getASTContext());
805 delegate_sp->ImportDefinitionTo(decl, decl_origin.
decl);
811 clang::TagDecl *origin_decl) {
812 clang::ASTContext *origin_ast_ctx = &origin_decl->getASTContext();
818 GetDelegate(&decl->getASTContext(), origin_ast_ctx));
821 delegate_sp->ImportDefinitionTo(decl, origin_decl);
825 context_md->setOrigin(decl,
DeclOrigin(origin_ast_ctx, origin_decl));
830 clang::ObjCInterfaceDecl *interface_decl) {
833 if (!decl_origin.
Valid())
843 delegate_sp->ImportDefinitionTo(interface_decl, decl_origin.
decl);
845 if (ObjCInterfaceDecl *super_class = interface_decl->getSuperClass())
857 if (
const TagType *tag_type = type->getAs<TagType>()) {
858 TagDecl *tag_decl = tag_type->getOriginalDecl();
862 if (!decl_origin.
Valid())
869 &tag_decl->getASTContext());
871 TagDecl *origin_tag_decl = llvm::dyn_cast<TagDecl>(decl_origin.
decl);
873 for (Decl *origin_child_decl : origin_tag_decl->decls()) {
874 llvm::Expected<Decl *> imported_or_err =
875 delegate_sp->Import(origin_child_decl);
876 if (!imported_or_err) {
878 "Couldn't import decl: {0}");
883 if (RecordDecl *record_decl = dyn_cast<RecordDecl>(origin_tag_decl))
884 record_decl->setHasLoadedFieldsFromExternalStorage(
true);
889 if (
const ObjCObjectType *objc_object_type = type->getAs<ObjCObjectType>()) {
890 if (ObjCInterfaceDecl *objc_interface_decl =
891 objc_object_type->getInterface()) {
894 if (!decl_origin.
Valid())
898 GetDelegate(&objc_interface_decl->getASTContext(), decl_origin.
ctx));
900 ObjCInterfaceDecl *origin_interface_decl =
901 llvm::dyn_cast<ObjCInterfaceDecl>(decl_origin.
decl);
903 for (Decl *origin_child_decl : origin_interface_decl->decls()) {
904 llvm::Expected<Decl *> imported_or_err =
905 delegate_sp->Import(origin_child_decl);
906 if (!imported_or_err) {
908 "Couldn't import decl: {0}");
925 if (
const TagType *tag_type = type->getAs<TagType>()) {
926 TagDecl *tag_decl = tag_type->getOriginalDecl();
928 if (tag_decl->getDefinition())
933 if (
const ObjCObjectType *objc_object_type = type->getAs<ObjCObjectType>()) {
934 if (ObjCInterfaceDecl *objc_interface_decl =
935 objc_object_type->getInterface())
939 if (
const ArrayType *array_type = type->getAsArrayTypeUnsafe())
941 if (
const AtomicType *atomic_type = type->getAs<AtomicType>())
947std::optional<ClangASTMetadata>
951 if (decl_origin.
Valid()) {
963 return context_md->getOrigin(decl);
967 clang::Decl *original_decl) {
969 context_md->setOrigin(
970 decl,
DeclOrigin(&original_decl->getASTContext(), original_decl));
977 context_md->m_namespace_maps[decl] = namespace_map;
986 NamespaceMetaMap::iterator iter = namespace_maps.find(decl);
988 if (iter != namespace_maps.end())
997 const DeclContext *parent_context = decl->getDeclContext();
998 const NamespaceDecl *parent_namespace =
999 dyn_cast<NamespaceDecl>(parent_context);
1002 if (parent_namespace)
1007 new_map = std::make_shared<NamespaceMap>();
1009 if (context_md->m_map_completer) {
1010 std::string namespace_string = decl->getDeclName().getAsString();
1012 context_md->m_map_completer->CompleteNamespaceMap(
1013 new_map,
ConstString(namespace_string.c_str()), parent_map);
1016 context_md->m_namespace_maps[decl] = new_map;
1023 " [ClangASTImporter] Forgetting destination (ASTContext*){0:x}",
1030 clang::ASTContext *src_ast) {
1036 " [ClangASTImporter] Forgetting source->dest "
1037 "(ASTContext*){0:x}->(ASTContext*){1:x}",
1043 md->m_delegates.erase(src_ast);
1044 md->removeOriginsWithContext(src_ast);
1049llvm::Expected<Decl *>
1056 if (
const auto *CXX = llvm::dyn_cast<clang::CXXRecordDecl>(From))
1057 if (CXX->isLambda())
1058 return llvm::make_error<ASTImportError>(
1059 ASTImportError::UnsupportedConstruct);
1078 assert(origin.
decl != From &&
"Origin points to itself?");
1089 if (origin.
Valid() && origin.
ctx == &getToContext()) {
1090 RegisterImportedDecl(From, origin.
decl);
1103 if (origin.
Valid()) {
1104 auto R =
m_main.CopyDecl(&getToContext(), origin.
decl);
1106 RegisterImportedDecl(From, R);
1113 std::optional<ClangASTMetadata> md =
m_main.GetDeclMetadata(From);
1114 auto *td = dyn_cast<TagDecl>(From);
1115 if (td && md && md->IsForcefullyCompleted()) {
1118 "[ClangASTImporter] Searching for a complete definition of {0} in "
1121 Expected<DeclContext *> dc_or_err = ImportContext(td->getDeclContext());
1123 return dc_or_err.takeError();
1124 Expected<DeclarationName> dn_or_err =
Import(td->getDeclName());
1126 return dn_or_err.takeError();
1127 DeclContext *dc = *dc_or_err;
1128 DeclContext::lookup_result lr = dc->lookup(*dn_or_err);
1129 for (clang::Decl *candidate : lr) {
1130 if (candidate->getKind() == From->getKind()) {
1131 RegisterImportedDecl(From, candidate);
1136 LLDB_LOG(log,
"[ClangASTImporter] Complete definition not found");
1139 return ASTImporter::ImportImpl(From);
1143 clang::Decl *to, clang::Decl *from) {
1146 auto getDeclName = [](Decl
const *decl) {
1147 std::string name_string;
1148 if (
auto const *from_named_decl = dyn_cast<clang::NamedDecl>(decl)) {
1149 llvm::raw_string_ostream name_stream(name_string);
1150 from_named_decl->printName(name_stream);
1157 if (
auto *D = GetAlreadyImportedOrNull(from); D && D != to) {
1160 "[ClangASTImporter] ERROR: overwriting an already imported decl "
1161 "'{0:x}' ('{1}') from '{2:x}' with '{3:x}'. Likely due to a name "
1162 "conflict when importing '{1}'.",
1163 D, getDeclName(from), from, to);
1174 MapImported(from, to);
1176 if (llvm::Error err = ImportDefinition(from)) {
1178 "[ClangASTImporter] Error during importing definition: {0}");
1182 if (clang::TagDecl *to_tag = dyn_cast<clang::TagDecl>(to)) {
1183 if (clang::TagDecl *from_tag = dyn_cast<clang::TagDecl>(from)) {
1184 to_tag->setCompleteDefinition(from_tag->isCompleteDefinition());
1188 "==== [ClangASTImporter][TUDecl: {0:x}] Imported "
1189 "({1}Decl*){2:x}, named {3} (from "
1191 static_cast<void *
>(to->getTranslationUnitDecl()),
1192 from->getDeclKindName(),
static_cast<void *
>(to),
1193 getDeclName(from),
static_cast<void *
>(from));
1196 std::string ast_string;
1197 llvm::raw_string_ostream ast_stream(ast_string);
1198 to->getTranslationUnitDecl()->dump(ast_stream);
1199 LLDB_LOG(log_ast,
"{0}", ast_string);
1208 if (ObjCInterfaceDecl *to_objc_interface = dyn_cast<ObjCInterfaceDecl>(to)) {
1209 ObjCInterfaceDecl *to_superclass = to_objc_interface->getSuperClass();
1214 ObjCInterfaceDecl *from_objc_interface = dyn_cast<ObjCInterfaceDecl>(from);
1216 if (!from_objc_interface)
1219 ObjCInterfaceDecl *from_superclass = from_objc_interface->getSuperClass();
1221 if (!from_superclass)
1224 llvm::Expected<Decl *> imported_from_superclass_decl =
1227 if (!imported_from_superclass_decl) {
1229 "Couldn't import decl: {0}");
1233 ObjCInterfaceDecl *imported_from_superclass =
1234 dyn_cast<ObjCInterfaceDecl>(*imported_from_superclass_decl);
1236 if (!imported_from_superclass)
1239 if (!to_objc_interface->hasDefinition())
1240 to_objc_interface->startDefinition();
1242 to_objc_interface->setSuperClass(
m_source_ctx->getTrivialTypeSourceInfo(
1243 m_source_ctx->getObjCInterfaceType(imported_from_superclass)));
1252 CXXMethodDecl *to_method) {
1253 if (!to_method->isVirtual())
1255 QualType return_type = to_method->getReturnType();
1256 if (!return_type->isPointerType() && !return_type->isReferenceType())
1259 clang::RecordDecl *rd = return_type->getPointeeType()->getAsRecordDecl();
1262 if (rd->getDefinition())
1269static OptionalClangModuleID
1277 from_source.
GetIDForModule(module->Parent), from_source, to_source);
1280 module->IsExplicit);
1293 auto *from_source = llvm::dyn_cast_or_null<ClangExternalASTSourceCallbacks>(
1294 getFromContext().getExternalSource());
1296 auto *to_source = llvm::dyn_cast_or_null<ClangExternalASTSourceCallbacks>(
1297 getToContext().getExternalSource());
1298 if (from_source && to_source) {
1307 if (std::optional<ClangASTMetadata> metadata =
m_main.GetDeclMetadata(from))
1308 user_id = metadata->GetUserID();
1311 if (NamedDecl *from_named_decl = dyn_cast<clang::NamedDecl>(from)) {
1312 std::string name_string;
1313 llvm::raw_string_ostream name_stream(name_string);
1314 from_named_decl->printName(name_stream);
1318 " [ClangASTImporter] Imported ({0}Decl*){1:x}, named {2} (from "
1319 "(Decl*){3:x}), metadata {4}",
1320 from->getDeclKindName(), to, name_string, from, user_id);
1323 " [ClangASTImporter] Imported ({0}Decl*){1:x} (from "
1324 "(Decl*){2:x}), metadata {3}",
1325 from->getDeclKindName(), to, from, user_id);
1330 m_main.GetContextMetadata(&to->getASTContext());
1334 if (from_context_md) {
1335 DeclOrigin origin = from_context_md->getOrigin(from);
1337 if (origin.
Valid()) {
1338 if (origin.
ctx != &to->getASTContext()) {
1340 to_context_md->setOrigin(to, origin);
1343 " [ClangASTImporter] Propagated origin "
1344 "(Decl*){0:x}/(ASTContext*){1:x} from (ASTContext*){2:x} to "
1345 "(ASTContext*){3:x}",
1346 origin.
decl, origin.
ctx, &from->getASTContext(),
1347 &to->getASTContext());
1357 " [ClangASTImporter] Decl has no origin information in "
1358 "(ASTContext*){0:x}",
1359 &from->getASTContext());
1362 if (
auto *to_namespace = dyn_cast<clang::NamespaceDecl>(to)) {
1363 auto *from_namespace = cast<clang::NamespaceDecl>(from);
1367 NamespaceMetaMap::iterator namespace_map_iter =
1368 namespace_maps.find(from_namespace);
1370 if (namespace_map_iter != namespace_maps.end())
1371 to_context_md->m_namespace_maps[to_namespace] =
1372 namespace_map_iter->second;
1378 " [ClangASTImporter] Sourced origin "
1379 "(Decl*){0:x}/(ASTContext*){1:x} into (ASTContext*){2:x}",
1383 if (
auto *to_namespace_decl = dyn_cast<NamespaceDecl>(to)) {
1384 m_main.BuildNamespaceMap(to_namespace_decl);
1385 to_namespace_decl->setHasExternalVisibleStorage();
1395 if (
auto *to_tag_decl = dyn_cast<TagDecl>(to)) {
1396 to_tag_decl->setHasExternalLexicalStorage();
1397 to_tag_decl->getPrimaryContext()->setMustBuildLookupTable();
1398 auto from_tag_decl = cast<TagDecl>(from);
1402 " [ClangASTImporter] To is a TagDecl - attributes {0}{1} [{2}->{3}]",
1403 (to_tag_decl->hasExternalLexicalStorage() ?
" Lexical" :
""),
1404 (to_tag_decl->hasExternalVisibleStorage() ?
" Visible" :
""),
1405 (from_tag_decl->isCompleteDefinition() ?
"complete" :
"incomplete"),
1406 (to_tag_decl->isCompleteDefinition() ?
"complete" :
"incomplete"));
1409 if (
auto *to_container_decl = dyn_cast<ObjCContainerDecl>(to)) {
1410 to_container_decl->setHasExternalLexicalStorage();
1411 to_container_decl->setHasExternalVisibleStorage();
1414 if (ObjCInterfaceDecl *to_interface_decl =
1415 llvm::dyn_cast<ObjCInterfaceDecl>(to_container_decl)) {
1418 " [ClangASTImporter] To is an ObjCInterfaceDecl - attributes "
1420 (to_interface_decl->hasExternalLexicalStorage() ?
" Lexical" :
""),
1421 (to_interface_decl->hasExternalVisibleStorage() ?
" Visible" :
""),
1422 (to_interface_decl->hasDefinition() ?
" HasDefinition" :
""));
1425 log,
" [ClangASTImporter] To is an {0}Decl - attributes {1}{2}",
1426 ((Decl *)to_container_decl)->getDeclKindName(),
1427 (to_container_decl->hasExternalLexicalStorage() ?
" Lexical" :
""),
1428 (to_container_decl->hasExternalVisibleStorage() ?
" Visible" :
""));
1433 if (clang::CXXMethodDecl *to_method = dyn_cast<CXXMethodDecl>(to))
1439 return m_main.GetDeclOrigin(To).decl;
static OptionalClangModuleID RemapModule(OptionalClangModuleID from_id, ClangExternalASTSourceCallbacks &from_source, ClangExternalASTSourceCallbacks &to_source)
Recreate a module with its parents in to_source and return its id.
bool ExtractBaseOffsets(const ASTRecordLayout &record_layout, DeclFromUser< const CXXRecordDecl > &record, llvm::DenseMap< const clang::CXXRecordDecl *, clang::CharUnits > &base_offsets)
Given a CXXRecordDecl, will calculate and populate base_offsets with the integral offsets of any of i...
static void MaybeCompleteReturnType(ClangASTImporter &importer, CXXMethodDecl *to_method)
Takes a CXXMethodDecl and completes the return type if necessary.
static bool ImportOffsetMap(clang::ASTContext *dest_ctx, llvm::DenseMap< const D *, O > &destination_map, llvm::DenseMap< const D *, O > &source_map, ClangASTImporter &importer)
Copy layout information from source_map to the destination_map.
#define LLDB_LOG(log,...)
The LLDB_LOG* macros defined below are the way to emit log messages.
#define LLDB_LOG_ERROR(log, error,...)
DeclContextOverride()=default
void Override(clang::Decl *decl)
llvm::DenseMap< clang::Decl *, Backup > m_backups
void OverrideAllDeclsFromContainingFunction(clang::Decl *decl)
void OverrideOne(clang::Decl *decl)
clang::Decl * GetEscapedChild(clang::Decl *decl, clang::DeclContext *base=nullptr)
bool ChainPassesThrough(clang::Decl *decl, clang::DeclContext *base, clang::DeclContext *(clang::Decl::*contextFromDecl)(), clang::DeclContext *(clang::DeclContext::*contextFromContext)())
bool hasOrigin(const clang::Decl *decl) const
Returns true there is a known DeclOrigin for the given Decl.
DeclOrigin getOrigin(const clang::Decl *decl) const
Returns the DeclOrigin for the given Decl or an invalid DeclOrigin instance if there no known DeclOri...
Scope guard that attaches a CxxModuleHandler to an ASTImporterDelegate and deattaches it at the end o...
Manages and observes all Clang AST node importing in LLDB.
bool CompleteTagDecl(clang::TagDecl *decl)
std::optional< ClangASTMetadata > GetDeclMetadata(const clang::Decl *decl)
clang::Decl * DeportDecl(clang::ASTContext *dst_ctx, clang::Decl *decl)
Copies the given decl to the destination type system.
void BuildNamespaceMap(const clang::NamespaceDecl *decl)
void RegisterNamespaceMap(const clang::NamespaceDecl *decl, NamespaceMapSP &namespace_map)
void ForgetDestination(clang::ASTContext *dst_ctx)
CompilerType CopyType(TypeSystemClang &dst, const CompilerType &src_type)
Copies the given type and the respective declarations to the destination type system.
clang::Decl * CopyDecl(clang::ASTContext *dst_ctx, clang::Decl *decl)
DeclOrigin GetDeclOrigin(const clang::Decl *decl)
bool LayoutRecordType(const clang::RecordDecl *record_decl, uint64_t &bit_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 CompleteTagDeclWithOrigin(clang::TagDecl *decl, clang::TagDecl *origin)
bool CanImport(const CompilerType &type)
Returns true iff the given type was copied from another TypeSystemClang and the original type in this...
ASTContextMetadataSP GetContextMetadata(clang::ASTContext *dst_ctx)
bool importRecordLayoutFromOrigin(const clang::RecordDecl *record, 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)
If record has a valid origin, this function copies that origin's layout into this ClangASTImporter in...
void ForgetSource(clang::ASTContext *dst_ctx, clang::ASTContext *src_ctx)
bool CompleteObjCInterfaceDecl(clang::ObjCInterfaceDecl *interface_decl)
ASTContextMetadataSP MaybeGetContextMetadata(clang::ASTContext *dst_ctx)
std::shared_ptr< NamespaceMap > NamespaceMapSP
NamespaceMapSP GetNamespaceMap(const clang::NamespaceDecl *decl)
std::shared_ptr< ASTImporterDelegate > ImporterDelegateSP
llvm::DenseMap< const clang::NamespaceDecl *, NamespaceMapSP > NamespaceMetaMap
bool CompleteType(const CompilerType &compiler_type)
void SetRecordLayout(clang::RecordDecl *decl, const LayoutInfo &layout)
Sets the layout for the given RecordDecl.
ContextMetadataMap m_metadata_map
bool RequireCompleteType(clang::QualType type)
CompilerType DeportType(TypeSystemClang &dst, const CompilerType &src_type)
Copies the given type and the respective declarations to the destination type system.
RecordDeclToLayoutMap m_record_decl_to_layout_map
bool Import(const CompilerType &type)
If the given type was copied from another TypeSystemClang then copy over all missing information (e....
ImporterDelegateSP GetDelegate(clang::ASTContext *dst_ctx, clang::ASTContext *src_ctx)
void SetDeclOrigin(const clang::Decl *decl, clang::Decl *original_decl)
Updates the internal origin-tracking information so that the given 'original' decl is from now on use...
std::shared_ptr< ASTContextMetadata > ASTContextMetadataSP
bool CompleteAndFetchChildren(clang::QualType type)
TypeSystemClang & GetTypeSystem() const
OptionalClangModuleID GetIDForModule(clang::Module *module)
clang::Module * getModule(unsigned ID) override
Generic representation of a type in a programming language.
TypeSystemSPWrapper GetTypeSystem() const
Accessors.
lldb::opaque_compiler_type_t GetOpaqueQualType() const
ConstString GetTypeName(bool BaseOnly=false) const
A uniqued constant string class.
DeclFromUser< D > GetOrigin(ClangASTImporter &importer)
DeclFromParser< D > Import(clang::ASTContext *dest_ctx, ClangASTImporter &importer)
unsigned GetValue() const
A TypeSystem implementation based on Clang.
static void SetOwningModule(clang::Decl *decl, OptionalClangModuleID owning_module)
Set the owning module for decl.
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.
static TypeSystemClang * GetASTContext(clang::ASTContext *ast_ctx)
std::optional< ClangASTMetadata > GetMetadata(const clang::Decl *object)
static bool CompleteTagDeclarationDefinition(const CompilerType &type)
static bool SetHasExternalStorage(lldb::opaque_compiler_type_t type, bool has_extern)
bool GetCompleteDecl(clang::Decl *decl)
clang::ASTContext & getASTContext() const
Returns the clang::ASTContext instance managed by this TypeSystemClang.
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.
TD< D2 > DynCast(TD< D1 > source)
void * opaque_compiler_type_t
clang::DeclContext * decl_context
clang::DeclContext * lexical_decl_context
clang::Decl * GetOriginalDecl(clang::Decl *To) override
llvm::Expected< clang::Decl * > ImportImpl(clang::Decl *From) override
void MarkDeclImported(clang::Decl *from, clang::Decl *to)
llvm::SmallPtrSet< clang::Decl *, 16 > m_decls_to_ignore
Decls we should ignore when mapping decls back to their original ASTContext.
CxxModuleHandler * m_std_handler
void Imported(clang::Decl *from, clang::Decl *to) override
NewDeclListener * m_new_decl_listener
The currently attached listener.
void ImportDefinitionTo(clang::Decl *to, clang::Decl *from)
clang::ASTContext * m_source_ctx
ClangASTImporter & m_main
Listener interface used by the ASTImporterDelegate to inform other code about decls that have been im...
static clang::QualType GetQualType(const CompilerType &ct)
static clang::QualType GetCanonicalQualType(const CompilerType &ct)
static bool IsClangType(const CompilerType &ct)
static CompilerType RemoveFastQualifiers(const CompilerType &ct)