| Age | Commit message (Expand) | Author | Lines |
| 2020-07-28 | Replace write-to-vec hack by introducing a display renderer for allocations | Oliver Scherer | -7/+1 |
| 2020-07-28 | Replace all uses of `log::log_enabled` with `Debug` printers | Oliver Scherer | -61/+91 |
| 2020-07-27 | Auto merge of #74775 - RalfJung:miri-alloc-ids, r=oli-obk | bors | -35/+51 |
| 2020-07-26 | typos + fmt | Ralf Jung | -9/+9 |
| 2020-07-26 | move getting the initial value of a static into helper function | Ralf Jung | -11/+18 |
| 2020-07-26 | Miri: replace canonical_alloc_id mechanism by extern_static_alloc_id which is... | Ralf Jung | -25/+34 |
| 2020-07-26 | Auto merge of #74664 - pnadon:Miri-rename-undef-uninit, r=RalfJung | bors | -9/+9 |
| 2020-07-25 | Miri: rename "undef" to "uninit" | Philippe Nadon | -9/+9 |
| 2020-07-23 | on Windows, use miri_static_root for TLS dtors | Ralf Jung | -1/+4 |
| 2020-06-12 | make miri InterpCx TyCtxtAt a TyCtxt, and separately remember the root span o... | Ralf Jung | -1/+1 |
| 2020-06-12 | make miri memory TyCtxtAt a TyCtxt | Ralf Jung | -10/+10 |
| 2020-05-30 | Make TLS accesses explicit in MIR | Oliver Scherer | -0/+2 |
| 2020-05-08 | Create a convenience wrapper for `get_global_alloc(id).unwrap()` | Oliver Scherer | -1/+1 |
| 2020-05-08 | Move `unwrap_fn` and `unwrap_memory` to `GlobalAlloc` | Oliver Scherer | -1/+1 |
| 2020-05-08 | Simplify the `tcx.alloc_map` API | Oliver Scherer | -11/+9 |
| 2020-05-01 | Move recursion check for zsts back to read site instead of access check site. | Oliver Scherer | -12/+1 |
| 2020-05-01 | rename InvalidIntPtrUsage | Ralf Jung | -1/+1 |
| 2020-04-30 | Rollup merge of #71590 - RalfJung:mir-dump-pointers, r=oli-obk | Tyler Mandry | -1/+1 |
| 2020-04-29 | expand comment in memory.rs with extra soundness concerns | Ralf Jung | -1/+3 |
| 2020-04-26 | sync alloc dump and pointer printing | Ralf Jung | -1/+1 |
| 2020-04-26 | Rollup merge of #71140 - oli-obk:static_cycle, r=RalfJung | Dylan DPC | -1/+12 |
| 2020-04-23 | Update src/librustc_mir/interpret/memory.rs | Oliver Scherer | -1/+3 |
| 2020-04-23 | Disallow statics initializing themselves | Oliver Scherer | -1/+10 |
| 2020-04-19 | Dogfood more or_patterns in the compiler | Josh Stone | -1/+1 |
| 2020-04-16 | mir/interpret: only use `ErrorHandled::Reported` for `ErrorReported`. | Eduard-Mihai Burtescu | -6/+3 |
| 2020-04-13 | Miri: let machine hook dynamically decide about alignment checks | Ralf Jung | -2/+2 |
| 2020-04-10 | added machine hooks to track deallocations | Ozaren | -0/+2 |
| 2020-04-04 | indicate better which kind of memory got leaked | Ralf Jung | -11/+15 |
| 2020-04-04 | share more alloc printing code between Miri and MIR dumping | Ralf Jung | -37/+34 |
| 2020-04-04 | avoid printing allocations twice | Ralf Jung | -8/+10 |
| 2020-04-04 | Miri leak_report: do not report leaks of allocations that are reachable from ... | Ralf Jung | -5/+24 |
| 2020-04-02 | nix rustc_target::abi::* reexport in ty::layout | Mazdak Farrokhzad | -3/+2 |
| 2020-03-30 | rustc -> rustc_middle part 3 (rustfmt) | Mazdak Farrokhzad | -1/+1 |
| 2020-03-30 | rustc -> rustc_middle part 2 | Mazdak Farrokhzad | -2/+2 |
| 2020-03-27 | Auto merge of #69916 - oli-obk:mir_bless, r=eddyb | bors | -71/+25 |
| 2020-03-26 | add 'fn write_u16s'(rustc_mir::interpret::Memory) | JOE1994 | -2/+42 |
| 2020-03-26 | Enable `--bless`ing of MIR dumps | Oliver Scherer | -71/+25 |
| 2020-03-25 | Rollup merge of #70379 - JOE1994:patch-2, r=petrochenkov | Dylan DPC | -2/+2 |
| 2020-03-25 | add usize methods for Size getters | Ralf Jung | -7/+6 |
| 2020-03-25 | go back to infix ops for Size | Ralf Jung | -7/+7 |
| 2020-03-25 | make Size::from* methods generic in the integer type they accept | Ralf Jung | -1/+1 |
| 2020-03-25 | use checked casts and arithmetic in Miri engine | Ralf Jung | -16/+14 |
| 2020-03-24 | fix type name typo in doc comments | Youngsuk Kim | -2/+2 |
| 2020-03-24 | fix const_prop ICE | Ralf Jung | -1/+4 |
| 2020-03-24 | get back the more precise error message | Ralf Jung | -1/+1 |
| 2020-03-24 | move ModifiedStatic error to ConstEval errors, and generally adjust terminolo... | Ralf Jung | -54/+56 |
| 2020-03-24 | Rollup merge of #70087 - ecstatic-morse:remove-const-eval-loop-detector, r=Ra... | Mazdak Farrokhzad | -19/+0 |
| 2020-03-17 | Use `const_eval_limit` instead of infinite loop detector | Dylan MacKenzie | -19/+0 |
| 2020-03-11 | avoid boolean inversion | Ralf Jung | -3/+3 |
| 2020-03-11 | generalize InvalidNullPointerUsage to InvalidIntPointerUsage | Ralf Jung | -1/+1 |