]> git.lizzy.rs Git - rust.git/blob - src/librustc_data_structures/lib.rs
Rollup merge of #58883 - estebank:unused-closure-arg, r=varkor
[rust.git] / src / librustc_data_structures / lib.rs
1 //! Various data structures used by the Rust compiler. The intention
2 //! is that code in here should be not be *specific* to rustc, so that
3 //! it can be easily unit tested and so forth.
4 //!
5 //! # Note
6 //!
7 //! This API is completely unstable and subject to change.
8
9 #![doc(html_root_url = "https://doc.rust-lang.org/nightly/")]
10
11 #![feature(in_band_lifetimes)]
12 #![feature(unboxed_closures)]
13 #![feature(fn_traits)]
14 #![feature(unsize)]
15 #![feature(specialization)]
16 #![feature(optin_builtin_traits)]
17 #![feature(nll)]
18 #![feature(allow_internal_unstable)]
19 #![feature(hash_raw_entry)]
20 #![feature(stmt_expr_attributes)]
21 #![feature(core_intrinsics)]
22 #![feature(integer_atomics)]
23
24 #![cfg_attr(unix, feature(libc))]
25 #![cfg_attr(test, feature(test))]
26
27 #![deny(rust_2018_idioms)]
28
29 #[macro_use]
30 extern crate log;
31 #[allow(unused_extern_crates)]
32 extern crate serialize as rustc_serialize; // used by deriving
33 #[cfg(unix)]
34 extern crate libc;
35 #[macro_use]
36 extern crate cfg_if;
37
38 // See librustc_cratesio_shim/Cargo.toml for a comment explaining this.
39 #[allow(unused_extern_crates)]
40 extern crate rustc_cratesio_shim;
41
42 pub use rustc_serialize::hex::ToHex;
43
44 #[inline(never)]
45 #[cold]
46 pub fn cold_path<F: FnOnce() -> R, R>(f: F) -> R {
47       f()
48 }
49
50 #[macro_export]
51 macro_rules! likely {
52       ($e:expr) => {
53             #[allow(unused_unsafe)]
54             {
55                   unsafe { std::intrinsics::likely($e) }
56             }
57       }
58 }
59
60 #[macro_export]
61 macro_rules! unlikely {
62     ($e:expr) => {
63             #[allow(unused_unsafe)]
64             {
65                   unsafe { std::intrinsics::unlikely($e) }
66             }
67       }
68 }
69
70 pub mod macros;
71 pub mod svh;
72 pub mod base_n;
73 pub mod bit_set;
74 pub mod const_cstr;
75 pub mod flock;
76 pub mod fx;
77 pub mod graph;
78 pub mod indexed_vec;
79 pub mod interner;
80 pub mod jobserver;
81 pub mod obligation_forest;
82 pub mod owning_ref;
83 pub mod ptr_key;
84 pub mod sip128;
85 pub mod small_c_str;
86 pub mod snapshot_map;
87 pub use ena::snapshot_vec;
88 pub mod sorted_map;
89 #[macro_use] pub mod stable_hasher;
90 pub mod sync;
91 pub mod tiny_list;
92 pub mod thin_vec;
93 pub mod transitive_relation;
94 pub use ena::unify;
95 pub mod vec_linked_list;
96 pub mod work_queue;
97 pub mod fingerprint;
98
99 pub struct OnDrop<F: Fn()>(pub F);
100
101 impl<F: Fn()> OnDrop<F> {
102       /// Forgets the function which prevents it from running.
103       /// Ensure that the function owns no memory, otherwise it will be leaked.
104       #[inline]
105       pub fn disable(self) {
106             std::mem::forget(self);
107       }
108 }
109
110 impl<F: Fn()> Drop for OnDrop<F> {
111       #[inline]
112       fn drop(&mut self) {
113             (self.0)();
114       }
115 }
116
117 // See comments in src/librustc/lib.rs
118 #[doc(hidden)]
119 pub fn __noop_fix_for_27438() {}