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

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

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

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

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

B
Brian Anderson 已提交
43 44 45 46 47 48 49
// If you change this list without updating src/doc/reference.md, @cmr will be sad
// Don't ever remove anything from this list; set them to 'Removed'.
// The version numbers here correspond to the version in which the current status
// was set. This is most important for knowing when a particular feature became
// stable (active).
// NB: The featureck.py script parses this information directly out of the source
// so take care when modifying it.
50 51 52 53
const KNOWN_FEATURES: &'static [(&'static str, &'static str, Option<u32>, Status)] = &[
    ("globs", "1.0.0", None, Accepted),
    ("macro_rules", "1.0.0", None, Accepted),
    ("struct_variant", "1.0.0", None, Accepted),
A
Aaron Turon 已提交
54
    ("asm", "1.0.0", Some(29722), Active),
55
    ("managed_boxes", "1.0.0", None, Removed),
A
Aaron Turon 已提交
56 57 58 59 60 61 62 63 64
    ("non_ascii_idents", "1.0.0", Some(28979), Active),
    ("thread_local", "1.0.0", Some(29594), Active),
    ("link_args", "1.0.0", Some(29596), Active),
    ("plugin_registrar", "1.0.0", Some(29597), Active),
    ("log_syntax", "1.0.0", Some(29598), Active),
    ("trace_macros", "1.0.0", Some(29598), Active),
    ("concat_idents", "1.0.0", Some(29599), Active),

    // rustc internal, for now:
65 66 67 68 69
    ("intrinsics", "1.0.0", None, Active),
    ("lang_items", "1.0.0", None, Active),

    ("simd", "1.0.0", Some(27731), Active),
    ("default_type_params", "1.0.0", None, Accepted),
A
Aaron Turon 已提交
70 71 72
    ("quote", "1.0.0", Some(29601), Active),
    ("link_llvm_intrinsics", "1.0.0", Some(29602), Active),
    ("linkage", "1.0.0", Some(29603), Active),
73 74 75 76
    ("struct_inherit", "1.0.0", None, Removed),

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

A
Aaron Turon 已提交
77
    // rustc internal
78
    ("rustc_diagnostic_macros", "1.0.0", None, Active),
A
Aaron Turon 已提交
79 80
    ("unboxed_closures", "1.0.0", Some(29625), Active),
    ("reflect", "1.0.0", Some(27749), Active),
81
    ("import_shadowing", "1.0.0", None, Removed),
A
Aaron Turon 已提交
82
    ("advanced_slice_patterns", "1.0.0", Some(23121), Active),
83 84
    ("tuple_indexing", "1.0.0", None, Accepted),
    ("associated_types", "1.0.0", None, Accepted),
85
    ("visible_private_types", "1.0.0", None, Removed),
86
    ("slicing_syntax", "1.0.0", None, Accepted),
87 88
    ("box_syntax", "1.0.0", Some(27779), Active),
    ("placement_in_syntax", "1.0.0", Some(27779), Active),
A
Aaron Turon 已提交
89 90

    // rustc internal.
91
    ("pushpop_unsafe", "1.2.0", None, Active),
A
Aaron Turon 已提交
92 93 94 95 96 97

    ("on_unimplemented", "1.0.0", Some(29628), Active),
    ("simd_ffi", "1.0.0", Some(27731), Active),
    ("allocator", "1.0.0", Some(27389), Active),
    ("needs_allocator", "1.4.0", Some(27389), Active),
    ("linked_from", "1.3.0", Some(29629), Active),
98 99 100 101

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

A
Aaron Turon 已提交
102 103 104
    ("plugin", "1.0.0", Some(29597), Active),
    ("start", "1.0.0", Some(29633), Active),
    ("main", "1.0.0", Some(29634), Active),
105

A
Aaron Turon 已提交
106
    ("fundamental", "1.0.0", Some(29635), Active),
107

108 109
    // A temporary feature gate used to enable parser extensions needed
    // to bootstrap fix for #5723.
110
    ("issue_5723_bootstrap", "1.0.0", None, Accepted),
111

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

115
    // OIBIT specific features
A
Aaron Turon 已提交
116
    ("optin_builtin_traits", "1.0.0", Some(13231), Active),
117

J
Joseph Crail 已提交
118
    // macro reexport needs more discussion and stabilization
A
Aaron Turon 已提交
119
    ("macro_reexport", "1.0.0", Some(29638), Active),
120

121 122
    // These are used to test this portion of the compiler, they don't actually
    // mean anything
123 124
    ("test_accepted_feature", "1.0.0", None, Accepted),
    ("test_removed_feature", "1.0.0", None, Removed),
125 126

    // Allows use of #[staged_api]
A
Aaron Turon 已提交
127
    // rustc internal
128
    ("staged_api", "1.0.0", None, Active),
129 130

    // Allows using items which are missing stability attributes
A
Aaron Turon 已提交
131
    // rustc internal
132
    ("unmarked_api", "1.0.0", None, Active),
K
Keegan McAllister 已提交
133 134

    // Allows using #![no_std]
135
    ("no_std", "1.0.0", None, Accepted),
136

A
Alex Crichton 已提交
137
    // Allows using #![no_core]
A
Aaron Turon 已提交
138
    ("no_core", "1.3.0", Some(29639), Active),
A
Alex Crichton 已提交
139

140
    // Allows using `box` in patterns; RFC 469
A
Aaron Turon 已提交
141
    ("box_patterns", "1.0.0", Some(29641), Active),
142

143 144
    // Allows using the unsafe_no_drop_flag attribute (unlikely to
    // switch to Accepted; see RFC 320)
145
    ("unsafe_no_drop_flag", "1.0.0", None, Active),
146

147 148 149
    // Allows using the unsafe_destructor_blind_to_params attribute;
    // RFC 1238
    ("dropck_parametricity", "1.3.0", Some(28498), Active),
150

151
    // Allows the use of custom attributes; RFC 572
A
Aaron Turon 已提交
152
    ("custom_attribute", "1.0.0", Some(29642), Active),
M
Manish Goregaokar 已提交
153

154 155
    // Allows the use of #[derive(Anything)] as sugar for
    // #[derive_Anything].
A
Aaron Turon 已提交
156
    ("custom_derive", "1.0.0", Some(29644), Active),
157

M
Manish Goregaokar 已提交
158
    // Allows the use of rustc_* attributes; RFC 572
A
Aaron Turon 已提交
159
    ("rustc_attrs", "1.0.0", Some(29642), Active),
H
Huon Wilson 已提交
160

161 162 163 164
    // 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).
A
Aaron Turon 已提交
165 166
    //
    // rustc internal
167
    ("allow_internal_unstable", "1.0.0", None, Active),
168 169

    // #23121. Array patterns have some hazards yet.
A
Aaron Turon 已提交
170
    ("slice_patterns", "1.0.0", Some(23121), Active),
171 172

    // Allows use of unary negate on unsigned integers, e.g. -e for e: u8
173
    ("negate_unsigned", "1.0.0", Some(29645), Removed),
174 175 176

    // Allows the definition of associated constants in `trait` or `impl`
    // blocks.
A
Aaron Turon 已提交
177
    ("associated_consts", "1.0.0", Some(29646), Active),
N
Niko Matsakis 已提交
178 179

    // Allows the definition of `const fn` functions.
A
Aaron Turon 已提交
180
    ("const_fn", "1.2.0", Some(24111), Active),
181

182 183 184
    // Allows indexing into constant arrays.
    ("const_indexing", "1.4.0", Some(29947), Active),

185
    // Allows using #[prelude_import] on glob `use` items.
A
Aaron Turon 已提交
186 187
    //
    // rustc internal
188
    ("prelude_import", "1.2.0", None, Active),
189 190

    // Allows the definition recursive static items.
A
Aaron Turon 已提交
191
    ("static_recursion", "1.3.0", Some(29719), Active),
B
Brian Anderson 已提交
192 193

    // Allows default type parameters to influence type inference.
A
Aaron Turon 已提交
194
    ("default_type_parameter_fallback", "1.3.0", Some(27336), Active),
195 196

    // Allows associated type defaults
A
Aaron Turon 已提交
197
    ("associated_type_defaults", "1.2.0", Some(29661), Active),
J
Jared Roesch 已提交
198

A
Aaron Turon 已提交
199
    // Allows macros to appear in the type position.
200
    ("type_macros", "1.3.0", Some(27336), Active),
201 202

    // allow `repr(simd)`, and importing the various simd intrinsics
203
    ("repr_simd", "1.4.0", Some(27731), Active),
204 205

    // Allows cfg(target_feature = "...").
A
Aaron Turon 已提交
206
    ("cfg_target_feature", "1.4.0", Some(29717), Active),
207 208

    // allow `extern "platform-intrinsic" { ... }`
209
    ("platform_intrinsics", "1.4.0", Some(27731), Active),
210 211

    // allow `#[unwind]`
A
Aaron Turon 已提交
212
    // rust runtime internal
213
    ("unwind_attributes", "1.4.0", None, Active),
V
Vadim Petrochenkov 已提交
214

215
    // allow empty structs and enum variants with braces
A
Aaron Turon 已提交
216
    ("braced_empty_structs", "1.5.0", Some(29720), Active),
217 218

    // allow overloading augmented assignment operations like `a += b`
A
Aaron Turon 已提交
219
    ("augmented_assignments", "1.5.0", Some(28235), Active),
220 221

    // allow `#[no_debug]`
A
Aaron Turon 已提交
222
    ("no_debug", "1.5.0", Some(29721), Active),
223 224

    // allow `#[omit_gdb_pretty_printer_section]`
A
Aaron Turon 已提交
225
    // rustc internal.
226
    ("omit_gdb_pretty_printer_section", "1.5.0", None, Active),
227 228

    // Allows cfg(target_vendor = "...").
A
Aaron Turon 已提交
229
    ("cfg_target_vendor", "1.5.0", Some(29718), Active),
230 231 232

    // Allow attributes on expressions and non-item statements
    ("stmt_expr_attributes", "1.6.0", Some(15701), Active),
233 234 235

    // Allows `#[deprecated]` attribute
    ("deprecated", "1.6.0", Some(29935), Active),
236 237 238

    // allow using type ascription in expressions
    ("type_ascription", "1.6.0", Some(23416), Active),
239 240

    // Allows cfg(target_thread_local)
241
    ("cfg_target_thread_local", "1.7.0", Some(29594), Active),
242 243 244

    // rustc internal
    ("abi_vectorcall", "1.7.0", None, Active)
245
];
246
// (changing above list without updating src/doc/reference.md makes @cmr sad)
247 248 249 250 251 252 253 254 255 256 257 258 259

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

260
// Attributes that have a special meaning to rustc or rustdoc
261
pub const KNOWN_ATTRIBUTES: &'static [(&'static str, AttributeType, AttributeGate)] = &[
262 263
    // Normal attributes

264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293
    ("warn", Normal, Ungated),
    ("allow", Normal, Ungated),
    ("forbid", Normal, Ungated),
    ("deny", Normal, Ungated),

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

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

A
Alex Crichton 已提交
295
    // Not used any more, but we can't feature gate it
296 297 298 299 300
    ("no_stack_check", Normal, Ungated),

    ("plugin", CrateLevel, Gated("plugin",
                                 "compiler plugins are experimental \
                                  and possibly buggy")),
301
    ("no_std", CrateLevel, Ungated),
302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325
    ("no_core", CrateLevel, Gated("no_core",
                                  "no_core is experimental")),
    ("lang", Normal, Gated("lang_items",
                           "language items are subject to change")),
    ("linkage", Whitelisted, Gated("linkage",
                                   "the `linkage` attribute is experimental \
                                    and not portable across platforms")),
    ("thread_local", Whitelisted, Gated("thread_local",
                                        "`#[thread_local]` is an experimental feature, and does \
                                         not currently handle destructors. There is no \
                                         corresponding `#[task_local]` mapping to the task \
                                         model")),

    ("rustc_on_unimplemented", Normal, Gated("on_unimplemented",
                                             "the `#[rustc_on_unimplemented]` attribute \
                                              is an experimental feature")),
    ("allocator", Whitelisted, Gated("allocator",
                                     "the `#[allocator]` attribute is an experimental feature")),
    ("needs_allocator", Normal, Gated("needs_allocator",
                                      "the `#[needs_allocator]` \
                                       attribute is an experimental \
                                       feature")),
    ("rustc_variance", Normal, Gated("rustc_attrs",
                                     "the `#[rustc_variance]` attribute \
N
Niko Matsakis 已提交
326 327
                                      is just used for rustc unit tests \
                                      and will never be stable")),
328 329
    ("rustc_error", Whitelisted, Gated("rustc_attrs",
                                       "the `#[rustc_error]` attribute \
N
Niko Matsakis 已提交
330 331
                                        is just used for rustc unit tests \
                                        and will never be stable")),
332 333 334 335 336 337 338 339
    ("rustc_if_this_changed", Whitelisted, Gated("rustc_attrs",
                                       "the `#[rustc_if_this_changed]` attribute \
                                        is just used for rustc unit tests \
                                        and will never be stable")),
    ("rustc_then_this_would_need", Whitelisted, Gated("rustc_attrs",
                                       "the `#[rustc_if_this_changed]` attribute \
                                        is just used for rustc unit tests \
                                        and will never be stable")),
340 341
    ("rustc_move_fragments", Normal, Gated("rustc_attrs",
                                           "the `#[rustc_move_fragments]` attribute \
N
Niko Matsakis 已提交
342 343 344 345 346 347
                                            is just used for rustc unit tests \
                                            and will never be stable")),
    ("rustc_mir", Normal, Gated("rustc_attrs",
                                "the `#[rustc_mir]` attribute \
                                 is just used for rustc unit tests \
                                 and will never be stable")),
348 349 350 351 352 353 354 355 356 357 358

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

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

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

360
    // FIXME: #14408 whitelist docs since rustdoc looks at them
361
    ("doc", Whitelisted, Ungated),
362 363 364

    // FIXME: #14406 these are processed in trans, which happens after the
    // lint pass
365 366 367 368 369 370 371 372
    ("cold", Whitelisted, Ungated),
    ("export_name", Whitelisted, Ungated),
    ("inline", Whitelisted, Ungated),
    ("link", Whitelisted, Ungated),
    ("link_name", Whitelisted, Ungated),
    ("link_section", Whitelisted, Ungated),
    ("no_builtins", Whitelisted, Ungated),
    ("no_mangle", Whitelisted, Ungated),
373 374 375 376 377 378 379
    ("no_debug", Whitelisted, Gated("no_debug",
                                    "the `#[no_debug]` attribute \
                                     is an experimental feature")),
    ("omit_gdb_pretty_printer_section", Whitelisted, Gated("omit_gdb_pretty_printer_section",
                                                       "the `#[omit_gdb_pretty_printer_section]` \
                                                        attribute is just used for the Rust test \
                                                        suite")),
380 381 382
    ("unsafe_no_drop_flag", Whitelisted, Gated("unsafe_no_drop_flag",
                                               "unsafe_no_drop_flag has unstable semantics \
                                                and may be removed in the future")),
383 384
    ("unsafe_destructor_blind_to_params",
     Normal,
385
     Gated("dropck_parametricity",
386 387
           "unsafe_destructor_blind_to_params has unstable semantics \
            and may be removed in the future")),
388
    ("unwind", Whitelisted, Gated("unwind_attributes", "#[unwind] is experimental")),
389 390

    // used in resolve
391 392
    ("prelude_import", Whitelisted, Gated("prelude_import",
                                          "`#[prelude_import]` is for use by rustc only")),
393 394 395

    // FIXME: #14407 these are only looked at on-demand so we can't
    // guarantee they'll have already been checked
396
    ("rustc_deprecated", Whitelisted, Ungated),
397 398 399
    ("must_use", Whitelisted, Ungated),
    ("stable", Whitelisted, Ungated),
    ("unstable", Whitelisted, Ungated),
V
Vadim Petrochenkov 已提交
400
    ("deprecated", Normal, Gated("deprecated", "`#[deprecated]` attribute is unstable")),
401

402 403 404 405
    ("rustc_paren_sugar", Normal, Gated("unboxed_closures",
                                        "unboxed_closures are still evolving")),
    ("rustc_reflect_like", Whitelisted, Gated("reflect",
                                              "defining reflective traits is still evolving")),
406 407

    // Crate level attributes
408 409 410 411 412 413 414 415
    ("crate_name", CrateLevel, Ungated),
    ("crate_type", CrateLevel, Ungated),
    ("crate_id", CrateLevel, Ungated),
    ("feature", CrateLevel, Ungated),
    ("no_start", CrateLevel, Ungated),
    ("no_main", CrateLevel, Ungated),
    ("no_builtins", CrateLevel, Ungated),
    ("recursion_limit", CrateLevel, Ungated),
416 417
];

418 419 420 421 422 423 424 425 426 427 428 429
macro_rules! cfg_fn {
    (|$x: ident| $e: expr) => {{
        fn f($x: &Features) -> bool {
            $e
        }
        f as fn(&Features) -> bool
    }}
}
// cfg(...)'s that are feature gated
const GATED_CFGS: &'static [(&'static str, &'static str, fn(&Features) -> bool)] = &[
    // (name in cfg, feature, function to check if the feature is enabled)
    ("target_feature", "cfg_target_feature", cfg_fn!(|x| x.cfg_target_feature)),
430
    ("target_vendor", "cfg_target_vendor", cfg_fn!(|x| x.cfg_target_vendor)),
431 432
    ("target_thread_local", "cfg_target_thread_local",
     cfg_fn!(|x| x.cfg_target_thread_local)),
433 434
];

435 436 437 438 439 440
#[derive(Debug, Eq, PartialEq)]
pub enum GatedCfgAttr {
    GatedCfg(GatedCfg),
    GatedAttr(Span),
}

441 442 443 444 445
#[derive(Debug, Eq, PartialEq)]
pub struct GatedCfg {
    span: Span,
    index: usize,
}
446

447 448 449 450 451 452 453 454 455 456 457
impl Ord for GatedCfgAttr {
    fn cmp(&self, other: &GatedCfgAttr) -> cmp::Ordering {
        let to_tup = |s: &GatedCfgAttr| match *s {
            GatedCfgAttr::GatedCfg(ref gated_cfg) => {
                (gated_cfg.span.lo.0, gated_cfg.span.hi.0, gated_cfg.index)
            }
            GatedCfgAttr::GatedAttr(ref span) => {
                (span.lo.0, span.hi.0, GATED_CFGS.len())
            }
        };
        to_tup(self).cmp(&to_tup(other))
458 459
    }
}
460

461 462
impl PartialOrd for GatedCfgAttr {
    fn partial_cmp(&self, other: &GatedCfgAttr) -> Option<cmp::Ordering> {
463 464 465 466
        Some(self.cmp(other))
    }
}

467
impl GatedCfgAttr {
468 469 470 471
    pub fn check_and_emit(&self,
                          diagnostic: &Handler,
                          features: &Features,
                          codemap: &CodeMap) {
472 473
        match *self {
            GatedCfgAttr::GatedCfg(ref cfg) => {
474
                cfg.check_and_emit(diagnostic, features, codemap);
475 476 477 478 479 480 481 482 483 484 485 486 487 488
            }
            GatedCfgAttr::GatedAttr(span) => {
                if !features.stmt_expr_attributes {
                    emit_feature_err(diagnostic,
                                     "stmt_expr_attributes",
                                     span,
                                     GateIssue::Language,
                                     EXPLAIN_STMT_ATTR_SYNTAX);
                }
            }
        }
    }
}

489 490 491 492 493 494 495 496 497 498 499 500
impl GatedCfg {
    pub fn gate(cfg: &ast::MetaItem) -> Option<GatedCfg> {
        let name = cfg.name();
        GATED_CFGS.iter()
                  .position(|info| info.0 == name)
                  .map(|idx| {
                      GatedCfg {
                          span: cfg.span,
                          index: idx
                      }
                  })
    }
501 502 503 504
    fn check_and_emit(&self,
                      diagnostic: &Handler,
                      features: &Features,
                      codemap: &CodeMap) {
505
        let (cfg, feature, has_feature) = GATED_CFGS[self.index];
506
        if !has_feature(features) && !codemap.span_allows_unstable(self.span) {
507
            let explain = format!("`cfg({})` is experimental and subject to change", cfg);
508
            emit_feature_err(diagnostic, feature, self.span, GateIssue::Language, &explain);
509 510 511 512 513
        }
    }
}


N
Niko Matsakis 已提交
514
#[derive(PartialEq, Copy, Clone, Debug)]
515 516 517 518 519 520 521 522 523 524
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,

525 526 527 528 529 530
    /// Builtin attribute that is only allowed at the crate level
    CrateLevel,
}

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

534 535
    /// Ungated attribute, can be used on all release channels
    Ungated,
536 537
}

538 539
/// A set of features to be used by later passes.
pub struct Features {
540
    pub unboxed_closures: bool,
N
Nick Cameron 已提交
541
    pub rustc_diagnostic_macros: bool,
542 543
    pub allow_quote: bool,
    pub allow_asm: bool,
544 545 546
    pub allow_log_syntax: bool,
    pub allow_concat_idents: bool,
    pub allow_trace_macros: bool,
547
    pub allow_internal_unstable: bool,
548
    pub allow_custom_derive: bool,
549 550
    pub allow_placement_in: bool,
    pub allow_box: bool,
551
    pub allow_pushpop_unsafe: bool,
552
    pub simd_ffi: bool,
553
    pub unmarked_api: bool,
554 555 556
    /// 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
557 558
    pub declared_lib_features: Vec<(InternedString, Span)>,
    pub const_fn: bool,
559
    pub const_indexing: bool,
J
Jared Roesch 已提交
560 561
    pub static_recursion: bool,
    pub default_type_parameter_fallback: bool,
J
Jared Roesch 已提交
562
    pub type_macros: bool,
563
    pub cfg_target_feature: bool,
564
    pub cfg_target_vendor: bool,
565
    pub cfg_target_thread_local: bool,
566
    pub augmented_assignments: bool,
567
    pub braced_empty_structs: bool,
V
Vadim Petrochenkov 已提交
568
    pub staged_api: bool,
569
    pub stmt_expr_attributes: bool,
570
    pub deprecated: bool,
571 572 573 574 575
}

impl Features {
    pub fn new() -> Features {
        Features {
576
            unboxed_closures: false,
N
Nick Cameron 已提交
577
            rustc_diagnostic_macros: false,
578 579
            allow_quote: false,
            allow_asm: false,
580 581 582
            allow_log_syntax: false,
            allow_concat_idents: false,
            allow_trace_macros: false,
583
            allow_internal_unstable: false,
584
            allow_custom_derive: false,
585 586
            allow_placement_in: false,
            allow_box: false,
587
            allow_pushpop_unsafe: false,
588
            simd_ffi: false,
589
            unmarked_api: false,
590
            declared_stable_lang_features: Vec::new(),
591 592
            declared_lib_features: Vec::new(),
            const_fn: false,
593
            const_indexing: false,
J
Jared Roesch 已提交
594 595
            static_recursion: false,
            default_type_parameter_fallback: false,
J
Jared Roesch 已提交
596
            type_macros: false,
597
            cfg_target_feature: false,
598
            cfg_target_vendor: false,
599
            cfg_target_thread_local: false,
600
            augmented_assignments: false,
601
            braced_empty_structs: false,
V
Vadim Petrochenkov 已提交
602
            staged_api: false,
603
            stmt_expr_attributes: false,
604
            deprecated: false,
605 606 607 608
        }
    }
}

609 610 611 612 613 614 615 616 617
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.";

618 619 620
const EXPLAIN_STMT_ATTR_SYNTAX: &'static str =
    "attributes on non-item statements and expressions are experimental.";

621
pub fn check_for_box_syntax(f: Option<&Features>, diag: &Handler, span: Span) {
622 623 624
    if let Some(&Features { allow_box: true, .. }) = f {
        return;
    }
625
    emit_feature_err(diag, "box_syntax", span, GateIssue::Language, EXPLAIN_BOX_SYNTAX);
626 627
}

628
pub fn check_for_placement_in(f: Option<&Features>, diag: &Handler, span: Span) {
629 630 631
    if let Some(&Features { allow_placement_in: true, .. }) = f {
        return;
    }
632
    emit_feature_err(diag, "placement_in_syntax", span, GateIssue::Language, EXPLAIN_PLACEMENT_IN);
633 634
}

635
pub fn check_for_pushpop_syntax(f: Option<&Features>, diag: &Handler, span: Span) {
636 637 638
    if let Some(&Features { allow_pushpop_unsafe: true, .. }) = f {
        return;
    }
639
    emit_feature_err(diag, "pushpop_unsafe", span, GateIssue::Language, EXPLAIN_PUSHPOP_UNSAFE);
640 641
}

E
Eduard Burtescu 已提交
642 643
struct Context<'a> {
    features: Vec<&'static str>,
644
    span_handler: &'a Handler,
C
Corey Richardson 已提交
645
    cm: &'a CodeMap,
646
    plugin_attributes: &'a [(String, AttributeType)],
647 648
}

E
Eduard Burtescu 已提交
649
impl<'a> Context<'a> {
650 651 652 653 654
    fn enable_feature(&mut self, feature: &'static str) {
        debug!("enabling feature: {}", feature);
        self.features.push(feature);
    }

655
    fn gate_feature(&self, feature: &str, span: Span, explain: &str) {
656 657 658
        let has_feature = self.has_feature(feature);
        debug!("gate_feature(feature = {:?}, span = {:?}); has? {}", feature, span, has_feature);
        if !has_feature {
659
            emit_feature_err(self.span_handler, feature, span, GateIssue::Language, explain);
660 661
        }
    }
662
    fn has_feature(&self, feature: &str) -> bool {
663
        self.features.iter().any(|&n| n == feature)
664
    }
665

666
    fn check_attribute(&self, attr: &ast::Attribute, is_macro: bool) {
667 668
        debug!("check_attribute(attr = {:?})", attr);
        let name = &*attr.name();
669
        for &(n, ty, gateage) in KNOWN_ATTRIBUTES {
670
            if n == name {
671
                if let Gated(gate, desc) = gateage {
672 673
                    self.gate_feature(gate, attr.span, desc);
                }
674
                debug!("check_attribute: {:?} is known, {:?}, {:?}", name, ty, gateage);
675 676 677
                return;
            }
        }
678
        for &(ref n, ref ty) in self.plugin_attributes {
679 680
            if &*n == name {
                // Plugins can't gate attributes, so we don't check for it
M
Manish Goregaokar 已提交
681 682
                // unlike the code above; we only use this loop to
                // short-circuit to avoid the checks below
683 684 685 686
                debug!("check_attribute: {:?} is registered by a plugin, {:?}", name, ty);
                return;
            }
        }
687 688 689 690 691
        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");
692 693
        } else if name.starts_with("derive_") {
            self.gate_feature("custom_derive", attr.span,
694
                              "attributes of the form `#[derive_*]` are reserved \
695
                               for the compiler");
696
        } else {
M
Manish Goregaokar 已提交
697 698 699 700
            // 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
701 702 703 704 705 706 707 708
            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));
            }
709 710
        }
    }
711 712
}

713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729
fn find_lang_feature_issue(feature: &str) -> Option<u32> {
    let info = KNOWN_FEATURES.iter()
                              .find(|t| t.0 == feature)
                              .unwrap();
    let issue = info.2;
    if let Active = info.3 {
        // FIXME (#28244): enforce that active features have issue numbers
        // assert!(issue.is_some())
    }
    issue
}

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

730
pub fn emit_feature_err(diag: &Handler, feature: &str, span: Span, issue: GateIssue,
731 732 733 734 735 736
                        explain: &str) {
    let issue = match issue {
        GateIssue::Language => find_lang_feature_issue(feature),
        GateIssue::Library(lib) => lib,
    };

N
Nick Cameron 已提交
737 738
    let mut err = if let Some(n) = issue {
        diag.struct_span_err(span, &format!("{} (see issue #{})", explain, n))
739
    } else {
N
Nick Cameron 已提交
740 741
        diag.struct_span_err(span, explain)
    };
742 743

    // #23973: do not suggest `#![feature(...)]` if we are in beta/stable
N
Nick Cameron 已提交
744 745 746 747 748 749 750 751
    if option_env!("CFG_DISABLE_UNSTABLE_FEATURES").is_some() {
        err.emit();
        return;
    }
    err.fileline_help(span, &format!("add #![feature({})] to the \
                                      crate attributes to enable",
                                     feature));
    err.emit();
752 753
}

754 755 756
pub const EXPLAIN_ASM: &'static str =
    "inline assembly is not stable enough for use and is subject to change";

757 758 759 760 761 762 763 764
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";
765 766
pub const EXPLAIN_ALLOW_INTERNAL_UNSTABLE: &'static str =
    "allow_internal_unstable side-steps feature gating and stability checks";
767

768 769 770
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 已提交
771 772 773 774 775
struct MacroVisitor<'a> {
    context: &'a Context<'a>
}

impl<'a, 'v> Visitor<'v> for MacroVisitor<'a> {
K
Keegan McAllister 已提交
776
    fn visit_mac(&mut self, mac: &ast::Mac) {
777
        let path = &mac.node.path;
778
        let name = path.segments.last().unwrap().identifier.name.as_str();
C
Corey Richardson 已提交
779

780 781 782 783 784 785 786 787
        // 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.

788
        if name == "asm" {
789
            self.context.gate_feature("asm", path.span, EXPLAIN_ASM);
C
Corey Richardson 已提交
790 791
        }

792
        else if name == "log_syntax" {
793
            self.context.gate_feature("log_syntax", path.span, EXPLAIN_LOG_SYNTAX);
C
Corey Richardson 已提交
794 795
        }

796
        else if name == "trace_macros" {
797
            self.context.gate_feature("trace_macros", path.span, EXPLAIN_TRACE_MACROS);
C
Corey Richardson 已提交
798 799
        }

800
        else if name == "concat_idents" {
801
            self.context.gate_feature("concat_idents", path.span, EXPLAIN_CONCAT_IDENTS);
C
Corey Richardson 已提交
802 803
        }
    }
804 805

    fn visit_attribute(&mut self, attr: &'v ast::Attribute) {
806
        self.context.check_attribute(attr, true);
807
    }
808 809 810 811 812 813 814 815 816 817

    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.

818
        if let ast::ExprKind::Box(_) = e.node {
819 820 821
            self.context.gate_feature("box_syntax", e.span, EXPLAIN_BOX_SYNTAX);
        }

822
        if let ast::ExprKind::InPlace(..) = e.node {
823 824 825 826 827
            self.context.gate_feature("placement_in_syntax", e.span, EXPLAIN_PLACEMENT_IN);
        }

        visit::walk_expr(self, e);
    }
C
Corey Richardson 已提交
828 829 830
}

struct PostExpansionVisitor<'a> {
N
Nick Cameron 已提交
831
    context: &'a Context<'a>,
C
Corey Richardson 已提交
832 833 834 835
}

impl<'a> PostExpansionVisitor<'a> {
    fn gate_feature(&self, feature: &str, span: Span, explain: &str) {
836
        if !self.context.cm.span_allows_unstable(span) {
C
Corey Richardson 已提交
837 838 839 840 841 842
            self.context.gate_feature(feature, span, explain)
        }
    }
}

impl<'a, 'v> Visitor<'v> for PostExpansionVisitor<'a> {
843 844
    fn visit_attribute(&mut self, attr: &ast::Attribute) {
        if !self.context.cm.span_allows_unstable(attr.span) {
845
            self.context.check_attribute(attr, false);
846 847 848
        }
    }

849
    fn visit_name(&mut self, sp: Span, name: ast::Name) {
850
        if !name.as_str().is_ascii() {
851 852 853 854 855
            self.gate_feature("non_ascii_idents", sp,
                              "non-ascii idents are not fully supported.");
        }
    }

856
    fn visit_item(&mut self, i: &ast::Item) {
857
        match i.node {
858
            ast::ItemKind::ExternCrate(_) => {
859
                if attr::contains_name(&i.attrs[..], "macro_reexport") {
860 861 862
                    self.gate_feature("macro_reexport", i.span,
                                      "macros reexports are experimental \
                                       and possibly buggy");
863 864 865
                }
            }

866
            ast::ItemKind::ForeignMod(ref foreign_module) => {
867
                if attr::contains_name(&i.attrs[..], "link_args") {
868 869 870 871 872
                    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")
                }
873 874 875 876 877
                let maybe_feature = match foreign_module.abi {
                    Abi::RustIntrinsic => Some(("intrinsics", "intrinsics are subject to change")),
                    Abi::PlatformIntrinsic => {
                        Some(("platform_intrinsics",
                              "platform intrinsics are experimental and possibly buggy"))
878 879 880 881 882
                    },
                    Abi::Vectorcall => {
                        Some(("abi_vectorcall",
                            "vectorcall is experimental and subject to change"
                        ))
883 884 885 886 887
                    }
                    _ => None
                };
                if let Some((feature, msg)) = maybe_feature {
                    self.gate_feature(feature, i.span, msg)
888
                }
889 890
            }

891
            ast::ItemKind::Fn(..) => {
892
                if attr::contains_name(&i.attrs[..], "plugin_registrar") {
893 894
                    self.gate_feature("plugin_registrar", i.span,
                                      "compiler plugins are experimental and possibly buggy");
895
                }
896
                if attr::contains_name(&i.attrs[..], "start") {
897 898 899 900 901
                    self.gate_feature("start", i.span,
                                      "a #[start] function is an experimental \
                                       feature whose signature may change \
                                       over time");
                }
902
                if attr::contains_name(&i.attrs[..], "main") {
903 904 905 906 907
                    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");
                }
908 909
            }

910
            ast::ItemKind::Struct(..) => {
911
                if attr::contains_name(&i.attrs[..], "simd") {
D
David Manescu 已提交
912 913
                    self.gate_feature("simd", i.span,
                                      "SIMD types are experimental and possibly buggy");
914 915 916 917 918 919 920 921
                    self.context.span_handler.span_warn(i.span,
                                                        "the `#[simd]` attribute is deprecated, \
                                                         use `#[repr(simd)]` instead");
                }
                for attr in &i.attrs {
                    if attr.name() == "repr" {
                        for item in attr.meta_item_list().unwrap_or(&[]) {
                            if item.name() == "simd" {
922
                                self.gate_feature("repr_simd", i.span,
923 924 925 926 927
                                                  "SIMD types are experimental and possibly buggy");

                            }
                        }
                    }
928
                }
D
David Manescu 已提交
929 930
            }

931
            ast::ItemKind::DefaultImpl(..) => {
F
Flavio Percoco 已提交
932 933 934 935 936 937
                self.gate_feature("optin_builtin_traits",
                                  i.span,
                                  "default trait implementations are experimental \
                                   and possibly buggy");
            }

938
            ast::ItemKind::Impl(_, polarity, _, _, _, _) => {
939 940 941 942 943 944 945 946 947
                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");
                    },
                    _ => {}
                }
948 949
            }

950 951 952
            _ => {}
        }

953
        visit::walk_item(self, i);
954
    }
955

956
    fn visit_variant_data(&mut self, s: &'v ast::VariantData, _: ast::Ident,
957
                        _: &'v ast::Generics, _: ast::NodeId, span: Span) {
958
        if s.fields().is_empty() {
959
            if s.is_struct() {
960 961
                self.gate_feature("braced_empty_structs", span,
                                  "empty structs and enum variants with braces are unstable");
962
            } else if s.is_tuple() {
N
Nick Cameron 已提交
963 964 965 966 967 968 969
                self.context.span_handler.struct_span_err(span, "empty tuple structs and enum \
                                                                 variants are not allowed, use \
                                                                 unit structs and enum variants \
                                                                 instead")
                                         .span_help(span, "remove trailing `()` to make a unit \
                                                           struct or unit enum variant")
                                         .emit();
970 971 972 973 974
            }
        }
        visit::walk_struct_def(self, s)
    }

975
    fn visit_foreign_item(&mut self, i: &ast::ForeignItem) {
976
        let links_to_llvm = match attr::first_attr_value_str_by_name(&i.attrs,
N
fallout  
Nick Cameron 已提交
977
                                                                     "link_name") {
G
GuillaumeGomez 已提交
978
            Some(val) => val.starts_with("llvm."),
979 980 981 982 983 984 985
            _ => false
        };
        if links_to_llvm {
            self.gate_feature("link_llvm_intrinsics", i.span,
                              "linking to LLVM intrinsics is experimental");
        }

986
        visit::walk_foreign_item(self, i)
987 988
    }

989
    fn visit_expr(&mut self, e: &ast::Expr) {
990
        match e.node {
991
            ast::ExprKind::Box(_) => {
992 993
                self.gate_feature("box_syntax",
                                  e.span,
994
                                  "box expression syntax is experimental; \
995 996
                                   you can call `Box::new` instead.");
            }
997
            ast::ExprKind::Type(..) => {
998 999 1000
                self.gate_feature("type_ascription", e.span,
                                  "type ascription is experimental");
            }
1001 1002
            _ => {}
        }
1003
        visit::walk_expr(self, e);
1004
    }
1005

1006
    fn visit_pat(&mut self, pattern: &ast::Pat) {
1007 1008 1009 1010 1011 1012
        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. \
1013
                                   `[0, ..xs, 0]`) are experimental")
1014
            }
1015 1016 1017 1018 1019
            ast::PatVec(..) => {
                self.gate_feature("slice_patterns",
                                  pattern.span,
                                  "slice pattern syntax is experimental");
            }
1020
            ast::PatBox(..) => {
1021
                self.gate_feature("box_patterns",
1022
                                  pattern.span,
1023
                                  "box pattern syntax is experimental");
1024
            }
1025 1026
            _ => {}
        }
1027
        visit::walk_pat(self, pattern)
1028 1029
    }

1030
    fn visit_fn(&mut self,
1031
                fn_kind: FnKind<'v>,
1032 1033
                fn_decl: &'v ast::FnDecl,
                block: &'v ast::Block,
1034
                span: Span,
1035
                _node_id: NodeId) {
N
Niko Matsakis 已提交
1036 1037
        // check for const fn declarations
        match fn_kind {
1038
            FnKind::ItemFn(_, _, _, ast::Constness::Const, _, _) => {
N
Niko Matsakis 已提交
1039 1040 1041 1042 1043 1044 1045 1046 1047 1048
                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.
            }
        }

1049
        match fn_kind {
1050
            FnKind::ItemFn(_, _, _, _, abi, _) if abi == Abi::RustIntrinsic => {
1051 1052 1053 1054
                self.gate_feature("intrinsics",
                                  span,
                                  "intrinsics are subject to change")
            }
1055
            FnKind::ItemFn(_, _, _, _, abi, _) |
1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066
            FnKind::Method(_, &ast::MethodSig { abi, .. }, _) => match abi {
                Abi::RustCall => {
                    self.gate_feature("unboxed_closures", span,
                        "rust-call ABI is subject to change");
                },
                Abi::Vectorcall => {
                    self.gate_feature("abi_vectorcall", span,
                        "vectorcall is experimental and subject to change");
                },
                _ => {}
            },
1067 1068
            _ => {}
        }
1069
        visit::walk_fn(self, fn_kind, fn_decl, block, span);
1070
    }
1071 1072 1073 1074 1075 1076 1077 1078

    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 已提交
1079 1080 1081 1082 1083
            ast::MethodTraitItem(ref sig, _) => {
                if sig.constness == ast::Constness::Const {
                    self.gate_feature("const_fn", ti.span, "const fn is unstable");
                }
            }
1084 1085 1086 1087
            ast::TypeTraitItem(_, Some(_)) => {
                self.gate_feature("associated_type_defaults", ti.span,
                                  "associated type defaults are unstable");
            }
1088 1089 1090 1091 1092 1093 1094
            _ => {}
        }
        visit::walk_trait_item(self, ti);
    }

    fn visit_impl_item(&mut self, ii: &'v ast::ImplItem) {
        match ii.node {
1095
            ast::ImplItemKind::Const(..) => {
1096 1097 1098 1099
                self.gate_feature("associated_consts",
                                  ii.span,
                                  "associated constants are experimental")
            }
1100
            ast::ImplItemKind::Method(ref sig, _) => {
N
Niko Matsakis 已提交
1101 1102 1103 1104
                if sig.constness == ast::Constness::Const {
                    self.gate_feature("const_fn", ii.span, "const fn is unstable");
                }
            }
1105 1106 1107 1108
            _ => {}
        }
        visit::walk_impl_item(self, ii);
    }
1109 1110
}

1111
fn check_crate_inner<F>(cm: &CodeMap, span_handler: &Handler,
1112
                        krate: &ast::Crate,
1113
                        plugin_attributes: &[(String, AttributeType)],
C
Corey Richardson 已提交
1114
                        check: F)
1115
                       -> Features
C
Corey Richardson 已提交
1116 1117
    where F: FnOnce(&mut Context, &ast::Crate)
{
1118
    let mut cx = Context {
1119
        features: Vec::new(),
N
Nick Cameron 已提交
1120
        span_handler: span_handler,
C
Corey Richardson 已提交
1121
        cm: cm,
1122
        plugin_attributes: plugin_attributes,
1123 1124
    };

1125
    let mut accepted_features = Vec::new();
N
Nick Cameron 已提交
1126 1127
    let mut unknown_features = Vec::new();

1128
    for attr in &krate.attrs {
S
Steven Fackler 已提交
1129
        if !attr.check_name("feature") {
1130 1131
            continue
        }
1132 1133 1134

        match attr.meta_item_list() {
            None => {
N
Nick Cameron 已提交
1135 1136
                span_handler.span_err(attr.span, "malformed feature attribute, \
                                                  expected #![feature(...)]");
1137 1138
            }
            Some(list) => {
1139
                for mi in list {
1140
                    let name = match mi.node {
1141
                        ast::MetaItemKind::Word(ref word) => (*word).clone(),
1142
                        _ => {
N
Nick Cameron 已提交
1143 1144 1145
                            span_handler.span_err(mi.span,
                                                  "malformed feature, expected just \
                                                   one word");
1146 1147 1148
                            continue
                        }
                    };
1149
                    match KNOWN_FEATURES.iter()
1150 1151
                                        .find(|& &(n, _, _, _)| name == n) {
                        Some(&(name, _, _, Active)) => {
1152
                            cx.enable_feature(name);
1153
                        }
1154
                        Some(&(_, _, _, Removed)) => {
N
Nick Cameron 已提交
1155
                            span_handler.span_err(mi.span, "feature has been removed");
1156
                        }
1157
                        Some(&(_, _, _, Accepted)) => {
1158
                            accepted_features.push(mi.span);
1159 1160
                        }
                        None => {
1161
                            unknown_features.push((name, mi.span));
1162 1163 1164 1165 1166 1167 1168
                        }
                    }
                }
            }
        }
    }

C
Corey Richardson 已提交
1169
    check(&mut cx, krate);
1170

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

1174
    Features {
1175
        unboxed_closures: cx.has_feature("unboxed_closures"),
N
Nick Cameron 已提交
1176
        rustc_diagnostic_macros: cx.has_feature("rustc_diagnostic_macros"),
1177 1178
        allow_quote: cx.has_feature("quote"),
        allow_asm: cx.has_feature("asm"),
1179 1180 1181
        allow_log_syntax: cx.has_feature("log_syntax"),
        allow_concat_idents: cx.has_feature("concat_idents"),
        allow_trace_macros: cx.has_feature("trace_macros"),
1182
        allow_internal_unstable: cx.has_feature("allow_internal_unstable"),
1183
        allow_custom_derive: cx.has_feature("custom_derive"),
1184 1185
        allow_placement_in: cx.has_feature("placement_in_syntax"),
        allow_box: cx.has_feature("box_syntax"),
1186
        allow_pushpop_unsafe: cx.has_feature("pushpop_unsafe"),
1187
        simd_ffi: cx.has_feature("simd_ffi"),
1188
        unmarked_api: cx.has_feature("unmarked_api"),
1189
        declared_stable_lang_features: accepted_features,
1190 1191
        declared_lib_features: unknown_features,
        const_fn: cx.has_feature("const_fn"),
1192
        const_indexing: cx.has_feature("const_indexing"),
J
Jared Roesch 已提交
1193
        static_recursion: cx.has_feature("static_recursion"),
J
Jared Roesch 已提交
1194
        default_type_parameter_fallback: cx.has_feature("default_type_parameter_fallback"),
J
Jared Roesch 已提交
1195
        type_macros: cx.has_feature("type_macros"),
1196
        cfg_target_feature: cx.has_feature("cfg_target_feature"),
1197
        cfg_target_vendor: cx.has_feature("cfg_target_vendor"),
1198
        cfg_target_thread_local: cx.has_feature("cfg_target_thread_local"),
1199
        augmented_assignments: cx.has_feature("augmented_assignments"),
1200
        braced_empty_structs: cx.has_feature("braced_empty_structs"),
V
Vadim Petrochenkov 已提交
1201
        staged_api: cx.has_feature("staged_api"),
1202
        stmt_expr_attributes: cx.has_feature("stmt_expr_attributes"),
1203
        deprecated: cx.has_feature("deprecated"),
1204
    }
1205
}
C
Corey Richardson 已提交
1206

1207
pub fn check_crate_macros(cm: &CodeMap, span_handler: &Handler, krate: &ast::Crate)
1208
-> Features {
1209
    check_crate_inner(cm, span_handler, krate, &[] as &'static [_],
C
Corey Richardson 已提交
1210 1211 1212
                      |ctx, krate| visit::walk_crate(&mut MacroVisitor { context: ctx }, krate))
}

1213
pub fn check_crate(cm: &CodeMap, span_handler: &Handler, krate: &ast::Crate,
1214 1215
                   plugin_attributes: &[(String, AttributeType)],
                   unstable: UnstableFeatures) -> Features
1216
{
1217 1218
    maybe_stage_features(span_handler, krate, unstable);

1219
    check_crate_inner(cm, span_handler, krate, plugin_attributes,
C
Corey Richardson 已提交
1220 1221 1222
                      |ctx, krate| visit::walk_crate(&mut PostExpansionVisitor { context: ctx },
                                                     krate))
}
1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233

#[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
1234
    /// features. As a result, this is always required for building Rust itself.
1235 1236 1237
    Cheat
}

1238
fn maybe_stage_features(span_handler: &Handler, krate: &ast::Crate,
1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255
                        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);
            }
        }
    }
}