| Age | Commit message (Expand) | Author | Lines |
| 2019-02-24 | Rollup merge of #58511 - oli-obk:const_to_op, r=RalfJung | Mazdak Farrokhzad | -12/+11 |
| 2019-02-22 | Change byte align message wording #58617 | Patrick McCarter | -1/+1 |
| 2019-02-22 | Invalid byte alignment expected/provided in message #58617 | Patrick McCarter | -2/+4 |
| 2019-02-16 | Make validity checking use `MPlaceTy` instead of `OpTy` | Oliver Scherer | -12/+11 |
| 2019-02-10 | rustc: doc comments | Alexander Regueiro | -1/+1 |
| 2019-01-21 | fix validation range printing when encountering undef | Ralf Jung | -2/+7 |
| 2018-12-26 | Store `Ident` rather than just `Name` in HIR types `Item` and `ForeignItem`. | Alexander Regueiro | -1/+1 |
| 2018-12-25 | Remove licenses | Mark Rousskov | -10/+0 |
| 2018-12-13 | Auto merge of #56461 - oli-obk:alloc_ids, r=RalfJung | bors | -2/+2 |
| 2018-12-07 | Various minor/cosmetic improvements to code | Alexander Regueiro | -2/+2 |
| 2018-12-03 | s/AllocType/AllocKind/ | Oliver Scherer | -2/+2 |
| 2018-11-25 | accept undef in raw pointers, for consistency with integers | Ralf Jung | -6/+10 |
| 2018-11-24 | Rebase fallout | Oliver Scherer | -1/+1 |
| 2018-11-24 | Explain early abort legality | Oliver Scherer | -0/+1 |
| 2018-11-24 | Clean up array/slice of primitive validation | Oliver Scherer | -13/+10 |
| 2018-11-24 | Adjust rustc_mir::interpret to changes in `Allocation`/`Memory` methods | Oliver Scherer | -9/+19 |
| 2018-11-22 | rustc_target: avoid using AbiAndPrefAlign where possible. | Eduard-Mihai Burtescu | -3/+3 |
| 2018-11-22 | rustc_target: separate out an individual Align from AbiAndPrefAlign. | Eduard-Mihai Burtescu | -2/+2 |
| 2018-11-22 | rustc_target: rename abi::Align to AbiAndPrefAlign. | Eduard-Mihai Burtescu | -3/+3 |
| 2018-11-18 | Rollup merge of #55916 - RalfJung:mut-visitor, r=oli-obk | Pietro Albini | -2/+3 |
| 2018-11-18 | Rollup merge of #55894 - RalfJung:validation-enums, r=oli-obk | Pietro Albini | -4/+5 |
| 2018-11-15 | Rollup merge of #55901 - euclio:speling, r=petrochenkov | Pietro Albini | -1/+1 |
| 2018-11-15 | do not accept out-of-bounds pointers in enum discriminants, they might be NULL | Ralf Jung | -2/+3 |
| 2018-11-15 | validation: better error when the enum discriminant is Undef | Ralf Jung | -2/+2 |
| 2018-11-15 | miri value visitor: provide place when visiting a primitive | Ralf Jung | -2/+3 |
| 2018-11-15 | Auto merge of #55716 - RalfJung:escape-to-raw, r=oli-obk | bors | -4/+1 |
| 2018-11-13 | fix various typos in doc comments | Andy Russell | -1/+1 |
| 2018-11-12 | Deduplicate field and variant visitor methods | Oliver Scherer | -25/+22 |
| 2018-11-12 | miri-engine value visitor update to VariantIdx | Oliver Scherer | -4/+26 |
| 2018-11-08 | Fallout | Oliver Scherer | -1/+1 |
| 2018-11-07 | only count deref_operand as actual deref, but not all ref-to-place conversions | Ralf Jung | -4/+1 |
| 2018-11-07 | pretty-print scalar range that only has an upper bound | Ralf Jung | -1/+4 |
| 2018-11-07 | do not print wrapping ranges like normal ranges in diagnostics | Ralf Jung | -28/+38 |
| 2018-11-05 | make ValueVisitor mut-polymorphic | Ralf Jung | -4/+4 |
| 2018-11-05 | visit_aggregate with an iterator; fix some comment typos | Ralf Jung | -3/+6 |
| 2018-11-05 | the visitor can already load the value for visit_primitive | Ralf Jung | -10/+9 |
| 2018-11-05 | finally this actually looks like a visitor | Ralf Jung | -65/+55 |
| 2018-11-05 | use more traditional walk_array/visit_array instead of the handle_array hook | Ralf Jung | -11/+13 |
| 2018-11-05 | fix validation error on non-integer enum discriminants | Ralf Jung | -19/+8 |
| 2018-11-05 | let the Value handle enum projections, so the visitor does not have to care | Ralf Jung | -22/+17 |
| 2018-11-05 | add visit() hook to the trait | Ralf Jung | -4/+4 |
| 2018-11-05 | fix for pre-NLL rustc | Ralf Jung | -1/+1 |
| 2018-11-05 | reduce the amount of traversal/projection code that the visitor has to implem... | Ralf Jung | -131/+118 |
| 2018-11-05 | generalize the traversal part of validation to a ValueVisitor | Ralf Jung | -297/+286 |
| 2018-11-02 | Rename `Value` to `Immediate` for miri | Oliver Scherer | -3/+3 |
| 2018-10-31 | use String::from() instead of format!() macro to construct Strings. | Matthias Krüger | -1/+1 |
| 2018-10-29 | Add a comment explaining the two checks | Oliver S̶c̶h̶n̶e̶i̶d̶e̶r Scherer | -0/+1 |
| 2018-10-29 | Fix wrong validation clasisfication of `Option<&T>::Some` values | Oliver Scherer | -1/+1 |
| 2018-10-28 | validity in non-const mode relies on ref_to_mplace checking bounds; (de)refer... | Ralf Jung | -46/+60 |
| 2018-10-26 | validity: assert that unions are non-empty | Ralf Jung | -1/+5 |