feature_gate.rs 22.4 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.
S
Steven Fackler 已提交
24
use self::Status::*;
25

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

37
use std::slice;
38 39
use std::ascii::AsciiExt;

B
Brian Anderson 已提交
40 41 42 43 44 45 46 47 48 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
// 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.
static KNOWN_FEATURES: &'static [(&'static str, &'static str, Status)] = &[
    ("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),
76
    ("import_shadowing", "1.0.0", Removed),
B
Brian Anderson 已提交
77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
    ("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),
    ("slicing_syntax", "1.0.0", Active),
    ("box_syntax", "1.0.0", Active),
    ("on_unimplemented", "1.0.0", Active),
    ("simd_ffi", "1.0.0", Active),

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

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

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

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

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

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

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

112
    // macro reexport needs more discusion and stabilization
A
Alex Crichton 已提交
113
    ("macro_reexport", "1.0.0", Active),
114

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

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

    // Allows using items which are missing stability attributes
    ("unmarked_api", "1.0.0", Active)
125 126 127 128 129 130 131
];

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

132 133 134 135
    /// Represents a feature gate that is temporarily enabling deprecated behavior.
    /// This gate will never be accepted.
    Deprecated,

136 137 138 139 140 141 142
    /// 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,
}

143 144
/// A set of features to be used by later passes.
pub struct Features {
145
    pub unboxed_closures: bool,
N
Nick Cameron 已提交
146
    pub rustc_diagnostic_macros: bool,
147
    pub visible_private_types: bool,
148
    pub quote: bool,
149
    pub old_orphan_check: bool,
150
    pub simd_ffi: bool,
151
    pub unmarked_api: bool,
152
    pub lib_features: Vec<(InternedString, Span)>
153 154 155 156 157
}

impl Features {
    pub fn new() -> Features {
        Features {
158
            unboxed_closures: false,
N
Nick Cameron 已提交
159
            rustc_diagnostic_macros: false,
160
            visible_private_types: false,
161
            quote: false,
162
            old_orphan_check: false,
163
            simd_ffi: false,
164
            unmarked_api: false,
165
            lib_features: Vec::new()
166 167 168 169
        }
    }
}

E
Eduard Burtescu 已提交
170 171
struct Context<'a> {
    features: Vec<&'static str>,
N
Nick Cameron 已提交
172
    span_handler: &'a SpanHandler,
C
Corey Richardson 已提交
173
    cm: &'a CodeMap,
174 175
}

E
Eduard Burtescu 已提交
176
impl<'a> Context<'a> {
177 178
    fn gate_feature(&self, feature: &str, span: Span, explain: &str) {
        if !self.has_feature(feature) {
179
            emit_feature_err(self.span_handler, feature, span, explain);
180 181
        }
    }
182

183 184
    fn warn_feature(&self, feature: &str, span: Span, explain: &str) {
        if !self.has_feature(feature) {
B
Brian Anderson 已提交
185
            emit_feature_warn(self.span_handler, feature, span, explain);
186 187
        }
    }
188
    fn has_feature(&self, feature: &str) -> bool {
189
        self.features.iter().any(|&n| n == feature)
190 191 192
    }
}

193 194 195 196 197 198 199
pub fn emit_feature_err(diag: &SpanHandler, feature: &str, span: Span, explain: &str) {
    diag.span_err(span, explain);
    diag.span_help(span, &format!("add #![feature({})] to the \
                                   crate attributes to enable",
                                  feature)[]);
}

B
Brian Anderson 已提交
200 201
pub fn emit_feature_warn(diag: &SpanHandler, feature: &str, span: Span, explain: &str) {
    diag.span_warn(span, explain);
202 203 204 205 206
    if diag.handler.can_emit_warnings {
        diag.span_help(span, &format!("add #![feature({})] to the \
                                       crate attributes to silence this warning",
                                      feature)[]);
    }
B
Brian Anderson 已提交
207 208
}

C
Corey Richardson 已提交
209 210 211 212 213
struct MacroVisitor<'a> {
    context: &'a Context<'a>
}

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

K
Keegan McAllister 已提交
218
        if id == token::str_to_ident("asm") {
C
Corey Richardson 已提交
219 220 221 222 223 224 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
            self.context.gate_feature("asm", path.span, "inline assembly is not \
                stable enough for use and is subject to change");
        }

        else if id == token::str_to_ident("log_syntax") {
            self.context.gate_feature("log_syntax", path.span, "`log_syntax!` is not \
                stable enough for use and is subject to change");
        }

        else if id == token::str_to_ident("trace_macros") {
            self.context.gate_feature("trace_macros", path.span, "`trace_macros` is not \
                stable enough for use and is subject to change");
        }

        else if id == token::str_to_ident("concat_idents") {
            self.context.gate_feature("concat_idents", path.span, "`concat_idents` is not \
                stable enough for use and is subject to change");
        }
    }
}

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

impl<'a> PostExpansionVisitor<'a> {
    fn gate_feature(&self, feature: &str, span: Span, explain: &str) {
        if !self.context.cm.span_is_internal(span) {
            self.context.gate_feature(feature, span, explain)
        }
    }
}

impl<'a, 'v> Visitor<'v> for PostExpansionVisitor<'a> {
253 254
    fn visit_name(&mut self, sp: Span, name: ast::Name) {
        if !token::get_name(name).get().is_ascii() {
255 256 257 258 259
            self.gate_feature("non_ascii_idents", sp,
                              "non-ascii idents are not fully supported.");
        }
    }

260
    fn visit_item(&mut self, i: &ast::Item) {
261
        for attr in &i.attrs {
262
            if attr.name() == "thread_local" {
D
Daniel Micay 已提交
263 264 265 266
                self.gate_feature("thread_local", i.span,
                                  "`#[thread_local]` is an experimental feature, and does not \
                                  currently handle destructors. There is no corresponding \
                                  `#[task_local]` mapping to the task model");
267
            } else if attr.name() == "linkage" {
268 269 270
                self.gate_feature("linkage", i.span,
                                  "the `linkage` attribute is experimental \
                                   and not portable across platforms")
271 272 273 274
            } else if attr.name() == "rustc_on_unimplemented" {
                self.gate_feature("on_unimplemented", i.span,
                                  "the `#[rustc_on_unimplemented]` attribute \
                                  is an experimental feature")
D
Daniel Micay 已提交
275 276
            }
        }
277
        match i.node {
278 279 280 281 282
            ast::ItemExternCrate(_) => {
                if attr::contains_name(&i.attrs[], "plugin") {
                    self.gate_feature("plugin", i.span,
                                      "compiler plugins are experimental \
                                       and possibly buggy");
283 284 285 286
                } else if attr::contains_name(&i.attrs[], "macro_reexport") {
                    self.gate_feature("macro_reexport", i.span,
                                      "macros reexports are experimental \
                                       and possibly buggy");
287 288 289
                }
            }

290
            ast::ItemForeignMod(ref foreign_module) => {
J
Jorge Aparicio 已提交
291
                if attr::contains_name(&i.attrs[], "link_args") {
292 293 294 295 296
                    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")
                }
297 298 299 300 301
                if foreign_module.abi == RustIntrinsic {
                    self.gate_feature("intrinsics",
                                      i.span,
                                      "intrinsics are subject to change")
                }
302 303
            }

304
            ast::ItemFn(..) => {
J
Jorge Aparicio 已提交
305
                if attr::contains_name(&i.attrs[], "plugin_registrar") {
306 307
                    self.gate_feature("plugin_registrar", i.span,
                                      "compiler plugins are experimental and possibly buggy");
308
                }
309 310 311 312 313 314 315 316 317 318 319 320
                if attr::contains_name(&i.attrs[], "start") {
                    self.gate_feature("start", i.span,
                                      "a #[start] function is an experimental \
                                       feature whose signature may change \
                                       over time");
                }
                if attr::contains_name(&i.attrs[], "main") {
                    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");
                }
321 322
            }

323
            ast::ItemStruct(..) => {
J
Jorge Aparicio 已提交
324
                if attr::contains_name(&i.attrs[], "simd") {
D
David Manescu 已提交
325 326
                    self.gate_feature("simd", i.span,
                                      "SIMD types are experimental and possibly buggy");
327
                }
D
David Manescu 已提交
328 329
            }

A
Alex Crichton 已提交
330
            ast::ItemImpl(_, polarity, _, _, _, _) => {
331 332 333 334 335 336 337 338 339 340
                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");
                    },
                    _ => {}
                }

N
fallout  
Nick Cameron 已提交
341
                if attr::contains_name(i.attrs.as_slice(),
342 343 344 345 346 347 348
                                       "unsafe_destructor") {
                    self.gate_feature("unsafe_destructor",
                                      i.span,
                                      "`#[unsafe_destructor]` allows too \
                                       many unsafe patterns and may be \
                                       removed in the future");
                }
349

J
Jorge Aparicio 已提交
350
                if attr::contains_name(&i.attrs[],
351 352 353 354 355 356
                                       "old_orphan_check") {
                    self.gate_feature(
                        "old_orphan_check",
                        i.span,
                        "the new orphan check rules will eventually be strictly enforced");
                }
357

J
Jorge Aparicio 已提交
358
                if attr::contains_name(&i.attrs[],
359 360 361 362 363
                                       "old_impl_check") {
                    self.gate_feature("old_impl_check",
                                      i.span,
                                      "`#[old_impl_check]` will be removed in the future");
                }
364 365
            }

366 367 368
            _ => {}
        }

369
        visit::walk_item(self, i);
370
    }
371

372
    fn visit_foreign_item(&mut self, i: &ast::ForeignItem) {
J
Jorge Aparicio 已提交
373
        if attr::contains_name(&i.attrs[], "linkage") {
374 375 376
            self.gate_feature("linkage", i.span,
                              "the `linkage` attribute is experimental \
                               and not portable across platforms")
377
        }
378

N
fallout  
Nick Cameron 已提交
379 380
        let links_to_llvm = match attr::first_attr_value_str_by_name(i.attrs.as_slice(),
                                                                     "link_name") {
381 382 383 384 385 386 387 388
            Some(val) => val.get().starts_with("llvm."),
            _ => false
        };
        if links_to_llvm {
            self.gate_feature("link_llvm_intrinsics", i.span,
                              "linking to LLVM intrinsics is experimental");
        }

389
        visit::walk_foreign_item(self, i)
390 391
    }

392
    fn visit_ty(&mut self, t: &ast::Ty) {
393 394 395 396 397 398 399 400 401 402
        match t.node {
            ast::TyPath(ref p, _) => {
                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 已提交
403
                            Some("the `uint` type is deprecated; \
404 405 406 407 408 409 410 411 412 413 414 415 416 417
                                  use `usize` or a fixed-sized integer")
                        } else {
                            None
                        };

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

421
    fn visit_expr(&mut self, e: &ast::Expr) {
422
        match e.node {
423 424 425 426 427 428
            ast::ExprBox(..) | ast::ExprUnary(ast::UnOp::UnUniq, _) => {
                self.gate_feature("box_syntax",
                                  e.span,
                                  "box expression syntax is experimental in alpha release; \
                                   you can call `Box::new` instead.");
            }
429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447
            ast::ExprLit(ref lit) => {
                match lit.node {
                    ast::LitInt(_, ty) => {
                        let msg = if let ast::SignedIntLit(ast::TyIs(true), _) = ty {
                            Some("the `i` suffix on integers is deprecated; use `is` \
                                  or one of the fixed-sized suffixes")
                        } else if let ast::UnsignedIntLit(ast::TyUs(true)) = ty {
                            Some("the `u` suffix on integers is deprecated; use `us` \
                                 or one of the fixed-sized suffixes")
                        } else {
                            None
                        };
                        if let Some(msg) = msg {
                            self.context.warn_feature("int_uint", e.span, msg);
                        }
                    }
                    _ => {}
                }
            }
448 449
            _ => {}
        }
450
        visit::walk_expr(self, e);
451
    }
452

453
    fn visit_attribute(&mut self, attr: &ast::Attribute) {
454 455 456 457 458
        if attr.check_name("staged_api") {
            self.gate_feature("staged_api", attr.span,
                              "staged_api is for use by rustc only");
        }

459
        if attr::contains_name(slice::ref_slice(attr), "lang") {
460 461 462 463 464 465
            self.gate_feature("lang_items",
                              attr.span,
                              "language items are subject to change");
        }
    }

466
    fn visit_pat(&mut self, pattern: &ast::Pat) {
467 468 469 470 471 472 473 474
        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")
            }
475 476 477 478 479
            ast::PatBox(..) => {
                self.gate_feature("box_syntax",
                                  pattern.span,
                                  "box pattern syntax is experimental in alpha release");
            }
480 481
            _ => {}
        }
482
        visit::walk_pat(self, pattern)
483 484
    }

485
    fn visit_fn(&mut self,
486 487 488
                fn_kind: visit::FnKind<'v>,
                fn_decl: &'v ast::FnDecl,
                block: &'v ast::Block,
489
                span: Span,
490
                _node_id: NodeId) {
491 492
        match fn_kind {
            visit::FkItemFn(_, _, _, abi) if abi == RustIntrinsic => {
493 494 495 496 497 498
                self.gate_feature("intrinsics",
                                  span,
                                  "intrinsics are subject to change")
            }
            _ => {}
        }
499
        visit::walk_fn(self, fn_kind, fn_decl, block, span);
500
    }
501 502
}

C
Corey Richardson 已提交
503 504
fn check_crate_inner<F>(cm: &CodeMap, span_handler: &SpanHandler, krate: &ast::Crate,
                        check: F)
505
                       -> Features
C
Corey Richardson 已提交
506 507
    where F: FnOnce(&mut Context, &ast::Crate)
{
508
    let mut cx = Context {
509
        features: Vec::new(),
N
Nick Cameron 已提交
510
        span_handler: span_handler,
C
Corey Richardson 已提交
511
        cm: cm,
512 513
    };

N
Nick Cameron 已提交
514 515
    let mut unknown_features = Vec::new();

516
    for attr in &krate.attrs {
S
Steven Fackler 已提交
517
        if !attr.check_name("feature") {
518 519
            continue
        }
520 521 522

        match attr.meta_item_list() {
            None => {
N
Nick Cameron 已提交
523 524
                span_handler.span_err(attr.span, "malformed feature attribute, \
                                                  expected #![feature(...)]");
525 526
            }
            Some(list) => {
527
                for mi in list {
528
                    let name = match mi.node {
529
                        ast::MetaWord(ref word) => (*word).clone(),
530
                        _ => {
N
Nick Cameron 已提交
531 532 533
                            span_handler.span_err(mi.span,
                                                  "malformed feature, expected just \
                                                   one word");
534 535 536
                            continue
                        }
                    };
537
                    match KNOWN_FEATURES.iter()
B
Brian Anderson 已提交
538 539
                                        .find(|& &(n, _, _)| name == n) {
                        Some(&(name, _, Active)) => {
540 541
                            cx.features.push(name);
                        }
B
Brian Anderson 已提交
542
                        Some(&(name, _, Deprecated)) => {
543 544 545 546 547 548
                            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 已提交
549
                        Some(&(_, _, Removed)) => {
N
Nick Cameron 已提交
550
                            span_handler.span_err(mi.span, "feature has been removed");
551
                        }
B
Brian Anderson 已提交
552
                        Some(&(_, _, Accepted)) => {
N
Nick Cameron 已提交
553 554
                            span_handler.span_warn(mi.span, "feature has been added to Rust, \
                                                             directive not necessary");
555 556
                        }
                        None => {
557
                            unknown_features.push((name, mi.span));
558 559 560 561 562 563 564
                        }
                    }
                }
            }
        }
    }

C
Corey Richardson 已提交
565
    check(&mut cx, krate);
566

567
    Features {
568
        unboxed_closures: cx.has_feature("unboxed_closures"),
N
Nick Cameron 已提交
569
        rustc_diagnostic_macros: cx.has_feature("rustc_diagnostic_macros"),
570
        visible_private_types: cx.has_feature("visible_private_types"),
571
        quote: cx.has_feature("quote"),
572
        old_orphan_check: cx.has_feature("old_orphan_check"),
573
        simd_ffi: cx.has_feature("simd_ffi"),
574
        unmarked_api: cx.has_feature("unmarked_api"),
575 576
        lib_features: unknown_features
    }
577
}
C
Corey Richardson 已提交
578 579

pub fn check_crate_macros(cm: &CodeMap, span_handler: &SpanHandler, krate: &ast::Crate)
580
-> Features {
C
Corey Richardson 已提交
581 582 583 584 585
    check_crate_inner(cm, span_handler, krate,
                      |ctx, krate| visit::walk_crate(&mut MacroVisitor { context: ctx }, krate))
}

pub fn check_crate(cm: &CodeMap, span_handler: &SpanHandler, krate: &ast::Crate)
586
-> Features {
C
Corey Richardson 已提交
587 588 589 590
    check_crate_inner(cm, span_handler, krate,
                      |ctx, krate| visit::walk_crate(&mut PostExpansionVisitor { context: ctx },
                                                     krate))
}
591