| Age | Commit message (Expand) | Author | Lines |
| 2019-08-11 | Copy ty::Instance instead of passing by reference | Mark Rousskov | -2/+2 |
| 2019-08-08 | Use associated_type_bounds where applicable - closes #61738 | Ilija Tovilo | -3/+3 |
| 2019-08-07 | Rollup merge of #63034 - tmandry:reduce-generator-size-regressions, r=cramertj | Mazdak Farrokhzad | -5/+23 |
| 2019-08-06 | Fix generator size regressions due to optimization | Tyler Mandry | -0/+21 |
| 2019-08-05 | Fiddle param env through to `try_eval_bits` in most places | Oliver Scherer | -1/+1 |
| 2019-08-05 | Don't abort on unevaluated constants without at least tryting to eval them | Oliver Scherer | -1/+1 |
| 2019-08-01 | Round generator sizes to multiple of their alignment | Tyler Mandry | -0/+2 |
| 2019-07-29 | Wrap promoted generator fields in MaybeUninit | Tyler Mandry | -5/+2 |
| 2019-07-15 | rustc: precompute the largest Niche and store it in LayoutDetails. | Eduard-Mihai Burtescu | -90/+100 |
| 2019-07-15 | rustc_target: move abi::Niche from rustc::ty::layout. | Eduard-Mihai Burtescu | -51/+0 |
| 2019-07-15 | rustc: compute `ty::layout::Niche`'s `available` on the fly. | Eduard-Mihai Burtescu | -29/+43 |
| 2019-07-12 | Replace `struct_tail` and `struct_lockstep_tails` with variants handling norm... | Felix S. Klock II | -3/+3 |
| 2019-06-25 | rustc: correctly transform memory_index mappings for generators. | Eduard-Mihai Burtescu | -37/+78 |
| 2019-06-17 | Expose `VaListImpl` as the Rust equivalent of `__va_list_tag` and implement C... | Andrei Homescu | -2/+2 |
| 2019-06-14 | Run `rustfmt --file-lines ...` for changes from previous commits. | Eduard-Mihai Burtescu | -8/+11 |
| 2019-06-14 | Unify all uses of 'gcx and 'tcx. | Eduard-Mihai Burtescu | -27/+27 |
| 2019-06-12 | Run `rustfmt --file-lines ...` for changes from previous commits. | Eduard-Mihai Burtescu | -22/+23 |
| 2019-06-12 | rustc: remove some unnecessary lifetimes in -> TyCtxt methods. | Eduard-Mihai Burtescu | -3/+3 |
| 2019-06-12 | rustc: replace `TyCtxt<'tcx, 'gcx, 'tcx>` with `TyCtxt<'gcx, 'tcx>`. | Eduard-Mihai Burtescu | -19/+19 |
| 2019-06-12 | Fix fallout from `deny(unused_lifetimes)`. | Eduard-Mihai Burtescu | -15/+15 |
| 2019-06-12 | rustc: replace `TyCtxt<'a, 'gcx, 'tcx>` with `TyCtxt<'tcx, 'gcx, 'tcx>`. | Eduard-Mihai Burtescu | -23/+21 |
| 2019-06-12 | Auto merge of #60187 - tmandry:generator-optimization, r=eddyb | bors | -280/+487 |
| 2019-06-11 | More review fixes | Tyler Mandry | -29/+13 |
| 2019-06-11 | Run `rustfmt --file-lines ...` for changes from previous commits. | Eduard-Mihai Burtescu | -3/+4 |
| 2019-06-11 | rustc: deny(unused_lifetimes). | Eduard-Mihai Burtescu | -1/+1 |
| 2019-06-10 | Extract generator_layout as a method | Tyler Mandry | -254/+271 |
| 2019-06-10 | Extract univariant_uninterned as method | Tyler Mandry | -224/+234 |
| 2019-06-10 | Use BitMatrix for storage conflicts | Tyler Mandry | -4/+5 |
| 2019-06-10 | Small review fixes | Tyler Mandry | -36/+43 |
| 2019-06-10 | Overlap locals that never have storage live at the same time | Tyler Mandry | -13/+201 |
| 2019-06-04 | Generate StorageDead along unwind paths for generators | Tyler Mandry | -1/+1 |
| 2019-06-02 | Fix unwrapping usize issue with transparent MaybeUnit array wrapper | varkor | -1/+1 |
| 2019-05-14 | some more refactor of FnType. Things build now | Saleem Jaffer | -76/+110 |
| 2019-05-10 | refactor some `FnType` stuff to `rustc::ty::layout` | Saleem Jaffer | -0/+349 |
| 2019-05-05 | code review fixes | Saleem Jaffer | -19/+18 |
| 2019-05-04 | removing param_env from pointee_info_at | Saleem Jaffer | -5/+2 |
| 2019-05-04 | resolving conflicts | Saleem Jaffer | -4/+3 |
| 2019-05-04 | adding HasParamEnv trait | Saleem Jaffer | -10/+12 |
| 2019-05-04 | adding is_freeze to TyLayoutMethods | Saleem Jaffer | -0/+8 |
| 2019-05-04 | removing map_same from MaybeResult | Saleem Jaffer | -25/+19 |
| 2019-05-04 | add to_result to ty::MaybeResult | Saleem Jaffer | -8/+15 |
| 2019-05-04 | resolving conflicts | Saleem Jaffer | -22/+23 |
| 2019-05-04 | Make line fit within 100 character limit. | Daan de Graaf | -1/+2 |
| 2019-05-04 | Add param_env parameter to pointee_info_at. | Daan de Graaf | -2/+5 |
| 2019-05-04 | Return instead of collecting to mut result. | Daan de Graaf | -8/+12 |
| 2019-05-04 | Fix typo in src/librustc/ty/layout.rs | Oliver Scherer | -1/+1 |
| 2019-05-04 | Move pointee_info_at to TyLayoutMethods. | Daan de Graaf | -0/+127 |
| 2019-05-04 | Auto merge of #59897 - tmandry:variantful-generators, r=eddyb | bors | -10/+77 |
| 2019-05-03 | Address review comments | Tyler Mandry | -3/+9 |
| 2019-05-01 | Auto merge of #60195 - varkor:commontypes-to-common, r=eddyb | bors | -2/+2 |