| Age | Commit message (Expand) | Author | Lines |
| 2018-11-03 | Implement rotate using funnel shift on LLVM >= 7 | Nikita Popov | -0/+18 |
| 2018-11-02 | Rebase fallout | Oliver Scherer | -2/+2 |
| 2018-11-02 | Rename `Value` to `Immediate` in docs | Ralf Jung | -1/+1 |
| 2018-11-02 | Satsify tidy | Oliver S̶c̶h̶n̶e̶i̶d̶e̶r Scherer | -1/+5 |
| 2018-11-02 | Rename `Value` to `Immediate` for miri | Oliver Scherer | -171/+174 |
| 2018-11-02 | Auto merge of #55316 - RalfJung:retagging, r=oli-obk | bors | -37/+38 |
| 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 | the memory_deallocated hook can make good use of knowing the size | Ralf Jung | -1/+3 |
| 2018-10-29 | provide mutable borrows when hooking memory write access | Ralf Jung | -18/+16 |
| 2018-10-29 | Fix wrong validation clasisfication of `Option<&T>::Some` values | Oliver Scherer | -1/+1 |
| 2018-10-29 | Turn ICE for dangling pointers into error | Oliver Scherer | -0/+5 |
| 2018-10-29 | let create_ref take a mutability, and leave it to step.rs to interpret mir::B... | Ralf Jung | -10/+12 |
| 2018-10-29 | Emit Retag statements, kill Validate statements | Ralf Jung | -8/+7 |
| 2018-10-28 | don't be too perf-greedy | Ralf Jung | -1/+1 |
| 2018-10-28 | don't tag new memory inside memory.rs; add machine hook to tag new memory | Ralf Jung | -22/+33 |
| 2018-10-28 | make memory private; that's what we have `memory_mut` for | Ralf Jung | -1/+1 |
| 2018-10-28 | validity in non-const mode relies on ref_to_mplace checking bounds; (de)refer... | Ralf Jung | -96/+116 |
| 2018-10-28 | make (de)reference hooks more consistent | Ralf Jung | -17/+41 |
| 2018-10-27 | Auto merge of #54183 - qnighy:by-value-object-safety, r=oli-obk | bors | -0/+1 |
| 2018-10-26 | Auto merge of #55382 - kennytm:rollup, r=kennytm | bors | -71/+30 |
| 2018-10-26 | Rollup merge of #55379 - RalfJung:no-empty-union, r=oli-obk | kennytm | -1/+5 |
| 2018-10-26 | Rollup merge of #55302 - goffrie:impl-stable-hash, r=varkor | kennytm | -70/+25 |
| 2018-10-26 | Auto merge of #53821 - oli-obk:sanity_query, r=RalfJung | bors | -14/+35 |
| 2018-10-26 | validity: assert that unions are non-empty | Ralf Jung | -1/+5 |
| 2018-10-26 | Extend the impl_stable_hash_for! macro for miri. | Geoffry Song | -70/+25 |
| 2018-10-25 | for now, just use NULL ptr for unsized locals | Ralf Jung | -8/+12 |
| 2018-10-25 | Prepare miri for unsized locals | Oliver Schneider | -3/+10 |
| 2018-10-25 | Fix rebase fallout | Oliver Schneider | -3/+6 |
| 2018-10-25 | Forward `TooGeneric` errors | Oliver Schneider | -2/+6 |
| 2018-10-25 | Report const eval error inside the query | Oliver Schneider | -6/+9 |
| 2018-10-24 | Add InstanceDef::VtableShim. | Masaki Hara | -0/+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 |