| Age | Commit message (Expand) | Author | Lines |
| 2019-11-07 | rustc_metadata: Move decoder/encoder/table into mod schema | Vadim Petrochenkov | -1392/+0 |
| 2019-11-03 | rustc_metadata: don't encode an empty slice for inferred_outlives. | Eduard-Mihai Burtescu | -1/+3 |
| 2019-11-03 | rustc_metadata: replace predicates_defined_on with explicit_predicates_of and... | Eduard-Mihai Burtescu | -2/+10 |
| 2019-11-03 | rustc_metadata: remove predicates_of and rely on predicates_defined_on alone. | Eduard-Mihai Burtescu | -8/+0 |
| 2019-10-30 | Make init_locking return a reference to the initialized data | Santiago Pastorino | -3/+1 |
| 2019-10-30 | Change CrateMetadata's source_map_import_info from RwLock to Once | Santiago Pastorino | -79/+62 |
| 2019-10-30 | Correctly indent get_predicates function | Santiago Pastorino | -1/+1 |
| 2019-10-27 | rustc, rustc_passes: don't depend on syntax_expand. | Mazdak Farrokhzad | -4/+4 |
| 2019-10-25 | Rollup merge of #65074 - Rantanen:json-byte-pos, r=matklad | Mazdak Farrokhzad | -1/+6 |
| 2019-10-23 | Rollup merge of #65657 - nnethercote:rm-InternedString-properly, r=eddyb | Mazdak Farrokhzad | -5/+4 |
| 2019-10-22 | rustc_metadata: use a table for impl_trait_ref. | Eduard-Mihai Burtescu | -2/+2 |
| 2019-10-22 | rustc_metadata: use a table for fn_sig. | Eduard-Mihai Burtescu | -11/+2 |
| 2019-10-22 | rustc_metadata: use a table for super_predicates. | Eduard-Mihai Burtescu | -10/+4 |
| 2019-10-21 | Fix the start/end byte positions in the compiler JSON output | Mikko Rantanen | -1/+6 |
| 2019-10-21 | Convert fields within `DefPathData` from `InternedString` to `Symbol`. | Nicholas Nethercote | -5/+4 |
| 2019-10-17 | Auto merge of #65495 - Centril:rollup-tguwjt5, r=Centril | bors | -2/+2 |
| 2019-10-16 | move syntax::ext to new crate syntax_expand | Mazdak Farrokhzad | -2/+2 |
| 2019-10-15 | rustc_metadata: replace Entry table with one table for each of its fields (Ao... | Eduard-Mihai Burtescu | -97/+97 |
| 2019-10-15 | rustc_metadata: use decoder::Metadata instead of &[u8] for Lazy<Table<T>>::get. | Eduard-Mihai Burtescu | -5/+5 |
| 2019-10-15 | rustc_metadata: generalize Table<T> to hold T, not Lazy<T>, elements. | Eduard-Mihai Burtescu | -3/+3 |
| 2019-10-15 | rustc_metadata: add a helper macro for recording into PerDefTable's. | Eduard-Mihai Burtescu | -1/+1 |
| 2019-10-15 | rustc_metadata: split tables into an usize-keyed Table and a DefIndex-keyed P... | Eduard-Mihai Burtescu | -3/+3 |
| 2019-10-15 | rustc_metadata: replace Lazy<[Table<T>]> with Lazy<Table<T>>. | Eduard-Mihai Burtescu | -5/+14 |
| 2019-10-15 | rustc_metadata: rename index::Index to table::Table. | Eduard-Mihai Burtescu | -1/+1 |
| 2019-10-15 | rustc_metadata: use NonZeroUsize for the position of a Lazy. | Eduard-Mihai Burtescu | -7/+13 |
| 2019-10-14 | rustc_metadata: Privatize private code and remove dead code | Vadim Petrochenkov | -71/+73 |
| 2019-10-14 | Auto merge of #65240 - michaelwoerister:sp-review-3, r=Mark-Simulacrum | bors | -0/+25 |
| 2019-10-10 | Auto merge of #65153 - da-x:issue-58017, r=petrochenkov | bors | -3/+3 |
| 2019-10-10 | Add 'unlikely' annotation to branch in crate DepNodeIndex caching. | Michael Woerister | -1/+1 |
| 2019-10-09 | resolve: Keep field spans for diagnostics | Vadim Petrochenkov | -3/+3 |
| 2019-10-09 | Cache the DepNodeIndex of upstream crates in order to avoid multiple locks an... | Michael Woerister | -0/+25 |
| 2019-10-04 | Fix lonely backtick | Yechan Bae | -1/+1 |
| 2019-10-04 | Rollup merge of #65026 - petrochenkov:ice1, r=eddyb | Mazdak Farrokhzad | -7/+2 |
| 2019-10-04 | metadata: Remove `CrateMetadata::name` | Vadim Petrochenkov | -1/+1 |
| 2019-10-04 | metadata: Remove `CrateMetadata::host_lib` | Vadim Petrochenkov | -6/+1 |
| 2019-09-30 | Remove HIR based const qualification | Matthew Jasper | -8/+0 |
| 2019-09-29 | remove indexed_vec re-export from rustc_data_structures | csmoe | -1/+1 |
| 2019-09-26 | Auto merge of #62661 - arielb1:never-reserve, r=nikomatsakis | bors | -1/+1 |
| 2019-09-25 | Rollup merge of #64599 - csmoe:doc_async_reexport, r=nikomatsakis | Mazdak Farrokhzad | -0/+9 |
| 2019-09-24 | resolve the rustc_reservation_impl attribute in 1 place | Ariel Ben-Yehuda | -1/+1 |
| 2019-09-24 | bug-out asyncness query on non-local funtions | csmoe | -1/+2 |
| 2019-09-21 | rename is_async_fn to asyncness | csmoe | -4/+3 |
| 2019-09-19 | add is_async_fn query | csmoe | -0/+9 |
| 2019-09-17 | Generate proc macro harness in AST order. | Aaron Hill | -1/+5 |
| 2019-08-30 | Add a "diagnostic item" scheme | Oliver Scherer | -0/+18 |
| 2019-08-29 | Rollup merge of #63867 - petrochenkov:dhelpers, r=matthewjasper | Mazdak Farrokhzad | -3/+1 |
| 2019-08-29 | Rollup merge of #63933 - wesleywiser:cleanup_from_move_promoted, r=oli-obk | Mazdak Farrokhzad | -15/+23 |
| 2019-08-28 | Extract `Decoder::entry_unless_proc_macro()` | Wesley Wiser | -22/+20 |
| 2019-08-28 | Simplify `maybe_get_optimized_mir` and `maybe_get_promoted_mir` | Wesley Wiser | -11/+21 |
| 2019-08-28 | Auto merge of #63127 - kper:pr, r=nikomatsakis | bors | -5/+5 |