| Age | Commit message (Expand) | Author | Lines |
| 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 |
| 2019-06-10 | Use BitMatrix for storage conflicts | Tyler Mandry | -22/+24 |
| 2019-06-10 | Small review fixes | Tyler Mandry | -30/+48 |
| 2019-06-10 | Only include generator saved locals in the variants that need them | Tyler Mandry | -34/+48 |
| 2019-06-10 | Collect conflict information in GeneratorLayout | Tyler Mandry | -4/+100 |
| 2019-06-09 | Changed usages of `mir` in librustc::mir and librustc_mir to `body` | Jad Ghalayini | -117/+117 |
| 2019-06-08 | Do not recursively visit `visit_place` | Oliver Scherer | -10/+18 |
| 2019-05-28 | Changes the type `mir::Mir` into `mir::Body` | Claude-Alban RANÉLY-VERGÉ-DÉPRÉ | -22/+22 |
| 2019-05-25 | Don't use `ty::Const` without immediately interning | Oliver Scherer | -3/+1 |
| 2019-05-20 | LocalDecl push returns Local len | Santiago Pastorino | -2/+2 |
| 2019-05-04 | Auto merge of #59897 - tmandry:variantful-generators, r=eddyb | bors | -60/+84 |
| 2019-05-03 | Address review comments | Tyler Mandry | -2/+3 |
| 2019-05-03 | Split out debuginfo from type info in MIR GeneratorLayout | Tyler Mandry | -5/+12 |
| 2019-05-03 | Make variant_fields inner an IndexVec | Tyler Mandry | -2/+2 |
| 2019-04-26 | Remove region from borrow place contexts | Matthew Jasper | -7/+7 |
| 2019-04-26 | Remove BasicBlock parameter from mir visitor methods | Matthew Jasper | -1/+0 |
| 2019-04-25 | Describe generator variants in debuginfo | Tyler Mandry | -3/+4 |
| 2019-04-25 | Support variantful generators | Tyler Mandry | -59/+68 |
| 2019-04-25 | Give GeneratorLayout a list of fields for each variant | Tyler Mandry | -1/+2 |
| 2019-04-25 | Define generator discriminant type in only one place | Tyler Mandry | -4/+9 |
| 2019-04-23 | rustc_mir: don't use upvar_decls in the generator state transform. | Eduard-Mihai Burtescu | -5/+5 |
| 2019-04-02 | renames EvalErrorKind to InterpError | kenta7777 | -1/+1 |
| 2019-03-24 | Rollup merge of #59251 - matthewjasper:fix-graphviz, r=petrochenkov | kennytm | -3/+3 |
| 2019-03-21 | Auto merge of #58902 - matthewjasper:generator-cleanup-blocks, r=davidtwco | bors | -37/+42 |
| 2019-03-17 | Use a valid name for graphviz graphs | Matthew Jasper | -3/+3 |
| 2019-03-16 | Revert the `LazyConst` PR | Oliver Scherer | -4/+4 |
| 2019-03-07 | HirIdification: replace NodeId method calls | ljedrz | -3/+3 |
| 2019-03-03 | Auto merge of #58505 - schomatis:fix/nll/remove-live-var, r=matthewjasper | bors | -9/+7 |
| 2019-03-03 | Use the correct state for poisoning a generator | Matthew Jasper | -13/+20 |
| 2019-03-03 | Don't incorrectly mark blocks in generator drop shims as cleanup | Matthew Jasper | -24/+22 |
| 2019-03-01 | Put Local, Static and Promoted as one Base variant of Place | Santiago Pastorino | -10/+10 |
| 2019-02-26 | replace &'tcx Substs with SubstsRef | csmoe | -2/+2 |