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};
6
7use super::prelude::*;
8
9pub(crate) struct InlineParser;
10
11impl<S: Stage> SingleAttributeParser<S> for InlineParser {
12    const PATH: &'static [Symbol] = &[sym::inline];
13    const ATTRIBUTE_ORDER: AttributeOrder = AttributeOrder::KeepOutermost;
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 = 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.expected_single_argument(list.span);
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.expected_specific_argument(l.span(), &[sym::always, sym::never]);
54                        return None;
55                    }
56                }
57            }
58            ArgParser::NameValue(_) => {
59                let suggestions = cx.suggestions();
60                let span = cx.attr_span;
61                cx.emit_lint(AttributeLintKind::IllFormedAttributeInput { suggestions }, span);
62                return None;
63            }
64        }
65    }
66}
67
68pub(crate) struct RustcForceInlineParser;
69
70impl<S: Stage> SingleAttributeParser<S> for RustcForceInlineParser {
71    const PATH: &'static [Symbol] = &[sym::rustc_force_inline];
72    const ATTRIBUTE_ORDER: AttributeOrder = AttributeOrder::KeepOutermost;
73    const ON_DUPLICATE: OnDuplicate<S> = OnDuplicate::WarnButFutureError;
74    const ALLOWED_TARGETS: AllowedTargets = AllowedTargets::AllowList(&[
75        Allow(Target::Fn),
76        Allow(Target::Method(MethodKind::Inherent)),
77    ]);
78
79    const TEMPLATE: AttributeTemplate = template!(Word, List: &["reason"], NameValueStr: "reason");
80
81    fn convert(cx: &mut AcceptContext<'_, '_, S>, args: &ArgParser<'_>) -> Option<AttributeKind> {
82        let reason = match args {
83            ArgParser::NoArgs => None,
84            ArgParser::List(list) => {
85                let Some(l) = list.single() else {
86                    cx.expected_single_argument(list.span);
87                    return None;
88                };
89
90                let Some(reason) = l.lit().and_then(|i| i.kind.str()) else {
91                    cx.expected_string_literal(l.span(), l.lit());
92                    return None;
93                };
94
95                Some(reason)
96            }
97            ArgParser::NameValue(v) => {
98                let Some(reason) = v.value_as_str() else {
99                    cx.expected_string_literal(v.value_span, Some(v.value_as_lit()));
100                    return None;
101                };
102
103                Some(reason)
104            }
105        };
106
107        Some(AttributeKind::Inline(
108            InlineAttr::Force { attr_span: cx.attr_span, reason },
109            cx.attr_span,
110        ))
111    }
112}