| Age | Commit message (Expand) | Author | Lines |
| 2018-01-14 | Make dump_mir_dir non-optional | varkor | -9/+2 |
| 2018-01-10 | Modify message to match label | Esteban Küber | -3/+8 |
| 2017-12-20 | feature nll implies borrowck=mir | Santiago Pastorino | -1/+1 |
| 2017-12-20 | Move categorize logic out of visit_local function | Niko Matsakis | -58/+80 |
| 2017-12-20 | Move MirVisitable to visit.rs | Santiago Pastorino | -24/+1 |
| 2017-12-20 | integrate -Znll-dump-cause into borrowck | Niko Matsakis | -2/+2 |
| 2017-12-20 | Rollup merge of #46852 - scottmcm:asm-placecontext, r=arielb1 | kennytm | -0/+3 |
| 2017-12-19 | Split PlaceContext::Store into Store & AsmOutput | Scott McMurray | -0/+3 |
| 2017-12-15 | move `LivenessResults` from `nll` into `liveness` analysis | Niko Matsakis | -0/+33 |
| 2017-12-07 | fix filter to support `&` and `|` | Niko Matsakis | -6/+19 |
| 2017-12-07 | extend MIR dump with detailed, extra information | Niko Matsakis | -21/+96 |
| 2017-12-04 | MIR dump: restructure pretty to be more extensible by other code | Niko Matsakis | -132/+241 |
| 2017-12-02 | create a drop ladder for an array if any value is moved out | Mikhail Modin | -7/+27 |
| 2017-12-01 | MIR: s/lv(al(ue)?)?/place in function/variable/module names. | Eduard-Mihai Burtescu | -67/+67 |
| 2017-12-01 | MIR: s/Lvalue/Place in type names. | Eduard-Mihai Burtescu | -59/+59 |
| 2017-11-28 | MIR: split Operand::Consume into Copy and Move. | Eduard-Mihai Burtescu | -16/+18 |
| 2017-11-27 | Auto merge of #44884 - arielb1:pack-safe, r=nikomatsakis,eddyb | bors | -0/+76 |
| 2017-11-26 | Replace -Zborrowck-mir with -Zborrowck=mode | est31 | -49/+105 |
| 2017-11-26 | fix codegen of drops of fields of packed structs | Ariel Ben-Yehuda | -0/+76 |
| 2017-11-19 | Auto merge of #45225 - eddyb:trans-abi, r=arielb1 | bors | -1/+1 |
| 2017-11-18 | rustc_mir: always downcast enums, even if univariant. | Eduard-Mihai Burtescu | -1/+1 |
| 2017-11-18 | Remove return_ty from Mir | loomaclin | -3/+3 |
| 2017-11-16 | MIR-dump: print return type from local_decls for `_0` | Niko Matsakis | -1/+1 |
| 2017-11-14 | rustc: split off BodyOwnerKind from MirSource. | Eduard-Mihai Burtescu | -39/+39 |
| 2017-11-14 | rustc: remove unused MirSource::GeneratorDrop. | Eduard-Mihai Burtescu | -3/+1 |
| 2017-11-14 | rustc_mir: drive passes directly with a macro. | Eduard-Mihai Burtescu | -4/+3 |
| 2017-11-14 | rustc: move the MIR pass infrastructure and list to rustc_mir. | Eduard-Mihai Burtescu | -1/+2 |
| 2017-11-10 | Separately eliminate self-assignments | sinkuu | -1/+21 |
| 2017-11-09 | change separator from `.` to `-` | Mikhail Modin | -2/+3 |
| 2017-11-09 | change MIR dump filenames from `nodeN` to `DefPath` | Mikhail Modin | -2/+5 |
| 2017-11-02 | Make the difference between lint codes and error codes explicit | Oliver Schneider | -3/+3 |
| 2017-10-31 | rewrite `write_mir_fn_graphviz` to cope with non-global tcx | Niko Matsakis | -13/+13 |
| 2017-10-31 | reorder 'gcx and 'tcx in `BorrowckErrors` impl | Niko Matsakis | -1/+1 |
| 2017-10-31 | make end-point optional in the borrow check | Niko Matsakis | -13/+25 |
| 2017-10-31 | extend liveness to distinguish "drop" and "non-drop" uses | Niko Matsakis | -81/+139 |
| 2017-10-31 | reorder liveness to bring the more significant code up top | Niko Matsakis | -107/+107 |
| 2017-10-31 | avoid unnecessary copies in liveness computation | Niko Matsakis | -24/+17 |
| 2017-10-31 | extend liveness to compute intrablock liveness and add unit tests | Niko Matsakis | -0/+84 |
| 2017-10-31 | introduce `apply` helper that applies a DefUse set to live bits | Niko Matsakis | -2/+7 |
| 2017-10-31 | extend `dump_mir` to work for any tcx, not just global tcx | Niko Matsakis | -34/+34 |
| 2017-10-31 | rename `BlockInfo` and `BlockInfoVisitor` to `DefsUses` | Niko Matsakis | -14/+6 |
| 2017-10-31 | factor out `pre_defs` field by going backwards | Niko Matsakis | -12/+52 |
| 2017-10-30 | Auto merge of #45497 - mikhail-m1:dump-mir-graphviz, r=nikomatsakis | bors | -17/+35 |
| 2017-10-26 | add graphvis DOT files to dump mir directory | Mikhail Modin | -17/+35 |
| 2017-10-25 | Reword to avoid using either re-assignment or reassignment in errors | Carol (Nichols || Goulding) | -1/+1 |
| 2017-10-14 | Auto merge of #45167 - pnkfelix:migrate-remaining-ast-diagnostics, r=arielb1 | bors | -0/+133 |
| 2017-10-13 | Auto merge of #45013 - chrisvittal:mir_pretty_printing_pr, r=nikomatsakis | bors | -35/+67 |
| 2017-10-10 | Add `Origin::Ast` arguments to all of the migrated AST-borrowck diagnostics. | Felix S. Klock II | -25/+40 |
| 2017-10-10 | Fixed client code for diagnostics migration, adding new methods to `trait Bor... | Felix S. Klock II | -0/+118 |
| 2017-10-08 | Auto merge of #45016 - pnkfelix:mir-borrowck-gather-and-signal-move-errors, r... | bors | -0/+46 |