| Age | Commit message (Expand) | Author | Lines |
| 2019-04-02 | renames EvalErrorKind to InterpError | kenta7777 | -2/+2 |
| 2019-03-27 | renames EvalContext to InterpretCx in docs and comments. | kenta7777 | -1/+1 |
| 2019-03-13 | Use derive macro for HashStable | John Kåre Alsaker | -2/+3 |
| 2019-02-12 | Auto merge of #58341 - alexreg:cosmetic-2-doc-comments, r=steveklabnik | bors | -7/+7 |
| 2019-02-10 | rustc: doc comments | Alexander Regueiro | -7/+7 |
| 2019-02-09 | miri: give non-generic functions a stable address | Ralf Jung | -8/+23 |
| 2019-02-05 | move librustc to 2018 | Mark Mansi | -8/+8 |
| 2018-12-29 | Remove unused types from rustc::mir::interpret | Matthew Jasper | -22/+0 |
| 2018-12-25 | Remove licenses | Mark Rousskov | -10/+0 |
| 2018-12-04 | No need to export functions only used in the same module | Oliver Scherer | -1/+1 |
| 2018-12-04 | Mention `alloc` in the name of the interning methods | Oliver Scherer | -6/+6 |
| 2018-12-04 | s/id_to_type/id_to_kind/ | Oliver Scherer | -7/+7 |
| 2018-12-04 | Clear up comment | Oliver Scherer | -1/+3 |
| 2018-12-04 | s/alloc_type/alloc_kind/ | Oliver Scherer | -7/+7 |
| 2018-12-03 | s/AllocType/AllocKind/ | Oliver Scherer | -14/+14 |
| 2018-12-03 | s/AllocKind/AllocDiscriminant/ | Oliver Scherer | -11/+11 |
| 2018-12-03 | Document `AllocMap` | Oliver Scherer | -2/+20 |
| 2018-12-03 | Function pointers are only equal to themselves, not to other function pointer... | Oliver Scherer | -5/+8 |
| 2018-12-03 | Monomorphize `AllocType` | Oliver Scherer | -7/+7 |
| 2018-12-03 | Monomorphize `AllocMap` struct | Oliver Scherer | -11/+10 |
| 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 |