feature_gate.rs 43.6 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
// Copyright 2013 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.

//! Feature gating
//!
L
Luke Gallagher 已提交
13
//! This module implements the gating necessary for preventing certain compiler
14 15 16 17 18
//! features from being used by default. This module will crawl a pre-expanded
//! AST to ensure that there are no features which are used that are not
//! enabled.
//!
//! Features are enabled in programs via the crate-level attributes of
19
//! `#![feature(...)]` with a comma-separated list of features.
B
Brian Anderson 已提交
20 21 22 23
//!
//! For the purpose of future feature-tracking, once code for detection of feature
//! gate usage is added, *do not remove it again* even once the feature
//! becomes stable.
G
GuillaumeGomez 已提交
24

S
Steven Fackler 已提交
25
use self::Status::*;
26
use self::AttributeType::*;
27
use self::AttributeGate::*;
28

N
Niko Matsakis 已提交
29
use abi::Abi;
N
Nick Cameron 已提交
30 31 32 33
use ast::NodeId;
use ast;
use attr;
use attr::AttrMetaMethods;
C
Corey Richardson 已提交
34
use codemap::{CodeMap, Span};
N
Nick Cameron 已提交
35 36
use diagnostic::SpanHandler;
use visit;
37
use visit::{FnKind, Visitor};
38
use parse::token::{self, InternedString};
39

40
use std::ascii::AsciiExt;
41
use std::cmp;
42

B
Brian Anderson 已提交
43 44 45 46 47 48 49
// If you change this list without updating src/doc/reference.md, @cmr will be sad
// Don't ever remove anything from this list; set them to 'Removed'.
// The version numbers here correspond to the version in which the current status
// was set. This is most important for knowing when a particular feature became
// stable (active).
// NB: The featureck.py script parses this information directly out of the source
// so take care when modifying it.
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
const KNOWN_FEATURES: &'static [(&'static str, &'static str, Option<u32>, Status)] = &[
    ("globs", "1.0.0", None, Accepted),
    ("macro_rules", "1.0.0", None, Accepted),
    ("struct_variant", "1.0.0", None, Accepted),
    ("asm", "1.0.0", None, Active),
    ("managed_boxes", "1.0.0", None, Removed),
    ("non_ascii_idents", "1.0.0", None, Active),
    ("thread_local", "1.0.0", None, Active),
    ("link_args", "1.0.0", None, Active),
    ("plugin_registrar", "1.0.0", None, Active),
    ("log_syntax", "1.0.0", None, Active),
    ("trace_macros", "1.0.0", None, Active),
    ("concat_idents", "1.0.0", None, Active),
    ("intrinsics", "1.0.0", None, Active),
    ("lang_items", "1.0.0", None, Active),

    ("simd", "1.0.0", Some(27731), Active),
    ("default_type_params", "1.0.0", None, Accepted),
    ("quote", "1.0.0", None, Active),
    ("link_llvm_intrinsics", "1.0.0", None, Active),
    ("linkage", "1.0.0", None, Active),
    ("struct_inherit", "1.0.0", None, Removed),

    ("quad_precision_float", "1.0.0", None, Removed),

    ("rustc_diagnostic_macros", "1.0.0", None, Active),
    ("unboxed_closures", "1.0.0", None, Active),
    ("reflect", "1.0.0", None, Active),
    ("import_shadowing", "1.0.0", None, Removed),
    ("advanced_slice_patterns", "1.0.0", None, Active),
    ("tuple_indexing", "1.0.0", None, Accepted),
    ("associated_types", "1.0.0", None, Accepted),
    ("visible_private_types", "1.0.0", None, Active),
    ("slicing_syntax", "1.0.0", None, Accepted),
    ("box_syntax", "1.0.0", None, Active),
    ("placement_in_syntax", "1.0.0", None, Active),
    ("pushpop_unsafe", "1.2.0", None, Active),
    ("on_unimplemented", "1.0.0", None, Active),
    ("simd_ffi", "1.0.0", None, Active),
    ("allocator", "1.0.0", None, Active),
    ("needs_allocator", "1.4.0", None, Active),
    ("linked_from", "1.3.0", None, Active),

    ("if_let", "1.0.0", None, Accepted),
    ("while_let", "1.0.0", None, Accepted),

    ("plugin", "1.0.0", None, Active),
    ("start", "1.0.0", None, Active),
    ("main", "1.0.0", None, Active),

    ("fundamental", "1.0.0", None, Active),
101

102 103
    // A temporary feature gate used to enable parser extensions needed
    // to bootstrap fix for #5723.
104
    ("issue_5723_bootstrap", "1.0.0", None, Accepted),
105

106
    // A way to temporarily opt out of opt in copy. This will *never* be accepted.
107
    ("opt_out_copy", "1.0.0", None, Removed),
108

109
    // OIBIT specific features
110
    ("optin_builtin_traits", "1.0.0", None, Active),
111

J
Joseph Crail 已提交
112
    // macro reexport needs more discussion and stabilization
113
    ("macro_reexport", "1.0.0", None, Active),
114

115 116
    // These are used to test this portion of the compiler, they don't actually
    // mean anything
117 118
    ("test_accepted_feature", "1.0.0", None, Accepted),
    ("test_removed_feature", "1.0.0", None, Removed),
119 120

    // Allows use of #[staged_api]
121
    ("staged_api", "1.0.0", None, Active),
122 123

    // Allows using items which are missing stability attributes
124
    ("unmarked_api", "1.0.0", None, Active),
K
Keegan McAllister 已提交
125 126

    // Allows using #![no_std]
127
    ("no_std", "1.0.0", None, Active),
128

A
Alex Crichton 已提交
129
    // Allows using #![no_core]
130
    ("no_core", "1.3.0", None, Active),
A
Alex Crichton 已提交
131

132
    // Allows using `box` in patterns; RFC 469
133
    ("box_patterns", "1.0.0", None, Active),
134

135 136
    // Allows using the unsafe_no_drop_flag attribute (unlikely to
    // switch to Accepted; see RFC 320)
137
    ("unsafe_no_drop_flag", "1.0.0", None, Active),
138 139

    // Allows the use of custom attributes; RFC 572
140
    ("custom_attribute", "1.0.0", None, Active),
M
Manish Goregaokar 已提交
141

142 143
    // Allows the use of #[derive(Anything)] as sugar for
    // #[derive_Anything].
144
    ("custom_derive", "1.0.0", None, Active),
145

M
Manish Goregaokar 已提交
146
    // Allows the use of rustc_* attributes; RFC 572
147
    ("rustc_attrs", "1.0.0", None, Active),
H
Huon Wilson 已提交
148

149 150 151 152
    // Allows the use of #[allow_internal_unstable]. This is an
    // attribute on macro_rules! and can't use the attribute handling
    // below (it has to be checked before expansion possibly makes
    // macros disappear).
153
    ("allow_internal_unstable", "1.0.0", None, Active),
154 155

    // #23121. Array patterns have some hazards yet.
156
    ("slice_patterns", "1.0.0", None, Active),
157 158

    // Allows use of unary negate on unsigned integers, e.g. -e for e: u8
159
    ("negate_unsigned", "1.0.0", None, Active),
160 161 162

    // Allows the definition of associated constants in `trait` or `impl`
    // blocks.
163
    ("associated_consts", "1.0.0", None, Active),
N
Niko Matsakis 已提交
164 165

    // Allows the definition of `const fn` functions.
166
    ("const_fn", "1.2.0", None, Active),
167 168

    // Allows using #[prelude_import] on glob `use` items.
169
    ("prelude_import", "1.2.0", None, Active),
170 171

    // Allows the definition recursive static items.
172
    ("static_recursion", "1.3.0", None, Active),
B
Brian Anderson 已提交
173 174

    // Allows default type parameters to influence type inference.
175
    ("default_type_parameter_fallback", "1.3.0", None, Active),
176 177

    // Allows associated type defaults
178
    ("associated_type_defaults", "1.2.0", None, Active),
J
Jared Roesch 已提交
179 180
    // Allows macros to appear in the type position.

181
    ("type_macros", "1.3.0", Some(27336), Active),
182 183

    // allow `repr(simd)`, and importing the various simd intrinsics
184
    ("repr_simd", "1.4.0", Some(27731), Active),
185 186

    // Allows cfg(target_feature = "...").
187
    ("cfg_target_feature", "1.4.0", None, Active),
188 189

    // allow `extern "platform-intrinsic" { ... }`
190
    ("platform_intrinsics", "1.4.0", Some(27731), Active),
191 192 193

    // allow `#[unwind]`
    ("unwind_attributes", "1.4.0", None, Active),
V
Vadim Petrochenkov 已提交
194 195 196

    // allow empty structs/enum variants with braces
    ("braced_empty_structs", "1.5.0", None, Active),
197 198 199

    // allow overloading augmented assignment operations like `a += b`
    ("augmented_assignments", "1.5.0", None, Active),
200 201 202 203 204 205

    // allow `#[no_debug]`
    ("no_debug", "1.5.0", None, Active),

    // allow `#[omit_gdb_pretty_printer_section]`
    ("omit_gdb_pretty_printer_section", "1.5.0", None, Active),
206
];
207
// (changing above list without updating src/doc/reference.md makes @cmr sad)
208 209 210 211 212 213 214 215 216 217 218 219 220

enum Status {
    /// Represents an active feature that is currently being implemented or
    /// currently being considered for addition/removal.
    Active,

    /// Represents a feature which has since been removed (it was once Active)
    Removed,

    /// This language feature has since been Accepted (it was once Active)
    Accepted,
}

221
// Attributes that have a special meaning to rustc or rustdoc
222
pub const KNOWN_ATTRIBUTES: &'static [(&'static str, AttributeType, AttributeGate)] = &[
223 224
    // Normal attributes

225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254
    ("warn", Normal, Ungated),
    ("allow", Normal, Ungated),
    ("forbid", Normal, Ungated),
    ("deny", Normal, Ungated),

    ("macro_reexport", Normal, Ungated),
    ("macro_use", Normal, Ungated),
    ("macro_export", Normal, Ungated),
    ("plugin_registrar", Normal, Ungated),

    ("cfg", Normal, Ungated),
    ("cfg_attr", Normal, Ungated),
    ("main", Normal, Ungated),
    ("start", Normal, Ungated),
    ("test", Normal, Ungated),
    ("bench", Normal, Ungated),
    ("simd", Normal, Ungated),
    ("repr", Normal, Ungated),
    ("path", Normal, Ungated),
    ("abi", Normal, Ungated),
    ("automatically_derived", Normal, Ungated),
    ("no_mangle", Normal, Ungated),
    ("no_link", Normal, Ungated),
    ("derive", Normal, Ungated),
    ("should_panic", Normal, Ungated),
    ("ignore", Normal, Ungated),
    ("no_implicit_prelude", Normal, Ungated),
    ("reexport_test_harness_main", Normal, Ungated),
    ("link_args", Normal, Ungated),
    ("macro_escape", Normal, Ungated),
255

A
Alex Crichton 已提交
256
    // Not used any more, but we can't feature gate it
257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289
    ("no_stack_check", Normal, Ungated),

    ("staged_api", CrateLevel, Gated("staged_api",
                                     "staged_api is for use by rustc only")),
    ("plugin", CrateLevel, Gated("plugin",
                                 "compiler plugins are experimental \
                                  and possibly buggy")),
    ("no_std", CrateLevel, Gated("no_std",
                                 "no_std is experimental")),
    ("no_core", CrateLevel, Gated("no_core",
                                  "no_core is experimental")),
    ("lang", Normal, Gated("lang_items",
                           "language items are subject to change")),
    ("linkage", Whitelisted, Gated("linkage",
                                   "the `linkage` attribute is experimental \
                                    and not portable across platforms")),
    ("thread_local", Whitelisted, Gated("thread_local",
                                        "`#[thread_local]` is an experimental feature, and does \
                                         not currently handle destructors. There is no \
                                         corresponding `#[task_local]` mapping to the task \
                                         model")),

    ("rustc_on_unimplemented", Normal, Gated("on_unimplemented",
                                             "the `#[rustc_on_unimplemented]` attribute \
                                              is an experimental feature")),
    ("allocator", Whitelisted, Gated("allocator",
                                     "the `#[allocator]` attribute is an experimental feature")),
    ("needs_allocator", Normal, Gated("needs_allocator",
                                      "the `#[needs_allocator]` \
                                       attribute is an experimental \
                                       feature")),
    ("rustc_variance", Normal, Gated("rustc_attrs",
                                     "the `#[rustc_variance]` attribute \
N
Niko Matsakis 已提交
290 291
                                      is just used for rustc unit tests \
                                      and will never be stable")),
292 293
    ("rustc_error", Whitelisted, Gated("rustc_attrs",
                                       "the `#[rustc_error]` attribute \
N
Niko Matsakis 已提交
294 295
                                        is just used for rustc unit tests \
                                        and will never be stable")),
296 297
    ("rustc_move_fragments", Normal, Gated("rustc_attrs",
                                           "the `#[rustc_move_fragments]` attribute \
N
Niko Matsakis 已提交
298 299 300 301 302 303
                                            is just used for rustc unit tests \
                                            and will never be stable")),
    ("rustc_mir", Normal, Gated("rustc_attrs",
                                "the `#[rustc_mir]` attribute \
                                 is just used for rustc unit tests \
                                 and will never be stable")),
304 305 306 307 308 309 310 311 312 313 314

    ("allow_internal_unstable", Normal, Gated("allow_internal_unstable",
                                              EXPLAIN_ALLOW_INTERNAL_UNSTABLE)),

    ("fundamental", Whitelisted, Gated("fundamental",
                                       "the `#[fundamental]` attribute \
                                        is an experimental feature")),

    ("linked_from", Normal, Gated("linked_from",
                                  "the `#[linked_from]` attribute \
                                   is an experimental feature")),
315

316
    // FIXME: #14408 whitelist docs since rustdoc looks at them
317
    ("doc", Whitelisted, Ungated),
318 319 320

    // FIXME: #14406 these are processed in trans, which happens after the
    // lint pass
321 322 323 324 325 326 327 328
    ("cold", Whitelisted, Ungated),
    ("export_name", Whitelisted, Ungated),
    ("inline", Whitelisted, Ungated),
    ("link", Whitelisted, Ungated),
    ("link_name", Whitelisted, Ungated),
    ("link_section", Whitelisted, Ungated),
    ("no_builtins", Whitelisted, Ungated),
    ("no_mangle", Whitelisted, Ungated),
329 330 331 332 333 334 335
    ("no_debug", Whitelisted, Gated("no_debug",
                                    "the `#[no_debug]` attribute \
                                     is an experimental feature")),
    ("omit_gdb_pretty_printer_section", Whitelisted, Gated("omit_gdb_pretty_printer_section",
                                                       "the `#[omit_gdb_pretty_printer_section]` \
                                                        attribute is just used for the Rust test \
                                                        suite")),
336 337 338
    ("unsafe_no_drop_flag", Whitelisted, Gated("unsafe_no_drop_flag",
                                               "unsafe_no_drop_flag has unstable semantics \
                                                and may be removed in the future")),
339
    ("unwind", Whitelisted, Gated("unwind_attributes", "#[unwind] is experimental")),
340 341

    // used in resolve
342 343
    ("prelude_import", Whitelisted, Gated("prelude_import",
                                          "`#[prelude_import]` is for use by rustc only")),
344 345 346

    // FIXME: #14407 these are only looked at on-demand so we can't
    // guarantee they'll have already been checked
347 348 349 350
    ("deprecated", Whitelisted, Ungated),
    ("must_use", Whitelisted, Ungated),
    ("stable", Whitelisted, Ungated),
    ("unstable", Whitelisted, Ungated),
351

352 353 354 355
    ("rustc_paren_sugar", Normal, Gated("unboxed_closures",
                                        "unboxed_closures are still evolving")),
    ("rustc_reflect_like", Whitelisted, Gated("reflect",
                                              "defining reflective traits is still evolving")),
356 357

    // Crate level attributes
358 359 360 361 362 363 364 365
    ("crate_name", CrateLevel, Ungated),
    ("crate_type", CrateLevel, Ungated),
    ("crate_id", CrateLevel, Ungated),
    ("feature", CrateLevel, Ungated),
    ("no_start", CrateLevel, Ungated),
    ("no_main", CrateLevel, Ungated),
    ("no_builtins", CrateLevel, Ungated),
    ("recursion_limit", CrateLevel, Ungated),
366 367
];

368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386
macro_rules! cfg_fn {
    (|$x: ident| $e: expr) => {{
        fn f($x: &Features) -> bool {
            $e
        }
        f as fn(&Features) -> bool
    }}
}
// cfg(...)'s that are feature gated
const GATED_CFGS: &'static [(&'static str, &'static str, fn(&Features) -> bool)] = &[
    // (name in cfg, feature, function to check if the feature is enabled)
    ("target_feature", "cfg_target_feature", cfg_fn!(|x| x.cfg_target_feature)),
];

#[derive(Debug, Eq, PartialEq)]
pub struct GatedCfg {
    span: Span,
    index: usize,
}
387

388 389 390 391 392 393
impl Ord for GatedCfg {
    fn cmp(&self, other: &GatedCfg) -> cmp::Ordering {
        (self.span.lo.0, self.span.hi.0, self.index)
            .cmp(&(other.span.lo.0, other.span.hi.0, other.index))
    }
}
394

395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416
impl PartialOrd for GatedCfg {
    fn partial_cmp(&self, other: &GatedCfg) -> Option<cmp::Ordering> {
        Some(self.cmp(other))
    }
}

impl GatedCfg {
    pub fn gate(cfg: &ast::MetaItem) -> Option<GatedCfg> {
        let name = cfg.name();
        GATED_CFGS.iter()
                  .position(|info| info.0 == name)
                  .map(|idx| {
                      GatedCfg {
                          span: cfg.span,
                          index: idx
                      }
                  })
    }
    pub fn check_and_emit(&self, diagnostic: &SpanHandler, features: &Features) {
        let (cfg, feature, has_feature) = GATED_CFGS[self.index];
        if !has_feature(features) {
            let explain = format!("`cfg({})` is experimental and subject to change", cfg);
417
            emit_feature_err(diagnostic, feature, self.span, GateIssue::Language, &explain);
418 419 420 421 422
        }
    }
}


N
Niko Matsakis 已提交
423
#[derive(PartialEq, Copy, Clone, Debug)]
424 425 426 427 428 429 430 431 432 433
pub enum AttributeType {
    /// Normal, builtin attribute that is consumed
    /// by the compiler before the unused_attribute check
    Normal,

    /// Builtin attribute that may not be consumed by the compiler
    /// before the unused_attribute check. These attributes
    /// will be ignored by the unused_attribute lint
    Whitelisted,

434 435 436 437 438 439
    /// Builtin attribute that is only allowed at the crate level
    CrateLevel,
}

#[derive(PartialEq, Copy, Clone, Debug)]
pub enum AttributeGate {
M
Manish Goregaokar 已提交
440 441 442
    /// Is gated by a given feature gate and reason
    Gated(&'static str, &'static str),

443 444
    /// Ungated attribute, can be used on all release channels
    Ungated,
445 446
}

447 448
/// A set of features to be used by later passes.
pub struct Features {
449
    pub unboxed_closures: bool,
N
Nick Cameron 已提交
450
    pub rustc_diagnostic_macros: bool,
451
    pub visible_private_types: bool,
452 453
    pub allow_quote: bool,
    pub allow_asm: bool,
454 455 456
    pub allow_log_syntax: bool,
    pub allow_concat_idents: bool,
    pub allow_trace_macros: bool,
457
    pub allow_internal_unstable: bool,
458
    pub allow_custom_derive: bool,
459 460
    pub allow_placement_in: bool,
    pub allow_box: bool,
461
    pub allow_pushpop_unsafe: bool,
462
    pub simd_ffi: bool,
463
    pub unmarked_api: bool,
464
    pub negate_unsigned: bool,
465 466 467
    /// spans of #![feature] attrs for stable language features. for error reporting
    pub declared_stable_lang_features: Vec<Span>,
    /// #![feature] attrs for non-language (library) features
468 469
    pub declared_lib_features: Vec<(InternedString, Span)>,
    pub const_fn: bool,
J
Jared Roesch 已提交
470 471
    pub static_recursion: bool,
    pub default_type_parameter_fallback: bool,
J
Jared Roesch 已提交
472
    pub type_macros: bool,
473
    pub cfg_target_feature: bool,
474
    pub augmented_assignments: bool,
475 476 477 478 479
}

impl Features {
    pub fn new() -> Features {
        Features {
480
            unboxed_closures: false,
N
Nick Cameron 已提交
481
            rustc_diagnostic_macros: false,
482
            visible_private_types: false,
483 484
            allow_quote: false,
            allow_asm: false,
485 486 487
            allow_log_syntax: false,
            allow_concat_idents: false,
            allow_trace_macros: false,
488
            allow_internal_unstable: false,
489
            allow_custom_derive: false,
490 491
            allow_placement_in: false,
            allow_box: false,
492
            allow_pushpop_unsafe: false,
493
            simd_ffi: false,
494
            unmarked_api: false,
495
            negate_unsigned: false,
496
            declared_stable_lang_features: Vec::new(),
497 498
            declared_lib_features: Vec::new(),
            const_fn: false,
J
Jared Roesch 已提交
499 500
            static_recursion: false,
            default_type_parameter_fallback: false,
J
Jared Roesch 已提交
501
            type_macros: false,
502
            cfg_target_feature: false,
503
            augmented_assignments: false,
504 505 506 507
        }
    }
}

508 509 510 511 512 513 514 515 516 517 518 519 520
const EXPLAIN_BOX_SYNTAX: &'static str =
    "box expression syntax is experimental; you can call `Box::new` instead.";

const EXPLAIN_PLACEMENT_IN: &'static str =
    "placement-in expression syntax is experimental and subject to change.";

const EXPLAIN_PUSHPOP_UNSAFE: &'static str =
    "push/pop_unsafe macros are experimental and subject to change.";

pub fn check_for_box_syntax(f: Option<&Features>, diag: &SpanHandler, span: Span) {
    if let Some(&Features { allow_box: true, .. }) = f {
        return;
    }
521
    emit_feature_err(diag, "box_syntax", span, GateIssue::Language, EXPLAIN_BOX_SYNTAX);
522 523 524 525 526 527
}

pub fn check_for_placement_in(f: Option<&Features>, diag: &SpanHandler, span: Span) {
    if let Some(&Features { allow_placement_in: true, .. }) = f {
        return;
    }
528
    emit_feature_err(diag, "placement_in_syntax", span, GateIssue::Language, EXPLAIN_PLACEMENT_IN);
529 530
}

531 532 533 534
pub fn check_for_pushpop_syntax(f: Option<&Features>, diag: &SpanHandler, span: Span) {
    if let Some(&Features { allow_pushpop_unsafe: true, .. }) = f {
        return;
    }
535
    emit_feature_err(diag, "pushpop_unsafe", span, GateIssue::Language, EXPLAIN_PUSHPOP_UNSAFE);
536 537
}

E
Eduard Burtescu 已提交
538 539
struct Context<'a> {
    features: Vec<&'static str>,
N
Nick Cameron 已提交
540
    span_handler: &'a SpanHandler,
C
Corey Richardson 已提交
541
    cm: &'a CodeMap,
542
    plugin_attributes: &'a [(String, AttributeType)],
543 544
}

E
Eduard Burtescu 已提交
545
impl<'a> Context<'a> {
546 547 548 549 550
    fn enable_feature(&mut self, feature: &'static str) {
        debug!("enabling feature: {}", feature);
        self.features.push(feature);
    }

551
    fn gate_feature(&self, feature: &str, span: Span, explain: &str) {
552 553 554
        let has_feature = self.has_feature(feature);
        debug!("gate_feature(feature = {:?}, span = {:?}); has? {}", feature, span, has_feature);
        if !has_feature {
555
            emit_feature_err(self.span_handler, feature, span, GateIssue::Language, explain);
556 557
        }
    }
558
    fn has_feature(&self, feature: &str) -> bool {
559
        self.features.iter().any(|&n| n == feature)
560
    }
561

562
    fn check_attribute(&self, attr: &ast::Attribute, is_macro: bool) {
563 564
        debug!("check_attribute(attr = {:?})", attr);
        let name = &*attr.name();
565
        for &(n, ty, gateage) in KNOWN_ATTRIBUTES {
566
            if n == name {
567
                if let Gated(gate, desc) = gateage {
568 569
                    self.gate_feature(gate, attr.span, desc);
                }
570
                debug!("check_attribute: {:?} is known, {:?}, {:?}", name, ty, gateage);
571 572 573
                return;
            }
        }
574
        for &(ref n, ref ty) in self.plugin_attributes {
575 576
            if &*n == name {
                // Plugins can't gate attributes, so we don't check for it
M
Manish Goregaokar 已提交
577 578
                // unlike the code above; we only use this loop to
                // short-circuit to avoid the checks below
579 580 581 582
                debug!("check_attribute: {:?} is registered by a plugin, {:?}", name, ty);
                return;
            }
        }
583 584 585 586 587
        if name.starts_with("rustc_") {
            self.gate_feature("rustc_attrs", attr.span,
                              "unless otherwise specified, attributes \
                               with the prefix `rustc_` \
                               are reserved for internal compiler diagnostics");
588 589
        } else if name.starts_with("derive_") {
            self.gate_feature("custom_derive", attr.span,
590
                              "attributes of the form `#[derive_*]` are reserved \
591
                               for the compiler");
592
        } else {
M
Manish Goregaokar 已提交
593 594 595 596
            // Only run the custom attribute lint during regular
            // feature gate checking. Macro gating runs
            // before the plugin attributes are registered
            // so we skip this then
597 598 599 600 601 602 603 604
            if !is_macro {
                self.gate_feature("custom_attribute", attr.span,
                           &format!("The attribute `{}` is currently \
                                    unknown to the compiler and \
                                    may have meaning \
                                    added to it in the future",
                                    name));
            }
605 606
        }
    }
607 608
}

609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637
fn find_lang_feature_issue(feature: &str) -> Option<u32> {
    let info = KNOWN_FEATURES.iter()
                              .find(|t| t.0 == feature)
                              .unwrap();
    let issue = info.2;
    if let Active = info.3 {
        // FIXME (#28244): enforce that active features have issue numbers
        // assert!(issue.is_some())
    }
    issue
}

pub enum GateIssue {
    Language,
    Library(Option<u32>)
}

pub fn emit_feature_err(diag: &SpanHandler, feature: &str, span: Span, issue: GateIssue,
                        explain: &str) {
    let issue = match issue {
        GateIssue::Language => find_lang_feature_issue(feature),
        GateIssue::Library(lib) => lib,
    };

    if let Some(n) = issue {
        diag.span_err(span, &format!("{} (see issue #{})", explain, n));
    } else {
        diag.span_err(span, explain);
    }
638 639

    // #23973: do not suggest `#![feature(...)]` if we are in beta/stable
640
    if option_env!("CFG_DISABLE_UNSTABLE_FEATURES").is_some() { return; }
641
    diag.fileline_help(span, &format!("add #![feature({})] to the \
642
                                   crate attributes to enable",
643
                                  feature));
644 645
}

646 647 648
pub const EXPLAIN_ASM: &'static str =
    "inline assembly is not stable enough for use and is subject to change";

649 650 651 652 653 654 655 656
pub const EXPLAIN_LOG_SYNTAX: &'static str =
    "`log_syntax!` is not stable enough for use and is subject to change";

pub const EXPLAIN_CONCAT_IDENTS: &'static str =
    "`concat_idents` is not stable enough for use and is subject to change";

pub const EXPLAIN_TRACE_MACROS: &'static str =
    "`trace_macros` is not stable enough for use and is subject to change";
657 658
pub const EXPLAIN_ALLOW_INTERNAL_UNSTABLE: &'static str =
    "allow_internal_unstable side-steps feature gating and stability checks";
659

660 661 662
pub const EXPLAIN_CUSTOM_DERIVE: &'static str =
    "`#[derive]` for custom traits is not stable enough for use and is subject to change";

C
Corey Richardson 已提交
663 664 665 666 667
struct MacroVisitor<'a> {
    context: &'a Context<'a>
}

impl<'a, 'v> Visitor<'v> for MacroVisitor<'a> {
K
Keegan McAllister 已提交
668
    fn visit_mac(&mut self, mac: &ast::Mac) {
669
        let path = &mac.node.path;
C
Corey Richardson 已提交
670 671
        let id = path.segments.last().unwrap().identifier;

672 673 674 675 676 677 678 679
        // Issue 22234: If you add a new case here, make sure to also
        // add code to catch the macro during or after expansion.
        //
        // We still keep this MacroVisitor (rather than *solely*
        // relying on catching cases during or after expansion) to
        // catch uses of these macros within conditionally-compiled
        // code, e.g. `#[cfg]`-guarded functions.

K
Keegan McAllister 已提交
680
        if id == token::str_to_ident("asm") {
681
            self.context.gate_feature("asm", path.span, EXPLAIN_ASM);
C
Corey Richardson 已提交
682 683 684
        }

        else if id == token::str_to_ident("log_syntax") {
685
            self.context.gate_feature("log_syntax", path.span, EXPLAIN_LOG_SYNTAX);
C
Corey Richardson 已提交
686 687 688
        }

        else if id == token::str_to_ident("trace_macros") {
689
            self.context.gate_feature("trace_macros", path.span, EXPLAIN_TRACE_MACROS);
C
Corey Richardson 已提交
690 691 692
        }

        else if id == token::str_to_ident("concat_idents") {
693
            self.context.gate_feature("concat_idents", path.span, EXPLAIN_CONCAT_IDENTS);
C
Corey Richardson 已提交
694 695
        }
    }
696 697

    fn visit_attribute(&mut self, attr: &'v ast::Attribute) {
698
        self.context.check_attribute(attr, true);
699
    }
700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719

    fn visit_expr(&mut self, e: &ast::Expr) {
        // Issue 22181: overloaded-`box` and placement-`in` are
        // implemented via a desugaring expansion, so their feature
        // gates go into MacroVisitor since that works pre-expansion.
        //
        // Issue 22234: we also check during expansion as well.
        // But we keep these checks as a pre-expansion check to catch
        // uses in e.g. conditionalized code.

        if let ast::ExprBox(None, _) = e.node {
            self.context.gate_feature("box_syntax", e.span, EXPLAIN_BOX_SYNTAX);
        }

        if let ast::ExprBox(Some(_), _) = e.node {
            self.context.gate_feature("placement_in_syntax", e.span, EXPLAIN_PLACEMENT_IN);
        }

        visit::walk_expr(self, e);
    }
C
Corey Richardson 已提交
720 721 722 723 724 725 726 727
}

struct PostExpansionVisitor<'a> {
    context: &'a Context<'a>
}

impl<'a> PostExpansionVisitor<'a> {
    fn gate_feature(&self, feature: &str, span: Span, explain: &str) {
728
        if !self.context.cm.span_allows_unstable(span) {
C
Corey Richardson 已提交
729 730 731 732 733 734
            self.context.gate_feature(feature, span, explain)
        }
    }
}

impl<'a, 'v> Visitor<'v> for PostExpansionVisitor<'a> {
735 736
    fn visit_attribute(&mut self, attr: &ast::Attribute) {
        if !self.context.cm.span_allows_unstable(attr.span) {
737
            self.context.check_attribute(attr, false);
738 739 740
        }
    }

741
    fn visit_name(&mut self, sp: Span, name: ast::Name) {
742
        if !name.as_str().is_ascii() {
743 744 745 746 747
            self.gate_feature("non_ascii_idents", sp,
                              "non-ascii idents are not fully supported.");
        }
    }

748
    fn visit_item(&mut self, i: &ast::Item) {
749
        match i.node {
750
            ast::ItemExternCrate(_) => {
751
                if attr::contains_name(&i.attrs[..], "macro_reexport") {
752 753 754
                    self.gate_feature("macro_reexport", i.span,
                                      "macros reexports are experimental \
                                       and possibly buggy");
755 756 757
                }
            }

758
            ast::ItemForeignMod(ref foreign_module) => {
759
                if attr::contains_name(&i.attrs[..], "link_args") {
760 761 762 763 764
                    self.gate_feature("link_args", i.span,
                                      "the `link_args` attribute is not portable \
                                       across platforms, it is recommended to \
                                       use `#[link(name = \"foo\")]` instead")
                }
765 766 767 768 769 770 771 772 773 774
                let maybe_feature = match foreign_module.abi {
                    Abi::RustIntrinsic => Some(("intrinsics", "intrinsics are subject to change")),
                    Abi::PlatformIntrinsic => {
                        Some(("platform_intrinsics",
                              "platform intrinsics are experimental and possibly buggy"))
                    }
                    _ => None
                };
                if let Some((feature, msg)) = maybe_feature {
                    self.gate_feature(feature, i.span, msg)
775
                }
776 777
            }

778
            ast::ItemFn(..) => {
779
                if attr::contains_name(&i.attrs[..], "plugin_registrar") {
780 781
                    self.gate_feature("plugin_registrar", i.span,
                                      "compiler plugins are experimental and possibly buggy");
782
                }
783
                if attr::contains_name(&i.attrs[..], "start") {
784 785 786 787 788
                    self.gate_feature("start", i.span,
                                      "a #[start] function is an experimental \
                                       feature whose signature may change \
                                       over time");
                }
789
                if attr::contains_name(&i.attrs[..], "main") {
790 791 792 793 794
                    self.gate_feature("main", i.span,
                                      "declaration of a nonstandard #[main] \
                                       function may change over time, for now \
                                       a top-level `fn main()` is required");
                }
795 796
            }

V
Vadim Petrochenkov 已提交
797
            ast::ItemStruct(ref def, _) => {
798
                if attr::contains_name(&i.attrs[..], "simd") {
D
David Manescu 已提交
799 800
                    self.gate_feature("simd", i.span,
                                      "SIMD types are experimental and possibly buggy");
801 802 803 804 805 806 807 808
                    self.context.span_handler.span_warn(i.span,
                                                        "the `#[simd]` attribute is deprecated, \
                                                         use `#[repr(simd)]` instead");
                }
                for attr in &i.attrs {
                    if attr.name() == "repr" {
                        for item in attr.meta_item_list().unwrap_or(&[]) {
                            if item.name() == "simd" {
809
                                self.gate_feature("repr_simd", i.span,
810 811 812 813 814
                                                  "SIMD types are experimental and possibly buggy");

                            }
                        }
                    }
815
                }
V
Vadim Petrochenkov 已提交
816 817 818 819
                if def.fields.is_empty() && def.ctor_id.is_none() {
                    self.gate_feature("braced_empty_structs", i.span,
                                      "empty structs with braces are unstable");
                }
D
David Manescu 已提交
820 821
            }

F
Flavio Percoco 已提交
822 823 824 825 826 827 828
            ast::ItemDefaultImpl(..) => {
                self.gate_feature("optin_builtin_traits",
                                  i.span,
                                  "default trait implementations are experimental \
                                   and possibly buggy");
            }

A
Alex Crichton 已提交
829
            ast::ItemImpl(_, polarity, _, _, _, _) => {
830 831 832 833 834 835 836 837 838
                match polarity {
                    ast::ImplPolarity::Negative => {
                        self.gate_feature("optin_builtin_traits",
                                          i.span,
                                          "negative trait bounds are not yet fully implemented; \
                                          use marker types for now");
                    },
                    _ => {}
                }
839 840
            }

841 842 843
            _ => {}
        }

844
        visit::walk_item(self, i);
845
    }
846

847
    fn visit_foreign_item(&mut self, i: &ast::ForeignItem) {
848
        let links_to_llvm = match attr::first_attr_value_str_by_name(&i.attrs,
N
fallout  
Nick Cameron 已提交
849
                                                                     "link_name") {
G
GuillaumeGomez 已提交
850
            Some(val) => val.starts_with("llvm."),
851 852 853 854 855 856 857
            _ => false
        };
        if links_to_llvm {
            self.gate_feature("link_llvm_intrinsics", i.span,
                              "linking to LLVM intrinsics is experimental");
        }

858
        visit::walk_foreign_item(self, i)
859 860
    }

861
    fn visit_expr(&mut self, e: &ast::Expr) {
862
        match e.node {
863 864 865
            ast::ExprBox(..) | ast::ExprUnary(ast::UnOp::UnUniq, _) => {
                self.gate_feature("box_syntax",
                                  e.span,
866
                                  "box expression syntax is experimental; \
867 868
                                   you can call `Box::new` instead.");
            }
V
Vadim Petrochenkov 已提交
869 870 871 872 873 874
            ast::ExprStruct(_, ref fields, ref expr) => {
                if fields.is_empty() && expr.is_none() {
                    self.gate_feature("braced_empty_structs", e.span,
                                      "empty structs with braces are unstable");
                }
            }
875 876
            _ => {}
        }
877
        visit::walk_expr(self, e);
878
    }
879

880
    fn visit_pat(&mut self, pattern: &ast::Pat) {
881 882 883 884 885 886
        match pattern.node {
            ast::PatVec(_, Some(_), ref last) if !last.is_empty() => {
                self.gate_feature("advanced_slice_patterns",
                                  pattern.span,
                                  "multiple-element slice matches anywhere \
                                   but at the end of a slice (e.g. \
887
                                   `[0, ..xs, 0]`) are experimental")
888
            }
889 890 891 892 893
            ast::PatVec(..) => {
                self.gate_feature("slice_patterns",
                                  pattern.span,
                                  "slice pattern syntax is experimental");
            }
894
            ast::PatBox(..) => {
895
                self.gate_feature("box_patterns",
896
                                  pattern.span,
897
                                  "box pattern syntax is experimental");
898
            }
V
Vadim Petrochenkov 已提交
899 900 901 902 903 904
            ast::PatStruct(_, ref fields, dotdot) => {
                if fields.is_empty() && !dotdot {
                    self.gate_feature("braced_empty_structs", pattern.span,
                                      "empty structs with braces are unstable");
                }
            }
905 906
            _ => {}
        }
907
        visit::walk_pat(self, pattern)
908 909
    }

910
    fn visit_fn(&mut self,
911
                fn_kind: FnKind<'v>,
912 913
                fn_decl: &'v ast::FnDecl,
                block: &'v ast::Block,
914
                span: Span,
915
                _node_id: NodeId) {
N
Niko Matsakis 已提交
916 917
        // check for const fn declarations
        match fn_kind {
918
            FnKind::ItemFn(_, _, _, ast::Constness::Const, _, _) => {
N
Niko Matsakis 已提交
919 920 921 922 923 924 925 926 927 928
                self.gate_feature("const_fn", span, "const fn is unstable");
            }
            _ => {
                // stability of const fn methods are covered in
                // visit_trait_item and visit_impl_item below; this is
                // because default methods don't pass through this
                // point.
            }
        }

929
        match fn_kind {
930
            FnKind::ItemFn(_, _, _, _, abi, _) if abi == Abi::RustIntrinsic => {
931 932 933 934
                self.gate_feature("intrinsics",
                                  span,
                                  "intrinsics are subject to change")
            }
935 936
            FnKind::ItemFn(_, _, _, _, abi, _) |
            FnKind::Method(_, &ast::MethodSig { abi, .. }, _) if abi == Abi::RustCall => {
N
Niko Matsakis 已提交
937 938 939 940
                self.gate_feature("unboxed_closures",
                                  span,
                                  "rust-call ABI is subject to change")
            }
941 942
            _ => {}
        }
943
        visit::walk_fn(self, fn_kind, fn_decl, block, span);
944
    }
945 946 947 948 949 950 951 952

    fn visit_trait_item(&mut self, ti: &'v ast::TraitItem) {
        match ti.node {
            ast::ConstTraitItem(..) => {
                self.gate_feature("associated_consts",
                                  ti.span,
                                  "associated constants are experimental")
            }
N
Niko Matsakis 已提交
953 954 955 956 957
            ast::MethodTraitItem(ref sig, _) => {
                if sig.constness == ast::Constness::Const {
                    self.gate_feature("const_fn", ti.span, "const fn is unstable");
                }
            }
958 959 960 961
            ast::TypeTraitItem(_, Some(_)) => {
                self.gate_feature("associated_type_defaults", ti.span,
                                  "associated type defaults are unstable");
            }
962 963 964 965 966 967 968 969 970 971 972 973
            _ => {}
        }
        visit::walk_trait_item(self, ti);
    }

    fn visit_impl_item(&mut self, ii: &'v ast::ImplItem) {
        match ii.node {
            ast::ConstImplItem(..) => {
                self.gate_feature("associated_consts",
                                  ii.span,
                                  "associated constants are experimental")
            }
N
Niko Matsakis 已提交
974 975 976 977 978
            ast::MethodImplItem(ref sig, _) => {
                if sig.constness == ast::Constness::Const {
                    self.gate_feature("const_fn", ii.span, "const fn is unstable");
                }
            }
979 980 981 982
            _ => {}
        }
        visit::walk_impl_item(self, ii);
    }
983 984
}

985 986
fn check_crate_inner<F>(cm: &CodeMap, span_handler: &SpanHandler,
                        krate: &ast::Crate,
987
                        plugin_attributes: &[(String, AttributeType)],
C
Corey Richardson 已提交
988
                        check: F)
989
                       -> Features
C
Corey Richardson 已提交
990 991
    where F: FnOnce(&mut Context, &ast::Crate)
{
992
    let mut cx = Context {
993
        features: Vec::new(),
N
Nick Cameron 已提交
994
        span_handler: span_handler,
C
Corey Richardson 已提交
995
        cm: cm,
996
        plugin_attributes: plugin_attributes,
997 998
    };

999
    let mut accepted_features = Vec::new();
N
Nick Cameron 已提交
1000 1001
    let mut unknown_features = Vec::new();

1002
    for attr in &krate.attrs {
S
Steven Fackler 已提交
1003
        if !attr.check_name("feature") {
1004 1005
            continue
        }
1006 1007 1008

        match attr.meta_item_list() {
            None => {
N
Nick Cameron 已提交
1009 1010
                span_handler.span_err(attr.span, "malformed feature attribute, \
                                                  expected #![feature(...)]");
1011 1012
            }
            Some(list) => {
1013
                for mi in list {
1014
                    let name = match mi.node {
1015
                        ast::MetaWord(ref word) => (*word).clone(),
1016
                        _ => {
N
Nick Cameron 已提交
1017 1018 1019
                            span_handler.span_err(mi.span,
                                                  "malformed feature, expected just \
                                                   one word");
1020 1021 1022
                            continue
                        }
                    };
1023
                    match KNOWN_FEATURES.iter()
1024 1025
                                        .find(|& &(n, _, _, _)| name == n) {
                        Some(&(name, _, _, Active)) => {
1026
                            cx.enable_feature(name);
1027
                        }
1028
                        Some(&(_, _, _, Removed)) => {
N
Nick Cameron 已提交
1029
                            span_handler.span_err(mi.span, "feature has been removed");
1030
                        }
1031
                        Some(&(_, _, _, Accepted)) => {
1032
                            accepted_features.push(mi.span);
1033 1034
                        }
                        None => {
1035
                            unknown_features.push((name, mi.span));
1036 1037 1038 1039 1040 1041 1042
                        }
                    }
                }
            }
        }
    }

C
Corey Richardson 已提交
1043
    check(&mut cx, krate);
1044

1045 1046 1047
    // FIXME (pnkfelix): Before adding the 99th entry below, change it
    // to a single-pass (instead of N calls to `.has_feature`).

1048
    Features {
1049
        unboxed_closures: cx.has_feature("unboxed_closures"),
N
Nick Cameron 已提交
1050
        rustc_diagnostic_macros: cx.has_feature("rustc_diagnostic_macros"),
1051
        visible_private_types: cx.has_feature("visible_private_types"),
1052 1053
        allow_quote: cx.has_feature("quote"),
        allow_asm: cx.has_feature("asm"),
1054 1055 1056
        allow_log_syntax: cx.has_feature("log_syntax"),
        allow_concat_idents: cx.has_feature("concat_idents"),
        allow_trace_macros: cx.has_feature("trace_macros"),
1057
        allow_internal_unstable: cx.has_feature("allow_internal_unstable"),
1058
        allow_custom_derive: cx.has_feature("custom_derive"),
1059 1060
        allow_placement_in: cx.has_feature("placement_in_syntax"),
        allow_box: cx.has_feature("box_syntax"),
1061
        allow_pushpop_unsafe: cx.has_feature("pushpop_unsafe"),
1062
        simd_ffi: cx.has_feature("simd_ffi"),
1063
        unmarked_api: cx.has_feature("unmarked_api"),
1064
        negate_unsigned: cx.has_feature("negate_unsigned"),
1065
        declared_stable_lang_features: accepted_features,
1066 1067
        declared_lib_features: unknown_features,
        const_fn: cx.has_feature("const_fn"),
J
Jared Roesch 已提交
1068
        static_recursion: cx.has_feature("static_recursion"),
J
Jared Roesch 已提交
1069
        default_type_parameter_fallback: cx.has_feature("default_type_parameter_fallback"),
J
Jared Roesch 已提交
1070
        type_macros: cx.has_feature("type_macros"),
1071
        cfg_target_feature: cx.has_feature("cfg_target_feature"),
1072
        augmented_assignments: cx.has_feature("augmented_assignments"),
1073
    }
1074
}
C
Corey Richardson 已提交
1075 1076

pub fn check_crate_macros(cm: &CodeMap, span_handler: &SpanHandler, krate: &ast::Crate)
1077
-> Features {
1078
    check_crate_inner(cm, span_handler, krate, &[] as &'static [_],
C
Corey Richardson 已提交
1079 1080 1081
                      |ctx, krate| visit::walk_crate(&mut MacroVisitor { context: ctx }, krate))
}

1082
pub fn check_crate(cm: &CodeMap, span_handler: &SpanHandler, krate: &ast::Crate,
1083 1084
                   plugin_attributes: &[(String, AttributeType)],
                   unstable: UnstableFeatures) -> Features
1085
{
1086 1087
    maybe_stage_features(span_handler, krate, unstable);

1088
    check_crate_inner(cm, span_handler, krate, plugin_attributes,
C
Corey Richardson 已提交
1089 1090 1091
                      |ctx, krate| visit::walk_crate(&mut PostExpansionVisitor { context: ctx },
                                                     krate))
}
1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125

#[derive(Clone, Copy)]
pub enum UnstableFeatures {
    /// Hard errors for unstable features are active, as on
    /// beta/stable channels.
    Disallow,
    /// Allow features to me activated, as on nightly.
    Allow,
    /// Errors are bypassed for bootstrapping. This is required any time
    /// during the build that feature-related lints are set to warn or above
    /// because the build turns on warnings-as-errors and uses lots of unstable
    /// features. As a result, this this is always required for building Rust
    /// itself.
    Cheat
}

fn maybe_stage_features(span_handler: &SpanHandler, krate: &ast::Crate,
                        unstable: UnstableFeatures) {
    let allow_features = match unstable {
        UnstableFeatures::Allow => true,
        UnstableFeatures::Disallow => false,
        UnstableFeatures::Cheat => true
    };
    if !allow_features {
        for attr in &krate.attrs {
            if attr.check_name("feature") {
                let release_channel = option_env!("CFG_RELEASE_CHANNEL").unwrap_or("(unknown)");
                let ref msg = format!("#[feature] may not be used on the {} release channel",
                                      release_channel);
                span_handler.span_err(attr.span, msg);
            }
        }
    }
}