]> git.lizzy.rs Git - rust.git/blob - src/librustc_data_structures/lib.rs
Auto merge of #69833 - Centril:rollup-mh74yue, r=Centril
[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 #![feature(in_band_lifetimes)]
11 #![feature(unboxed_closures)]
12 #![feature(generators)]
13 #![feature(generator_trait)]
14 #![feature(fn_traits)]
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(test)]
23 #![feature(associated_type_bounds)]
24 #![feature(thread_id_value)]
25 #![allow(rustc::default_hash_types)]
26
27 #[macro_use]
28 extern crate log;
29 #[cfg(unix)]
30 extern crate libc;
31 #[macro_use]
32 extern crate cfg_if;
33
34 pub use rustc_serialize::hex::ToHex;
35
36 #[inline(never)]
37 #[cold]
38 pub fn cold_path<F: FnOnce() -> R, R>(f: F) -> R {
39     f()
40 }
41
42 #[macro_export]
43 macro_rules! likely {
44     ($e:expr) => {
45         #[allow(unused_unsafe)]
46         {
47             unsafe { std::intrinsics::likely($e) }
48         }
49     };
50 }
51
52 #[macro_export]
53 macro_rules! unlikely {
54     ($e:expr) => {
55         #[allow(unused_unsafe)]
56         {
57             unsafe { std::intrinsics::unlikely($e) }
58         }
59     };
60 }
61
62 pub mod base_n;
63 pub mod binary_search_util;
64 pub mod box_region;
65 pub mod captures;
66 pub mod const_cstr;
67 pub mod flock;
68 pub mod fx;
69 pub mod graph;
70 pub mod jobserver;
71 pub mod macros;
72 pub mod obligation_forest;
73 pub mod owning_ref;
74 pub mod ptr_key;
75 pub mod sip128;
76 pub mod small_c_str;
77 pub mod snapshot_map;
78 pub mod stable_map;
79 pub mod svh;
80 pub use ena::snapshot_vec;
81 pub mod sorted_map;
82 pub mod stable_set;
83 #[macro_use]
84 pub mod stable_hasher;
85 pub mod sharded;
86 pub mod sync;
87 pub mod thin_vec;
88 pub mod tiny_list;
89 pub mod transitive_relation;
90 pub use ena::unify;
91 mod atomic_ref;
92 pub mod fingerprint;
93 pub mod profiling;
94 pub mod vec_linked_list;
95 pub mod work_queue;
96 pub use atomic_ref::AtomicRef;
97
98 pub struct OnDrop<F: Fn()>(pub F);
99
100 impl<F: Fn()> OnDrop<F> {
101     /// Forgets the function which prevents it from running.
102     /// Ensure that the function owns no memory, otherwise it will be leaked.
103     #[inline]
104     pub fn disable(self) {
105         std::mem::forget(self);
106     }
107 }
108
109 impl<F: Fn()> Drop for OnDrop<F> {
110     #[inline]
111     fn drop(&mut self) {
112         (self.0)();
113     }
114 }
115
116 // See comments in src/librustc/lib.rs
117 #[doc(hidden)]
118 pub fn __noop_fix_for_27438() {}