| Age | Commit message (Expand) | Author | Lines |
| 2023-03-28 | Remove ~const from alloc | Jubilee Young | -7/+1 |
| 2023-01-14 | Remove various double spaces in source comments. | André Vennberg | -2/+2 |
| 2023-01-03 | Rollup merge of #106045 - RalfJung:oom-nounwind-panic, r=Amanieu | Michael Goulet | -1/+14 |
| 2023-01-02 | default OOM handler: use non-unwinding panic (unless -Zoom=panic is set), to ... | Ralf Jung | -1/+14 |
| 2022-12-30 | Replace libstd, libcore, liballoc in line comments. | jonathanCogan | -1/+1 |
| 2022-12-28 | Update bootstrap cfg | Pietro Albini | -13/+0 |
| 2022-11-06 | cfg-step code | Mark Rousskov | -8/+4 |
| 2022-10-31 | Rewrite implementation of `#[alloc_error_handler]` | Amanieu d'Antras | -6/+5 |
| 2022-10-11 | rename rustc_allocator_nounwind to rustc_nounwind | Ralf Jung | -4/+8 |
| 2022-08-12 | Adjust cfgs | Mark Rousskov | -3/+3 |
| 2022-07-26 | codegen: use new {re,de,}allocator annotations in llvm | Augie Fackler | -1/+4 |
| 2022-07-14 | add missing null ptr check in alloc example | Ralf Jung | -1/+4 |
| 2022-05-19 | Auto merge of #97033 - nbdd0121:unwind3, r=Amanieu | bors | -2/+2 |
| 2022-05-14 | Rollup merge of #95365 - mkroening:hermit-alloc-error-handler, r=joshtriplett | Yuki Okushi | -1/+1 |
| 2022-05-14 | Use Rust ABI for `__rust_start_panic` and `_{rdl,rg}_oom` | Gary Guo | -2/+2 |
| 2022-04-05 | trivial cfg(bootstrap) changes | Pietro Albini | -5/+1 |
| 2022-03-27 | Use default alloc_error_handler for hermit | Martin Kröning | -1/+1 |
| 2022-03-21 | Rename `~const Drop` to `~const Destruct` | Deadbeef | -1/+7 |
| 2022-03-10 | Use implicit capture syntax in format_args | T-O-R-U-S | -1/+1 |
| 2022-02-05 | Mark __rgl_oom and __rd_oom as "C-unwind" | Amanieu d'Antras | -2/+2 |
| 2022-02-05 | Allow handle_alloc_error to unwind | Amanieu d'Antras | -2/+0 |
| 2022-01-04 | Add tracking issues (`const_box`, `const_alloc_error`) | woppopo | -2/+2 |
| 2021-12-23 | Constify `Box<T, A>` methods | woppopo | -5/+18 |
| 2021-10-30 | Add #[must_use] to alloc functions that would leak memory | John Kugelman | -0/+3 |
| 2021-09-25 | Use Rvalue::ShallowInitBox for box expression | Gary Guo | -1/+0 |
| 2021-08-22 | Fix typos “a”→“an” | Frank Steffahn | -1/+1 |
| 2021-05-05 | alloc: Add unstable Cfg feature `no-global_oom_handling` | John Ericson | -4/+5 |
| 2021-01-12 | move WriteCloneIntoRaw into alloc::alloc | Josh Stone | -0/+23 |
| 2020-12-04 | Rename `AllocRef` to `Allocator` and `(de)alloc` to `(de)allocate` | Tim Diekmann | -20/+20 |
| 2020-11-23 | Auto merge of #79172 - a1phyr:cold_abort, r=Mark-Simulacrum | bors | -0/+1 |
| 2020-11-19 | Bump bootstrap compiler version | Jake Goulding | -17/+2 |
| 2020-11-18 | Add #[cold] to `abort` and `handle_alloc_error` | Benoît du Garreau | -0/+1 |
| 2020-11-15 | document that __rust_alloc is also magic to our LLVM fork | Ralf Jung | -0/+2 |
| 2020-10-25 | Merge remote-tracking branch 'upstream/master' into box-alloc | Tim Diekmann | -1/+1 |
| 2020-10-24 | Rollup merge of #77610 - hermitcore:dtors, r=m-ou-se | Jonas Schievink | -1/+1 |
| 2020-10-16 | Merge branch 'master' into box-alloc | Tim Diekmann | -6/+15 |
| 2020-10-13 | minor changes to pass the format check | Stefan Lankes | -1/+1 |
| 2020-10-13 | move __rg_oom to the libos to avoid duplicated symbols | Stefan Lankes | -1/+1 |
| 2020-10-12 | Use intra-doc links for links to module-level docs | Camelid | -3/+3 |
| 2020-10-09 | rename __default_lib_allocator -> __default_alloc_error_handler | Ralf Jung | -1/+1 |
| 2020-10-09 | also extend global allocator comment | Ralf Jung | -2/+3 |
| 2020-10-09 | fix __rust_alloc_error_handler comment | Ralf Jung | -2/+10 |
| 2020-10-07 | Support custom allocators in `Box` | Tim Diekmann | -4/+15 |
| 2020-10-02 | Implement Make `handle_alloc_error` default to panic (for no_std + liballoc) | Harald Hoyer | -0/+47 |
| 2020-09-28 | Rename AllocErr to AllocError | Jacob Hughes | -10/+10 |
| 2020-09-22 | a few more &mut self -> self changes | blitzerr | -4/+4 |
| 2020-09-22 | removing &mut self for other methods of AllocRef | blitzerr | -2/+2 |
| 2020-09-21 | Changing the alloc() to accept &self instead of &mut self | blitzerr | -2/+2 |
| 2020-09-08 | Capitalize safety comments | Flying-Toast | -1/+1 |
| 2020-08-26 | Auto merge of #75687 - TimDiekmann:realloc-align, r=Amanieu | bors | -34/+55 |