Skip to content

Commit 2c9a4e3

Browse files
Rollup merge of rust-lang#130611 - bjoernager:const-char-encode-utf8, r=dtolnay
Address diagnostics regression for `const_char_encode_utf8`. Relevant tracking issue: rust-lang#130512 This PR regains full diagnostics for non-const calls to `char::encode_utf8`.
2 parents 25ab8ef + 54e23b5 commit 2c9a4e3

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

core/src/char/methods.rs

+12-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
//! impl char {}
22
33
use super::*;
4+
use crate::intrinsics::const_eval_select;
45
use crate::slice;
56
use crate::str::from_utf8_unchecked_mut;
67
use crate::unicode::printable::is_printable;
@@ -1762,6 +1763,15 @@ const fn len_utf8(code: u32) -> usize {
17621763
#[doc(hidden)]
17631764
#[inline]
17641765
pub const fn encode_utf8_raw(code: u32, dst: &mut [u8]) -> &mut [u8] {
1766+
const fn panic_at_const(_code: u32, _len: usize, _dst_len: usize) {
1767+
// Note that we cannot format in constant expressions.
1768+
panic!("encode_utf8: buffer does not have enough bytes to encode code point");
1769+
}
1770+
fn panic_at_rt(code: u32, len: usize, dst_len: usize) {
1771+
panic!(
1772+
"encode_utf8: need {len} bytes to encode U+{code:04X} but buffer has just {dst_len}",
1773+
);
1774+
}
17651775
let len = len_utf8(code);
17661776
match (len, &mut *dst) {
17671777
(1, [a, ..]) => {
@@ -1782,8 +1792,8 @@ pub const fn encode_utf8_raw(code: u32, dst: &mut [u8]) -> &mut [u8] {
17821792
*c = (code >> 6 & 0x3F) as u8 | TAG_CONT;
17831793
*d = (code & 0x3F) as u8 | TAG_CONT;
17841794
}
1785-
// Note that we cannot format in constant expressions.
1786-
_ => panic!("encode_utf8: buffer does not have enough bytes to encode code point"),
1795+
// FIXME(const-hack): We would prefer to have streamlined panics when formatters become const-friendly.
1796+
_ => const_eval_select((code, len, dst.len()), panic_at_const, panic_at_rt),
17871797
};
17881798
// SAFETY: `<&mut [u8]>::as_mut_ptr` is guaranteed to return a valid pointer and `len` has been tested to be within bounds.
17891799
unsafe { slice::from_raw_parts_mut(dst.as_mut_ptr(), len) }

0 commit comments

Comments
 (0)