2018-11-26 20:59:49 -06:00
|
|
|
// Detecting lib features (i.e., features that are not lang features).
|
2018-07-22 19:20:33 -05:00
|
|
|
//
|
2018-11-26 20:59:49 -06:00
|
|
|
// These are declared using stability attributes (e.g., `#[stable (..)]`
|
2018-07-22 20:20:50 -05:00
|
|
|
// and `#[unstable (..)]`), but are not declared in one single location
|
2018-07-22 19:20:33 -05:00
|
|
|
// (unlike lang features), which means we need to collect them instead.
|
|
|
|
|
2019-12-27 11:52:36 -06:00
|
|
|
use rustc::hir::def_id::LOCAL_CRATE;
|
|
|
|
use rustc::hir::intravisit::{self, NestedVisitorMap, Visitor};
|
|
|
|
use rustc::middle::lib_features::LibFeatures;
|
|
|
|
use rustc::ty::query::Providers;
|
|
|
|
use rustc::ty::TyCtxt;
|
2019-12-22 16:42:04 -06:00
|
|
|
use syntax::ast::{Attribute, MetaItem, MetaItemKind};
|
|
|
|
use syntax::symbol::Symbol;
|
|
|
|
use syntax_pos::{sym, Span};
|
2019-11-11 16:34:57 -06:00
|
|
|
|
|
|
|
use rustc_error_codes::*;
|
2018-07-22 19:20:33 -05:00
|
|
|
|
2019-12-27 11:52:36 -06:00
|
|
|
fn new_lib_features() -> LibFeatures {
|
|
|
|
LibFeatures { stable: Default::default(), unstable: Default::default() }
|
2018-07-22 19:20:33 -05:00
|
|
|
}
|
|
|
|
|
2019-06-11 14:03:44 -05:00
|
|
|
pub struct LibFeatureCollector<'tcx> {
|
2019-06-13 16:48:52 -05:00
|
|
|
tcx: TyCtxt<'tcx>,
|
2018-07-22 19:20:33 -05:00
|
|
|
lib_features: LibFeatures,
|
|
|
|
}
|
|
|
|
|
2019-06-11 14:03:44 -05:00
|
|
|
impl LibFeatureCollector<'tcx> {
|
2019-06-13 16:48:52 -05:00
|
|
|
fn new(tcx: TyCtxt<'tcx>) -> LibFeatureCollector<'tcx> {
|
2019-12-27 11:52:36 -06:00
|
|
|
LibFeatureCollector { tcx, lib_features: new_lib_features() }
|
2018-07-22 19:20:33 -05:00
|
|
|
}
|
|
|
|
|
2018-08-15 11:34:56 -05:00
|
|
|
fn extract(&self, attr: &Attribute) -> Option<(Symbol, Option<Symbol>, Span)> {
|
2019-05-09 18:57:08 -05:00
|
|
|
let stab_attrs = [sym::stable, sym::unstable, sym::rustc_const_unstable];
|
2018-08-15 11:34:56 -05:00
|
|
|
|
2018-11-26 20:59:49 -06:00
|
|
|
// Find a stability attribute (i.e., `#[stable (..)]`, `#[unstable (..)]`,
|
2018-08-15 11:34:56 -05:00
|
|
|
// `#[rustc_const_unstable (..)]`).
|
2019-12-22 16:42:04 -06:00
|
|
|
if let Some(stab_attr) = stab_attrs.iter().find(|stab_attr| attr.check_name(**stab_attr)) {
|
2018-08-15 11:34:56 -05:00
|
|
|
let meta_item = attr.meta();
|
2019-09-26 12:04:05 -05:00
|
|
|
if let Some(MetaItem { kind: MetaItemKind::List(ref metas), .. }) = meta_item {
|
2018-08-15 11:34:56 -05:00
|
|
|
let mut feature = None;
|
|
|
|
let mut since = None;
|
|
|
|
for meta in metas {
|
|
|
|
if let Some(mi) = meta.meta_item() {
|
|
|
|
// Find the `feature = ".."` meta-item.
|
2019-05-07 23:33:06 -05:00
|
|
|
match (mi.name_or_empty(), mi.value_str()) {
|
|
|
|
(sym::feature, val) => feature = val,
|
|
|
|
(sym::since, val) => since = val,
|
2018-08-15 11:34:56 -05:00
|
|
|
_ => {}
|
2018-07-22 19:20:33 -05:00
|
|
|
}
|
|
|
|
}
|
2018-08-15 11:34:56 -05:00
|
|
|
}
|
|
|
|
if let Some(feature) = feature {
|
|
|
|
// This additional check for stability is to make sure we
|
|
|
|
// don't emit additional, irrelevant errors for malformed
|
|
|
|
// attributes.
|
2019-05-07 01:03:44 -05:00
|
|
|
if *stab_attr != sym::stable || since.is_some() {
|
2018-08-15 11:34:56 -05:00
|
|
|
return Some((feature, since, attr.span));
|
2018-07-22 19:20:33 -05:00
|
|
|
}
|
|
|
|
}
|
2018-08-15 11:34:56 -05:00
|
|
|
// We need to iterate over the other attributes, because
|
|
|
|
// `rustc_const_unstable` is not mutually exclusive with
|
|
|
|
// the other stability attributes, so we can't just `break`
|
|
|
|
// here.
|
2018-07-22 19:20:33 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-15 11:34:56 -05:00
|
|
|
None
|
2018-07-22 19:20:33 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn collect_feature(&mut self, feature: Symbol, since: Option<Symbol>, span: Span) {
|
|
|
|
let already_in_stable = self.lib_features.stable.contains_key(&feature);
|
|
|
|
let already_in_unstable = self.lib_features.unstable.contains(&feature);
|
|
|
|
|
|
|
|
match (since, already_in_stable, already_in_unstable) {
|
|
|
|
(Some(since), _, false) => {
|
2018-07-22 19:21:03 -05:00
|
|
|
if let Some(prev_since) = self.lib_features.stable.get(&feature) {
|
|
|
|
if *prev_since != since {
|
2019-11-11 16:34:57 -06:00
|
|
|
self.span_feature_error(
|
|
|
|
span,
|
|
|
|
&format!(
|
|
|
|
"feature `{}` is declared stable since {}, \
|
|
|
|
but was previously declared stable since {}",
|
2019-12-22 16:42:04 -06:00
|
|
|
feature, since, prev_since,
|
2019-11-11 16:34:57 -06:00
|
|
|
),
|
2018-07-22 19:21:03 -05:00
|
|
|
);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-22 19:20:33 -05:00
|
|
|
self.lib_features.stable.insert(feature, since);
|
|
|
|
}
|
|
|
|
(None, false, _) => {
|
|
|
|
self.lib_features.unstable.insert(feature);
|
|
|
|
}
|
|
|
|
(Some(_), _, true) | (None, true, _) => {
|
2019-11-11 16:34:57 -06:00
|
|
|
self.span_feature_error(
|
|
|
|
span,
|
|
|
|
&format!(
|
|
|
|
"feature `{}` is declared {}, but was previously declared {}",
|
|
|
|
feature,
|
|
|
|
if since.is_some() { "stable" } else { "unstable" },
|
|
|
|
if since.is_none() { "stable" } else { "unstable" },
|
|
|
|
),
|
2018-07-22 19:20:33 -05:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-11-11 16:34:57 -06:00
|
|
|
|
|
|
|
fn span_feature_error(&self, span: Span, msg: &str) {
|
2019-12-22 16:42:04 -06:00
|
|
|
struct_span_err!(self.tcx.sess, span, E0711, "{}", &msg,).emit();
|
2019-11-11 16:34:57 -06:00
|
|
|
}
|
2018-07-22 19:20:33 -05:00
|
|
|
}
|
|
|
|
|
2019-06-11 14:03:44 -05:00
|
|
|
impl Visitor<'tcx> for LibFeatureCollector<'tcx> {
|
2018-08-15 11:34:56 -05:00
|
|
|
fn nested_visit_map<'this>(&'this mut self) -> NestedVisitorMap<'this, 'tcx> {
|
2018-12-04 06:45:36 -06:00
|
|
|
NestedVisitorMap::All(&self.tcx.hir())
|
2018-07-22 19:20:33 -05:00
|
|
|
}
|
|
|
|
|
2018-08-15 11:34:56 -05:00
|
|
|
fn visit_attribute(&mut self, attr: &'tcx Attribute) {
|
|
|
|
if let Some((feature, stable, span)) = self.extract(attr) {
|
|
|
|
self.collect_feature(feature, stable, span);
|
|
|
|
}
|
2018-07-22 19:20:33 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-27 11:52:36 -06:00
|
|
|
fn collect(tcx: TyCtxt<'_>) -> LibFeatures {
|
2018-07-22 19:20:33 -05:00
|
|
|
let mut collector = LibFeatureCollector::new(tcx);
|
2019-06-20 17:55:40 -05:00
|
|
|
let krate = tcx.hir().krate();
|
2019-11-28 04:49:29 -06:00
|
|
|
for attr in krate.non_exported_macro_attrs {
|
2019-06-20 17:55:40 -05:00
|
|
|
collector.visit_attribute(attr);
|
|
|
|
}
|
|
|
|
intravisit::walk_crate(&mut collector, krate);
|
2018-07-22 19:20:33 -05:00
|
|
|
collector.lib_features
|
|
|
|
}
|
2019-12-27 11:52:36 -06:00
|
|
|
|
|
|
|
pub fn provide(providers: &mut Providers<'_>) {
|
|
|
|
providers.get_lib_features = |tcx, id| {
|
|
|
|
assert_eq!(id, LOCAL_CRATE);
|
|
|
|
tcx.arena.alloc(collect(tcx))
|
|
|
|
};
|
|
|
|
}
|