| Age | Commit message (Expand) | Author | Lines |
| 2019-06-25 | Implement From<Local> for Place and PlaceBase | Santiago Pastorino | -0/+12 |
| 2019-06-22 | Rollup merge of #61984 - ljedrz:more_node_id_pruning, r=Zoxc | Mazdak Farrokhzad | -2/+2 |
| 2019-06-20 | Implement Debug for PlaceBase | Santiago Pastorino | -23/+25 |
| 2019-06-20 | rename hir::map::name_by_hir_id to ::name | ljedrz | -2/+2 |
| 2019-06-18 | rustc: remove 'x: 'y bounds (except from comments/strings). | Eduard-Mihai Burtescu | -2/+2 |
| 2019-06-17 | remove _by_hir_id if there is no NodeId counterpart | ljedrz | -2/+2 |
| 2019-06-16 | Auto merge of #60730 - matthewjasper:optimize-false-edges, r=pnkfelix | bors | -13/+10 |
| 2019-06-14 | Unify all uses of 'gcx and 'tcx. | Eduard-Mihai Burtescu | -17/+17 |
| 2019-06-13 | Add some more comments on how TestKind works | Matthew Jasper | -2/+2 |
| 2019-06-12 | Make `FalseEdges` always have two targets | Matthew Jasper | -12/+9 |
| 2019-06-12 | Run `rustfmt --file-lines ...` for changes from previous commits. | Eduard-Mihai Burtescu | -1/+1 |
| 2019-06-12 | rustc: replace `TyCtxt<'tcx, 'gcx, 'tcx>` with `TyCtxt<'gcx, 'tcx>`. | Eduard-Mihai Burtescu | -2/+2 |
| 2019-06-12 | Fix fallout from `deny(unused_lifetimes)`. | Eduard-Mihai Burtescu | -2/+2 |
| 2019-06-12 | rustc: replace `TyCtxt<'a, 'gcx, 'tcx>` with `TyCtxt<'tcx, 'gcx, 'tcx>`. | Eduard-Mihai Burtescu | -2/+2 |
| 2019-06-11 | More review fixes | Tyler Mandry | -7/+0 |
| 2019-06-10 | Use BitMatrix for storage conflicts | Tyler Mandry | -3/+3 |
| 2019-06-10 | Collect conflict information in GeneratorLayout | Tyler Mandry | -0/+23 |
| 2019-06-09 | Changed usages of `mir` in librustc::mir and librustc_mir to `body` | Jad Ghalayini | -3/+3 |
| 2019-06-03 | Add `is_ref_for_guard` method | Matthew Jasper | -0/+10 |
| 2019-06-01 | rustc: use indexmap instead of a plain vector for upvars. | Eduard-Mihai Burtescu | -4/+4 |
| 2019-06-01 | rustc: replace Res in hir::Upvar with only Local/Upvar data. | Eduard-Mihai Burtescu | -2/+2 |
| 2019-05-29 | Rollup merge of #61249 - spastorino:local-or-deref-local, r=oli-obk,Centril | Mazdak Farrokhzad | -1/+1 |
| 2019-05-29 | Rollup merge of #60928 - TheSirC:fix/60229, r=eddyb | Mazdak Farrokhzad | -21/+21 |
| 2019-05-28 | Changes the type `mir::Mir` into `mir::Body` | Claude-Alban RANÉLY-VERGÉ-DÉPRÉ | -21/+21 |
| 2019-05-28 | Rename Place::local to Place::local_or_deref_local | Santiago Pastorino | -1/+1 |
| 2019-05-26 | rename Scalar::Bits to Scalar::Raw and bits field to data | Ralf Jung | -4/+1 |
| 2019-05-25 | Don't use `ty::Const` without immediately interning | Oliver Scherer | -20/+18 |
| 2019-05-25 | Reuse the pretty printing architecture for printing of constants | Oliver Scherer | -67/+10 |
| 2019-05-24 | Make place projections concrete. | Edd Barrett | -44/+32 |
| 2019-05-21 | Dont show variables from desugarings in borrowck errors | Matthew Jasper | -0/+7 |
| 2019-05-19 | Improve type size assertions | Vadim Petrochenkov | -5/+4 |
| 2019-05-05 | rustc: rename all occurences of "freevar" to "upvar". | Eduard-Mihai Burtescu | -6/+6 |
| 2019-05-05 | rustc: replace uses of with_freevars with the freevars query. | Eduard-Mihai Burtescu | -4/+4 |
| 2019-05-04 | Rollup merge of #60486 - spastorino:place-related-refactors, r=oli-obk | Mazdak Farrokhzad | -4/+7 |
| 2019-05-04 | Auto merge of #59897 - tmandry:variantful-generators, r=eddyb | bors | -7/+36 |
| 2019-05-03 | Address review comments | Tyler Mandry | -5/+5 |
| 2019-05-03 | Split out debuginfo from type info in MIR GeneratorLayout | Tyler Mandry | -2/+32 |
| 2019-05-03 | Make variant_fields inner an IndexVec | Tyler Mandry | -1/+1 |
| 2019-05-02 | Implement base_local iteratively | Santiago Pastorino | -4/+7 |
| 2019-04-26 | Auto merge of #60167 - varkor:tidy-filelength, r=matthewjasper | bors | -0/+2 |
| 2019-04-25 | ignore-tidy-filelength on all files with greater than 3000 lines | varkor | -0/+2 |
| 2019-04-25 | Include generator locals as field names in debuginfo | Tyler Mandry | -1/+1 |
| 2019-04-25 | Support variantful generators | Tyler Mandry | -5/+4 |
| 2019-04-25 | Give GeneratorLayout a list of fields for each variant | Tyler Mandry | -2/+2 |
| 2019-04-25 | Implement Debug for Place using Place::iterate | Santiago Pastorino | -52/+86 |
| 2019-04-23 | rustc: dissuade compiler developers from misusing upvar debuginfo. | Eduard-Mihai Burtescu | -7/+11 |
| 2019-04-23 | rustc: don't track var_hir_id or mutability in mir::UpvarDecl. | Eduard-Mihai Burtescu | -10/+5 |
| 2019-04-20 | Auto merge of #59987 - saleemjaffer:refactor_adjust_castkinds, r=oli-obk | bors | -20/+3 |
| 2019-04-18 | Make PlaceProjectionsIter a proper iterator | Santiago Pastorino | -4/+18 |
| 2019-04-17 | Make iterate take a FnOnce with PlaceBase and PlaceProjectionIter | Santiago Pastorino | -36/+34 |