Skip to content

Commit 3964bb1

Browse files
authored
Rollup merge of #137155 - thaliaarchi:wtf8-organize, r=ChrisDenton
Organize `OsString`/`OsStr` shims Synchronize the `bytes.rs` and `wtf8.rs` shims for `OsString`/`OsStr` so they're easier to diff between each other. This is mostly ordering items the same between the two. I tried to minimize moves and went for the average locations between the files. With them in the same order, it is clear that `FromInner<_>` is not implemented for `bytes::Buf` and `Clone::clone_from` is not implemented for `wtf8::Buf`, but they are for the other. Fix that. I added #[inline] to all inherent methods of the `OsString`/`OsStr` shims, because it seemed that was already the rough pattern. `bytes.rs` has more inlining than `wtf8.rs`, so I added the corresponding ones to `wtf8.rs`. Then, the common missing ones have no discernible pattern to me. They're not divided by non-allocating/allocating. Perhaps the pattern is that UTF-8 validation isn't inlined? Since these types are merely the inner values in `OsStr`/`OsString`, I put inline on all methods and let those public types dictate inlining. I have not inspected codegen or run benchmarks. Also, touch up some (private) documentation comments. r? ``````@ChrisDenton``````
2 parents c29cc60 + 05e4175 commit 3964bb1

File tree

3 files changed

+154
-109
lines changed

3 files changed

+154
-109
lines changed

library/std/src/sys/os_str/bytes.rs

+50-36
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ use crate::collections::TryReserveError;
88
use crate::fmt::Write;
99
use crate::rc::Rc;
1010
use crate::sync::Arc;
11-
use crate::sys_common::{AsInner, IntoInner};
11+
use crate::sys_common::{AsInner, FromInner, IntoInner};
1212
use crate::{fmt, mem, str};
1313

1414
#[cfg(test)]
@@ -25,6 +25,37 @@ pub struct Slice {
2525
pub inner: [u8],
2626
}
2727

28+
impl IntoInner<Vec<u8>> for Buf {
29+
fn into_inner(self) -> Vec<u8> {
30+
self.inner
31+
}
32+
}
33+
34+
impl FromInner<Vec<u8>> for Buf {
35+
fn from_inner(inner: Vec<u8>) -> Self {
36+
Buf { inner }
37+
}
38+
}
39+
40+
impl AsInner<[u8]> for Buf {
41+
#[inline]
42+
fn as_inner(&self) -> &[u8] {
43+
&self.inner
44+
}
45+
}
46+
47+
impl fmt::Debug for Buf {
48+
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
49+
fmt::Debug::fmt(self.as_slice(), f)
50+
}
51+
}
52+
53+
impl fmt::Display for Buf {
54+
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
55+
fmt::Display::fmt(self.as_slice(), f)
56+
}
57+
}
58+
2859
impl fmt::Debug for Slice {
2960
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
3061
fmt::Debug::fmt(&self.inner.utf8_chunks().debug(), f)
@@ -55,18 +86,6 @@ impl fmt::Display for Slice {
5586
}
5687
}
5788

58-
impl fmt::Debug for Buf {
59-
fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
60-
fmt::Debug::fmt(self.as_slice(), formatter)
61-
}
62-
}
63-
64-
impl fmt::Display for Buf {
65-
fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
66-
fmt::Display::fmt(self.as_slice(), formatter)
67-
}
68-
}
69-
7089
impl Clone for Buf {
7190
#[inline]
7291
fn clone(&self) -> Self {
@@ -79,19 +98,6 @@ impl Clone for Buf {
7998
}
8099
}
81100

82-
impl IntoInner<Vec<u8>> for Buf {
83-
fn into_inner(self) -> Vec<u8> {
84-
self.inner
85-
}
86-
}
87-
88-
impl AsInner<[u8]> for Buf {
89-
#[inline]
90-
fn as_inner(&self) -> &[u8] {
91-
&self.inner
92-
}
93-
}
94-
95101
impl Buf {
96102
#[inline]
97103
pub fn into_encoded_bytes(self) -> Vec<u8> {
@@ -103,6 +109,12 @@ impl Buf {
103109
Self { inner: s }
104110
}
105111

112+
#[inline]
113+
pub fn into_string(self) -> Result<String, Buf> {
114+
String::from_utf8(self.inner).map_err(|p| Buf { inner: p.into_bytes() })
115+
}
116+
117+
#[inline]
106118
pub fn from_string(s: String) -> Buf {
107119
Buf { inner: s.into_bytes() }
108120
}
@@ -122,6 +134,11 @@ impl Buf {
122134
self.inner.capacity()
123135
}
124136

137+
#[inline]
138+
pub fn push_slice(&mut self, s: &Slice) {
139+
self.inner.extend_from_slice(&s.inner)
140+
}
141+
125142
#[inline]
126143
pub fn reserve(&mut self, additional: usize) {
127144
self.inner.reserve(additional)
@@ -157,23 +174,15 @@ impl Buf {
157174
// SAFETY: Slice just wraps [u8],
158175
// and &*self.inner is &[u8], therefore
159176
// transmuting &[u8] to &Slice is safe.
160-
unsafe { mem::transmute(&*self.inner) }
177+
unsafe { mem::transmute(self.inner.as_slice()) }
161178
}
162179

163180
#[inline]
164181
pub fn as_mut_slice(&mut self) -> &mut Slice {
165182
// SAFETY: Slice just wraps [u8],
166183
// and &mut *self.inner is &mut [u8], therefore
167184
// transmuting &mut [u8] to &mut Slice is safe.
168-
unsafe { mem::transmute(&mut *self.inner) }
169-
}
170-
171-
pub fn into_string(self) -> Result<String, Buf> {
172-
String::from_utf8(self.inner).map_err(|p| Buf { inner: p.into_bytes() })
173-
}
174-
175-
pub fn push_slice(&mut self, s: &Slice) {
176-
self.inner.extend_from_slice(&s.inner)
185+
unsafe { mem::transmute(self.inner.as_mut_slice()) }
177186
}
178187

179188
#[inline]
@@ -278,18 +287,22 @@ impl Slice {
278287
unsafe { Slice::from_encoded_bytes_unchecked(s.as_bytes()) }
279288
}
280289

290+
#[inline]
281291
pub fn to_str(&self) -> Result<&str, crate::str::Utf8Error> {
282292
str::from_utf8(&self.inner)
283293
}
284294

295+
#[inline]
285296
pub fn to_string_lossy(&self) -> Cow<'_, str> {
286297
String::from_utf8_lossy(&self.inner)
287298
}
288299

300+
#[inline]
289301
pub fn to_owned(&self) -> Buf {
290302
Buf { inner: self.inner.to_vec() }
291303
}
292304

305+
#[inline]
293306
pub fn clone_into(&self, buf: &mut Buf) {
294307
self.inner.clone_into(&mut buf.inner)
295308
}
@@ -300,6 +313,7 @@ impl Slice {
300313
unsafe { mem::transmute(boxed) }
301314
}
302315

316+
#[inline]
303317
pub fn empty_box() -> Box<Slice> {
304318
let boxed: Box<[u8]> = Default::default();
305319
unsafe { mem::transmute(boxed) }

library/std/src/sys/os_str/wtf8.rs

+69-38
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,16 @@ use crate::sys_common::wtf8::{Wtf8, Wtf8Buf, check_utf8_boundary};
1010
use crate::sys_common::{AsInner, FromInner, IntoInner};
1111
use crate::{fmt, mem};
1212

13-
#[derive(Clone, Hash)]
13+
#[derive(Hash)]
1414
pub struct Buf {
1515
pub inner: Wtf8Buf,
1616
}
1717

18+
#[repr(transparent)]
19+
pub struct Slice {
20+
pub inner: Wtf8,
21+
}
22+
1823
impl IntoInner<Wtf8Buf> for Buf {
1924
fn into_inner(self) -> Wtf8Buf {
2025
self.inner
@@ -35,31 +40,38 @@ impl AsInner<Wtf8> for Buf {
3540
}
3641

3742
impl fmt::Debug for Buf {
38-
fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
39-
fmt::Debug::fmt(self.as_slice(), formatter)
43+
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
44+
fmt::Debug::fmt(self.as_slice(), f)
4045
}
4146
}
4247

4348
impl fmt::Display for Buf {
44-
fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
45-
fmt::Display::fmt(self.as_slice(), formatter)
49+
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
50+
fmt::Display::fmt(self.as_slice(), f)
4651
}
4752
}
4853

49-
#[repr(transparent)]
50-
pub struct Slice {
51-
pub inner: Wtf8,
52-
}
53-
5454
impl fmt::Debug for Slice {
55-
fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
56-
fmt::Debug::fmt(&self.inner, formatter)
55+
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
56+
fmt::Debug::fmt(&self.inner, f)
5757
}
5858
}
5959

6060
impl fmt::Display for Slice {
61-
fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
62-
fmt::Display::fmt(&self.inner, formatter)
61+
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
62+
fmt::Display::fmt(&self.inner, f)
63+
}
64+
}
65+
66+
impl Clone for Buf {
67+
#[inline]
68+
fn clone(&self) -> Self {
69+
Buf { inner: self.inner.clone() }
70+
}
71+
72+
#[inline]
73+
fn clone_from(&mut self, source: &Self) {
74+
self.inner.clone_from(&source.inner)
6375
}
6476
}
6577

@@ -74,62 +86,57 @@ impl Buf {
7486
unsafe { Self { inner: Wtf8Buf::from_bytes_unchecked(s) } }
7587
}
7688

77-
pub fn with_capacity(capacity: usize) -> Buf {
78-
Buf { inner: Wtf8Buf::with_capacity(capacity) }
79-
}
80-
81-
pub fn clear(&mut self) {
82-
self.inner.clear()
83-
}
84-
85-
pub fn capacity(&self) -> usize {
86-
self.inner.capacity()
89+
#[inline]
90+
pub fn into_string(self) -> Result<String, Buf> {
91+
self.inner.into_string().map_err(|buf| Buf { inner: buf })
8792
}
8893

94+
#[inline]
8995
pub fn from_string(s: String) -> Buf {
9096
Buf { inner: Wtf8Buf::from_string(s) }
9197
}
9298

93-
pub fn as_slice(&self) -> &Slice {
94-
// SAFETY: Slice is just a wrapper for Wtf8,
95-
// and self.inner.as_slice() returns &Wtf8.
96-
// Therefore, transmuting &Wtf8 to &Slice is safe.
97-
unsafe { mem::transmute(self.inner.as_slice()) }
99+
#[inline]
100+
pub fn with_capacity(capacity: usize) -> Buf {
101+
Buf { inner: Wtf8Buf::with_capacity(capacity) }
98102
}
99103

100-
pub fn as_mut_slice(&mut self) -> &mut Slice {
101-
// SAFETY: Slice is just a wrapper for Wtf8,
102-
// and self.inner.as_mut_slice() returns &mut Wtf8.
103-
// Therefore, transmuting &mut Wtf8 to &mut Slice is safe.
104-
// Additionally, care should be taken to ensure the slice
105-
// is always valid Wtf8.
106-
unsafe { mem::transmute(self.inner.as_mut_slice()) }
104+
#[inline]
105+
pub fn clear(&mut self) {
106+
self.inner.clear()
107107
}
108108

109-
pub fn into_string(self) -> Result<String, Buf> {
110-
self.inner.into_string().map_err(|buf| Buf { inner: buf })
109+
#[inline]
110+
pub fn capacity(&self) -> usize {
111+
self.inner.capacity()
111112
}
112113

114+
#[inline]
113115
pub fn push_slice(&mut self, s: &Slice) {
114116
self.inner.push_wtf8(&s.inner)
115117
}
116118

119+
#[inline]
117120
pub fn reserve(&mut self, additional: usize) {
118121
self.inner.reserve(additional)
119122
}
120123

124+
#[inline]
121125
pub fn try_reserve(&mut self, additional: usize) -> Result<(), TryReserveError> {
122126
self.inner.try_reserve(additional)
123127
}
124128

129+
#[inline]
125130
pub fn reserve_exact(&mut self, additional: usize) {
126131
self.inner.reserve_exact(additional)
127132
}
128133

134+
#[inline]
129135
pub fn try_reserve_exact(&mut self, additional: usize) -> Result<(), TryReserveError> {
130136
self.inner.try_reserve_exact(additional)
131137
}
132138

139+
#[inline]
133140
pub fn shrink_to_fit(&mut self) {
134141
self.inner.shrink_to_fit()
135142
}
@@ -139,6 +146,24 @@ impl Buf {
139146
self.inner.shrink_to(min_capacity)
140147
}
141148

149+
#[inline]
150+
pub fn as_slice(&self) -> &Slice {
151+
// SAFETY: Slice is just a wrapper for Wtf8,
152+
// and self.inner.as_slice() returns &Wtf8.
153+
// Therefore, transmuting &Wtf8 to &Slice is safe.
154+
unsafe { mem::transmute(self.inner.as_slice()) }
155+
}
156+
157+
#[inline]
158+
pub fn as_mut_slice(&mut self) -> &mut Slice {
159+
// SAFETY: Slice is just a wrapper for Wtf8,
160+
// and self.inner.as_mut_slice() returns &mut Wtf8.
161+
// Therefore, transmuting &mut Wtf8 to &mut Slice is safe.
162+
// Additionally, care should be taken to ensure the slice
163+
// is always valid Wtf8.
164+
unsafe { mem::transmute(self.inner.as_mut_slice()) }
165+
}
166+
142167
#[inline]
143168
pub fn leak<'a>(self) -> &'a mut Slice {
144169
unsafe { mem::transmute(self.inner.leak()) }
@@ -194,6 +219,7 @@ impl Slice {
194219
}
195220

196221
#[track_caller]
222+
#[inline]
197223
pub fn check_public_boundary(&self, index: usize) {
198224
check_utf8_boundary(&self.inner, index);
199225
}
@@ -203,18 +229,22 @@ impl Slice {
203229
unsafe { mem::transmute(Wtf8::from_str(s)) }
204230
}
205231

232+
#[inline]
206233
pub fn to_str(&self) -> Result<&str, crate::str::Utf8Error> {
207234
self.inner.as_str()
208235
}
209236

237+
#[inline]
210238
pub fn to_string_lossy(&self) -> Cow<'_, str> {
211239
self.inner.to_string_lossy()
212240
}
213241

242+
#[inline]
214243
pub fn to_owned(&self) -> Buf {
215244
Buf { inner: self.inner.to_owned() }
216245
}
217246

247+
#[inline]
218248
pub fn clone_into(&self, buf: &mut Buf) {
219249
self.inner.clone_into(&mut buf.inner)
220250
}
@@ -224,6 +254,7 @@ impl Slice {
224254
unsafe { mem::transmute(self.inner.into_box()) }
225255
}
226256

257+
#[inline]
227258
pub fn empty_box() -> Box<Slice> {
228259
unsafe { mem::transmute(Wtf8::empty_box()) }
229260
}

0 commit comments

Comments
 (0)