| Age | Commit message (Expand) | Author | Lines |
| 2022-07-18 | interpret: make some large types not Copy | Ralf Jung | -16/+16 |
| 2022-07-18 | interpret: remove some unused trait impls | Ralf Jung | -4/+3 |
| 2022-07-16 | Rollup merge of #99259 - RalfJung:visit-a-place, r=oli-obk | Matthias Krüger | -3/+13 |
| 2022-07-15 | interpret/visitor: support visiting with a PlaceTy | Ralf Jung | -3/+13 |
| 2022-07-14 | rename MPlaceTy::dangling to fake_alloc_zst | Ralf Jung | -1/+3 |
| 2022-07-13 | get rid of MemPlaceMeta::Poison | Ralf Jung | -15/+6 |
| 2022-07-11 | use a loop rather than try_fold | Ralf Jung | -13/+12 |
| 2022-07-11 | interpret: refactor projection handling code | Ralf Jung | -276/+29 |
| 2022-07-06 | deduplicate some copy_op code | Ralf Jung | -76/+59 |
| 2022-07-06 | support passing unsized fn arguments | Ralf Jung | -9/+21 |
| 2022-07-06 | interpret: remove LocalValue::Unallocated, add Operand::Uninit | Ralf Jung | -81/+52 |
| 2022-07-05 | finally enable Scalar layout sanity checks | Ralf Jung | -1/+1 |
| 2022-07-05 | adjust dangling-int-ptr error message | Ralf Jung | -1/+1 |
| 2022-07-03 | interpret: track place alignment together with the type, not the value | Ralf Jung | -70/+90 |
| 2022-06-29 | interpret: add From<&MplaceTy> for PlaceTy | Ralf Jung | -1/+15 |
| 2022-06-15 | make sure miri ices when dereferencing a box | DrMeepster | -0/+5 |
| 2022-06-02 | take back half-baked noaliasing check in Assignment | Ralf Jung | -3/+1 |
| 2022-05-24 | Remove outdated comment | Oli Scherer | -4/+0 |
| 2022-05-24 | Add the transmute and asm checks to typeck as deferred checks | Oli Scherer | -4/+4 |
| 2022-05-22 | Lifetime variance fixes for rustc | Michael Goulet | -1/+1 |
| 2022-05-16 | use GlobalId in eval_to_valtree query and introduce query for valtree_to_cons... | b-naber | -7/+13 |
| 2022-05-11 | Auto merge of #96220 - RalfJung:scalar-no-padding, r=oli-obk | bors | -30/+10 |
| 2022-05-10 | update/remove some old comments | Ralf Jung | -5/+1 |
| 2022-05-10 | disable one check for now until #96185 is fixed | Ralf Jung | -1/+1 |
| 2022-05-10 | tighten sanity checks around Scalar and ScalarPair | Ralf Jung | -25/+9 |
| 2022-05-06 | Fix inaccurate function name in `rustc_const_eval` docs | pierwill | -1/+1 |
| 2022-05-05 | give it a scary name | Ralf Jung | -2/+2 |
| 2022-05-04 | interpret: debug-check ScalarPair layout information | Ralf Jung | -1/+1 |
| 2022-04-26 | account for custom DSTs in valtree -> constvalue conversion | b-naber | -0/+6 |
| 2022-04-21 | deduplicate a lot of code | b-naber | -14/+2 |
| 2022-04-21 | implement valtree -> constvalue conversion | b-naber | -3/+24 |
| 2022-04-17 | when writing uninit to an allocation, also clear relocations like other write... | Ralf Jung | -1/+1 |
| 2022-04-16 | Rollup merge of #95426 - b-naber:valtrees-slice, r=RalfJung,oli-obk | Dylan DPC | -1/+1 |
| 2022-04-12 | use len on mplace instead of reading immediate, remove dead code | b-naber | -1/+1 |
| 2022-04-11 | Add new `Deinit` statement kind | Jakob Degen | -0/+36 |
| 2022-04-08 | create leafs for slices | b-naber | -12/+0 |
| 2022-04-07 | interpret: err instead of ICE on size mismatches in to_bits_or_ptr_internal | Ralf Jung | -2/+2 |
| 2022-04-05 | Auto merge of #94527 - oli-obk:undef_scalars, r=nagisa,erikdesjardin | bors | -6/+4 |
| 2022-04-05 | Mark scalar layout unions so that backends that do not support partially init... | Oli Scherer | -6/+4 |
| 2022-04-03 | interpret: remove MemoryExtra in favor of giving access to the Machine | Ralf Jung | -12/+11 |
| 2022-03-30 | Spellchecking some comments | Yuri Astrakhan | -1/+1 |
| 2022-03-29 | include refs in valtree creation | b-naber | -0/+12 |
| 2022-02-22 | Miri: extend comments on downcast operation | Ralf Jung | -1/+3 |
| 2022-02-19 | rustc_const_eval: adopt let else in more places | est31 | -6/+5 |
| 2022-02-15 | Overhaul `TyS` and `Ty`. | Nicholas Nethercote | -1/+1 |
| 2021-12-15 | miri: lift restriction on extern types being the only field in a struct | Tomasz Miąsko | -14/+8 |
| 2021-12-13 | Remove `in_band_lifetimes` from `rustc_const_eval` | LegionMammal978 | -2/+2 |
| 2021-12-12 | doc: fix typo in comments | japm48 | -1/+1 |
| 2021-12-05 | allow for failure of subst_normalize_erasing_regions in const_eval | b-naber | -1/+1 |
| 2021-11-18 | fix CTFE/Miri simd_insert/extract on array-style repr(simd) types | Ralf Jung | -1/+27 |