| Age | Commit message (Expand) | Author | Lines |
| 2020-04-09 | Make `MaybeStorageLive` correct for all kinds of MIR bodies | Dylan MacKenzie | -5/+17 |
| 2020-04-02 | nix rustc_target::abi::* reexport in ty::layout | Mazdak Farrokhzad | -1/+1 |
| 2020-03-31 | Use Place directly on Operand::place and friends, it's Copy | Santiago Pastorino | -10/+10 |
| 2020-03-31 | Use Place directly, it's Copy even more use cases | Santiago Pastorino | -9/+9 |
| 2020-03-31 | Use Place directly, it's Copy | Santiago Pastorino | -6/+6 |
| 2020-03-30 | Use if let instead of match when only matching a single variant (clippy::sing... | Matthias Krüger | -12/+9 |
| 2020-03-30 | rustc -> rustc_middle part 3 (rustfmt) | Mazdak Farrokhzad | -2/+2 |
| 2020-03-30 | rustc -> rustc_middle part 2 | Mazdak Farrokhzad | -11/+11 |
| 2020-03-29 | Use `&` to do deref coercion for `ReadOnlyBodyAndCache` | Dylan MacKenzie | -2/+2 |
| 2020-03-29 | Make `Visitor::visit_body` take a simple `Body` | Dylan MacKenzie | -1/+1 |
| 2020-03-27 | Auto merge of #68404 - Amanieu:llvm-asm, r=estebank | bors | -2/+2 |
| 2020-03-26 | Update imports from `dataflow::generic` to `dataflow` | Dylan MacKenzie | -7/+6 |
| 2020-03-26 | Rename asm! to llvm_asm! | Amanieu d'Antras | -2/+2 |
| 2020-03-06 | Model generator resumption in dataflow | Jonas Schievink | -2/+16 |
| 2020-03-01 | Auto merge of #69295 - ecstatic-morse:unified-dataflow-generators, r=tmandry | bors | -88/+105 |
| 2020-02-29 | use .iter() instead of .into_iter() on references. | Matthias Krüger | -1/+1 |
| 2020-02-27 | Rename `RequiresStorage` to `MaybeRequiresStorage` | Dylan MacKenzie | -7/+7 |
| 2020-02-27 | Port `RequiresStorage` to new dataflow framework | Dylan MacKenzie | -51/+70 |
| 2020-02-27 | Port `MaybeStorageLive` to new dataflow framework | Dylan MacKenzie | -33/+31 |
| 2020-02-27 | Auto merge of #68528 - ecstatic-morse:maybe-init-variants, r=oli-obk | bors | -2/+35 |
| 2020-02-19 | Handle resume args in `RequiresStorage` analysis | Jonas Schievink | -11/+46 |
| 2020-02-19 | Use match ergonomics to simplify match | Jonas Schievink | -5/+5 |
| 2020-02-19 | Match MIR statements exhaustively | Jonas Schievink | -1/+8 |
| 2020-02-17 | Fix typo in comment | Dylan MacKenzie | -1/+1 |
| 2020-02-17 | Use doc comment for explanation of `shared_borrow_allows_mutation` | Dylan MacKenzie | -9/+9 |
| 2020-02-13 | Kill move paths of dead variants | Dylan MacKenzie | -2/+35 |
| 2020-02-13 | Ignore mut borrow from drop terminator in const-eval | Dylan MacKenzie | -12/+33 |
| 2020-02-13 | Rename `MaybeBorrowedLocals` constructors | Dylan MacKenzie | -2/+5 |
| 2020-02-12 | Use `MaybeBorrowedLocals` for generator analyses | Dylan MacKenzie | -26/+20 |
| 2020-02-12 | Remove outdated `IndirectlyMutableLocals` | Dylan MacKenzie | -138/+0 |
| 2020-02-12 | Implement `Maybe{Mut,}BorrowedLocals` analyses | Dylan MacKenzie | -60/+208 |
| 2020-02-11 | Use new dataflow framework for drop elaboration and borrow checking | Dylan MacKenzie | -7/+1 |
| 2020-02-10 | Use new dataflow interface for initialization/borrows analyses | Dylan MacKenzie | -108/+195 |
| 2020-02-02 | Add a resume type parameter to `Generator` | Jonas Schievink | -8/+12 |
| 2020-01-10 | Remove PlaceBase enum and make Place base field be local: Local | Santiago Pastorino | -56/+37 |
| 2020-01-10 | Remove Static from PlaceBase | Santiago Pastorino | -36/+38 |
| 2020-01-10 | Remove unused param_env parameter | Santiago Pastorino | -5/+1 |
| 2020-01-06 | Improve hygiene of `newtype_index` | Matthew Jasper | -1/+1 |
| 2020-01-01 | Rename `syntax_pos` to `rustc_span` in source code | Vadim Petrochenkov | -1/+1 |
| 2019-12-22 | Format the world | Mark Rousskov | -275/+232 |
| 2019-12-11 | more private | Mark Mansi | -8/+4 |
| 2019-12-11 | fix imports | Mark Mansi | -6/+8 |
| 2019-12-05 | rustc: Apply clearer naming to BodyAndCache, fix Deref impl, remove unneeded ... | Paul Daniel Faria | -3/+3 |
| 2019-12-02 | Remove HasLocalDecls impl from BodyCache's, properly reborrow to Body, rename... | Paul Daniel Faria | -17/+17 |
| 2019-12-02 | Fix tidy errors | Paul Daniel Faria | -1/+3 |
| 2019-12-02 | Simplify BodyCache impl and fix all remaining type errors in librustc_mir (li... | Paul Daniel Faria | -4/+4 |
| 2019-12-02 | Add predecessors fn to ReadOnlyBodyCache, fix more Body -> (ReadOnly)BodyCach... | Paul Daniel Faria | -11/+11 |
| 2019-12-02 | Stop invalidating predecessors cache when accessing unique basic block, inval... | Paul Daniel Faria | -1/+1 |
| 2019-11-21 | Track pointers to statics in MIR | Matthew Jasper | -1/+3 |
| 2019-10-22 | Pattern match over PlaceRef rather than Place | Santiago Pastorino | -2/+4 |