Skip to content

Commit db47071

Browse files
jonathanCoganm-ou-se
authored andcommitted
Replace libstd, libcore, liballoc in line comments.
1 parent 72067c7 commit db47071

File tree

27 files changed

+48
-48
lines changed

27 files changed

+48
-48
lines changed

library/alloc/src/alloc.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ extern "Rust" {
2323
// These are the magic symbols to call the global allocator. rustc generates
2424
// them to call `__rg_alloc` etc. if there is a `#[global_allocator]` attribute
2525
// (the code expanding that attribute macro generates those functions), or to call
26-
// the default implementations in libstd (`__rdl_alloc` etc. in `library/std/src/alloc.rs`)
26+
// the default implementations in std (`__rdl_alloc` etc. in `library/std/src/alloc.rs`)
2727
// otherwise.
2828
// The rustc fork of LLVM 14 and earlier also special-cases these function names to be able to optimize them
2929
// like `malloc`, `realloc`, and `free`, respectively.

library/alloc/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
))]
7676
#![no_std]
7777
#![needs_allocator]
78-
// To run liballoc tests without x.py without ending up with two copies of liballoc, Miri needs to be
78+
// To run alloc tests without x.py without ending up with two copies of alloc, Miri needs to be
7979
// able to "empty" this crate. See <https://github.com/rust-lang/miri-test-libstd/issues/4>.
8080
// rustc itself never sets the feature, so this line has no affect there.
8181
#![cfg(any(not(feature = "miri-test-libstd"), test, doctest))]

library/alloc/src/string.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2678,7 +2678,7 @@ impl From<&String> for String {
26782678
}
26792679
}
26802680

2681-
// note: test pulls in libstd, which causes errors here
2681+
// note: test pulls in std, which causes errors here
26822682
#[cfg(not(test))]
26832683
#[stable(feature = "string_from_box", since = "1.18.0")]
26842684
impl From<Box<str>> for String {

library/alloc/src/vec/mod.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -3191,7 +3191,7 @@ where
31913191
}
31923192
}
31933193

3194-
// note: test pulls in libstd, which causes errors here
3194+
// note: test pulls in std, which causes errors here
31953195
#[cfg(not(test))]
31963196
#[stable(feature = "vec_from_box", since = "1.18.0")]
31973197
impl<T, A: Allocator> From<Box<[T], A>> for Vec<T, A> {
@@ -3209,7 +3209,7 @@ impl<T, A: Allocator> From<Box<[T], A>> for Vec<T, A> {
32093209
}
32103210
}
32113211

3212-
// note: test pulls in libstd, which causes errors here
3212+
// note: test pulls in std, which causes errors here
32133213
#[cfg(not(no_global_oom_handling))]
32143214
#[cfg(not(test))]
32153215
#[stable(feature = "box_from_vec", since = "1.20.0")]

library/alloc/tests/autotraits.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ fn test_btree_map() {
3232
// spawn(f());
3333
// }
3434
//
35-
// where with some unintentionally overconstrained Send impls in liballoc's
35+
// where with some unintentionally overconstrained Send impls in alloc's
3636
// internals, the future might incorrectly not be Send even though every
3737
// single type involved in the program is Send and Sync.
3838
require_send_sync(async {

library/core/src/cell.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1994,7 +1994,7 @@ impl<T: ?Sized> UnsafeCell<T> {
19941994
#[rustc_const_stable(feature = "const_unsafecell_get", since = "1.32.0")]
19951995
pub const fn get(&self) -> *mut T {
19961996
// We can just cast the pointer from `UnsafeCell<T>` to `T` because of
1997-
// #[repr(transparent)]. This exploits libstd's special status, there is
1997+
// #[repr(transparent)]. This exploits std's special status, there is
19981998
// no guarantee for user code that this will work in future versions of the compiler!
19991999
self as *const UnsafeCell<T> as *const T as *mut T
20002000
}
@@ -2052,7 +2052,7 @@ impl<T: ?Sized> UnsafeCell<T> {
20522052
#[rustc_const_stable(feature = "unsafe_cell_raw_get", since = "1.56.0")]
20532053
pub const fn raw_get(this: *const Self) -> *mut T {
20542054
// We can just cast the pointer from `UnsafeCell<T>` to `T` because of
2055-
// #[repr(transparent)]. This exploits libstd's special status, there is
2055+
// #[repr(transparent)]. This exploits std's special status, there is
20562056
// no guarantee for user code that this will work in future versions of the compiler!
20572057
this as *const T as *mut T
20582058
}

library/core/src/lib.rs

+10-10
Original file line numberDiff line numberDiff line change
@@ -38,18 +38,18 @@
3838
//! which do not trigger a panic can be assured that this function is never
3939
//! called. The `lang` attribute is called `eh_personality`.
4040
41-
// Since libcore defines many fundamental lang items, all tests live in a
41+
// Since core defines many fundamental lang items, all tests live in a
4242
// separate crate, libcoretest, to avoid bizarre issues.
4343
//
4444
// Here we explicitly #[cfg]-out this whole crate when testing. If we don't do
4545
// this, both the generated test artifact and the linked libtest (which
46-
// transitively includes libcore) will both define the same set of lang items,
46+
// transitively includes core) will both define the same set of lang items,
4747
// and this will cause the E0152 "found duplicate lang item" error. See
4848
// discussion in #50466 for details.
4949
//
5050
// This cfg won't affect doc tests.
5151
#![cfg(not(test))]
52-
// To run libcore tests without x.py without ending up with two copies of libcore, Miri needs to be
52+
// To run core tests without x.py without ending up with two copies of core, Miri needs to be
5353
// able to "empty" this crate. See <https://github.com/rust-lang/miri-test-libstd/issues/4>.
5454
// rustc itself never sets the feature, so this line has no affect there.
5555
#![cfg(any(not(feature = "miri-test-libstd"), test, doctest))]
@@ -311,7 +311,7 @@ pub mod f64;
311311
#[macro_use]
312312
pub mod num;
313313

314-
/* The libcore prelude, not as all-encompassing as the libstd prelude */
314+
/* The core prelude, not as all-encompassing as the std prelude */
315315

316316
pub mod prelude;
317317

@@ -378,12 +378,12 @@ mod const_closure;
378378
#[stable(feature = "core_primitive", since = "1.43.0")]
379379
pub mod primitive;
380380

381-
// Pull in the `core_arch` crate directly into libcore. The contents of
381+
// Pull in the `core_arch` crate directly into core. The contents of
382382
// `core_arch` are in a different repository: rust-lang/stdarch.
383383
//
384-
// `core_arch` depends on libcore, but the contents of this module are
384+
// `core_arch` depends on core, but the contents of this module are
385385
// set up in such a way that directly pulling it here works such that the
386-
// crate uses the this crate as its libcore.
386+
// crate uses the this crate as its core.
387387
#[path = "../../stdarch/crates/core_arch/src/mod.rs"]
388388
#[allow(
389389
missing_docs,
@@ -402,12 +402,12 @@ mod core_arch;
402402
#[stable(feature = "simd_arch", since = "1.27.0")]
403403
pub mod arch;
404404

405-
// Pull in the `core_simd` crate directly into libcore. The contents of
405+
// Pull in the `core_simd` crate directly into core. The contents of
406406
// `core_simd` are in a different repository: rust-lang/portable-simd.
407407
//
408-
// `core_simd` depends on libcore, but the contents of this module are
408+
// `core_simd` depends on core, but the contents of this module are
409409
// set up in such a way that directly pulling it here works such that the
410-
// crate uses this crate as its libcore.
410+
// crate uses this crate as its core.
411411
#[path = "../../portable-simd/crates/core_simd/src/mod.rs"]
412412
#[allow(missing_debug_implementations, dead_code, unsafe_op_in_unsafe_fn, unused_unsafe)]
413413
#[allow(rustdoc::bare_urls)]

library/core/src/num/f32.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,7 @@ impl f32 {
428428
self != self
429429
}
430430

431-
// FIXME(#50145): `abs` is publicly unavailable in libcore due to
431+
// FIXME(#50145): `abs` is publicly unavailable in core due to
432432
// concerns about portability, so this implementation is for
433433
// private use internally.
434434
#[inline]

library/core/src/num/f64.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,7 @@ impl f64 {
427427
self != self
428428
}
429429

430-
// FIXME(#50145): `abs` is publicly unavailable in libcore due to
430+
// FIXME(#50145): `abs` is publicly unavailable in core due to
431431
// concerns about portability, so this implementation is for
432432
// private use internally.
433433
#[inline]

library/core/src/panic/panic_info.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ impl fmt::Display for PanicInfo<'_> {
157157
write!(formatter, "'{}', ", payload)?
158158
}
159159
// NOTE: we cannot use downcast_ref::<String>() here
160-
// since String is not available in libcore!
160+
// since String is not available in core!
161161
// The payload is a String when `std::panic!` is called with multiple arguments,
162162
// but in that case the message is also available.
163163

library/core/src/str/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ impl str {
368368
#[inline(always)]
369369
pub unsafe fn as_bytes_mut(&mut self) -> &mut [u8] {
370370
// SAFETY: the cast from `&str` to `&[u8]` is safe since `str`
371-
// has the same layout as `&[u8]` (only libstd can make this guarantee).
371+
// has the same layout as `&[u8]` (only std can make this guarantee).
372372
// The pointer dereference is safe since it comes from a mutable reference which
373373
// is guaranteed to be valid for writes.
374374
unsafe { &mut *(self as *mut str as *mut [u8]) }

library/core/src/unicode/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ mod unicode_data;
1717
#[stable(feature = "unicode_version", since = "1.45.0")]
1818
pub const UNICODE_VERSION: (u8, u8, u8) = unicode_data::UNICODE_VERSION;
1919

20-
// For use in liballoc, not re-exported in libstd.
20+
// For use in alloc, not re-exported in std.
2121
pub use unicode_data::{
2222
case_ignorable::lookup as Case_Ignorable, cased::lookup as Cased, conversions,
2323
};

library/core/tests/ptr.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -807,7 +807,7 @@ fn ptr_metadata_bounds() {
807807
}
808808
// "Synthetic" trait impls generated by the compiler like those of `Pointee`
809809
// are not checked for bounds of associated type.
810-
// So with a buggy libcore we could have both:
810+
// So with a buggy core we could have both:
811811
// * `<dyn Display as Pointee>::Metadata == DynMetadata`
812812
// * `DynMetadata: !PartialEq`
813813
// … and cause an ICE here:

library/core/tests/str.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
// All `str` tests live in liballoc/tests
1+
// All `str` tests live in alloc/tests

library/panic_abort/src/lib.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ pub unsafe fn __rust_start_panic(_payload: *mut &mut dyn BoxMeUp) -> u32 {
6161
//
6262
// https://docs.microsoft.com/en-us/cpp/intrinsics/fastfail
6363
//
64-
// Note: this is the same implementation as in libstd's `abort_internal`
64+
// Note: this is the same implementation as in std's `abort_internal`
6565
unsafe fn abort() -> ! {
6666
#[allow(unused)]
6767
const FAST_FAIL_FATAL_APP_EXIT: usize = 7;
@@ -89,7 +89,7 @@ pub unsafe fn __rust_start_panic(_payload: *mut &mut dyn BoxMeUp) -> u32 {
8989
// This... is a bit of an oddity. The tl;dr; is that this is required to link
9090
// correctly, the longer explanation is below.
9191
//
92-
// Right now the binaries of libcore/libstd that we ship are all compiled with
92+
// Right now the binaries of core/std that we ship are all compiled with
9393
// `-C panic=unwind`. This is done to ensure that the binaries are maximally
9494
// compatible with as many situations as possible. The compiler, however,
9595
// requires a "personality function" for all functions compiled with `-C
@@ -109,7 +109,7 @@ pub unsafe fn __rust_start_panic(_payload: *mut &mut dyn BoxMeUp) -> u32 {
109109
// library just defines this symbol so there's at least some personality
110110
// somewhere.
111111
//
112-
// Essentially this symbol is just defined to get wired up to libcore/libstd
112+
// Essentially this symbol is just defined to get wired up to core/std
113113
// binaries, but it should never be called as we don't link in an unwinding
114114
// runtime at all.
115115
pub mod personalities {

library/proc_macro/src/bridge/client.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ impl<I, O> Clone for Client<I, O> {
356356

357357
fn maybe_install_panic_hook(force_show_panics: bool) {
358358
// Hide the default panic output within `proc_macro` expansions.
359-
// NB. the server can't do this because it may use a different libstd.
359+
// NB. the server can't do this because it may use a different std.
360360
static HIDE_PANICS_DURING_EXPANSION: Once = Once::new();
361361
HIDE_PANICS_DURING_EXPANSION.call_once(|| {
362362
let prev = panic::take_hook();

library/proc_macro/src/bridge/server.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ macro_rules! define_dispatcher_impl {
112112
$name::$method(server, $($arg),*)
113113
};
114114
// HACK(eddyb) don't use `panic::catch_unwind` in a panic.
115-
// If client and server happen to use the same `libstd`,
115+
// If client and server happen to use the same `std`,
116116
// `catch_unwind` asserts that the panic counter was 0,
117117
// even when the closure passed to it didn't panic.
118118
let r = if thread::panicking() {

library/rustc-std-workspace-alloc/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
// See rustc-std-workspace-core for why this crate is needed.
55

6-
// Rename the crate to avoid conflicting with the alloc module in liballoc.
6+
// Rename the crate to avoid conflicting with the alloc module in alloc.
77
extern crate alloc as foo;
88

99
pub use foo::*;

library/std/src/io/error/repr_bitpacked.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ impl Repr {
166166
// `new_unchecked` is safe.
167167
let res = Self(unsafe { NonNull::new_unchecked(tagged) }, PhantomData);
168168
// quickly smoke-check we encoded the right thing (This generally will
169-
// only run in libstd's tests, unless the user uses -Zbuild-std)
169+
// only run in std's tests, unless the user uses -Zbuild-std)
170170
debug_assert!(matches!(res.data(), ErrorData::Custom(_)), "repr(custom) encoding failed");
171171
res
172172
}
@@ -177,7 +177,7 @@ impl Repr {
177177
// Safety: `TAG_OS` is not zero, so the result of the `|` is not 0.
178178
let res = Self(unsafe { NonNull::new_unchecked(ptr::invalid_mut(utagged)) }, PhantomData);
179179
// quickly smoke-check we encoded the right thing (This generally will
180-
// only run in libstd's tests, unless the user uses -Zbuild-std)
180+
// only run in std's tests, unless the user uses -Zbuild-std)
181181
debug_assert!(
182182
matches!(res.data(), ErrorData::Os(c) if c == code),
183183
"repr(os) encoding failed for {code}"
@@ -191,7 +191,7 @@ impl Repr {
191191
// Safety: `TAG_SIMPLE` is not zero, so the result of the `|` is not 0.
192192
let res = Self(unsafe { NonNull::new_unchecked(ptr::invalid_mut(utagged)) }, PhantomData);
193193
// quickly smoke-check we encoded the right thing (This generally will
194-
// only run in libstd's tests, unless the user uses -Zbuild-std)
194+
// only run in std's tests, unless the user uses -Zbuild-std)
195195
debug_assert!(
196196
matches!(res.data(), ErrorData::Simple(k) if k == kind),
197197
"repr(simple) encoding failed {:?}",
@@ -348,7 +348,7 @@ fn kind_from_prim(ek: u32) -> Option<ErrorKind> {
348348
// that our encoding relies on for correctness and soundness. (Some of these are
349349
// a bit overly thorough/cautious, admittedly)
350350
//
351-
// If any of these are hit on a platform that libstd supports, we should likely
351+
// If any of these are hit on a platform that std supports, we should likely
352352
// just use `repr_unpacked.rs` there instead (unless the fix is easy).
353353
macro_rules! static_assert {
354354
($condition:expr) => {

library/std/src/lib.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@
202202
no_global_oom_handling,
203203
not(no_global_oom_handling)
204204
))]
205-
// To run libstd tests without x.py without ending up with two copies of libstd, Miri needs to be
205+
// To run std tests without x.py without ending up with two copies of std, Miri needs to be
206206
// able to "empty" this crate. See <https://github.com/rust-lang/miri-test-libstd/issues/4>.
207207
// rustc itself never sets the feature, so this line has no affect there.
208208
#![cfg(any(not(feature = "miri-test-libstd"), test, doctest))]
@@ -532,7 +532,7 @@ pub mod process;
532532
pub mod sync;
533533
pub mod time;
534534

535-
// Pull in `std_float` crate into libstd. The contents of
535+
// Pull in `std_float` crate into std. The contents of
536536
// `std_float` are in a different repository: rust-lang/portable-simd.
537537
#[path = "../../portable-simd/crates/std_float/src/lib.rs"]
538538
#[allow(missing_debug_implementations, dead_code, unsafe_op_in_unsafe_fn, unused_unsafe)]
@@ -602,15 +602,15 @@ mod personality;
602602
#[allow(dead_code, unused_attributes, fuzzy_provenance_casts)]
603603
mod backtrace_rs;
604604

605-
// Re-export macros defined in libcore.
605+
// Re-export macros defined in core.
606606
#[stable(feature = "rust1", since = "1.0.0")]
607607
#[allow(deprecated, deprecated_in_future)]
608608
pub use core::{
609609
assert_eq, assert_ne, debug_assert, debug_assert_eq, debug_assert_ne, matches, todo, r#try,
610610
unimplemented, unreachable, write, writeln,
611611
};
612612

613-
// Re-export built-in macros defined through libcore.
613+
// Re-export built-in macros defined through core.
614614
#[stable(feature = "builtin_macro_prelude", since = "1.38.0")]
615615
#[allow(deprecated)]
616616
pub use core::{

library/std/src/path.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ unsafe fn u8_slice_as_os_str(s: &[u8]) -> &OsStr {
306306
// This casts are safe as OsStr is internally a wrapper around [u8] on all
307307
// platforms.
308308
//
309-
// Note that currently this relies on the special knowledge that libstd has;
309+
// Note that currently this relies on the special knowledge that std has;
310310
// these types are single-element structs but are not marked
311311
// repr(transparent) or repr(C) which would make these casts not allowable
312312
// outside std.

library/std/src/rt.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -139,9 +139,9 @@ fn lang_start_internal(
139139
// mechanism itself.
140140
//
141141
// There are a couple of instances where unwinding can begin. First is inside of the
142-
// `rt::init`, `rt::cleanup` and similar functions controlled by libstd. In those instances a
143-
// panic is a libstd implementation bug. A quite likely one too, as there isn't any way to
144-
// prevent libstd from accidentally introducing a panic to these functions. Another is from
142+
// `rt::init`, `rt::cleanup` and similar functions controlled by bstd. In those instances a
143+
// panic is a std implementation bug. A quite likely one too, as there isn't any way to
144+
// prevent std from accidentally introducing a panic to these functions. Another is from
145145
// user code from `main` or, more nefariously, as described in e.g. issue #86030.
146146
// SAFETY: Only called once during runtime initialization.
147147
panic::catch_unwind(move || unsafe { init(argc, argv, sigpipe) }).map_err(rt_abort)?;

library/std/src/sys/unix/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ pub unsafe fn init(argc: isize, argv: *const *const u8, sigpipe: u8) {
164164
unsafe fn reset_sigpipe(#[allow(unused_variables)] sigpipe: u8) {
165165
#[cfg(not(any(target_os = "emscripten", target_os = "fuchsia", target_os = "horizon")))]
166166
{
167-
// We don't want to add this as a public type to libstd, nor do we
167+
// We don't want to add this as a public type to std, nor do we
168168
// want to `include!` a file from the compiler (which would break
169169
// Miri and xargo for example), so we choose to duplicate these
170170
// constants from `compiler/rustc_session/src/config/sigpipe.rs`.

library/std/src/sys/unix/net.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -512,7 +512,7 @@ impl FromRawFd for Socket {
512512
// A workaround for this bug is to call the res_init libc function, to clear
513513
// the cached configs. Unfortunately, while we believe glibc's implementation
514514
// of res_init is thread-safe, we know that other implementations are not
515-
// (https://github.com/rust-lang/rust/issues/43592). Code here in libstd could
515+
// (https://github.com/rust-lang/rust/issues/43592). Code here in std could
516516
// try to synchronize its res_init calls with a Mutex, but that wouldn't
517517
// protect programs that call into libc in other ways. So instead of calling
518518
// res_init unconditionally, we call it only when we detect we're linking

library/std/src/sys_common/backtrace.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ pub fn lock() -> impl Drop {
2020
/// Prints the current backtrace.
2121
pub fn print(w: &mut dyn Write, format: PrintFmt) -> io::Result<()> {
2222
// There are issues currently linking libbacktrace into tests, and in
23-
// general during libstd's own unit tests we're not testing this path. In
23+
// general during std's own unit tests we're not testing this path. In
2424
// test mode immediately return here to optimize away any references to the
2525
// libbacktrace symbols
2626
if cfg!(test) {

library/std/src/thread/local.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -950,7 +950,7 @@ pub mod fast {
950950

951951
// note that this is just a publicly-callable function only for the
952952
// const-initialized form of thread locals, basically a way to call the
953-
// free `register_dtor` function defined elsewhere in libstd.
953+
// free `register_dtor` function defined elsewhere in std.
954954
pub unsafe fn register_dtor(a: *mut u8, dtor: unsafe extern "C" fn(*mut u8)) {
955955
unsafe {
956956
register_dtor(a, dtor);

library/unwind/src/libunwind.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ pub type _Unwind_Exception_Cleanup_Fn =
8888
extern "C" fn(unwind_code: _Unwind_Reason_Code, exception: *mut _Unwind_Exception);
8989

9090
// FIXME: The `#[link]` attributes on `extern "C"` block marks those symbols declared in
91-
// the block are reexported in dylib build of libstd. This is needed when build rustc with
91+
// the block are reexported in dylib build of std. This is needed when build rustc with
9292
// feature `llvm-libunwind', as no other cdylib will provided those _Unwind_* symbols.
9393
// However the `link` attribute is duplicated multiple times and does not just export symbol,
9494
// a better way to manually export symbol would be another attribute like `#[export]`.

0 commit comments

Comments
 (0)