diff --git a/lldb/source/Utility/ConstString.cpp b/lldb/source/Utility/ConstString.cpp index 2516ecf6a989..238fd7bdd28d 100644 --- a/lldb/source/Utility/ConstString.cpp +++ b/lldb/source/Utility/ConstString.cpp @@ -31,7 +31,10 @@ using namespace lldb_private; class Pool { public: typedef const char *StringPoolValueType; - typedef llvm::StringMap + // BumpPtrAllocator allocates in 4KiB chunks, any larger C++ project is going + // to have megabytes of symbols, so allocate in larger chunks. + typedef llvm::BumpPtrAllocatorImpl Allocator; + typedef llvm::StringMap StringPool; typedef llvm::StringMapEntry StringPoolEntryType; @@ -152,7 +155,9 @@ protected: struct PoolEntry { mutable llvm::sys::SmartRWMutex m_mutex; - StringPool m_string_map; + // StringMap by default starts with 16 buckets, any larger project is + // going to have many symbols, so start with a larger value. + StringPool m_string_map = StringPool( 65536 ); }; std::array m_string_pools;