Skip to main content

rustc_attr_parsing/attributes/
inline.rs

1// FIXME(jdonszelmann): merge these two parsers and error when both attributes are present here.
2//                      note: need to model better how duplicate attr errors work when not using
3//                      SingleAttributeParser which is what we have two of here.
4
5use rustc_hir::attrs::{AttributeKind, InlineAttr};
6use rustc_session::lint::builtin::ILL_FORMED_ATTRIBUTE_INPUT;
7
8use super::prelude::*;
9
10pub(crate) struct InlineParser;
11
12impl<S: Stage> SingleAttributeParser<S> for InlineParser {
13    const PATH: &[Symbol] = &[sym::inline];
14    const ON_DUPLICATE: OnDuplicate<S> = OnDuplicate::WarnButFutureError;
15    const ALLOWED_TARGETS: AllowedTargets = AllowedTargets::AllowList(&[
16        Allow(Target::Fn),
17        Allow(Target::Method(MethodKind::Inherent)),
18        Allow(Target::Method(MethodKind::Trait { body: true })),
19        Allow(Target::Method(MethodKind::TraitImpl)),
20        Allow(Target::Closure),
21        Allow(Target::Delegation { mac: false }),
22        Warn(Target::Method(MethodKind::Trait { body: false })),
23        Warn(Target::ForeignFn),
24        Warn(Target::Field),
25        Warn(Target::MacroDef),
26        Warn(Target::Arm),
27        Warn(Target::AssocConst),
28        Warn(Target::MacroCall),
29    ]);
30    const TEMPLATE: AttributeTemplate = ::rustc_feature::AttributeTemplate {
    word: true,
    list: Some(&["always", "never"]),
    one_of: &[],
    name_value_str: None,
    docs: Some("https://doc.rust-lang.org/reference/attributes/codegen.html#the-inline-attribute"),
}template!(
31        Word,
32        List: &["always", "never"],
33        "https://doc.rust-lang.org/reference/attributes/codegen.html#the-inline-attribute"
34    );
35
36    fn convert(cx: &mut AcceptContext<'_, '_, S>, args: &ArgParser) -> Option<AttributeKind> {
37        match args {
38            ArgParser::NoArgs => Some(AttributeKind::Inline(InlineAttr::Hint, cx.attr_span)),
39            ArgParser::List(list) => {
40                let Some(l) = list.single() else {
41                    cx.adcx().expected_single_argument(list.span, list.len());
42                    return None;
43                };
44
45                match l.meta_item().and_then(|i| i.path().word_sym()) {
46                    Some(sym::always) => {
47                        Some(AttributeKind::Inline(InlineAttr::Always, cx.attr_span))
48                    }
49                    Some(sym::never) => {
50                        Some(AttributeKind::Inline(InlineAttr::Never, cx.attr_span))
51                    }
52                    _ => {
53                        cx.adcx().expected_specific_argument(l.span(), &[sym::always, sym::never]);
54                        return None;
55                    }
56                }
57            }
58            ArgParser::NameValue(_) => {
59                cx.adcx().warn_ill_formed_attribute_input(ILL_FORMED_ATTRIBUTE_INPUT);
60                return None;
61            }
62        }
63    }
64}
65
66pub(crate) struct RustcForceInlineParser;
67
68impl<S: Stage> SingleAttributeParser<S> for RustcForceInlineParser {
69    const PATH: &[Symbol] = &[sym::rustc_force_inline];
70    const ALLOWED_TARGETS: AllowedTargets = AllowedTargets::AllowList(&[
71        Allow(Target::Fn),
72        Allow(Target::Method(MethodKind::Inherent)),
73    ]);
74
75    const TEMPLATE: AttributeTemplate = ::rustc_feature::AttributeTemplate {
    word: true,
    list: Some(&["reason"]),
    one_of: &[],
    name_value_str: Some(&["reason"]),
    docs: None,
}template!(Word, List: &["reason"], NameValueStr: "reason");
76
77    fn convert(cx: &mut AcceptContext<'_, '_, S>, args: &ArgParser) -> Option<AttributeKind> {
78        let reason = match args {
79            ArgParser::NoArgs => None,
80            ArgParser::List(list) => {
81                let Some(l) = list.single() else {
82                    cx.adcx().expected_single_argument(list.span, list.len());
83                    return None;
84                };
85
86                let Some(reason) = l.lit().and_then(|i| i.kind.str()) else {
87                    cx.adcx().expected_string_literal(l.span(), l.lit());
88                    return None;
89                };
90
91                Some(reason)
92            }
93            ArgParser::NameValue(v) => {
94                let Some(reason) = v.value_as_str() else {
95                    cx.adcx().expected_string_literal(v.value_span, Some(v.value_as_lit()));
96                    return None;
97                };
98
99                Some(reason)
100            }
101        };
102
103        Some(AttributeKind::Inline(
104            InlineAttr::Force { attr_span: cx.attr_span, reason },
105            cx.attr_span,
106        ))
107    }
108}