]> git.lizzy.rs Git - rust.git/blob - library/core/src/lib.rs
Rollup merge of #103359 - WaffleLapkin:drain_no_mut_qqq, r=scottmcm
[rust.git] / library / core / src / lib.rs
1 //! # The Rust Core Library
2 //!
3 //! The Rust Core Library is the dependency-free[^free] foundation of [The
4 //! Rust Standard Library](../std/index.html). It is the portable glue
5 //! between the language and its libraries, defining the intrinsic and
6 //! primitive building blocks of all Rust code. It links to no
7 //! upstream libraries, no system libraries, and no libc.
8 //!
9 //! [^free]: Strictly speaking, there are some symbols which are needed but
10 //!          they aren't always necessary.
11 //!
12 //! The core library is *minimal*: it isn't even aware of heap allocation,
13 //! nor does it provide concurrency or I/O. These things require
14 //! platform integration, and this library is platform-agnostic.
15 //!
16 //! # How to use the core library
17 //!
18 //! Please note that all of these details are currently not considered stable.
19 //!
20 // FIXME: Fill me in with more detail when the interface settles
21 //! This library is built on the assumption of a few existing symbols:
22 //!
23 //! * `memcpy`, `memcmp`, `memset`, `strlen` - These are core memory routines which are
24 //!   often generated by LLVM. Additionally, this library can make explicit
25 //!   calls to these functions. Their signatures are the same as found in C.
26 //!   These functions are often provided by the system libc, but can also be
27 //!   provided by the [compiler-builtins crate](https://crates.io/crates/compiler_builtins).
28 //!
29 //! * `rust_begin_panic` - This function takes four arguments, a
30 //!   `fmt::Arguments`, a `&'static str`, and two `u32`'s. These four arguments
31 //!   dictate the panic message, the file at which panic was invoked, and the
32 //!   line and column inside the file. It is up to consumers of this core
33 //!   library to define this panic function; it is only required to never
34 //!   return. This requires a `lang` attribute named `panic_impl`.
35 //!
36 //! * `rust_eh_personality` - is used by the failure mechanisms of the
37 //!    compiler. This is often mapped to GCC's personality function, but crates
38 //!    which do not trigger a panic can be assured that this function is never
39 //!    called. The `lang` attribute is called `eh_personality`.
40
41 // Since libcore defines many fundamental lang items, all tests live in a
42 // separate crate, libcoretest, to avoid bizarre issues.
43 //
44 // Here we explicitly #[cfg]-out this whole crate when testing. If we don't do
45 // this, both the generated test artifact and the linked libtest (which
46 // transitively includes libcore) will both define the same set of lang items,
47 // and this will cause the E0152 "found duplicate lang item" error. See
48 // discussion in #50466 for details.
49 //
50 // This cfg won't affect doc tests.
51 #![cfg(not(test))]
52 // To run libcore tests without x.py without ending up with two copies of libcore, Miri needs to be
53 // able to "empty" this crate. See <https://github.com/rust-lang/miri-test-libstd/issues/4>.
54 // rustc itself never sets the feature, so this line has no affect there.
55 #![cfg(any(not(feature = "miri-test-libstd"), test, doctest))]
56 #![stable(feature = "core", since = "1.6.0")]
57 #![doc(
58     html_playground_url = "https://play.rust-lang.org/",
59     issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/",
60     test(no_crate_inject, attr(deny(warnings))),
61     test(attr(allow(dead_code, deprecated, unused_variables, unused_mut)))
62 )]
63 #![doc(cfg_hide(
64     not(test),
65     any(not(feature = "miri-test-libstd"), test, doctest),
66     no_fp_fmt_parse,
67     target_pointer_width = "16",
68     target_pointer_width = "32",
69     target_pointer_width = "64",
70     target_has_atomic = "8",
71     target_has_atomic = "16",
72     target_has_atomic = "32",
73     target_has_atomic = "64",
74     target_has_atomic = "ptr",
75     target_has_atomic_equal_alignment = "8",
76     target_has_atomic_equal_alignment = "16",
77     target_has_atomic_equal_alignment = "32",
78     target_has_atomic_equal_alignment = "64",
79     target_has_atomic_equal_alignment = "ptr",
80     target_has_atomic_load_store = "8",
81     target_has_atomic_load_store = "16",
82     target_has_atomic_load_store = "32",
83     target_has_atomic_load_store = "64",
84     target_has_atomic_load_store = "ptr",
85 ))]
86 #![no_core]
87 #![rustc_coherence_is_core]
88 //
89 // Lints:
90 #![deny(rust_2021_incompatible_or_patterns)]
91 #![deny(unsafe_op_in_unsafe_fn)]
92 #![warn(deprecated_in_future)]
93 #![warn(missing_debug_implementations)]
94 #![warn(missing_docs)]
95 #![allow(explicit_outlives_requirements)]
96 #![allow(incomplete_features)]
97 //
98 // Library features:
99 #![feature(const_align_offset)]
100 #![feature(const_align_of_val)]
101 #![feature(const_arguments_as_str)]
102 #![feature(const_array_into_iter_constructors)]
103 #![feature(const_bigint_helper_methods)]
104 #![feature(const_black_box)]
105 #![feature(const_caller_location)]
106 #![feature(const_cell_into_inner)]
107 #![feature(const_char_convert)]
108 #![feature(const_clone)]
109 #![feature(const_cmp)]
110 #![feature(const_discriminant)]
111 #![feature(const_eval_select)]
112 #![feature(const_float_bits_conv)]
113 #![feature(const_float_classify)]
114 #![feature(const_fmt_arguments_new)]
115 #![feature(const_heap)]
116 #![feature(const_convert)]
117 #![feature(const_index_range_slice_index)]
118 #![feature(const_inherent_unchecked_arith)]
119 #![feature(const_int_unchecked_arith)]
120 #![feature(const_intrinsic_forget)]
121 #![feature(const_likely)]
122 #![feature(const_maybe_uninit_uninit_array)]
123 #![feature(const_maybe_uninit_as_mut_ptr)]
124 #![feature(const_maybe_uninit_assume_init)]
125 #![feature(const_nonnull_new)]
126 #![feature(const_num_from_num)]
127 #![feature(const_ops)]
128 #![feature(const_option)]
129 #![feature(const_option_ext)]
130 #![feature(const_pin)]
131 #![feature(const_ptr_sub_ptr)]
132 #![feature(const_replace)]
133 #![feature(const_ptr_as_ref)]
134 #![feature(const_ptr_is_null)]
135 #![feature(const_ptr_read)]
136 #![feature(const_ptr_write)]
137 #![feature(const_raw_ptr_comparison)]
138 #![feature(const_size_of_val)]
139 #![feature(const_slice_from_raw_parts_mut)]
140 #![feature(const_slice_ptr_len)]
141 #![feature(const_slice_split_at_mut)]
142 #![feature(const_str_from_utf8_unchecked_mut)]
143 #![feature(const_swap)]
144 #![feature(const_trait_impl)]
145 #![feature(const_try)]
146 #![feature(const_type_id)]
147 #![feature(const_type_name)]
148 #![feature(const_default_impls)]
149 #![feature(const_unicode_case_lookup)]
150 #![feature(const_unsafecell_get_mut)]
151 #![feature(const_waker)]
152 #![feature(core_panic)]
153 #![feature(duration_consts_float)]
154 #![feature(maybe_uninit_uninit_array)]
155 #![feature(ptr_alignment_type)]
156 #![feature(ptr_metadata)]
157 #![feature(slice_ptr_get)]
158 #![feature(slice_split_at_unchecked)]
159 #![feature(str_internals)]
160 #![feature(utf16_extra)]
161 #![feature(utf16_extra_const)]
162 #![feature(variant_count)]
163 #![feature(const_array_from_ref)]
164 #![feature(const_slice_from_ref)]
165 #![feature(const_slice_index)]
166 #![feature(const_is_char_boundary)]
167 #![feature(const_cstr_methods)]
168 #![feature(is_ascii_octdigit)]
169 //
170 // Language features:
171 #![feature(abi_unadjusted)]
172 #![feature(adt_const_params)]
173 #![feature(allow_internal_unsafe)]
174 #![feature(allow_internal_unstable)]
175 #![feature(associated_type_bounds)]
176 #![feature(auto_traits)]
177 #![feature(cfg_sanitize)]
178 #![feature(cfg_target_has_atomic)]
179 #![feature(cfg_target_has_atomic_equal_alignment)]
180 #![feature(const_fn_floating_point_arithmetic)]
181 #![feature(const_mut_refs)]
182 #![feature(const_precise_live_drops)]
183 #![feature(const_refs_to_cell)]
184 #![feature(decl_macro)]
185 #![feature(deprecated_suggestion)]
186 #![feature(doc_cfg)]
187 #![feature(doc_notable_trait)]
188 #![feature(rustdoc_internals)]
189 #![feature(exhaustive_patterns)]
190 #![feature(doc_cfg_hide)]
191 #![feature(extern_types)]
192 #![feature(fundamental)]
193 #![feature(if_let_guard)]
194 #![feature(intra_doc_pointers)]
195 #![feature(intrinsics)]
196 #![feature(lang_items)]
197 #![feature(link_llvm_intrinsics)]
198 #![feature(macro_metavar_expr)]
199 #![feature(min_specialization)]
200 #![feature(must_not_suspend)]
201 #![feature(negative_impls)]
202 #![feature(never_type)]
203 #![feature(no_core)]
204 #![feature(no_coverage)] // rust-lang/rust#84605
205 #![feature(platform_intrinsics)]
206 #![feature(prelude_import)]
207 #![feature(repr_simd)]
208 #![feature(rustc_allow_const_fn_unstable)]
209 #![feature(rustc_attrs)]
210 #![feature(simd_ffi)]
211 #![feature(staged_api)]
212 #![feature(stmt_expr_attributes)]
213 #![feature(target_feature_11)]
214 #![feature(trait_alias)]
215 #![feature(transparent_unions)]
216 #![feature(try_blocks)]
217 #![feature(unboxed_closures)]
218 #![feature(unsized_fn_params)]
219 #![feature(asm_const)]
220 #![feature(const_transmute_copy)]
221 //
222 // Target features:
223 #![feature(arm_target_feature)]
224 #![feature(avx512_target_feature)]
225 #![feature(cmpxchg16b_target_feature)]
226 #![feature(f16c_target_feature)]
227 #![feature(hexagon_target_feature)]
228 #![feature(mips_target_feature)]
229 #![feature(powerpc_target_feature)]
230 #![feature(riscv_target_feature)]
231 #![feature(rtm_target_feature)]
232 #![feature(sse4a_target_feature)]
233 #![feature(tbm_target_feature)]
234 #![feature(wasm_target_feature)]
235
236 // allow using `core::` in intra-doc links
237 #[allow(unused_extern_crates)]
238 extern crate self as core;
239
240 #[prelude_import]
241 #[allow(unused)]
242 use prelude::v1::*;
243
244 #[cfg(not(test))] // See #65860
245 #[macro_use]
246 mod macros;
247
248 // We don't export this through #[macro_export] for now, to avoid breakage.
249 // See https://github.com/rust-lang/rust/issues/82913
250 #[cfg(not(test))]
251 #[unstable(feature = "assert_matches", issue = "82775")]
252 /// Unstable module containing the unstable `assert_matches` macro.
253 pub mod assert_matches {
254     #[unstable(feature = "assert_matches", issue = "82775")]
255     pub use crate::macros::{assert_matches, debug_assert_matches};
256 }
257
258 #[macro_use]
259 mod internal_macros;
260
261 #[path = "num/shells/int_macros.rs"]
262 #[macro_use]
263 mod int_macros;
264
265 #[path = "num/shells/i128.rs"]
266 pub mod i128;
267 #[path = "num/shells/i16.rs"]
268 pub mod i16;
269 #[path = "num/shells/i32.rs"]
270 pub mod i32;
271 #[path = "num/shells/i64.rs"]
272 pub mod i64;
273 #[path = "num/shells/i8.rs"]
274 pub mod i8;
275 #[path = "num/shells/isize.rs"]
276 pub mod isize;
277
278 #[path = "num/shells/u128.rs"]
279 pub mod u128;
280 #[path = "num/shells/u16.rs"]
281 pub mod u16;
282 #[path = "num/shells/u32.rs"]
283 pub mod u32;
284 #[path = "num/shells/u64.rs"]
285 pub mod u64;
286 #[path = "num/shells/u8.rs"]
287 pub mod u8;
288 #[path = "num/shells/usize.rs"]
289 pub mod usize;
290
291 #[path = "num/f32.rs"]
292 pub mod f32;
293 #[path = "num/f64.rs"]
294 pub mod f64;
295
296 #[macro_use]
297 pub mod num;
298
299 /* The libcore prelude, not as all-encompassing as the libstd prelude */
300
301 pub mod prelude;
302
303 /* Core modules for ownership management */
304
305 pub mod hint;
306 pub mod intrinsics;
307 pub mod mem;
308 pub mod ptr;
309
310 /* Core language traits */
311
312 pub mod borrow;
313 pub mod clone;
314 pub mod cmp;
315 pub mod convert;
316 pub mod default;
317 pub mod error;
318 pub mod marker;
319 pub mod ops;
320
321 /* Core types and methods on primitives */
322
323 pub mod any;
324 pub mod array;
325 pub mod ascii;
326 pub mod asserting;
327 #[unstable(feature = "async_iterator", issue = "79024")]
328 pub mod async_iter;
329 pub mod cell;
330 pub mod char;
331 pub mod ffi;
332 pub mod iter;
333 pub mod option;
334 pub mod panic;
335 pub mod panicking;
336 pub mod pin;
337 pub mod result;
338 pub mod sync;
339
340 pub mod fmt;
341 pub mod hash;
342 pub mod slice;
343 pub mod str;
344 pub mod time;
345
346 pub mod unicode;
347
348 /* Async */
349 pub mod future;
350 pub mod task;
351
352 /* Heap memory allocator trait */
353 #[allow(missing_docs)]
354 pub mod alloc;
355
356 // note: does not need to be public
357 mod bool;
358 mod tuple;
359 mod unit;
360
361 mod const_closure;
362
363 #[stable(feature = "core_primitive", since = "1.43.0")]
364 pub mod primitive;
365
366 // Pull in the `core_arch` crate directly into libcore. The contents of
367 // `core_arch` are in a different repository: rust-lang/stdarch.
368 //
369 // `core_arch` depends on libcore, but the contents of this module are
370 // set up in such a way that directly pulling it here works such that the
371 // crate uses the this crate as its libcore.
372 #[path = "../../stdarch/crates/core_arch/src/mod.rs"]
373 #[allow(
374     missing_docs,
375     missing_debug_implementations,
376     dead_code,
377     unused_imports,
378     unsafe_op_in_unsafe_fn
379 )]
380 #[allow(rustdoc::bare_urls)]
381 // FIXME: This annotation should be moved into rust-lang/stdarch after clashing_extern_declarations is
382 // merged. It currently cannot because bootstrap fails as the lint hasn't been defined yet.
383 #[allow(clashing_extern_declarations)]
384 #[unstable(feature = "stdsimd", issue = "48556")]
385 mod core_arch;
386
387 #[doc = include_str!("../../stdarch/crates/core_arch/src/core_arch_docs.md")]
388 #[stable(feature = "simd_arch", since = "1.27.0")]
389 pub mod arch {
390     #[stable(feature = "simd_arch", since = "1.27.0")]
391     pub use crate::core_arch::arch::*;
392
393     /// Inline assembly.
394     ///
395     /// Refer to [rust by example] for a usage guide and the [reference] for
396     /// detailed information about the syntax and available options.
397     ///
398     /// [rust by example]: https://doc.rust-lang.org/nightly/rust-by-example/unsafe/asm.html
399     /// [reference]: https://doc.rust-lang.org/nightly/reference/inline-assembly.html
400     #[stable(feature = "asm", since = "1.59.0")]
401     #[rustc_builtin_macro]
402     pub macro asm("assembly template", $(operands,)* $(options($(option),*))?) {
403         /* compiler built-in */
404     }
405
406     /// Module-level inline assembly.
407     ///
408     /// Refer to [rust by example] for a usage guide and the [reference] for
409     /// detailed information about the syntax and available options.
410     ///
411     /// [rust by example]: https://doc.rust-lang.org/nightly/rust-by-example/unsafe/asm.html
412     /// [reference]: https://doc.rust-lang.org/nightly/reference/inline-assembly.html
413     #[stable(feature = "global_asm", since = "1.59.0")]
414     #[rustc_builtin_macro]
415     pub macro global_asm("assembly template", $(operands,)* $(options($(option),*))?) {
416         /* compiler built-in */
417     }
418 }
419
420 // Pull in the `core_simd` crate directly into libcore. The contents of
421 // `core_simd` are in a different repository: rust-lang/portable-simd.
422 //
423 // `core_simd` depends on libcore, but the contents of this module are
424 // set up in such a way that directly pulling it here works such that the
425 // crate uses this crate as its libcore.
426 #[path = "../../portable-simd/crates/core_simd/src/mod.rs"]
427 #[allow(missing_debug_implementations, dead_code, unsafe_op_in_unsafe_fn, unused_unsafe)]
428 #[allow(rustdoc::bare_urls)]
429 #[unstable(feature = "portable_simd", issue = "86656")]
430 mod core_simd;
431
432 #[doc = include_str!("../../portable-simd/crates/core_simd/src/core_simd_docs.md")]
433 #[unstable(feature = "portable_simd", issue = "86656")]
434 pub mod simd {
435     #[unstable(feature = "portable_simd", issue = "86656")]
436     pub use crate::core_simd::simd::*;
437 }
438
439 include!("primitive_docs.rs");