Rollup merge of #124307 - reitermarkus:escape-debug-size-hint-inline, r=joboet

Optimize character escaping.

Allow optimization of panicking branch in `EscapeDebug`, see https://github.com/rust-lang/rust/pull/121805.

r? `@joboet`
This commit is contained in:
León Orell Valerian Liehr 2024-05-15 14:21:37 +02:00 committed by GitHub
commit 3873a74f8a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 128 additions and 81 deletions

View File

@ -91,17 +91,21 @@ pub struct EscapeDefault(escape::EscapeIterInner<4>);
/// ``` /// ```
#[stable(feature = "rust1", since = "1.0.0")] #[stable(feature = "rust1", since = "1.0.0")]
pub fn escape_default(c: u8) -> EscapeDefault { pub fn escape_default(c: u8) -> EscapeDefault {
let mut data = [Char::Null; 4]; EscapeDefault::new(c)
let range = escape::escape_ascii_into(&mut data, c);
EscapeDefault(escape::EscapeIterInner::new(data, range))
} }
impl EscapeDefault { impl EscapeDefault {
pub(crate) fn empty() -> Self { #[inline]
let data = [Char::Null; 4]; pub(crate) const fn new(c: u8) -> Self {
EscapeDefault(escape::EscapeIterInner::new(data, 0..0)) Self(escape::EscapeIterInner::ascii(c))
} }
#[inline]
pub(crate) fn empty() -> Self {
Self(escape::EscapeIterInner::empty())
}
#[inline]
pub(crate) fn as_str(&self) -> &str { pub(crate) fn as_str(&self) -> &str {
self.0.as_str() self.0.as_str()
} }

View File

@ -449,10 +449,10 @@ impl char {
'\"' if args.escape_double_quote => EscapeDebug::backslash(ascii::Char::QuotationMark), '\"' if args.escape_double_quote => EscapeDebug::backslash(ascii::Char::QuotationMark),
'\'' if args.escape_single_quote => EscapeDebug::backslash(ascii::Char::Apostrophe), '\'' if args.escape_single_quote => EscapeDebug::backslash(ascii::Char::Apostrophe),
_ if args.escape_grapheme_extended && self.is_grapheme_extended() => { _ if args.escape_grapheme_extended && self.is_grapheme_extended() => {
EscapeDebug::from_unicode(self.escape_unicode()) EscapeDebug::unicode(self)
} }
_ if is_printable(self) => EscapeDebug::printable(self), _ if is_printable(self) => EscapeDebug::printable(self),
_ => EscapeDebug::from_unicode(self.escape_unicode()), _ => EscapeDebug::unicode(self),
} }
} }
@ -555,9 +555,9 @@ impl char {
'\t' => EscapeDefault::backslash(ascii::Char::SmallT), '\t' => EscapeDefault::backslash(ascii::Char::SmallT),
'\r' => EscapeDefault::backslash(ascii::Char::SmallR), '\r' => EscapeDefault::backslash(ascii::Char::SmallR),
'\n' => EscapeDefault::backslash(ascii::Char::SmallN), '\n' => EscapeDefault::backslash(ascii::Char::SmallN),
'\\' | '\'' | '"' => EscapeDefault::backslash(self.as_ascii().unwrap()), '\\' | '\'' | '\"' => EscapeDefault::backslash(self.as_ascii().unwrap()),
'\x20'..='\x7e' => EscapeDefault::printable(self.as_ascii().unwrap()), '\x20'..='\x7e' => EscapeDefault::printable(self.as_ascii().unwrap()),
_ => EscapeDefault::from_unicode(self.escape_unicode()), _ => EscapeDefault::unicode(self),
} }
} }

View File

@ -152,10 +152,9 @@ pub const fn from_digit(num: u32, radix: u32) -> Option<char> {
pub struct EscapeUnicode(escape::EscapeIterInner<10>); pub struct EscapeUnicode(escape::EscapeIterInner<10>);
impl EscapeUnicode { impl EscapeUnicode {
fn new(chr: char) -> Self { #[inline]
let mut data = [ascii::Char::Null; 10]; const fn new(c: char) -> Self {
let range = escape::escape_unicode_into(&mut data, chr); Self(escape::EscapeIterInner::unicode(c))
Self(escape::EscapeIterInner::new(data, range))
} }
} }
@ -219,18 +218,19 @@ impl fmt::Display for EscapeUnicode {
pub struct EscapeDefault(escape::EscapeIterInner<10>); pub struct EscapeDefault(escape::EscapeIterInner<10>);
impl EscapeDefault { impl EscapeDefault {
fn printable(chr: ascii::Char) -> Self { #[inline]
let data = [chr]; const fn printable(c: ascii::Char) -> Self {
Self(escape::EscapeIterInner::from_array(data)) Self(escape::EscapeIterInner::ascii(c.to_u8()))
} }
fn backslash(chr: ascii::Char) -> Self { #[inline]
let data = [ascii::Char::ReverseSolidus, chr]; const fn backslash(c: ascii::Char) -> Self {
Self(escape::EscapeIterInner::from_array(data)) Self(escape::EscapeIterInner::backslash(c))
} }
fn from_unicode(esc: EscapeUnicode) -> Self { #[inline]
Self(esc.0) const fn unicode(c: char) -> Self {
Self(escape::EscapeIterInner::unicode(c))
} }
} }
@ -304,23 +304,24 @@ enum EscapeDebugInner {
} }
impl EscapeDebug { impl EscapeDebug {
fn printable(chr: char) -> Self { #[inline]
const fn printable(chr: char) -> Self {
Self(EscapeDebugInner::Char(chr)) Self(EscapeDebugInner::Char(chr))
} }
fn backslash(chr: ascii::Char) -> Self { #[inline]
let data = [ascii::Char::ReverseSolidus, chr]; const fn backslash(c: ascii::Char) -> Self {
let iter = escape::EscapeIterInner::from_array(data); Self(EscapeDebugInner::Bytes(escape::EscapeIterInner::backslash(c)))
Self(EscapeDebugInner::Bytes(iter))
} }
fn from_unicode(esc: EscapeUnicode) -> Self { #[inline]
Self(EscapeDebugInner::Bytes(esc.0)) const fn unicode(c: char) -> Self {
Self(EscapeDebugInner::Bytes(escape::EscapeIterInner::unicode(c)))
} }
#[inline]
fn clear(&mut self) { fn clear(&mut self) {
let bytes = escape::EscapeIterInner::from_array([]); self.0 = EscapeDebugInner::Bytes(escape::EscapeIterInner::empty());
self.0 = EscapeDebugInner::Bytes(bytes);
} }
} }
@ -339,6 +340,7 @@ impl Iterator for EscapeDebug {
} }
} }
#[inline]
fn size_hint(&self) -> (usize, Option<usize>) { fn size_hint(&self) -> (usize, Option<usize>) {
let n = self.len(); let n = self.len();
(n, Some(n)) (n, Some(n))

View File

@ -6,56 +6,79 @@ use crate::ops::Range;
const HEX_DIGITS: [ascii::Char; 16] = *b"0123456789abcdef".as_ascii().unwrap(); const HEX_DIGITS: [ascii::Char; 16] = *b"0123456789abcdef".as_ascii().unwrap();
/// Escapes a byte into provided buffer; returns length of escaped #[inline]
/// representation. const fn backslash<const N: usize>(a: ascii::Char) -> ([ascii::Char; N], Range<u8>) {
pub(crate) fn escape_ascii_into(output: &mut [ascii::Char; 4], byte: u8) -> Range<u8> { const { assert!(N >= 2) };
#[inline]
fn backslash(a: ascii::Char) -> ([ascii::Char; 4], u8) {
([ascii::Char::ReverseSolidus, a, ascii::Char::Null, ascii::Char::Null], 2)
}
let (data, len) = match byte { let mut output = [ascii::Char::Null; N];
output[0] = ascii::Char::ReverseSolidus;
output[1] = a;
(output, 0..2)
}
/// Escapes an ASCII character.
///
/// Returns a buffer and the length of the escaped representation.
const fn escape_ascii<const N: usize>(byte: u8) -> ([ascii::Char; N], Range<u8>) {
const { assert!(N >= 4) };
match byte {
b'\t' => backslash(ascii::Char::SmallT), b'\t' => backslash(ascii::Char::SmallT),
b'\r' => backslash(ascii::Char::SmallR), b'\r' => backslash(ascii::Char::SmallR),
b'\n' => backslash(ascii::Char::SmallN), b'\n' => backslash(ascii::Char::SmallN),
b'\\' => backslash(ascii::Char::ReverseSolidus), b'\\' => backslash(ascii::Char::ReverseSolidus),
b'\'' => backslash(ascii::Char::Apostrophe), b'\'' => backslash(ascii::Char::Apostrophe),
b'\"' => backslash(ascii::Char::QuotationMark), b'\"' => backslash(ascii::Char::QuotationMark),
_ => { byte => {
if let Some(a) = byte.as_ascii() let mut output = [ascii::Char::Null; N];
if let Some(c) = byte.as_ascii()
&& !byte.is_ascii_control() && !byte.is_ascii_control()
{ {
([a, ascii::Char::Null, ascii::Char::Null, ascii::Char::Null], 1) output[0] = c;
(output, 0..1)
} else { } else {
let hi = HEX_DIGITS[usize::from(byte >> 4)]; let hi = HEX_DIGITS[(byte >> 4) as usize];
let lo = HEX_DIGITS[usize::from(byte & 0xf)]; let lo = HEX_DIGITS[(byte & 0xf) as usize];
([ascii::Char::ReverseSolidus, ascii::Char::SmallX, hi, lo], 4)
output[0] = ascii::Char::ReverseSolidus;
output[1] = ascii::Char::SmallX;
output[2] = hi;
output[3] = lo;
(output, 0..4)
} }
} }
}; }
*output = data;
0..len
} }
/// Escapes a character into provided buffer using `\u{NNNN}` representation. /// Escapes a character `\u{NNNN}` representation.
pub(crate) fn escape_unicode_into(output: &mut [ascii::Char; 10], ch: char) -> Range<u8> { ///
/// Returns a buffer and the length of the escaped representation.
const fn escape_unicode<const N: usize>(c: char) -> ([ascii::Char; N], Range<u8>) {
const { assert!(N >= 10 && N < u8::MAX as usize) };
let c = u32::from(c);
// OR-ing `1` ensures that for `c == 0` the code computes that
// one digit should be printed.
let start = (c | 1).leading_zeros() as usize / 4 - 2;
let mut output = [ascii::Char::Null; N];
output[3] = HEX_DIGITS[((c >> 20) & 15) as usize];
output[4] = HEX_DIGITS[((c >> 16) & 15) as usize];
output[5] = HEX_DIGITS[((c >> 12) & 15) as usize];
output[6] = HEX_DIGITS[((c >> 8) & 15) as usize];
output[7] = HEX_DIGITS[((c >> 4) & 15) as usize];
output[8] = HEX_DIGITS[((c >> 0) & 15) as usize];
output[9] = ascii::Char::RightCurlyBracket; output[9] = ascii::Char::RightCurlyBracket;
output[start + 0] = ascii::Char::ReverseSolidus;
output[start + 1] = ascii::Char::SmallU;
output[start + 2] = ascii::Char::LeftCurlyBracket;
let ch = ch as u32; (output, (start as u8)..(N as u8))
output[3] = HEX_DIGITS[((ch >> 20) & 15) as usize];
output[4] = HEX_DIGITS[((ch >> 16) & 15) as usize];
output[5] = HEX_DIGITS[((ch >> 12) & 15) as usize];
output[6] = HEX_DIGITS[((ch >> 8) & 15) as usize];
output[7] = HEX_DIGITS[((ch >> 4) & 15) as usize];
output[8] = HEX_DIGITS[((ch >> 0) & 15) as usize];
// or-ing 1 ensures that for ch==0 the code computes that one digit should
// be printed.
let start = (ch | 1).leading_zeros() as usize / 4 - 2;
const UNICODE_ESCAPE_PREFIX: &[ascii::Char; 3] = b"\\u{".as_ascii().unwrap();
output[start..][..3].copy_from_slice(UNICODE_ESCAPE_PREFIX);
(start as u8)..10
} }
/// An iterator over an fixed-size array. /// An iterator over an fixed-size array.
@ -65,45 +88,63 @@ pub(crate) fn escape_unicode_into(output: &mut [ascii::Char; 10], ch: char) -> R
#[derive(Clone, Debug)] #[derive(Clone, Debug)]
pub(crate) struct EscapeIterInner<const N: usize> { pub(crate) struct EscapeIterInner<const N: usize> {
// The element type ensures this is always ASCII, and thus also valid UTF-8. // The element type ensures this is always ASCII, and thus also valid UTF-8.
pub(crate) data: [ascii::Char; N], data: [ascii::Char; N],
// Invariant: alive.start <= alive.end <= N. // Invariant: `alive.start <= alive.end <= N`
pub(crate) alive: Range<u8>, alive: Range<u8>,
} }
impl<const N: usize> EscapeIterInner<N> { impl<const N: usize> EscapeIterInner<N> {
pub fn new(data: [ascii::Char; N], alive: Range<u8>) -> Self { pub const fn backslash(c: ascii::Char) -> Self {
const { assert!(N < 256) }; let (data, range) = backslash(c);
debug_assert!(alive.start <= alive.end && usize::from(alive.end) <= N, "{alive:?}"); Self { data, alive: range }
Self { data, alive }
} }
pub fn from_array<const M: usize>(array: [ascii::Char; M]) -> Self { pub const fn ascii(c: u8) -> Self {
const { assert!(M <= N) }; let (data, range) = escape_ascii(c);
Self { data, alive: range }
let mut data = [ascii::Char::Null; N];
data[..M].copy_from_slice(&array);
Self::new(data, 0..M as u8)
} }
pub const fn unicode(c: char) -> Self {
let (data, range) = escape_unicode(c);
Self { data, alive: range }
}
#[inline]
pub const fn empty() -> Self {
Self { data: [ascii::Char::Null; N], alive: 0..0 }
}
#[inline]
pub fn as_ascii(&self) -> &[ascii::Char] { pub fn as_ascii(&self) -> &[ascii::Char] {
&self.data[usize::from(self.alive.start)..usize::from(self.alive.end)] // SAFETY: `self.alive` is guaranteed to be a valid range for indexing `self.data`.
unsafe {
self.data.get_unchecked(usize::from(self.alive.start)..usize::from(self.alive.end))
}
} }
#[inline]
pub fn as_str(&self) -> &str { pub fn as_str(&self) -> &str {
self.as_ascii().as_str() self.as_ascii().as_str()
} }
#[inline]
pub fn len(&self) -> usize { pub fn len(&self) -> usize {
usize::from(self.alive.end - self.alive.start) usize::from(self.alive.end - self.alive.start)
} }
pub fn next(&mut self) -> Option<u8> { pub fn next(&mut self) -> Option<u8> {
self.alive.next().map(|i| self.data[usize::from(i)].to_u8()) let i = self.alive.next()?;
// SAFETY: `i` is guaranteed to be a valid index for `self.data`.
unsafe { Some(self.data.get_unchecked(usize::from(i)).to_u8()) }
} }
pub fn next_back(&mut self) -> Option<u8> { pub fn next_back(&mut self) -> Option<u8> {
self.alive.next_back().map(|i| self.data[usize::from(i)].to_u8()) let i = self.alive.next_back()?;
// SAFETY: `i` is guaranteed to be a valid index for `self.data`.
unsafe { Some(self.data.get_unchecked(usize::from(i)).to_u8()) }
} }
pub fn advance_by(&mut self, n: usize) -> Result<(), NonZero<usize>> { pub fn advance_by(&mut self, n: usize) -> Result<(), NonZero<usize>> {