2018-06-30 12:19:18 -04:00
|
|
|
//! Parsing and validation of builtin attributes
|
|
|
|
|
2020-01-11 16:21:30 +01:00
|
|
|
use super::{find_by_name, mark_used};
|
2019-02-07 02:33:01 +09:00
|
|
|
|
2020-01-11 17:02:46 +01:00
|
|
|
use rustc_ast_pretty::pprust;
|
2020-01-09 11:18:47 +01:00
|
|
|
use rustc_errors::{struct_span_err, Applicability, Handler};
|
2019-12-22 17:42:04 -05:00
|
|
|
use rustc_feature::{find_gated_cfg, is_builtin_attr_name, Features, GatedCfg};
|
|
|
|
use rustc_macros::HashStable_Generic;
|
2020-01-11 13:15:20 +01:00
|
|
|
use rustc_session::parse::{feature_err, ParseSess};
|
2019-12-31 20:15:40 +03:00
|
|
|
use rustc_span::hygiene::Transparency;
|
|
|
|
use rustc_span::{symbol::sym, symbol::Symbol, Span};
|
2019-11-11 19:33:30 +02:00
|
|
|
use std::num::NonZeroU32;
|
2020-01-11 13:15:20 +01:00
|
|
|
use syntax::ast::{self, Attribute, MetaItem, MetaItemKind, NestedMetaItem};
|
2018-06-30 12:19:18 -04:00
|
|
|
|
2019-11-30 02:20:07 +01:00
|
|
|
pub fn is_builtin_attr(attr: &Attribute) -> bool {
|
2019-12-07 21:28:29 +03:00
|
|
|
attr.is_doc_comment() || attr.ident().filter(|ident| is_builtin_attr_name(ident.name)).is_some()
|
2019-11-30 02:20:07 +01:00
|
|
|
}
|
|
|
|
|
2018-06-30 12:19:18 -04:00
|
|
|
enum AttrError {
|
2019-02-28 09:17:24 +03:00
|
|
|
MultipleItem(String),
|
|
|
|
UnknownMetaItem(String, &'static [&'static str]),
|
2018-06-30 12:19:18 -04:00
|
|
|
MissingSince,
|
|
|
|
MissingFeature,
|
|
|
|
MultipleStabilityLevels,
|
2018-10-20 11:11:01 +08:00
|
|
|
UnsupportedLiteral(&'static str, /* is_bytestr */ bool),
|
2018-06-30 12:19:18 -04:00
|
|
|
}
|
|
|
|
|
2018-10-20 11:11:01 +08:00
|
|
|
fn handle_errors(sess: &ParseSess, span: Span, error: AttrError) {
|
2018-10-09 19:49:18 +08:00
|
|
|
let diag = &sess.span_diagnostic;
|
2018-06-30 12:19:18 -04:00
|
|
|
match error {
|
2019-12-31 21:25:16 +01:00
|
|
|
AttrError::MultipleItem(item) => {
|
|
|
|
struct_span_err!(diag, span, E0538, "multiple '{}' items", item).emit();
|
|
|
|
}
|
2018-06-30 15:33:59 -04:00
|
|
|
AttrError::UnknownMetaItem(item, expected) => {
|
2019-12-22 17:42:04 -05:00
|
|
|
let expected = expected.iter().map(|name| format!("`{}`", name)).collect::<Vec<_>>();
|
2018-06-30 15:33:59 -04:00
|
|
|
struct_span_err!(diag, span, E0541, "unknown meta item '{}'", item)
|
|
|
|
.span_label(span, format!("expected one of {}", expected.join(", ")))
|
|
|
|
.emit();
|
|
|
|
}
|
2019-12-31 21:25:16 +01:00
|
|
|
AttrError::MissingSince => struct_span_err!(diag, span, E0542, "missing 'since'").emit(),
|
|
|
|
AttrError::MissingFeature => {
|
|
|
|
struct_span_err!(diag, span, E0546, "missing 'feature'").emit();
|
|
|
|
}
|
2019-12-22 17:42:04 -05:00
|
|
|
AttrError::MultipleStabilityLevels => {
|
2019-12-31 21:25:16 +01:00
|
|
|
struct_span_err!(diag, span, E0544, "multiple stability levels").emit();
|
2019-12-22 17:42:04 -05:00
|
|
|
}
|
|
|
|
AttrError::UnsupportedLiteral(msg, is_bytestr) => {
|
2018-10-20 11:11:01 +08:00
|
|
|
let mut err = struct_span_err!(diag, span, E0565, "{}", msg);
|
2018-10-09 17:53:59 +08:00
|
|
|
if is_bytestr {
|
2018-10-09 19:49:18 +08:00
|
|
|
if let Ok(lint_str) = sess.source_map().span_to_snippet(span) {
|
2019-01-25 16:03:27 -05:00
|
|
|
err.span_suggestion(
|
2018-10-09 17:53:59 +08:00
|
|
|
span,
|
|
|
|
"consider removing the prefix",
|
2018-10-09 19:49:18 +08:00
|
|
|
format!("{}", &lint_str[1..]),
|
2018-10-09 17:53:59 +08:00
|
|
|
Applicability::MaybeIncorrect,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
err.emit();
|
|
|
|
}
|
2018-06-30 12:19:18 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-20 15:54:53 +11:00
|
|
|
#[derive(Clone, PartialEq, RustcEncodable, RustcDecodable)]
|
2018-06-30 12:19:18 -04:00
|
|
|
pub enum InlineAttr {
|
|
|
|
None,
|
|
|
|
Hint,
|
|
|
|
Always,
|
|
|
|
Never,
|
|
|
|
}
|
|
|
|
|
2019-10-20 15:54:53 +11:00
|
|
|
#[derive(Clone, RustcEncodable, RustcDecodable)]
|
2018-10-27 15:29:06 +03:00
|
|
|
pub enum OptimizeAttr {
|
|
|
|
None,
|
|
|
|
Speed,
|
|
|
|
Size,
|
|
|
|
}
|
|
|
|
|
2018-06-30 12:19:18 -04:00
|
|
|
#[derive(Copy, Clone, PartialEq)]
|
|
|
|
pub enum UnwindAttr {
|
|
|
|
Allowed,
|
|
|
|
Aborts,
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Determine what `#[unwind]` attribute is present in `attrs`, if any.
|
|
|
|
pub fn find_unwind_attr(diagnostic: Option<&Handler>, attrs: &[Attribute]) -> Option<UnwindAttr> {
|
|
|
|
attrs.iter().fold(None, |ia, attr| {
|
2019-05-08 13:21:18 +10:00
|
|
|
if attr.check_name(sym::unwind) {
|
2019-02-26 22:42:50 +03:00
|
|
|
if let Some(meta) = attr.meta() {
|
2019-09-26 18:04:05 +01:00
|
|
|
if let MetaItemKind::List(items) = meta.kind {
|
2019-02-26 22:42:50 +03:00
|
|
|
if items.len() == 1 {
|
2019-05-08 13:21:18 +10:00
|
|
|
if items[0].check_name(sym::allowed) {
|
2019-02-26 22:42:50 +03:00
|
|
|
return Some(UnwindAttr::Allowed);
|
2019-05-08 13:21:18 +10:00
|
|
|
} else if items[0].check_name(sym::aborts) {
|
2019-02-26 22:42:50 +03:00
|
|
|
return Some(UnwindAttr::Aborts);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
diagnostic.map(|d| {
|
2019-05-21 17:47:23 -07:00
|
|
|
struct_span_err!(d, attr.span, E0633, "malformed `unwind` attribute input")
|
|
|
|
.span_label(attr.span, "invalid argument")
|
|
|
|
.span_suggestions(
|
|
|
|
attr.span,
|
|
|
|
"the allowed arguments are `allowed` and `aborts`",
|
2019-12-22 17:42:04 -05:00
|
|
|
(vec!["allowed", "aborts"])
|
|
|
|
.into_iter()
|
2019-05-21 17:47:23 -07:00
|
|
|
.map(|s| format!("#[unwind({})]", s)),
|
|
|
|
Applicability::MachineApplicable,
|
2019-12-22 17:42:04 -05:00
|
|
|
)
|
|
|
|
.emit();
|
2019-02-26 22:42:50 +03:00
|
|
|
});
|
2018-06-30 12:19:18 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-02-26 22:42:50 +03:00
|
|
|
|
|
|
|
ia
|
2018-06-30 12:19:18 -04:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-12-08 01:43:10 +01:00
|
|
|
/// Represents the #[stable], #[unstable], #[rustc_deprecated] attributes.
|
2019-12-22 17:42:04 -05:00
|
|
|
#[derive(
|
|
|
|
RustcEncodable,
|
|
|
|
RustcDecodable,
|
|
|
|
Copy,
|
|
|
|
Clone,
|
|
|
|
Debug,
|
|
|
|
PartialEq,
|
|
|
|
Eq,
|
|
|
|
Hash,
|
|
|
|
HashStable_Generic
|
|
|
|
)]
|
2018-06-30 12:19:18 -04:00
|
|
|
pub struct Stability {
|
|
|
|
pub level: StabilityLevel,
|
|
|
|
pub feature: Symbol,
|
|
|
|
pub rustc_depr: Option<RustcDeprecation>,
|
2019-12-08 01:43:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Represents the #[rustc_const_unstable] and #[rustc_const_stable] attributes.
|
2019-12-22 17:42:04 -05:00
|
|
|
#[derive(
|
|
|
|
RustcEncodable,
|
|
|
|
RustcDecodable,
|
|
|
|
Copy,
|
|
|
|
Clone,
|
|
|
|
Debug,
|
|
|
|
PartialEq,
|
|
|
|
Eq,
|
|
|
|
Hash,
|
|
|
|
HashStable_Generic
|
|
|
|
)]
|
2019-12-08 01:43:10 +01:00
|
|
|
pub struct ConstStability {
|
|
|
|
pub level: StabilityLevel,
|
|
|
|
pub feature: Symbol,
|
2018-08-31 13:50:14 +02:00
|
|
|
/// whether the function has a `#[rustc_promotable]` attribute
|
|
|
|
pub promotable: bool,
|
2019-04-05 14:13:44 -07:00
|
|
|
/// whether the function has a `#[rustc_allow_const_fn_ptr]` attribute
|
|
|
|
pub allow_const_fn_ptr: bool,
|
2018-06-30 12:19:18 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/// The available stability levels.
|
2019-12-22 17:42:04 -05:00
|
|
|
#[derive(
|
|
|
|
RustcEncodable,
|
|
|
|
RustcDecodable,
|
|
|
|
PartialEq,
|
|
|
|
PartialOrd,
|
|
|
|
Copy,
|
|
|
|
Clone,
|
|
|
|
Debug,
|
|
|
|
Eq,
|
|
|
|
Hash,
|
|
|
|
HashStable_Generic
|
|
|
|
)]
|
2018-06-30 12:19:18 -04:00
|
|
|
pub enum StabilityLevel {
|
|
|
|
// Reason for the current stability level and the relevant rust-lang issue
|
2019-11-11 19:33:30 +02:00
|
|
|
Unstable { reason: Option<Symbol>, issue: Option<NonZeroU32>, is_soft: bool },
|
2018-06-30 12:19:18 -04:00
|
|
|
Stable { since: Symbol },
|
|
|
|
}
|
|
|
|
|
|
|
|
impl StabilityLevel {
|
|
|
|
pub fn is_unstable(&self) -> bool {
|
2019-12-22 17:42:04 -05:00
|
|
|
if let StabilityLevel::Unstable { .. } = *self { true } else { false }
|
2018-06-30 12:19:18 -04:00
|
|
|
}
|
|
|
|
pub fn is_stable(&self) -> bool {
|
2019-12-22 17:42:04 -05:00
|
|
|
if let StabilityLevel::Stable { .. } = *self { true } else { false }
|
2018-06-30 12:19:18 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-22 17:42:04 -05:00
|
|
|
#[derive(
|
|
|
|
RustcEncodable,
|
|
|
|
RustcDecodable,
|
|
|
|
PartialEq,
|
|
|
|
PartialOrd,
|
|
|
|
Copy,
|
|
|
|
Clone,
|
|
|
|
Debug,
|
|
|
|
Eq,
|
|
|
|
Hash,
|
|
|
|
HashStable_Generic
|
|
|
|
)]
|
2018-06-30 12:19:18 -04:00
|
|
|
pub struct RustcDeprecation {
|
|
|
|
pub since: Symbol,
|
|
|
|
pub reason: Symbol,
|
2019-01-30 17:47:36 +01:00
|
|
|
/// A text snippet used to completely replace any use of the deprecated item in an expression.
|
|
|
|
pub suggestion: Option<Symbol>,
|
2018-06-30 12:19:18 -04:00
|
|
|
}
|
|
|
|
|
2019-02-08 14:53:55 +01:00
|
|
|
/// Checks if `attrs` contains an attribute like `#![feature(feature_name)]`.
|
2018-06-30 12:19:18 -04:00
|
|
|
/// This will not perform any "sanity checks" on the form of the attributes.
|
2019-05-08 13:21:18 +10:00
|
|
|
pub fn contains_feature_attr(attrs: &[Attribute], feature_name: Symbol) -> bool {
|
2018-06-30 12:19:18 -04:00
|
|
|
attrs.iter().any(|item| {
|
2019-12-22 17:42:04 -05:00
|
|
|
item.check_name(sym::feature)
|
|
|
|
&& item
|
|
|
|
.meta_item_list()
|
|
|
|
.map(|list| list.iter().any(|mi| mi.is_word() && mi.check_name(feature_name)))
|
|
|
|
.unwrap_or(false)
|
2018-06-30 12:19:18 -04:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-06-21 11:50:30 +03:00
|
|
|
/// Collects stability info from all stability attributes in `attrs`.
|
|
|
|
/// Returns `None` if no stability attributes are found.
|
2019-12-22 17:42:04 -05:00
|
|
|
pub fn find_stability(
|
|
|
|
sess: &ParseSess,
|
|
|
|
attrs: &[Attribute],
|
|
|
|
item_sp: Span,
|
|
|
|
) -> (Option<Stability>, Option<ConstStability>) {
|
2018-10-09 19:49:18 +08:00
|
|
|
find_stability_generic(sess, attrs.iter(), item_sp)
|
2018-06-30 12:19:18 -04:00
|
|
|
}
|
|
|
|
|
2019-12-22 17:42:04 -05:00
|
|
|
fn find_stability_generic<'a, I>(
|
|
|
|
sess: &ParseSess,
|
|
|
|
attrs_iter: I,
|
|
|
|
item_sp: Span,
|
|
|
|
) -> (Option<Stability>, Option<ConstStability>)
|
|
|
|
where
|
|
|
|
I: Iterator<Item = &'a Attribute>,
|
2018-06-30 12:19:18 -04:00
|
|
|
{
|
2019-02-07 02:33:01 +09:00
|
|
|
use StabilityLevel::*;
|
2018-06-30 12:19:18 -04:00
|
|
|
|
|
|
|
let mut stab: Option<Stability> = None;
|
|
|
|
let mut rustc_depr: Option<RustcDeprecation> = None;
|
2019-12-08 01:43:10 +01:00
|
|
|
let mut const_stab: Option<ConstStability> = None;
|
2018-08-31 13:50:14 +02:00
|
|
|
let mut promotable = false;
|
2019-04-05 14:13:44 -07:00
|
|
|
let mut allow_const_fn_ptr = false;
|
2018-10-09 19:49:18 +08:00
|
|
|
let diagnostic = &sess.span_diagnostic;
|
2018-06-30 12:19:18 -04:00
|
|
|
|
|
|
|
'outer: for attr in attrs_iter {
|
|
|
|
if ![
|
2019-05-07 16:03:44 +10:00
|
|
|
sym::rustc_deprecated,
|
|
|
|
sym::rustc_const_unstable,
|
2019-12-08 01:43:10 +01:00
|
|
|
sym::rustc_const_stable,
|
2019-05-07 16:03:44 +10:00
|
|
|
sym::unstable,
|
|
|
|
sym::stable,
|
|
|
|
sym::rustc_promotable,
|
|
|
|
sym::rustc_allow_const_fn_ptr,
|
2019-12-22 17:42:04 -05:00
|
|
|
]
|
|
|
|
.iter()
|
|
|
|
.any(|&s| attr.has_name(s))
|
|
|
|
{
|
|
|
|
continue; // not a stability level
|
2018-06-30 12:19:18 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
mark_used(attr);
|
|
|
|
|
|
|
|
let meta = attr.meta();
|
2018-08-31 13:50:14 +02:00
|
|
|
|
2019-10-24 06:33:12 +11:00
|
|
|
if attr.has_name(sym::rustc_promotable) {
|
2018-08-31 13:50:14 +02:00
|
|
|
promotable = true;
|
|
|
|
}
|
2019-10-24 06:33:12 +11:00
|
|
|
if attr.has_name(sym::rustc_allow_const_fn_ptr) {
|
2019-04-05 14:13:44 -07:00
|
|
|
allow_const_fn_ptr = true;
|
|
|
|
}
|
2018-08-22 15:56:37 +02:00
|
|
|
// attributes with data
|
2019-09-26 18:04:05 +01:00
|
|
|
else if let Some(MetaItem { kind: MetaItemKind::List(ref metas), .. }) = meta {
|
2018-06-30 12:19:18 -04:00
|
|
|
let meta = meta.as_ref().unwrap();
|
|
|
|
let get = |meta: &MetaItem, item: &mut Option<Symbol>| {
|
|
|
|
if item.is_some() {
|
2019-10-08 22:17:46 +02:00
|
|
|
handle_errors(
|
|
|
|
sess,
|
|
|
|
meta.span,
|
|
|
|
AttrError::MultipleItem(pprust::path_to_string(&meta.path)),
|
|
|
|
);
|
2019-12-22 17:42:04 -05:00
|
|
|
return false;
|
2018-06-30 12:19:18 -04:00
|
|
|
}
|
|
|
|
if let Some(v) = meta.value_str() {
|
|
|
|
*item = Some(v);
|
|
|
|
true
|
|
|
|
} else {
|
2019-12-31 21:25:16 +01:00
|
|
|
struct_span_err!(diagnostic, meta.span, E0539, "incorrect meta item").emit();
|
2018-06-30 12:19:18 -04:00
|
|
|
false
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
macro_rules! get_meta {
|
|
|
|
($($name:ident),+) => {
|
|
|
|
$(
|
|
|
|
let mut $name = None;
|
|
|
|
)+
|
|
|
|
for meta in metas {
|
|
|
|
if let Some(mi) = meta.meta_item() {
|
2019-05-08 14:33:06 +10:00
|
|
|
match mi.name_or_empty() {
|
2018-06-30 12:19:18 -04:00
|
|
|
$(
|
2019-05-08 14:33:06 +10:00
|
|
|
sym::$name => if !get(mi, &mut $name) { continue 'outer },
|
2018-06-30 12:19:18 -04:00
|
|
|
)+
|
|
|
|
_ => {
|
2018-06-30 15:33:59 -04:00
|
|
|
let expected = &[ $( stringify!($name) ),+ ];
|
|
|
|
handle_errors(
|
2018-10-09 19:49:18 +08:00
|
|
|
sess,
|
2018-06-30 15:33:59 -04:00
|
|
|
mi.span,
|
2019-10-08 22:17:46 +02:00
|
|
|
AttrError::UnknownMetaItem(
|
|
|
|
pprust::path_to_string(&mi.path),
|
|
|
|
expected,
|
|
|
|
),
|
2018-10-09 17:53:59 +08:00
|
|
|
);
|
2018-06-30 12:19:18 -04:00
|
|
|
continue 'outer
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2018-10-20 11:11:01 +08:00
|
|
|
handle_errors(
|
|
|
|
sess,
|
2019-03-03 20:56:24 +03:00
|
|
|
meta.span(),
|
2018-10-20 11:11:01 +08:00
|
|
|
AttrError::UnsupportedLiteral(
|
|
|
|
"unsupported literal",
|
|
|
|
false,
|
|
|
|
),
|
|
|
|
);
|
2018-06-30 12:19:18 -04:00
|
|
|
continue 'outer
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-08 01:43:10 +01:00
|
|
|
let meta_name = meta.name_or_empty();
|
|
|
|
match meta_name {
|
2019-05-08 14:33:06 +10:00
|
|
|
sym::rustc_deprecated => {
|
2018-06-30 12:19:18 -04:00
|
|
|
if rustc_depr.is_some() {
|
2019-12-31 21:25:16 +01:00
|
|
|
struct_span_err!(
|
2019-12-22 17:42:04 -05:00
|
|
|
diagnostic,
|
|
|
|
item_sp,
|
|
|
|
E0540,
|
|
|
|
"multiple rustc_deprecated attributes"
|
2019-12-31 21:25:16 +01:00
|
|
|
)
|
|
|
|
.emit();
|
2019-12-22 17:42:04 -05:00
|
|
|
continue 'outer;
|
2018-06-30 12:19:18 -04:00
|
|
|
}
|
|
|
|
|
2019-01-30 17:47:36 +01:00
|
|
|
get_meta!(since, reason, suggestion);
|
2018-06-30 12:19:18 -04:00
|
|
|
|
|
|
|
match (since, reason) {
|
|
|
|
(Some(since), Some(reason)) => {
|
2019-12-22 17:42:04 -05:00
|
|
|
rustc_depr = Some(RustcDeprecation { since, reason, suggestion })
|
2018-06-30 12:19:18 -04:00
|
|
|
}
|
|
|
|
(None, _) => {
|
2019-03-03 20:56:24 +03:00
|
|
|
handle_errors(sess, attr.span, AttrError::MissingSince);
|
2019-12-22 17:42:04 -05:00
|
|
|
continue;
|
2018-06-30 12:19:18 -04:00
|
|
|
}
|
|
|
|
_ => {
|
2019-12-31 21:25:16 +01:00
|
|
|
struct_span_err!(diagnostic, attr.span, E0543, "missing 'reason'")
|
|
|
|
.emit();
|
2019-12-22 17:42:04 -05:00
|
|
|
continue;
|
2018-06-30 12:19:18 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-12-22 17:42:04 -05:00
|
|
|
sym::rustc_const_unstable | sym::unstable => {
|
2019-12-08 01:43:10 +01:00
|
|
|
if meta_name == sym::unstable && stab.is_some() {
|
|
|
|
handle_errors(sess, attr.span, AttrError::MultipleStabilityLevels);
|
2019-12-22 17:42:04 -05:00
|
|
|
break;
|
2019-12-08 01:43:10 +01:00
|
|
|
} else if meta_name == sym::rustc_const_unstable && const_stab.is_some() {
|
2019-03-03 20:56:24 +03:00
|
|
|
handle_errors(sess, attr.span, AttrError::MultipleStabilityLevels);
|
2019-12-22 17:42:04 -05:00
|
|
|
break;
|
2018-06-30 12:19:18 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
let mut feature = None;
|
|
|
|
let mut reason = None;
|
|
|
|
let mut issue = None;
|
2020-01-22 10:33:46 -05:00
|
|
|
let mut issue_num = None;
|
2019-09-01 14:54:57 +03:00
|
|
|
let mut is_soft = false;
|
2018-06-30 12:19:18 -04:00
|
|
|
for meta in metas {
|
|
|
|
if let Some(mi) = meta.meta_item() {
|
2019-05-08 14:33:06 +10:00
|
|
|
match mi.name_or_empty() {
|
2019-12-22 17:42:04 -05:00
|
|
|
sym::feature => {
|
|
|
|
if !get(mi, &mut feature) {
|
|
|
|
continue 'outer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
sym::reason => {
|
|
|
|
if !get(mi, &mut reason) {
|
|
|
|
continue 'outer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
sym::issue => {
|
|
|
|
if !get(mi, &mut issue) {
|
|
|
|
continue 'outer;
|
|
|
|
}
|
2020-01-22 10:33:46 -05:00
|
|
|
|
|
|
|
// These unwraps are safe because `get` ensures the meta item
|
|
|
|
// is a name/value pair string literal.
|
|
|
|
issue_num = match &*issue.unwrap().as_str() {
|
|
|
|
"none" => None,
|
|
|
|
issue => {
|
2020-02-06 16:19:39 +09:00
|
|
|
let emit_diag = |msg: &str| {
|
|
|
|
struct_span_err!(
|
|
|
|
diagnostic,
|
|
|
|
mi.span,
|
|
|
|
E0545,
|
|
|
|
"`issue` must be a non-zero numeric string \
|
|
|
|
or \"none\"",
|
|
|
|
)
|
|
|
|
.span_label(
|
|
|
|
mi.name_value_literal().unwrap().span,
|
|
|
|
msg,
|
|
|
|
)
|
|
|
|
.emit();
|
|
|
|
};
|
2020-01-22 10:33:46 -05:00
|
|
|
match issue.parse() {
|
2020-02-06 16:19:39 +09:00
|
|
|
Ok(num) if num == 0 => {
|
|
|
|
emit_diag(
|
|
|
|
"`issue` must not be \"0\", \
|
|
|
|
use \"none\" instead",
|
|
|
|
);
|
|
|
|
continue 'outer;
|
2020-01-22 10:33:46 -05:00
|
|
|
}
|
2020-02-06 16:19:39 +09:00
|
|
|
Ok(num) => NonZeroU32::new(num),
|
2020-01-22 10:33:46 -05:00
|
|
|
Err(err) => {
|
2020-02-06 16:19:39 +09:00
|
|
|
emit_diag(&err.to_string());
|
2020-01-22 10:33:46 -05:00
|
|
|
continue 'outer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2019-12-22 17:42:04 -05:00
|
|
|
}
|
2019-09-01 14:54:57 +03:00
|
|
|
sym::soft => {
|
|
|
|
if !mi.is_word() {
|
|
|
|
let msg = "`soft` should not have any arguments";
|
|
|
|
sess.span_diagnostic.span_err(mi.span, msg);
|
|
|
|
}
|
|
|
|
is_soft = true;
|
|
|
|
}
|
2018-06-30 12:19:18 -04:00
|
|
|
_ => {
|
2018-06-30 15:33:59 -04:00
|
|
|
handle_errors(
|
2018-10-09 19:49:18 +08:00
|
|
|
sess,
|
2019-03-03 20:56:24 +03:00
|
|
|
meta.span(),
|
2018-06-30 15:33:59 -04:00
|
|
|
AttrError::UnknownMetaItem(
|
2019-10-08 22:17:46 +02:00
|
|
|
pprust::path_to_string(&mi.path),
|
2019-12-22 17:42:04 -05:00
|
|
|
&["feature", "reason", "issue", "soft"],
|
2018-06-30 15:33:59 -04:00
|
|
|
),
|
|
|
|
);
|
2019-12-22 17:42:04 -05:00
|
|
|
continue 'outer;
|
2018-06-30 12:19:18 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2018-10-20 11:11:01 +08:00
|
|
|
handle_errors(
|
|
|
|
sess,
|
2019-03-03 20:56:24 +03:00
|
|
|
meta.span(),
|
2019-12-22 17:42:04 -05:00
|
|
|
AttrError::UnsupportedLiteral("unsupported literal", false),
|
2018-10-20 11:11:01 +08:00
|
|
|
);
|
2019-12-22 17:42:04 -05:00
|
|
|
continue 'outer;
|
2018-06-30 12:19:18 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
match (feature, reason, issue) {
|
2020-01-22 10:33:46 -05:00
|
|
|
(Some(feature), reason, Some(_)) => {
|
|
|
|
let level = Unstable { reason, issue: issue_num, is_soft };
|
2019-12-08 01:43:10 +01:00
|
|
|
if sym::unstable == meta_name {
|
2019-12-22 17:42:04 -05:00
|
|
|
stab = Some(Stability { level, feature, rustc_depr: None });
|
2019-12-08 01:43:10 +01:00
|
|
|
} else {
|
|
|
|
const_stab = Some(ConstStability {
|
|
|
|
level,
|
|
|
|
feature,
|
|
|
|
promotable: false,
|
|
|
|
allow_const_fn_ptr: false,
|
|
|
|
});
|
|
|
|
}
|
2018-06-30 12:19:18 -04:00
|
|
|
}
|
|
|
|
(None, _, _) => {
|
2019-03-03 20:56:24 +03:00
|
|
|
handle_errors(sess, attr.span, AttrError::MissingFeature);
|
2019-12-22 17:42:04 -05:00
|
|
|
continue;
|
2018-06-30 12:19:18 -04:00
|
|
|
}
|
|
|
|
_ => {
|
2019-12-31 21:25:16 +01:00
|
|
|
struct_span_err!(diagnostic, attr.span, E0547, "missing 'issue'")
|
|
|
|
.emit();
|
2019-12-22 17:42:04 -05:00
|
|
|
continue;
|
2018-06-30 12:19:18 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-12-22 17:42:04 -05:00
|
|
|
sym::rustc_const_stable | sym::stable => {
|
2019-12-08 01:43:10 +01:00
|
|
|
if meta_name == sym::stable && stab.is_some() {
|
|
|
|
handle_errors(sess, attr.span, AttrError::MultipleStabilityLevels);
|
2019-12-22 17:42:04 -05:00
|
|
|
break;
|
|
|
|
} else if meta_name == sym::rustc_const_stable && const_stab.is_some() {
|
2019-03-03 20:56:24 +03:00
|
|
|
handle_errors(sess, attr.span, AttrError::MultipleStabilityLevels);
|
2019-12-22 17:42:04 -05:00
|
|
|
break;
|
2018-06-30 12:19:18 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
let mut feature = None;
|
|
|
|
let mut since = None;
|
|
|
|
for meta in metas {
|
2019-03-03 20:56:24 +03:00
|
|
|
match meta {
|
2019-12-22 17:42:04 -05:00
|
|
|
NestedMetaItem::MetaItem(mi) => match mi.name_or_empty() {
|
|
|
|
sym::feature => {
|
|
|
|
if !get(mi, &mut feature) {
|
|
|
|
continue 'outer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
sym::since => {
|
|
|
|
if !get(mi, &mut since) {
|
|
|
|
continue 'outer;
|
2018-10-09 17:53:59 +08:00
|
|
|
}
|
2018-06-30 12:19:18 -04:00
|
|
|
}
|
2019-12-22 17:42:04 -05:00
|
|
|
_ => {
|
|
|
|
handle_errors(
|
|
|
|
sess,
|
|
|
|
meta.span(),
|
|
|
|
AttrError::UnknownMetaItem(
|
|
|
|
pprust::path_to_string(&mi.path),
|
|
|
|
&["since", "note"],
|
|
|
|
),
|
|
|
|
);
|
|
|
|
continue 'outer;
|
|
|
|
}
|
2018-10-09 19:49:18 +08:00
|
|
|
},
|
2019-03-03 20:56:24 +03:00
|
|
|
NestedMetaItem::Literal(lit) => {
|
2018-10-09 17:53:59 +08:00
|
|
|
handle_errors(
|
2018-10-09 19:49:18 +08:00
|
|
|
sess,
|
2018-10-20 11:11:01 +08:00
|
|
|
lit.span,
|
2019-12-22 17:42:04 -05:00
|
|
|
AttrError::UnsupportedLiteral("unsupported literal", false),
|
2018-10-09 17:53:59 +08:00
|
|
|
);
|
2019-12-22 17:42:04 -05:00
|
|
|
continue 'outer;
|
2018-06-30 12:19:18 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
match (feature, since) {
|
|
|
|
(Some(feature), Some(since)) => {
|
2019-12-22 17:42:04 -05:00
|
|
|
let level = Stable { since };
|
2019-12-08 01:43:10 +01:00
|
|
|
if sym::stable == meta_name {
|
2019-12-22 17:42:04 -05:00
|
|
|
stab = Some(Stability { level, feature, rustc_depr: None });
|
2019-12-08 01:43:10 +01:00
|
|
|
} else {
|
|
|
|
const_stab = Some(ConstStability {
|
|
|
|
level,
|
|
|
|
feature,
|
|
|
|
promotable: false,
|
|
|
|
allow_const_fn_ptr: false,
|
|
|
|
});
|
|
|
|
}
|
2018-06-30 12:19:18 -04:00
|
|
|
}
|
|
|
|
(None, _) => {
|
2019-03-03 20:56:24 +03:00
|
|
|
handle_errors(sess, attr.span, AttrError::MissingFeature);
|
2019-12-22 17:42:04 -05:00
|
|
|
continue;
|
2018-06-30 12:19:18 -04:00
|
|
|
}
|
|
|
|
_ => {
|
2019-03-03 20:56:24 +03:00
|
|
|
handle_errors(sess, attr.span, AttrError::MissingSince);
|
2019-12-22 17:42:04 -05:00
|
|
|
continue;
|
2018-06-30 12:19:18 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-12-22 17:42:04 -05:00
|
|
|
_ => unreachable!(),
|
2018-06-30 12:19:18 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Merge the deprecation info into the stability info
|
|
|
|
if let Some(rustc_depr) = rustc_depr {
|
|
|
|
if let Some(ref mut stab) = stab {
|
|
|
|
stab.rustc_depr = Some(rustc_depr);
|
|
|
|
} else {
|
2019-12-31 21:25:16 +01:00
|
|
|
struct_span_err!(
|
2019-12-22 17:42:04 -05:00
|
|
|
diagnostic,
|
|
|
|
item_sp,
|
|
|
|
E0549,
|
|
|
|
"rustc_deprecated attribute must be paired with \
|
|
|
|
either stable or unstable attribute"
|
2019-12-31 21:25:16 +01:00
|
|
|
)
|
|
|
|
.emit();
|
2018-06-30 12:19:18 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-31 13:50:14 +02:00
|
|
|
// Merge the const-unstable info into the stability info
|
2019-04-05 14:13:44 -07:00
|
|
|
if promotable || allow_const_fn_ptr {
|
2019-12-08 01:43:10 +01:00
|
|
|
if let Some(ref mut stab) = const_stab {
|
2019-04-05 14:13:44 -07:00
|
|
|
stab.promotable = promotable;
|
|
|
|
stab.allow_const_fn_ptr = allow_const_fn_ptr;
|
2018-08-31 13:50:14 +02:00
|
|
|
} else {
|
2019-12-31 21:25:16 +01:00
|
|
|
struct_span_err!(
|
2019-12-22 17:42:04 -05:00
|
|
|
diagnostic,
|
|
|
|
item_sp,
|
|
|
|
E0717,
|
|
|
|
"rustc_promotable and rustc_allow_const_fn_ptr attributes \
|
2019-12-08 01:43:10 +01:00
|
|
|
must be paired with either a rustc_const_unstable or a rustc_const_stable \
|
2019-12-22 17:42:04 -05:00
|
|
|
attribute"
|
2019-12-31 21:25:16 +01:00
|
|
|
)
|
|
|
|
.emit();
|
2018-08-31 13:50:14 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-08 01:43:10 +01:00
|
|
|
(stab, const_stab)
|
2018-06-30 12:19:18 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn find_crate_name(attrs: &[Attribute]) -> Option<Symbol> {
|
2019-05-08 13:21:18 +10:00
|
|
|
super::first_attr_value_str_by_name(attrs, sym::crate_name)
|
2018-06-30 12:19:18 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Tests if a cfg-pattern matches the cfg set
|
|
|
|
pub fn cfg_matches(cfg: &ast::MetaItem, sess: &ParseSess, features: Option<&Features>) -> bool {
|
|
|
|
eval_condition(cfg, sess, &mut |cfg| {
|
2019-11-30 01:57:53 +01:00
|
|
|
let gate = find_gated_cfg(|sym| cfg.check_name(sym));
|
|
|
|
if let (Some(feats), Some(gated_cfg)) = (features, gate) {
|
|
|
|
gate_cfg(&gated_cfg, cfg.span, sess, feats);
|
2018-06-30 12:19:18 -04:00
|
|
|
}
|
2019-12-22 17:42:04 -05:00
|
|
|
let error = |span, msg| {
|
|
|
|
sess.span_diagnostic.span_err(span, msg);
|
|
|
|
true
|
|
|
|
};
|
2019-03-02 19:15:26 +03:00
|
|
|
if cfg.path.segments.len() != 1 {
|
|
|
|
return error(cfg.path.span, "`cfg` predicate key must be an identifier");
|
2018-09-02 00:13:22 +03:00
|
|
|
}
|
2019-09-26 18:04:05 +01:00
|
|
|
match &cfg.kind {
|
2018-09-02 00:13:22 +03:00
|
|
|
MetaItemKind::List(..) => {
|
|
|
|
error(cfg.span, "unexpected parentheses after `cfg` predicate key")
|
|
|
|
}
|
2019-09-26 16:56:53 +01:00
|
|
|
MetaItemKind::NameValue(lit) if !lit.kind.is_str() => {
|
2018-10-09 17:53:59 +08:00
|
|
|
handle_errors(
|
2018-10-09 19:49:18 +08:00
|
|
|
sess,
|
2018-10-20 11:11:01 +08:00
|
|
|
lit.span,
|
|
|
|
AttrError::UnsupportedLiteral(
|
|
|
|
"literal in `cfg` predicate value must be a string",
|
2019-12-22 17:42:04 -05:00
|
|
|
lit.kind.is_bytestr(),
|
2018-10-20 11:11:01 +08:00
|
|
|
),
|
2018-10-09 17:53:59 +08:00
|
|
|
);
|
|
|
|
true
|
2018-09-02 00:13:22 +03:00
|
|
|
}
|
|
|
|
MetaItemKind::NameValue(..) | MetaItemKind::Word => {
|
2019-02-28 09:17:24 +03:00
|
|
|
let ident = cfg.ident().expect("multi-segment cfg predicate");
|
|
|
|
sess.config.contains(&(ident.name, cfg.value_str()))
|
2018-09-02 00:13:22 +03:00
|
|
|
}
|
|
|
|
}
|
2018-06-30 12:19:18 -04:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-11-30 01:57:53 +01:00
|
|
|
fn gate_cfg(gated_cfg: &GatedCfg, cfg_span: Span, sess: &ParseSess, features: &Features) {
|
|
|
|
let (cfg, feature, has_feature) = gated_cfg;
|
|
|
|
if !has_feature(features) && !cfg_span.allows_unstable(*feature) {
|
|
|
|
let explain = format!("`cfg({})` is experimental and subject to change", cfg);
|
2019-11-30 07:40:28 +01:00
|
|
|
feature_err(sess, *feature, cfg_span, &explain).emit()
|
2019-11-30 01:57:53 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-30 12:19:18 -04:00
|
|
|
/// Evaluate a cfg-like condition (with `any` and `all`), using `eval` to
|
|
|
|
/// evaluate individual items.
|
2019-11-30 01:57:53 +01:00
|
|
|
pub fn eval_condition(
|
|
|
|
cfg: &ast::MetaItem,
|
|
|
|
sess: &ParseSess,
|
|
|
|
eval: &mut impl FnMut(&ast::MetaItem) -> bool,
|
|
|
|
) -> bool {
|
2019-09-26 18:04:05 +01:00
|
|
|
match cfg.kind {
|
2018-06-30 12:19:18 -04:00
|
|
|
ast::MetaItemKind::List(ref mis) => {
|
|
|
|
for mi in mis.iter() {
|
|
|
|
if !mi.is_meta_item() {
|
2018-10-20 11:11:01 +08:00
|
|
|
handle_errors(
|
|
|
|
sess,
|
2019-03-03 20:56:24 +03:00
|
|
|
mi.span(),
|
2019-12-22 17:42:04 -05:00
|
|
|
AttrError::UnsupportedLiteral("unsupported literal", false),
|
2018-10-20 11:11:01 +08:00
|
|
|
);
|
2018-06-30 12:19:18 -04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// The unwraps below may look dangerous, but we've already asserted
|
|
|
|
// that they won't fail with the loop above.
|
2019-05-08 14:33:06 +10:00
|
|
|
match cfg.name_or_empty() {
|
2019-12-22 17:42:04 -05:00
|
|
|
sym::any => {
|
|
|
|
mis.iter().any(|mi| eval_condition(mi.meta_item().unwrap(), sess, eval))
|
|
|
|
}
|
|
|
|
sym::all => {
|
|
|
|
mis.iter().all(|mi| eval_condition(mi.meta_item().unwrap(), sess, eval))
|
|
|
|
}
|
2019-05-08 14:33:06 +10:00
|
|
|
sym::not => {
|
2018-06-30 12:19:18 -04:00
|
|
|
if mis.len() != 1 {
|
2019-12-31 21:25:16 +01:00
|
|
|
struct_span_err!(
|
|
|
|
sess.span_diagnostic,
|
|
|
|
cfg.span,
|
|
|
|
E0536,
|
|
|
|
"expected 1 cfg-pattern"
|
|
|
|
)
|
|
|
|
.emit();
|
2018-06-30 12:19:18 -04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
!eval_condition(mis[0].meta_item().unwrap(), sess, eval)
|
2019-12-22 17:42:04 -05:00
|
|
|
}
|
2019-02-28 09:17:24 +03:00
|
|
|
_ => {
|
2019-12-31 21:25:16 +01:00
|
|
|
struct_span_err!(
|
2019-12-22 17:42:04 -05:00
|
|
|
sess.span_diagnostic,
|
|
|
|
cfg.span,
|
|
|
|
E0537,
|
2019-10-08 22:17:46 +02:00
|
|
|
"invalid predicate `{}`",
|
|
|
|
pprust::path_to_string(&cfg.path)
|
2019-12-31 21:25:16 +01:00
|
|
|
)
|
|
|
|
.emit();
|
2018-06-30 12:19:18 -04:00
|
|
|
false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-12-22 17:42:04 -05:00
|
|
|
ast::MetaItemKind::Word | ast::MetaItemKind::NameValue(..) => eval(cfg),
|
2018-06-30 12:19:18 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-09 21:34:12 +01:00
|
|
|
#[derive(RustcEncodable, RustcDecodable, Clone, HashStable_Generic)]
|
2018-06-30 12:19:18 -04:00
|
|
|
pub struct Deprecation {
|
|
|
|
pub since: Option<Symbol>,
|
|
|
|
pub note: Option<Symbol>,
|
|
|
|
}
|
|
|
|
|
2019-02-08 14:53:55 +01:00
|
|
|
/// Finds the deprecation attribute. `None` if none exists.
|
2019-12-22 17:42:04 -05:00
|
|
|
pub fn find_deprecation(
|
|
|
|
sess: &ParseSess,
|
|
|
|
attrs: &[Attribute],
|
|
|
|
item_sp: Span,
|
|
|
|
) -> Option<Deprecation> {
|
2018-10-09 19:49:18 +08:00
|
|
|
find_deprecation_generic(sess, attrs.iter(), item_sp)
|
2018-06-30 12:19:18 -04:00
|
|
|
}
|
|
|
|
|
2019-12-22 17:42:04 -05:00
|
|
|
fn find_deprecation_generic<'a, I>(
|
|
|
|
sess: &ParseSess,
|
|
|
|
attrs_iter: I,
|
|
|
|
item_sp: Span,
|
|
|
|
) -> Option<Deprecation>
|
|
|
|
where
|
|
|
|
I: Iterator<Item = &'a Attribute>,
|
2018-06-30 12:19:18 -04:00
|
|
|
{
|
|
|
|
let mut depr: Option<Deprecation> = None;
|
2018-10-09 19:49:18 +08:00
|
|
|
let diagnostic = &sess.span_diagnostic;
|
2018-06-30 12:19:18 -04:00
|
|
|
|
|
|
|
'outer: for attr in attrs_iter {
|
2019-05-08 13:21:18 +10:00
|
|
|
if !attr.check_name(sym::deprecated) {
|
2019-02-04 12:41:01 -05:00
|
|
|
continue;
|
2018-06-30 12:19:18 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if depr.is_some() {
|
2019-12-31 21:25:16 +01:00
|
|
|
struct_span_err!(diagnostic, item_sp, E0550, "multiple deprecated attributes").emit();
|
2019-12-22 17:42:04 -05:00
|
|
|
break;
|
2018-06-30 12:19:18 -04:00
|
|
|
}
|
|
|
|
|
2019-11-13 19:32:12 +01:00
|
|
|
let meta = match attr.meta() {
|
|
|
|
Some(meta) => meta,
|
|
|
|
None => continue,
|
|
|
|
};
|
2019-09-26 18:04:05 +01:00
|
|
|
depr = match &meta.kind {
|
2019-02-04 12:41:01 -05:00
|
|
|
MetaItemKind::Word => Some(Deprecation { since: None, note: None }),
|
|
|
|
MetaItemKind::NameValue(..) => {
|
2019-12-22 17:42:04 -05:00
|
|
|
meta.value_str().map(|note| Deprecation { since: None, note: Some(note) })
|
2019-02-04 12:41:01 -05:00
|
|
|
}
|
|
|
|
MetaItemKind::List(list) => {
|
|
|
|
let get = |meta: &MetaItem, item: &mut Option<Symbol>| {
|
|
|
|
if item.is_some() {
|
2019-02-28 09:17:24 +03:00
|
|
|
handle_errors(
|
2019-10-08 22:17:46 +02:00
|
|
|
sess,
|
|
|
|
meta.span,
|
|
|
|
AttrError::MultipleItem(pprust::path_to_string(&meta.path)),
|
2019-02-28 09:17:24 +03:00
|
|
|
);
|
2019-12-22 17:42:04 -05:00
|
|
|
return false;
|
2018-10-09 22:54:47 +08:00
|
|
|
}
|
2019-02-04 12:41:01 -05:00
|
|
|
if let Some(v) = meta.value_str() {
|
|
|
|
*item = Some(v);
|
|
|
|
true
|
|
|
|
} else {
|
|
|
|
if let Some(lit) = meta.name_value_literal() {
|
|
|
|
handle_errors(
|
|
|
|
sess,
|
|
|
|
lit.span,
|
|
|
|
AttrError::UnsupportedLiteral(
|
|
|
|
"literal in `deprecated` \
|
|
|
|
value must be a string",
|
2019-12-22 17:42:04 -05:00
|
|
|
lit.kind.is_bytestr(),
|
2019-02-04 12:41:01 -05:00
|
|
|
),
|
|
|
|
);
|
|
|
|
} else {
|
2019-12-31 21:25:16 +01:00
|
|
|
struct_span_err!(diagnostic, meta.span, E0551, "incorrect meta item")
|
|
|
|
.emit();
|
2019-02-04 12:41:01 -05:00
|
|
|
}
|
2018-10-09 22:54:47 +08:00
|
|
|
|
2019-02-04 12:41:01 -05:00
|
|
|
false
|
|
|
|
}
|
|
|
|
};
|
2018-06-30 12:19:18 -04:00
|
|
|
|
2019-02-04 12:41:01 -05:00
|
|
|
let mut since = None;
|
|
|
|
let mut note = None;
|
|
|
|
for meta in list {
|
2019-03-03 20:56:24 +03:00
|
|
|
match meta {
|
2019-12-22 17:42:04 -05:00
|
|
|
NestedMetaItem::MetaItem(mi) => match mi.name_or_empty() {
|
|
|
|
sym::since => {
|
|
|
|
if !get(mi, &mut since) {
|
|
|
|
continue 'outer;
|
2019-02-04 12:41:01 -05:00
|
|
|
}
|
2018-10-09 17:53:59 +08:00
|
|
|
}
|
2019-12-22 17:42:04 -05:00
|
|
|
sym::note => {
|
|
|
|
if !get(mi, &mut note) {
|
|
|
|
continue 'outer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => {
|
|
|
|
handle_errors(
|
|
|
|
sess,
|
|
|
|
meta.span(),
|
|
|
|
AttrError::UnknownMetaItem(
|
|
|
|
pprust::path_to_string(&mi.path),
|
|
|
|
&["since", "note"],
|
|
|
|
),
|
|
|
|
);
|
|
|
|
continue 'outer;
|
|
|
|
}
|
|
|
|
},
|
2019-03-03 20:56:24 +03:00
|
|
|
NestedMetaItem::Literal(lit) => {
|
2019-02-04 12:41:01 -05:00
|
|
|
handle_errors(
|
|
|
|
sess,
|
|
|
|
lit.span,
|
|
|
|
AttrError::UnsupportedLiteral(
|
|
|
|
"item in `deprecated` must be a key/value pair",
|
|
|
|
false,
|
|
|
|
),
|
|
|
|
);
|
2019-12-22 17:42:04 -05:00
|
|
|
continue 'outer;
|
2019-02-04 12:41:01 -05:00
|
|
|
}
|
2018-10-09 17:53:59 +08:00
|
|
|
}
|
2018-06-30 12:19:18 -04:00
|
|
|
}
|
|
|
|
|
2019-02-04 12:41:01 -05:00
|
|
|
Some(Deprecation { since, note })
|
|
|
|
}
|
|
|
|
};
|
2018-06-30 12:19:18 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
depr
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(PartialEq, Debug, RustcEncodable, RustcDecodable, Copy, Clone)]
|
|
|
|
pub enum ReprAttr {
|
|
|
|
ReprInt(IntType),
|
|
|
|
ReprC,
|
|
|
|
ReprPacked(u32),
|
|
|
|
ReprSimd,
|
|
|
|
ReprTransparent,
|
|
|
|
ReprAlign(u32),
|
|
|
|
}
|
|
|
|
|
2019-11-09 20:56:19 +01:00
|
|
|
#[derive(Eq, PartialEq, Debug, RustcEncodable, RustcDecodable, Copy, Clone, HashStable_Generic)]
|
2018-06-30 12:19:18 -04:00
|
|
|
pub enum IntType {
|
|
|
|
SignedInt(ast::IntTy),
|
2019-12-22 17:42:04 -05:00
|
|
|
UnsignedInt(ast::UintTy),
|
2018-06-30 12:19:18 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
impl IntType {
|
|
|
|
#[inline]
|
|
|
|
pub fn is_signed(self) -> bool {
|
2019-02-07 02:33:01 +09:00
|
|
|
use IntType::*;
|
2018-06-30 12:19:18 -04:00
|
|
|
|
|
|
|
match self {
|
|
|
|
SignedInt(..) => true,
|
2019-12-22 17:42:04 -05:00
|
|
|
UnsignedInt(..) => false,
|
2018-06-30 12:19:18 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Parse #[repr(...)] forms.
|
|
|
|
///
|
|
|
|
/// Valid repr contents: any of the primitive integral type names (see
|
|
|
|
/// `int_type_of_word`, below) to specify enum discriminant type; `C`, to use
|
|
|
|
/// the same discriminant size that the corresponding C enum would or C
|
|
|
|
/// structure layout, `packed` to remove padding, and `transparent` to elegate representation
|
|
|
|
/// concerns to the only non-ZST field.
|
2018-10-09 19:49:18 +08:00
|
|
|
pub fn find_repr_attrs(sess: &ParseSess, attr: &Attribute) -> Vec<ReprAttr> {
|
2019-02-07 02:33:01 +09:00
|
|
|
use ReprAttr::*;
|
2018-06-30 12:19:18 -04:00
|
|
|
|
|
|
|
let mut acc = Vec::new();
|
2018-10-09 19:49:18 +08:00
|
|
|
let diagnostic = &sess.span_diagnostic;
|
2019-10-24 06:33:12 +11:00
|
|
|
if attr.has_name(sym::repr) {
|
2018-06-30 12:19:18 -04:00
|
|
|
if let Some(items) = attr.meta_item_list() {
|
|
|
|
mark_used(attr);
|
|
|
|
for item in items {
|
|
|
|
if !item.is_meta_item() {
|
2018-10-20 11:11:01 +08:00
|
|
|
handle_errors(
|
|
|
|
sess,
|
2019-03-03 20:56:24 +03:00
|
|
|
item.span(),
|
2018-10-20 11:11:01 +08:00
|
|
|
AttrError::UnsupportedLiteral(
|
|
|
|
"meta item in `repr` must be an identifier",
|
|
|
|
false,
|
|
|
|
),
|
|
|
|
);
|
2019-12-22 17:42:04 -05:00
|
|
|
continue;
|
2018-06-30 12:19:18 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
let mut recognised = false;
|
2019-02-28 09:17:24 +03:00
|
|
|
if item.is_word() {
|
2019-05-08 14:33:06 +10:00
|
|
|
let hint = match item.name_or_empty() {
|
|
|
|
sym::C => Some(ReprC),
|
|
|
|
sym::packed => Some(ReprPacked(1)),
|
|
|
|
sym::simd => Some(ReprSimd),
|
|
|
|
sym::transparent => Some(ReprTransparent),
|
2019-03-17 14:17:47 +03:00
|
|
|
name => int_type_of_word(name).map(ReprInt),
|
2018-06-30 12:19:18 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
if let Some(h) = hint {
|
|
|
|
recognised = true;
|
|
|
|
acc.push(h);
|
|
|
|
}
|
|
|
|
} else if let Some((name, value)) = item.name_value_literal() {
|
|
|
|
let parse_alignment = |node: &ast::LitKind| -> Result<u32, &'static str> {
|
|
|
|
if let ast::LitKind::Int(literal, ast::LitIntType::Unsuffixed) = node {
|
|
|
|
if literal.is_power_of_two() {
|
|
|
|
// rustc::ty::layout::Align restricts align to <= 2^29
|
|
|
|
if *literal <= 1 << 29 {
|
|
|
|
Ok(*literal as u32)
|
|
|
|
} else {
|
|
|
|
Err("larger than 2^29")
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Err("not a power of two")
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Err("not an unsuffixed integer")
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
let mut literal_error = None;
|
2019-05-07 16:03:44 +10:00
|
|
|
if name == sym::align {
|
2018-06-30 12:19:18 -04:00
|
|
|
recognised = true;
|
2019-09-26 16:56:53 +01:00
|
|
|
match parse_alignment(&value.kind) {
|
2018-06-30 12:19:18 -04:00
|
|
|
Ok(literal) => acc.push(ReprAlign(literal)),
|
2019-12-22 17:42:04 -05:00
|
|
|
Err(message) => literal_error = Some(message),
|
2018-06-30 12:19:18 -04:00
|
|
|
};
|
2019-12-22 17:42:04 -05:00
|
|
|
} else if name == sym::packed {
|
2018-06-30 12:19:18 -04:00
|
|
|
recognised = true;
|
2019-09-26 16:56:53 +01:00
|
|
|
match parse_alignment(&value.kind) {
|
2018-06-30 12:19:18 -04:00
|
|
|
Ok(literal) => acc.push(ReprPacked(literal)),
|
2019-12-22 17:42:04 -05:00
|
|
|
Err(message) => literal_error = Some(message),
|
2018-06-30 12:19:18 -04:00
|
|
|
};
|
|
|
|
}
|
|
|
|
if let Some(literal_error) = literal_error {
|
2019-12-31 21:25:16 +01:00
|
|
|
struct_span_err!(
|
2019-12-22 17:42:04 -05:00
|
|
|
diagnostic,
|
|
|
|
item.span(),
|
|
|
|
E0589,
|
|
|
|
"invalid `repr(align)` attribute: {}",
|
|
|
|
literal_error
|
2019-12-31 21:25:16 +01:00
|
|
|
)
|
|
|
|
.emit();
|
2018-06-30 12:19:18 -04:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if let Some(meta_item) = item.meta_item() {
|
2019-05-08 13:21:18 +10:00
|
|
|
if meta_item.check_name(sym::align) {
|
2019-09-26 18:04:05 +01:00
|
|
|
if let MetaItemKind::NameValue(ref value) = meta_item.kind {
|
2018-06-30 12:19:18 -04:00
|
|
|
recognised = true;
|
2019-12-22 17:42:04 -05:00
|
|
|
let mut err = struct_span_err!(
|
|
|
|
diagnostic,
|
|
|
|
item.span(),
|
|
|
|
E0693,
|
|
|
|
"incorrect `repr(align)` attribute format"
|
|
|
|
);
|
2019-09-26 16:56:53 +01:00
|
|
|
match value.kind {
|
2018-06-30 12:19:18 -04:00
|
|
|
ast::LitKind::Int(int, ast::LitIntType::Unsuffixed) => {
|
2019-01-25 16:03:27 -05:00
|
|
|
err.span_suggestion(
|
2019-03-03 20:56:24 +03:00
|
|
|
item.span(),
|
2018-06-30 12:19:18 -04:00
|
|
|
"use parentheses instead",
|
|
|
|
format!("align({})", int),
|
2019-12-22 17:42:04 -05:00
|
|
|
Applicability::MachineApplicable,
|
2018-06-30 12:19:18 -04:00
|
|
|
);
|
|
|
|
}
|
|
|
|
ast::LitKind::Str(s, _) => {
|
2019-01-25 16:03:27 -05:00
|
|
|
err.span_suggestion(
|
2019-03-03 20:56:24 +03:00
|
|
|
item.span(),
|
2018-06-30 12:19:18 -04:00
|
|
|
"use parentheses instead",
|
|
|
|
format!("align({})", s),
|
2019-12-22 17:42:04 -05:00
|
|
|
Applicability::MachineApplicable,
|
2018-06-30 12:19:18 -04:00
|
|
|
);
|
|
|
|
}
|
|
|
|
_ => {}
|
|
|
|
}
|
|
|
|
err.emit();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if !recognised {
|
|
|
|
// Not a word we recognize
|
2019-12-31 21:25:16 +01:00
|
|
|
struct_span_err!(
|
|
|
|
diagnostic,
|
|
|
|
item.span(),
|
|
|
|
E0552,
|
|
|
|
"unrecognized representation hint"
|
|
|
|
)
|
|
|
|
.emit();
|
2018-06-30 12:19:18 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
acc
|
|
|
|
}
|
|
|
|
|
2019-05-08 14:33:06 +10:00
|
|
|
fn int_type_of_word(s: Symbol) -> Option<IntType> {
|
2019-02-07 02:33:01 +09:00
|
|
|
use IntType::*;
|
2018-06-30 12:19:18 -04:00
|
|
|
|
|
|
|
match s {
|
2019-05-08 14:33:06 +10:00
|
|
|
sym::i8 => Some(SignedInt(ast::IntTy::I8)),
|
|
|
|
sym::u8 => Some(UnsignedInt(ast::UintTy::U8)),
|
|
|
|
sym::i16 => Some(SignedInt(ast::IntTy::I16)),
|
|
|
|
sym::u16 => Some(UnsignedInt(ast::UintTy::U16)),
|
|
|
|
sym::i32 => Some(SignedInt(ast::IntTy::I32)),
|
|
|
|
sym::u32 => Some(UnsignedInt(ast::UintTy::U32)),
|
|
|
|
sym::i64 => Some(SignedInt(ast::IntTy::I64)),
|
|
|
|
sym::u64 => Some(UnsignedInt(ast::UintTy::U64)),
|
|
|
|
sym::i128 => Some(SignedInt(ast::IntTy::I128)),
|
|
|
|
sym::u128 => Some(UnsignedInt(ast::UintTy::U128)),
|
|
|
|
sym::isize => Some(SignedInt(ast::IntTy::Isize)),
|
|
|
|
sym::usize => Some(UnsignedInt(ast::UintTy::Usize)),
|
2019-12-22 17:42:04 -05:00
|
|
|
_ => None,
|
2018-06-30 12:19:18 -04:00
|
|
|
}
|
|
|
|
}
|
2019-06-30 01:12:04 +03:00
|
|
|
|
|
|
|
pub enum TransparencyError {
|
|
|
|
UnknownTransparency(Symbol, Span),
|
|
|
|
MultipleTransparencyAttrs(Span, Span),
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn find_transparency(
|
2019-12-22 17:42:04 -05:00
|
|
|
attrs: &[Attribute],
|
|
|
|
is_legacy: bool,
|
2019-06-30 01:12:04 +03:00
|
|
|
) -> (Transparency, Option<TransparencyError>) {
|
|
|
|
let mut transparency = None;
|
|
|
|
let mut error = None;
|
|
|
|
for attr in attrs {
|
|
|
|
if attr.check_name(sym::rustc_macro_transparency) {
|
|
|
|
if let Some((_, old_span)) = transparency {
|
|
|
|
error = Some(TransparencyError::MultipleTransparencyAttrs(old_span, attr.span));
|
|
|
|
break;
|
|
|
|
} else if let Some(value) = attr.value_str() {
|
2019-12-22 17:42:04 -05:00
|
|
|
transparency = Some((
|
|
|
|
match &*value.as_str() {
|
|
|
|
"transparent" => Transparency::Transparent,
|
|
|
|
"semitransparent" => Transparency::SemiTransparent,
|
|
|
|
"opaque" => Transparency::Opaque,
|
|
|
|
_ => {
|
|
|
|
error = Some(TransparencyError::UnknownTransparency(value, attr.span));
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
attr.span,
|
|
|
|
));
|
2019-06-30 01:12:04 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
let fallback = if is_legacy { Transparency::SemiTransparent } else { Transparency::Opaque };
|
|
|
|
(transparency.map_or(fallback, |t| t.0), error)
|
|
|
|
}
|
2020-01-11 16:21:30 +01:00
|
|
|
|
|
|
|
pub fn allow_internal_unstable<'a>(
|
|
|
|
attrs: &[Attribute],
|
|
|
|
diag: &'a rustc_errors::Handler,
|
|
|
|
) -> Option<impl Iterator<Item = Symbol> + 'a> {
|
|
|
|
let attr = find_by_name(attrs, sym::allow_internal_unstable)?;
|
|
|
|
let list = attr.meta_item_list().or_else(|| {
|
|
|
|
diag.span_err(attr.span, "allow_internal_unstable expects list of feature names");
|
|
|
|
None
|
|
|
|
})?;
|
|
|
|
Some(list.into_iter().filter_map(move |it| {
|
|
|
|
let name = it.ident().map(|ident| ident.name);
|
|
|
|
if name.is_none() {
|
|
|
|
diag.span_err(it.span(), "`allow_internal_unstable` expects feature names");
|
|
|
|
}
|
|
|
|
name
|
|
|
|
}))
|
|
|
|
}
|