]> git.lizzy.rs Git - rust.git/blob - src/librustc_data_structures/lib.rs
Rollup merge of #54257 - alexcrichton:wasm-math-symbols, r=TimNN
[rust.git] / src / librustc_data_structures / lib.rs
1 // Copyright 2015 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 //! Various data structures used by the Rust compiler. The intention
12 //! is that code in here should be not be *specific* to rustc, so that
13 //! it can be easily unit tested and so forth.
14 //!
15 //! # Note
16 //!
17 //! This API is completely unstable and subject to change.
18
19 #![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
20       html_favicon_url = "https://www.rust-lang.org/favicon.ico",
21       html_root_url = "https://doc.rust-lang.org/nightly/")]
22
23 #![feature(in_band_lifetimes)]
24 #![feature(impl_header_lifetime_elision)]
25 #![feature(unboxed_closures)]
26 #![feature(fn_traits)]
27 #![feature(unsize)]
28 #![feature(specialization)]
29 #![feature(optin_builtin_traits)]
30 #![cfg_attr(stage0, feature(macro_vis_matcher))]
31 #![cfg_attr(not(stage0), feature(nll))]
32 #![feature(allow_internal_unstable)]
33 #![feature(vec_resize_with)]
34
35 #![cfg_attr(unix, feature(libc))]
36 #![cfg_attr(test, feature(test))]
37
38 extern crate core;
39 extern crate ena;
40 #[macro_use]
41 extern crate log;
42 extern crate serialize as rustc_serialize; // used by deriving
43 #[cfg(unix)]
44 extern crate libc;
45 extern crate parking_lot;
46 #[macro_use]
47 extern crate cfg_if;
48 extern crate stable_deref_trait;
49 extern crate rustc_rayon as rayon;
50 extern crate rustc_rayon_core as rayon_core;
51 extern crate rustc_hash;
52 extern crate serialize;
53 #[cfg_attr(test, macro_use)]
54 extern crate smallvec;
55
56 // See librustc_cratesio_shim/Cargo.toml for a comment explaining this.
57 #[allow(unused_extern_crates)]
58 extern crate rustc_cratesio_shim;
59
60 pub use rustc_serialize::hex::ToHex;
61
62 pub mod svh;
63 pub mod base_n;
64 pub mod bit_set;
65 pub mod const_cstr;
66 pub mod flock;
67 pub mod fx;
68 pub mod graph;
69 pub mod indexed_vec;
70 pub mod obligation_forest;
71 pub mod owning_ref;
72 pub mod ptr_key;
73 pub mod sip128;
74 pub mod small_c_str;
75 pub mod small_vec;
76 pub mod snapshot_map;
77 pub use ena::snapshot_vec;
78 pub mod sorted_map;
79 #[macro_use] pub mod stable_hasher;
80 pub mod sync;
81 pub mod tiny_list;
82 pub mod thin_vec;
83 pub mod transitive_relation;
84 pub mod tuple_slice;
85 pub use ena::unify;
86 pub mod vec_linked_list;
87 pub mod work_queue;
88 pub mod fingerprint;
89
90 pub struct OnDrop<F: Fn()>(pub F);
91
92 impl<F: Fn()> OnDrop<F> {
93       /// Forgets the function which prevents it from running.
94       /// Ensure that the function owns no memory, otherwise it will be leaked.
95       pub fn disable(self) {
96             std::mem::forget(self);
97       }
98 }
99
100 impl<F: Fn()> Drop for OnDrop<F> {
101       fn drop(&mut self) {
102             (self.0)();
103       }
104 }
105
106 // See comments in src/librustc/lib.rs
107 #[doc(hidden)]
108 pub fn __noop_fix_for_27438() {}