Skip to content

Commit 26f0bba

Browse files
committed
Auto merge of #124810 - lincot:speed-up-string-push-and-string-insert, r=<try>
speed up `String::push` and `String::insert` Addresses the concerns described in #116235. The performance gain comes mainly from avoiding temporary buffers. Complex pattern matching in `encode_utf8` (introduced in #67569) has been simplified to a comparison and an exhaustive `match` in the `encode_utf8_raw_unchecked` helper function. It takes a slice of `MaybeUninit<u8>` because otherwise we'd have to construct a normal slice to uninitialized data, which is not desirable, I guess. Several functions still have that [unneeded zeroing](https://rust.godbolt.org/z/5oKfMPo7j), but a single instruction is not that important, I guess. `@rustbot` label T-libs C-optimization A-str
2 parents f04bbc6 + 9cf92e5 commit 26f0bba

File tree

5 files changed

+121
-48
lines changed

5 files changed

+121
-48
lines changed

library/alloc/src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@
105105
#![feature(box_uninit_write)]
106106
#![feature(bstr)]
107107
#![feature(bstr_internals)]
108+
#![feature(char_internals)]
108109
#![feature(char_max_len)]
109110
#![feature(clone_to_uninit)]
110111
#![feature(coerce_unsized)]

library/alloc/src/string.rs

+47-18
Original file line numberDiff line numberDiff line change
@@ -1417,11 +1417,14 @@ impl String {
14171417
#[inline]
14181418
#[stable(feature = "rust1", since = "1.0.0")]
14191419
pub fn push(&mut self, ch: char) {
1420-
match ch.len_utf8() {
1421-
1 => self.vec.push(ch as u8),
1422-
_ => {
1423-
self.vec.extend_from_slice(ch.encode_utf8(&mut [0; char::MAX_LEN_UTF8]).as_bytes())
1424-
}
1420+
let len = self.len();
1421+
let ch_len = ch.len_utf8();
1422+
self.reserve(ch_len);
1423+
1424+
// SAFETY: Just reserved capacity for at least the length needed to encode `ch`.
1425+
unsafe {
1426+
core::char::encode_utf8_raw_unchecked(ch as u32, self.vec.as_mut_ptr().add(self.len()));
1427+
self.vec.set_len(len + ch_len);
14251428
}
14261429
}
14271430

@@ -1718,24 +1721,31 @@ impl String {
17181721
#[rustc_confusables("set")]
17191722
pub fn insert(&mut self, idx: usize, ch: char) {
17201723
assert!(self.is_char_boundary(idx));
1721-
let mut bits = [0; char::MAX_LEN_UTF8];
1722-
let bits = ch.encode_utf8(&mut bits).as_bytes();
17231724

1725+
let len = self.len();
1726+
let ch_len = ch.len_utf8();
1727+
self.reserve(ch_len);
1728+
1729+
// SAFETY: Move the bytes starting from `idx` to their new location `ch_len`
1730+
// bytes ahead. This is safe because sufficient capacity was reserved, and `idx`
1731+
// is a char boundary.
17241732
unsafe {
1725-
self.insert_bytes(idx, bits);
1733+
ptr::copy(
1734+
self.vec.as_ptr().add(idx),
1735+
self.vec.as_mut_ptr().add(idx + ch_len),
1736+
len - idx,
1737+
);
17261738
}
1727-
}
17281739

1729-
#[cfg(not(no_global_oom_handling))]
1730-
unsafe fn insert_bytes(&mut self, idx: usize, bytes: &[u8]) {
1731-
let len = self.len();
1732-
let amt = bytes.len();
1733-
self.vec.reserve(amt);
1740+
// SAFETY: Encode the character into the vacated region if `idx != len`,
1741+
// or into the uninitialized spare capacity otherwise.
1742+
unsafe {
1743+
core::char::encode_utf8_raw_unchecked(ch as u32, self.vec.as_mut_ptr().add(idx));
1744+
}
17341745

1746+
// SAFETY: Update the length to include the newly added bytes.
17351747
unsafe {
1736-
ptr::copy(self.vec.as_ptr().add(idx), self.vec.as_mut_ptr().add(idx + amt), len - idx);
1737-
ptr::copy_nonoverlapping(bytes.as_ptr(), self.vec.as_mut_ptr().add(idx), amt);
1738-
self.vec.set_len(len + amt);
1748+
self.vec.set_len(len + ch_len);
17391749
}
17401750
}
17411751

@@ -1765,8 +1775,27 @@ impl String {
17651775
pub fn insert_str(&mut self, idx: usize, string: &str) {
17661776
assert!(self.is_char_boundary(idx));
17671777

1778+
let len = self.len();
1779+
let amt = string.len();
1780+
self.reserve(amt);
1781+
1782+
// SAFETY: Move the bytes starting from `idx` to their new location `amt` bytes
1783+
// ahead. This is safe because sufficient capacity was just reserved, and `idx`
1784+
// is a char boundary.
1785+
unsafe {
1786+
ptr::copy(self.vec.as_ptr().add(idx), self.vec.as_mut_ptr().add(idx + amt), len - idx);
1787+
}
1788+
1789+
// SAFETY: Copy the new string slice into the vacated region if `idx != len`,
1790+
// or into the uninitialized spare capacity otherwise. The borrow checker
1791+
// ensures that the source and destination do not overlap.
1792+
unsafe {
1793+
ptr::copy_nonoverlapping(string.as_ptr(), self.vec.as_mut_ptr().add(idx), amt);
1794+
}
1795+
1796+
// SAFETY: Update the length to include the newly added bytes.
17681797
unsafe {
1769-
self.insert_bytes(idx, string.as_bytes());
1798+
self.vec.set_len(len + amt);
17701799
}
17711800
}
17721801

library/core/src/char/methods.rs

+61-29
Original file line numberDiff line numberDiff line change
@@ -1806,39 +1806,71 @@ const fn len_utf16(code: u32) -> usize {
18061806
#[inline]
18071807
pub const fn encode_utf8_raw(code: u32, dst: &mut [u8]) -> &mut [u8] {
18081808
let len = len_utf8(code);
1809-
match (len, &mut *dst) {
1810-
(1, [a, ..]) => {
1811-
*a = code as u8;
1812-
}
1813-
(2, [a, b, ..]) => {
1814-
*a = (code >> 6 & 0x1F) as u8 | TAG_TWO_B;
1815-
*b = (code & 0x3F) as u8 | TAG_CONT;
1816-
}
1817-
(3, [a, b, c, ..]) => {
1818-
*a = (code >> 12 & 0x0F) as u8 | TAG_THREE_B;
1819-
*b = (code >> 6 & 0x3F) as u8 | TAG_CONT;
1820-
*c = (code & 0x3F) as u8 | TAG_CONT;
1821-
}
1822-
(4, [a, b, c, d, ..]) => {
1823-
*a = (code >> 18 & 0x07) as u8 | TAG_FOUR_B;
1824-
*b = (code >> 12 & 0x3F) as u8 | TAG_CONT;
1825-
*c = (code >> 6 & 0x3F) as u8 | TAG_CONT;
1826-
*d = (code & 0x3F) as u8 | TAG_CONT;
1827-
}
1828-
_ => {
1829-
const_panic!(
1830-
"encode_utf8: buffer does not have enough bytes to encode code point",
1831-
"encode_utf8: need {len} bytes to encode U+{code:04X} but buffer has just {dst_len}",
1832-
code: u32 = code,
1833-
len: usize = len,
1834-
dst_len: usize = dst.len(),
1835-
)
1836-
}
1837-
};
1809+
if dst.len() < len {
1810+
const_panic!(
1811+
"encode_utf8: buffer does not have enough bytes to encode code point",
1812+
"encode_utf8: need {len} bytes to encode U+{code:04X} but buffer has just {dst_len}",
1813+
code: u32 = code,
1814+
len: usize = len,
1815+
dst_len: usize = dst.len(),
1816+
);
1817+
}
1818+
1819+
// SAFETY: `dst` is checked to be at least the length needed to encode the codepoint.
1820+
unsafe { encode_utf8_raw_unchecked(code, dst.as_mut_ptr()) };
1821+
18381822
// SAFETY: `<&mut [u8]>::as_mut_ptr` is guaranteed to return a valid pointer and `len` has been tested to be within bounds.
18391823
unsafe { slice::from_raw_parts_mut(dst.as_mut_ptr(), len) }
18401824
}
18411825

1826+
/// Encodes a raw `u32` value as UTF-8 into the byte buffer pointed to by `dst`.
1827+
///
1828+
/// Unlike `char::encode_utf8`, this method also handles codepoints in the surrogate range.
1829+
/// (Creating a `char` in the surrogate range is UB.)
1830+
/// The result is valid [generalized UTF-8] but not valid UTF-8.
1831+
///
1832+
/// [generalized UTF-8]: https://simonsapin.github.io/wtf-8/#generalized-utf8
1833+
///
1834+
/// # Safety
1835+
///
1836+
/// The behavior is undefined if the buffer pointed to by `dst` is not
1837+
/// large enough to hold the encoded codepoint. A buffer of length four
1838+
/// is large enough to encode any `char`.
1839+
///
1840+
/// For a safe version of this function, see the [`encode_utf8_raw`] function.
1841+
#[unstable(feature = "char_internals", reason = "exposed only for libstd", issue = "none")]
1842+
#[doc(hidden)]
1843+
#[inline]
1844+
pub const unsafe fn encode_utf8_raw_unchecked(code: u32, dst: *mut u8) {
1845+
let len = len_utf8(code);
1846+
// SAFETY: The caller must guarantee that the buffer pointed to by `dst`
1847+
// is at least `len` bytes long.
1848+
unsafe {
1849+
match len {
1850+
1 => {
1851+
*dst = code as u8;
1852+
}
1853+
2 => {
1854+
*dst = (code >> 6 & 0x1F) as u8 | TAG_TWO_B;
1855+
*dst.add(1) = (code & 0x3F) as u8 | TAG_CONT;
1856+
}
1857+
3 => {
1858+
*dst = (code >> 12 & 0x0F) as u8 | TAG_THREE_B;
1859+
*dst.add(1) = (code >> 6 & 0x3F) as u8 | TAG_CONT;
1860+
*dst.add(2) = (code & 0x3F) as u8 | TAG_CONT;
1861+
}
1862+
4 => {
1863+
*dst = (code >> 18 & 0x07) as u8 | TAG_FOUR_B;
1864+
*dst.add(1) = (code >> 12 & 0x3F) as u8 | TAG_CONT;
1865+
*dst.add(2) = (code >> 6 & 0x3F) as u8 | TAG_CONT;
1866+
*dst.add(3) = (code & 0x3F) as u8 | TAG_CONT;
1867+
}
1868+
// SAFETY: `char` always takes between 1 and 4 bytes to encode in UTF-8.
1869+
_ => crate::hint::unreachable_unchecked(),
1870+
}
1871+
}
1872+
}
1873+
18421874
/// Encodes a raw `u32` value as native endian UTF-16 into the provided `u16` buffer,
18431875
/// and then returns the subslice of the buffer that contains the encoded character.
18441876
///

library/core/src/char/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ pub use self::decode::{DecodeUtf16, DecodeUtf16Error};
3838
#[unstable(feature = "char_internals", reason = "exposed only for libstd", issue = "none")]
3939
pub use self::methods::encode_utf16_raw; // perma-unstable
4040
#[unstable(feature = "char_internals", reason = "exposed only for libstd", issue = "none")]
41-
pub use self::methods::encode_utf8_raw; // perma-unstable
41+
pub use self::methods::{encode_utf8_raw, encode_utf8_raw_unchecked}; // perma-unstable
4242

4343
#[rustfmt::skip]
4444
use crate::ascii;

tests/codegen/string-push.rs

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
//! Check that `String::push` is optimized enough not to call `memcpy`.
2+
3+
//@ compile-flags: -O
4+
#![crate_type = "lib"]
5+
6+
// CHECK-LABEL: @string_push_does_not_call_memcpy
7+
#[no_mangle]
8+
pub fn string_push_does_not_call_memcpy(s: &mut String, ch: char) {
9+
// CHECK-NOT: call void @llvm.memcpy
10+
s.push(ch);
11+
}

0 commit comments

Comments
 (0)