]> git.lizzy.rs Git - rust.git/blob - src/librustc_data_structures/lib.rs
Account for --remap-path-prefix in save-analysis
[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(collections_range)]
24 #![feature(unboxed_closures)]
25 #![feature(fn_traits)]
26 #![feature(unsize)]
27 #![feature(specialization)]
28 #![feature(optin_builtin_traits)]
29 #![feature(macro_vis_matcher)]
30 #![feature(allow_internal_unstable)]
31 #![feature(vec_resize_with)]
32
33 #![cfg_attr(unix, feature(libc))]
34 #![cfg_attr(test, feature(test))]
35
36 extern crate core;
37 extern crate ena;
38 #[macro_use]
39 extern crate log;
40 extern crate serialize as rustc_serialize; // used by deriving
41 #[cfg(unix)]
42 extern crate libc;
43 extern crate parking_lot;
44 #[macro_use]
45 extern crate cfg_if;
46 extern crate stable_deref_trait;
47 extern crate rustc_rayon as rayon;
48 extern crate rustc_rayon_core as rayon_core;
49 extern crate rustc_hash;
50
51 // See librustc_cratesio_shim/Cargo.toml for a comment explaining this.
52 #[allow(unused_extern_crates)]
53 extern crate rustc_cratesio_shim;
54
55 pub use rustc_serialize::hex::ToHex;
56
57 pub mod accumulate_vec;
58 pub mod array_vec;
59 pub mod base_n;
60 pub mod bitslice;
61 pub mod bitvec;
62 pub mod flock;
63 pub mod fx;
64 pub mod graph;
65 pub mod indexed_set;
66 pub mod indexed_vec;
67 pub mod obligation_forest;
68 pub mod owning_ref;
69 pub mod ptr_key;
70 pub mod sip128;
71 pub mod small_vec;
72 pub mod snapshot_map;
73 pub use ena::snapshot_vec;
74 pub mod sorted_map;
75 pub mod stable_hasher;
76 pub mod sync;
77 pub mod tiny_list;
78 pub mod transitive_relation;
79 pub mod tuple_slice;
80 pub use ena::unify;
81 pub mod work_queue;
82
83 pub struct OnDrop<F: Fn()>(pub F);
84
85 impl<F: Fn()> OnDrop<F> {
86       /// Forgets the function which prevents it from running.
87       /// Ensure that the function owns no memory, otherwise it will be leaked.
88       pub fn disable(self) {
89             std::mem::forget(self);
90       }
91 }
92
93 impl<F: Fn()> Drop for OnDrop<F> {
94       fn drop(&mut self) {
95             (self.0)();
96       }
97 }
98
99 // See comments in src/librustc/lib.rs
100 #[doc(hidden)]
101 pub fn __noop_fix_for_27438() {}