| Age | Commit message (Expand) | Author | Lines |
| 2021-06-12 | Rollup merge of #86174 - lqd:const-ub-align, r=RalfJung | Yuki Okushi | -1/+3 |
| 2021-06-09 | detect incorrect vtable alignment during const eval instead of ICE-ing | Rémy Rakic | -1/+3 |
| 2021-06-05 | Explain that `ensure_monomorphic_enough` omission is intentional | Tomasz Miąsko | -0/+2 |
| 2021-06-05 | Disallow non-monomorphic calls to `needs_drop` in interpreter | Tomasz Miąsko | -1/+4 |
| 2021-06-04 | Rollup merge of #85963 - m-ou-se:constructor-type-name, r=yaahc | Yuki Okushi | -6/+1 |
| 2021-06-03 | Show `::{{constructor}}` in std::any::type_name(). | Mara Bos | -6/+1 |
| 2021-06-02 | Restrict access to crate_name. | Camille GILLOT | -1/+1 |
| 2021-06-01 | Revert "Reduce the amount of untracked state in TyCtxt" | Camille Gillot | -1/+1 |
| 2021-05-30 | Restrict access to crate_name. | Camille GILLOT | -1/+1 |
| 2021-05-28 | Auto merge of #85546 - hyd-dev:unwind, r=RalfJung | bors | -55/+121 |
| 2021-05-28 | Rewrite to a `match` | hyd-dev | -5/+4 |
| 2021-05-28 | "a frame" -> "a stack frame" | hyd-dev | -1/+1 |
| 2021-05-26 | Remove unneeded workaround | Smitty | -5/+3 |
| 2021-05-26 | Use `match` instead of `.map_or(StackPopUnwind::Skip, StackPopUnwind::Cleanup)` | hyd-dev | -5/+8 |
| 2021-05-25 | Move the check to `unwind_to_block` | hyd-dev | -30/+34 |
| 2021-05-25 | Add a comment | hyd-dev | -0/+1 |
| 2021-05-25 | `can_unwind` -> `caller_can_unwind` | hyd-dev | -2/+2 |
| 2021-05-25 | Check whether unwinding is allowed before popping the stack frame | hyd-dev | -16/+15 |
| 2021-05-23 | :facepalm: | hyd-dev | -1/+1 |
| 2021-05-23 | Pass `StackPopUnwind` to `eval_fn_call()` and some other functions that are c... | hyd-dev | -21/+25 |
| 2021-05-23 | "unwind" -> "unwinding" | hyd-dev | -1/+1 |
| 2021-05-23 | `Cleanup(Option<_>)` -> `Cleanup(BasicBlock), Skip` | hyd-dev | -6/+9 |
| 2021-05-23 | support creating mutable allocations from byte slices | Ralf Jung | -6/+16 |
| 2021-05-23 | avoid redundant immutability check | Ralf Jung | -3/+0 |
| 2021-05-23 | reject deallocation of read-only allocations | Ralf Jung | -0/+3 |
| 2021-05-23 | Don't evaluate `self.fn_can_unwind(...)` if `can_unwind` is already true | hyd-dev | -3/+4 |
| 2021-05-23 | Refactor `match` + `if` | hyd-dev | -12/+9 |
| 2021-05-23 | Move the callee "can unwind" check to the right place | hyd-dev | -38/+37 |
| 2021-05-23 | const-eval: disallow unwinding across functions that `!fn_can_unwind()` | hyd-dev | -11/+67 |
| 2021-05-22 | Auto merge of #85578 - RalfJung:alloc-mem-extra, r=oli-obk | bors | -2/+3 |
| 2021-05-22 | CTFE get_alloc_extra_mut: also provide ref to MemoryExtra | Ralf Jung | -2/+3 |
| 2021-05-22 | Add default implementation for `enforce_abi()` | hyd-dev | -6/+3 |
| 2021-05-21 | Add `rustc_mir::interpret::Machine::enforce_abi()` | hyd-dev | -19/+29 |
| 2021-05-19 | CTFE Machine: do not expose Allocation | Ralf Jung | -9/+11 |
| 2021-05-18 | fix mplace_access_checked with forced alignment | Ralf Jung | -2/+3 |
| 2021-05-18 | add Align::ONE; add methods to access alloc.extra | Ralf Jung | -17/+26 |
| 2021-05-18 | reduce number of allocation lookups during copy | Ralf Jung | -6/+6 |
| 2021-05-18 | CTFE core engine allocation & memory API improvemenets | Ralf Jung | -259/+410 |
| 2021-05-17 | Rollup merge of #85412 - RalfJung:c_str, r=oli-obk | Ralf Jung | -75/+0 |
| 2021-05-17 | Rollup merge of #85408 - RalfJung:alloc-size, r=oli-obk | Ralf Jung | -7/+7 |
| 2021-05-17 | Rollup merge of #85087 - hyd-dev:lots-of-abis, r=RalfJung | Ralf Jung | -11/+18 |
| 2021-05-17 | Add a comment for `check_abi()` | hyd-dev | -0/+3 |
| 2021-05-17 | remove some functions that were only used by Miri | Ralf Jung | -75/+0 |
| 2021-05-17 | remove size field from Allocation | Ralf Jung | -7/+7 |
| 2021-05-15 | handle pointers in str | Ralf Jung | -0/+1 |
| 2021-05-12 | entirely remove rustc_args_required_const attribute | Ralf Jung | -9/+0 |
| 2021-05-12 | Auto merge of #83813 - cbeuw:remap-std, r=michaelwoerister | bors | -2/+8 |
| 2021-05-09 | Check the ABI of `body.source` | hyd-dev | -11/+15 |
| 2021-05-07 | Rollup merge of #84972 - RalfJung:null-ptr-msg, r=oli-obk | Yuki Okushi | -3/+4 |
| 2021-05-06 | use CheckInAllocMsg::PointerArithmeticTest for ptr_offset error | Ralf Jung | -3/+4 |