]> git.lizzy.rs Git - rust.git/blob - library/alloc/src/alloc.rs
Clean up AllocRef implementation and documentation
[rust.git] / library / alloc / src / alloc.rs
1 //! Memory allocation APIs
2
3 #![stable(feature = "alloc_module", since = "1.28.0")]
4
5 use core::intrinsics::{self, min_align_of_val, size_of_val};
6 use core::ptr::{NonNull, Unique};
7
8 #[stable(feature = "alloc_module", since = "1.28.0")]
9 #[doc(inline)]
10 pub use core::alloc::*;
11
12 #[cfg(test)]
13 mod tests;
14
15 extern "Rust" {
16     // These are the magic symbols to call the global allocator.  rustc generates
17     // them from the `#[global_allocator]` attribute if there is one, or uses the
18     // default implementations in libstd (`__rdl_alloc` etc in `src/libstd/alloc.rs`)
19     // otherwise.
20     #[rustc_allocator]
21     #[rustc_allocator_nounwind]
22     fn __rust_alloc(size: usize, align: usize) -> *mut u8;
23     #[rustc_allocator_nounwind]
24     fn __rust_dealloc(ptr: *mut u8, size: usize, align: usize);
25     #[rustc_allocator_nounwind]
26     fn __rust_realloc(ptr: *mut u8, old_size: usize, align: usize, new_size: usize) -> *mut u8;
27     #[rustc_allocator_nounwind]
28     fn __rust_alloc_zeroed(size: usize, align: usize) -> *mut u8;
29 }
30
31 /// The global memory allocator.
32 ///
33 /// This type implements the [`AllocRef`] trait by forwarding calls
34 /// to the allocator registered with the `#[global_allocator]` attribute
35 /// if there is one, or the `std` crate’s default.
36 ///
37 /// Note: while this type is unstable, the functionality it provides can be
38 /// accessed through the [free functions in `alloc`](index.html#functions).
39 ///
40 /// [`AllocRef`]: trait.AllocRef.html
41 #[unstable(feature = "allocator_api", issue = "32838")]
42 #[derive(Copy, Clone, Default, Debug)]
43 pub struct Global;
44
45 /// Allocate memory with the global allocator.
46 ///
47 /// This function forwards calls to the [`GlobalAlloc::alloc`] method
48 /// of the allocator registered with the `#[global_allocator]` attribute
49 /// if there is one, or the `std` crate’s default.
50 ///
51 /// This function is expected to be deprecated in favor of the `alloc` method
52 /// of the [`Global`] type when it and the [`AllocRef`] trait become stable.
53 ///
54 /// # Safety
55 ///
56 /// See [`GlobalAlloc::alloc`].
57 ///
58 /// [`Global`]: struct.Global.html
59 /// [`AllocRef`]: trait.AllocRef.html
60 /// [`GlobalAlloc::alloc`]: trait.GlobalAlloc.html#tymethod.alloc
61 ///
62 /// # Examples
63 ///
64 /// ```
65 /// use std::alloc::{alloc, dealloc, Layout};
66 ///
67 /// unsafe {
68 ///     let layout = Layout::new::<u16>();
69 ///     let ptr = alloc(layout);
70 ///
71 ///     *(ptr as *mut u16) = 42;
72 ///     assert_eq!(*(ptr as *mut u16), 42);
73 ///
74 ///     dealloc(ptr, layout);
75 /// }
76 /// ```
77 #[stable(feature = "global_alloc", since = "1.28.0")]
78 #[inline]
79 pub unsafe fn alloc(layout: Layout) -> *mut u8 {
80     unsafe { __rust_alloc(layout.size(), layout.align()) }
81 }
82
83 /// Deallocate memory with the global allocator.
84 ///
85 /// This function forwards calls to the [`GlobalAlloc::dealloc`] method
86 /// of the allocator registered with the `#[global_allocator]` attribute
87 /// if there is one, or the `std` crate’s default.
88 ///
89 /// This function is expected to be deprecated in favor of the `dealloc` method
90 /// of the [`Global`] type when it and the [`AllocRef`] trait become stable.
91 ///
92 /// # Safety
93 ///
94 /// See [`GlobalAlloc::dealloc`].
95 ///
96 /// [`Global`]: struct.Global.html
97 /// [`AllocRef`]: trait.AllocRef.html
98 /// [`GlobalAlloc::dealloc`]: trait.GlobalAlloc.html#tymethod.dealloc
99 #[stable(feature = "global_alloc", since = "1.28.0")]
100 #[inline]
101 pub unsafe fn dealloc(ptr: *mut u8, layout: Layout) {
102     unsafe { __rust_dealloc(ptr, layout.size(), layout.align()) }
103 }
104
105 /// Reallocate memory with the global allocator.
106 ///
107 /// This function forwards calls to the [`GlobalAlloc::realloc`] method
108 /// of the allocator registered with the `#[global_allocator]` attribute
109 /// if there is one, or the `std` crate’s default.
110 ///
111 /// This function is expected to be deprecated in favor of the `realloc` method
112 /// of the [`Global`] type when it and the [`AllocRef`] trait become stable.
113 ///
114 /// # Safety
115 ///
116 /// See [`GlobalAlloc::realloc`].
117 ///
118 /// [`Global`]: struct.Global.html
119 /// [`AllocRef`]: trait.AllocRef.html
120 /// [`GlobalAlloc::realloc`]: trait.GlobalAlloc.html#method.realloc
121 #[stable(feature = "global_alloc", since = "1.28.0")]
122 #[inline]
123 pub unsafe fn realloc(ptr: *mut u8, layout: Layout, new_size: usize) -> *mut u8 {
124     unsafe { __rust_realloc(ptr, layout.size(), layout.align(), new_size) }
125 }
126
127 /// Allocate zero-initialized memory with the global allocator.
128 ///
129 /// This function forwards calls to the [`GlobalAlloc::alloc_zeroed`] method
130 /// of the allocator registered with the `#[global_allocator]` attribute
131 /// if there is one, or the `std` crate’s default.
132 ///
133 /// This function is expected to be deprecated in favor of the `alloc_zeroed` method
134 /// of the [`Global`] type when it and the [`AllocRef`] trait become stable.
135 ///
136 /// # Safety
137 ///
138 /// See [`GlobalAlloc::alloc_zeroed`].
139 ///
140 /// [`Global`]: struct.Global.html
141 /// [`AllocRef`]: trait.AllocRef.html
142 /// [`GlobalAlloc::alloc_zeroed`]: trait.GlobalAlloc.html#method.alloc_zeroed
143 ///
144 /// # Examples
145 ///
146 /// ```
147 /// use std::alloc::{alloc_zeroed, dealloc, Layout};
148 ///
149 /// unsafe {
150 ///     let layout = Layout::new::<u16>();
151 ///     let ptr = alloc_zeroed(layout);
152 ///
153 ///     assert_eq!(*(ptr as *mut u16), 0);
154 ///
155 ///     dealloc(ptr, layout);
156 /// }
157 /// ```
158 #[stable(feature = "global_alloc", since = "1.28.0")]
159 #[inline]
160 pub unsafe fn alloc_zeroed(layout: Layout) -> *mut u8 {
161     unsafe { __rust_alloc_zeroed(layout.size(), layout.align()) }
162 }
163
164 impl Global {
165     #[inline]
166     fn alloc_impl(&mut self, layout: Layout, zeroed: bool) -> Result<NonNull<[u8]>, AllocErr> {
167         match layout.size() {
168             0 => Ok(NonNull::slice_from_raw_parts(layout.dangling(), 0)),
169             // SAFETY: `layout` is non-zero in size,
170             size => unsafe {
171                 let raw_ptr = if zeroed { alloc_zeroed(layout) } else { alloc(layout) };
172                 let ptr = NonNull::new(raw_ptr).ok_or(AllocErr)?;
173                 Ok(NonNull::slice_from_raw_parts(ptr, size))
174             },
175         }
176     }
177
178     #[inline]
179     fn grow_impl(
180         &mut self,
181         ptr: NonNull<u8>,
182         layout: Layout,
183         new_size: usize,
184         zeroed: bool,
185     ) -> Result<NonNull<[u8]>, AllocErr> {
186         debug_assert!(
187             new_size >= layout.size(),
188             "`new_size` must be greater than or equal to `layout.size()`"
189         );
190
191         match layout.size() {
192             // SAFETY: the caller must ensure that the `new_size` does not overflow.
193             // `layout.align()` comes from a `Layout` and is thus guaranteed to be valid for a Layout.
194             0 => unsafe {
195                 let new_layout = Layout::from_size_align_unchecked(new_size, layout.align());
196                 self.alloc_impl(new_layout, zeroed)
197             },
198
199             // SAFETY: `new_size` is non-zero as `old_size` is greater than or equal to `new_size`
200             // as required by safety conditions. Other conditions must be upheld by the caller
201             old_size => unsafe {
202                 // `realloc` probably checks for `new_size >= size` or something similar.
203                 intrinsics::assume(new_size >= layout.size());
204
205                 let raw_ptr = realloc(ptr.as_ptr(), layout, new_size);
206                 let ptr = NonNull::new(raw_ptr).ok_or(AllocErr)?;
207                 if zeroed {
208                     raw_ptr.add(old_size).write_bytes(0, new_size - old_size);
209                 }
210                 Ok(NonNull::slice_from_raw_parts(ptr, new_size))
211             },
212         }
213     }
214 }
215
216 #[unstable(feature = "allocator_api", issue = "32838")]
217 unsafe impl AllocRef for Global {
218     #[inline]
219     fn alloc(&mut self, layout: Layout) -> Result<NonNull<[u8]>, AllocErr> {
220         self.alloc_impl(layout, false)
221     }
222
223     #[inline]
224     fn alloc_zeroed(&mut self, layout: Layout) -> Result<NonNull<[u8]>, AllocErr> {
225         self.alloc_impl(layout, true)
226     }
227
228     #[inline]
229     unsafe fn dealloc(&mut self, ptr: NonNull<u8>, layout: Layout) {
230         if layout.size() != 0 {
231             // SAFETY: `layout` is non-zero in size,
232             // other conditions must be upheld by the caller
233             unsafe { dealloc(ptr.as_ptr(), layout) }
234         }
235     }
236
237     #[inline]
238     unsafe fn grow(
239         &mut self,
240         ptr: NonNull<u8>,
241         layout: Layout,
242         new_size: usize,
243     ) -> Result<NonNull<[u8]>, AllocErr> {
244         self.grow_impl(ptr, layout, new_size, false)
245     }
246
247     #[inline]
248     unsafe fn grow_zeroed(
249         &mut self,
250         ptr: NonNull<u8>,
251         layout: Layout,
252         new_size: usize,
253     ) -> Result<NonNull<[u8]>, AllocErr> {
254         self.grow_impl(ptr, layout, new_size, true)
255     }
256
257     #[inline]
258     unsafe fn shrink(
259         &mut self,
260         ptr: NonNull<u8>,
261         layout: Layout,
262         new_size: usize,
263     ) -> Result<NonNull<[u8]>, AllocErr> {
264         debug_assert!(
265             new_size <= layout.size(),
266             "`new_size` must be smaller than or equal to `layout.size()`"
267         );
268
269         match new_size {
270             // SAFETY: conditions must be upheld by the caller
271             0 => unsafe {
272                 self.dealloc(ptr, layout);
273                 Ok(NonNull::slice_from_raw_parts(layout.dangling(), 0))
274             },
275
276             // SAFETY: `new_size` is non-zero. Other conditions must be upheld by the caller
277             new_size => unsafe {
278                 // `realloc` probably checks for `new_size <= size` or something similar.
279                 intrinsics::assume(new_size <= layout.size());
280
281                 let raw_ptr = realloc(ptr.as_ptr(), layout, new_size);
282                 let ptr = NonNull::new(raw_ptr).ok_or(AllocErr)?;
283                 Ok(NonNull::slice_from_raw_parts(ptr, new_size))
284             },
285         }
286     }
287 }
288
289 /// The allocator for unique pointers.
290 // This function must not unwind. If it does, MIR codegen will fail.
291 #[cfg(not(test))]
292 #[lang = "exchange_malloc"]
293 #[inline]
294 unsafe fn exchange_malloc(size: usize, align: usize) -> *mut u8 {
295     let layout = unsafe { Layout::from_size_align_unchecked(size, align) };
296     match Global.alloc(layout) {
297         Ok(ptr) => ptr.as_non_null_ptr().as_ptr(),
298         Err(_) => handle_alloc_error(layout),
299     }
300 }
301
302 #[cfg_attr(not(test), lang = "box_free")]
303 #[inline]
304 // This signature has to be the same as `Box`, otherwise an ICE will happen.
305 // When an additional parameter to `Box` is added (like `A: AllocRef`), this has to be added here as
306 // well.
307 // For example if `Box` is changed to  `struct Box<T: ?Sized, A: AllocRef>(Unique<T>, A)`,
308 // this function has to be changed to `fn box_free<T: ?Sized, A: AllocRef>(Unique<T>, A)` as well.
309 pub(crate) unsafe fn box_free<T: ?Sized>(ptr: Unique<T>) {
310     unsafe {
311         let size = size_of_val(ptr.as_ref());
312         let align = min_align_of_val(ptr.as_ref());
313         let layout = Layout::from_size_align_unchecked(size, align);
314         Global.dealloc(ptr.cast().into(), layout)
315     }
316 }
317
318 /// Abort on memory allocation error or failure.
319 ///
320 /// Callers of memory allocation APIs wishing to abort computation
321 /// in response to an allocation error are encouraged to call this function,
322 /// rather than directly invoking `panic!` or similar.
323 ///
324 /// The default behavior of this function is to print a message to standard error
325 /// and abort the process.
326 /// It can be replaced with [`set_alloc_error_hook`] and [`take_alloc_error_hook`].
327 ///
328 /// [`set_alloc_error_hook`]: ../../std/alloc/fn.set_alloc_error_hook.html
329 /// [`take_alloc_error_hook`]: ../../std/alloc/fn.take_alloc_error_hook.html
330 #[stable(feature = "global_alloc", since = "1.28.0")]
331 #[rustc_allocator_nounwind]
332 pub fn handle_alloc_error(layout: Layout) -> ! {
333     extern "Rust" {
334         #[lang = "oom"]
335         fn oom_impl(layout: Layout) -> !;
336     }
337     unsafe { oom_impl(layout) }
338 }