| Age | Commit message (Expand) | Author | Lines |
| 2019-06-23 | clean up internals of pointer checks; make get_size_and_align also check for ... | Ralf Jung | -4/+1 |
| 2019-06-23 | move CheckInAllocMsg to more logical place | Ralf Jung | -2/+2 |
| 2019-06-14 | Unify all uses of 'gcx and 'tcx. | Eduard-Mihai Burtescu | -1/+1 |
| 2019-06-12 | Run `rustfmt --file-lines ...` for changes from previous commits. | Eduard-Mihai Burtescu | -5/+3 |
| 2019-06-12 | rustc: remove some unnecessary lifetimes in -> TyCtxt methods. | Eduard-Mihai Burtescu | -1/+1 |
| 2019-06-12 | rustc: replace `TyCtxt<'tcx, 'gcx, 'tcx>` with `TyCtxt<'gcx, 'tcx>`. | Eduard-Mihai Burtescu | -1/+1 |
| 2019-06-12 | Fix fallout from `deny(unused_lifetimes)`. | Eduard-Mihai Burtescu | -5/+2 |
| 2019-06-12 | rustc: replace `TyCtxt<'a, 'gcx, 'tcx>` with `TyCtxt<'tcx, 'gcx, 'tcx>`. | Eduard-Mihai Burtescu | -3/+2 |
| 2019-06-08 | rename EvalResult -> InterpResult and EvalError -> InterpErrorInfo | Ralf Jung | -1/+1 |
| 2019-05-30 | light refactoring of global AllocMap | Ralf Jung | -41/+54 |
| 2019-05-29 | Rollup merge of #60928 - TheSirC:fix/60229, r=eddyb | Mazdak Farrokhzad | -1/+1 |
| 2019-05-29 | rustc: rename Mir to mir::Body in comments and to MIR in error strings. | Eduard-Mihai Burtescu | -1/+1 |
| 2019-05-28 | Rollup merge of #61164 - RalfJung:scalar, r=oli-obk | Mazdak Farrokhzad | -0/+16 |
| 2019-05-27 | fix truncate and sign_extend for size == 0 | Ralf Jung | -0/+16 |
| 2019-04-02 | Merge branch 'master' into issue_57128_improve_miri_error_reporting_in_check_... | Loo Maclin | -2/+2 |
| 2019-04-02 | Improve miri's error reporting in check_in_alloc | LooMaclin | -1/+1 |
| 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 |