-
Notifications
You must be signed in to change notification settings - Fork 12.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Lower std::string's alignment requirement from 16 to 8
This allows smaller allocations to occur, closer to the actual std::string's required size. This is particularly effective in decreasing the allocation size upon initial construction (where __recommend is called to determine the size). Although the memory savings per-string are never more than 8 bytes per string initially, this quickly adds up. And has lead to not insigficant memory savings at Google. Unfortunately, this change is ABI breaking because it changes the value returned by max_size. So it has to be guarded.
- Loading branch information
Showing
5 changed files
with
72 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
45 changes: 45 additions & 0 deletions
45
libcxx/test/libcxx/strings/basic.string/string.capacity/allocation_size.pass.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
//===----------------------------------------------------------------------===// | ||
// | ||
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. | ||
// See https://llvm.org/LICENSE.txt for license information. | ||
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | ||
// | ||
//===----------------------------------------------------------------------===// | ||
|
||
// <string> | ||
|
||
// This test demonstrates the smaller allocation sizes when the alignment | ||
// requirements of std::string are dropped from 16 to 8. | ||
#include <algorithm> | ||
#include <cassert> | ||
#include <cstddef> | ||
#include <string> | ||
|
||
#include "test_macros.h" | ||
|
||
// alignment of the string heap buffer is hardcoded to either 16 or 8 | ||
|
||
const std::size_t alignment = | ||
#ifdef _LIBCPP_ABI_STRING_8_BYTE_ALIGNMENT | ||
8; | ||
#else | ||
16; | ||
#endif | ||
|
||
int main(int, char**) { | ||
std::string input_string; | ||
input_string.resize(64, 'a'); | ||
|
||
// Call a constructor which selects its size using __recommend. | ||
std::string test_string(input_string.data()); | ||
const std::size_t expected_align8_size = 71; | ||
|
||
// Demonstrate the lesser capacity/allocation size when the alignment requirement is 8. | ||
if (alignment == 8) { | ||
assert(test_string.capacity() == expected_align8_size); | ||
} else { | ||
assert(test_string.capacity() == expected_align8_size + 8); | ||
} | ||
|
||
return 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters