Index: lldb/source/Utility/ConstString.cpp =================================================================== --- lldb/source/Utility/ConstString.cpp +++ lldb/source/Utility/ConstString.cpp @@ -31,7 +31,10 @@ 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 @@ 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;