| Age | Commit message (Expand) | Author | Lines |
| 2018-11-19 | Make const_eval_raw query return just an AllocId | Ralf Jung | -2/+2 |
| 2018-11-15 | do not accept out-of-bounds pointers in enum discriminants, they might be NULL | Ralf Jung | -1/+1 |
| 2018-11-08 | Move `Pointer` to its own module | Oliver Scherer | -147/+4 |
| 2018-11-08 | Move ScalarMaybeUndef into `value.rs` | Oliver Scherer | -129/+1 |
| 2018-11-08 | Move UndefMask and Relocations into `allocation.rs` | Oliver Scherer | -133/+4 |
| 2018-11-08 | Move the `memory_accessed` hook onto the `Extra` value | Oliver Scherer | -1/+1 |
| 2018-11-08 | Move `ScalarMaybeUndef` back to rustc | Oliver Scherer | -0/+128 |
| 2018-11-08 | Move `Allocation` into its own module | Oliver Scherer | -58/+4 |
| 2018-11-05 | proide ptr_wrapping_offset on Scalars | Ralf Jung | -36/+43 |
| 2018-11-04 | rustc_target: pass contexts by reference, not value. | Eduard-Mihai Burtescu | -12/+12 |
| 2018-10-30 | Use vec![x; n] instead of iter::repeat(x).take(n).collect() | ljedrz | -4/+2 |
| 2018-10-26 | Auto merge of #53821 - oli-obk:sanity_query, r=RalfJung | bors | -6/+6 |
| 2018-10-25 | for now, just use NULL ptr for unsized locals | Ralf Jung | -5/+5 |
| 2018-10-25 | Report const eval error inside the query | Oliver Schneider | -1/+1 |
| 2018-10-23 | fix typos in various places | Matthias Krüger | -1/+1 |
| 2018-10-21 | Auto merge of #55125 - RalfJung:stacked-borrows, r=oli-obk | bors | -2/+6 |
| 2018-10-19 | Prefer `Default::default` over `FxHash*::default` in struct constructors | Oliver Scherer | -2/+2 |
| 2018-10-19 | Deprecate the `FxHashMap()` and `FxHashSet()` constructor function hack | Oliver Scherer | -2/+2 |
| 2018-10-18 | add support for storing extra data in an allocation | Ralf Jung | -2/+6 |
| 2018-10-10 | miri engine: basic support for pointer provenance tracking | Ralf Jung | -18/+46 |
| 2018-10-01 | Auto merge of #54693 - RalfJung:ctfe-scalar-pair-undef, r=oli-obk | bors | -1/+1 |
| 2018-09-30 | move ScalarMaybeUndef into the miri engine | Ralf Jung | -1/+1 |
| 2018-09-29 | don't elide lifetimes in paths in librustc/ | Zack M. Davis | -2/+2 |
| 2018-09-08 | Auto merge of #53903 - GabrielMajeri:opt-miri-array-slice, r=oli-obk | bors | -7/+14 |
| 2018-09-08 | Optimize miri checking of integer array/slices | Gabriel Majeri | -7/+14 |
| 2018-09-03 | Document snapshot.rs | Bruno Dutra | -0/+5 |
| 2018-09-03 | Make vaious allocation related types generic on the allocation id | Bruno Dutra | -6/+6 |
| 2018-08-29 | audit the relocations code, and clean it up a little | Ralf Jung | -1/+3 |
| 2018-08-29 | move some Scalar helpers from miri here, and use them where appropriate | Ralf Jung | -1/+6 |
| 2018-08-27 | Miri Memory Work | Ralf Jung | -7/+9 |
| 2018-08-23 | Reflow and fixup comments | Bernardo Meurer | -1/+2 |
| 2018-08-23 | Add license header to CTFE/MIRI | Bernardo Meurer | -0/+10 |
| 2018-08-22 | finally remove all traces of signs from memory | Ralf Jung | -12/+20 |
| 2018-08-22 | miri/CTFE refactor | Ralf Jung | -3/+3 |
| 2018-08-01 | Reintroduce `Undef` and properly check constant value sizes | Oliver Schneider | -1/+1 |
| 2018-07-04 | Derive Eq and Hash for types used in Miri's evaluator | Dylan MacKenzie | -1/+1 |
| 2018-07-01 | Auto merge of #51833 - wesleywiser:faster_large_constant_arrays, r=oli-obk | bors | -0/+3 |
| 2018-06-29 | Inline a few `UndefMask` methods. | Wesley Wiser | -0/+3 |
| 2018-06-28 | Merge `ConstVal` and `ConstValue` | Oliver Schneider | -1/+1 |
| 2018-06-28 | Move everything over from `middle::const_val` to `mir::interpret` | Oliver Schneider | -1/+4 |
| 2018-06-01 | Remove outdated AllocId decoding function. | Michael Woerister | -42/+1 |
| 2018-06-01 | Make const decoding from the incremental cache thread-safe. | Michael Woerister | -0/+169 |
| 2018-05-24 | Replace `ScalarKind` with `Primitive` | Oliver Schneider | -1/+1 |
| 2018-05-24 | Remove Pointer::zero in favor of Pointer::from | Oliver Schneider | -4/+7 |
| 2018-05-24 | Rename MemoryPointer to Pointer | Oliver Schneider | -9/+9 |
| 2018-05-24 | Eliminate the `Pointer` wrapper type | Oliver Schneider | -1/+1 |
| 2018-05-24 | Rename PrimVal to Scalar | Oliver Schneider | -1/+1 |
| 2018-05-24 | Add constant for `Size::from_bytes(0)` | Oliver Schneider | -2/+6 |
| 2018-05-24 | implement Ord for OutlivesPredicate and other types | toidiu | -4/+4 |
| 2018-05-22 | Use SortedMap instead of BTreeMap for relocations in MIRI. | Michael Woerister | -4/+34 |