| Age | Commit message (Expand) | Author | Lines |
| 2019-12-02 | Simplify Cache wrapper to single type, impl Deref on it, fix all compilation ... | Paul Daniel Faria | -4/+0 |
| 2019-12-02 | Move predecessors cache invalidation back to basic_blocks_mut, add a couple m... | Paul Daniel Faria | -6/+10 |
| 2019-12-02 | Stop invalidating predecessors cache when accessing unique basic block, inval... | Paul Daniel Faria | -6/+6 |
| 2019-11-28 | Fail fast if generator_kind is None | David Haig | -8/+9 |
| 2019-11-28 | Fixed tidy errors | David Haig | -2/+6 |
| 2019-11-28 | Remove duplication using single variant for error | David Haig | -17/+6 |
| 2019-11-28 | Squash | David Haig | -5/+18 |
| 2019-11-27 | rustc: move debug info from LocalDecl and UpvarDecl into a dedicated VarDebug... | Eduard-Mihai Burtescu | -16/+2 |
| 2019-11-21 | Track pointers to statics in MIR | Matthew Jasper | -3/+3 |
| 2019-11-10 | Merge hir::GeneratorMovability into ast::Movability. | Camille GILLOT | -1/+1 |
| 2019-11-10 | Merge hir::Mutability into ast::Mutability. | Camille GILLOT | -2/+2 |
| 2019-10-22 | Move Place::elem methods and friends to TyCtxt | Santiago Pastorino | -1/+1 |
| 2019-10-22 | Intern place projection | Santiago Pastorino | -22/+48 |
| 2019-10-22 | Pattern match over PlaceRef rather than Place | Santiago Pastorino | -8/+15 |
| 2019-10-18 | Use Cow to handle modifications of projection in preparation for interning | Santiago Pastorino | -15/+9 |
| 2019-10-17 | Prepare generator MutVisitor to have projections interned | Santiago Pastorino | -7/+45 |
| 2019-10-07 | Auto merge of #61430 - matthewjasper:drop-on-into-panic, r=oli-obk | bors | -4/+1 |
| 2019-10-04 | clean up GeneratorSubsts | csmoe | -0/+1 |
| 2019-10-02 | Do not mark unitinitialized locals as requiring storage | Matthew Jasper | -4/+1 |
| 2019-09-29 | remove indexed_vec re-export from rustc_data_structures | csmoe | -1/+1 |
| 2019-09-29 | remove bit_set re-export from rustc_data_structures | csmoe | -1/+1 |
| 2019-09-25 | Rename `sty` to `kind` | varkor | -2/+2 |
| 2019-09-16 | Replace all uses of `dataflow::state_for_location` | Dylan MacKenzie | -22/+15 |
| 2019-09-11 | Make Place Boxed on Statement to reduce size from 64 bytes to 32 bytes | Santiago Pastorino | -5/+12 |
| 2019-09-09 | Convert Place's projection to a boxed slice | Santiago Pastorino | -21/+13 |
| 2019-08-22 | Move 'tcx lifetime on MirPass | Wesley Wiser | -2/+2 |
| 2019-08-16 | Remove redundant `ty` fields from `mir::Constant` and `hair::pattern::Pattern... | Eduard-Mihai Burtescu | -1/+0 |
| 2019-07-29 | use PanicInfo and UnsupportedOpInfo | Saleem Jaffer | -1/+1 |
| 2019-07-24 | use PanicMessage type for MIR assertion errors | Ralf Jung | -1/+1 |
| 2019-07-20 | Migrate from Place enum to Place struct | Santiago Pastorino | -18/+32 |
| 2019-07-03 | Remove needless lifetimes | Jeremy Stucki | -2/+2 |
| 2019-07-02 | Auto merge of #61922 - tmandry:moar-generator-optimization, r=matthewjasper | bors | -30/+40 |
| 2019-07-01 | Clean up extra lifetime, add assertions | Tyler Mandry | -11/+8 |
| 2019-06-28 | Use RequiresStorage to determine which locals can overlap | Tyler Mandry | -12/+15 |
| 2019-06-28 | Remove Clone requirement | Tyler Mandry | -1/+2 |
| 2019-06-25 | Add RequiresStorage pass to decide which locals to save in generators | Tyler Mandry | -25/+34 |
| 2019-06-25 | Make FlowAtLocation support borrowing flow data | Tyler Mandry | -3/+3 |
| 2019-06-25 | Implement From<Local> for Place and PlaceBase | Santiago Pastorino | -8/+8 |
| 2019-06-18 | Run `rustfmt --file-lines ...` for changes from previous commits. | Eduard-Mihai Burtescu | -1/+2 |
| 2019-06-18 | rustc: remove 'x: 'y bounds (except from comments/strings). | Eduard-Mihai Burtescu | -3/+3 |
| 2019-06-14 | Run `rustfmt --file-lines ...` for changes from previous commits. | Eduard-Mihai Burtescu | -6/+1 |
| 2019-06-14 | Unify all uses of 'gcx and 'tcx. | Eduard-Mihai Burtescu | -10/+10 |
| 2019-06-12 | Run `rustfmt --file-lines ...` for changes from previous commits. | Eduard-Mihai Burtescu | -46/+57 |
| 2019-06-12 | rustc: replace `TyCtxt<'tcx, 'gcx, 'tcx>` with `TyCtxt<'gcx, 'tcx>`. | Eduard-Mihai Burtescu | -10/+10 |
| 2019-06-12 | Fix fallout from `deny(unused_lifetimes)`. | Eduard-Mihai Burtescu | -10/+10 |
| 2019-06-12 | rustc: replace `TyCtxt<'a, 'gcx, 'tcx>` with `TyCtxt<'tcx, 'gcx, 'tcx>`. | Eduard-Mihai Burtescu | -17/+17 |
| 2019-06-12 | Auto merge of #60187 - tmandry:generator-optimization, r=eddyb | bors | -43/+226 |
| 2019-06-11 | More review fixes | Tyler Mandry | -3/+4 |
| 2019-06-11 | rustc_mir: deny(unused_lifetimes). | Eduard-Mihai Burtescu | -2/+2 |
| 2019-06-10 | Use DataflowResultsConsumer and remove dataflow::for_each_location | Tyler Mandry | -37/+89 |