23#include "clang/AST/ASTContext.h"
24#include "clang/AST/RecordLayout.h"
25#include "clang/Basic/SourceManager.h"
40class ScopedLexicalDeclEraser {
42 ScopedLexicalDeclEraser(std::set<const clang::Decl *> &decls,
43 const clang::Decl *decl)
44 : m_active_lexical_decls(decls), m_decl(decl) {}
46 ~ScopedLexicalDeclEraser() { m_active_lexical_decls.erase(m_decl); }
49 std::set<const clang::Decl *> &m_active_lexical_decls;
50 const clang::Decl *m_decl;
55 const lldb::TargetSP &target,
56 const std::shared_ptr<ClangASTImporter> &importer)
57 : m_lookups_enabled(false), m_target(target), m_ast_context(nullptr),
58 m_ast_importer_sp(importer), m_active_lexical_decls(),
88 llvm::cast<ScratchTypeSystemClang>(scratch_ts_sp.get());
97 m_ast_context->getTranslationUnitDecl()->setHasExternalVisibleStorage();
98 m_ast_context->getTranslationUnitDecl()->setHasExternalLexicalStorage();
103 const DeclContext *decl_ctx, DeclarationName clang_decl_name) {
105 SetNoExternalVisibleDeclsForName(decl_ctx, clang_decl_name);
109 std::string decl_name(clang_decl_name.getAsString());
111 switch (clang_decl_name.getNameKind()) {
113 case DeclarationName::Identifier: {
114 clang::IdentifierInfo *identifier_info =
115 clang_decl_name.getAsIdentifierInfo();
117 if (!identifier_info || identifier_info->getBuiltinID() != 0) {
118 SetNoExternalVisibleDeclsForName(decl_ctx, clang_decl_name);
124 case DeclarationName::CXXOperatorName:
125 case DeclarationName::CXXLiteralOperatorName:
130 case DeclarationName::CXXUsingDirective:
131 SetNoExternalVisibleDeclsForName(decl_ctx, clang_decl_name);
134 case DeclarationName::ObjCZeroArgSelector:
135 case DeclarationName::ObjCOneArgSelector:
136 case DeclarationName::ObjCMultiArgSelector: {
137 llvm::SmallVector<NamedDecl *, 1> method_decls;
140 clang_decl_name, decl_ctx);
144 SetExternalVisibleDeclsForName(decl_ctx, clang_decl_name, method_decls);
145 return (method_decls.size() > 0);
148 case DeclarationName::CXXConstructorName:
149 case DeclarationName::CXXDestructorName:
150 case DeclarationName::CXXConversionFunctionName:
151 case DeclarationName::CXXDeductionGuideName:
152 SetNoExternalVisibleDeclsForName(decl_ctx, clang_decl_name);
159 if (!decl_name.empty() && decl_name[0] ==
'$') {
162 SetNoExternalVisibleDeclsForName(decl_ctx, clang_decl_name);
169 const char *uniqued_const_decl_name = const_decl_name.
GetCString();
173 SetNoExternalVisibleDeclsForName(decl_ctx, clang_decl_name);
177 llvm::SmallVector<NamedDecl *, 4> name_decls;
179 clang_decl_name, decl_ctx);
181 SetExternalVisibleDeclsForName(decl_ctx, clang_decl_name, name_decls);
183 return (name_decls.size() != 0);
189 if (
const NamespaceDecl *namespace_context =
190 dyn_cast<NamespaceDecl>(decl->getDeclContext())) {
197 LLDB_LOGV(log,
" CTD Inspecting namespace map{0} ({1} entries)",
198 namespace_map.get(), namespace_map->size());
201 LLDB_LOG(log,
" CTD Searching namespace {0} in module {1}",
202 item.second.GetName(), item.first->GetFileSpec().GetFilename());
208 item.first->FindTypesInNamespace(name, item.second,
UINT32_MAX, types);
221 const TagType *tag_type =
227 TagDecl *candidate_tag_decl =
228 const_cast<TagDecl *
>(tag_type->getDecl());
231 &candidate_tag_decl->getASTContext(), candidate_tag_decl))
232 return candidate_tag_decl;
242 bool exact_match =
false;
243 llvm::DenseSet<SymbolFile *> searched_symbol_files;
245 searched_symbol_files, types);
258 const TagType *tag_type =
264 TagDecl *candidate_tag_decl =
const_cast<TagDecl *
>(tag_type->getDecl());
275 return candidate_tag_decl;
286 " CompleteTagDecl on (ASTContext*){0} Completing "
287 "(TagDecl*){1} named {2}",
289 tag_decl->getName());
314 " [CompleteObjCInterfaceDecl] on (ASTContext*){0} '{1}' "
315 "Completing an ObjCInterfaceDecl named {1}",
317 interface_decl->getName());
318 LLDB_LOG(log,
" [COID] Before:\n{0}",
323 if (original.
Valid()) {
324 if (ObjCInterfaceDecl *original_iface_decl =
325 dyn_cast<ObjCInterfaceDecl>(original.
decl)) {
326 ObjCInterfaceDecl *complete_iface_decl =
329 if (complete_iface_decl && (complete_iface_decl != original_iface_decl)) {
337 if (interface_decl->getSuperClass() &&
338 interface_decl->getSuperClass() != interface_decl)
346 const clang::ObjCInterfaceDecl *interface_decl) {
347 lldb::ProcessSP process(
m_target->GetProcessSP());
354 if (!language_runtime)
357 ConstString class_name(interface_decl->getNameAsString().c_str());
359 lldb::TypeSP complete_type_sp(
362 if (!complete_type_sp)
370 if (!complete_opaque_type)
373 const clang::Type *complete_clang_type =
374 QualType::getFromOpaquePtr(complete_opaque_type).getTypePtr();
375 const ObjCInterfaceType *complete_interface_type =
376 dyn_cast<ObjCInterfaceType>(complete_clang_type);
378 if (!complete_interface_type)
381 ObjCInterfaceDecl *complete_iface_decl(complete_interface_type->getDecl());
383 return complete_iface_decl;
387 const DeclContext *decl_context,
388 llvm::function_ref<
bool(Decl::Kind)> predicate,
393 const Decl *context_decl = dyn_cast<Decl>(decl_context);
405 if (
const NamedDecl *context_named_decl = dyn_cast<NamedDecl>(context_decl))
407 "FindExternalLexicalDecls on (ASTContext*){0} '{1}' in "
408 "'{2}' ({3}Decl*){4}",
410 context_named_decl->getNameAsString().c_str(),
411 context_decl->getDeclKindName(),
412 static_cast<const void *
>(context_decl));
413 else if (context_decl)
415 "FindExternalLexicalDecls on (ASTContext*){0} '{1}' in "
418 context_decl->getDeclKindName(),
419 static_cast<const void *
>(context_decl));
422 "FindExternalLexicalDecls on (ASTContext*){0} '{1}' in a "
429 if (!original.
Valid())
432 LLDB_LOG(log,
" FELD Original decl {0} (Decl*){1:x}:\n{2}",
433 static_cast<void *
>(original.
ctx),
434 static_cast<void *
>(original.
decl),
437 if (ObjCInterfaceDecl *original_iface_decl =
438 dyn_cast<ObjCInterfaceDecl>(original.
decl)) {
439 ObjCInterfaceDecl *complete_iface_decl =
442 if (complete_iface_decl && (complete_iface_decl != original_iface_decl)) {
443 original.
decl = complete_iface_decl;
444 original.
ctx = &complete_iface_decl->getASTContext();
450 if (TagDecl *original_tag_decl = dyn_cast<TagDecl>(original.
decl)) {
451 ExternalASTSource *external_source = original.
ctx->getExternalSource();
454 external_source->CompleteType(original_tag_decl);
457 const DeclContext *original_decl_context =
458 dyn_cast<DeclContext>(original.
decl);
460 if (!original_decl_context)
464 bool SkippedDecls =
false;
465 for (Decl *decl : original_decl_context->decls()) {
469 if (predicate(decl->getKind())) {
472 if (
const NamedDecl *context_named_decl =
473 dyn_cast<NamedDecl>(context_decl))
474 LLDB_LOG(log,
" FELD Adding [to {0}Decl {1}] lexical {2}Decl {3}",
475 context_named_decl->getDeclKindName(),
476 context_named_decl->getName(), decl->getDeclKindName(),
479 LLDB_LOG(log,
" FELD Adding lexical {0}Decl {1}",
480 decl->getDeclKindName(), ast_dump);
497 if (FieldDecl *copied_field = dyn_cast<FieldDecl>(copied_decl)) {
498 QualType copied_field_type = copied_field->getType();
511 decl_context->setHasExternalLexicalStorage(
true);
515 const_cast<DeclContext *
>(decl_context)->setMustBuildLookupTable();
529 "ClangASTSource::FindExternalVisibleDecls on "
530 "(ASTContext*){0} '{1}' for '{2}' in a NULL DeclContext",
532 else if (
const NamedDecl *context_named_decl =
535 "ClangASTSource::FindExternalVisibleDecls on "
536 "(ASTContext*){0} '{1}' for '{2}' in '{3}'",
538 context_named_decl->getName());
541 "ClangASTSource::FindExternalVisibleDecls on "
542 "(ASTContext*){0} '{1}' for '{2}' in a '{3}'",
557 LLDB_LOG(log,
" CAS::FEVD Searching the root namespace");
564 LLDB_LOG(log,
" CAS::FEVD Registering namespace map {0} ({1} entries)",
567 NamespaceDecl *clang_namespace_decl =
570 if (clang_namespace_decl)
571 clang_namespace_decl->setHasExternalVisibleStorage();
580 bool ignore_all_dollar_names) {
585 if (name == id_name || name == Class_name)
591 return name_string_ref.empty() ||
592 (ignore_all_dollar_names && name_string_ref.startswith(
"$")) ||
593 name_string_ref.startswith(
"_$");
618 const bool exact_match =
true;
619 llvm::DenseSet<lldb_private::SymbolFile *> searched_symbol_files;
620 if (module_sp && namespace_decl)
621 module_sp->FindTypesInNamespace(name, namespace_decl, 1, types);
623 m_target->GetImages().FindTypes(module_sp.get(), name, exact_match, 1,
624 searched_symbol_files, types);
627 if (
size_t num_types = types.
GetSize()) {
628 for (
size_t ti = 0; ti < num_types; ++ti) {
632 const char *name_string = type_sp->GetName().GetCString();
634 LLDB_LOG(log,
" CAS::FEVD Matching type found for \"{0}\": {1}", name,
635 (name_string ? name_string :
"<anonymous>"));
638 CompilerType full_type = type_sp->GetFullCompilerType();
642 if (!copied_clang_type) {
643 LLDB_LOG(log,
" CAS::FEVD - Couldn't export a type");
674 if (module_sp && namespace_decl) {
677 if (
SymbolFile *symbol_file = module_sp->GetSymbolFile()) {
678 found_namespace_decl = symbol_file->FindNamespace(name, namespace_decl);
680 if (found_namespace_decl) {
682 std::pair<lldb::ModuleSP, CompilerDeclContext>(
683 module_sp, found_namespace_decl));
685 LLDB_LOG(log,
" CAS::FEVD Found namespace {0} in module {1}", name,
686 module_sp->GetFileSpec().GetFilename());
692 for (lldb::ModuleSP image :
m_target->GetImages().Modules()) {
698 SymbolFile *symbol_file = image->GetSymbolFile();
710 const bool find_root_namespaces =
714 name, namespace_decl, find_root_namespaces);
716 if (found_namespace_decl) {
718 std::pair<lldb::ModuleSP, CompilerDeclContext>(image,
719 found_namespace_decl));
721 LLDB_LOG(log,
" CAS::FEVD Found namespace {0} in module {1}", name,
722 image->GetFileSpec().GetFilename());
731 bool IsValid()
const {
return (decl !=
nullptr); }
737template <
class D2,
template <
class D>
class TD,
class D1>
739 return TD<D2>(dyn_cast<D2>(source.decl));
779 const char *log_info) {
780 const DeclarationName &decl_name(context.
m_decl_name);
781 clang::ASTContext *original_ctx = &original_interface_decl->getASTContext();
783 Selector original_selector;
785 if (decl_name.isObjCZeroArgSelector()) {
786 IdentifierInfo *ident = &original_ctx->Idents.get(decl_name.getAsString());
787 original_selector = original_ctx->Selectors.getSelector(0, &ident);
788 }
else if (decl_name.isObjCOneArgSelector()) {
789 const std::string &decl_name_string = decl_name.getAsString();
790 std::string decl_name_string_without_colon(decl_name_string.c_str(),
791 decl_name_string.length() - 1);
792 IdentifierInfo *ident =
793 &original_ctx->Idents.get(decl_name_string_without_colon);
794 original_selector = original_ctx->Selectors.getSelector(1, &ident);
796 SmallVector<IdentifierInfo *, 4> idents;
798 clang::Selector sel = decl_name.getObjCSelector();
800 unsigned num_args = sel.getNumArgs();
802 for (
unsigned i = 0; i != num_args; ++i) {
803 idents.push_back(&original_ctx->Idents.get(sel.getNameForSlot(i)));
807 original_ctx->Selectors.getSelector(num_args, idents.data());
810 DeclarationName original_decl_name(original_selector);
812 llvm::SmallVector<NamedDecl *, 1> methods;
816 if (ObjCMethodDecl *instance_method_decl =
817 original_interface_decl->lookupInstanceMethod(original_selector)) {
818 methods.push_back(instance_method_decl);
819 }
else if (ObjCMethodDecl *class_method_decl =
820 original_interface_decl->lookupClassMethod(
821 original_selector)) {
822 methods.push_back(class_method_decl);
825 if (methods.empty()) {
829 for (NamedDecl *named_decl : methods) {
833 ObjCMethodDecl *result_method = dyn_cast<ObjCMethodDecl>(named_decl);
838 Decl *copied_decl =
CopyDecl(result_method);
843 ObjCMethodDecl *copied_method_decl = dyn_cast<ObjCMethodDecl>(copied_decl);
845 if (!copied_method_decl)
850 LLDB_LOG(log,
" CAS::FOMD found ({0}) {1}", log_info,
863 std::shared_ptr<ClangModulesDeclVendor> modules_decl_vendor =
865 if (!modules_decl_vendor)
870 std::vector<clang::NamedDecl *> decls;
872 if (!modules_decl_vendor->FindDecls(name, append, max_matches, decls))
875 LLDB_LOG(log,
" CAS::FEVD Matching entity found for \"{0}\" in the modules",
878 clang::NamedDecl *
const decl_from_modules = decls[0];
880 if (llvm::isa<clang::TypeDecl>(decl_from_modules) ||
881 llvm::isa<clang::ObjCContainerDecl>(decl_from_modules) ||
882 llvm::isa<clang::EnumConstantDecl>(decl_from_modules)) {
883 clang::Decl *copied_decl =
CopyDecl(decl_from_modules);
884 clang::NamedDecl *copied_named_decl =
885 copied_decl ? dyn_cast<clang::NamedDecl>(copied_decl) :
nullptr;
887 if (!copied_named_decl) {
888 LLDB_LOG(log,
" CAS::FEVD - Couldn't export a type from the modules");
903 lldb::ProcessSP process(
m_target->GetProcessSP());
910 if (!language_runtime)
920 std::vector<clang::NamedDecl *> decls;
922 auto *clang_decl_vendor = llvm::cast<ClangDeclVendor>(decl_vendor);
923 if (!clang_decl_vendor->FindDecls(name, append, max_matches, decls))
926 LLDB_LOG(log,
" CAS::FEVD Matching type found for \"{0}\" in the runtime",
929 clang::Decl *copied_decl =
CopyDecl(decls[0]);
930 clang::NamedDecl *copied_named_decl =
931 copied_decl ? dyn_cast<clang::NamedDecl>(copied_decl) :
nullptr;
933 if (!copied_named_decl) {
934 LLDB_LOG(log,
" CAS::FEVD - Couldn't export a type from the runtime");
945 const DeclarationName &decl_name(context.
m_decl_name);
948 const ObjCInterfaceDecl *interface_decl =
949 dyn_cast<ObjCInterfaceDecl>(decl_ctx);
957 if (!original.
Valid())
960 ObjCInterfaceDecl *original_interface_decl =
961 dyn_cast<ObjCInterfaceDecl>(original.
decl);
970 if (decl_name.isObjCZeroArgSelector()) {
971 ss.
Printf(
"%s", decl_name.getAsString().c_str());
972 }
else if (decl_name.isObjCOneArgSelector()) {
973 ss.
Printf(
"%s", decl_name.getAsString().c_str());
975 clang::Selector sel = decl_name.getObjCSelector();
977 for (
unsigned i = 0, e = sel.getNumArgs(); i != e; ++i) {
978 llvm::StringRef r = sel.getNameForSlot(i);
979 ss.
Printf(
"%s:", r.str().c_str());
990 "ClangASTSource::FindObjCMethodDecls on (ASTContext*){0} '{1}' "
991 "for selector [{2} {3}]",
993 interface_decl->getName(), selector_name);
1000 std::string interface_name = interface_decl->getNameAsString();
1004 ms.
Printf(
"-[%s %s]", interface_name.c_str(), selector_name.
AsCString());
1009 m_target->GetImages().FindFunctions(instance_method_name,
1010 lldb::eFunctionNameTypeFull,
1011 function_options, sc_list);
1017 ms.
Printf(
"+[%s %s]", interface_name.c_str(), selector_name.
AsCString());
1022 m_target->GetImages().FindFunctions(class_method_name,
1023 lldb::eFunctionNameTypeFull,
1024 function_options, sc_list);
1035 m_target->GetImages().FindFunctions(selector_name,
1036 lldb::eFunctionNameTypeSelector,
1037 function_options, candidate_sc_list);
1039 for (
const SymbolContext &candidate_sc : candidate_sc_list) {
1040 if (!candidate_sc.function)
1043 const char *candidate_name = candidate_sc.function->GetName().AsCString();
1045 const char *cursor = candidate_name;
1047 if (*cursor !=
'+' && *cursor !=
'-')
1057 size_t interface_len = interface_name.length();
1059 if (strncmp(cursor, interface_name.c_str(), interface_len))
1062 cursor += interface_len;
1064 if (*cursor ==
' ' || *cursor ==
'(')
1065 sc_list.
Append(candidate_sc);
1077 if (!function_decl_ctx)
1080 ObjCMethodDecl *method_decl =
1086 ObjCInterfaceDecl *found_interface_decl =
1087 method_decl->getClassInterface();
1089 if (!found_interface_decl)
1092 if (found_interface_decl->getName() == interface_decl->getName()) {
1093 Decl *copied_decl =
CopyDecl(method_decl);
1098 ObjCMethodDecl *copied_method_decl =
1099 dyn_cast<ObjCMethodDecl>(copied_decl);
1101 if (!copied_method_decl)
1104 LLDB_LOG(log,
" CAS::FOMD found (in symbols)\n{0}",
1118 const_cast<ObjCInterfaceDecl *
>(interface_decl));
1120 if (!complete_interface_decl)
1127 complete_interface_decl);
1129 if (complete_interface_decl == interface_decl)
1133 "CAS::FOPD trying origin "
1134 "(ObjCInterfaceDecl*){0}/(ASTContext*){1}...",
1135 complete_interface_decl, &complete_iface_decl->getASTContext());
1147 if (std::shared_ptr<ClangModulesDeclVendor> modules_decl_vendor =
1149 ConstString interface_name(interface_decl->getNameAsString().c_str());
1150 bool append =
false;
1152 std::vector<clang::NamedDecl *> decls;
1154 if (!modules_decl_vendor->FindDecls(interface_name, append, max_matches,
1158 ObjCInterfaceDecl *interface_decl_from_modules =
1159 dyn_cast<ObjCInterfaceDecl>(decls[0]);
1161 if (!interface_decl_from_modules)
1174 lldb::ProcessSP process(
m_target->GetProcessSP());
1181 if (!language_runtime)
1189 ConstString interface_name(interface_decl->getNameAsString().c_str());
1190 bool append =
false;
1192 std::vector<clang::NamedDecl *> decls;
1194 auto *clang_decl_vendor = llvm::cast<ClangDeclVendor>(decl_vendor);
1195 if (!clang_decl_vendor->FindDecls(interface_name, append, max_matches,
1199 ObjCInterfaceDecl *runtime_interface_decl =
1200 dyn_cast<ObjCInterfaceDecl>(decls[0]);
1202 if (!runtime_interface_decl)
1218 std::string name_str = context.
m_decl_name.getAsString();
1219 StringRef name(name_str);
1220 IdentifierInfo &name_identifier(
1221 origin_iface_decl->getASTContext().Idents.get(name));
1224 origin_iface_decl->FindPropertyDeclaration(
1225 &name_identifier, ObjCPropertyQueryKind::OBJC_PR_query_instance));
1229 if (origin_property_decl.
IsValid()) {
1231 origin_property_decl.
Import(source));
1232 if (parser_property_decl.
IsValid()) {
1233 LLDB_LOG(log,
" CAS::FOPD found\n{0}",
1242 origin_iface_decl->getIvarDecl(&name_identifier));
1244 if (origin_ivar_decl.
IsValid()) {
1246 origin_ivar_decl.
Import(source));
1247 if (parser_ivar_decl.
IsValid()) {
1248 LLDB_LOG(log,
" CAS::FOPD found\n{0}",
1267 ConstString class_name(parser_iface_decl->getNameAsString().c_str());
1270 "ClangASTSource::FindObjCPropertyAndIvarDecls on "
1271 "(ASTContext*){0} '{1}' for '{2}.{3}'",
1273 parser_iface_decl->getName(), context.
m_decl_name.getAsString());
1279 "CAS::FOPD couldn't find the property on origin "
1280 "(ObjCInterfaceDecl*){0}/(ASTContext*){1}, searching "
1282 origin_iface_decl.
decl, &origin_iface_decl->getASTContext());
1289 const_cast<ObjCInterfaceDecl *
>(parser_iface_decl.
decl));
1291 if (!complete_interface_decl)
1298 complete_interface_decl);
1300 if (complete_iface_decl.
decl == origin_iface_decl.
decl)
1304 "CAS::FOPD trying origin "
1305 "(ObjCInterfaceDecl*){0}/(ASTContext*){1}...",
1306 complete_iface_decl.
decl, &complete_iface_decl->getASTContext());
1317 std::shared_ptr<ClangModulesDeclVendor> modules_decl_vendor =
1320 if (!modules_decl_vendor)
1323 bool append =
false;
1325 std::vector<clang::NamedDecl *> decls;
1327 if (!modules_decl_vendor->FindDecls(class_name, append, max_matches, decls))
1331 dyn_cast<ObjCInterfaceDecl>(decls[0]));
1333 if (!interface_decl_from_modules.
IsValid())
1337 "CAS::FOPD[{0}] trying module "
1338 "(ObjCInterfaceDecl*){0}/(ASTContext*){1}...",
1339 interface_decl_from_modules.
decl,
1340 &interface_decl_from_modules->getASTContext());
1343 interface_decl_from_modules))
1351 lldb::ProcessSP process(
m_target->GetProcessSP());
1358 if (!language_runtime)
1366 bool append =
false;
1368 std::vector<clang::NamedDecl *> decls;
1370 auto *clang_decl_vendor = llvm::cast<ClangDeclVendor>(decl_vendor);
1371 if (!clang_decl_vendor->FindDecls(class_name, append, max_matches, decls))
1375 dyn_cast<ObjCInterfaceDecl>(decls[0]));
1377 if (!interface_decl_from_runtime.
IsValid())
1381 "CAS::FOPD[{0}] trying runtime "
1382 "(ObjCInterfaceDecl*){0}/(ASTContext*){1}...",
1383 interface_decl_from_runtime.
decl,
1384 &interface_decl_from_runtime->getASTContext());
1387 interface_decl_from_runtime))
1393 const NamespaceDecl *namespace_context =
1401 LLDB_LOGV(log,
" CAS::FEVD Inspecting namespace map {0} ({1} entries)",
1402 namespace_map.get(), namespace_map->size());
1407 for (ClangASTImporter::NamespaceMap::iterator i = namespace_map->begin(),
1408 e = namespace_map->end();
1410 LLDB_LOG(log,
" CAS::FEVD Searching namespace {0} in module {1}",
1411 i->second.GetName(), i->first->GetFileSpec().GetFilename());
1420template <
class D,
class O>
1422 llvm::DenseMap<const D *, O> &source_map,
1429 typedef llvm::DenseMap<const D *, O> MapType;
1430 typedef typename MapType::value_type PairType;
1431 std::vector<PairType> sorted_items;
1432 sorted_items.reserve(source_map.size());
1433 sorted_items.assign(source_map.begin(), source_map.end());
1434 llvm::sort(sorted_items, llvm::less_second());
1436 for (
const auto &item : sorted_items) {
1441 destination_map.insert(
1442 std::pair<const D *, O>(parser_decl.
decl, item.second));
1448template <
bool IsVirtual>
1452 for (CXXRecordDecl::base_class_const_iterator
1453 bi = (IsVirtual ? record->vbases_begin() : record->bases_begin()),
1454 be = (IsVirtual ? record->vbases_end() : record->bases_end());
1456 if (!IsVirtual && bi->isVirtual())
1459 const clang::Type *origin_base_type = bi->getType().getTypePtr();
1460 const clang::RecordType *origin_base_record_type =
1461 origin_base_type->getAs<RecordType>();
1463 if (!origin_base_record_type)
1467 origin_base_record_type->getDecl());
1473 DynCast<CXXRecordDecl>(origin_base_record));
1478 CharUnits base_offset;
1482 record_layout.getVBaseClassOffset(origin_base_cxx_record.
decl);
1485 record_layout.getBaseClassOffset(origin_base_cxx_record.
decl);
1487 base_offsets.insert(std::pair<const CXXRecordDecl *, CharUnits>(
1488 origin_base_cxx_record.
decl, base_offset));
1495 uint64_t &alignment,
1503 "LayoutRecordType on (ASTContext*){0} '{1}' for (RecordDecl*)"
1504 "{2} [name = '{3}']",
1520 &origin_record->getASTContext(),
1521 const_cast<RecordDecl *
>(origin_record.
decl));
1523 clang::RecordDecl *definition = origin_record.
decl->getDefinition();
1524 if (!definition || !definition->isCompleteDefinition())
1527 const ASTRecordLayout &record_layout(
1528 origin_record->getASTContext().getASTRecordLayout(origin_record.
decl));
1530 int field_idx = 0, field_count = record_layout.getFieldCount();
1532 for (RecordDecl::field_iterator fi = origin_record->field_begin(),
1533 fe = origin_record->field_end();
1535 if (field_idx >= field_count)
1538 uint64_t field_offset = record_layout.getFieldOffset(field_idx);
1540 origin_field_offsets.insert(
1541 std::pair<const FieldDecl *, uint64_t>(*fi, field_offset));
1549 DynCast<const CXXRecordDecl>(origin_record));
1551 if (origin_cxx_record.
IsValid()) {
1552 if (!ExtractBaseOffsets<false>(record_layout, origin_cxx_record,
1553 origin_base_offsets) ||
1554 !ExtractBaseOffsets<true>(record_layout, origin_cxx_record,
1555 origin_virtual_base_offsets))
1565 size = record_layout.getSize().getQuantity() *
m_ast_context->getCharWidth();
1566 alignment = record_layout.getAlignment().getQuantity() *
1571 LLDB_LOG(log,
"LRT Original = (RecordDecl*){0}",
1572 static_cast<const void *
>(origin_record.
decl));
1573 LLDB_LOG(log,
"LRT Size = {0}", size);
1574 LLDB_LOG(log,
"LRT Alignment = {0}", alignment);
1576 for (RecordDecl::field_iterator fi = record->field_begin(),
1577 fe = record->field_end();
1580 "LRT (FieldDecl*){0}, Name = '{1}', Type = '{2}', Offset = "
1582 *fi, fi->getName(), fi->getType().getAsString(),
1583 field_offsets[*fi]);
1586 DynCast<const CXXRecordDecl>(parser_record);
1587 if (parser_cxx_record.
IsValid()) {
1589 for (CXXRecordDecl::base_class_const_iterator
1590 bi = parser_cxx_record->bases_begin(),
1591 be = parser_cxx_record->bases_end();
1593 bool is_virtual = bi->isVirtual();
1595 QualType base_type = bi->getType();
1596 const RecordType *base_record_type = base_type->getAs<RecordType>();
1599 DynCast<CXXRecordDecl>(base_record);
1602 "LRT {0}(CXXRecordDecl*){1}, Name = '{2}', Offset = "
1604 (is_virtual ?
"Virtual " :
""), base_cxx_record.
decl,
1605 base_cxx_record.
decl->getName(),
1607 ? virtual_base_offsets[base_cxx_record.
decl].getQuantity()
1608 : base_offsets[base_cxx_record.
decl].getQuantity()));
1611 LLDB_LOG(log,
"LRD Not a CXXRecord, so no bases");
1625 if (parent_map && parent_map->size())
1627 "CompleteNamespaceMap on (ASTContext*){0} '{1}' Searching "
1628 "for namespace {2} in namespace {3}",
1630 parent_map->begin()->second.GetName());
1633 "CompleteNamespaceMap on (ASTContext*){0} '{1}' Searching "
1634 "for namespace {2}",
1639 for (ClangASTImporter::NamespaceMap::iterator i = parent_map->begin(),
1640 e = parent_map->end();
1644 lldb::ModuleSP module_sp = i->first;
1647 SymbolFile *symbol_file = module_sp->GetSymbolFile();
1652 found_namespace_decl =
1653 symbol_file->
FindNamespace(name, module_parent_namespace_decl);
1655 if (!found_namespace_decl)
1658 namespace_map->push_back(std::pair<lldb::ModuleSP, CompilerDeclContext>(
1659 module_sp, found_namespace_decl));
1661 LLDB_LOG(log,
" CMN Found namespace {0} in module {1}", name,
1662 module_sp->GetFileSpec().GetFilename());
1666 for (lldb::ModuleSP image :
m_target->GetImages().Modules()) {
1672 SymbolFile *symbol_file = image->GetSymbolFile();
1677 found_namespace_decl =
1680 if (!found_namespace_decl)
1683 namespace_map->push_back(std::pair<lldb::ModuleSP, CompilerDeclContext>(
1684 image, found_namespace_decl));
1686 LLDB_LOG(log,
" CMN[{0}] Found namespace {0} in module {1}", name,
1687 image->GetFileSpec().GetFilename());
1695 if (!namespace_decls)
1700 clang::ASTContext *src_ast =
1704 clang::NamespaceDecl *src_namespace_decl =
1707 if (!src_namespace_decl)
1710 Decl *copied_decl =
CopyDecl(src_namespace_decl);
1715 NamespaceDecl *copied_namespace_decl = dyn_cast<NamespaceDecl>(copied_decl);
1717 if (!copied_namespace_decl)
1720 context.
m_decls.push_back(copied_namespace_decl);
1725 return dyn_cast<NamespaceDecl>(copied_decl);
1745 if (copied_qual_type.getAsOpaquePtr() &&
1746 copied_qual_type->getCanonicalTypeInternal().isNull())
1754std::shared_ptr<ClangModulesDeclVendor>
1756 auto persistent_vars = llvm::cast<ClangPersistentVariables>(
1758 return persistent_vars->GetClangModulesDeclVendor();
llvm::DenseMap< const FieldDecl *, uint64_t > FieldOffsetMap
bool ExtractBaseOffsets(const ASTRecordLayout &record_layout, DeclFromUser< const CXXRecordDecl > &record, BaseOffsetMap &base_offsets)
static bool FindObjCPropertyAndIvarDeclsWithOrigin(NameSearchContext &context, ClangASTSource &source, DeclFromUser< const ObjCInterfaceDecl > &origin_iface_decl)
llvm::DenseMap< const CXXRecordDecl *, CharUnits > BaseOffsetMap
TD< D2 > DynCast(TD< D1 > source)
static bool ImportOffsetMap(llvm::DenseMap< const D *, O > &destination_map, llvm::DenseMap< const D *, O > &source_map, ClangASTSource &source)
#define LLDB_LOG(log,...)
The LLDB_LOG* macros defined below are the way to emit log messages.
#define LLDB_LOGV(log,...)
DeclFromUser< D > GetOrigin(ClangASTSource &source)
DeclFromParser< D > Import(ClangASTSource &source)
std::shared_ptr< NamespaceMap > NamespaceMapSP
std::pair< lldb::ModuleSP, CompilerDeclContext > NamespaceMapItem
Provider for named objects defined in the debug info for Clang.
bool FindExternalVisibleDeclsByName(const clang::DeclContext *DC, clang::DeclarationName Name) override
Look up all Decls that match a particular name.
std::set< const char * > m_active_lookups
void LookupInNamespace(NameSearchContext &context)
Performs lookup into a namespace.
void SetLookupsEnabled(bool lookups_enabled)
clang::TagDecl * FindCompleteType(const clang::TagDecl *decl)
clang::ASTContext * m_ast_context
The AST context requests are coming in for.
ClangASTSource(const lldb::TargetSP &target, const std::shared_ptr< ClangASTImporter > &importer)
Constructor.
std::set< const clang::Decl * > m_active_lexical_decls
void FindExternalLexicalDecls(const clang::DeclContext *DC, llvm::function_ref< bool(clang::Decl::Kind)> IsKindWeWant, llvm::SmallVectorImpl< clang::Decl * > &Decls) override
Enumerate all Decls in a given lexical context.
bool layoutRecordType(const clang::RecordDecl *Record, uint64_t &Size, uint64_t &Alignment, llvm::DenseMap< const clang::FieldDecl *, uint64_t > &FieldOffsets, llvm::DenseMap< const clang::CXXRecordDecl *, clang::CharUnits > &BaseOffsets, llvm::DenseMap< const clang::CXXRecordDecl *, clang::CharUnits > &VirtualBaseOffsets) override
Specify the layout of the contents of a RecordDecl.
clang::Decl * CopyDecl(clang::Decl *src_decl)
Copies a single Decl into the parser's AST context.
bool IgnoreName(const ConstString name, bool ignore_all_dollar_names)
Returns true if a name should be ignored by name lookup.
virtual void FindExternalVisibleDecls(NameSearchContext &context)
The worker function for FindExternalVisibleDeclsByName.
void FindObjCPropertyAndIvarDecls(NameSearchContext &context)
Find all Objective-C properties and ivars with a given name.
ClangASTImporter::DeclOrigin GetDeclOrigin(const clang::Decl *decl)
Determined the origin of a single Decl, if it can be found.
bool FindObjCMethodDeclsWithOrigin(NameSearchContext &context, clang::ObjCInterfaceDecl *original_interface_decl, const char *log_info)
std::shared_ptr< ClangModulesDeclVendor > GetClangModulesDeclVendor()
void CompleteNamespaceMap(ClangASTImporter::NamespaceMapSP &namespace_map, ConstString name, ClangASTImporter::NamespaceMapSP &parent_map) const override
Look up the modules containing a given namespace and put the appropriate entries in the namespace map...
void FindDeclInObjCRuntime(NameSearchContext &context, ConstString name)
void CompleteType(clang::TagDecl *Tag) override
Complete a TagDecl.
~ClangASTSource() override
Destructor.
void FillNamespaceMap(NameSearchContext &context, lldb::ModuleSP module_sp, const CompilerDeclContext &namespace_decl)
Fills the namespace map of the given NameSearchContext.
CompilerType GuardedCopyType(const CompilerType &src_type)
A wrapper for TypeSystemClang::CopyType that sets a flag that indicates that we should not respond to...
void FindDeclInModules(NameSearchContext &context, ConstString name)
clang::NamespaceDecl * AddNamespace(NameSearchContext &context, ClangASTImporter::NamespaceMapSP &namespace_decls)
std::shared_ptr< ClangASTImporter > m_ast_importer_sp
The target's AST importer.
void InstallASTContext(TypeSystemClang &ast_context)
TypeSystemClang * m_clang_ast_context
The TypeSystemClang for m_ast_context.
void FindObjCMethodDecls(NameSearchContext &context)
Find all Objective-C methods matching a given selector.
const lldb::TargetSP m_target
The target to use in finding variables and types.
clang::ObjCInterfaceDecl * GetCompleteObjCInterface(const clang::ObjCInterfaceDecl *interface_decl)
Look for the complete version of an Objective-C interface, and return it if found.
void StartTranslationUnit(clang::ASTConsumer *Consumer) override
Called on entering a translation unit.
clang::FileManager * m_file_manager
The file manager paired with the AST context.
Represents a generic declaration context in a program.
std::shared_ptr< TypeSystemType > dyn_cast_or_null()
Return a shared_ptr<TypeSystemType> if dyn_cast succeeds.
Generic representation of a type in a programming language.
TypeSystemSPWrapper GetTypeSystem() const
Accessors.
lldb::opaque_compiler_type_t GetOpaqueQualType() const
A uniqued constant string class.
const char * AsCString(const char *value_if_empty=nullptr) const
Get the string value as a C string.
llvm::StringRef GetStringRef() const
Get the string value as a llvm::StringRef.
const char * GetCString() const
Get the string value as a C string.
virtual DeclVendor * GetDeclVendor()
A collection class for Module objects.
void FindTypes(Module *search_first, ConstString name, bool name_is_fully_qualified, size_t max_matches, llvm::DenseSet< SymbolFile * > &searched_symbol_files, TypeList &types) const
Find types by name.
lldb::TypeSP LookupInCompleteClassCache(ConstString &name)
static ObjCLanguageRuntime * Get(Process &process)
The TypeSystemClang instance used for the scratch ASTContext in a lldb::Target.
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.
void ForgetSource(clang::ASTContext *src_ctx, ClangASTImporter &importer)
Unregisters the given ASTContext as a source from the scratch AST (and all sub-ASTs).
static const std::nullopt_t DefaultAST
Alias for requesting the default scratch TypeSystemClang in GetForTarget.
void Flush() override
Flush the stream.
llvm::StringRef GetString() const
size_t Printf(const char *format,...) __attribute__((format(printf
Output printf formatted output to the stream.
Defines a list of symbol context objects.
uint32_t GetSize() const
Get accessor for a symbol context list size.
void Append(const SymbolContext &sc)
Append a new symbol context to the list.
void Clear()
Clear the object's state.
Defines a symbol context baton that can be handed other debug core functions.
Provides public interface for all SymbolFiles.
virtual CompilerDeclContext FindNamespace(ConstString name, const CompilerDeclContext &parent_decl_ctx, bool only_root_namespaces=false)
Finds a namespace of name name and whose parent context is parent_decl_ctx.
lldb::TypeSP GetTypeAtIndex(uint32_t idx)
A TypeSystem implementation based on Clang.
CompilerType GetType(clang::QualType qt)
Creates a CompilerType from the given QualType with the current TypeSystemClang instance as the Compi...
llvm::StringRef getDisplayName() const
Returns the display name of this TypeSystemClang that indicates what purpose it serves in LLDB.
static clang::ASTContext * DeclContextGetTypeSystemClang(const CompilerDeclContext &dc)
static clang::ObjCMethodDecl * DeclContextGetAsObjCMethodDecl(const CompilerDeclContext &dc)
clang::ASTContext & getASTContext()
Returns the clang::ASTContext instance managed by this TypeSystemClang.
static clang::NamespaceDecl * DeclContextGetAsNamespaceDecl(const CompilerDeclContext &dc)
bool GetCompleteDecl(clang::Decl *decl)
static bool DeclsAreEquivalent(clang::Decl *lhs_decl, clang::Decl *rhs_decl)
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.
TaggedASTType< 1 > TypeFromUser
void * opaque_compiler_type_t
@ eLanguageTypeC
Non-standardized C, such as K&R.
static clang::QualType GetQualType(const CompilerType &ct)
static std::string DumpDecl(const clang::Decl *d)
Returns a textual representation of the given Decl's AST.
static bool IsClangType(const CompilerType &ct)
Options used by Module::FindFunctions.
bool include_inlines
Include inlined functions.
bool include_symbols
Include the symbol table.
"lldb/Expression/ClangASTSource.h" Container for all objects relevant to a single name lookup
clang::NamedDecl * AddTypeDecl(const CompilerType &compiler_type)
Create a TypeDecl with the name being searched for and the provided type and register it in the right...
const clang::DeclarationName m_decl_name
The name being looked for.
llvm::SmallVectorImpl< clang::NamedDecl * > & m_decls
The list of declarations already constructed.
const clang::DeclContext * m_decl_context
The DeclContext to put declarations into.
void AddNamedDecl(clang::NamedDecl *decl)
Add a NamedDecl to the list of results.
ClangASTImporter::NamespaceMapSP m_namespace_map
The mapping of all namespaces found for this request back to their modules.