Skip to content

Commit 3c2cdc0

Browse files
authored
Unrolled build for rust-lang#120314
Rollup merge of rust-lang#120314 - mina86:i, r=Mark-Simulacrum core: optimise Debug impl for ascii::Char Rather than writing character at a time, optimise Debug implementation for core::ascii::Char such that it writes the entire representation with a single write_str call. With that, add tests for Display and Debug. Issue: rust-lang#110998
2 parents 730d5d4 + 7d1de7f commit 3c2cdc0

File tree

3 files changed

+42
-19
lines changed

3 files changed

+42
-19
lines changed

library/core/src/ascii/ascii_char.rs

+13-19
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
//! suggestions from rustc if you get anything slightly wrong in here, and overall
44
//! helps with clarity as we're also referring to `char` intentionally in here.
55
6-
use crate::fmt::{self, Write};
6+
use crate::fmt;
77
use crate::mem::transmute;
88

99
/// One of the 128 Unicode characters from U+0000 through U+007F,
@@ -583,9 +583,10 @@ impl fmt::Display for AsciiChar {
583583
#[unstable(feature = "ascii_char", issue = "110998")]
584584
impl fmt::Debug for AsciiChar {
585585
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
586-
#[inline]
587-
fn backslash(a: AsciiChar) -> ([AsciiChar; 4], u8) {
588-
([AsciiChar::ReverseSolidus, a, AsciiChar::Null, AsciiChar::Null], 2)
586+
use AsciiChar::{Apostrophe, Null, ReverseSolidus as Backslash};
587+
588+
fn backslash(a: AsciiChar) -> ([AsciiChar; 6], usize) {
589+
([Apostrophe, Backslash, a, Apostrophe, Null, Null], 4)
589590
}
590591

591592
let (buf, len) = match self {
@@ -595,24 +596,17 @@ impl fmt::Debug for AsciiChar {
595596
AsciiChar::LineFeed => backslash(AsciiChar::SmallN),
596597
AsciiChar::ReverseSolidus => backslash(AsciiChar::ReverseSolidus),
597598
AsciiChar::Apostrophe => backslash(AsciiChar::Apostrophe),
598-
_ => {
599-
let byte = self.to_u8();
600-
if !byte.is_ascii_control() {
601-
([*self, AsciiChar::Null, AsciiChar::Null, AsciiChar::Null], 1)
602-
} else {
603-
const HEX_DIGITS: [AsciiChar; 16] = *b"0123456789abcdef".as_ascii().unwrap();
599+
_ if self.to_u8().is_ascii_control() => {
600+
const HEX_DIGITS: [AsciiChar; 16] = *b"0123456789abcdef".as_ascii().unwrap();
604601

605-
let hi = HEX_DIGITS[usize::from(byte >> 4)];
606-
let lo = HEX_DIGITS[usize::from(byte & 0xf)];
607-
([AsciiChar::ReverseSolidus, AsciiChar::SmallX, hi, lo], 4)
608-
}
602+
let byte = self.to_u8();
603+
let hi = HEX_DIGITS[usize::from(byte >> 4)];
604+
let lo = HEX_DIGITS[usize::from(byte & 0xf)];
605+
([Apostrophe, Backslash, AsciiChar::SmallX, hi, lo, Apostrophe], 6)
609606
}
607+
_ => ([Apostrophe, *self, Apostrophe, Null, Null, Null], 3),
610608
};
611609

612-
f.write_char('\'')?;
613-
for byte in &buf[..len as usize] {
614-
f.write_str(byte.as_str())?;
615-
}
616-
f.write_char('\'')
610+
f.write_str(buf[..len].as_str())
617611
}
618612
}

library/core/tests/ascii_char.rs

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
use core::ascii::Char;
2+
use core::fmt::Write;
3+
4+
/// Tests Display implementation for ascii::Char.
5+
#[test]
6+
fn test_display() {
7+
let want = (0..128u8).map(|b| b as char).collect::<String>();
8+
let mut got = String::with_capacity(128);
9+
for byte in 0..128 {
10+
write!(&mut got, "{}", Char::from_u8(byte).unwrap()).unwrap();
11+
}
12+
assert_eq!(want, got);
13+
}
14+
15+
/// Tests Debug implementation for ascii::Char.
16+
#[test]
17+
fn test_debug_control() {
18+
for byte in 0..128u8 {
19+
let mut want = format!("{:?}", byte as char);
20+
// `char` uses `'\u{#}'` representation where ascii::char uses `'\x##'`.
21+
// Transform former into the latter.
22+
if let Some(rest) = want.strip_prefix("'\\u{") {
23+
want = format!("'\\x{:0>2}'", rest.strip_suffix("}'").unwrap());
24+
}
25+
let chr = core::ascii::Char::from_u8(byte).unwrap();
26+
assert_eq!(want, format!("{chr:?}"), "byte: {byte}");
27+
}
28+
}

library/core/tests/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,7 @@ mod alloc;
122122
mod any;
123123
mod array;
124124
mod ascii;
125+
mod ascii_char;
125126
mod asserting;
126127
mod async_iter;
127128
mod atomic;

0 commit comments

Comments
 (0)