Skip to content

Commit 71276c6

Browse files
committed
Add the -Zcrate-attr=foo nightly rustc flag to inject crate attributes
1 parent b18b9ed commit 71276c6

File tree

6 files changed

+66
-3
lines changed

6 files changed

+66
-3
lines changed

src/librustc/ich/impls_syntax.rs

+1
Original file line numberDiff line numberDiff line change
@@ -423,6 +423,7 @@ impl_stable_hash_for!(enum ::syntax_pos::FileName {
423423
Anon,
424424
MacroExpansion,
425425
ProcMacroSourceCode,
426+
CliCrateAttr,
426427
CfgSpec,
427428
Custom(s)
428429
});

src/librustc/session/config.rs

+2
Original file line numberDiff line numberDiff line change
@@ -1369,6 +1369,8 @@ options! {DebuggingOptions, DebuggingSetter, basic_debugging_options,
13691369
"don't run LLVM in parallel (while keeping codegen-units and ThinLTO)"),
13701370
no_leak_check: bool = (false, parse_bool, [UNTRACKED],
13711371
"disables the 'leak check' for subtyping; unsound, but useful for tests"),
1372+
crate_attr: Vec<String> = (Vec::new(), parse_string_push, [TRACKED],
1373+
"inject the given attribute in the crate"),
13721374
}
13731375

13741376
pub fn default_lib_output() -> CrateType {

src/librustc_driver/driver.rs

+5-1
Original file line numberDiff line numberDiff line change
@@ -798,7 +798,7 @@ where
798798
pub fn phase_2_configure_and_expand_inner<'a, F>(
799799
sess: &'a Session,
800800
cstore: &'a CStore,
801-
krate: ast::Crate,
801+
mut krate: ast::Crate,
802802
registry: Option<Registry>,
803803
crate_name: &str,
804804
addl_plugins: Option<Vec<String>>,
@@ -810,6 +810,10 @@ pub fn phase_2_configure_and_expand_inner<'a, F>(
810810
where
811811
F: FnOnce(&ast::Crate) -> CompileResult,
812812
{
813+
krate = time(sess, "attributes injection", || {
814+
syntax::attr::inject(krate, &sess.parse_sess, &sess.opts.debugging_opts.crate_attr)
815+
});
816+
813817
let (mut krate, features) = syntax::config::features(
814818
krate,
815819
&sess.parse_sess,

src/libsyntax/attr/mod.rs

+32-2
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ pub use self::ReprAttr::*;
2222
pub use self::StabilityLevel::*;
2323

2424
use ast;
25-
use ast::{AttrId, Attribute, Name, Ident, Path, PathSegment};
25+
use ast::{AttrId, Attribute, AttrStyle, Name, Ident, Path, PathSegment};
2626
use ast::{MetaItem, MetaItemKind, NestedMetaItem, NestedMetaItemKind};
2727
use ast::{Lit, LitKind, Expr, ExprKind, Item, Local, Stmt, StmtKind, GenericParam};
2828
use codemap::{BytePos, Spanned, respan, dummy_spanned};
29-
use syntax_pos::Span;
29+
use syntax_pos::{FileName, Span};
3030
use parse::lexer::comments::{doc_comment_style, strip_doc_comment_decoration};
3131
use parse::parser::Parser;
3232
use parse::{self, ParseSess, PResult};
@@ -821,3 +821,33 @@ derive_has_attrs! {
821821
Item, Expr, Local, ast::ForeignItem, ast::StructField, ast::ImplItem, ast::TraitItem, ast::Arm,
822822
ast::Field, ast::FieldPat, ast::Variant_
823823
}
824+
825+
pub fn inject(mut krate: ast::Crate, parse_sess: &ParseSess, attrs: &[String]) -> ast::Crate {
826+
for raw_attr in attrs {
827+
let mut parser = parse::new_parser_from_source_str(
828+
parse_sess,
829+
FileName::CliCrateAttr,
830+
raw_attr.clone(),
831+
);
832+
833+
let start_span = parser.span;
834+
let (path, tokens) = panictry!(parser.parse_path_and_tokens());
835+
let end_span = parser.span;
836+
if parser.token != token::Eof {
837+
parse_sess.span_diagnostic
838+
.span_err(start_span.to(end_span), "invalid crate attribute");
839+
continue;
840+
}
841+
842+
krate.attrs.push(Attribute {
843+
id: mk_attr_id(),
844+
style: AttrStyle::Inner,
845+
path,
846+
tokens,
847+
is_sugared_doc: false,
848+
span: start_span.to(end_span),
849+
});
850+
}
851+
852+
krate
853+
}

src/libsyntax_pos/lib.rs

+5
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,8 @@ pub enum FileName {
100100
ProcMacroSourceCode,
101101
/// Strings provided as --cfg [cfgspec] stored in a crate_cfg
102102
CfgSpec,
103+
/// Strings provided as crate attributes in the CLI
104+
CliCrateAttr,
103105
/// Custom sources for explicit parser calls from plugins and drivers
104106
Custom(String),
105107
}
@@ -115,6 +117,7 @@ impl std::fmt::Display for FileName {
115117
Anon => write!(fmt, "<anon>"),
116118
ProcMacroSourceCode => write!(fmt, "<proc-macro source code>"),
117119
CfgSpec => write!(fmt, "cfgspec"),
120+
CliCrateAttr => write!(fmt, "<crate attribute>"),
118121
Custom(ref s) => write!(fmt, "<{}>", s),
119122
}
120123
}
@@ -137,6 +140,7 @@ impl FileName {
137140
MacroExpansion |
138141
ProcMacroSourceCode |
139142
CfgSpec |
143+
CliCrateAttr |
140144
Custom(_) |
141145
QuoteExpansion => false,
142146
}
@@ -150,6 +154,7 @@ impl FileName {
150154
MacroExpansion |
151155
ProcMacroSourceCode |
152156
CfgSpec |
157+
CliCrateAttr |
153158
Custom(_) |
154159
QuoteExpansion => false,
155160
Macros(_) => true,

src/test/run-pass/z-crate-attr.rs

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
// Copyright 2018 The Rust Project Developers. See the COPYRIGHT
2+
// file at the top-level directory of this distribution and at
3+
// http://rust-lang.org/COPYRIGHT.
4+
//
5+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8+
// option. This file may not be copied, modified, or distributed
9+
// except according to those terms.
10+
11+
// This test checks if an unstable feature is enabled with the -Zcrate-attr=feature(foo) flag. If
12+
// the exact feature used here is causing problems feel free to replace it with another
13+
// perma-unstable feature.
14+
15+
// compile-flags: -Zcrate-attr=feature(abi_unadjusted)
16+
17+
#![allow(dead_code)]
18+
19+
extern "unadjusted" fn foo() {}
20+
21+
fn main() {}

0 commit comments

Comments
 (0)