| Age | Commit message (Expand) | Author | Lines |
| 2016-11-02 | rustc: record the target type of every adjustment. | Eduard Burtescu | -28/+0 |
| 2016-11-02 | rustc: make all read access to tcx.tables go through a method. | Eduard Burtescu | -65/+8 |
| 2016-10-28 | rustc: move the MIR map into TyCtxt. | Eduard Burtescu | -1/+15 |
| 2016-10-27 | Preparations and cleanup | Vadim Petrochenkov | -1/+1 |
| 2016-10-26 | Auto merge of #37270 - Mark-Simulacrum:smallvec-optimized-arenas, r=eddyb | bors | -4/+13 |
| 2016-10-25 | Utilize AccumulateVec to avoid heap allocations in mk_{substs, type_list, tup... | Mark-Simulacrum | -4/+13 |
| 2016-10-21 | only remove keys that mention skolemized regions | Niko Matsakis | -0/+1 |
| 2016-10-19 | Use TypedArena::alloc_slice in rustc. | Mark-Simulacrum | -1/+1 |
| 2016-10-19 | Rollup merge of #37117 - pnkfelix:may-dangle-attr, r=nikomatsakis | Eduard-Mihai Burtescu | -0/+18 |
| 2016-10-17 | Fix Subst construction: use subst from adt_def rather than Drop impl's subst. | Felix S. Klock II | -0/+8 |
| 2016-10-15 | Auto merge of #37152 - arielb1:drop-cache, r=pnkfelix | bors | -2/+14 |
| 2016-10-15 | Auto merge of #37100 - dikaiosune:master, r=eddyb | bors | -1/+1 |
| 2016-10-14 | add a per-param-env cache to `impls_bound` | Ariel Ben-Yehuda | -2/+14 |
| 2016-10-11 | Temporary fix for metadata decoding for struct constructors | Vadim Petrochenkov | -1/+5 |
| 2016-10-11 | Thread `pure_wrt_drop` field through lifetime and type parameters. | Felix S. Klock II | -0/+10 |
| 2016-10-05 | Fixing comment typo. | Adam Perry | -1/+1 |
| 2016-10-04 | Eliminate ty::VariantKind in favor of def::CtorKind | Vadim Petrochenkov | -21/+1 |
| 2016-10-04 | Separate Def::StructCtor/Def::VariantCtor from Def::Struct/Def::Variant | Vadim Petrochenkov | -5/+12 |
| 2016-10-03 | Auto merge of #36876 - nikomatsakis:issue-36381, r=pnkfelix | bors | -0/+4 |
| 2016-10-03 | loosen assertion against proj in collector | Niko Matsakis | -0/+4 |
| 2016-09-28 | Call arrays "arrays" instead of "vecs" internally | Jonas Schievink | -1/+1 |
| 2016-09-24 | Rollup merge of #36559 - grimreaper:eax/fix/r1, r=nikomatsakis | Guillaume Gomez | -1/+1 |
| 2016-09-20 | serialize: allow specifying the default behavior for specializations. | Eduard Burtescu | -2/+2 |
| 2016-09-20 | rustc_metadata: move opt_item_name to TyCtxt::item_name. | Eduard Burtescu | -5/+16 |
| 2016-09-20 | rustc_metadata: replace RBML with a simple and type-safe scheme. | Eduard Burtescu | -1/+4 |
| 2016-09-20 | rustc_metadata: group information into less tags. | Eduard Burtescu | -9/+9 |
| 2016-09-20 | rustc: remove ImplOrTraitItemId and TraitDef's associated_type_names. | Eduard Burtescu | -43/+12 |
| 2016-09-20 | rustc_metadata: move more RBML tags to auto-serialization. | Eduard Burtescu | -125/+23 |
| 2016-09-20 | rustc_metadata: remove ty{en,de}code and move to auto-derived serialization. | Eduard Burtescu | -0/+40 |
| 2016-09-20 | rustc_metadata: side-step ty{en,de}code for everything but Ty. | Eduard Burtescu | -9/+9 |
| 2016-09-20 | rustc_metadata: go only through rustc_serialize in astencode. | Eduard Burtescu | -7/+6 |
| 2016-09-20 | rustc_metadata: combine DecodeContext and rbml::reader::Decoder. | Eduard Burtescu | -13/+3 |
| 2016-09-20 | rustc_metadata: use specialization for {en,de}coding Ty and Substs. | Eduard Burtescu | -19/+4 |
| 2016-09-18 | per timnn | Eitan Adler | -1/+1 |
| 2016-09-17 | remove duplicate duplicate words | Eitan Adler | -1/+1 |
| 2016-09-13 | Make sure that projection bounds in ty::TraitObject are sorted in a way that ... | Michael Woerister | -4/+0 |
| 2016-09-12 | Auto merge of #35960 - nikomatsakis:incr-comp-krate-edges, r=michaelwoerister | bors | -5/+34 |
| 2016-09-08 | Refactor `TyStruct`/`TyEnum`/`TyUnion` into `TyAdt` | Vadim Petrochenkov | -8/+36 |
| 2016-09-06 | always print def-path in Debug impl for DefId | Niko Matsakis | -4/+33 |
| 2016-09-06 | write to inherent_impls during the visitor | Niko Matsakis | -1/+1 |
| 2016-09-04 | Replace `_, _` with `..` | Vadim Petrochenkov | -3/+3 |
| 2016-09-04 | Replace `_, _, _` with `..` | Vadim Petrochenkov | -5/+5 |
| 2016-09-03 | Auto merge of #36119 - arielb1:ctp-again, r=eddyb | bors | -2/+7 |
| 2016-09-03 | Address comments and add requested tests | Vadim Petrochenkov | -1/+1 |
| 2016-09-03 | Some better support for unions through the compiler | Vadim Petrochenkov | -3/+7 |
| 2016-09-03 | Lower unions from AST to HIR and from HIR to types | Vadim Petrochenkov | -3/+7 |
| 2016-09-03 | Add union types | Vadim Petrochenkov | -1/+2 |
| 2016-09-01 | Auto merge of #35761 - nikomatsakis:faster-trans-fulfill-obligation, r=eddyb | bors | -1/+2 |
| 2016-09-01 | turn the RFC1592 warnings into hard errors | Ariel Ben-Yehuda | -13/+4 |
| 2016-08-31 | simplify DepNode for trait selection | Niko Matsakis | -1/+2 |