| Age | Commit message (Expand) | Author | Lines |
| 2022-08-27 | interpret: make read-pointer-as-bytes *always* work in Miri | Ralf Jung | -91/+65 |
| 2022-08-27 | interpret: rename relocation → provenance | Ralf Jung | -91/+90 |
| 2022-08-26 | make read_immediate error immediately on uninit, so ImmTy can carry initializ... | Ralf Jung | -17/+8 |
| 2022-08-26 | remove some now-unnecessary parameters from check_bytes | Ralf Jung | -19/+4 |
| 2022-07-19 | interpret: rename Tag/PointerTag to Prov/Provenance | Ralf Jung | -40/+41 |
| 2022-07-13 | get rid of MemPlaceMeta::Poison | Ralf Jung | -0/+2 |
| 2022-07-06 | interpret: use AllocRange in UninitByteAccess | Ralf Jung | -9/+12 |
| 2022-07-05 | Rollup merge of #98811 - RalfJung:interpret-alloc-range, r=oli-obk | Dylan DPC | -1/+7 |
| 2022-07-02 | add AllocRange Debug impl; remove redundant AllocId Display impl | Ralf Jung | -1/+7 |
| 2022-06-28 | make `get_relocations` private | Rémy Rakic | -6/+11 |
| 2022-06-22 | Rollup merge of #98099 - RalfJung:convert_tag_add_extra, r=oli-obk | Yuki Okushi | -6/+6 |
| 2022-06-17 | Auto merge of #98097 - lqd:const-alloc-hash, r=oli-obk | bors | -2/+75 |
| 2022-06-16 | adjust const alloc interning partial hash comments | Rémy Rakic | -4/+8 |
| 2022-06-16 | ctfe: limit hashing of big const allocations when interning | Rémy Rakic | -2/+71 |
| 2022-06-16 | interpret: convert_tag_add_extra, init_allocation_extra: allow tagger to rais... | Ralf Jung | -6/+6 |
| 2022-06-05 | interpret: better control over whether we read data with provenance, and impl... | Ralf Jung | -28/+53 |
| 2022-05-22 | Lifetime variance fixes for rustc | Michael Goulet | -1/+1 |
| 2022-05-19 | interpret/validity: separately control checking numbers for being init and no... | Ralf Jung | -4/+7 |
| 2022-05-02 | fix most compiler/ doctests | Elliot Roberts | -5/+5 |
| 2022-04-21 | deduplicate a lot of code | b-naber | -4/+0 |
| 2022-04-21 | implement valtree -> constvalue conversion | b-naber | -0/+5 |
| 2022-04-20 | Rollup merge of #96160 - RalfJung:interpret-debug, r=oli-obk | Dylan DPC | -0/+8 |
| 2022-04-17 | explain why prepare_relocation_copy works the way it does | Ralf Jung | -4/+11 |
| 2022-04-17 | add caution to some comments | Ralf Jung | -1/+7 |
| 2022-04-17 | when writing uninit to an allocation, also clear relocations like other write... | Ralf Jung | -3/+9 |
| 2022-04-17 | add log warnings for when we overwrite parts of a pointer, and de-init the rest | Ralf Jung | -0/+8 |
| 2022-04-09 | Rollup merge of #95785 - RalfJung:interpret-size-mismatch, r=oli-obk | Dylan DPC | -3/+14 |
| 2022-04-07 | interpret: err instead of ICE on size mismatches in to_bits_or_ptr_internal | Ralf Jung | -3/+14 |
| 2022-04-05 | trivial cfg(bootstrap) changes | Pietro Albini | -1/+1 |
| 2022-03-30 | Rollup merge of #95461 - nyurik:spelling, r=lcnr | Dylan DPC | -1/+1 |
| 2022-03-30 | Spellchecking compiler code | Yuri Astrakhan | -1/+1 |
| 2022-03-30 | Spellchecking some comments | Yuri Astrakhan | -1/+1 |
| 2022-03-07 | Introduce `ConstAllocation`. | Nicholas Nethercote | -0/+30 |
| 2022-02-19 | switch to limiting the number of init/uninit chunks | Erik Desjardins | -0/+1 |
| 2021-10-16 | clippy::complexity changes | Matthias Krüger | -3/+3 |
| 2021-08-25 | use a peekable iterator to check the first chunk | Erik Desjardins | -3/+14 |
| 2021-08-25 | yet more comment improvements | Erik Desjardins | -2/+7 |
| 2021-08-25 | improve comments | Erik Desjardins | -9/+14 |
| 2021-08-25 | put code in a more logical order | Erik Desjardins | -345/+350 |
| 2021-08-25 | add comments | Erik Desjardins | -19/+119 |
| 2021-08-25 | implement InitMaskCompressed using InitChunkIter, cleanup | Erik Desjardins | -23/+33 |
| 2021-08-25 | optimize initialization checks | Erik Desjardins | -9/+102 |
| 2021-08-25 | use undef for uninitialized bytes in constants | Erik Desjardins | -5/+52 |
| 2021-08-05 | replace Vec<u8> with Box<[u8]> | The8472 | -5/+4 |
| 2021-08-05 | use box->vec conversion API that doesn't reallocate | The8472 | -1/+1 |
| 2021-08-05 | use zeroed allocation instead of eagerly initializing the memory | The8472 | -3/+4 |
| 2021-07-31 | CTFE: throw unsupported error when partially overwriting a pointer | Ralf Jung | -21/+43 |
| 2021-07-16 | add some comments regarding the two major quirks of our memory model | Ralf Jung | -1/+8 |
| 2021-07-16 | get rid of incorrect erase_for_fmt | Ralf Jung | -1/+3 |
| 2021-07-15 | enable Miri to fix the bytes in an allocation (since ptr offsets have differe... | Ralf Jung | -16/+24 |