| Age | Commit message (Expand) | Author | Lines |
| 2017-12-05 | Include non-`pub` `use` and `extern crate` items in the crate metadata for ma... | Jeffrey Seyfried | -4/+13 |
| 2017-11-28 | incr.comp.: Make MIR encoding fit for incr.comp. caching. | Michael Woerister | -0/+9 |
| 2017-11-18 | remove the `generator_sigs` map, query, and plumbing | Niko Matsakis | -17/+0 |
| 2017-11-18 | kill the `closure_kind` query | Niko Matsakis | -7/+0 |
| 2017-11-16 | incr.comp.: Remove default serialization implementations for things in rustc:... | Michael Woerister | -0/+21 |
| 2017-11-16 | incr.comp.: Remove some code duplication around TyDecoder by factoring things... | Michael Woerister | -113/+2 |
| 2017-11-13 | incr.comp.: Properly use ty::codec::decode_cnum() in rustc_metadata::decoder. | Michael Woerister | -6/+1 |
| 2017-11-13 | incr.comp.: Add position() method to TyEncoder. | Michael Woerister | -0/+7 |
| 2017-11-08 | incr.comp.: Provide session to some more decoding contexts. | Michael Woerister | -2/+16 |
| 2017-11-07 | incr.comp.: Always require Session when decoding Spans (as to avoid silently ... | Michael Woerister | -12/+16 |
| 2017-11-05 | Auto merge of #45770 - spastorino:newtype_index, r=nikomatsakis | bors | -0/+1 |
| 2017-11-04 | Auto merge of #45711 - tirr-c:unicode-span, r=estebank | bors | -1/+7 |
| 2017-11-04 | Make DefIndex use newtype_index macro | Santiago Pastorino | -0/+1 |
| 2017-11-03 | [Syntax Breaking] Rename DefaultImpl to AutoImpl | leonardo.yvens | -5/+5 |
| 2017-11-03 | Display spans correctly when there are non-half-width characters | Wonwoo Choi | -1/+7 |
| 2017-11-01 | Auto merge of #45472 - michaelwoerister:incr-comp-caching-base, r=nikomatsakis | bors | -58/+64 |
| 2017-10-27 | Implement RFC 1861: Extern types | Paul Lietar | -0/+1 |
| 2017-10-24 | incr.comp.: Factor some persistence functionality out of crate metadata code. | Michael Woerister | -58/+64 |
| 2017-09-18 | incr.comp.: Already hash HIR bodies during metadata export so they don't have... | Michael Woerister | -8/+27 |
| 2017-09-18 | Fix issues uncovered by rebasing: | Michael Woerister | -1/+2 |
| 2017-09-17 | rustc: Mostly remove `ExportedSymbols` | Alex Crichton | -1/+2 |
| 2017-09-11 | rustc: introduce ty::Const { ConstVal, Ty }. | Eduard-Mihai Burtescu | -3/+3 |
| 2017-09-11 | rustc: intern ConstVal's in TyCtxt. | Eduard-Mihai Burtescu | -0/+15 |
| 2017-09-09 | rustc: Remove `DepGraph` handling from rustc_metadata | Alex Crichton | -49/+10 |
| 2017-09-05 | rustc: Store InternedString in `DefPathData` | Alex Crichton | -8/+9 |
| 2017-09-05 | rustc: Rename item_body query to extern_const_body | Alex Crichton | -4/+4 |
| 2017-08-30 | Make fields of `Span` private | Vadim Petrochenkov | -2/+2 |
| 2017-08-25 | Merge remote-tracking branch 'origin/master' into gen | Alex Crichton | -1/+1 |
| 2017-08-19 | Implement `From<&[T]>` and others for `Arc`/`Rc` | Murarth | -1/+1 |
| 2017-08-16 | Merge remote-tracking branch 'origin/master' into gen | Alex Crichton | -5/+5 |
| 2017-08-15 | use field init shorthand EVERYWHERE | Zack M. Davis | -5/+5 |
| 2017-07-28 | Generator literal support | John Kåre Alsaker | -0/+18 |
| 2017-07-05 | Merge remote-tracking branch 'origin/master' into proc_macro_api | Alex Crichton | -7/+13 |
| 2017-06-27 | rustc: move the PolyFnSig out of TyFnDef. | Eduard-Mihai Burtescu | -4/+10 |
| 2017-06-27 | rustc: rename closure_type to fn_sig. | Eduard-Mihai Burtescu | -5/+5 |
| 2017-06-26 | Implement `quote!` and other `proc_macro` API. | Jeffrey Seyfried | -1/+1 |
| 2017-06-18 | Auto merge of #42593 - ibabushkin:on-demand-external-source, r=eddyb | bors | -1/+3 |
| 2017-06-13 | External spans: Added a test for #38875. | Inokentiy Babushkin | -1/+1 |
| 2017-06-12 | Auto merge of #42537 - michaelwoerister:tcx-for-dep-node, r=nikomatsakis | bors | -4/+6 |
| 2017-06-10 | Added source hashes to FileMap | Inokentiy Babushkin | -0/+2 |
| 2017-06-09 | incr.comp.: Uniformly represent DepNodes as (Kind, StableHash) pairs. | Michael Woerister | -4/+6 |
| 2017-06-09 | Auto merge of #42507 - ibabushkin:external-span-trans, r=eddyb | bors | -8/+8 |
| 2017-06-07 | Fix translation of external spans. | Inokentiy Babushkin | -8/+8 |
| 2017-06-07 | Allocate DefIndices for global crate metadata. | Michael Woerister | -13/+6 |
| 2017-05-31 | Make a newtype for DefPathHash so they are not confused with content hashes | Michael Woerister | -3/+2 |
| 2017-05-25 | Improve intercrate hygiene. | Jeffrey Seyfried | -6/+8 |
| 2017-05-18 | Use 128 instead of 64 bits for DefPath hashes | Michael Woerister | -1/+2 |
| 2017-05-17 | Auto merge of #41911 - michaelwoerister:querify_trait_def, r=nikomatsakis | bors | -19/+14 |
| 2017-05-15 | Remove interior mutability from TraitDef by turning fields into queries. | Michael Woerister | -10/+5 |
| 2017-05-15 | ICH: Hash lists of local trait impls as part of the HIR. | Michael Woerister | -9/+9 |