]> git.lizzy.rs Git - rust.git/blob - src/librustc_codegen_utils/lib.rs
add rustc_error(delay_span_bug_from_inside_query) attribute
[rust.git] / src / librustc_codegen_utils / lib.rs
1 //! # Note
2 //!
3 //! This API is completely unstable and subject to change.
4
5 #![doc(html_root_url = "https://doc.rust-lang.org/nightly/")]
6
7 #![feature(arbitrary_self_types)]
8 #![feature(box_patterns)]
9 #![feature(box_syntax)]
10 #![feature(core_intrinsics)]
11 #![feature(never_type)]
12 #![feature(nll)]
13 #![feature(in_band_lifetimes)]
14
15 #![recursion_limit="256"]
16
17 #[macro_use]
18 extern crate rustc;
19
20 use rustc::ty::TyCtxt;
21 use rustc::ty::query::Providers;
22 use rustc::hir::def_id::{LOCAL_CRATE, DefId};
23 use syntax::symbol::sym;
24
25 pub mod link;
26 pub mod codegen_backend;
27 pub mod symbol_names;
28 pub mod symbol_names_test;
29
30
31 pub fn trigger_delay_span_bug(tcx: TyCtxt<'_>, key: DefId) {
32     tcx.sess.delay_span_bug(tcx.def_span(key), "compilation successful");
33 }
34
35 /// check for the #[rustc_error] annotation, which forces an
36 /// error in codegen. This is used to write compile-fail tests
37 /// that actually test that compilation succeeds without
38 /// reporting an error.
39 pub fn check_for_rustc_errors_attr(tcx: TyCtxt<'_>) {
40     if let Some((def_id, _)) = tcx.entry_fn(LOCAL_CRATE) {
41         let attrs = &*tcx.get_attrs(def_id);
42         for attr in attrs {
43             if attr.check_name(sym::rustc_error) {
44                 match attr.meta_item_list() {
45                     // check if there is a #[rustc_error(delayed)]
46                     Some(list) => {
47                         if list.iter().any(|list_item| {
48                             list_item.ident().map(|i| i.name) ==
49                                 Some(sym::delay_span_bug_from_inside_query)
50                         }) {
51                             tcx.ensure().trigger_delay_span_bug(def_id);
52                         }
53                     }
54                     // bare #[rustc_error]
55                     None => {
56                         tcx.sess.span_fatal(tcx.def_span(def_id), "compilation successful");
57                     }
58                 }
59             }
60         }
61     }
62 }
63
64 pub fn provide(providers: &mut Providers<'_>) {
65     crate::symbol_names::provide(providers);
66     *providers = Providers {
67         trigger_delay_span_bug,
68         ..*providers
69     };
70 }