| Age | Commit message (Expand) | Author | Lines |
| 2018-01-01 | Fix docs for future pulldown migration | Malo Jaffré | -3/+3 |
| 2017-12-28 | Prefer to use attr::contains_name() and attr::find_by_name() | Seiichi Uchida | -1/+1 |
| 2017-12-22 | Auto merge of #46842 - michaelwoerister:fingerprint-vec, r=nikomatsakis | bors | -0/+9 |
| 2017-12-21 | Combine GlobalArenas and DroplessArena into AllArenas | John Kåre Alsaker | -1/+1 |
| 2017-12-20 | incr.comp.: Use an IndexVec instead of a hashmap for storing result hashes. | Michael Woerister | -0/+9 |
| 2017-12-20 | Auto merge of #46733 - nikomatsakis:nll-master-to-rust-master-5, r=arielb1 | bors | -0/+10 |
| 2017-12-16 | Auto merge of #46722 - arielb1:single-self, r=eddyb | bors | -6/+22 |
| 2017-12-15 | rework region flags: 'static can be erased too | Niko Matsakis | -0/+10 |
| 2017-12-14 | add trait aliases to typeck | Alex Burka | -0/+1 |
| 2017-12-13 | fix broken assertion in type_param | Ariel Ben-Yehuda | -6/+22 |
| 2017-12-05 | Include non-`pub` `use` and `extern crate` items in the crate metadata for ma... | Jeffrey Seyfried | -0/+9 |
| 2017-12-04 | introduce `closure_env_ty` helper to compute ty of closure env arg | Niko Matsakis | -0/+6 |
| 2017-12-02 | Auto merge of #46368 - michaelwoerister:incr-comp-type-debuginfo-spans, r=eddyb | bors | -3/+1 |
| 2017-11-29 | incr.comp.: Remove an unnecessary HIR access which enables hashing spans for ... | Michael Woerister | -3/+1 |
| 2017-11-28 | incr.comp.: Make a bunch of query results encodable. | Michael Woerister | -1/+1 |
| 2017-11-21 | Auto merge of #45879 - nikomatsakis:nll-kill-cyclic-closures, r=arielb1 | bors | -5/+18 |
| 2017-11-19 | rustc: remove Ty::layout and move everything to layout_of. | Eduard-Mihai Burtescu | -1/+2 |
| 2017-11-18 | rustc_mir: always downcast enums, even if univariant. | Eduard-Mihai Burtescu | -5/+0 |
| 2017-11-18 | convert the `closure_kinds` map to just store the origin information | Niko Matsakis | -0/+3 |
| 2017-11-18 | make `ty::Predicate` carry a `ClosureSubsts` | Niko Matsakis | -5/+5 |
| 2017-11-18 | thread the closure-kind through in the closure substs | Niko Matsakis | -0/+10 |
| 2017-11-17 | Auto merge of #46004 - michaelwoerister:cached-mir-wip-3, r=nikomatsakis | bors | -2/+3 |
| 2017-11-16 | incr.comp.: Remove some code duplication around TyDecoder by factoring things... | Michael Woerister | -0/+1 |
| 2017-11-16 | Introduce LocalDefId which provides a type-level guarantee that the DefId is ... | Michael Woerister | -2/+2 |
| 2017-11-15 | do not invoke `required_region_bounds` in `region_obligations` | Niko Matsakis | -0/+6 |
| 2017-11-15 | refactor how we extract outlives bounds from trait definitions | Niko Matsakis | -0/+28 |
| 2017-11-12 | rustc_driver: base extern query providers on local ones. | Eduard-Mihai Burtescu | -11/+0 |
| 2017-11-04 | Auto merge of #45394 - davidtwco:rfc-2008, r=petrochenkov | bors | -0/+14 |
| 2017-11-03 | Implemented RFC 2008 for enums (not including variants) and structs. | David Wood | -0/+14 |
| 2017-11-03 | Rename `trait_has_auto_impl` to `trait_is_auto` | leonardo.yvens | -1/+4 |
| 2017-11-03 | [Syntax Breaking] Rename DefaultImpl to AutoImpl | leonardo.yvens | -2/+2 |
| 2017-11-01 | Auto merge of #45472 - michaelwoerister:incr-comp-caching-base, r=nikomatsakis | bors | -0/+1 |
| 2017-10-27 | Implement RFC 1861: Extern types | Paul Lietar | -1/+1 |
| 2017-10-25 | Auto merge of #45476 - Xanewok:fingerprint-disambiguator, r=michaelwoerister | bors | -1/+2 |
| 2017-10-24 | Introduce CrateDisambiguator newtype and fix tests | Igor Matuszewski | -2/+3 |
| 2017-10-24 | incr.comp.: Factor some persistence functionality out of crate metadata code. | Michael Woerister | -0/+1 |
| 2017-10-23 | Remove dependency tracking for variance computation | Simon Sapin | -6/+0 |
| 2017-10-23 | Use 128 bit instead of Symbol for crate disambiguator | Igor Matuszewski | -2/+2 |
| 2017-10-17 | make `erase_regions` use a query instead of an ad-hoc cache | Niko Matsakis | -0/+2 |
| 2017-10-16 | restructure the public inhabitedness APIs and remove the cache | Niko Matsakis | -0/+15 |
| 2017-10-06 | Improve resolution of associated types in macros 2.0 | Vadim Petrochenkov | -0/+8 |
| 2017-10-04 | Auto merge of #44901 - michaelwoerister:on-demand-eval, r=nikomatsakis | bors | -0/+16 |
| 2017-10-02 | incr.comp.: Make some DepNodes non-anonymous. | Michael Woerister | -0/+16 |
| 2017-10-02 | fix handling of `Self` | Ariel Ben-Yehuda | -7/+30 |
| 2017-10-01 | fix handling of Self | Ariel Ben-Yehuda | -2/+10 |
| 2017-10-01 | handle nested generics in Generics::type_param/region_param | Ariel Ben-Yehuda | -7/+21 |
| 2017-09-26 | impl Trait in argument position desugaring: | Matthias Devlamynck | -0/+2 |
| 2017-09-18 | Rollup merge of #44364 - michaelwoerister:hash-all-the-things2, r=nikomatsakis | Alex Crichton | -4/+8 |
| 2017-09-18 | incr.comp.: Remove tcx from StableHashingContext. | Michael Woerister | -4/+4 |
| 2017-09-18 | incr.comp.: Move result fingerprinting to DepGraph::with_task(). | Michael Woerister | -0/+4 |