]> git.lizzy.rs Git - rust.git/blob - src/librustc/middle/cstore.rs
Auto merge of #41830 - jonhoo:update-cargo, r=alexcrichton
[rust.git] / src / librustc / middle / cstore.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 // Copyright 2015 The Rust Project Developers. See the COPYRIGHT
12 // file at the top-level directory of this distribution and at
13 // http://rust-lang.org/COPYRIGHT.
14 //
15 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
16 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
17 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
18 // option. This file may not be copied, modified, or distributed
19 // except according to those terms.
20
21 // the rustc crate store interface. This also includes types that
22 // are *mostly* used as a part of that interface, but these should
23 // probably get a better home if someone can find one.
24
25 use hir::def;
26 use dep_graph::DepNode;
27 use hir::def_id::{CrateNum, DefId, DefIndex};
28 use hir::map as hir_map;
29 use hir::map::definitions::{Definitions, DefKey, DisambiguatedDefPathData};
30 use hir::svh::Svh;
31 use ich;
32 use middle::lang_items;
33 use ty::{self, TyCtxt};
34 use session::Session;
35 use session::search_paths::PathKind;
36 use util::nodemap::{NodeSet, DefIdMap};
37
38 use std::any::Any;
39 use std::path::PathBuf;
40 use std::rc::Rc;
41 use syntax::ast;
42 use syntax::ext::base::SyntaxExtension;
43 use syntax::symbol::Symbol;
44 use syntax_pos::Span;
45 use rustc_back::target::Target;
46 use hir;
47 use rustc_back::PanicStrategy;
48
49 pub use self::NativeLibraryKind::*;
50
51 // lonely orphan structs and enums looking for a better home
52
53 #[derive(Clone, Debug)]
54 pub struct LinkMeta {
55     pub crate_hash: Svh,
56 }
57
58 // Where a crate came from on the local filesystem. One of these three options
59 // must be non-None.
60 #[derive(PartialEq, Clone, Debug)]
61 pub struct CrateSource {
62     pub dylib: Option<(PathBuf, PathKind)>,
63     pub rlib: Option<(PathBuf, PathKind)>,
64     pub rmeta: Option<(PathBuf, PathKind)>,
65 }
66
67 #[derive(RustcEncodable, RustcDecodable, Copy, Clone, Ord, PartialOrd, Eq, PartialEq, Debug)]
68 pub enum DepKind {
69     /// A dependency that is only used for its macros, none of which are visible from other crates.
70     /// These are included in the metadata only as placeholders and are ignored when decoding.
71     UnexportedMacrosOnly,
72     /// A dependency that is only used for its macros.
73     MacrosOnly,
74     /// A dependency that is always injected into the dependency list and so
75     /// doesn't need to be linked to an rlib, e.g. the injected allocator.
76     Implicit,
77     /// A dependency that is required by an rlib version of this crate.
78     /// Ordinary `extern crate`s result in `Explicit` dependencies.
79     Explicit,
80 }
81
82 impl DepKind {
83     pub fn macros_only(self) -> bool {
84         match self {
85             DepKind::UnexportedMacrosOnly | DepKind::MacrosOnly => true,
86             DepKind::Implicit | DepKind::Explicit => false,
87         }
88     }
89 }
90
91 #[derive(PartialEq, Clone, Debug)]
92 pub enum LibSource {
93     Some(PathBuf),
94     MetadataOnly,
95     None,
96 }
97
98 impl LibSource {
99     pub fn is_some(&self) -> bool {
100         if let LibSource::Some(_) = *self {
101             true
102         } else {
103             false
104         }
105     }
106
107     pub fn option(&self) -> Option<PathBuf> {
108         match *self {
109             LibSource::Some(ref p) => Some(p.clone()),
110             LibSource::MetadataOnly | LibSource::None => None,
111         }
112     }
113 }
114
115 #[derive(Copy, Debug, PartialEq, Clone, RustcEncodable, RustcDecodable)]
116 pub enum LinkagePreference {
117     RequireDynamic,
118     RequireStatic,
119 }
120
121 #[derive(Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash, RustcEncodable, RustcDecodable)]
122 pub enum NativeLibraryKind {
123     NativeStatic,    // native static library (.a archive)
124     NativeStaticNobundle, // native static library, which doesn't get bundled into .rlibs
125     NativeFramework, // macOS-specific
126     NativeUnknown,   // default way to specify a dynamic library
127 }
128
129 #[derive(Clone, Hash, RustcEncodable, RustcDecodable)]
130 pub struct NativeLibrary {
131     pub kind: NativeLibraryKind,
132     pub name: Symbol,
133     pub cfg: Option<ast::MetaItem>,
134     pub foreign_items: Vec<DefIndex>,
135 }
136
137 pub enum LoadedMacro {
138     MacroDef(ast::Item),
139     ProcMacro(Rc<SyntaxExtension>),
140 }
141
142 #[derive(Copy, Clone, Debug)]
143 pub struct ExternCrate {
144     /// def_id of an `extern crate` in the current crate that caused
145     /// this crate to be loaded; note that there could be multiple
146     /// such ids
147     pub def_id: DefId,
148
149     /// span of the extern crate that caused this to be loaded
150     pub span: Span,
151
152     /// If true, then this crate is the crate named by the extern
153     /// crate referenced above. If false, then this crate is a dep
154     /// of the crate.
155     pub direct: bool,
156
157     /// Number of links to reach the extern crate `def_id`
158     /// declaration; used to select the extern crate with the shortest
159     /// path
160     pub path_len: usize,
161 }
162
163 pub struct EncodedMetadata {
164     pub raw_data: Vec<u8>,
165     pub hashes: EncodedMetadataHashes,
166 }
167
168 impl EncodedMetadata {
169     pub fn new() -> EncodedMetadata {
170         EncodedMetadata {
171             raw_data: Vec::new(),
172             hashes: EncodedMetadataHashes::new(),
173         }
174     }
175 }
176
177 /// The hash for some metadata that (when saving) will be exported
178 /// from this crate, or which (when importing) was exported by an
179 /// upstream crate.
180 #[derive(Debug, RustcEncodable, RustcDecodable, Copy, Clone)]
181 pub struct EncodedMetadataHash {
182     pub def_index: DefIndex,
183     pub hash: ich::Fingerprint,
184 }
185
186 /// The hash for some metadata that (when saving) will be exported
187 /// from this crate, or which (when importing) was exported by an
188 /// upstream crate.
189 #[derive(Debug, RustcEncodable, RustcDecodable, Clone)]
190 pub struct EncodedMetadataHashes {
191     pub entry_hashes: Vec<EncodedMetadataHash>,
192     pub global_hashes: Vec<(DepNode<()>, ich::Fingerprint)>,
193 }
194
195 impl EncodedMetadataHashes {
196     pub fn new() -> EncodedMetadataHashes {
197         EncodedMetadataHashes {
198             entry_hashes: Vec::new(),
199             global_hashes: Vec::new(),
200         }
201     }
202 }
203
204 /// A store of Rust crates, through with their metadata
205 /// can be accessed.
206 pub trait CrateStore {
207     fn crate_data_as_rc_any(&self, krate: CrateNum) -> Rc<Any>;
208
209     // item info
210     fn visibility(&self, def: DefId) -> ty::Visibility;
211     fn visible_parent_map<'a>(&'a self) -> ::std::cell::Ref<'a, DefIdMap<DefId>>;
212     fn item_generics_cloned(&self, def: DefId) -> ty::Generics;
213     fn item_attrs(&self, def_id: DefId) -> Rc<[ast::Attribute]>;
214     fn fn_arg_names(&self, did: DefId) -> Vec<ast::Name>;
215
216     // trait info
217     fn implementations_of_trait(&self, filter: Option<DefId>) -> Vec<DefId>;
218
219     // impl info
220     fn impl_defaultness(&self, def: DefId) -> hir::Defaultness;
221     fn impl_parent(&self, impl_def_id: DefId) -> Option<DefId>;
222
223     // trait/impl-item info
224     fn trait_of_item(&self, def_id: DefId) -> Option<DefId>;
225     fn associated_item_cloned(&self, def: DefId) -> ty::AssociatedItem;
226
227     // flags
228     fn is_const_fn(&self, did: DefId) -> bool;
229     fn is_default_impl(&self, impl_did: DefId) -> bool;
230     fn is_foreign_item(&self, did: DefId) -> bool;
231     fn is_dllimport_foreign_item(&self, def: DefId) -> bool;
232     fn is_statically_included_foreign_item(&self, def_id: DefId) -> bool;
233     fn is_exported_symbol(&self, def_id: DefId) -> bool;
234
235     // crate metadata
236     fn dylib_dependency_formats(&self, cnum: CrateNum)
237                                     -> Vec<(CrateNum, LinkagePreference)>;
238     fn dep_kind(&self, cnum: CrateNum) -> DepKind;
239     fn export_macros(&self, cnum: CrateNum);
240     fn lang_items(&self, cnum: CrateNum) -> Vec<(DefIndex, usize)>;
241     fn missing_lang_items(&self, cnum: CrateNum) -> Vec<lang_items::LangItem>;
242     fn is_staged_api(&self, cnum: CrateNum) -> bool;
243     fn is_allocator(&self, cnum: CrateNum) -> bool;
244     fn is_panic_runtime(&self, cnum: CrateNum) -> bool;
245     fn is_compiler_builtins(&self, cnum: CrateNum) -> bool;
246     fn is_sanitizer_runtime(&self, cnum: CrateNum) -> bool;
247     fn panic_strategy(&self, cnum: CrateNum) -> PanicStrategy;
248     fn extern_crate(&self, cnum: CrateNum) -> Option<ExternCrate>;
249     /// The name of the crate as it is referred to in source code of the current
250     /// crate.
251     fn crate_name(&self, cnum: CrateNum) -> Symbol;
252     /// The name of the crate as it is stored in the crate's metadata.
253     fn original_crate_name(&self, cnum: CrateNum) -> Symbol;
254     fn crate_hash(&self, cnum: CrateNum) -> Svh;
255     fn crate_disambiguator(&self, cnum: CrateNum) -> Symbol;
256     fn plugin_registrar_fn(&self, cnum: CrateNum) -> Option<DefId>;
257     fn derive_registrar_fn(&self, cnum: CrateNum) -> Option<DefId>;
258     fn native_libraries(&self, cnum: CrateNum) -> Vec<NativeLibrary>;
259     fn exported_symbols(&self, cnum: CrateNum) -> Vec<DefId>;
260     fn is_no_builtins(&self, cnum: CrateNum) -> bool;
261
262     // resolve
263     fn retrace_path(&self,
264                     cnum: CrateNum,
265                     path_data: &[DisambiguatedDefPathData])
266                     -> Option<DefId>;
267     fn def_key(&self, def: DefId) -> DefKey;
268     fn def_path(&self, def: DefId) -> hir_map::DefPath;
269     fn def_path_hash(&self, def: DefId) -> u64;
270     fn struct_field_names(&self, def: DefId) -> Vec<ast::Name>;
271     fn item_children(&self, did: DefId) -> Vec<def::Export>;
272     fn load_macro(&self, did: DefId, sess: &Session) -> LoadedMacro;
273
274     // misc. metadata
275     fn item_body<'a, 'tcx>(&self, tcx: TyCtxt<'a, 'tcx, 'tcx>, def: DefId)
276                            -> &'tcx hir::Body;
277
278     // This is basically a 1-based range of ints, which is a little
279     // silly - I may fix that.
280     fn crates(&self) -> Vec<CrateNum>;
281     fn used_libraries(&self) -> Vec<NativeLibrary>;
282     fn used_link_args(&self) -> Vec<String>;
283
284     // utility functions
285     fn metadata_filename(&self) -> &str;
286     fn metadata_section_name(&self, target: &Target) -> &str;
287     fn used_crates(&self, prefer: LinkagePreference) -> Vec<(CrateNum, LibSource)>;
288     fn used_crate_source(&self, cnum: CrateNum) -> CrateSource;
289     fn extern_mod_stmt_cnum(&self, emod_id: ast::NodeId) -> Option<CrateNum>;
290     fn encode_metadata<'a, 'tcx>(&self,
291                                  tcx: TyCtxt<'a, 'tcx, 'tcx>,
292                                  link_meta: &LinkMeta,
293                                  reachable: &NodeSet)
294                                  -> EncodedMetadata;
295     fn metadata_encoding_version(&self) -> &[u8];
296 }
297
298 // FIXME: find a better place for this?
299 pub fn validate_crate_name(sess: Option<&Session>, s: &str, sp: Option<Span>) {
300     let mut err_count = 0;
301     {
302         let mut say = |s: &str| {
303             match (sp, sess) {
304                 (_, None) => bug!("{}", s),
305                 (Some(sp), Some(sess)) => sess.span_err(sp, s),
306                 (None, Some(sess)) => sess.err(s),
307             }
308             err_count += 1;
309         };
310         if s.is_empty() {
311             say("crate name must not be empty");
312         }
313         for c in s.chars() {
314             if c.is_alphanumeric() { continue }
315             if c == '_'  { continue }
316             say(&format!("invalid character `{}` in crate name: `{}`", c, s));
317         }
318     }
319
320     if err_count > 0 {
321         sess.unwrap().abort_if_errors();
322     }
323 }
324
325 /// A dummy crate store that does not support any non-local crates,
326 /// for test purposes.
327 pub struct DummyCrateStore;
328
329 #[allow(unused_variables)]
330 impl CrateStore for DummyCrateStore {
331     fn crate_data_as_rc_any(&self, krate: CrateNum) -> Rc<Any>
332         { bug!("crate_data_as_rc_any") }
333     // item info
334     fn visibility(&self, def: DefId) -> ty::Visibility { bug!("visibility") }
335     fn visible_parent_map<'a>(&'a self) -> ::std::cell::Ref<'a, DefIdMap<DefId>> {
336         bug!("visible_parent_map")
337     }
338     fn item_generics_cloned(&self, def: DefId) -> ty::Generics
339         { bug!("item_generics_cloned") }
340     fn item_attrs(&self, def_id: DefId) -> Rc<[ast::Attribute]> { bug!("item_attrs") }
341     fn fn_arg_names(&self, did: DefId) -> Vec<ast::Name> { bug!("fn_arg_names") }
342
343     // trait info
344     fn implementations_of_trait(&self, filter: Option<DefId>) -> Vec<DefId> { vec![] }
345
346     // impl info
347     fn impl_defaultness(&self, def: DefId) -> hir::Defaultness { bug!("impl_defaultness") }
348     fn impl_parent(&self, def: DefId) -> Option<DefId> { bug!("impl_parent") }
349
350     // trait/impl-item info
351     fn trait_of_item(&self, def_id: DefId) -> Option<DefId> { bug!("trait_of_item") }
352     fn associated_item_cloned(&self, def: DefId) -> ty::AssociatedItem
353         { bug!("associated_item_cloned") }
354
355     // flags
356     fn is_const_fn(&self, did: DefId) -> bool { bug!("is_const_fn") }
357     fn is_default_impl(&self, impl_did: DefId) -> bool { bug!("is_default_impl") }
358     fn is_foreign_item(&self, did: DefId) -> bool { bug!("is_foreign_item") }
359     fn is_dllimport_foreign_item(&self, id: DefId) -> bool { false }
360     fn is_statically_included_foreign_item(&self, def_id: DefId) -> bool { false }
361     fn is_exported_symbol(&self, def_id: DefId) -> bool { false }
362
363     // crate metadata
364     fn dylib_dependency_formats(&self, cnum: CrateNum)
365                                     -> Vec<(CrateNum, LinkagePreference)>
366         { bug!("dylib_dependency_formats") }
367     fn lang_items(&self, cnum: CrateNum) -> Vec<(DefIndex, usize)>
368         { bug!("lang_items") }
369     fn missing_lang_items(&self, cnum: CrateNum) -> Vec<lang_items::LangItem>
370         { bug!("missing_lang_items") }
371     fn is_staged_api(&self, cnum: CrateNum) -> bool { bug!("is_staged_api") }
372     fn dep_kind(&self, cnum: CrateNum) -> DepKind { bug!("is_explicitly_linked") }
373     fn export_macros(&self, cnum: CrateNum) { bug!("export_macros") }
374     fn is_allocator(&self, cnum: CrateNum) -> bool { bug!("is_allocator") }
375     fn is_panic_runtime(&self, cnum: CrateNum) -> bool { bug!("is_panic_runtime") }
376     fn is_compiler_builtins(&self, cnum: CrateNum) -> bool { bug!("is_compiler_builtins") }
377     fn is_sanitizer_runtime(&self, cnum: CrateNum) -> bool { bug!("is_sanitizer_runtime") }
378     fn panic_strategy(&self, cnum: CrateNum) -> PanicStrategy {
379         bug!("panic_strategy")
380     }
381     fn extern_crate(&self, cnum: CrateNum) -> Option<ExternCrate> { bug!("extern_crate") }
382     fn crate_name(&self, cnum: CrateNum) -> Symbol { bug!("crate_name") }
383     fn original_crate_name(&self, cnum: CrateNum) -> Symbol {
384         bug!("original_crate_name")
385     }
386     fn crate_hash(&self, cnum: CrateNum) -> Svh { bug!("crate_hash") }
387     fn crate_disambiguator(&self, cnum: CrateNum)
388                            -> Symbol { bug!("crate_disambiguator") }
389     fn plugin_registrar_fn(&self, cnum: CrateNum) -> Option<DefId>
390         { bug!("plugin_registrar_fn") }
391     fn derive_registrar_fn(&self, cnum: CrateNum) -> Option<DefId>
392         { bug!("derive_registrar_fn") }
393     fn native_libraries(&self, cnum: CrateNum) -> Vec<NativeLibrary>
394         { bug!("native_libraries") }
395     fn exported_symbols(&self, cnum: CrateNum) -> Vec<DefId> { bug!("exported_symbols") }
396     fn is_no_builtins(&self, cnum: CrateNum) -> bool { bug!("is_no_builtins") }
397
398     // resolve
399     fn retrace_path(&self,
400                     cnum: CrateNum,
401                     path_data: &[DisambiguatedDefPathData])
402                     -> Option<DefId> {
403         None
404     }
405
406     fn def_key(&self, def: DefId) -> DefKey { bug!("def_key") }
407     fn def_path(&self, def: DefId) -> hir_map::DefPath {
408         bug!("relative_def_path")
409     }
410     fn def_path_hash(&self, def: DefId) -> u64 {
411         bug!("wa")
412     }
413     fn struct_field_names(&self, def: DefId) -> Vec<ast::Name> { bug!("struct_field_names") }
414     fn item_children(&self, did: DefId) -> Vec<def::Export> { bug!("item_children") }
415     fn load_macro(&self, did: DefId, sess: &Session) -> LoadedMacro { bug!("load_macro") }
416
417     // misc. metadata
418     fn item_body<'a, 'tcx>(&self, tcx: TyCtxt<'a, 'tcx, 'tcx>, def: DefId)
419                            -> &'tcx hir::Body {
420         bug!("item_body")
421     }
422
423     // This is basically a 1-based range of ints, which is a little
424     // silly - I may fix that.
425     fn crates(&self) -> Vec<CrateNum> { vec![] }
426     fn used_libraries(&self) -> Vec<NativeLibrary> { vec![] }
427     fn used_link_args(&self) -> Vec<String> { vec![] }
428
429     // utility functions
430     fn metadata_filename(&self) -> &str { bug!("metadata_filename") }
431     fn metadata_section_name(&self, target: &Target) -> &str { bug!("metadata_section_name") }
432     fn used_crates(&self, prefer: LinkagePreference) -> Vec<(CrateNum, LibSource)>
433         { vec![] }
434     fn used_crate_source(&self, cnum: CrateNum) -> CrateSource { bug!("used_crate_source") }
435     fn extern_mod_stmt_cnum(&self, emod_id: ast::NodeId) -> Option<CrateNum> { None }
436     fn encode_metadata<'a, 'tcx>(&self,
437                                  tcx: TyCtxt<'a, 'tcx, 'tcx>,
438                                  link_meta: &LinkMeta,
439                                  reachable: &NodeSet)
440                                  -> EncodedMetadata {
441         bug!("encode_metadata")
442     }
443     fn metadata_encoding_version(&self) -> &[u8] { bug!("metadata_encoding_version") }
444 }
445
446 pub trait CrateLoader {
447     fn process_item(&mut self, item: &ast::Item, defs: &Definitions);
448     fn postprocess(&mut self, krate: &ast::Crate);
449 }