| Age | Commit message (Expand) | Author | Lines |
| 2016-11-03 | add a per-param-env cache to `impls_bound` | Ariel Ben-Yehuda | -1/+1 |
| 2016-09-20 | rustc_metadata: move more RBML tags to auto-serialization. | Eduard Burtescu | -1/+1 |
| 2016-09-08 | Refactor `TyStruct`/`TyEnum`/`TyUnion` into `TyAdt` | Vadim Petrochenkov | -9/+7 |
| 2016-09-04 | Replace `_, _` with `..` | Vadim Petrochenkov | -2/+2 |
| 2016-09-03 | Add union types | Vadim Petrochenkov | -3/+4 |
| 2016-09-01 | turn the RFC1592 warnings into hard errors | Ariel Ben-Yehuda | -10/+6 |
| 2016-08-27 | rustc: use Vec<Kind> in Substs, where Kind is a &TyS | &Region tagged pointer. | Eduard Burtescu | -18/+16 |
| 2016-08-27 | rustc: pass ty::Region behind an interned 'tcx reference. | Eduard Burtescu | -5/+6 |
| 2016-08-27 | rustc: use accessors for Substs::{types,regions}. | Eduard Burtescu | -19/+16 |
| 2016-08-17 | rustc: remove ParamSpace from Substs. | Eduard Burtescu | -9/+8 |
| 2016-08-17 | rustc: split GenericPredicates of a method from its parent predicates. | Eduard Burtescu | -14/+12 |
| 2016-08-17 | rustc: reduce Substs and Generics to a simple immutable API. | Eduard Burtescu | -21/+28 |
| 2016-08-17 | rustc: move trait objects from TraitRef to ExistentialTraitRef. | Eduard Burtescu | -26/+23 |
| 2016-08-17 | rustc: move the SelfSpace before TypeSpace in Substs. | Eduard Burtescu | -2/+3 |
| 2016-08-17 | rustc: use Vec instead of VecPerParamSpace for ty::GenericPredicates. | Eduard Burtescu | -1/+1 |
| 2016-08-13 | Rename empty/bang to never | Andrew Cann | -3/+3 |
| 2016-08-13 | Remove obsolete divergence related stuff | Andrew Cann | -2/+2 |
| 2016-08-13 | Start implementation of RFC 1216 (make ! a type) | Andrew Cann | -2/+3 |
| 2016-08-12 | typeck: leak auto trait obligations through impl Trait. | Eduard Burtescu | -8/+11 |
| 2016-08-12 | rustc: add TyAnon (impl Trait) to the typesystem. | Eduard Burtescu | -24/+25 |
| 2016-08-12 | rustc: rename ProjectionMode and its variant to be more memorable. | Eduard Burtescu | -2/+2 |
| 2016-05-31 | make HR algorithms account for region subtyping | Niko Matsakis | -8/+24 |
| 2016-05-11 | Plumb inference obligations through selection | Masood Malekghassemi | -66/+106 |
| 2016-05-11 | Don't mutate the inference context when assembling | Masood Malekghassemi | -1/+1 |
| 2016-05-11 | Add inferred obligation storage to all Vtable variants and SelectionContext | Masood Malekghassemi | -8/+25 |
| 2016-05-11 | rustc: More interning for data used in Ty<'tcx>. | Eduard Burtescu | -16/+16 |
| 2016-05-11 | rustc: Generalize a minimum set of functions over 'tcx != 'gcx. | Eduard Burtescu | -34/+84 |
| 2016-05-11 | rustc: Remove the TyCtxt field from ParameterEnvironment. | Eduard Burtescu | -1/+1 |
| 2016-05-11 | rustc: Split 'tcx into 'gcx and 'tcx for InferCtxt and its users. | Eduard Burtescu | -9/+9 |
| 2016-05-11 | rustc: Replace &'a TyCtxt<'tcx> with a TyCtxt<'a, 'tcx> wrapper. | Eduard Burtescu | -1/+1 |
| 2016-05-11 | rustc: Avoid free functions taking &TyCtxt and &InferCtxt. | Eduard Burtescu | -22/+18 |
| 2016-05-03 | stop dropping impls from cause backtraces | Ariel Ben-Yehuda | -23/+25 |
| 2016-05-03 | stop using commit_if_ok where no errors can happen | Ariel Ben-Yehuda | -52/+31 |
| 2016-05-03 | change the newly-added errors to warnings | Ariel Ben-Yehuda | -9/+10 |
| 2016-05-03 | require the existential bounds of an object type to be object-safe | Ariel Ben-Yehuda | -3/+9 |
| 2016-05-03 | require the non-last elements of a tuple to be Sized | Ariel Ben-Yehuda | -1/+8 |
| 2016-05-03 | refactor the handling of builtin candidates | Ariel Ben-Yehuda | -198/+101 |
| 2016-05-03 | Short-cut Sized matching on ADTs | Ariel Ben-Yehuda | -82/+73 |
| 2016-04-13 | Auto merge of #32780 - soltanmm:consider-the-following, r=nikomatsakis | bors | -74/+31 |
| 2016-04-06 | Replace consider_unification_despite_ambiguity with obligation variant | Masood Malekghassemi | -74/+31 |
| 2016-04-06 | rustc: move middle::{def,def_id,pat_util} to hir. | Eduard Burtescu | -1/+1 |
| 2016-04-06 | rustc: move rustc_front to rustc::hir. | Eduard Burtescu | -1/+1 |
| 2016-04-05 | Rollup merge of #32596 - soltanmm:lazy, r=nikomatsakis | Manish Goregaokar | -33/+50 |
| 2016-04-04 | Address nits | Masood Malekghassemi | -8/+8 |
| 2016-03-31 | librustc: replace unreachable! with bug!() | Benjamin Herr | -2/+2 |
| 2016-03-31 | librustc: replace span_bug calls with span_bug!() | Benjamin Herr | -10/+10 |
| 2016-03-31 | librustc: replace tcx.sess.bug calls with bug!() | Benjamin Herr | -28/+20 |
| 2016-03-29 | Plumb obligations through librustc/infer | Masood Malekghassemi | -33/+50 |
| 2016-03-27 | rustc: move cfg, infer, traits and ty from middle to top-level. | Eduard Burtescu | -0/+3049 |