| Age | Commit message (Expand) | Author | Lines |
| 2023-08-08 | Auto merge of #114520 - RalfJung:unsized-valtrees, r=oli-obk | bors | -2/+14 |
| 2023-08-06 | simplify handling of valtrees for unsized types | Ralf Jung | -2/+14 |
| 2023-08-06 | interpret: use ConstPropNonsense for more const-prop induced issues | Ralf Jung | -2/+2 |
| 2023-08-04 | interpret: add mplace_to_ref helper method | Ralf Jung | -2/+13 |
| 2023-08-01 | rename deref_operand → deref_pointer and some Miri helper functions | Ralf Jung | -2/+3 |
| 2023-07-25 | make MPlaceTy non-Copy | Ralf Jung | -3/+3 |
| 2023-07-25 | interpret: make read functions generic over operand type | Ralf Jung | -11/+11 |
| 2023-07-25 | interpret: make write functions generic over the place type | Ralf Jung | -97/+129 |
| 2023-07-25 | add some sanity checks in write_immediate_no_validate | Ralf Jung | -3/+28 |
| 2023-07-25 | interpret: refactor projection code to work on a common trait, and use that f... | Ralf Jung | -70/+76 |
| 2023-07-24 | interpret: support projecting into Place::Local without force_allocation | Ralf Jung | -66/+159 |
| 2023-07-12 | Re-format let-else per rustfmt update | Mark Rousskov | -3/+7 |
| 2023-07-11 | fix handling of alignment for dyn-sized places | Ralf Jung | -4/+6 |
| 2023-07-11 | miri: protect Move() function arguments during the call | Ralf Jung | -10/+12 |
| 2023-07-07 | miri: check that assignments do not self-overlap | Ralf Jung | -1/+6 |
| 2023-07-05 | Move `TyCtxt::mk_x` to `Ty::new_x` where applicable | Boxy | -2/+4 |
| 2023-04-24 | Split `{Idx, IndexVec, IndexSlice}` into their own modules | Maybe Waffle | -1/+1 |
| 2023-04-01 | Use `FieldIdx` in various things related to aggregates | Scott McMurray | -4/+5 |
| 2023-03-25 | Refactor: `VariantIdx::from_u32(0)` -> `FIRST_VARIANT` | Scott McMurray | -2/+2 |
| 2023-03-21 | Add a layout argument to `enforce_validity`. | Oli Scherer | -2/+2 |
| 2023-03-02 | Rollup merge of #108022 - CraftSpider:align-bytes, r=oli-obk | Matthias Krüger | -2/+4 |
| 2023-02-20 | Minimal changes to make miri work | Rune Tynan | -2/+4 |
| 2023-02-20 | Allow non-`Box` allocations in preparation for aligned const allocations for ... | Rune Tynan | -2/+2 |
| 2023-02-20 | basic dyn* support for Miri | Ralf Jung | -15/+52 |
| 2023-02-15 | Use target instead of machine for mir interpreter integer handling. | Oli Scherer | -2/+2 |
| 2023-02-14 | interpret: rename Pointer::from_addr → from_addr_invalid | Ralf Jung | -1/+1 |
| 2023-02-07 | Rollup merge of #107756 - RalfJung:miri-out-of-addresses, r=oli-obk | Matthias Krüger | -3/+3 |
| 2023-02-07 | miri: fix ICE when running out of address space | Ralf Jung | -3/+3 |
| 2023-02-06 | interpret: move discriminant reading and writing to separate file | Ralf Jung | -83/+4 |
| 2023-02-02 | Introduce write_aggregate. | Camille GILLOT | -0/+28 |
| 2023-02-02 | Interpret aggregates. | Camille GILLOT | -9/+0 |
| 2023-01-17 | Remove double spaces after dots in comments | Maybe Waffle | -3/+3 |
| 2022-12-18 | avoid .into() conversion to identical types | Matthias Krüger | -1/+1 |
| 2022-12-15 | Make alignment checks a future incompat lint | Oli Scherer | -7/+2 |
| 2022-11-18 | review feedback | Ralf Jung | -2/+2 |
| 2022-11-18 | interpret: use Either over Result when it is not representing an error condition | Ralf Jung | -13/+15 |
| 2022-11-14 | Rollup merge of #104356 - RalfJung:interpret-check-mplace, r=oli-obk | Matthias Krüger | -9/+9 |
| 2022-11-13 | interpret: make check_mplace public | Ralf Jung | -9/+9 |
| 2022-11-13 | add is_sized method on Abi and Layout, and use it | Ralf Jung | -5/+5 |
| 2022-10-12 | Use `tidy-alphabetical` in the compiler | Nilstrieb | -2/+3 |
| 2022-10-02 | Don't ICE when trying to copy unsized value in const prop | Michael Goulet | -5/+11 |
| 2022-09-26 | remove cfg(bootstrap) | Pietro Albini | -2/+0 |
| 2022-09-21 | OpTy: fix a method taking self rather than &self | Ralf Jung | -1/+1 |
| 2022-09-07 | Use niche-filling optimization even when multiple variants have data. | Michael Benfield | -2/+4 |
| 2022-09-07 | Change name of "dataful" variant to "untagged" | Michael Benfield | -2/+2 |
| 2022-08-30 | Rollup merge of #101101 - RalfJung:read-pointer-as-bytes, r=oli-obk | Dylan DPC | -3/+1 |
| 2022-08-27 | interpret: make read-pointer-as-bytes *always* work in Miri | Ralf Jung | -3/+1 |
| 2022-08-27 | remove an ineffective check in const_prop | Ralf Jung | -1/+1 |
| 2022-08-26 | make read_immediate error immediately on uninit, so ImmTy can carry initializ... | Ralf Jung | -8/+4 |
| 2022-08-10 | Avoid repeating qualifiers on `static_assert_size` calls. | Nicholas Nethercote | -5/+6 |