forked from OSchip/llvm-project
ef915d3ef4
This patch fixes a performance bug when constructing or appending to a path from a string or c-string. Previously we called 'push_back' to append every single character. This caused multiple re-allocation and copies when at most one reallocation is necessary. The new behavior is to simply call `string::append` so it can correctly handle reallocation. For large strings this change is a ~4x improvement. This also makes our path faster to construct than libstdc++'s. llvm-svn: 285530 |
||
---|---|---|
.. | ||
CMakeLists.txt | ||
ContainerBenchmarks.hpp | ||
GenerateInput.hpp | ||
algorithms.bench.cpp | ||
filesystem.bench.cpp | ||
unordered_set_operations.bench.cpp | ||
util_smartptr.bench.cpp | ||
vector_operations.bench.cpp |