feature_gate.rs 35.0 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

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

39 40
use std::ascii::AsciiExt;

B
Brian Anderson 已提交
41 42 43 44 45 46 47
// 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.
48
const KNOWN_FEATURES: &'static [(&'static str, &'static str, Status)] = &[
B
Brian Anderson 已提交
49 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
    ("globs", "1.0.0", Accepted),
    ("macro_rules", "1.0.0", Accepted),
    ("struct_variant", "1.0.0", Accepted),
    ("asm", "1.0.0", Active),
    ("managed_boxes", "1.0.0", Removed),
    ("non_ascii_idents", "1.0.0", Active),
    ("thread_local", "1.0.0", Active),
    ("link_args", "1.0.0", Active),
    ("plugin_registrar", "1.0.0", Active),
    ("log_syntax", "1.0.0", Active),
    ("trace_macros", "1.0.0", Active),
    ("concat_idents", "1.0.0", Active),
    ("intrinsics", "1.0.0", Active),
    ("lang_items", "1.0.0", Active),

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

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

    ("rustc_diagnostic_macros", "1.0.0", Active),
    ("unboxed_closures", "1.0.0", Active),
75
    ("reflect", "1.0.0", Active),
76
    ("import_shadowing", "1.0.0", Removed),
B
Brian Anderson 已提交
77 78 79 80
    ("advanced_slice_patterns", "1.0.0", Active),
    ("tuple_indexing", "1.0.0", Accepted),
    ("associated_types", "1.0.0", Accepted),
    ("visible_private_types", "1.0.0", Active),
81
    ("slicing_syntax", "1.0.0", Accepted),
B
Brian Anderson 已提交
82
    ("box_syntax", "1.0.0", Active),
83
    ("placement_in_syntax", "1.0.0", Active),
84
    ("pushpop_unsafe", "1.2.0", Active),
B
Brian Anderson 已提交
85 86
    ("on_unimplemented", "1.0.0", Active),
    ("simd_ffi", "1.0.0", Active),
87
    ("allocator", "1.0.0", Active),
B
Brian Anderson 已提交
88 89 90 91 92 93 94

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

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

96 97
    ("fundamental", "1.0.0", Active),

98 99
    // A temporary feature gate used to enable parser extensions needed
    // to bootstrap fix for #5723.
B
Brian Anderson 已提交
100
    ("issue_5723_bootstrap", "1.0.0", Accepted),
101

102
    // A way to temporarily opt out of opt in copy. This will *never* be accepted.
B
Brian Anderson 已提交
103
    ("opt_out_copy", "1.0.0", Removed),
104

105
    // OIBIT specific features
B
Brian Anderson 已提交
106
    ("optin_builtin_traits", "1.0.0", Active),
107

J
Joseph Crail 已提交
108
    // macro reexport needs more discussion and stabilization
A
Alex Crichton 已提交
109
    ("macro_reexport", "1.0.0", Active),
110

111 112
    // These are used to test this portion of the compiler, they don't actually
    // mean anything
B
Brian Anderson 已提交
113 114
    ("test_accepted_feature", "1.0.0", Accepted),
    ("test_removed_feature", "1.0.0", Removed),
115 116 117

    // Allows use of #[staged_api]
    ("staged_api", "1.0.0", Active),
118 119

    // Allows using items which are missing stability attributes
K
Keegan McAllister 已提交
120 121 122 123
    ("unmarked_api", "1.0.0", Active),

    // Allows using #![no_std]
    ("no_std", "1.0.0", Active),
124

A
Alex Crichton 已提交
125 126 127
    // Allows using #![no_core]
    ("no_core", "1.3.0", Active),

128 129
    // Allows using `box` in patterns; RFC 469
    ("box_patterns", "1.0.0", Active),
130

131 132 133
    // Allows using the unsafe_no_drop_flag attribute (unlikely to
    // switch to Accepted; see RFC 320)
    ("unsafe_no_drop_flag", "1.0.0", Active),
134 135

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

138 139 140 141
    // Allows the use of #[derive(Anything)] as sugar for
    // #[derive_Anything].
    ("custom_derive", "1.0.0", Active),

M
Manish Goregaokar 已提交
142 143
    // Allows the use of rustc_* attributes; RFC 572
    ("rustc_attrs", "1.0.0", Active),
H
Huon Wilson 已提交
144

145 146 147 148 149
    // 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).
    ("allow_internal_unstable", "1.0.0", Active),
150 151 152

    // #23121. Array patterns have some hazards yet.
    ("slice_patterns", "1.0.0", Active),
153 154 155

    // Allows use of unary negate on unsigned integers, e.g. -e for e: u8
    ("negate_unsigned", "1.0.0", Active),
156 157 158 159

    // Allows the definition of associated constants in `trait` or `impl`
    // blocks.
    ("associated_consts", "1.0.0", Active),
N
Niko Matsakis 已提交
160 161 162

    // Allows the definition of `const fn` functions.
    ("const_fn", "1.2.0", Active),
163 164 165

    // Allows using #[prelude_import] on glob `use` items.
    ("prelude_import", "1.2.0", Active),
166 167 168

    // Allows the definition recursive static items.
    ("static_recursion", "1.3.0", Active),
B
Brian Anderson 已提交
169 170

    // Allows default type parameters to influence type inference.
171 172 173 174
    ("default_type_parameter_fallback", "1.3.0", Active),

    // Allows associated type defaults
    ("associated_type_defaults", "1.2.0", Active),
175
];
176
// (changing above list without updating src/doc/reference.md makes @cmr sad)
177 178 179 180 181 182 183 184 185 186 187 188 189

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,
}

190
// Attributes that have a special meaning to rustc or rustdoc
191
pub const KNOWN_ATTRIBUTES: &'static [(&'static str, AttributeType)] = &[
192 193 194 195 196 197 198 199 200 201 202 203 204
    // Normal attributes

    ("warn", Normal),
    ("allow", Normal),
    ("forbid", Normal),
    ("deny", Normal),

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

    ("cfg", Normal),
205
    ("cfg_attr", Normal),
206 207 208 209 210 211 212 213 214 215 216 217
    ("main", Normal),
    ("start", Normal),
    ("test", Normal),
    ("bench", Normal),
    ("simd", Normal),
    ("repr", Normal),
    ("path", Normal),
    ("abi", Normal),
    ("automatically_derived", Normal),
    ("no_mangle", Normal),
    ("no_link", Normal),
    ("derive", Normal),
S
Steven Fackler 已提交
218
    ("should_panic", Normal),
219 220 221 222 223
    ("ignore", Normal),
    ("no_implicit_prelude", Normal),
    ("reexport_test_harness_main", Normal),
    ("link_args", Normal),
    ("macro_escape", Normal),
224

M
Manish Goregaokar 已提交
225 226 227 228 229 230 231
    ("staged_api", Gated("staged_api",
                         "staged_api is for use by rustc only")),
    ("plugin", Gated("plugin",
                     "compiler plugins are experimental \
                      and possibly buggy")),
    ("no_std", Gated("no_std",
                     "no_std is experimental")),
A
Alex Crichton 已提交
232 233
    ("no_core", Gated("no_core",
                     "no_core is experimental")),
M
Manish Goregaokar 已提交
234 235
    ("lang", Gated("lang_items",
                     "language items are subject to change")),
236 237 238 239 240 241 242
    ("linkage", Gated("linkage",
                      "the `linkage` attribute is experimental \
                       and not portable across platforms")),
    ("thread_local", 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")),
M
Manish Goregaokar 已提交
243

M
Manish Goregaokar 已提交
244 245 246
    ("rustc_on_unimplemented", Gated("on_unimplemented",
                                     "the `#[rustc_on_unimplemented]` attribute \
                                      is an experimental feature")),
247 248
    ("allocator", Gated("allocator",
                        "the `#[allocator]` attribute is an experimental feature")),
M
Manish Goregaokar 已提交
249 250 251 252 253 254 255 256 257 258
    ("rustc_variance", Gated("rustc_attrs",
                             "the `#[rustc_variance]` attribute \
                              is an experimental feature")),
    ("rustc_error", Gated("rustc_attrs",
                          "the `#[rustc_error]` attribute \
                           is an experimental feature")),
    ("rustc_move_fragments", Gated("rustc_attrs",
                                   "the `#[rustc_move_fragments]` attribute \
                                    is an experimental feature")),

259 260 261
    ("allow_internal_unstable", Gated("allow_internal_unstable",
                                      EXPLAIN_ALLOW_INTERNAL_UNSTABLE)),

262 263 264 265
    ("fundamental", Gated("fundamental",
                          "the `#[fundamental]` attribute \
                           is an experimental feature")),

266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281
    // FIXME: #14408 whitelist docs since rustdoc looks at them
    ("doc", Whitelisted),

    // FIXME: #14406 these are processed in trans, which happens after the
    // lint pass
    ("cold", Whitelisted),
    ("export_name", Whitelisted),
    ("inline", Whitelisted),
    ("link", Whitelisted),
    ("link_name", Whitelisted),
    ("link_section", Whitelisted),
    ("no_builtins", Whitelisted),
    ("no_mangle", Whitelisted),
    ("no_stack_check", Whitelisted),
    ("no_debug", Whitelisted),
    ("omit_gdb_pretty_printer_section", Whitelisted),
282 283 284
    ("unsafe_no_drop_flag", Gated("unsafe_no_drop_flag",
                                  "unsafe_no_drop_flag has unstable semantics \
                                   and may be removed in the future")),
285 286

    // used in resolve
287 288
    ("prelude_import", Gated("prelude_import",
                             "`#[prelude_import]` is for use by rustc only")),
289 290 291 292 293 294 295 296

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

297 298 299 300
    ("rustc_paren_sugar", Gated("unboxed_closures",
                                "unboxed_closures are still evolving")),
    ("rustc_reflect_like", Gated("reflect",
                                 "defining reflective traits is still evolving")),
301 302 303 304

    // Crate level attributes
    ("crate_name", CrateLevel),
    ("crate_type", CrateLevel),
305
    ("crate_id", CrateLevel),
306 307 308 309
    ("feature", CrateLevel),
    ("no_start", CrateLevel),
    ("no_main", CrateLevel),
    ("no_builtins", CrateLevel),
310
    ("recursion_limit", CrateLevel),
311 312
];

N
Niko Matsakis 已提交
313
#[derive(PartialEq, Copy, Clone, Debug)]
314 315 316 317 318 319 320 321 322 323
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,

M
Manish Goregaokar 已提交
324 325 326 327
    /// Is gated by a given feature gate and reason
    /// These get whitelisted too
    Gated(&'static str, &'static str),

328 329 330 331
    /// Builtin attribute that is only allowed at the crate level
    CrateLevel,
}

332 333
/// A set of features to be used by later passes.
pub struct Features {
334
    pub unboxed_closures: bool,
N
Nick Cameron 已提交
335
    pub rustc_diagnostic_macros: bool,
336
    pub visible_private_types: bool,
337 338
    pub allow_quote: bool,
    pub allow_asm: bool,
339 340 341
    pub allow_log_syntax: bool,
    pub allow_concat_idents: bool,
    pub allow_trace_macros: bool,
342
    pub allow_internal_unstable: bool,
343
    pub allow_custom_derive: bool,
344 345
    pub allow_placement_in: bool,
    pub allow_box: bool,
346
    pub allow_pushpop_unsafe: bool,
347
    pub simd_ffi: bool,
348
    pub unmarked_api: bool,
349
    pub negate_unsigned: bool,
350 351 352
    /// 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
353 354
    pub declared_lib_features: Vec<(InternedString, Span)>,
    pub const_fn: bool,
J
Jared Roesch 已提交
355 356
    pub static_recursion: bool,
    pub default_type_parameter_fallback: bool,
357 358 359 360 361
}

impl Features {
    pub fn new() -> Features {
        Features {
362
            unboxed_closures: false,
N
Nick Cameron 已提交
363
            rustc_diagnostic_macros: false,
364
            visible_private_types: false,
365 366
            allow_quote: false,
            allow_asm: false,
367 368 369
            allow_log_syntax: false,
            allow_concat_idents: false,
            allow_trace_macros: false,
370
            allow_internal_unstable: false,
371
            allow_custom_derive: false,
372 373
            allow_placement_in: false,
            allow_box: false,
374
            allow_pushpop_unsafe: false,
375
            simd_ffi: false,
376
            unmarked_api: false,
377
            negate_unsigned: false,
378
            declared_stable_lang_features: Vec::new(),
379 380
            declared_lib_features: Vec::new(),
            const_fn: false,
J
Jared Roesch 已提交
381 382
            static_recursion: false,
            default_type_parameter_fallback: false,
383 384 385 386
        }
    }
}

387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409
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;
    }
    emit_feature_err(diag, "box_syntax", span, EXPLAIN_BOX_SYNTAX);
}

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

410 411 412 413 414 415 416
pub fn check_for_pushpop_syntax(f: Option<&Features>, diag: &SpanHandler, span: Span) {
    if let Some(&Features { allow_pushpop_unsafe: true, .. }) = f {
        return;
    }
    emit_feature_err(diag, "pushpop_unsafe", span, EXPLAIN_PUSHPOP_UNSAFE);
}

E
Eduard Burtescu 已提交
417 418
struct Context<'a> {
    features: Vec<&'static str>,
N
Nick Cameron 已提交
419
    span_handler: &'a SpanHandler,
C
Corey Richardson 已提交
420
    cm: &'a CodeMap,
421
    plugin_attributes: &'a [(String, AttributeType)],
422 423
}

E
Eduard Burtescu 已提交
424
impl<'a> Context<'a> {
425 426 427 428 429
    fn enable_feature(&mut self, feature: &'static str) {
        debug!("enabling feature: {}", feature);
        self.features.push(feature);
    }

430
    fn gate_feature(&self, feature: &str, span: Span, explain: &str) {
431 432 433
        let has_feature = self.has_feature(feature);
        debug!("gate_feature(feature = {:?}, span = {:?}); has? {}", feature, span, has_feature);
        if !has_feature {
434
            emit_feature_err(self.span_handler, feature, span, explain);
435 436
        }
    }
437
    fn has_feature(&self, feature: &str) -> bool {
438
        self.features.iter().any(|&n| n == feature)
439
    }
440

441
    fn check_attribute(&self, attr: &ast::Attribute, is_macro: bool) {
442 443 444 445 446 447 448 449 450 451 452
        debug!("check_attribute(attr = {:?})", attr);
        let name = &*attr.name();
        for &(n, ty) in KNOWN_ATTRIBUTES {
            if n == name {
                if let Gated(gate, desc) = ty {
                    self.gate_feature(gate, attr.span, desc);
                }
                debug!("check_attribute: {:?} is known, {:?}", name, ty);
                return;
            }
        }
453
        for &(ref n, ref ty) in self.plugin_attributes {
454 455
            if &*n == name {
                // Plugins can't gate attributes, so we don't check for it
M
Manish Goregaokar 已提交
456 457
                // unlike the code above; we only use this loop to
                // short-circuit to avoid the checks below
458 459 460 461
                debug!("check_attribute: {:?} is registered by a plugin, {:?}", name, ty);
                return;
            }
        }
462 463 464 465 466
        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");
467 468
        } else if name.starts_with("derive_") {
            self.gate_feature("custom_derive", attr.span,
469
                              "attributes of the form `#[derive_*]` are reserved \
470
                               for the compiler");
471
        } else {
M
Manish Goregaokar 已提交
472 473 474 475
            // 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
476 477 478 479 480 481 482 483
            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));
            }
484 485
        }
    }
486 487
}

488 489
pub fn emit_feature_err(diag: &SpanHandler, feature: &str, span: Span, explain: &str) {
    diag.span_err(span, explain);
490 491

    // #23973: do not suggest `#![feature(...)]` if we are in beta/stable
492
    if option_env!("CFG_DISABLE_UNSTABLE_FEATURES").is_some() { return; }
493
    diag.fileline_help(span, &format!("add #![feature({})] to the \
494
                                   crate attributes to enable",
495
                                  feature));
496 497
}

498 499 500
pub const EXPLAIN_ASM: &'static str =
    "inline assembly is not stable enough for use and is subject to change";

501 502 503 504 505 506 507 508
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";
509 510
pub const EXPLAIN_ALLOW_INTERNAL_UNSTABLE: &'static str =
    "allow_internal_unstable side-steps feature gating and stability checks";
511

512 513 514
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 已提交
515 516 517 518 519
struct MacroVisitor<'a> {
    context: &'a Context<'a>
}

impl<'a, 'v> Visitor<'v> for MacroVisitor<'a> {
K
Keegan McAllister 已提交
520 521
    fn visit_mac(&mut self, mac: &ast::Mac) {
        let ast::MacInvocTT(ref path, _, _) = mac.node;
C
Corey Richardson 已提交
522 523
        let id = path.segments.last().unwrap().identifier;

524 525 526 527 528 529 530 531
        // 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 已提交
532
        if id == token::str_to_ident("asm") {
533
            self.context.gate_feature("asm", path.span, EXPLAIN_ASM);
C
Corey Richardson 已提交
534 535 536
        }

        else if id == token::str_to_ident("log_syntax") {
537
            self.context.gate_feature("log_syntax", path.span, EXPLAIN_LOG_SYNTAX);
C
Corey Richardson 已提交
538 539 540
        }

        else if id == token::str_to_ident("trace_macros") {
541
            self.context.gate_feature("trace_macros", path.span, EXPLAIN_TRACE_MACROS);
C
Corey Richardson 已提交
542 543 544
        }

        else if id == token::str_to_ident("concat_idents") {
545
            self.context.gate_feature("concat_idents", path.span, EXPLAIN_CONCAT_IDENTS);
C
Corey Richardson 已提交
546 547
        }
    }
548 549

    fn visit_attribute(&mut self, attr: &'v ast::Attribute) {
550
        self.context.check_attribute(attr, true);
551
    }
552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571

    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 已提交
572 573 574 575 576 577 578 579
}

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

impl<'a> PostExpansionVisitor<'a> {
    fn gate_feature(&self, feature: &str, span: Span, explain: &str) {
580
        if !self.context.cm.span_allows_unstable(span) {
C
Corey Richardson 已提交
581 582 583 584 585 586
            self.context.gate_feature(feature, span, explain)
        }
    }
}

impl<'a, 'v> Visitor<'v> for PostExpansionVisitor<'a> {
587 588
    fn visit_attribute(&mut self, attr: &ast::Attribute) {
        if !self.context.cm.span_allows_unstable(attr.span) {
589
            self.context.check_attribute(attr, false);
590 591 592
        }
    }

593
    fn visit_name(&mut self, sp: Span, name: ast::Name) {
594
        if !name.as_str().is_ascii() {
595 596 597 598 599
            self.gate_feature("non_ascii_idents", sp,
                              "non-ascii idents are not fully supported.");
        }
    }

600
    fn visit_item(&mut self, i: &ast::Item) {
601
        match i.node {
602
            ast::ItemExternCrate(_) => {
603
                if attr::contains_name(&i.attrs[..], "macro_reexport") {
604 605 606
                    self.gate_feature("macro_reexport", i.span,
                                      "macros reexports are experimental \
                                       and possibly buggy");
607 608 609
                }
            }

610
            ast::ItemForeignMod(ref foreign_module) => {
611
                if attr::contains_name(&i.attrs[..], "link_args") {
612 613 614 615 616
                    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")
                }
N
Niko Matsakis 已提交
617
                if foreign_module.abi == Abi::RustIntrinsic {
618 619 620 621
                    self.gate_feature("intrinsics",
                                      i.span,
                                      "intrinsics are subject to change")
                }
622 623
            }

624
            ast::ItemFn(..) => {
625
                if attr::contains_name(&i.attrs[..], "plugin_registrar") {
626 627
                    self.gate_feature("plugin_registrar", i.span,
                                      "compiler plugins are experimental and possibly buggy");
628
                }
629
                if attr::contains_name(&i.attrs[..], "start") {
630 631 632 633 634
                    self.gate_feature("start", i.span,
                                      "a #[start] function is an experimental \
                                       feature whose signature may change \
                                       over time");
                }
635
                if attr::contains_name(&i.attrs[..], "main") {
636 637 638 639 640
                    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");
                }
641 642
            }

643
            ast::ItemStruct(..) => {
644
                if attr::contains_name(&i.attrs[..], "simd") {
D
David Manescu 已提交
645 646
                    self.gate_feature("simd", i.span,
                                      "SIMD types are experimental and possibly buggy");
647
                }
D
David Manescu 已提交
648 649
            }

F
Flavio Percoco 已提交
650 651 652 653 654 655 656
            ast::ItemDefaultImpl(..) => {
                self.gate_feature("optin_builtin_traits",
                                  i.span,
                                  "default trait implementations are experimental \
                                   and possibly buggy");
            }

A
Alex Crichton 已提交
657
            ast::ItemImpl(_, polarity, _, _, _, _) => {
658 659 660 661 662 663 664 665 666
                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");
                    },
                    _ => {}
                }
667 668
            }

669 670 671
            _ => {}
        }

672
        visit::walk_item(self, i);
673
    }
674

675
    fn visit_foreign_item(&mut self, i: &ast::ForeignItem) {
676
        let links_to_llvm = match attr::first_attr_value_str_by_name(&i.attrs,
N
fallout  
Nick Cameron 已提交
677
                                                                     "link_name") {
G
GuillaumeGomez 已提交
678
            Some(val) => val.starts_with("llvm."),
679 680 681 682 683 684 685
            _ => false
        };
        if links_to_llvm {
            self.gate_feature("link_llvm_intrinsics", i.span,
                              "linking to LLVM intrinsics is experimental");
        }

686
        visit::walk_foreign_item(self, i)
687 688
    }

689
    fn visit_expr(&mut self, e: &ast::Expr) {
690
        match e.node {
691 692 693
            ast::ExprBox(..) | ast::ExprUnary(ast::UnOp::UnUniq, _) => {
                self.gate_feature("box_syntax",
                                  e.span,
694
                                  "box expression syntax is experimental; \
695 696
                                   you can call `Box::new` instead.");
            }
697 698
            _ => {}
        }
699
        visit::walk_expr(self, e);
700
    }
701

702
    fn visit_pat(&mut self, pattern: &ast::Pat) {
703 704 705 706 707 708
        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. \
709
                                   `[0, ..xs, 0]`) are experimental")
710
            }
711 712 713 714 715
            ast::PatVec(..) => {
                self.gate_feature("slice_patterns",
                                  pattern.span,
                                  "slice pattern syntax is experimental");
            }
716
            ast::PatBox(..) => {
717
                self.gate_feature("box_patterns",
718
                                  pattern.span,
719
                                  "box pattern syntax is experimental");
720
            }
721 722
            _ => {}
        }
723
        visit::walk_pat(self, pattern)
724 725
    }

726
    fn visit_fn(&mut self,
727 728 729
                fn_kind: visit::FnKind<'v>,
                fn_decl: &'v ast::FnDecl,
                block: &'v ast::Block,
730
                span: Span,
731
                _node_id: NodeId) {
N
Niko Matsakis 已提交
732 733 734 735 736 737 738 739 740 741 742 743 744
        // check for const fn declarations
        match fn_kind {
            visit::FkItemFn(_, _, _, ast::Constness::Const, _, _) => {
                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.
            }
        }

745
        match fn_kind {
746
            visit::FkItemFn(_, _, _, _, abi, _) if abi == Abi::RustIntrinsic => {
747 748 749 750
                self.gate_feature("intrinsics",
                                  span,
                                  "intrinsics are subject to change")
            }
751
            visit::FkItemFn(_, _, _, _, abi, _) |
752
            visit::FkMethod(_, &ast::MethodSig { abi, .. }, _) if abi == Abi::RustCall => {
N
Niko Matsakis 已提交
753 754 755 756
                self.gate_feature("unboxed_closures",
                                  span,
                                  "rust-call ABI is subject to change")
            }
757 758
            _ => {}
        }
759
        visit::walk_fn(self, fn_kind, fn_decl, block, span);
760
    }
761 762 763 764 765 766 767 768

    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 已提交
769 770 771 772 773
            ast::MethodTraitItem(ref sig, _) => {
                if sig.constness == ast::Constness::Const {
                    self.gate_feature("const_fn", ti.span, "const fn is unstable");
                }
            }
774 775 776 777
            ast::TypeTraitItem(_, Some(_)) => {
                self.gate_feature("associated_type_defaults", ti.span,
                                  "associated type defaults are unstable");
            }
778 779 780 781 782 783 784 785 786 787 788 789
            _ => {}
        }
        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 已提交
790 791 792 793 794
            ast::MethodImplItem(ref sig, _) => {
                if sig.constness == ast::Constness::Const {
                    self.gate_feature("const_fn", ii.span, "const fn is unstable");
                }
            }
795 796 797 798
            _ => {}
        }
        visit::walk_impl_item(self, ii);
    }
799 800
}

801 802
fn check_crate_inner<F>(cm: &CodeMap, span_handler: &SpanHandler,
                        krate: &ast::Crate,
803
                        plugin_attributes: &[(String, AttributeType)],
C
Corey Richardson 已提交
804
                        check: F)
805
                       -> Features
C
Corey Richardson 已提交
806 807
    where F: FnOnce(&mut Context, &ast::Crate)
{
808
    let mut cx = Context {
809
        features: Vec::new(),
N
Nick Cameron 已提交
810
        span_handler: span_handler,
C
Corey Richardson 已提交
811
        cm: cm,
812
        plugin_attributes: plugin_attributes,
813 814
    };

815
    let mut accepted_features = Vec::new();
N
Nick Cameron 已提交
816 817
    let mut unknown_features = Vec::new();

818
    for attr in &krate.attrs {
S
Steven Fackler 已提交
819
        if !attr.check_name("feature") {
820 821
            continue
        }
822 823 824

        match attr.meta_item_list() {
            None => {
N
Nick Cameron 已提交
825 826
                span_handler.span_err(attr.span, "malformed feature attribute, \
                                                  expected #![feature(...)]");
827 828
            }
            Some(list) => {
829
                for mi in list {
830
                    let name = match mi.node {
831
                        ast::MetaWord(ref word) => (*word).clone(),
832
                        _ => {
N
Nick Cameron 已提交
833 834 835
                            span_handler.span_err(mi.span,
                                                  "malformed feature, expected just \
                                                   one word");
836 837 838
                            continue
                        }
                    };
839
                    match KNOWN_FEATURES.iter()
B
Brian Anderson 已提交
840 841
                                        .find(|& &(n, _, _)| name == n) {
                        Some(&(name, _, Active)) => {
842
                            cx.enable_feature(name);
843
                        }
B
Brian Anderson 已提交
844
                        Some(&(_, _, Removed)) => {
N
Nick Cameron 已提交
845
                            span_handler.span_err(mi.span, "feature has been removed");
846
                        }
B
Brian Anderson 已提交
847
                        Some(&(_, _, Accepted)) => {
848
                            accepted_features.push(mi.span);
849 850
                        }
                        None => {
851
                            unknown_features.push((name, mi.span));
852 853 854 855 856 857 858
                        }
                    }
                }
            }
        }
    }

C
Corey Richardson 已提交
859
    check(&mut cx, krate);
860

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

864
    Features {
865
        unboxed_closures: cx.has_feature("unboxed_closures"),
N
Nick Cameron 已提交
866
        rustc_diagnostic_macros: cx.has_feature("rustc_diagnostic_macros"),
867
        visible_private_types: cx.has_feature("visible_private_types"),
868 869
        allow_quote: cx.has_feature("quote"),
        allow_asm: cx.has_feature("asm"),
870 871 872
        allow_log_syntax: cx.has_feature("log_syntax"),
        allow_concat_idents: cx.has_feature("concat_idents"),
        allow_trace_macros: cx.has_feature("trace_macros"),
873
        allow_internal_unstable: cx.has_feature("allow_internal_unstable"),
874
        allow_custom_derive: cx.has_feature("custom_derive"),
875 876
        allow_placement_in: cx.has_feature("placement_in_syntax"),
        allow_box: cx.has_feature("box_syntax"),
877
        allow_pushpop_unsafe: cx.has_feature("pushpop_unsafe"),
878
        simd_ffi: cx.has_feature("simd_ffi"),
879
        unmarked_api: cx.has_feature("unmarked_api"),
880
        negate_unsigned: cx.has_feature("negate_unsigned"),
881
        declared_stable_lang_features: accepted_features,
882 883
        declared_lib_features: unknown_features,
        const_fn: cx.has_feature("const_fn"),
J
Jared Roesch 已提交
884
        static_recursion: cx.has_feature("static_recursion"),
J
Jared Roesch 已提交
885
        default_type_parameter_fallback: cx.has_feature("default_type_parameter_fallback"),
886
    }
887
}
C
Corey Richardson 已提交
888 889

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

895
pub fn check_crate(cm: &CodeMap, span_handler: &SpanHandler, krate: &ast::Crate,
896 897
                   plugin_attributes: &[(String, AttributeType)],
                   unstable: UnstableFeatures) -> Features
898
{
899 900
    maybe_stage_features(span_handler, krate, unstable);

901
    check_crate_inner(cm, span_handler, krate, plugin_attributes,
C
Corey Richardson 已提交
902 903 904
                      |ctx, krate| visit::walk_crate(&mut PostExpansionVisitor { context: ctx },
                                                     krate))
}
905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938

#[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);
            }
        }
    }
}