]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_middle/src/middle/codegen_fn_attrs.rs
Rollup merge of #93613 - crlf0710:rename_to_async_iter, r=yaahc
[rust.git] / compiler / rustc_middle / src / middle / codegen_fn_attrs.rs
1 use crate::mir::mono::Linkage;
2 use rustc_attr::{InlineAttr, InstructionSetAttr, OptimizeAttr};
3 use rustc_span::symbol::Symbol;
4 use rustc_target::spec::SanitizerSet;
5
6 #[derive(Clone, TyEncodable, TyDecodable, HashStable, Debug)]
7 pub struct CodegenFnAttrs {
8     pub flags: CodegenFnAttrFlags,
9     /// Parsed representation of the `#[inline]` attribute
10     pub inline: InlineAttr,
11     /// Parsed representation of the `#[optimize]` attribute
12     pub optimize: OptimizeAttr,
13     /// The `#[export_name = "..."]` attribute, indicating a custom symbol a
14     /// function should be exported under
15     pub export_name: Option<Symbol>,
16     /// The `#[link_name = "..."]` attribute, indicating a custom symbol an
17     /// imported function should be imported as. Note that `export_name`
18     /// probably isn't set when this is set, this is for foreign items while
19     /// `#[export_name]` is for Rust-defined functions.
20     pub link_name: Option<Symbol>,
21     /// The `#[link_ordinal = "..."]` attribute, indicating an ordinal an
22     /// imported function has in the dynamic library. Note that this must not
23     /// be set when `link_name` is set. This is for foreign items with the
24     /// "raw-dylib" kind.
25     pub link_ordinal: Option<u16>,
26     /// The `#[target_feature(enable = "...")]` attribute and the enabled
27     /// features (only enabled features are supported right now).
28     pub target_features: Vec<Symbol>,
29     /// The `#[linkage = "..."]` attribute and the value we found.
30     pub linkage: Option<Linkage>,
31     /// The `#[link_section = "..."]` attribute, or what executable section this
32     /// should be placed in.
33     pub link_section: Option<Symbol>,
34     /// The `#[no_sanitize(...)]` attribute. Indicates sanitizers for which
35     /// instrumentation should be disabled inside the annotated function.
36     pub no_sanitize: SanitizerSet,
37     /// The `#[instruction_set(set)]` attribute. Indicates if the generated code should
38     /// be generated against a specific instruction set. Only usable on architectures which allow
39     /// switching between multiple instruction sets.
40     pub instruction_set: Option<InstructionSetAttr>,
41     /// The `#[repr(align(...))]` attribute. Indicates the value of which the function should be
42     /// aligned to.
43     pub alignment: Option<u32>,
44 }
45
46 bitflags! {
47     #[derive(TyEncodable, TyDecodable, HashStable)]
48     pub struct CodegenFnAttrFlags: u32 {
49         /// `#[cold]`: a hint to LLVM that this function, when called, is never on
50         /// the hot path.
51         const COLD                      = 1 << 0;
52         /// `#[rustc_allocator]`: a hint to LLVM that the pointer returned from this
53         /// function is never null.
54         const ALLOCATOR                 = 1 << 1;
55         /// An indicator that function will never unwind. Will become obsolete
56         /// once C-unwind is fully stabilized.
57         const NEVER_UNWIND              = 1 << 3;
58         /// `#[naked]`: an indicator to LLVM that no function prologue/epilogue
59         /// should be generated.
60         const NAKED                     = 1 << 4;
61         /// `#[no_mangle]`: an indicator that the function's name should be the same
62         /// as its symbol.
63         const NO_MANGLE                 = 1 << 5;
64         /// `#[rustc_std_internal_symbol]`: an indicator that this symbol is a
65         /// "weird symbol" for the standard library in that it has slightly
66         /// different linkage, visibility, and reachability rules.
67         const RUSTC_STD_INTERNAL_SYMBOL = 1 << 6;
68         /// `#[thread_local]`: indicates a static is actually a thread local
69         /// piece of memory
70         const THREAD_LOCAL              = 1 << 8;
71         /// `#[used]`: indicates that LLVM can't eliminate this function (but the
72         /// linker can!).
73         const USED                      = 1 << 9;
74         /// `#[ffi_returns_twice]`, indicates that an extern function can return
75         /// multiple times
76         const FFI_RETURNS_TWICE         = 1 << 10;
77         /// `#[track_caller]`: allow access to the caller location
78         const TRACK_CALLER              = 1 << 11;
79         /// #[ffi_pure]: applies clang's `pure` attribute to a foreign function
80         /// declaration.
81         const FFI_PURE                  = 1 << 12;
82         /// #[ffi_const]: applies clang's `const` attribute to a foreign function
83         /// declaration.
84         const FFI_CONST                 = 1 << 13;
85         /// #[cmse_nonsecure_entry]: with a TrustZone-M extension, declare a
86         /// function as an entry function from Non-Secure code.
87         const CMSE_NONSECURE_ENTRY      = 1 << 14;
88         /// `#[no_coverage]`: indicates that the function should be ignored by
89         /// the MIR `InstrumentCoverage` pass and not added to the coverage map
90         /// during codegen.
91         const NO_COVERAGE               = 1 << 15;
92         /// `#[used(linker)]`: indicates that LLVM nor the linker can eliminate this function.
93         const USED_LINKER               = 1 << 16;
94     }
95 }
96
97 impl CodegenFnAttrs {
98     pub fn new() -> CodegenFnAttrs {
99         CodegenFnAttrs {
100             flags: CodegenFnAttrFlags::empty(),
101             inline: InlineAttr::None,
102             optimize: OptimizeAttr::None,
103             export_name: None,
104             link_name: None,
105             link_ordinal: None,
106             target_features: vec![],
107             linkage: None,
108             link_section: None,
109             no_sanitize: SanitizerSet::empty(),
110             instruction_set: None,
111             alignment: None,
112         }
113     }
114
115     /// Returns `true` if `#[inline]` or `#[inline(always)]` is present.
116     pub fn requests_inline(&self) -> bool {
117         match self.inline {
118             InlineAttr::Hint | InlineAttr::Always => true,
119             InlineAttr::None | InlineAttr::Never => false,
120         }
121     }
122
123     /// Returns `true` if it looks like this symbol needs to be exported, for example:
124     ///
125     /// * `#[no_mangle]` is present
126     /// * `#[export_name(...)]` is present
127     /// * `#[linkage]` is present
128     pub fn contains_extern_indicator(&self) -> bool {
129         self.flags.contains(CodegenFnAttrFlags::NO_MANGLE)
130             || self.export_name.is_some()
131             || match self.linkage {
132                 // These are private, so make sure we don't try to consider
133                 // them external.
134                 None | Some(Linkage::Internal | Linkage::Private) => false,
135                 Some(_) => true,
136             }
137     }
138 }