1 //===-- ClangASTImporter.cpp ----------------------------------------------===//
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
7 //===----------------------------------------------------------------------===//
9 #include "lldb/Core/Module.h"
10 #include "lldb/Utility/LLDBAssert.h"
11 #include "lldb/Utility/LLDBLog.h"
12 #include "lldb/Utility/Log.h"
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"
22 #include "Plugins/ExpressionParser/Clang/ClangASTImporter.h"
23 #include "Plugins/ExpressionParser/Clang/ClangASTMetadata.h"
24 #include "Plugins/ExpressionParser/Clang/ClangASTSource.h"
25 #include "Plugins/ExpressionParser/Clang/ClangExternalASTSourceCallbacks.h"
26 #include "Plugins/ExpressionParser/Clang/ClangUtil.h"
27 #include "Plugins/TypeSystem/Clang/TypeSystemClang.h"
31 #include <type_traits>
33 using namespace lldb_private
;
34 using namespace clang
;
36 CompilerType
ClangASTImporter::CopyType(TypeSystemClang
&dst_ast
,
37 const CompilerType
&src_type
) {
38 clang::ASTContext
&dst_clang_ast
= dst_ast
.getASTContext();
40 auto src_ast
= src_type
.GetTypeSystem().dyn_cast_or_null
<TypeSystemClang
>();
42 return CompilerType();
44 clang::ASTContext
&src_clang_ast
= src_ast
->getASTContext();
46 clang::QualType src_qual_type
= ClangUtil::GetQualType(src_type
);
48 ImporterDelegateSP
delegate_sp(GetDelegate(&dst_clang_ast
, &src_clang_ast
));
50 return CompilerType();
52 ASTImporterDelegate::CxxModuleScope
std_scope(*delegate_sp
, &dst_clang_ast
);
54 llvm::Expected
<QualType
> ret_or_error
= delegate_sp
->Import(src_qual_type
);
56 Log
*log
= GetLog(LLDBLog::Expressions
);
57 LLDB_LOG_ERROR(log
, ret_or_error
.takeError(),
58 "Couldn't import type: {0}");
59 return CompilerType();
62 lldb::opaque_compiler_type_t dst_clang_type
= ret_or_error
->getAsOpaquePtr();
65 return CompilerType(dst_ast
.weak_from_this(), dst_clang_type
);
66 return CompilerType();
69 clang::Decl
*ClangASTImporter::CopyDecl(clang::ASTContext
*dst_ast
,
71 ImporterDelegateSP delegate_sp
;
73 clang::ASTContext
*src_ast
= &decl
->getASTContext();
74 delegate_sp
= GetDelegate(dst_ast
, src_ast
);
76 ASTImporterDelegate::CxxModuleScope
std_scope(*delegate_sp
, dst_ast
);
81 llvm::Expected
<clang::Decl
*> result
= delegate_sp
->Import(decl
);
83 Log
*log
= GetLog(LLDBLog::Expressions
);
84 LLDB_LOG_ERROR(log
, result
.takeError(), "Couldn't import decl: {0}");
86 lldb::user_id_t user_id
= LLDB_INVALID_UID
;
87 if (std::optional
<ClangASTMetadata
> metadata
= GetDeclMetadata(decl
))
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
);
108 class DeclContextOverride
{
111 clang::DeclContext
*decl_context
;
112 clang::DeclContext
*lexical_decl_context
;
115 llvm::DenseMap
<clang::Decl
*, Backup
> m_backups
;
117 void OverrideOne(clang::Decl
*decl
) {
118 if (m_backups
.contains(decl
)) {
122 m_backups
[decl
] = {decl
->getDeclContext(), decl
->getLexicalDeclContext()};
124 decl
->setDeclContext(decl
->getASTContext().getTranslationUnitDecl());
125 decl
->setLexicalDeclContext(decl
->getASTContext().getTranslationUnitDecl());
128 bool ChainPassesThrough(
129 clang::Decl
*decl
, clang::DeclContext
*base
,
130 clang::DeclContext
*(clang::Decl::*contextFromDecl
)(),
131 clang::DeclContext
*(clang::DeclContext::*contextFromContext
)()) {
132 for (DeclContext
*decl_ctx
= (decl
->*contextFromDecl
)(); decl_ctx
;
133 decl_ctx
= (decl_ctx
->*contextFromContext
)()) {
134 if (decl_ctx
== base
) {
142 clang::Decl
*GetEscapedChild(clang::Decl
*decl
,
143 clang::DeclContext
*base
= nullptr) {
145 // decl's DeclContext chains must pass through base.
147 if (!ChainPassesThrough(decl
, base
, &clang::Decl::getDeclContext
,
148 &clang::DeclContext::getParent
) ||
149 !ChainPassesThrough(decl
, base
, &clang::Decl::getLexicalDeclContext
,
150 &clang::DeclContext::getLexicalParent
)) {
154 base
= clang::dyn_cast
<clang::DeclContext
>(decl
);
161 if (clang::DeclContext
*context
=
162 clang::dyn_cast
<clang::DeclContext
>(decl
)) {
163 for (clang::Decl
*decl
: context
->decls()) {
164 if (clang::Decl
*escaped_child
= GetEscapedChild(decl
)) {
165 return escaped_child
;
173 void Override(clang::Decl
*decl
) {
174 if (clang::Decl
*escaped_child
= GetEscapedChild(decl
)) {
175 Log
*log
= GetLog(LLDBLog::Expressions
);
178 " [ClangASTImporter] DeclContextOverride couldn't "
179 "override ({0}Decl*){1} - its child ({2}Decl*){3} escapes",
180 decl
->getDeclKindName(), decl
, escaped_child
->getDeclKindName(),
182 lldbassert(0 && "Couldn't override!");
189 DeclContextOverride() = default;
191 void OverrideAllDeclsFromContainingFunction(clang::Decl
*decl
) {
192 for (DeclContext
*decl_context
= decl
->getLexicalDeclContext();
193 decl_context
; decl_context
= decl_context
->getLexicalParent()) {
194 DeclContext
*redecl_context
= decl_context
->getRedeclContext();
196 if (llvm::isa
<FunctionDecl
>(redecl_context
) &&
197 llvm::isa
<TranslationUnitDecl
>(redecl_context
->getLexicalParent())) {
198 for (clang::Decl
*child_decl
: decl_context
->decls()) {
199 Override(child_decl
);
205 ~DeclContextOverride() {
206 for (const std::pair
<clang::Decl
*, Backup
> &backup
: m_backups
) {
207 backup
.first
->setDeclContext(backup
.second
.decl_context
);
208 backup
.first
->setLexicalDeclContext(backup
.second
.lexical_decl_context
);
214 /// Completes all imported TagDecls at the end of the scope.
216 /// While in a CompleteTagDeclsScope, every decl that could be completed will
217 /// be completed at the end of the scope (including all Decls that are
218 /// imported while completing the original Decls).
219 class CompleteTagDeclsScope
: public ClangASTImporter::NewDeclListener
{
220 ClangASTImporter::ImporterDelegateSP m_delegate
;
221 /// List of declarations in the target context that need to be completed.
222 /// Every declaration should only be completed once and therefore should only
223 /// be once in this list.
224 llvm::SetVector
<NamedDecl
*> m_decls_to_complete
;
225 /// Set of declarations that already were successfully completed (not just
226 /// added to m_decls_to_complete).
227 llvm::SmallPtrSet
<NamedDecl
*, 32> m_decls_already_completed
;
228 clang::ASTContext
*m_dst_ctx
;
229 clang::ASTContext
*m_src_ctx
;
230 ClangASTImporter
&importer
;
233 /// Constructs a CompleteTagDeclsScope.
234 /// \param importer The ClangASTImporter that we should observe.
235 /// \param dst_ctx The ASTContext to which Decls are imported.
236 /// \param src_ctx The ASTContext from which Decls are imported.
237 explicit CompleteTagDeclsScope(ClangASTImporter
&importer
,
238 clang::ASTContext
*dst_ctx
,
239 clang::ASTContext
*src_ctx
)
240 : m_delegate(importer
.GetDelegate(dst_ctx
, src_ctx
)), m_dst_ctx(dst_ctx
),
241 m_src_ctx(src_ctx
), importer(importer
) {
242 m_delegate
->SetImportListener(this);
245 ~CompleteTagDeclsScope() override
{
246 ClangASTImporter::ASTContextMetadataSP to_context_md
=
247 importer
.GetContextMetadata(m_dst_ctx
);
249 // Complete all decls we collected until now.
250 while (!m_decls_to_complete
.empty()) {
251 NamedDecl
*decl
= m_decls_to_complete
.pop_back_val();
252 m_decls_already_completed
.insert(decl
);
254 // The decl that should be completed has to be imported into the target
255 // context from some other context.
256 assert(to_context_md
->hasOrigin(decl
));
257 // We should only complete decls coming from the source context.
258 assert(to_context_md
->getOrigin(decl
).ctx
== m_src_ctx
);
260 Decl
*original_decl
= to_context_md
->getOrigin(decl
).decl
;
262 // Complete the decl now.
263 TypeSystemClang::GetCompleteDecl(m_src_ctx
, original_decl
);
264 if (auto *tag_decl
= dyn_cast
<TagDecl
>(decl
)) {
265 if (auto *original_tag_decl
= dyn_cast
<TagDecl
>(original_decl
)) {
266 if (original_tag_decl
->isCompleteDefinition()) {
267 m_delegate
->ImportDefinitionTo(tag_decl
, original_tag_decl
);
268 tag_decl
->setCompleteDefinition(true);
272 tag_decl
->setHasExternalLexicalStorage(false);
273 tag_decl
->setHasExternalVisibleStorage(false);
274 } else if (auto *container_decl
= dyn_cast
<ObjCContainerDecl
>(decl
)) {
275 container_decl
->setHasExternalLexicalStorage(false);
276 container_decl
->setHasExternalVisibleStorage(false);
279 to_context_md
->removeOrigin(decl
);
282 // Stop listening to imported decls. We do this after clearing the
283 // Decls we needed to import to catch all Decls they might have pulled in.
284 m_delegate
->RemoveImportListener();
287 void NewDeclImported(clang::Decl
*from
, clang::Decl
*to
) override
{
288 // Filter out decls that we can't complete later.
289 if (!isa
<TagDecl
>(to
) && !isa
<ObjCInterfaceDecl
>(to
))
291 RecordDecl
*from_record_decl
= dyn_cast
<RecordDecl
>(from
);
292 // We don't need to complete injected class name decls.
293 if (from_record_decl
&& from_record_decl
->isInjectedClassName())
296 NamedDecl
*to_named_decl
= dyn_cast
<NamedDecl
>(to
);
297 // Check if we already completed this type.
298 if (m_decls_already_completed
.contains(to_named_decl
))
300 // Queue this type to be completed.
301 m_decls_to_complete
.insert(to_named_decl
);
306 CompilerType
ClangASTImporter::DeportType(TypeSystemClang
&dst
,
307 const CompilerType
&src_type
) {
308 Log
*log
= GetLog(LLDBLog::Expressions
);
310 auto src_ctxt
= src_type
.GetTypeSystem().dyn_cast_or_null
<TypeSystemClang
>();
315 " [ClangASTImporter] DeportType called on ({0}Type*){1:x} "
316 "from (ASTContext*){2:x} to (ASTContext*){3:x}",
317 src_type
.GetTypeName(), src_type
.GetOpaqueQualType(),
318 &src_ctxt
->getASTContext(), &dst
.getASTContext());
320 DeclContextOverride decl_context_override
;
322 if (auto *t
= ClangUtil::GetQualType(src_type
)->getAs
<TagType
>())
323 decl_context_override
.OverrideAllDeclsFromContainingFunction(t
->getDecl());
325 CompleteTagDeclsScope
complete_scope(*this, &dst
.getASTContext(),
326 &src_ctxt
->getASTContext());
327 return CopyType(dst
, src_type
);
330 clang::Decl
*ClangASTImporter::DeportDecl(clang::ASTContext
*dst_ctx
,
332 Log
*log
= GetLog(LLDBLog::Expressions
);
334 clang::ASTContext
*src_ctx
= &decl
->getASTContext();
336 " [ClangASTImporter] DeportDecl called on ({0}Decl*){1:x} from "
337 "(ASTContext*){2:x} to (ASTContext*){3:x}",
338 decl
->getDeclKindName(), decl
, src_ctx
, dst_ctx
);
340 DeclContextOverride decl_context_override
;
342 decl_context_override
.OverrideAllDeclsFromContainingFunction(decl
);
346 CompleteTagDeclsScope
complete_scope(*this, dst_ctx
, src_ctx
);
347 result
= CopyDecl(dst_ctx
, decl
);
354 " [ClangASTImporter] DeportDecl deported ({0}Decl*){1:x} to "
356 decl
->getDeclKindName(), decl
, result
->getDeclKindName(), result
);
361 bool ClangASTImporter::CanImport(const CompilerType
&type
) {
362 if (!ClangUtil::IsClangType(type
))
365 clang::QualType
qual_type(
366 ClangUtil::GetCanonicalQualType(ClangUtil::RemoveFastQualifiers(type
)));
368 const clang::Type::TypeClass type_class
= qual_type
->getTypeClass();
369 switch (type_class
) {
370 case clang::Type::Record
: {
371 const clang::CXXRecordDecl
*cxx_record_decl
=
372 qual_type
->getAsCXXRecordDecl();
373 if (cxx_record_decl
) {
374 if (GetDeclOrigin(cxx_record_decl
).Valid())
379 case clang::Type::Enum
: {
380 clang::EnumDecl
*enum_decl
=
381 llvm::cast
<clang::EnumType
>(qual_type
)->getDecl();
383 if (GetDeclOrigin(enum_decl
).Valid())
388 case clang::Type::ObjCObject
:
389 case clang::Type::ObjCInterface
: {
390 const clang::ObjCObjectType
*objc_class_type
=
391 llvm::dyn_cast
<clang::ObjCObjectType
>(qual_type
);
392 if (objc_class_type
) {
393 clang::ObjCInterfaceDecl
*class_interface_decl
=
394 objc_class_type
->getInterface();
395 // We currently can't complete objective C types through the newly added
396 // ASTContext because it only supports TagDecl objects right now...
397 if (class_interface_decl
) {
398 if (GetDeclOrigin(class_interface_decl
).Valid())
404 case clang::Type::Typedef
:
405 return CanImport(CompilerType(type
.GetTypeSystem(),
406 llvm::cast
<clang::TypedefType
>(qual_type
)
408 ->getUnderlyingType()
411 case clang::Type::Auto
:
412 return CanImport(CompilerType(type
.GetTypeSystem(),
413 llvm::cast
<clang::AutoType
>(qual_type
)
417 case clang::Type::Elaborated
:
418 return CanImport(CompilerType(type
.GetTypeSystem(),
419 llvm::cast
<clang::ElaboratedType
>(qual_type
)
423 case clang::Type::Paren
:
424 return CanImport(CompilerType(
425 type
.GetTypeSystem(),
426 llvm::cast
<clang::ParenType
>(qual_type
)->desugar().getAsOpaquePtr()));
435 bool ClangASTImporter::Import(const CompilerType
&type
) {
436 if (!ClangUtil::IsClangType(type
))
439 clang::QualType
qual_type(
440 ClangUtil::GetCanonicalQualType(ClangUtil::RemoveFastQualifiers(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
) {
448 if (GetDeclOrigin(cxx_record_decl
).Valid())
449 return CompleteAndFetchChildren(qual_type
);
453 case clang::Type::Enum
: {
454 clang::EnumDecl
*enum_decl
=
455 llvm::cast
<clang::EnumType
>(qual_type
)->getDecl();
457 if (GetDeclOrigin(enum_decl
).Valid())
458 return CompleteAndFetchChildren(qual_type
);
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();
469 // We currently can't complete objective C types through the newly added
470 // ASTContext because it only supports TagDecl objects right now...
471 if (class_interface_decl
) {
472 if (GetDeclOrigin(class_interface_decl
).Valid())
473 return CompleteAndFetchChildren(qual_type
);
478 case clang::Type::Typedef
:
479 return Import(CompilerType(type
.GetTypeSystem(),
480 llvm::cast
<clang::TypedefType
>(qual_type
)
482 ->getUnderlyingType()
485 case clang::Type::Auto
:
486 return Import(CompilerType(type
.GetTypeSystem(),
487 llvm::cast
<clang::AutoType
>(qual_type
)
491 case clang::Type::Elaborated
:
492 return Import(CompilerType(type
.GetTypeSystem(),
493 llvm::cast
<clang::ElaboratedType
>(qual_type
)
497 case clang::Type::Paren
:
498 return Import(CompilerType(
499 type
.GetTypeSystem(),
500 llvm::cast
<clang::ParenType
>(qual_type
)->desugar().getAsOpaquePtr()));
508 bool ClangASTImporter::CompleteType(const CompilerType
&compiler_type
) {
509 if (!CanImport(compiler_type
))
512 if (Import(compiler_type
)) {
513 TypeSystemClang::CompleteTagDeclarationDefinition(compiler_type
);
517 TypeSystemClang::SetHasExternalStorage(compiler_type
.GetOpaqueQualType(),
522 /// Copy layout information from \ref source_map to the \ref destination_map.
524 /// In the process of copying over layout info, we may need to import
525 /// decls from the \ref source_map. This function will use the supplied
526 /// \ref importer to import the necessary decls into \ref dest_ctx.
528 /// \param[in,out] dest_ctx Destination ASTContext into which we import
529 /// decls from the \ref source_map.
530 /// \param[out] destination_map A map from decls in \ref dest_ctx to an
531 /// integral offest, which will be copies
532 /// of the decl/offest pairs in \ref source_map
534 /// \param[in] source_map A map from decls to integral offests. These will
535 /// be copied into \ref destination_map.
536 /// \param[in,out] importer Used to import decls into \ref dest_ctx.
538 /// \returns On success, will return 'true' and the offsets in \ref
540 /// are usable copies of \ref source_map.
541 template <class D
, class O
>
542 static bool ImportOffsetMap(clang::ASTContext
*dest_ctx
,
543 llvm::DenseMap
<const D
*, O
> &destination_map
,
544 llvm::DenseMap
<const D
*, O
> &source_map
,
545 ClangASTImporter
&importer
) {
546 // When importing fields into a new record, clang has a hard requirement that
547 // fields be imported in field offset order. Since they are stored in a
548 // DenseMap with a pointer as the key type, this means we cannot simply
549 // iterate over the map, as the order will be non-deterministic. Instead we
550 // have to sort by the offset and then insert in sorted order.
551 typedef llvm::DenseMap
<const D
*, O
> MapType
;
552 typedef typename
MapType::value_type PairType
;
553 std::vector
<PairType
> sorted_items
;
554 sorted_items
.reserve(source_map
.size());
555 sorted_items
.assign(source_map
.begin(), source_map
.end());
556 llvm::sort(sorted_items
, llvm::less_second());
558 for (const auto &item
: sorted_items
) {
559 DeclFromUser
<D
> user_decl(const_cast<D
*>(item
.first
));
560 DeclFromParser
<D
> parser_decl(user_decl
.Import(dest_ctx
, importer
));
561 if (parser_decl
.IsInvalid())
563 destination_map
.insert(
564 std::pair
<const D
*, O
>(parser_decl
.decl
, item
.second
));
570 /// Given a CXXRecordDecl, will calculate and populate \ref base_offsets
571 /// with the integral offsets of any of its (possibly virtual) base classes.
573 /// \param[in] record_layout ASTRecordLayout of \ref record.
574 /// \param[in] record The record that we're calculating the base layouts of.
575 /// \param[out] base_offsets Map of base-class decl to integral offset which
576 /// this function will fill in.
578 /// \returns On success, will return 'true' and the offsets in \ref base_offsets
580 template <bool IsVirtual
>
581 bool ExtractBaseOffsets(const ASTRecordLayout
&record_layout
,
582 DeclFromUser
<const CXXRecordDecl
> &record
,
583 llvm::DenseMap
<const clang::CXXRecordDecl
*,
584 clang::CharUnits
> &base_offsets
) {
585 for (CXXRecordDecl::base_class_const_iterator
586 bi
= (IsVirtual
? record
->vbases_begin() : record
->bases_begin()),
587 be
= (IsVirtual
? record
->vbases_end() : record
->bases_end());
589 if (!IsVirtual
&& bi
->isVirtual())
592 const clang::Type
*origin_base_type
= bi
->getType().getTypePtr();
593 const clang::RecordType
*origin_base_record_type
=
594 origin_base_type
->getAs
<RecordType
>();
596 if (!origin_base_record_type
)
599 DeclFromUser
<RecordDecl
> origin_base_record(
600 origin_base_record_type
->getDecl());
602 if (origin_base_record
.IsInvalid())
605 DeclFromUser
<CXXRecordDecl
> origin_base_cxx_record(
606 DynCast
<CXXRecordDecl
>(origin_base_record
));
608 if (origin_base_cxx_record
.IsInvalid())
611 CharUnits base_offset
;
615 record_layout
.getVBaseClassOffset(origin_base_cxx_record
.decl
);
618 record_layout
.getBaseClassOffset(origin_base_cxx_record
.decl
);
620 base_offsets
.insert(std::pair
<const CXXRecordDecl
*, CharUnits
>(
621 origin_base_cxx_record
.decl
, base_offset
));
627 bool ClangASTImporter::importRecordLayoutFromOrigin(
628 const RecordDecl
*record
, uint64_t &size
, uint64_t &alignment
,
629 llvm::DenseMap
<const clang::FieldDecl
*, uint64_t> &field_offsets
,
630 llvm::DenseMap
<const clang::CXXRecordDecl
*, clang::CharUnits
>
632 llvm::DenseMap
<const clang::CXXRecordDecl
*, clang::CharUnits
>
635 Log
*log
= GetLog(LLDBLog::Expressions
);
637 clang::ASTContext
&dest_ctx
= record
->getASTContext();
639 "LayoutRecordType on (ASTContext*){0:x} '{1}' for (RecordDecl*)"
640 "{2:x} [name = '{3}']",
642 TypeSystemClang::GetASTContext(&dest_ctx
)->getDisplayName(), record
,
645 DeclFromParser
<const RecordDecl
> parser_record(record
);
646 DeclFromUser
<const RecordDecl
> origin_record(parser_record
.GetOrigin(*this));
648 if (origin_record
.IsInvalid())
651 std::remove_reference_t
<decltype(field_offsets
)> origin_field_offsets
;
652 std::remove_reference_t
<decltype(base_offsets
)> origin_base_offsets
;
653 std::remove_reference_t
<decltype(vbase_offsets
)> origin_virtual_base_offsets
;
655 TypeSystemClang::GetCompleteDecl(
656 &origin_record
->getASTContext(),
657 const_cast<RecordDecl
*>(origin_record
.decl
));
659 clang::RecordDecl
*definition
= origin_record
.decl
->getDefinition();
660 if (!definition
|| !definition
->isCompleteDefinition())
663 const ASTRecordLayout
&record_layout(
664 origin_record
->getASTContext().getASTRecordLayout(origin_record
.decl
));
666 int field_idx
= 0, field_count
= record_layout
.getFieldCount();
668 for (RecordDecl::field_iterator fi
= origin_record
->field_begin(),
669 fe
= origin_record
->field_end();
671 if (field_idx
>= field_count
)
672 return false; // Layout didn't go well. Bail out.
674 uint64_t field_offset
= record_layout
.getFieldOffset(field_idx
);
676 origin_field_offsets
.insert(
677 std::pair
<const FieldDecl
*, uint64_t>(*fi
, field_offset
));
682 DeclFromUser
<const CXXRecordDecl
> origin_cxx_record(
683 DynCast
<const CXXRecordDecl
>(origin_record
));
685 if (origin_cxx_record
.IsValid()) {
686 if (!ExtractBaseOffsets
<false>(record_layout
, origin_cxx_record
,
687 origin_base_offsets
) ||
688 !ExtractBaseOffsets
<true>(record_layout
, origin_cxx_record
,
689 origin_virtual_base_offsets
))
693 if (!ImportOffsetMap(&dest_ctx
, field_offsets
, origin_field_offsets
, *this) ||
694 !ImportOffsetMap(&dest_ctx
, base_offsets
, origin_base_offsets
, *this) ||
695 !ImportOffsetMap(&dest_ctx
, vbase_offsets
, origin_virtual_base_offsets
,
699 size
= record_layout
.getSize().getQuantity() * dest_ctx
.getCharWidth();
701 record_layout
.getAlignment().getQuantity() * dest_ctx
.getCharWidth();
704 LLDB_LOG(log
, "LRT returned:");
705 LLDB_LOG(log
, "LRT Original = (RecordDecl*){0:x}",
706 static_cast<const void *>(origin_record
.decl
));
707 LLDB_LOG(log
, "LRT Size = {0}", size
);
708 LLDB_LOG(log
, "LRT Alignment = {0}", alignment
);
709 LLDB_LOG(log
, "LRT Fields:");
710 for (RecordDecl::field_iterator fi
= record
->field_begin(),
711 fe
= record
->field_end();
715 "LRT (FieldDecl*){0:x}, Name = '{1}', Type = '{2}', Offset = "
717 *fi
, fi
->getName(), fi
->getType().getAsString(), field_offsets
[*fi
]);
719 DeclFromParser
<const CXXRecordDecl
> parser_cxx_record
=
720 DynCast
<const CXXRecordDecl
>(parser_record
);
721 if (parser_cxx_record
.IsValid()) {
722 LLDB_LOG(log
, "LRT Bases:");
723 for (CXXRecordDecl::base_class_const_iterator
724 bi
= parser_cxx_record
->bases_begin(),
725 be
= parser_cxx_record
->bases_end();
727 bool is_virtual
= bi
->isVirtual();
729 QualType base_type
= bi
->getType();
730 const RecordType
*base_record_type
= base_type
->getAs
<RecordType
>();
731 DeclFromParser
<RecordDecl
> base_record(base_record_type
->getDecl());
732 DeclFromParser
<CXXRecordDecl
> base_cxx_record
=
733 DynCast
<CXXRecordDecl
>(base_record
);
736 "LRT {0}(CXXRecordDecl*){1:x}, Name = '{2}', Offset = "
738 (is_virtual
? "Virtual " : ""), base_cxx_record
.decl
,
739 base_cxx_record
.decl
->getName(),
741 ? vbase_offsets
[base_cxx_record
.decl
].getQuantity()
742 : base_offsets
[base_cxx_record
.decl
].getQuantity()));
745 LLDB_LOG(log
, "LRD Not a CXXRecord, so no bases");
752 bool ClangASTImporter::LayoutRecordType(
753 const clang::RecordDecl
*record_decl
, uint64_t &bit_size
,
755 llvm::DenseMap
<const clang::FieldDecl
*, uint64_t> &field_offsets
,
756 llvm::DenseMap
<const clang::CXXRecordDecl
*, clang::CharUnits
>
758 llvm::DenseMap
<const clang::CXXRecordDecl
*, clang::CharUnits
>
760 RecordDeclToLayoutMap::iterator pos
=
761 m_record_decl_to_layout_map
.find(record_decl
);
762 base_offsets
.clear();
763 vbase_offsets
.clear();
764 if (pos
!= m_record_decl_to_layout_map
.end()) {
765 bit_size
= pos
->second
.bit_size
;
766 alignment
= pos
->second
.alignment
;
767 field_offsets
.swap(pos
->second
.field_offsets
);
768 base_offsets
.swap(pos
->second
.base_offsets
);
769 vbase_offsets
.swap(pos
->second
.vbase_offsets
);
770 m_record_decl_to_layout_map
.erase(pos
);
774 // It's possible that we calculated the layout in a different
775 // ClangASTImporter instance. Try to import such layout if
776 // our decl has an origin.
777 if (auto origin
= GetDeclOrigin(record_decl
); origin
.Valid())
778 if (importRecordLayoutFromOrigin(record_decl
, bit_size
, alignment
,
779 field_offsets
, base_offsets
,
785 field_offsets
.clear();
790 void ClangASTImporter::SetRecordLayout(clang::RecordDecl
*decl
,
791 const LayoutInfo
&layout
) {
792 m_record_decl_to_layout_map
.insert(std::make_pair(decl
, layout
));
795 bool ClangASTImporter::CompleteTagDecl(clang::TagDecl
*decl
) {
796 DeclOrigin decl_origin
= GetDeclOrigin(decl
);
798 if (!decl_origin
.Valid())
801 if (!TypeSystemClang::GetCompleteDecl(decl_origin
.ctx
, decl_origin
.decl
))
804 ImporterDelegateSP
delegate_sp(
805 GetDelegate(&decl
->getASTContext(), decl_origin
.ctx
));
807 ASTImporterDelegate::CxxModuleScope
std_scope(*delegate_sp
,
808 &decl
->getASTContext());
810 delegate_sp
->ImportDefinitionTo(decl
, decl_origin
.decl
);
815 bool ClangASTImporter::CompleteTagDeclWithOrigin(clang::TagDecl
*decl
,
816 clang::TagDecl
*origin_decl
) {
817 clang::ASTContext
*origin_ast_ctx
= &origin_decl
->getASTContext();
819 if (!TypeSystemClang::GetCompleteDecl(origin_ast_ctx
, origin_decl
))
822 ImporterDelegateSP
delegate_sp(
823 GetDelegate(&decl
->getASTContext(), origin_ast_ctx
));
826 delegate_sp
->ImportDefinitionTo(decl
, origin_decl
);
828 ASTContextMetadataSP context_md
= GetContextMetadata(&decl
->getASTContext());
830 context_md
->setOrigin(decl
, DeclOrigin(origin_ast_ctx
, origin_decl
));
834 bool ClangASTImporter::CompleteObjCInterfaceDecl(
835 clang::ObjCInterfaceDecl
*interface_decl
) {
836 DeclOrigin decl_origin
= GetDeclOrigin(interface_decl
);
838 if (!decl_origin
.Valid())
841 if (!TypeSystemClang::GetCompleteDecl(decl_origin
.ctx
, decl_origin
.decl
))
844 ImporterDelegateSP
delegate_sp(
845 GetDelegate(&interface_decl
->getASTContext(), decl_origin
.ctx
));
848 delegate_sp
->ImportDefinitionTo(interface_decl
, decl_origin
.decl
);
850 if (ObjCInterfaceDecl
*super_class
= interface_decl
->getSuperClass())
851 RequireCompleteType(clang::QualType(super_class
->getTypeForDecl(), 0));
856 bool ClangASTImporter::CompleteAndFetchChildren(clang::QualType type
) {
857 if (!RequireCompleteType(type
))
860 Log
*log
= GetLog(LLDBLog::Expressions
);
862 if (const TagType
*tag_type
= type
->getAs
<TagType
>()) {
863 TagDecl
*tag_decl
= tag_type
->getDecl();
865 DeclOrigin decl_origin
= GetDeclOrigin(tag_decl
);
867 if (!decl_origin
.Valid())
870 ImporterDelegateSP
delegate_sp(
871 GetDelegate(&tag_decl
->getASTContext(), decl_origin
.ctx
));
873 ASTImporterDelegate::CxxModuleScope
std_scope(*delegate_sp
,
874 &tag_decl
->getASTContext());
876 TagDecl
*origin_tag_decl
= llvm::dyn_cast
<TagDecl
>(decl_origin
.decl
);
878 for (Decl
*origin_child_decl
: origin_tag_decl
->decls()) {
879 llvm::Expected
<Decl
*> imported_or_err
=
880 delegate_sp
->Import(origin_child_decl
);
881 if (!imported_or_err
) {
882 LLDB_LOG_ERROR(log
, imported_or_err
.takeError(),
883 "Couldn't import decl: {0}");
888 if (RecordDecl
*record_decl
= dyn_cast
<RecordDecl
>(origin_tag_decl
))
889 record_decl
->setHasLoadedFieldsFromExternalStorage(true);
894 if (const ObjCObjectType
*objc_object_type
= type
->getAs
<ObjCObjectType
>()) {
895 if (ObjCInterfaceDecl
*objc_interface_decl
=
896 objc_object_type
->getInterface()) {
897 DeclOrigin decl_origin
= GetDeclOrigin(objc_interface_decl
);
899 if (!decl_origin
.Valid())
902 ImporterDelegateSP
delegate_sp(
903 GetDelegate(&objc_interface_decl
->getASTContext(), decl_origin
.ctx
));
905 ObjCInterfaceDecl
*origin_interface_decl
=
906 llvm::dyn_cast
<ObjCInterfaceDecl
>(decl_origin
.decl
);
908 for (Decl
*origin_child_decl
: origin_interface_decl
->decls()) {
909 llvm::Expected
<Decl
*> imported_or_err
=
910 delegate_sp
->Import(origin_child_decl
);
911 if (!imported_or_err
) {
912 LLDB_LOG_ERROR(log
, imported_or_err
.takeError(),
913 "Couldn't import decl: {0}");
926 bool ClangASTImporter::RequireCompleteType(clang::QualType type
) {
930 if (const TagType
*tag_type
= type
->getAs
<TagType
>()) {
931 TagDecl
*tag_decl
= tag_type
->getDecl();
933 if (tag_decl
->getDefinition() || tag_decl
->isBeingDefined())
936 return CompleteTagDecl(tag_decl
);
938 if (const ObjCObjectType
*objc_object_type
= type
->getAs
<ObjCObjectType
>()) {
939 if (ObjCInterfaceDecl
*objc_interface_decl
=
940 objc_object_type
->getInterface())
941 return CompleteObjCInterfaceDecl(objc_interface_decl
);
944 if (const ArrayType
*array_type
= type
->getAsArrayTypeUnsafe())
945 return RequireCompleteType(array_type
->getElementType());
946 if (const AtomicType
*atomic_type
= type
->getAs
<AtomicType
>())
947 return RequireCompleteType(atomic_type
->getPointeeType());
952 std::optional
<ClangASTMetadata
>
953 ClangASTImporter::GetDeclMetadata(const clang::Decl
*decl
) {
954 DeclOrigin decl_origin
= GetDeclOrigin(decl
);
956 if (decl_origin
.Valid()) {
957 TypeSystemClang
*ast
= TypeSystemClang::GetASTContext(decl_origin
.ctx
);
958 return ast
->GetMetadata(decl_origin
.decl
);
960 TypeSystemClang
*ast
= TypeSystemClang::GetASTContext(&decl
->getASTContext());
961 return ast
->GetMetadata(decl
);
964 ClangASTImporter::DeclOrigin
965 ClangASTImporter::GetDeclOrigin(const clang::Decl
*decl
) {
966 ASTContextMetadataSP context_md
= GetContextMetadata(&decl
->getASTContext());
968 return context_md
->getOrigin(decl
);
971 void ClangASTImporter::SetDeclOrigin(const clang::Decl
*decl
,
972 clang::Decl
*original_decl
) {
973 ASTContextMetadataSP context_md
= GetContextMetadata(&decl
->getASTContext());
974 context_md
->setOrigin(
975 decl
, DeclOrigin(&original_decl
->getASTContext(), original_decl
));
978 void ClangASTImporter::RegisterNamespaceMap(const clang::NamespaceDecl
*decl
,
979 NamespaceMapSP
&namespace_map
) {
980 ASTContextMetadataSP context_md
= GetContextMetadata(&decl
->getASTContext());
982 context_md
->m_namespace_maps
[decl
] = namespace_map
;
985 ClangASTImporter::NamespaceMapSP
986 ClangASTImporter::GetNamespaceMap(const clang::NamespaceDecl
*decl
) {
987 ASTContextMetadataSP context_md
= GetContextMetadata(&decl
->getASTContext());
989 NamespaceMetaMap
&namespace_maps
= context_md
->m_namespace_maps
;
991 NamespaceMetaMap::iterator iter
= namespace_maps
.find(decl
);
993 if (iter
!= namespace_maps
.end())
995 return NamespaceMapSP();
998 void ClangASTImporter::BuildNamespaceMap(const clang::NamespaceDecl
*decl
) {
1000 ASTContextMetadataSP context_md
= GetContextMetadata(&decl
->getASTContext());
1002 const DeclContext
*parent_context
= decl
->getDeclContext();
1003 const NamespaceDecl
*parent_namespace
=
1004 dyn_cast
<NamespaceDecl
>(parent_context
);
1005 NamespaceMapSP parent_map
;
1007 if (parent_namespace
)
1008 parent_map
= GetNamespaceMap(parent_namespace
);
1010 NamespaceMapSP new_map
;
1012 new_map
= std::make_shared
<NamespaceMap
>();
1014 if (context_md
->m_map_completer
) {
1015 std::string namespace_string
= decl
->getDeclName().getAsString();
1017 context_md
->m_map_completer
->CompleteNamespaceMap(
1018 new_map
, ConstString(namespace_string
.c_str()), parent_map
);
1021 context_md
->m_namespace_maps
[decl
] = new_map
;
1024 void ClangASTImporter::ForgetDestination(clang::ASTContext
*dst_ast
) {
1025 Log
*log
= GetLog(LLDBLog::Expressions
);
1028 " [ClangASTImporter] Forgetting destination (ASTContext*){0:x}",
1031 m_metadata_map
.erase(dst_ast
);
1034 void ClangASTImporter::ForgetSource(clang::ASTContext
*dst_ast
,
1035 clang::ASTContext
*src_ast
) {
1036 ASTContextMetadataSP md
= MaybeGetContextMetadata(dst_ast
);
1038 Log
*log
= GetLog(LLDBLog::Expressions
);
1041 " [ClangASTImporter] Forgetting source->dest "
1042 "(ASTContext*){0:x}->(ASTContext*){1:x}",
1048 md
->m_delegates
.erase(src_ast
);
1049 md
->removeOriginsWithContext(src_ast
);
1052 ClangASTImporter::MapCompleter::~MapCompleter() = default;
1054 llvm::Expected
<Decl
*>
1055 ClangASTImporter::ASTImporterDelegate::ImportImpl(Decl
*From
) {
1056 if (m_std_handler
) {
1057 std::optional
<Decl
*> D
= m_std_handler
->Import(From
);
1059 // Make sure we don't use this decl later to map it back to it's original
1060 // decl. The decl the CxxModuleHandler created has nothing to do with
1061 // the one from debug info, and linking those two would just cause the
1062 // ASTImporter to try 'updating' the module decl with the minimal one from
1064 m_decls_to_ignore
.insert(*D
);
1069 // Check which ASTContext this declaration originally came from.
1070 DeclOrigin origin
= m_main
.GetDeclOrigin(From
);
1072 // Prevent infinite recursion when the origin tracking contains a cycle.
1073 assert(origin
.decl
!= From
&& "Origin points to itself?");
1075 // If it originally came from the target ASTContext then we can just
1076 // pretend that the original is the one we imported. This can happen for
1077 // example when inspecting a persistent declaration from the scratch
1078 // ASTContext (which will provide the declaration when parsing the
1079 // expression and then we later try to copy the declaration back to the
1080 // scratch ASTContext to store the result).
1081 // Without this check we would ask the ASTImporter to import a declaration
1082 // into the same ASTContext where it came from (which doesn't make a lot of
1084 if (origin
.Valid() && origin
.ctx
== &getToContext()) {
1085 RegisterImportedDecl(From
, origin
.decl
);
1089 // This declaration came originally from another ASTContext. Instead of
1090 // copying our potentially incomplete 'From' Decl we instead go to the
1091 // original ASTContext and copy the original to the target. This is not
1092 // only faster than first completing our current decl and then copying it
1093 // to the target, but it also prevents that indirectly copying the same
1094 // declaration to the same target requires the ASTImporter to merge all
1095 // the different decls that appear to come from different ASTContexts (even
1096 // though all these different source ASTContexts just got a copy from
1098 if (origin
.Valid()) {
1099 auto R
= m_main
.CopyDecl(&getToContext(), origin
.decl
);
1101 RegisterImportedDecl(From
, R
);
1106 // If we have a forcefully completed type, try to find an actual definition
1107 // for it in other modules.
1108 std::optional
<ClangASTMetadata
> md
= m_main
.GetDeclMetadata(From
);
1109 auto *td
= dyn_cast
<TagDecl
>(From
);
1110 if (td
&& md
&& md
->IsForcefullyCompleted()) {
1111 Log
*log
= GetLog(LLDBLog::Expressions
);
1113 "[ClangASTImporter] Searching for a complete definition of {0} in "
1116 Expected
<DeclContext
*> dc_or_err
= ImportContext(td
->getDeclContext());
1118 return dc_or_err
.takeError();
1119 Expected
<DeclarationName
> dn_or_err
= Import(td
->getDeclName());
1121 return dn_or_err
.takeError();
1122 DeclContext
*dc
= *dc_or_err
;
1123 DeclContext::lookup_result lr
= dc
->lookup(*dn_or_err
);
1124 for (clang::Decl
*candidate
: lr
) {
1125 if (candidate
->getKind() == From
->getKind()) {
1126 RegisterImportedDecl(From
, candidate
);
1127 m_decls_to_ignore
.insert(candidate
);
1131 LLDB_LOG(log
, "[ClangASTImporter] Complete definition not found");
1134 return ASTImporter::ImportImpl(From
);
1137 void ClangASTImporter::ASTImporterDelegate::ImportDefinitionTo(
1138 clang::Decl
*to
, clang::Decl
*from
) {
1139 Log
*log
= GetLog(LLDBLog::Expressions
);
1141 auto getDeclName
= [](Decl
const *decl
) {
1142 std::string name_string
;
1143 if (auto const *from_named_decl
= dyn_cast
<clang::NamedDecl
>(decl
)) {
1144 llvm::raw_string_ostream
name_stream(name_string
);
1145 from_named_decl
->printName(name_stream
);
1152 if (auto *D
= GetAlreadyImportedOrNull(from
); D
&& D
!= to
) {
1155 "[ClangASTImporter] ERROR: overwriting an already imported decl "
1156 "'{0:x}' ('{1}') from '{2:x}' with '{3:x}'. Likely due to a name "
1157 "conflict when importing '{1}'.",
1158 D
, getDeclName(from
), from
, to
);
1162 // We might have a forward declaration from a shared library that we
1163 // gave external lexical storage so that Clang asks us about the full
1164 // definition when it needs it. In this case the ASTImporter isn't aware
1165 // that the forward decl from the shared library is the actual import
1166 // target but would create a second declaration that would then be defined.
1167 // We want that 'to' is actually complete after this function so let's
1168 // tell the ASTImporter that 'to' was imported from 'from'.
1169 MapImported(from
, to
);
1171 if (llvm::Error err
= ImportDefinition(from
)) {
1172 LLDB_LOG_ERROR(log
, std::move(err
),
1173 "[ClangASTImporter] Error during importing definition: {0}");
1177 if (clang::TagDecl
*to_tag
= dyn_cast
<clang::TagDecl
>(to
)) {
1178 if (clang::TagDecl
*from_tag
= dyn_cast
<clang::TagDecl
>(from
)) {
1179 to_tag
->setCompleteDefinition(from_tag
->isCompleteDefinition());
1181 if (Log
*log_ast
= GetLog(LLDBLog::AST
)) {
1183 "==== [ClangASTImporter][TUDecl: {0:x}] Imported "
1184 "({1}Decl*){2:x}, named {3} (from "
1186 static_cast<void *>(to
->getTranslationUnitDecl()),
1187 from
->getDeclKindName(), static_cast<void *>(to
),
1188 getDeclName(from
), static_cast<void *>(from
));
1190 // Log the AST of the TU.
1191 std::string ast_string
;
1192 llvm::raw_string_ostream
ast_stream(ast_string
);
1193 to
->getTranslationUnitDecl()->dump(ast_stream
);
1194 LLDB_LOG(log_ast
, "{0}", ast_string
);
1199 // If we're dealing with an Objective-C class, ensure that the inheritance
1200 // has been set up correctly. The ASTImporter may not do this correctly if
1201 // the class was originally sourced from symbols.
1203 if (ObjCInterfaceDecl
*to_objc_interface
= dyn_cast
<ObjCInterfaceDecl
>(to
)) {
1204 ObjCInterfaceDecl
*to_superclass
= to_objc_interface
->getSuperClass();
1207 return; // we're not going to override it if it's set
1209 ObjCInterfaceDecl
*from_objc_interface
= dyn_cast
<ObjCInterfaceDecl
>(from
);
1211 if (!from_objc_interface
)
1214 ObjCInterfaceDecl
*from_superclass
= from_objc_interface
->getSuperClass();
1216 if (!from_superclass
)
1219 llvm::Expected
<Decl
*> imported_from_superclass_decl
=
1220 Import(from_superclass
);
1222 if (!imported_from_superclass_decl
) {
1223 LLDB_LOG_ERROR(log
, imported_from_superclass_decl
.takeError(),
1224 "Couldn't import decl: {0}");
1228 ObjCInterfaceDecl
*imported_from_superclass
=
1229 dyn_cast
<ObjCInterfaceDecl
>(*imported_from_superclass_decl
);
1231 if (!imported_from_superclass
)
1234 if (!to_objc_interface
->hasDefinition())
1235 to_objc_interface
->startDefinition();
1237 to_objc_interface
->setSuperClass(m_source_ctx
->getTrivialTypeSourceInfo(
1238 m_source_ctx
->getObjCInterfaceType(imported_from_superclass
)));
1242 /// Takes a CXXMethodDecl and completes the return type if necessary. This
1243 /// is currently only necessary for virtual functions with covariant return
1244 /// types where Clang's CodeGen expects that the underlying records are already
1246 static void MaybeCompleteReturnType(ClangASTImporter
&importer
,
1247 CXXMethodDecl
*to_method
) {
1248 if (!to_method
->isVirtual())
1250 QualType return_type
= to_method
->getReturnType();
1251 if (!return_type
->isPointerType() && !return_type
->isReferenceType())
1254 clang::RecordDecl
*rd
= return_type
->getPointeeType()->getAsRecordDecl();
1257 if (rd
->getDefinition())
1260 importer
.CompleteTagDecl(rd
);
1263 /// Recreate a module with its parents in \p to_source and return its id.
1264 static OptionalClangModuleID
1265 RemapModule(OptionalClangModuleID from_id
,
1266 ClangExternalASTSourceCallbacks
&from_source
,
1267 ClangExternalASTSourceCallbacks
&to_source
) {
1268 if (!from_id
.HasValue())
1270 clang::Module
*module
= from_source
.getModule(from_id
.GetValue());
1271 OptionalClangModuleID parent
= RemapModule(
1272 from_source
.GetIDForModule(module
->Parent
), from_source
, to_source
);
1273 TypeSystemClang
&to_ts
= to_source
.GetTypeSystem();
1274 return to_ts
.GetOrCreateClangModule(module
->Name
, parent
, module
->IsFramework
,
1275 module
->IsExplicit
);
1278 void ClangASTImporter::ASTImporterDelegate::Imported(clang::Decl
*from
,
1280 Log
*log
= GetLog(LLDBLog::Expressions
);
1282 // Some decls shouldn't be tracked here because they were not created by
1283 // copying 'from' to 'to'. Just exit early for those.
1284 if (m_decls_to_ignore
.count(to
))
1287 // Transfer module ownership information.
1288 auto *from_source
= llvm::dyn_cast_or_null
<ClangExternalASTSourceCallbacks
>(
1289 getFromContext().getExternalSource());
1290 // Can also be a ClangASTSourceProxy.
1291 auto *to_source
= llvm::dyn_cast_or_null
<ClangExternalASTSourceCallbacks
>(
1292 getToContext().getExternalSource());
1293 if (from_source
&& to_source
) {
1294 OptionalClangModuleID
from_id(from
->getOwningModuleID());
1295 OptionalClangModuleID to_id
=
1296 RemapModule(from_id
, *from_source
, *to_source
);
1297 TypeSystemClang
&to_ts
= to_source
->GetTypeSystem();
1298 to_ts
.SetOwningModule(to
, to_id
);
1301 lldb::user_id_t user_id
= LLDB_INVALID_UID
;
1302 if (std::optional
<ClangASTMetadata
> metadata
= m_main
.GetDeclMetadata(from
))
1303 user_id
= metadata
->GetUserID();
1306 if (NamedDecl
*from_named_decl
= dyn_cast
<clang::NamedDecl
>(from
)) {
1307 std::string name_string
;
1308 llvm::raw_string_ostream
name_stream(name_string
);
1309 from_named_decl
->printName(name_stream
);
1313 " [ClangASTImporter] Imported ({0}Decl*){1:x}, named {2} (from "
1314 "(Decl*){3:x}), metadata {4}",
1315 from
->getDeclKindName(), to
, name_string
, from
, user_id
);
1318 " [ClangASTImporter] Imported ({0}Decl*){1:x} (from "
1319 "(Decl*){2:x}), metadata {3}",
1320 from
->getDeclKindName(), to
, from
, user_id
);
1324 ASTContextMetadataSP to_context_md
=
1325 m_main
.GetContextMetadata(&to
->getASTContext());
1326 ASTContextMetadataSP from_context_md
=
1327 m_main
.MaybeGetContextMetadata(m_source_ctx
);
1329 if (from_context_md
) {
1330 DeclOrigin origin
= from_context_md
->getOrigin(from
);
1332 if (origin
.Valid()) {
1333 if (origin
.ctx
!= &to
->getASTContext()) {
1334 if (!to_context_md
->hasOrigin(to
) || user_id
!= LLDB_INVALID_UID
)
1335 to_context_md
->setOrigin(to
, origin
);
1338 " [ClangASTImporter] Propagated origin "
1339 "(Decl*){0:x}/(ASTContext*){1:x} from (ASTContext*){2:x} to "
1340 "(ASTContext*){3:x}",
1341 origin
.decl
, origin
.ctx
, &from
->getASTContext(),
1342 &to
->getASTContext());
1345 if (m_new_decl_listener
)
1346 m_new_decl_listener
->NewDeclImported(from
, to
);
1348 if (!to_context_md
->hasOrigin(to
) || user_id
!= LLDB_INVALID_UID
)
1349 to_context_md
->setOrigin(to
, DeclOrigin(m_source_ctx
, from
));
1352 " [ClangASTImporter] Decl has no origin information in "
1353 "(ASTContext*){0:x}",
1354 &from
->getASTContext());
1357 if (auto *to_namespace
= dyn_cast
<clang::NamespaceDecl
>(to
)) {
1358 auto *from_namespace
= cast
<clang::NamespaceDecl
>(from
);
1360 NamespaceMetaMap
&namespace_maps
= from_context_md
->m_namespace_maps
;
1362 NamespaceMetaMap::iterator namespace_map_iter
=
1363 namespace_maps
.find(from_namespace
);
1365 if (namespace_map_iter
!= namespace_maps
.end())
1366 to_context_md
->m_namespace_maps
[to_namespace
] =
1367 namespace_map_iter
->second
;
1370 to_context_md
->setOrigin(to
, DeclOrigin(m_source_ctx
, from
));
1373 " [ClangASTImporter] Sourced origin "
1374 "(Decl*){0:x}/(ASTContext*){1:x} into (ASTContext*){2:x}",
1375 from
, m_source_ctx
, &to
->getASTContext());
1378 if (auto *to_tag_decl
= dyn_cast
<TagDecl
>(to
)) {
1379 to_tag_decl
->setHasExternalLexicalStorage();
1380 to_tag_decl
->getPrimaryContext()->setMustBuildLookupTable();
1381 auto from_tag_decl
= cast
<TagDecl
>(from
);
1385 " [ClangASTImporter] To is a TagDecl - attributes {0}{1} [{2}->{3}]",
1386 (to_tag_decl
->hasExternalLexicalStorage() ? " Lexical" : ""),
1387 (to_tag_decl
->hasExternalVisibleStorage() ? " Visible" : ""),
1388 (from_tag_decl
->isCompleteDefinition() ? "complete" : "incomplete"),
1389 (to_tag_decl
->isCompleteDefinition() ? "complete" : "incomplete"));
1392 if (auto *to_namespace_decl
= dyn_cast
<NamespaceDecl
>(to
)) {
1393 m_main
.BuildNamespaceMap(to_namespace_decl
);
1394 to_namespace_decl
->setHasExternalVisibleStorage();
1397 if (auto *to_container_decl
= dyn_cast
<ObjCContainerDecl
>(to
)) {
1398 to_container_decl
->setHasExternalLexicalStorage();
1399 to_container_decl
->setHasExternalVisibleStorage();
1402 if (ObjCInterfaceDecl
*to_interface_decl
=
1403 llvm::dyn_cast
<ObjCInterfaceDecl
>(to_container_decl
)) {
1406 " [ClangASTImporter] To is an ObjCInterfaceDecl - attributes "
1408 (to_interface_decl
->hasExternalLexicalStorage() ? " Lexical" : ""),
1409 (to_interface_decl
->hasExternalVisibleStorage() ? " Visible" : ""),
1410 (to_interface_decl
->hasDefinition() ? " HasDefinition" : ""));
1413 log
, " [ClangASTImporter] To is an {0}Decl - attributes {1}{2}",
1414 ((Decl
*)to_container_decl
)->getDeclKindName(),
1415 (to_container_decl
->hasExternalLexicalStorage() ? " Lexical" : ""),
1416 (to_container_decl
->hasExternalVisibleStorage() ? " Visible" : ""));
1421 if (clang::CXXMethodDecl
*to_method
= dyn_cast
<CXXMethodDecl
>(to
))
1422 MaybeCompleteReturnType(m_main
, to_method
);
1426 ClangASTImporter::ASTImporterDelegate::GetOriginalDecl(clang::Decl
*To
) {
1427 return m_main
.GetDeclOrigin(To
).decl
;