| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2024-06-03 | Add cycle errors to ScrubbedTraitError to remove a couple more calls to ↵ | Michael Goulet | -26/+17 | |
| new_with_diagnostics | ||||
| 2024-06-03 | Move FulfillmentErrorCode to rustc_trait_selection too | Michael Goulet | -2/+2 | |
| 2024-06-03 | Opt-in diagnostics reporting to avoid doing extra work in the new solver | Michael Goulet | -13/+21 | |
| 2024-05-13 | split out AliasTy -> AliasTerm | Michael Goulet | -8/+2 | |
| 2024-05-10 | Apply nits, make some bounds into supertraits on inherent traits | Michael Goulet | -1/+1 | |
| 2024-05-10 | Lift `Lift` | Michael Goulet | -1/+1 | |
| 2024-05-02 | Use ObligationCtxt in favor of TraitEngine in many places | Michael Goulet | -7/+6 | |
| 2024-04-30 | Remove `extern crate tracing` from numerous crates. | Nicholas Nethercote | -3/+5 | |
| 2024-04-29 | Remove `extern crate rustc_middle` from numerous crates. | Nicholas Nethercote | -2/+2 | |
| 2024-03-07 | Merge `check_mod_impl_wf` and `check_mod_type_wf` | Oli Scherer | -1/+8 | |
| 2024-02-20 | Rename some normalization-related items | León Orell Valerian Liehr | -16/+17 | |
| 2024-02-19 | `normalize_projection_ty` is not used with next-solver | lcnr | -14/+13 | |
| 2024-02-12 | Dejargnonize subst | Shoyu Vanilla | -1/+1 | |
| 2024-02-06 | Invert diagnostic lints. | Nicholas Nethercote | -2/+0 | |
| That is, change `diagnostic_outside_of_impl` and `untranslatable_diagnostic` from `allow` to `deny`, because more than half of the compiler has be converted to use translated diagnostics. This commit removes more `deny` attributes than it adds `allow` attributes, which proves that this change is warranted. | ||||
| 2024-01-25 | Remove unused features | clubby789 | -1/+0 | |
| 2024-01-17 | Correctly handle normalization in implied bounds | Ali MJ Al-Nasrawy | -1/+17 | |
| Special-case Bevy dependents to not error | ||||
| 2024-01-12 | Remove redundant Code from FulfillmentErrorCode variants | Michael Goulet | -2/+2 | |
| 2023-12-07 | add unused `NormalizesTo` predicate | lcnr | -0/+1 | |
| 2023-11-22 | Auto merge of #118120 - compiler-errors:closure-kind, r=lcnr | bors | -1/+0 | |
| Remove `PredicateKind::ClosureKind` We don't need the `ClosureKind` predicate kind -- instead, `Fn`-family trait goals are left as ambiguous, and we only need to make progress on `FnOnce` projection goals for inference purposes. This is similar to how we do confirmation of `Fn`-family trait and projection goals in the new trait solver, which also doesn't use the `ClosureKind` predicate. Some hacky logic is added in the second commit so that we can keep the error messages the same. | ||||
| 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-11-21 | Remove ClosureKind predicate kind | Michael Goulet | -1/+0 | |
| 2023-11-13 | Remove `-Zperf-stats`. | Nicholas Nethercote | -9/+0 | |
| The included measurements have varied over the years. At one point there were quite a few more, but #49558 deleted a lot that were no longer used. Today there's just four, and it's a motley collection that doesn't seem particularly valuable. I think it has been well and truly subsumed by self-profiling, which collects way more data. | ||||
| 2023-11-03 | Auto merge of #117507 - nnethercote:rustc_span, r=Nilstrieb | bors | -1/+1 | |
| `rustc_span` cleanups Just some things I found while looking over this crate. r? `@oli-obk` | ||||
| 2023-11-02 | dropck_outlives check generator witness needs_drop | lcnr | -1/+2 | |
| 2023-11-02 | Minimize `pub` usage in `source_map.rs`. | Nicholas Nethercote | -1/+1 | |
| Most notably, this commit changes the `pub use crate::*;` in that file to `use crate::*;`. This requires a lot of `use` items in other crates to be adjusted, because everything defined within `rustc_span::*` was also available via `rustc_span::source_map::*`, which is bizarre. The commit also removes `SourceMap::span_to_relative_line_string`, which is unused. | ||||
| 2023-09-13 | Detect cycle errors hidden by opaques during monomorphization | Michael Goulet | -1/+25 | |
| 2023-07-14 | refactor(rustc_middle): Substs -> GenericArg | Mahdi Dibaiee | -7/+7 | |
| 2023-07-06 | get rid of a bit more calls to poly_select | Michael Goulet | -2/+2 | |
| 2023-07-06 | Separate select calls that don't need a binder | Michael Goulet | -1/+1 | |
| 2023-07-03 | remove TypeWellFormedFromEnv | Michael Goulet | -2/+1 | |
| 2023-07-03 | Remove chalk from the compiler | Michael Goulet | -2203/+1 | |
| 2023-07-01 | Update chalk | Nilstrieb | -0/+2 | |
| 2023-06-27 | Remove unnecessary DefineOpaqueTypes::Bubble from codegen | Michael Goulet | -13/+2 | |
| 2023-06-26 | TypeWellFormedInEnv | Michael Goulet | -9/+10 | |
| 2023-06-26 | Migrate predicates_of and caller_bounds to Clause | Michael Goulet | -44/+31 | |
| 2023-06-23 | Rollup merge of #112963 - oli-obk:tait_solver_decoupling, r=compiler-errors | Michael Goulet | -17/+6 | |
| Stop bubbling out hidden types from the eval obligation queries r? `@compiler-errors` I don't know why these were added, but they are not needed anymore. The relevant test is unaffected and I didn't see anything interesting in logging that would have justified it. This PR has no effect on the new solver behaviour of https://github.com/rust-lang/rust/blob/cf2dff2b1e3fa55fa5415d524200070d0d7aacfe/tests/ui/impl-trait/issue-99642.rs (which is overflow) and https://github.com/rust-lang/rust/blob/cf2dff2b1e3fa55fa5415d524200070d0d7aacfe/tests/ui/impl-trait/issue-99642-2.rs (which is "unstable certainty ICE") | ||||
| 2023-06-23 | Stop bubbling out hidden types from the eval obligation queries | Oli Scherer | -17/+6 | |
| 2023-06-22 | Migrate item_bounds to ty::Clause | Michael Goulet | -2/+4 | |
| 2023-06-19 | s/Clause/ClauseKind | Michael Goulet | -35/+35 | |
| 2023-06-17 | Move ConstEvaluatable to Clause | Michael Goulet | -5/+5 | |
| 2023-06-17 | Move WF goal to clause | Michael Goulet | -5/+5 | |
| 2023-06-16 | Add `AliasKind::Weak` for type aliases. | Oli Scherer | -1/+34 | |
| Only use it when the type alias contains an opaque type. Also does wf-checking on such type aliases. | ||||
| 2023-06-14 | s/drain_filter/extract_if/ for Vec, Btree{Map,Set} and LinkedList | The 8472 | -1/+0 | |
| 2023-06-06 | Make TraitEngine::new use the right solver, add compare mode | Michael Goulet | -1/+1 | |
| 2023-06-06 | New trait solver is a property of inference context | Michael Goulet | -1/+1 | |
| 2023-05-29 | Rename `tcx.mk_re_*` => `Region::new_*` | Maybe Waffle | -11/+15 | |
| 2023-05-28 | Make EarlyBinder's inner value private; and fix all of the resulting errors | Kyle Matsuda | -1/+1 | |
| 2023-05-27 | Uplift complex type ops back into typeck so we can call them locally | Michael Goulet | -540/+15 | |
| 2023-05-25 | Fallible<_> -> Result<_, NoSolution> | Michael Goulet | -4/+4 | |
| 2023-05-25 | Prepopulate opaques in canonical input | Michael Goulet | -0/+1 | |
