| Age | Commit message (Expand) | Author | Lines |
| 2018-11-01 | Fix wrong validation clasisfication of `Option<&T>::Some` values | Oliver Scherer | -1/+1 |
| 2018-10-23 | fix typos in various places | Matthias Krüger | -8/+8 |
| 2018-10-21 | Address review comments | bjorn3 | -0/+3 |
| 2018-10-21 | Rename read_local_of_frame to access_local | bjorn3 | -2/+2 |
| 2018-10-21 | Rename alloc_map_ref to alloc_map | bjorn3 | -1/+1 |
| 2018-10-21 | Add alloc_map accessor | bjorn3 | -0/+5 |
| 2018-10-21 | Use `read_local_of_frame` in `eval_place_to_op` | bjorn3 | -31/+23 |
| 2018-10-21 | Fix errors | bjorn3 | -4/+6 |
| 2018-10-21 | Add method to get OpTy for local from arbitrary frame | bjorn3 | -1/+11 |
| 2018-10-21 | Make OpTy field op public for priroda | bjorn3 | -1/+1 |
| 2018-10-21 | Auto merge of #55125 - RalfJung:stacked-borrows, r=oli-obk | bors | -132/+266 |
| 2018-10-20 | Auto merge of #55014 - ljedrz:lazyboye_unwraps, r=matthewjasper | bors | -2/+2 |
| 2018-10-19 | Deprecate the `FxHashMap()` and `FxHashSet()` constructor function hack | Oliver Scherer | -1/+1 |
| 2018-10-19 | Prefer unwrap_or_else to unwrap_or in case of function calls/allocations | ljedrz | -2/+2 |
| 2018-10-18 | turn casts-to-raw into a proper raw-reborrow; that is just cleaner | Ralf Jung | -14/+12 |
| 2018-10-18 | don't do any work towards ptr provenance in const mode | Ralf Jung | -5/+12 |
| 2018-10-18 | the tidy strikes again | Ralf Jung | -2/+2 |
| 2018-10-18 | add 'raw reference' to the machine hook, and use that in ptr-to-raw casts | Ralf Jung | -9/+23 |
| 2018-10-18 | miri: debug! print when we are leaving/entering a function | Ralf Jung | -0/+14 |
| 2018-10-18 | Forward entire ptr used for dealloaction to machine | Ralf Jung | -6/+6 |
| 2018-10-18 | repeat after me: Clone, Copy, Debug | Ralf Jung | -0/+1 |
| 2018-10-18 | also hook dereferencing | Ralf Jung | -10/+32 |
| 2018-10-18 | eval_context: move getters together and add one for is_freeze | Ralf Jung | -48/+55 |
| 2018-10-18 | provide machine hooks for creating references and accessing memory | Ralf Jung | -31/+93 |
| 2018-10-18 | give machine more control over what counts as memory leak | Ralf Jung | -10/+20 |
| 2018-10-18 | add support for storing extra data in an allocation | Ralf Jung | -31/+26 |
| 2018-10-18 | comment on keeping validity in sync | Ralf Jung | -0/+4 |
| 2018-10-18 | Rollup merge of #55142 - RalfJung:miri-uninhabited-enum, r=oli-obk | kennytm | -3/+0 |
| 2018-10-18 | Rollup merge of #55016 - oli-obk:vtables💥_vtables_everywhere, r=RalfJung | kennytm | -11/+24 |
| 2018-10-17 | layout should not affect CTFE checks (outside of validation) | Ralf Jung | -3/+0 |
| 2018-10-16 | Use forward compatible `FxHashMap` initialization | Oliver Scherer | -1/+1 |
| 2018-10-15 | Add comments to remind everyone to keep the `get_vtable` impls in sync | Oliver Scherer | -0/+4 |
| 2018-10-15 | Synchronize get_vtable with the `codegen_llvm` one | Oliver Scherer | -13/+14 |
| 2018-10-15 | Deduplicate vtables within a single evaluation | Oliver Scherer | -1/+9 |
| 2018-10-15 | Rollup merge of #55062 - bjorn3:ecx-step-public, r=oli-obk | Manish Goregaokar | -1/+3 |
| 2018-10-14 | Auto merge of #55032 - oli-obk:the_early_unwrap_gets_the_panic, r=Mark-Simula... | bors | -1/+1 |
| 2018-10-14 | Add comment about step being used by priroda | bjorn3 | -0/+2 |
| 2018-10-14 | Make EvalContext::step public again | bjorn3 | -1/+1 |
| 2018-10-13 | Check the invariant for `principal` inside the method | Oliver Scherer | -1/+1 |
| 2018-10-13 | run-time validation: accept undef in int arrays, as we do for ints | Ralf Jung | -5/+10 |
| 2018-10-13 | address nits | Ralf Jung | -1/+2 |
| 2018-10-13 | validation: accept pointers in integer arrays | Ralf Jung | -5/+34 |
| 2018-10-13 | Fix and test upvar name printing for validity | Ralf Jung | -10/+6 |
| 2018-10-13 | make ENFORCE_VALIDITY a function | Ralf Jung | -5/+5 |
| 2018-10-13 | foreign types: use size and align from layout | Ralf Jung | -2/+3 |
| 2018-10-13 | seems like for generators we cannot access the freevars | Ralf Jung | -5/+9 |
| 2018-10-13 | size_and_align_of can return no result for extern types | Ralf Jung | -23/+26 |
| 2018-10-13 | validate return value on stack pop | Ralf Jung | -31/+54 |
| 2018-10-13 | check return type even for uninhabited case | Ralf Jung | -5/+6 |
| 2018-10-13 | fix validation around transmuting copy_op | Ralf Jung | -33/+136 |