From e2d47614a81d0805a869e614ffff1512e0136da9 Mon Sep 17 00:00:00 2001 From: Raphael Isemann Date: Mon, 16 Dec 2019 08:16:56 +0100 Subject: [PATCH] [lldb][NFC] Replace ClangASTImporter's use of map/set with SmallPtrSet and DenseMap We have several pointer->pointer mappings in the ClangASTImporter implemented using STL data structures. This moves these variables to the appropriate LLVM data structures that are intended for mapping pointers. --- lldb/include/lldb/Symbol/ClangASTImporter.h | 10 +++++----- lldb/source/Symbol/ClangASTImporter.cpp | 8 +++----- 2 files changed, 8 insertions(+), 10 deletions(-) diff --git a/lldb/include/lldb/Symbol/ClangASTImporter.h b/lldb/include/lldb/Symbol/ClangASTImporter.h index a67b698..098091f 100644 --- a/lldb/include/lldb/Symbol/ClangASTImporter.h +++ b/lldb/include/lldb/Symbol/ClangASTImporter.h @@ -182,7 +182,7 @@ public: clang::Decl *decl; }; - typedef std::map OriginMap; + typedef llvm::DenseMap OriginMap; /// Listener interface used by the ASTImporterDelegate to inform other code /// about decls that have been imported the first time. @@ -262,7 +262,7 @@ public: /// ASTContext. Used by the CxxModuleHandler to mark declarations that /// were created from the 'std' C++ module to prevent that the Importer /// tries to sync them with the broken equivalent in the debug info AST. - std::set m_decls_to_ignore; + llvm::SmallPtrSet m_decls_to_ignore; ClangASTImporter &m_master; clang::ASTContext *m_source_ctx; CxxModuleHandler *m_std_handler = nullptr; @@ -271,8 +271,8 @@ public: }; typedef std::shared_ptr ImporterDelegateSP; - typedef std::map DelegateMap; - typedef std::map + typedef llvm::DenseMap DelegateMap; + typedef llvm::DenseMap NamespaceMetaMap; struct ASTContextMetadata { @@ -289,7 +289,7 @@ public: }; typedef std::shared_ptr ASTContextMetadataSP; - typedef std::map + typedef llvm::DenseMap ContextMetadataMap; ContextMetadataMap m_metadata_map; diff --git a/lldb/source/Symbol/ClangASTImporter.cpp b/lldb/source/Symbol/ClangASTImporter.cpp index 8b1c6c8..80c5c4a 100644 --- a/lldb/source/Symbol/ClangASTImporter.cpp +++ b/lldb/source/Symbol/ClangASTImporter.cpp @@ -121,7 +121,7 @@ private: clang::DeclContext *lexical_decl_context; }; - std::map m_backups; + llvm::DenseMap m_backups; void OverrideOne(clang::Decl *decl) { if (m_backups.find(decl) != m_backups.end()) { @@ -228,10 +228,8 @@ namespace { /// imported while completing the original Decls). class CompleteTagDeclsScope : public ClangASTImporter::NewDeclListener { ClangASTImporter::ImporterDelegateSP m_delegate; - // FIXME: Investigate how many decls we usually have in these sets and - // see if we can use SmallPtrSet instead here. - std::set m_decls_to_complete; - std::set m_decls_already_completed; + llvm::SmallPtrSet m_decls_to_complete; + llvm::SmallPtrSet m_decls_already_completed; clang::ASTContext *m_dst_ctx; clang::ASTContext *m_src_ctx; ClangASTImporter &importer; -- 2.7.4