Skip to main content

rustc_builtin_macros/
global_allocator.rs

1use rustc_ast::expand::allocator::{
2    ALLOCATOR_METHODS, AllocatorMethod, AllocatorMethodInput, AllocatorTy, global_fn_name,
3};
4use rustc_ast::{
5    self as ast, AttrVec, Expr, Fn, FnHeader, FnSig, Generics, ItemKind, Mutability, Param, Safety,
6    Stmt, StmtKind, Ty, TyKind,
7};
8use rustc_expand::base::{Annotatable, ExtCtxt};
9use rustc_span::{Ident, Span, Symbol, kw, sym};
10use thin_vec::{ThinVec, thin_vec};
11
12use crate::diagnostics;
13use crate::util::check_builtin_macro_attribute;
14
15pub(crate) fn expand(
16    ecx: &mut ExtCtxt<'_>,
17    _span: Span,
18    meta_item: &ast::MetaItem,
19    item: Annotatable,
20) -> Vec<Annotatable> {
21    check_builtin_macro_attribute(ecx, meta_item, sym::global_allocator);
22
23    let orig_item = item.clone();
24
25    // Allow using `#[global_allocator]` on an item statement
26    // FIXME - if we get deref patterns, use them to reduce duplication here
27    let (item, ident, is_stmt, ty_span) = if let Annotatable::Item(item) = &item
28        && let ItemKind::Static(ast::StaticItem { ident, ty, .. }) = &item.kind
29    {
30        (item, *ident, false, ecx.with_def_site_ctxt(ty.span))
31    } else if let Annotatable::Stmt(stmt) = &item
32        && let StmtKind::Item(item) = &stmt.kind
33        && let ItemKind::Static(ast::StaticItem { ident, ty, .. }) = &item.kind
34    {
35        (item, *ident, true, ecx.with_def_site_ctxt(ty.span))
36    } else {
37        ecx.dcx().emit_err(diagnostics::AllocMustStatics { span: item.span() });
38        return ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
        [orig_item]))vec![orig_item];
39    };
40
41    // Forbid `#[thread_local]` attributes on the item
42    if let Some(attr) = item.attrs.iter().find(|x| x.has_name(sym::thread_local)) {
43        ecx.dcx()
44            .emit_err(diagnostics::AllocCannotThreadLocal { span: item.span, attr: attr.span });
45        return ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
        [orig_item]))vec![orig_item];
46    }
47
48    // Generate a bunch of new items using the AllocFnFactory
49    let span = ecx.with_def_site_ctxt(item.span);
50    let f = AllocFnFactory { span, ty_span, global: ident, cx: ecx };
51
52    // Generate item statements for the allocator methods.
53    let stmts = ALLOCATOR_METHODS.iter().map(|method| f.allocator_fn(method)).collect();
54
55    // Generate anonymous constant serving as container for the allocator methods.
56    let const_ty = ecx.ty(ty_span, TyKind::Tup(ThinVec::new()));
57    let const_body = ecx.expr_block(ecx.block(span, stmts));
58    let const_item =
59        ecx.item_const(span, Ident::new(kw::Underscore, span), const_ty, Some(const_body));
60    let const_item = if is_stmt {
61        Annotatable::Stmt(Box::new(ecx.stmt_item(span, const_item)))
62    } else {
63        Annotatable::Item(const_item)
64    };
65
66    // Return the original item and the new methods.
67    ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
        [orig_item, const_item]))vec![orig_item, const_item]
68}
69
70struct AllocFnFactory<'a, 'b> {
71    span: Span,
72    ty_span: Span,
73    global: Ident,
74    cx: &'a ExtCtxt<'b>,
75}
76
77impl AllocFnFactory<'_, '_> {
78    fn allocator_fn(&self, method: &AllocatorMethod) -> Stmt {
79        let mut abi_args = ThinVec::new();
80        let args = method.inputs.iter().map(|input| self.arg_ty(input, &mut abi_args)).collect();
81        let result = self.call_allocator(method.name, args);
82        let output_ty = self.ret_ty(&method.output);
83        let decl = self.cx.fn_decl(abi_args, ast::FnRetTy::Ty(output_ty));
84        let header = FnHeader { safety: Safety::Unsafe(self.span), ..FnHeader::default() };
85        let sig = FnSig { decl, header, span: self.span };
86        let body = Some(self.cx.block_expr(result));
87        let kind = ItemKind::Fn(Box::new(Fn {
88            defaultness: ast::Defaultness::Implicit,
89            sig,
90            ident: Ident::from_str_and_span(&global_fn_name(method.name), self.span),
91            generics: Generics::default(),
92            contract: None,
93            body,
94            define_opaque: None,
95            eii_impl: None,
96        }));
97        let item = self.cx.item(self.span, self.attrs(method), kind);
98        self.cx.stmt_item(self.ty_span, item)
99    }
100
101    fn call_allocator(&self, method: Symbol, mut args: ThinVec<Box<Expr>>) -> Box<Expr> {
102        let method = self.cx.std_path(&[sym::alloc, sym::GlobalAlloc, method]);
103        let method = self.cx.expr_path(self.cx.path(self.ty_span, method));
104        let allocator = self.cx.path_ident(self.ty_span, self.global);
105        let allocator = self.cx.expr_path(allocator);
106        let allocator = self.cx.expr_addr_of(self.ty_span, allocator);
107        args.insert(0, allocator);
108
109        self.cx.expr_call(self.ty_span, method, args)
110    }
111
112    fn attrs(&self, method: &AllocatorMethod) -> AttrVec {
113        let alloc_attr = match method.name {
114            sym::alloc => sym::rustc_allocator,
115            sym::dealloc => sym::rustc_deallocator,
116            sym::realloc => sym::rustc_reallocator,
117            sym::alloc_zeroed => sym::rustc_allocator_zeroed,
118            _ => {
    ::core::panicking::panic_fmt(format_args!("internal error: entered unreachable code: {0}",
            format_args!("Unknown allocator method!")));
}unreachable!("Unknown allocator method!"),
119        };
120        {
    let len = [(), ()].len();
    let mut vec = ::thin_vec::ThinVec::with_capacity(len);
    vec.push(self.cx.attr_word(sym::rustc_std_internal_symbol, self.span));
    vec.push(self.cx.attr_word(alloc_attr, self.span));
    vec
}thin_vec![
121            self.cx.attr_word(sym::rustc_std_internal_symbol, self.span),
122            self.cx.attr_word(alloc_attr, self.span)
123        ]
124    }
125
126    fn arg_ty(&self, input: &AllocatorMethodInput, args: &mut ThinVec<Param>) -> Box<Expr> {
127        match input.ty {
128            AllocatorTy::Layout => {
129                // If an allocator method is ever introduced having multiple
130                // Layout arguments, these argument names need to be
131                // disambiguated somehow. Currently the generated code would
132                // fail to compile with "identifier is bound more than once in
133                // this parameter list".
134                let size = Ident::from_str_and_span("size", self.span);
135                let align = Ident::from_str_and_span("align", self.span);
136
137                let usize = self.cx.path_ident(self.span, Ident::new(sym::usize, self.span));
138                let ty_usize = self.cx.ty_path(usize);
139                args.push(self.cx.param(self.span, size, ty_usize));
140                let ty_align = self.ptr_alignment();
141                args.push(self.cx.param(self.span, align, ty_align));
142
143                let layout_new = self.cx.std_path(&[
144                    sym::alloc,
145                    sym::Layout,
146                    sym::from_size_alignment_unchecked,
147                ]);
148                let layout_new = self.cx.expr_path(self.cx.path(self.span, layout_new));
149                let size = self.cx.expr_ident(self.span, size);
150                let align = self.cx.expr_ident(self.span, align);
151                let layout = self.cx.expr_call(self.span, layout_new, {
    let len = [(), ()].len();
    let mut vec = ::thin_vec::ThinVec::with_capacity(len);
    vec.push(size);
    vec.push(align);
    vec
}thin_vec![size, align]);
152                layout
153            }
154
155            AllocatorTy::Ptr => {
156                let ident = Ident::from_str_and_span(input.name, self.span);
157                args.push(self.cx.param(self.span, ident, self.ptr_u8()));
158                self.cx.expr_ident(self.span, ident)
159            }
160
161            AllocatorTy::Usize => {
162                let ident = Ident::from_str_and_span(input.name, self.span);
163                args.push(self.cx.param(self.span, ident, self.usize()));
164                self.cx.expr_ident(self.span, ident)
165            }
166
167            AllocatorTy::Never | AllocatorTy::ResultPtr | AllocatorTy::Unit => {
168                {
    ::core::panicking::panic_fmt(format_args!("can\'t convert AllocatorTy to an argument"));
}panic!("can't convert AllocatorTy to an argument")
169            }
170        }
171    }
172
173    fn ret_ty(&self, ty: &AllocatorTy) -> Box<Ty> {
174        match *ty {
175            AllocatorTy::ResultPtr => self.ptr_u8(),
176
177            AllocatorTy::Unit => self.cx.ty(self.span, TyKind::Tup(ThinVec::new())),
178
179            AllocatorTy::Layout | AllocatorTy::Never | AllocatorTy::Usize | AllocatorTy::Ptr => {
180                {
    ::core::panicking::panic_fmt(format_args!("can\'t convert `AllocatorTy` to an output"));
}panic!("can't convert `AllocatorTy` to an output")
181            }
182        }
183    }
184
185    fn usize(&self) -> Box<Ty> {
186        let usize = self.cx.path_ident(self.span, Ident::new(sym::usize, self.span));
187        self.cx.ty_path(usize)
188    }
189
190    fn ptr_alignment(&self) -> Box<Ty> {
191        let path = self.cx.std_path(&[sym::mem, sym::Alignment]);
192        let path = self.cx.path(self.span, path);
193        self.cx.ty_path(path)
194    }
195
196    fn ptr_u8(&self) -> Box<Ty> {
197        let u8 = self.cx.path_ident(self.span, Ident::new(sym::u8, self.span));
198        let ty_u8 = self.cx.ty_path(u8);
199        self.cx.ty_ptr(self.span, ty_u8, Mutability::Mut)
200    }
201}