| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2023-01-17 | Remove double spaces after dots in comments | Maybe Waffle | -9/+9 | |
| 2023-01-05 | Fix `uninlined_format_args` for some compiler crates | nils | -31/+22 | |
| 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). | ||||
| 2023-01-02 | Auto merge of #106307 - Nilstrieb:dynamic->static, r=cjgillot | bors | -95/+73 | |
| Abolish `QueryVTable` in favour of more assoc items on `QueryConfig` This may introduce additional mono _but_ may help const fold things better and especially may help not constructing a `QueryVTable` anymore which is cheap but not free. | ||||
| 2023-01-02 | Abolish `QueryVTable` in favour of more assoc items on `QueryConfig` | Nilstrieb | -95/+73 | |
| This may introduce additional mono _but_ may help const fold things better and especially may help not constructing a `QueryVTable` anymore which is cheap but not free. | ||||
| 2022-12-25 | Ignore span references from diagnostics. | Camille GILLOT | -2/+4 | |
| The diagnostics are replayed at the correct place anyway. | ||||
| 2022-12-24 | Rollup merge of #105975 - jeremystucki:rustc-remove-needless-lifetimes, r=eholk | Matthias Krüger | -2/+2 | |
| rustc: Remove needless lifetimes | ||||
| 2022-12-23 | Auto merge of #105550 - gimbles:master, r=Nilstrieb | bors | -92/+116 | |
| Use `DepKind` instead of `&'static str` in `QueryStackFrame` `@rustbot` author Fixes #105168 | ||||
| 2022-12-23 | Use DepKind instead of &str | gimbles | -92/+116 | |
| 2022-12-20 | rustc: Remove needless lifetimes | Jeremy Stucki | -2/+2 | |
| 2022-12-18 | A few small cleanups for `newtype_index` | Nilstrieb | -4/+3 | |
| Remove the `..` from the body, only a few invocations used it and it's inconsistent with rust syntax. Use `;` instead of `,` between consts. As the Rust syntax gods inteded. | ||||
| 2022-12-18 | Make `#[max]` an attribute in `newtype_index` | Nilstrieb | -1/+1 | |
| 2022-12-14 | Auto merge of #105233 - mejrs:always_eager, r=estebank | bors | -1/+1 | |
| Always evaluate vecs of subdiagnostics eagerly See https://rust-lang.zulipchat.com/#narrow/stream/336883-i18n/topic/.23100717.20lists!/near/310186705 for context | ||||
| 2022-12-10 | compiler: remove unnecessary imports and qualified paths | KaDiWa | -6/+4 | |
| 2022-12-09 | Fold `Definitions` into the untracked data | Oli Scherer | -5/+3 | |
| 2022-12-09 | Move the untracked cstore and source_span into a struct | Oli Scherer | -14/+6 | |
| 2022-12-05 | feed resolver_for_lowering instead of storing it in a field | Oli Scherer | -6/+9 | |
| 2022-12-04 | Always evaluate vecs of subdiagnostics eagerly | mejrs | -1/+1 | |
| 2022-12-01 | Fill in `def_span` when creating def ids. | Oli Scherer | -1/+2 | |
| This makes sure that ICEing because of def ids created outside of ast lowering will be able to produce a query backtrace and not cause a double panic because of trying to call the `def_span` query | ||||
| 2022-11-29 | Sanity check computed value for feeable queries. | Camille GILLOT | -3/+20 | |
| 2022-11-29 | Expand hash check. | Camille GILLOT | -21/+28 | |
| 2022-11-29 | Allow to set a query's result as a side effect. | Camille GILLOT | -0/+82 | |
| 2022-11-29 | Sanity check fingerprints in the dep-graph. | Camille GILLOT | -19/+39 | |
| 2022-11-27 | Prefer doc comments over `//`-comments in compiler | Maybe Waffle | -12/+12 | |
| 2022-11-24 | Rollup merge of #104780 - BoxyUwU:error_reported_not_be_bad, r=oli-obk | Matthias Krüger | -1/+1 | |
| make `error_reported` check for delayed bugs Fixes #104768 `error_reported()` was only checking if there were errors emitted, not for `delay_bug`s which can also be a source of `ErrorGuaranteed`. I assume the same is true of `lint_err_count` but i dont know | ||||
| 2022-11-24 | make `error_reported` check for delayed bugs | Boxy | -1/+1 | |
| 2022-11-24 | Auto merge of #103808 - cjgillot:vec-cache, r=TaKO8Ki | bors | -12/+193 | |
| Use an IndexVec to cache queries with index-like key Revival of an old idea. Let's see if it has more effect. r? `@ghost` | ||||
| 2022-11-11 | Hash spans when interning. | Camille GILLOT | -37/+2 | |
| 2022-11-06 | Rename `Ctxt` and `CTX` to `Tcx` and `Qcx` | Nilstrieb | -109/+109 | |
| This makes it consistent and clear which context is used. | ||||
| 2022-11-06 | Rename `tcx` to `qcx` when it's a `QueryContext` | Nilstrieb | -94/+94 | |
| 2022-11-06 | Improve tracing logging | Nilstrieb | -43/+17 | |
| 2022-11-06 | Rename `incremental_verify_ich_cold` to `incremental_verify_ich_failed` | Nilstrieb | -8/+12 | |
| 2022-11-05 | Merge `QueryDescription` into `QueryConfig` | Nilstrieb | -27/+27 | |
| `QueryDescription` has gone through a lot of refactoring and doesn't make sense anymore. | ||||
| 2022-11-01 | Use Key impl to select cache. | Camille GILLOT | -1/+27 | |
| 2022-11-01 | Use VecCache for LocalDefId. | Camille GILLOT | -1/+175 | |
| 2022-11-01 | Remove CacheSelector. | Camille GILLOT | -20/+1 | |
| 2022-10-23 | Migrate all diagnostics | Nilstrieb | -15/+15 | |
| 2022-10-14 | Remove the `describe` method from the `QueryDescription` trait | nils | -2/+0 | |
| It was called directly already, but now it's even more useless since it just forwards to the free function. Call it directly. | ||||
| 2022-10-10 | query_system: finish migration | David Wood | -12/+5 | |
| Using eager translation, migrate the remaining repeated cycle stack diagnostic. Signed-off-by: David Wood <david.wood@huawei.com> | ||||
| 2022-10-10 | errors: `AddToDiagnostic::add_to_diagnostic_with` | David Wood | -2/+5 | |
| `AddToDiagnostic::add_to_diagnostic_with` is similar to the previous `AddToDiagnostic::add_to_diagnostic` but takes a function that can be used by the caller to modify diagnostic messages originating from the subdiagnostic (such as performing translation eagerly). `add_to_diagnostic` now just calls `add_to_diagnostic_with` with an empty closure. Signed-off-by: David Wood <david.wood@huawei.com> | ||||
| 2022-10-07 | Rewrite representability | Cameron Steffen | -11/+20 | |
| 2022-10-01 | Allow query system to recover a HirId. | Camille GILLOT | -1/+5 | |
| 2022-09-30 | create def ids for impl traits during ast lowering | Santiago Pastorino | -2/+2 | |
| 2022-09-26 | remove cfg(bootstrap) | Pietro Albini | -1/+0 | |
| 2022-09-25 | Move the `codegen_unit` debug assert from `rustc_query_system` to `query_impl` | Joshua Nelson | -20/+0 | |
| This allows removing a function from the `DepKind` trait. | ||||
| 2022-09-25 | Move some more code from rustc_middle to rustc_query_system | Joshua Nelson | -0/+12 | |
| 2022-09-25 | Move functions on `DepKindStruct` from rustc_middle to rustc_query_system | Joshua Nelson | -5/+52 | |
| 2022-09-25 | Move `DepKindStruct` from rustc_middle to rustc_query_system | Joshua Nelson | -1/+62 | |
| 2022-09-24 | separate definitions and `HIR` owners | Takayuki Maeda | -2/+5 | |
| fix a ui test use `into` fix clippy ui test fix a run-make-fulldeps test implement `IntoQueryParam<DefId>` for `OwnerId` use `OwnerId` for more queries change the type of `ParentOwnerIterator::Item` to `(OwnerId, OwnerNode)` | ||||
| 2022-09-22 | Revert "Auto merge of #101620 - cjgillot:compute_lint_levels_by_def, r=oli-obk" | Camille GILLOT | -5/+1 | |
| This reverts commit 2cb9a65684dba47c52de8fa938febf97a73e70a9, reversing changes made to 750bd1a7ff3e010611b97ee75d30b7cbf5f3a03c. | ||||
| 2022-09-21 | FIX - adopt new Diagnostic naming in newly migrated modules | Jhonny Bill Mena | -2/+2 | |
| FIX - ambiguous Diagnostic link in docs UPDATE - rename diagnostic_items to IntoDiagnostic and AddToDiagnostic [Gardening] FIX - formatting via `x fmt` FIX - rebase conflicts. NOTE: Confirm wheather or not we want to handle TargetDataLayoutErrorsWrapper this way DELETE - unneeded allow attributes in Handler method FIX - broken test FIX - Rebase conflict UPDATE - rename residual _SessionDiagnostic and fix LintDiag link | ||||
