| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2024-03-04 | Avoid using unnecessary queries when printing the query stack in panics | John Kåre Alsaker | -2/+7 | |
| 2024-03-03 | Add a proper `with_no_queries` to printing | John Kåre Alsaker | -11/+4 | |
| 2024-02-28 | Rename `Diagnostic` as `DiagInner`. | Nicholas Nethercote | -2/+2 | |
| I started by changing it to `DiagData`, but that didn't feel right. `DiagInner` felt much better. | ||||
| 2024-02-15 | Replace `NonZero::<_>::new` with `NonZero::new`. | Markus Reiter | -4/+2 | |
| 2024-02-15 | Use generic `NonZero` internally. | Markus Reiter | -2/+2 | |
| 2024-01-09 | Rollup merge of #119527 - klensy:ordering, r=compiler-errors | Guillaume Gomez | -1/+1 | |
| don't reexport atomic::ordering via rustc_data_structures, use std import This looks simpler. | ||||
| 2024-01-08 | Don't check for recursion in generator witness fields | Michael Goulet | -2/+2 | |
| 2024-01-06 | don't reexport atomic::ordering via rustc_data_structures, use std import | klensy | -1/+1 | |
| 2023-12-26 | Auto merge of #119129 - jyn514:verbose, r=compiler-errors,estebank | bors | -2/+5 | |
| rework `-Zverbose` implements the changes described in https://github.com/rust-lang/compiler-team/issues/706 the first commit is only a name change from `-Zverbose` to `-Zverbose-internals` and does not change behavior. the second commit changes diagnostics. possible follow up work: - `ty::pretty` could print more info with `--verbose` than it does currently. `-Z verbose-internals` shows too much info in a way that's not helpful to users. michael had ideas about this i didn't fully understand: https://rust-lang.zulipchat.com/#narrow/stream/233931-t-compiler.2Fmajor-changes/topic/uplift.20some.20-Zverbose.20calls.20and.20rename.20to.E2.80.A6.20compiler-team.23706/near/408984200 - `--verbose` should imply `-Z write-long-types-to-disk=no`. the code in `ty_string_with_limit` should take `--verbose` into account (apparently this affects `Ty::sort_string`, i'm not familiar with this code). writing a file to disk should suggest passing `--verbose`. r? `@compiler-errors` cc `@estebank` | ||||
| 2023-12-24 | Remove `Session` methods that duplicate `DiagCtxt` methods. | Nicholas Nethercote | -1/+1 | |
| Also add some `dcx` methods to types that wrap `TyCtxt`, for easier access. | ||||
| 2023-12-19 | rename to verbose-internals | jyn | -2/+5 | |
| 2023-11-27 | QueryContext: rename try_collect_active_jobs -> collect_active_jobs and ↵ | klensy | -7/+7 | |
| change it's return type from Option<QueryMap> to QueryMap As there currently always Some(...) inside | ||||
| 2023-11-25 | rustc: Make `def_kind` mandatory for all `DefId`s | Vadim Petrochenkov | -2/+2 | |
| 2023-11-21 | Fix `clippy::needless_borrow` in the compiler | Nilstrieb | -1/+1 | |
| `x clippy compiler -Aclippy::all -Wclippy::needless_borrow --fix`. Then I had to remove a few unnecessary parens and muts that were exposed now. | ||||
| 2023-10-28 | Rollup merge of #116534 - cjgillot:no-dep-tasks, r=davidtwco | Jubilee | -2/+0 | |
| Remove -Zdep-tasks. This option is not useful any more, we can use `tracing` and `RUSTC_LOG` to debug the dep-graph. | ||||
| 2023-10-26 | Stash and cancel cycle errors for auto trait leakage in opaques | Michael Goulet | -0/+3 | |
| 2023-10-08 | Remove useless debugging. | Camille GILLOT | -2/+0 | |
| 2023-09-21 | Move `DepKind` to `rustc_query_system` and define it as `u16` | John Kåre Alsaker | -13/+24 | |
| 2023-09-10 | Remove `verbose_generic_activity_with_arg` | John Kåre Alsaker | -2/+1 | |
| 2023-08-27 | Pass ErrorGuaranteed to cycle error | Michael Goulet | -2/+2 | |
| 2023-07-23 | fix couple of clippy findings: | Matthias Krüger | -1/+1 | |
| filter_map_identity iter_kv_map needless_question_mark redundant_at_rest_pattern filter_next derivable_impls | ||||
| 2023-06-27 | Avoid calling queries during query stack printing | Oli Scherer | -3/+3 | |
| 2023-06-21 | Make queries traceable again | Oli Scherer | -1/+9 | |
| 2023-05-21 | Add comment | John Kåre Alsaker | -0/+2 | |
| 2023-05-21 | Replace `QueryStruct` with arrays local to `rustc_query_impl` | John Kåre Alsaker | -64/+66 | |
| 2023-05-19 | Merge some query impl modules into one | John Kåre Alsaker | -143/+125 | |
| 2023-05-18 | Merge query property modules into one | John Kåre Alsaker | -22/+23 | |
| 2023-05-18 | Auto merge of #108938 - chenyukang:yukang/fix-107910-shorten-ice, r=cjgillot | bors | -35/+58 | |
| Shorten backtraces for queries in ICEs r? `@jyn514` Fixes #107910 | ||||
| 2023-05-17 | Fix #107910, Shorten backtraces in ICEs | yukang | -35/+58 | |
| 2023-05-17 | Finish move of query.rs | John Kåre Alsaker | -2/+1 | |
| 2023-05-14 | Specialize query execution for incremental and non-incremental | John Kåre Alsaker | -5/+33 | |
| 2023-04-30 | Use dynamic dispatch for queries | John Kåre Alsaker | -143/+105 | |
| 2023-04-26 | Remove QueryEngine trait | John Kåre Alsaker | -176/+127 | |
| 2023-04-18 | Store hashes in special types so they aren't accidentally encoded as numbers | Ben Kimock | -2/+2 | |
| 2023-04-06 | Address comments | John Kåre Alsaker | -12/+5 | |
| 2023-04-06 | Don't rely on `Debug` impl for `Erased` | John Kåre Alsaker | -1/+6 | |
| 2023-04-06 | Erase query cache values | John Kåre Alsaker | -12/+38 | |
| 2023-03-21 | Use local key in providers | Michael Goulet | -9/+9 | |
| 2023-03-11 | Ensure value is on the on-disk cache before returning. | Camille GILLOT | -0/+23 | |
| 2023-02-26 | Derive Default for query structs | John Kåre Alsaker | -9/+1 | |
| 2023-02-26 | Avoid implementing Debug for QueryConfig | John Kåre Alsaker | -1/+1 | |
| 2023-02-26 | Make `rustc_query_system` take `QueryConfig` by instance. | John Kåre Alsaker | -33/+87 | |
| 2023-02-25 | Move `ensure_sufficient_stack` to `try_execute_query` callers | John Kåre Alsaker | -3/+1 | |
| 2023-02-17 | Auto merge of #108058 - Zoxc:query-ctxtx-byval, r=cjgillot | bors | -13/+13 | |
| Pass `DepContext` and `QueryContext` by value when practical This removes some indirections for a minor performance improvement. <table><tr><td rowspan="2">Benchmark</td><td colspan="1"><b>Before</b></th><td colspan="2"><b>After</b></th></tr><tr><td align="right">Time</td><td align="right">Time</td><td align="right">%</th></tr><tr><td>🟣 <b>clap</b>:check</td><td align="right">1.8294s</td><td align="right">1.8255s</td><td align="right"> -0.21%</td></tr><tr><td>🟣 <b>hyper</b>:check</td><td align="right">0.2667s</td><td align="right">0.2669s</td><td align="right"> 0.07%</td></tr><tr><td>🟣 <b>regex</b>:check</td><td align="right">1.0080s</td><td align="right">1.0063s</td><td align="right"> -0.17%</td></tr><tr><td>🟣 <b>syn</b>:check</td><td align="right">1.6335s</td><td align="right">1.6295s</td><td align="right"> -0.24%</td></tr><tr><td>🟣 <b>syntex_syntax</b>:check</td><td align="right">6.3633s</td><td align="right">6.3344s</td><td align="right"> -0.45%</td></tr><tr><td>Total</td><td align="right">11.1009s</td><td align="right">11.0627s</td><td align="right"> -0.34%</td></tr><tr><td>Summary</td><td align="right">1.0000s</td><td align="right">0.9980s</td><td align="right"> -0.20%</td></tr></table> | ||||
| 2023-02-16 | Move provider fields back to rustc_query_impl | John Kåre Alsaker | -9/+16 | |
| 2023-02-16 | Factor query arena allocation out from query caches | John Kåre Alsaker | -29/+36 | |
| 2023-02-14 | Pass `DepContext` and `QueryContext` by value when practical | John Kåre Alsaker | -13/+13 | |
| 2023-02-09 | Simplify `tls::enter_context`. | Nicholas Nethercote | -1/+1 | |
| 2023-02-02 | Don't cause a cycle when formatting query description that references a FnDef | Michael Goulet | -5/+8 | |
| 2023-01-05 | Fix `uninlined_format_args` for some compiler crates | nils | -1/+1 | |
| Convert all the crates that have had their diagnostic migration completed (except save_analysis because that will be deleted soon and apfloat because of the licensing problem). | ||||
