| Age | Commit message (Expand) | Author | Lines |
| 2017-06-22 | move `implied_bounds` into regionck | Niko Matsakis | -128/+0 |
| 2017-06-04 | Auto merge of #42362 - estebank:type, r=arielb1 | bors | -0/+16 |
| 2017-06-04 | Show trait method signature when impl differs | Esteban Küber | -0/+16 |
| 2017-06-03 | Auto merge of #42332 - michaelwoerister:no-more-retracing, r=nikomatsakis | bors | -9/+48 |
| 2017-06-01 | pacify the mercilous tidy | Niko Matsakis | -21/+27 |
| 2017-06-01 | remove `layout_cache` and fix `-Z print-type-sizes` | Niko Matsakis | -7/+230 |
| 2017-06-01 | strip param-env from infcx | Niko Matsakis | -44/+107 |
| 2017-06-01 | rewrite layout to take a (param-env, ty) pair instead of infcx | Niko Matsakis | -138/+165 |
| 2017-06-01 | move projection mode into parameter environment | Niko Matsakis | -12/+36 |
| 2017-06-01 | Auto merge of #42281 - eddyb:well-adjusted, r=nikomatsakis | bors | -285/+212 |
| 2017-06-01 | rustc: decompose Adjustment into a vector of adjustment steps. | Eduard-Mihai Burtescu | -104/+62 |
| 2017-06-01 | rustc: move autoref and unsize from Adjust::DerefRef to Adjustment. | Eduard-Mihai Burtescu | -104/+100 |
| 2017-06-01 | rustc: replace autoderefs' use of MethodCallee with OverloadedDeref. | Eduard-Mihai Burtescu | -15/+136 |
| 2017-06-01 | rustc: remove unused TypeFolder methods. | Eduard-Mihai Burtescu | -47/+0 |
| 2017-06-01 | rustc: replace method_map with Def::Method and node_substs entries. | Eduard-Mihai Burtescu | -11/+16 |
| 2017-06-01 | rustc: remove unnecessary ItemSubsts wrapper. | Eduard-Mihai Burtescu | -40/+4 |
| 2017-06-01 | rustc: replace TyFnDef in MethodCallee with just the FnSig. | Eduard-Mihai Burtescu | -11/+6 |
| 2017-06-01 | rustc: keep overloaded autoderef MethodCallee's in Adjust. | Eduard-Mihai Burtescu | -92/+27 |
| 2017-06-01 | rustc: remove Copy from Adjustment and Adjust. | Eduard-Mihai Burtescu | -2/+2 |
| 2017-06-01 | Rollup merge of #42297 - tschottdorf:proj-ty, r=nikomatsakis | Corey Farwell | -20/+42 |
| 2017-05-31 | Rollup merge of #42196 - tommyip:explain_closure_err, r=nikomatsakis | Mark Simulacrum | -2/+4 |
| 2017-05-31 | Upgrade ProjectionTy's Name to a DefId | Tobias Schottdorf | -20/+42 |
| 2017-05-31 | Build DefPathHash->DefId table when incr.comp. is enabled | Michael Woerister | -1/+40 |
| 2017-05-31 | Make a newtype for DefPathHash so they are not confused with content hashes | Michael Woerister | -8/+8 |
| 2017-05-30 | Explain why closure is moved in error message | Tommy Ip | -3/+3 |
| 2017-05-29 | Remove DepGraph::write() and its callers. | Michael Woerister | -14/+27 |
| 2017-05-28 | Auto merge of #41917 - arielb1:mir-array, r=nagisa | bors | -2/+14 |
| 2017-05-28 | fix RUST_LOG ICE caused by printing a default impl's DefId | Ariel Ben-Yehuda | -2/+5 |
| 2017-05-28 | address review comments | Ariel Ben-Yehuda | -1/+1 |
| 2017-05-28 | translate array drop glue using MIR | Ariel Ben-Yehuda | -0/+9 |
| 2017-05-27 | Rollup merge of #42251 - nikomatsakis:issue-42210-regr-unsized-tail, r=eddyb | Mark Simulacrum | -7/+23 |
| 2017-05-27 | Rollup merge of #42207 - Nashenas88:remove_fragment_info, r=eddyb | Mark Simulacrum | -40/+1 |
| 2017-05-26 | extend `struct_tail` to operate over closures | Niko Matsakis | -7/+23 |
| 2017-05-25 | Hygienize `librustc_typeck`. | Jeffrey Seyfried | -15/+33 |
| 2017-05-24 | Remove all instances of fragment_infos and fragment sets | Paul Faria | -40/+1 |
| 2017-05-24 | Include context info into closure_kinds | Tommy Ip | -2/+4 |
| 2017-05-22 | fix DepNode | Niko Matsakis | -12/+16 |
| 2017-05-22 | two more style nits | Niko Matsakis | -5/+4 |
| 2017-05-22 | rename `parameter_environment` to `param_env` | Niko Matsakis | -6/+6 |
| 2017-05-22 | rename `ParameterEnvironment` to `ParamEnv` | Niko Matsakis | -40/+40 |
| 2017-05-22 | kill NEEDS_DROP_CACHED | Niko Matsakis | -4/+0 |
| 2017-05-22 | kill FREEZENESS_CACHED | Niko Matsakis | -2/+0 |
| 2017-05-22 | kill SIZEDNESS_CACHED | Niko Matsakis | -2/+0 |
| 2017-05-22 | remove the cell from type flags completely | Niko Matsakis | -9/+7 |
| 2017-05-22 | move `needs_drop` into a query | Niko Matsakis | -106/+84 |
| 2017-05-22 | refactor common logic into `ParameterEnvironment::and()` | Niko Matsakis | -19/+30 |
| 2017-05-22 | make parameter-environment a query | Niko Matsakis | -32/+33 |
| 2017-05-22 | centralize the caching for is-copy, is-sized, and is-freeze | Niko Matsakis | -199/+156 |
| 2017-05-18 | Use 128 instead of 64 bits for DefPath hashes | Michael Woerister | -6/+8 |
| 2017-05-17 | Auto merge of #41911 - michaelwoerister:querify_trait_def, r=nikomatsakis | bors | -283/+186 |