| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2019-07-23 | cleanup: Remove `extern crate serialize as rustc_serialize`s | Vadim Petrochenkov | -1/+1 | |
| 2019-07-19 | hygiene: Tweak naming some more | Vadim Petrochenkov | -3/+3 | |
| 2019-07-19 | Adjust other names after the `Mark` renaming | Vadim Petrochenkov | -1/+1 | |
| 2019-07-19 | libsyntax: Remove `Mark` into `ExpnId` | Vadim Petrochenkov | -3/+3 | |
| 2019-07-11 | Fix failing tests | Vadim Petrochenkov | -2/+3 | |
| 2019-07-11 | hygiene: Introduce a helper method for creating new expansions | Vadim Petrochenkov | -23/+22 | |
| Creating a fresh expansion and immediately generating a span from it is the most common scenario. Also avoid allocating `allow_internal_unstable` lists for derive markers repeatedly. And rename `ExpnInfo::with_unstable` to `ExpnInfo::allow_unstable`, seems to be a better fitting name. | ||||
| 2019-07-05 | Rollup merge of #62169 - Zoxc:store-query-results, r=eddyb | Mazdak Farrokhzad | -19/+13 | |
| Derive which queries to save using the proc macro Based on https://github.com/rust-lang/rust/pull/62166. r? @eddyb | ||||
| 2019-07-03 | Remove needless lifetimes | Jeremy Stucki | -5/+5 | |
| 2019-07-02 | Derive which queries to save using the proc macro | John Kåre Alsaker | -19/+13 | |
| 2019-06-30 | Clean up query cache code | John Kåre Alsaker | -116/+5 | |
| 2019-06-25 | Inform the query system about properties of queries at compile time | John Kåre Alsaker | -14/+52 | |
| 2019-06-22 | Deny explicit_outlives_requirements in the compiler | Matthew Jasper | -2/+2 | |
| 2019-06-18 | Run `rustfmt --file-lines ...` for changes from previous commits. | Eduard-Mihai Burtescu | -6/+5 | |
| 2019-06-18 | rustc: remove unused lifetimes. | Eduard-Mihai Burtescu | -1/+1 | |
| 2019-06-18 | rustc: remove leftover lifetimes with no bounds from where clauses. | Eduard-Mihai Burtescu | -1/+0 | |
| 2019-06-18 | rustc: remove 'x: 'y bounds (except from comments/strings). | Eduard-Mihai Burtescu | -3/+3 | |
| 2019-06-14 | Run `rustfmt --file-lines ...` for changes from previous commits. | Eduard-Mihai Burtescu | -31/+9 | |
| 2019-06-14 | Unify all uses of 'gcx and 'tcx. | Eduard-Mihai Burtescu | -91/+91 | |
| 2019-06-12 | Run `rustfmt --file-lines ...` for changes from previous commits. | Eduard-Mihai Burtescu | -77/+88 | |
| 2019-06-12 | rustc: replace `TyCtxt<'tcx, 'gcx, 'tcx>` with `TyCtxt<'gcx, 'tcx>`. | Eduard-Mihai Burtescu | -71/+71 | |
| 2019-06-12 | Fix fallout from `deny(unused_lifetimes)`. | Eduard-Mihai Burtescu | -8/+8 | |
| 2019-06-12 | rustc: replace `TyCtxt<'a, 'gcx, 'tcx>` with `TyCtxt<'tcx, 'gcx, 'tcx>`. | Eduard-Mihai Burtescu | -101/+97 | |
| 2019-06-11 | rustc: deny(unused_lifetimes). | Eduard-Mihai Burtescu | -0/+2 | |
| 2019-06-05 | Aggregation of drive-by cosmetic changes. | Alexander Regueiro | -11/+11 | |
| 2019-06-05 | Add and use `SyntaxContext::outer_and_expn_info`. | Nicholas Nethercote | -3/+2 | |
| This combines two `HygieneData::with` calls into one on a hot path. | ||||
| 2019-06-02 | query-ify const_field | Mark Mansi | -0/+9 | |
| 2019-06-01 | rustc: use indexmap instead of a plain vector for upvars. | Eduard-Mihai Burtescu | -1/+1 | |
| 2019-05-31 | rustc_codegen_utils: add new mangling scheme implementation. | Eduard-Mihai Burtescu | -1/+1 | |
| 2019-05-23 | Remove subtle Default impl for Value | John Kåre Alsaker | -6/+0 | |
| 2019-05-20 | Accumulation of various drive-by cosmetic changes. | Alexander Regueiro | -2/+1 | |
| 2019-05-20 | Introduce `InternedString::intern`. | Nicholas Nethercote | -2/+2 | |
| `InternedString::intern(x)` is preferable to `Symbol::intern(x).as_interned_str()`, because the former involves one call to `with_interner` while the latter involves two. The case within InternedString::decode() is particularly hot, and this change reduces the number of `with_interner` calls by up to 13%. | ||||
| 2019-05-03 | rustc: use DefKind instead of Def, where possible. | Eduard-Mihai Burtescu | -1/+1 | |
| 2019-04-28 | Fix lint findings in librustc | flip1995 | -6/+6 | |
| 2019-04-12 | Use measureme in self-profiler | Wesley Wiser | -30/+42 | |
| Related to #58372 Related to #58967 | ||||
| 2019-04-04 | Auto merge of #59517 - Zoxc:new-queries, r=oli-obk | bors | -1806/+17 | |
| Move query definitions over to the proc macro r? @oli-obk | ||||
| 2019-04-01 | Rollup merge of #58507 - Zoxc:time-extended, r=michaelwoerister | Mazdak Farrokhzad | -15/+14 | |
| Add a -Z time option which prints only passes which runs once This ensures `-Z time-passes` fits on my screen =P r? @michaelwoerister | ||||
| 2019-03-30 | Remove redundant imports | Fabian Drinck | -1/+0 | |
| 2019-03-30 | Move query definitions over to the proc macro | John Kåre Alsaker | -1806/+17 | |
| 2019-03-29 | rustc(codegen): uncache `def_symbol_name` prefix from `symbol_name`. | Eduard-Mihai Burtescu | -7/+2 | |
| 2019-03-28 | Rollup merge of #59091 - Zoxc:eval_always, r=michaelwoerister | Mazdak Farrokhzad | -3/+7 | |
| Combine input and eval_always query types Hardcoding `Krate` as a dependency of `eval_always` queries doesn't really make sense if we want to use the query system before HIR lowering / hashing. Without that hardcoding they become pretty much identical to `input` queries, so I combined them to a single type. This will regress the `clean` incremental scenario, but that isn't terribly common. r? @michaelwoerister | ||||
| 2019-03-27 | Rollup merge of #57293 - Zoxc:incr-passes3, r=michaelwoerister | Josh Stone | -0/+3 | |
| Make some lints incremental Blocked on https://github.com/rust-lang/rust/pull/57253 r? @michaelwoerister | ||||
| 2019-03-26 | Combine input and eval_always query types | John Kåre Alsaker | -3/+7 | |
| 2019-03-26 | Rollup merge of #59315 - Zoxc:move-query, r=oli-obk | Mazdak Farrokhzad | -139/+4 | |
| Add no_hash to query macro and move some queries over r? @oli-obk | ||||
| 2019-03-25 | Make some lints incremental | John Kåre Alsaker | -0/+3 | |
| 2019-03-22 | address review comments | Esteban Küber | -3/+2 | |
| 2019-03-20 | Add eval_always to query macro and move a query over | John Kåre Alsaker | -12/+0 | |
| 2019-03-20 | Add anon to query macro and move a query over | John Kåre Alsaker | -16/+0 | |
| 2019-03-20 | Add no_force to query macro and move some queries over | John Kåre Alsaker | -49/+2 | |
| 2019-03-20 | Add no_hash to query macro and move some queries over | John Kåre Alsaker | -62/+2 | |
| 2019-03-20 | Add a -Z time option which prints only passes which runs once | John Kåre Alsaker | -15/+14 | |
