| Age | Commit message (Expand) | Author | Lines |
| 2020-04-07 | Rollup merge of #70762 - RalfJung:miri-leak-check, r=oli-obk | Dylan DPC | -50/+72 |
| 2020-04-05 | make set_span public, as all the fields it touches are public already | Ralf Jung | -1/+1 |
| 2020-04-05 | set span more accurately during const_prop | Ralf Jung | -5/+9 |
| 2020-04-05 | Miri engine: use span_bug in a few places | Ralf Jung | -20/+32 |
| 2020-04-05 | Miri terminator handling: only do progress sanity check for 'Call' terminator | Ralf Jung | -5/+5 |
| 2020-04-05 | Rollup merge of #70806 - RalfJung:miri-assignment-check, r=eddyb | Dylan DPC | -19/+39 |
| 2020-04-05 | fix comment | Ralf Jung | -3/+3 |
| 2020-04-05 | miri assignment check: compare types after normalizing all late-bound regions... | Ralf Jung | -19/+39 |
| 2020-04-04 | Miri: remove an outdated FIXME | Ralf Jung | -1/+0 |
| 2020-04-04 | indicate better which kind of memory got leaked | Ralf Jung | -12/+16 |
| 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 | -9/+11 |
| 2020-04-04 | Miri leak_report: do not report leaks of allocations that are reachable from ... | Ralf Jung | -5/+24 |
| 2020-04-02 | switch assignment check back to testing layout equality | Ralf Jung | -18/+23 |
| 2020-04-02 | also use mir_assign_valid_types in from_known_layout check | Ralf Jung | -63/+58 |
| 2020-04-02 | also accept fn-ptr-type-changing assignments | Ralf Jung | -2/+7 |
| 2020-04-02 | Miri engine: stronger type-based sanity check for assignments | Ralf Jung | -5/+17 |
| 2020-04-02 | direct imports for langitem stuff | Mazdak Farrokhzad | -1/+1 |
| 2020-04-02 | nix rustc_target::abi::* reexport in ty::layout | Mazdak Farrokhzad | -71/+64 |
| 2020-04-01 | Rollup merge of #70616 - anyska:fieldplacement-rename, r=oli-obk | Dylan DPC | -7/+7 |
| 2020-04-01 | Rollup merge of #70590 - RalfJung:miri-backtrace, r=oli-obk | Dylan DPC | -62/+30 |
| 2020-03-31 | Use Place directly, it's Copy even more use cases | Santiago Pastorino | -22/+22 |
| 2020-03-31 | avoid an unreachable fallback | Ralf Jung | -11/+11 |
| 2020-03-31 | rustc_target::abi: rename FieldPlacement to FieldsShape. | Ana-Maria Mihalache | -7/+7 |
| 2020-03-31 | more clippy fixes | Matthias Krüger | -1/+1 |
| 2020-03-30 | remove a dead parameter that everyone sets to None | Ralf Jung | -3/+3 |
| 2020-03-30 | stop unnecessarily passing around span argument for Miri function calls | Ralf Jung | -33/+21 |
| 2020-03-30 | remove caller span from Miri stack frame | Ralf Jung | -10/+2 |
| 2020-03-30 | Miri stacktrace: record span inside frame, not call-site span | Ralf Jung | -16/+4 |
| 2020-03-30 | Use if let instead of match when only matching a single variant (clippy::sing... | Matthias Krüger | -9/+5 |
| 2020-03-30 | rustc -> rustc_middle part 3 (rustfmt) | Mazdak Farrokhzad | -10/+9 |
| 2020-03-30 | rustc -> rustc_middle part 2 | Mazdak Farrokhzad | -82/+81 |
| 2020-03-30 | rustc -> rustc_middle part 1 | Mazdak Farrokhzad | -1/+1 |
| 2020-03-29 | Rollup merge of #69702 - anyska:tylayout-rename, r=oli-obk | Dylan DPC | -50/+50 |
| 2020-03-29 | Rollup merge of #70508 - RalfJung:scalar-from, r=eddyb | Dylan DPC | -19/+15 |
| 2020-03-28 | refmt | Ralf Jung | -4/+1 |
| 2020-03-28 | get rid of useless back-and-forth cast | Ralf Jung | -3/+2 |
| 2020-03-28 | use more specialized Scalar::from_ constructors where appropriate | Ralf Jung | -13/+13 |
| 2020-03-28 | rename Scalar::{ptr_null -> null_ptr} | Ralf Jung | -1/+1 |
| 2020-03-27 | Rename TyLayout to TyAndLayout. | Ana-Maria Mihalache | -50/+50 |
| 2020-03-27 | Auto merge of #69916 - oli-obk:mir_bless, r=eddyb | bors | -71/+25 |
| 2020-03-27 | Auto merge of #68404 - Amanieu:llvm-asm, r=estebank | bors | -1/+1 |
| 2020-03-26 | Rollup merge of #70437 - RalfJung:miri-saturate, r=hanna-kruppe | Dylan DPC | -0/+4 |
| 2020-03-26 | Rollup merge of #70397 - JOE1994:write_wide_str, r=RalfJung | Dylan DPC | -2/+42 |
| 2020-03-26 | Miri float->int casts: be explicit that this is saturating | Ralf Jung | -0/+4 |
| 2020-03-26 | Rename asm! to llvm_asm! | Amanieu d'Antras | -1/+1 |
| 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-26 | Rollup merge of #70385 - RalfJung:miri-nits, r=eddyb | Mazdak Farrokhzad | -1/+1 |
| 2020-03-25 | Rollup merge of #69700 - anyska:layout-details-rename, r=oli-obk | Dylan DPC | -3/+3 |