feature_gate.rs 30.9 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
// 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
//!
//! This modules implements the gating necessary for preventing certain compiler
//! 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
Nick Cameron 已提交
28 29 30 31 32
use abi::RustIntrinsic;
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 75 76
    ("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),
    ("phase", "1.0.0", Removed),
    ("plugin_registrar", "1.0.0", Active),
    ("log_syntax", "1.0.0", Active),
    ("trace_macros", "1.0.0", Active),
    ("concat_idents", "1.0.0", Active),
    ("unsafe_destructor", "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),
77
    ("import_shadowing", "1.0.0", Removed),
B
Brian Anderson 已提交
78 79 80 81
    ("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),
82
    ("slicing_syntax", "1.0.0", Accepted),
B
Brian Anderson 已提交
83 84 85
    ("box_syntax", "1.0.0", Active),
    ("on_unimplemented", "1.0.0", Active),
    ("simd_ffi", "1.0.0", Active),
86
    ("allocator", "1.0.0", Active),
B
Brian Anderson 已提交
87 88 89 90 91 92 93

    ("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),
94

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

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

    // A way to temporarily opt out of the new orphan rules. This will *never* be accepted.
B
Brian Anderson 已提交
103
    ("old_orphan_check", "1.0.0", Deprecated),
104

105
    // A way to temporarily opt out of the new impl rules. This will *never* be accepted.
B
Brian Anderson 已提交
106
    ("old_impl_check", "1.0.0", Deprecated),
107

108
    // OIBIT specific features
B
Brian Anderson 已提交
109
    ("optin_builtin_traits", "1.0.0", Active),
110

111
    // int and uint are now deprecated
B
Brian Anderson 已提交
112
    ("int_uint", "1.0.0", Active),
113

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

117 118
    // These are used to test this portion of the compiler, they don't actually
    // mean anything
B
Brian Anderson 已提交
119 120
    ("test_accepted_feature", "1.0.0", Accepted),
    ("test_removed_feature", "1.0.0", Removed),
121 122 123

    // Allows use of #[staged_api]
    ("staged_api", "1.0.0", Active),
124 125

    // Allows using items which are missing stability attributes
K
Keegan McAllister 已提交
126 127 128 129
    ("unmarked_api", "1.0.0", Active),

    // Allows using #![no_std]
    ("no_std", "1.0.0", Active),
130 131 132

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

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

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

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

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

    // Allows the use of `static_assert`
    ("static_assert", "1.0.0", Active),
150 151 152 153 154 155

    // 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),
156
];
157
// (changing above list without updating src/doc/reference.md makes @cmr sad)
158 159 160 161 162 163

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

164 165 166 167
    /// Represents a feature gate that is temporarily enabling deprecated behavior.
    /// This gate will never be accepted.
    Deprecated,

168 169 170 171 172 173 174
    /// 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,
}

175
// Attributes that have a special meaning to rustc or rustdoc
176
pub const KNOWN_ATTRIBUTES: &'static [(&'static str, AttributeType)] = &[
177 178 179 180 181 182 183 184 185 186 187 188 189
    // Normal attributes

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

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

    ("cfg", Normal),
190
    ("cfg_attr", Normal),
191 192 193 194 195 196 197 198 199 200 201 202 203 204
    ("main", Normal),
    ("start", Normal),
    ("test", Normal),
    ("bench", Normal),
    ("simd", Normal),
    ("repr", Normal),
    ("path", Normal),
    ("abi", Normal),
    ("unsafe_destructor", Normal),
    ("automatically_derived", Normal),
    ("no_mangle", Normal),
    ("no_link", Normal),
    ("derive", Normal),
    ("should_fail", Normal),
S
Steven Fackler 已提交
205
    ("should_panic", Normal),
206 207 208 209 210
    ("ignore", Normal),
    ("no_implicit_prelude", Normal),
    ("reexport_test_harness_main", Normal),
    ("link_args", Normal),
    ("macro_escape", Normal),
211

M
Manish Goregaokar 已提交
212 213 214 215 216 217 218 219 220 221

    ("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")),
    ("lang", Gated("lang_items",
                     "language items are subject to change")),
222 223 224 225 226 227 228
    ("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 已提交
229

M
Manish Goregaokar 已提交
230 231 232
    ("rustc_on_unimplemented", Gated("on_unimplemented",
                                     "the `#[rustc_on_unimplemented]` attribute \
                                      is an experimental feature")),
233 234
    ("allocator", Gated("allocator",
                        "the `#[allocator]` attribute is an experimental feature")),
M
Manish Goregaokar 已提交
235 236 237 238 239 240 241 242 243 244
    ("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")),

245 246 247
    ("allow_internal_unstable", Gated("allow_internal_unstable",
                                      EXPLAIN_ALLOW_INTERNAL_UNSTABLE)),

248 249 250 251 252 253 254 255 256 257 258 259 260 261 262
    // 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),
    ("packed", Whitelisted),
H
Huon Wilson 已提交
263 264
    ("static_assert", Gated("static_assert",
                            "`#[static_assert]` is an experimental feature, and has a poor API")),
265 266
    ("no_debug", Whitelisted),
    ("omit_gdb_pretty_printer_section", Whitelisted),
267 268 269
    ("unsafe_no_drop_flag", Gated("unsafe_no_drop_flag",
                                  "unsafe_no_drop_flag has unstable semantics \
                                   and may be removed in the future")),
270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288

    // used in resolve
    ("prelude_import", Whitelisted),

    // 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),

    // FIXME: #19470 this shouldn't be needed forever
    ("old_orphan_check", Whitelisted),
    ("old_impl_check", Whitelisted),
    ("rustc_paren_sugar", Whitelisted), // FIXME: #18101 temporary unboxed closure hack

    // Crate level attributes
    ("crate_name", CrateLevel),
    ("crate_type", CrateLevel),
289
    ("crate_id", CrateLevel),
290 291 292 293
    ("feature", CrateLevel),
    ("no_start", CrateLevel),
    ("no_main", CrateLevel),
    ("no_builtins", CrateLevel),
294
    ("recursion_limit", CrateLevel),
295 296
];

297
#[derive(PartialEq, Copy, Debug)]
298 299 300 301 302 303 304 305 306 307
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 已提交
308 309 310 311
    /// Is gated by a given feature gate and reason
    /// These get whitelisted too
    Gated(&'static str, &'static str),

312 313 314 315
    /// Builtin attribute that is only allowed at the crate level
    CrateLevel,
}

316 317
/// A set of features to be used by later passes.
pub struct Features {
318
    pub unboxed_closures: bool,
N
Nick Cameron 已提交
319
    pub rustc_diagnostic_macros: bool,
320
    pub visible_private_types: bool,
321 322
    pub allow_quote: bool,
    pub allow_asm: bool,
323 324 325
    pub allow_log_syntax: bool,
    pub allow_concat_idents: bool,
    pub allow_trace_macros: bool,
326
    pub allow_internal_unstable: bool,
327
    pub allow_custom_derive: bool,
328
    pub old_orphan_check: bool,
329
    pub simd_ffi: bool,
330
    pub unmarked_api: bool,
331 332 333 334
    /// 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
    pub declared_lib_features: Vec<(InternedString, Span)>
335 336 337 338 339
}

impl Features {
    pub fn new() -> Features {
        Features {
340
            unboxed_closures: false,
N
Nick Cameron 已提交
341
            rustc_diagnostic_macros: false,
342
            visible_private_types: false,
343 344
            allow_quote: false,
            allow_asm: false,
345 346 347
            allow_log_syntax: false,
            allow_concat_idents: false,
            allow_trace_macros: false,
348
            allow_internal_unstable: false,
349
            allow_custom_derive: false,
350
            old_orphan_check: false,
351
            simd_ffi: false,
352
            unmarked_api: false,
353 354
            declared_stable_lang_features: Vec::new(),
            declared_lib_features: Vec::new()
355 356 357 358
        }
    }
}

E
Eduard Burtescu 已提交
359 360
struct Context<'a> {
    features: Vec<&'static str>,
N
Nick Cameron 已提交
361
    span_handler: &'a SpanHandler,
C
Corey Richardson 已提交
362
    cm: &'a CodeMap,
363
    do_warnings: bool,
364 365
}

E
Eduard Burtescu 已提交
366
impl<'a> Context<'a> {
367
    fn gate_feature(&self, feature: &str, span: Span, explain: &str) {
368 369 370
        let has_feature = self.has_feature(feature);
        debug!("gate_feature(feature = {:?}, span = {:?}); has? {}", feature, span, has_feature);
        if !has_feature {
371
            emit_feature_err(self.span_handler, feature, span, explain);
372 373
        }
    }
374

375
    fn warn_feature(&self, feature: &str, span: Span, explain: &str) {
376
        if !self.has_feature(feature) && self.do_warnings {
B
Brian Anderson 已提交
377
            emit_feature_warn(self.span_handler, feature, span, explain);
378 379
        }
    }
380
    fn has_feature(&self, feature: &str) -> bool {
381
        self.features.iter().any(|&n| n == feature)
382
    }
383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400

    fn check_attribute(&self, attr: &ast::Attribute) {
        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;
            }
        }
        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");
401 402 403 404
        } else if name.starts_with("derive_") {
            self.gate_feature("custom_derive", attr.span,
                              "attributes of the form `#[derive_*]` are reserved
                               for the compiler");
405 406
        } else {
            self.gate_feature("custom_attribute", attr.span,
407
                       &format!("The attribute `{}` is currently \
408 409 410
                                unknown to the the compiler and \
                                may have meaning \
                                added to it in the future",
411
                                name));
412 413
        }
    }
414 415
}

416 417
pub fn emit_feature_err(diag: &SpanHandler, feature: &str, span: Span, explain: &str) {
    diag.span_err(span, explain);
418
    diag.fileline_help(span, &format!("add #![feature({})] to the \
419
                                   crate attributes to enable",
420
                                  feature));
421 422
}

B
Brian Anderson 已提交
423 424
pub fn emit_feature_warn(diag: &SpanHandler, feature: &str, span: Span, explain: &str) {
    diag.span_warn(span, explain);
425
    if diag.handler.can_emit_warnings {
426
        diag.fileline_help(span, &format!("add #![feature({})] to the \
427
                                       crate attributes to silence this warning",
428
                                      feature));
429
    }
B
Brian Anderson 已提交
430 431
}

432 433 434
pub const EXPLAIN_ASM: &'static str =
    "inline assembly is not stable enough for use and is subject to change";

435 436 437 438 439 440 441 442
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";
443 444
pub const EXPLAIN_ALLOW_INTERNAL_UNSTABLE: &'static str =
    "allow_internal_unstable side-steps feature gating and stability checks";
445

446 447 448
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 已提交
449 450 451 452 453
struct MacroVisitor<'a> {
    context: &'a Context<'a>
}

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

458 459 460 461 462 463 464 465
        // 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 已提交
466
        if id == token::str_to_ident("asm") {
467
            self.context.gate_feature("asm", path.span, EXPLAIN_ASM);
C
Corey Richardson 已提交
468 469 470
        }

        else if id == token::str_to_ident("log_syntax") {
471
            self.context.gate_feature("log_syntax", path.span, EXPLAIN_LOG_SYNTAX);
C
Corey Richardson 已提交
472 473 474
        }

        else if id == token::str_to_ident("trace_macros") {
475
            self.context.gate_feature("trace_macros", path.span, EXPLAIN_TRACE_MACROS);
C
Corey Richardson 已提交
476 477 478
        }

        else if id == token::str_to_ident("concat_idents") {
479
            self.context.gate_feature("concat_idents", path.span, EXPLAIN_CONCAT_IDENTS);
C
Corey Richardson 已提交
480 481
        }
    }
482 483

    fn visit_attribute(&mut self, attr: &'v ast::Attribute) {
484
        self.context.check_attribute(attr);
485
    }
C
Corey Richardson 已提交
486 487 488 489 490 491 492 493
}

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

impl<'a> PostExpansionVisitor<'a> {
    fn gate_feature(&self, feature: &str, span: Span, explain: &str) {
494
        if !self.context.cm.span_allows_unstable(span) {
C
Corey Richardson 已提交
495 496 497 498 499 500
            self.context.gate_feature(feature, span, explain)
        }
    }
}

impl<'a, 'v> Visitor<'v> for PostExpansionVisitor<'a> {
501 502 503 504 505 506
    fn visit_attribute(&mut self, attr: &ast::Attribute) {
        if !self.context.cm.span_allows_unstable(attr.span) {
            self.context.check_attribute(attr);
        }
    }

507
    fn visit_name(&mut self, sp: Span, name: ast::Name) {
G
GuillaumeGomez 已提交
508
        if !token::get_name(name).is_ascii() {
509 510 511 512 513
            self.gate_feature("non_ascii_idents", sp,
                              "non-ascii idents are not fully supported.");
        }
    }

514
    fn visit_item(&mut self, i: &ast::Item) {
515
        match i.node {
516
            ast::ItemExternCrate(_) => {
517
                if attr::contains_name(&i.attrs[..], "macro_reexport") {
518 519 520
                    self.gate_feature("macro_reexport", i.span,
                                      "macros reexports are experimental \
                                       and possibly buggy");
521 522 523
                }
            }

524
            ast::ItemForeignMod(ref foreign_module) => {
525
                if attr::contains_name(&i.attrs[..], "link_args") {
526 527 528 529 530
                    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")
                }
531 532 533 534 535
                if foreign_module.abi == RustIntrinsic {
                    self.gate_feature("intrinsics",
                                      i.span,
                                      "intrinsics are subject to change")
                }
536 537
            }

538
            ast::ItemFn(..) => {
539
                if attr::contains_name(&i.attrs[..], "plugin_registrar") {
540 541
                    self.gate_feature("plugin_registrar", i.span,
                                      "compiler plugins are experimental and possibly buggy");
542
                }
543
                if attr::contains_name(&i.attrs[..], "start") {
544 545 546 547 548
                    self.gate_feature("start", i.span,
                                      "a #[start] function is an experimental \
                                       feature whose signature may change \
                                       over time");
                }
549
                if attr::contains_name(&i.attrs[..], "main") {
550 551 552 553 554
                    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");
                }
555 556
            }

557
            ast::ItemStruct(..) => {
558
                if attr::contains_name(&i.attrs[..], "simd") {
D
David Manescu 已提交
559 560
                    self.gate_feature("simd", i.span,
                                      "SIMD types are experimental and possibly buggy");
561
                }
D
David Manescu 已提交
562 563
            }

F
Flavio Percoco 已提交
564 565 566 567 568 569 570
            ast::ItemDefaultImpl(..) => {
                self.gate_feature("optin_builtin_traits",
                                  i.span,
                                  "default trait implementations are experimental \
                                   and possibly buggy");
            }

A
Alex Crichton 已提交
571
            ast::ItemImpl(_, polarity, _, _, _, _) => {
572 573 574 575 576 577 578 579 580 581
                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");
                    },
                    _ => {}
                }

582
                if attr::contains_name(&i.attrs,
583 584 585 586 587 588 589
                                       "unsafe_destructor") {
                    self.gate_feature("unsafe_destructor",
                                      i.span,
                                      "`#[unsafe_destructor]` allows too \
                                       many unsafe patterns and may be \
                                       removed in the future");
                }
590

591
                if attr::contains_name(&i.attrs[..],
592 593 594 595 596 597
                                       "old_orphan_check") {
                    self.gate_feature(
                        "old_orphan_check",
                        i.span,
                        "the new orphan check rules will eventually be strictly enforced");
                }
598

599
                if attr::contains_name(&i.attrs[..],
600 601 602 603 604
                                       "old_impl_check") {
                    self.gate_feature("old_impl_check",
                                      i.span,
                                      "`#[old_impl_check]` will be removed in the future");
                }
605 606
            }

607 608 609
            _ => {}
        }

610
        visit::walk_item(self, i);
611
    }
612

613
    fn visit_foreign_item(&mut self, i: &ast::ForeignItem) {
614
        let links_to_llvm = match attr::first_attr_value_str_by_name(&i.attrs,
N
fallout  
Nick Cameron 已提交
615
                                                                     "link_name") {
G
GuillaumeGomez 已提交
616
            Some(val) => val.starts_with("llvm."),
617 618 619 620 621 622 623
            _ => false
        };
        if links_to_llvm {
            self.gate_feature("link_llvm_intrinsics", i.span,
                              "linking to LLVM intrinsics is experimental");
        }

624
        visit::walk_foreign_item(self, i)
625 626
    }

627
    fn visit_ty(&mut self, t: &ast::Ty) {
628
        match t.node {
629
            ast::TyPath(None, ref p) => {
630 631 632 633 634 635 636 637
                match &*p.segments {

                    [ast::PathSegment { identifier, .. }] => {
                        let name = token::get_ident(identifier);
                        let msg = if name == "int" {
                            Some("the `int` type is deprecated; \
                                  use `isize` or a fixed-sized integer")
                        } else if name == "uint" {
H
Huon Wilson 已提交
638
                            Some("the `uint` type is deprecated; \
639 640 641 642 643 644 645 646 647 648 649 650 651 652
                                  use `usize` or a fixed-sized integer")
                        } else {
                            None
                        };

                        if let Some(msg) = msg {
                            self.context.warn_feature("int_uint", t.span, msg)
                        }
                    }
                    _ => {}
                }
            }
            _ => {}
        }
653
        visit::walk_ty(self, t);
654
    }
655

656
    fn visit_expr(&mut self, e: &ast::Expr) {
657
        match e.node {
658 659 660
            ast::ExprBox(..) | ast::ExprUnary(ast::UnOp::UnUniq, _) => {
                self.gate_feature("box_syntax",
                                  e.span,
661
                                  "box expression syntax is experimental; \
662 663
                                   you can call `Box::new` instead.");
            }
664 665 666 667
            ast::ExprLit(ref lit) => {
                match lit.node {
                    ast::LitInt(_, ty) => {
                        let msg = if let ast::SignedIntLit(ast::TyIs(true), _) = ty {
668 669
                            Some("the `i` and `is` suffixes on integers are deprecated; \
                                  use `isize` or one of the fixed-sized suffixes")
670
                        } else if let ast::UnsignedIntLit(ast::TyUs(true)) = ty {
671 672
                            Some("the `u` and `us` suffixes on integers are deprecated; \
                                  use `usize` or one of the fixed-sized suffixes")
673 674 675 676 677 678 679 680 681 682
                        } else {
                            None
                        };
                        if let Some(msg) = msg {
                            self.context.warn_feature("int_uint", e.span, msg);
                        }
                    }
                    _ => {}
                }
            }
683 684
            _ => {}
        }
685
        visit::walk_expr(self, e);
686
    }
687

688
    fn visit_pat(&mut self, pattern: &ast::Pat) {
689 690 691 692 693 694 695 696
        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. \
                                   `[0, ..xs, 0]` are experimental")
            }
697
            ast::PatBox(..) => {
698
                self.gate_feature("box_patterns",
699
                                  pattern.span,
700
                                  "box pattern syntax is experimental");
701
            }
702 703
            _ => {}
        }
704
        visit::walk_pat(self, pattern)
705 706
    }

707
    fn visit_fn(&mut self,
708 709 710
                fn_kind: visit::FnKind<'v>,
                fn_decl: &'v ast::FnDecl,
                block: &'v ast::Block,
711
                span: Span,
712
                _node_id: NodeId) {
713 714
        match fn_kind {
            visit::FkItemFn(_, _, _, abi) if abi == RustIntrinsic => {
715 716 717 718 719 720
                self.gate_feature("intrinsics",
                                  span,
                                  "intrinsics are subject to change")
            }
            _ => {}
        }
721
        visit::walk_fn(self, fn_kind, fn_decl, block, span);
722
    }
723 724
}

C
Corey Richardson 已提交
725
fn check_crate_inner<F>(cm: &CodeMap, span_handler: &SpanHandler, krate: &ast::Crate,
726
                        do_warnings: bool,
C
Corey Richardson 已提交
727
                        check: F)
728
                       -> Features
C
Corey Richardson 已提交
729 730
    where F: FnOnce(&mut Context, &ast::Crate)
{
731
    let mut cx = Context {
732
        features: Vec::new(),
N
Nick Cameron 已提交
733
        span_handler: span_handler,
734
        do_warnings: do_warnings,
C
Corey Richardson 已提交
735
        cm: cm,
736 737
    };

738
    let mut accepted_features = Vec::new();
N
Nick Cameron 已提交
739 740
    let mut unknown_features = Vec::new();

741
    for attr in &krate.attrs {
S
Steven Fackler 已提交
742
        if !attr.check_name("feature") {
743 744
            continue
        }
745 746 747

        match attr.meta_item_list() {
            None => {
N
Nick Cameron 已提交
748 749
                span_handler.span_err(attr.span, "malformed feature attribute, \
                                                  expected #![feature(...)]");
750 751
            }
            Some(list) => {
752
                for mi in list {
753
                    let name = match mi.node {
754
                        ast::MetaWord(ref word) => (*word).clone(),
755
                        _ => {
N
Nick Cameron 已提交
756 757 758
                            span_handler.span_err(mi.span,
                                                  "malformed feature, expected just \
                                                   one word");
759 760 761
                            continue
                        }
                    };
762
                    match KNOWN_FEATURES.iter()
B
Brian Anderson 已提交
763 764
                                        .find(|& &(n, _, _)| name == n) {
                        Some(&(name, _, Active)) => {
765 766
                            cx.features.push(name);
                        }
B
Brian Anderson 已提交
767
                        Some(&(name, _, Deprecated)) => {
768 769 770 771 772 773
                            cx.features.push(name);
                            span_handler.span_warn(
                                mi.span,
                                "feature is deprecated and will only be available \
                                 for a limited time, please rewrite code that relies on it");
                        }
B
Brian Anderson 已提交
774
                        Some(&(_, _, Removed)) => {
N
Nick Cameron 已提交
775
                            span_handler.span_err(mi.span, "feature has been removed");
776
                        }
B
Brian Anderson 已提交
777
                        Some(&(_, _, Accepted)) => {
778
                            accepted_features.push(mi.span);
779 780
                        }
                        None => {
781
                            unknown_features.push((name, mi.span));
782 783 784 785 786 787 788
                        }
                    }
                }
            }
        }
    }

C
Corey Richardson 已提交
789
    check(&mut cx, krate);
790

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

794
    Features {
795
        unboxed_closures: cx.has_feature("unboxed_closures"),
N
Nick Cameron 已提交
796
        rustc_diagnostic_macros: cx.has_feature("rustc_diagnostic_macros"),
797
        visible_private_types: cx.has_feature("visible_private_types"),
798 799
        allow_quote: cx.has_feature("quote"),
        allow_asm: cx.has_feature("asm"),
800 801 802
        allow_log_syntax: cx.has_feature("log_syntax"),
        allow_concat_idents: cx.has_feature("concat_idents"),
        allow_trace_macros: cx.has_feature("trace_macros"),
803
        allow_internal_unstable: cx.has_feature("allow_internal_unstable"),
804
        allow_custom_derive: cx.has_feature("custom_derive"),
805
        old_orphan_check: cx.has_feature("old_orphan_check"),
806
        simd_ffi: cx.has_feature("simd_ffi"),
807
        unmarked_api: cx.has_feature("unmarked_api"),
808 809
        declared_stable_lang_features: accepted_features,
        declared_lib_features: unknown_features
810
    }
811
}
C
Corey Richardson 已提交
812 813

pub fn check_crate_macros(cm: &CodeMap, span_handler: &SpanHandler, krate: &ast::Crate)
814
-> Features {
815
    check_crate_inner(cm, span_handler, krate, true,
C
Corey Richardson 已提交
816 817 818
                      |ctx, krate| visit::walk_crate(&mut MacroVisitor { context: ctx }, krate))
}

819 820 821 822
pub fn check_crate(cm: &CodeMap, span_handler: &SpanHandler, krate: &ast::Crate,
                   do_warnings: bool) -> Features
{
    check_crate_inner(cm, span_handler, krate, do_warnings,
C
Corey Richardson 已提交
823 824 825
                      |ctx, krate| visit::walk_crate(&mut PostExpansionVisitor { context: ctx },
                                                     krate))
}