]> git.proxmox.com Git - rustc.git/blame - src/libcore/lib.rs
New upstream version 1.27.2+dfsg1
[rustc.git] / src / libcore / lib.rs
CommitLineData
1a4d82fc
JJ
1// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
2// file at the top-level directory of this distribution and at
3// http://rust-lang.org/COPYRIGHT.
4//
5// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8// option. This file may not be copied, modified, or distributed
9// except according to those terms.
10
11//! # The Rust Core Library
12//!
92a42be0 13//! The Rust Core Library is the dependency-free[^free] foundation of [The
1a4d82fc
JJ
14//! Rust Standard Library](../std/index.html). It is the portable glue
15//! between the language and its libraries, defining the intrinsic and
16//! primitive building blocks of all Rust code. It links to no
17//! upstream libraries, no system libraries, and no libc.
18//!
92a42be0
SL
19//! [^free]: Strictly speaking, there are some symbols which are needed but
20//! they aren't always necessary.
21//!
1a4d82fc
JJ
22//! The core library is *minimal*: it isn't even aware of heap allocation,
23//! nor does it provide concurrency or I/O. These things require
24//! platform integration, and this library is platform-agnostic.
25//!
1a4d82fc
JJ
26//! # How to use the core library
27//!
5bcae85e
SL
28//! Please note that all of these details are currently not considered stable.
29//!
1a4d82fc
JJ
30// FIXME: Fill me in with more detail when the interface settles
31//! This library is built on the assumption of a few existing symbols:
32//!
33//! * `memcpy`, `memcmp`, `memset` - These are core memory routines which are
34//! often generated by LLVM. Additionally, this library can make explicit
35//! calls to these functions. Their signatures are the same as found in C.
36//! These functions are often provided by the system libc, but can also be
c34b1796 37//! provided by the [rlibc crate](https://crates.io/crates/rlibc).
1a4d82fc 38//!
041b39d2
XL
39//! * `rust_begin_panic` - This function takes four arguments, a
40//! `fmt::Arguments`, a `&'static str`, and two `u32`'s. These four arguments
5bcae85e 41//! dictate the panic message, the file at which panic was invoked, and the
041b39d2
XL
42//! line and column inside the file. It is up to consumers of this core
43//! library to define this panic function; it is only required to never
44//! return. This requires a `lang` attribute named `panic_fmt`.
9e0c209e
SL
45//!
46//! * `rust_eh_personality` - is used by the failure mechanisms of the
47//! compiler. This is often mapped to GCC's personality function, but crates
48//! which do not trigger a panic can be assured that this function is never
49//! called. The `lang` attribute is called `eh_personality`.
1a4d82fc
JJ
50
51// Since libcore defines many fundamental lang items, all tests live in a
52// separate crate, libcoretest, to avoid bizarre issues.
83c7162d
XL
53//
54// Here we explicitly #[cfg]-out this whole crate when testing. If we don't do
55// this, both the generated test artifact and the linked libtest (which
56// transitively includes libcore) will both define the same set of lang items,
57// and this will cause the E0152 "duplicate lang item found" error. See
58// discussion in #50466 for details.
59//
60// This cfg won't affect doc tests.
61#![cfg(not(test))]
1a4d82fc 62
92a42be0 63#![stable(feature = "core", since = "1.6.0")]
e9174d1e 64#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
62682a34 65 html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
e9174d1e
SL
66 html_root_url = "https://doc.rust-lang.org/nightly/",
67 html_playground_url = "https://play.rust-lang.org/",
92a42be0
SL
68 issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/",
69 test(no_crate_inject, attr(deny(warnings))),
70 test(attr(allow(dead_code, deprecated, unused_variables, unused_mut))))]
1a4d82fc 71
e9174d1e 72#![no_core]
1a4d82fc 73#![deny(missing_docs)]
54a0048b 74#![deny(missing_debug_implementations)]
1a4d82fc 75
e9174d1e 76#![feature(allow_internal_unstable)]
a7813a04 77#![feature(asm)]
62682a34 78#![feature(associated_type_defaults)]
0531ce1d 79#![feature(attr_literals)]
cc61c64b 80#![feature(cfg_target_has_atomic)]
e9174d1e
SL
81#![feature(concat_idents)]
82#![feature(const_fn)]
83c7162d 83#![feature(core_float)]
e9174d1e 84#![feature(custom_attribute)]
0531ce1d
XL
85#![feature(doc_cfg)]
86#![feature(doc_spotlight)]
83c7162d 87#![feature(extern_types)]
e9174d1e 88#![feature(fundamental)]
62682a34 89#![feature(intrinsics)]
0531ce1d
XL
90#![feature(iterator_flatten)]
91#![feature(iterator_repeat_with)]
62682a34 92#![feature(lang_items)]
0531ce1d 93#![feature(link_llvm_intrinsics)]
cc61c64b 94#![feature(never_type)]
0531ce1d
XL
95#![feature(exhaustive_patterns)]
96#![feature(macro_at_most_once_rep)]
e9174d1e 97#![feature(no_core)]
85aaf69f 98#![feature(on_unimplemented)]
c34b1796 99#![feature(optin_builtin_traits)]
cc61c64b 100#![feature(prelude_import)]
9cc50fc6 101#![feature(repr_simd, platform_intrinsics)]
54a0048b 102#![feature(rustc_attrs)]
0531ce1d
XL
103#![feature(rustc_const_unstable)]
104#![feature(simd_ffi)]
83c7162d
XL
105#![feature(core_slice_ext)]
106#![feature(core_str_ext)]
54a0048b 107#![feature(specialization)]
e9174d1e 108#![feature(staged_api)]
0531ce1d 109#![feature(stmt_expr_attributes)]
e9174d1e 110#![feature(unboxed_closures)]
cc61c64b
XL
111#![feature(untagged_unions)]
112#![feature(unwind_attributes)]
83c7162d
XL
113#![feature(doc_alias)]
114#![feature(inclusive_range_methods)]
115
116#![cfg_attr(not(stage0), feature(mmx_target_feature))]
117#![cfg_attr(not(stage0), feature(tbm_target_feature))]
118#![cfg_attr(not(stage0), feature(sse4a_target_feature))]
119#![cfg_attr(not(stage0), feature(arm_target_feature))]
120#![cfg_attr(not(stage0), feature(powerpc_target_feature))]
121#![cfg_attr(not(stage0), feature(mips_target_feature))]
122#![cfg_attr(not(stage0), feature(aarch64_target_feature))]
0531ce1d 123
83c7162d
XL
124#![cfg_attr(stage0, feature(target_feature))]
125#![cfg_attr(stage0, feature(cfg_target_feature))]
126#![cfg_attr(stage0, feature(fn_must_use))]
ea8adc8c 127
9e0c209e
SL
128#[prelude_import]
129#[allow(unused)]
130use prelude::v1::*;
5bcae85e 131
1a4d82fc
JJ
132#[macro_use]
133mod macros;
134
c30ab7b3
SL
135#[macro_use]
136mod internal_macros;
137
1a4d82fc
JJ
138#[path = "num/int_macros.rs"]
139#[macro_use]
140mod int_macros;
141
142#[path = "num/uint_macros.rs"]
143#[macro_use]
144mod uint_macros;
145
5bcae85e
SL
146#[path = "num/isize.rs"] pub mod isize;
147#[path = "num/i8.rs"] pub mod i8;
148#[path = "num/i16.rs"] pub mod i16;
149#[path = "num/i32.rs"] pub mod i32;
150#[path = "num/i64.rs"] pub mod i64;
32a655c1
SL
151#[path = "num/i128.rs"] pub mod i128;
152
1a4d82fc 153#[path = "num/usize.rs"] pub mod usize;
5bcae85e
SL
154#[path = "num/u8.rs"] pub mod u8;
155#[path = "num/u16.rs"] pub mod u16;
156#[path = "num/u32.rs"] pub mod u32;
157#[path = "num/u64.rs"] pub mod u64;
32a655c1
SL
158#[path = "num/u128.rs"] pub mod u128;
159
1a4d82fc
JJ
160#[path = "num/f32.rs"] pub mod f32;
161#[path = "num/f64.rs"] pub mod f64;
162
9346a6ac 163#[macro_use]
1a4d82fc
JJ
164pub mod num;
165
166/* The libcore prelude, not as all-encompassing as the libstd prelude */
167
168pub mod prelude;
169
170/* Core modules for ownership management */
171
172pub mod intrinsics;
173pub mod mem;
174pub mod nonzero;
175pub mod ptr;
83c7162d 176pub mod hint;
1a4d82fc
JJ
177
178/* Core language traits */
179
180pub mod marker;
181pub mod ops;
182pub mod cmp;
183pub mod clone;
184pub mod default;
c34b1796 185pub mod convert;
e9174d1e 186pub mod borrow;
1a4d82fc
JJ
187
188/* Core types and methods on primitives */
189
190pub mod any;
c34b1796 191pub mod array;
0531ce1d 192pub mod ascii;
e9174d1e 193pub mod sync;
1a4d82fc
JJ
194pub mod cell;
195pub mod char;
0531ce1d 196pub mod panic;
1a4d82fc 197pub mod panicking;
1a4d82fc
JJ
198pub mod iter;
199pub mod option;
200pub mod raw;
201pub mod result;
e9174d1e 202
1a4d82fc
JJ
203pub mod slice;
204pub mod str;
205pub mod hash;
206pub mod fmt;
2c00a5a8 207pub mod time;
85aaf69f 208
83c7162d
XL
209pub mod unicode;
210
0531ce1d
XL
211/* Heap memory allocator trait */
212#[allow(missing_docs)]
83c7162d
XL
213pub mod alloc;
214
215#[unstable(feature = "allocator_api", issue = "32838")]
216#[rustc_deprecated(since = "1.27.0", reason = "module renamed to `alloc`")]
217/// Use the `alloc` module instead.
218pub mod heap {
219 pub use alloc::*;
220}
0531ce1d 221
1a4d82fc 222// note: does not need to be public
3157f602 223mod iter_private;
1a4d82fc 224mod tuple;
abe05a73 225mod unit;
0531ce1d
XL
226
227// Pull in the the `coresimd` crate directly into libcore. This is where all the
228// architecture-specific (and vendor-specific) intrinsics are defined. AKA
229// things like SIMD and such. Note that the actual source for all this lies in a
230// different repository, rust-lang-nursery/stdsimd. That's why the setup here is
231// a bit wonky.
83c7162d
XL
232#[allow(unused_macros)]
233macro_rules! test_v16 { ($item:item) => {}; }
234#[allow(unused_macros)]
235macro_rules! test_v32 { ($item:item) => {}; }
236#[allow(unused_macros)]
237macro_rules! test_v64 { ($item:item) => {}; }
238#[allow(unused_macros)]
239macro_rules! test_v128 { ($item:item) => {}; }
240#[allow(unused_macros)]
241macro_rules! test_v256 { ($item:item) => {}; }
242#[allow(unused_macros)]
243macro_rules! test_v512 { ($item:item) => {}; }
244#[allow(unused_macros)]
245macro_rules! vector_impl { ($([$f:ident, $($args:tt)*]),*) => { $($f!($($args)*);)* } }
0531ce1d 246#[path = "../stdsimd/coresimd/mod.rs"]
83c7162d 247#[allow(missing_docs, missing_debug_implementations, dead_code, unused_imports)]
0531ce1d
XL
248#[unstable(feature = "stdsimd", issue = "48556")]
249#[cfg(not(stage0))] // allow changes to how stdsimd works in stage0
250mod coresimd;
251
252#[unstable(feature = "stdsimd", issue = "48556")]
253#[cfg(not(stage0))]
254pub use coresimd::simd;
83c7162d 255#[stable(feature = "simd_arch", since = "1.27.0")]
0531ce1d
XL
256#[cfg(not(stage0))]
257pub use coresimd::arch;