Skip to content

Commit 67f5dd1

Browse files
committed
Parse unsafe attributes
1 parent 76e7a08 commit 67f5dd1

File tree

19 files changed

+173
-27
lines changed

19 files changed

+173
-27
lines changed

compiler/rustc_ast/src/ast.rs

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -488,6 +488,7 @@ pub struct Crate {
488488
/// E.g., `#[test]`, `#[derive(..)]`, `#[rustfmt::skip]` or `#[feature = "foo"]`.
489489
#[derive(Clone, Encodable, Decodable, Debug, HashStable_Generic)]
490490
pub struct MetaItem {
491+
pub unsafety: Unsafe,
491492
pub path: Path,
492493
pub kind: MetaItemKind,
493494
pub span: Span,
@@ -2823,14 +2824,20 @@ pub struct NormalAttr {
28232824
impl NormalAttr {
28242825
pub fn from_ident(ident: Ident) -> Self {
28252826
Self {
2826-
item: AttrItem { path: Path::from_ident(ident), args: AttrArgs::Empty, tokens: None },
2827+
item: AttrItem {
2828+
unsafety: Unsafe::No,
2829+
path: Path::from_ident(ident),
2830+
args: AttrArgs::Empty,
2831+
tokens: None,
2832+
},
28272833
tokens: None,
28282834
}
28292835
}
28302836
}
28312837

28322838
#[derive(Clone, Encodable, Decodable, Debug, HashStable_Generic)]
28332839
pub struct AttrItem {
2840+
pub unsafety: Unsafe,
28342841
pub path: Path,
28352842
pub args: AttrArgs,
28362843
// Tokens for the meta item, e.g. just the `foo` within `#[foo]` or `#![foo]`.

compiler/rustc_ast/src/attr/mod.rs

Lines changed: 25 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
//! Functions dealing with attributes and meta items.
22
3-
use crate::ast::{AttrArgs, AttrArgsEq, AttrId, AttrItem, AttrKind, AttrStyle, AttrVec, Attribute};
3+
use crate::ast::{
4+
AttrArgs, AttrArgsEq, AttrId, AttrItem, AttrKind, AttrStyle, AttrVec, Attribute, Unsafe,
5+
};
46
use crate::ast::{DelimArgs, Expr, ExprKind, LitKind, MetaItemLit};
57
use crate::ast::{MetaItem, MetaItemKind, NestedMetaItem, NormalAttr};
68
use crate::ast::{Path, PathSegment, DUMMY_NODE_ID};
@@ -238,7 +240,12 @@ impl AttrItem {
238240
}
239241

240242
pub fn meta(&self, span: Span) -> Option<MetaItem> {
241-
Some(MetaItem { path: self.path.clone(), kind: self.meta_kind()?, span })
243+
Some(MetaItem {
244+
unsafety: Unsafe::No,
245+
path: self.path.clone(),
246+
kind: self.meta_kind()?,
247+
span,
248+
})
242249
}
243250

244251
pub fn meta_kind(&self) -> Option<MetaItemKind> {
@@ -371,7 +378,8 @@ impl MetaItem {
371378
_ => path.span.hi(),
372379
};
373380
let span = path.span.with_hi(hi);
374-
Some(MetaItem { path, kind, span })
381+
// FIX THIS LATER
382+
Some(MetaItem { unsafety: Unsafe::No, path, kind, span })
375383
}
376384
}
377385

@@ -555,11 +563,12 @@ pub fn mk_doc_comment(
555563
pub fn mk_attr(
556564
g: &AttrIdGenerator,
557565
style: AttrStyle,
566+
unsafety: Unsafe,
558567
path: Path,
559568
args: AttrArgs,
560569
span: Span,
561570
) -> Attribute {
562-
mk_attr_from_item(g, AttrItem { path, args, tokens: None }, None, style, span)
571+
mk_attr_from_item(g, AttrItem { unsafety, path, args, tokens: None }, None, style, span)
563572
}
564573

565574
pub fn mk_attr_from_item(
@@ -577,15 +586,22 @@ pub fn mk_attr_from_item(
577586
}
578587
}
579588

580-
pub fn mk_attr_word(g: &AttrIdGenerator, style: AttrStyle, name: Symbol, span: Span) -> Attribute {
589+
pub fn mk_attr_word(
590+
g: &AttrIdGenerator,
591+
style: AttrStyle,
592+
unsafety: Unsafe,
593+
name: Symbol,
594+
span: Span,
595+
) -> Attribute {
581596
let path = Path::from_ident(Ident::new(name, span));
582597
let args = AttrArgs::Empty;
583-
mk_attr(g, style, path, args, span)
598+
mk_attr(g, style, unsafety, path, args, span)
584599
}
585600

586601
pub fn mk_attr_nested_word(
587602
g: &AttrIdGenerator,
588603
style: AttrStyle,
604+
unsafety: Unsafe,
589605
outer: Symbol,
590606
inner: Symbol,
591607
span: Span,
@@ -601,12 +617,13 @@ pub fn mk_attr_nested_word(
601617
delim: Delimiter::Parenthesis,
602618
tokens: inner_tokens,
603619
});
604-
mk_attr(g, style, path, attr_args, span)
620+
mk_attr(g, style, unsafety, path, attr_args, span)
605621
}
606622

607623
pub fn mk_attr_name_value_str(
608624
g: &AttrIdGenerator,
609625
style: AttrStyle,
626+
unsafety: Unsafe,
610627
name: Symbol,
611628
val: Symbol,
612629
span: Span,
@@ -621,7 +638,7 @@ pub fn mk_attr_name_value_str(
621638
});
622639
let path = Path::from_ident(Ident::new(name, span));
623640
let args = AttrArgs::Eq(span, AttrArgsEq::Ast(expr));
624-
mk_attr(g, style, path, args, span)
641+
mk_attr(g, style, unsafety, path, args, span)
625642
}
626643

627644
pub fn filter_by_name(attrs: &[Attribute], name: Symbol) -> impl Iterator<Item = &Attribute> {

compiler/rustc_ast/src/mut_visit.rs

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -647,8 +647,10 @@ fn noop_visit_attribute<T: MutVisitor>(attr: &mut Attribute, vis: &mut T) {
647647
let Attribute { kind, id: _, style: _, span } = attr;
648648
match kind {
649649
AttrKind::Normal(normal) => {
650-
let NormalAttr { item: AttrItem { path, args, tokens }, tokens: attr_tokens } =
651-
&mut **normal;
650+
let NormalAttr {
651+
item: AttrItem { unsafety: _, path, args, tokens },
652+
tokens: attr_tokens,
653+
} = &mut **normal;
652654
vis.visit_path(path);
653655
visit_attr_args(args, vis);
654656
visit_lazy_tts(tokens, vis);
@@ -678,7 +680,7 @@ fn noop_visit_meta_list_item<T: MutVisitor>(li: &mut NestedMetaItem, vis: &mut T
678680
}
679681

680682
fn noop_visit_meta_item<T: MutVisitor>(mi: &mut MetaItem, vis: &mut T) {
681-
let MetaItem { path: _, kind, span } = mi;
683+
let MetaItem { unsafety: _, path: _, kind, span } = mi;
682684
match kind {
683685
MetaItemKind::Word => {}
684686
MetaItemKind::List(mis) => visit_thin_vec(mis, |mi| vis.visit_meta_list_item(mi)),
@@ -840,7 +842,7 @@ fn visit_nonterminal<T: MutVisitor>(nt: &mut token::Nonterminal, vis: &mut T) {
840842
token::NtTy(ty) => vis.visit_ty(ty),
841843
token::NtLiteral(expr) => vis.visit_expr(expr),
842844
token::NtMeta(item) => {
843-
let AttrItem { path, args, tokens } = item.deref_mut();
845+
let AttrItem { unsafety: _, path, args, tokens } = item.deref_mut();
844846
vis.visit_path(path);
845847
visit_attr_args(args, vis);
846848
visit_lazy_tts(tokens, vis);

compiler/rustc_ast_lowering/src/expr.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1801,6 +1801,7 @@ impl<'hir> LoweringContext<'_, 'hir> {
18011801
let attr = attr::mk_attr_nested_word(
18021802
&self.tcx.sess.psess.attr_id_generator,
18031803
AttrStyle::Outer,
1804+
Unsafe::No,
18041805
sym::allow,
18051806
sym::unreachable_code,
18061807
self.lower_span(span),

compiler/rustc_ast_lowering/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -911,6 +911,7 @@ impl<'a, 'hir> LoweringContext<'a, 'hir> {
911911
let kind = match attr.kind {
912912
AttrKind::Normal(ref normal) => AttrKind::Normal(P(NormalAttr {
913913
item: AttrItem {
914+
unsafety: normal.item.unsafety,
914915
path: normal.item.path.clone(),
915916
args: self.lower_attr_args(&normal.item.args),
916917
tokens: None,

compiler/rustc_ast_passes/src/feature_gate.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -561,6 +561,7 @@ pub fn check_crate(krate: &ast::Crate, sess: &Session, features: &Features) {
561561
gate_all!(mut_ref, "mutable by-reference bindings are experimental");
562562
gate_all!(precise_capturing, "precise captures on `impl Trait` are experimental");
563563
gate_all!(global_registration, "global registration is experimental");
564+
gate_all!(unsafe_attributes, "`#[unsafe()]` markers for attributes are experimental");
564565

565566
if !visitor.features.never_patterns {
566567
if let Some(spans) = spans.get(&sym::never_patterns) {

compiler/rustc_ast_pretty/src/pprust/state.rs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ use rustc_ast::token::{self, BinOpToken, CommentKind, Delimiter, Nonterminal, To
1616
use rustc_ast::tokenstream::{Spacing, TokenStream, TokenTree};
1717
use rustc_ast::util::classify;
1818
use rustc_ast::util::comments::{Comment, CommentStyle};
19-
use rustc_ast::{self as ast, AttrArgs, AttrArgsEq, BlockCheckMode, PatKind};
19+
use rustc_ast::{self as ast, AttrArgs, AttrArgsEq, BlockCheckMode, PatKind, Unsafe};
2020
use rustc_ast::{attr, BindingMode, ByRef, DelimArgs, RangeEnd, RangeSyntax, Term};
2121
use rustc_ast::{GenericArg, GenericBound, SelfKind};
2222
use rustc_ast::{InlineAsmOperand, InlineAsmRegOrRegClass};
@@ -249,6 +249,7 @@ pub fn print_crate<'a>(
249249
let fake_attr = attr::mk_attr_nested_word(
250250
g,
251251
ast::AttrStyle::Inner,
252+
Unsafe::No,
252253
sym::feature,
253254
sym::prelude_import,
254255
DUMMY_SP,
@@ -259,7 +260,8 @@ pub fn print_crate<'a>(
259260
// root, so this is not needed, and actually breaks things.
260261
if edition.is_rust_2015() {
261262
// `#![no_std]`
262-
let fake_attr = attr::mk_attr_word(g, ast::AttrStyle::Inner, sym::no_std, DUMMY_SP);
263+
let fake_attr =
264+
attr::mk_attr_word(g, ast::AttrStyle::Inner, Unsafe::No, sym::no_std, DUMMY_SP);
263265
s.print_attribute(&fake_attr);
264266
}
265267
}

compiler/rustc_builtin_macros/src/cmdline_attrs.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ pub fn inject(krate: &mut ast::Crate, psess: &ParseSess, attrs: &[String]) {
1717
));
1818

1919
let start_span = parser.token.span;
20-
let AttrItem { path, args, tokens: _ } = match parser.parse_attr_item(false) {
20+
let AttrItem { unsafety, path, args, tokens: _ } = match parser.parse_attr_item(false) {
2121
Ok(ai) => ai,
2222
Err(err) => {
2323
err.emit();
@@ -33,6 +33,7 @@ pub fn inject(krate: &mut ast::Crate, psess: &ParseSess, attrs: &[String]) {
3333
krate.attrs.push(mk_attr(
3434
&psess.attr_id_generator,
3535
AttrStyle::Inner,
36+
unsafety,
3637
path,
3738
args,
3839
start_span.to(end_span),

compiler/rustc_builtin_macros/src/test_harness.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -203,6 +203,7 @@ impl<'a> MutVisitor for EntryPointCleaner<'a> {
203203
let allow_dead_code = attr::mk_attr_nested_word(
204204
&self.sess.psess.attr_id_generator,
205205
ast::AttrStyle::Outer,
206+
ast::Unsafe::No,
206207
sym::allow,
207208
sym::dead_code,
208209
self.def_site,

compiler/rustc_expand/src/build.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -666,20 +666,20 @@ impl<'a> ExtCtxt<'a> {
666666
// Builds `#[name]`.
667667
pub fn attr_word(&self, name: Symbol, span: Span) -> ast::Attribute {
668668
let g = &self.sess.psess.attr_id_generator;
669-
attr::mk_attr_word(g, ast::AttrStyle::Outer, name, span)
669+
attr::mk_attr_word(g, ast::AttrStyle::Outer, ast::Unsafe::No, name, span)
670670
}
671671

672672
// Builds `#[name = val]`.
673673
//
674674
// Note: `span` is used for both the identifier and the value.
675675
pub fn attr_name_value_str(&self, name: Symbol, val: Symbol, span: Span) -> ast::Attribute {
676676
let g = &self.sess.psess.attr_id_generator;
677-
attr::mk_attr_name_value_str(g, ast::AttrStyle::Outer, name, val, span)
677+
attr::mk_attr_name_value_str(g, ast::AttrStyle::Outer, ast::Unsafe::No, name, val, span)
678678
}
679679

680680
// Builds `#[outer(inner)]`.
681681
pub fn attr_nested_word(&self, outer: Symbol, inner: Symbol, span: Span) -> ast::Attribute {
682682
let g = &self.sess.psess.attr_id_generator;
683-
attr::mk_attr_nested_word(g, ast::AttrStyle::Outer, outer, inner, span)
683+
attr::mk_attr_nested_word(g, ast::AttrStyle::Outer, ast::Unsafe::No, outer, inner, span)
684684
}
685685
}

0 commit comments

Comments
 (0)