| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2025-01-11 | rename `BitSet` to `DenseBitSet` | Rémy Rakic | -4/+4 | |
| This should make it clearer that this bitset is dense, with the advantages and disadvantages that it entails. | ||||
| 2024-12-22 | Begin to implement type system layer of unsafe binders | Michael Goulet | -0/+2 | |
| 2024-11-28 | uplift fold_regions to rustc_type_ir | lcnr | -1/+2 | |
| 2024-11-23 | no more Reveal :( | lcnr | -5/+6 | |
| 2024-11-21 | Stop being so bail-y in candidate assembly | Michael Goulet | -5/+1 | |
| 2024-11-04 | ty::KContainer -> ty::AssocItemContainer::K | Michael Goulet | -1/+1 | |
| 2024-10-30 | Merge HostPolarity and BoundConstness | Michael Goulet | -1/+1 | |
| 2024-10-24 | Be better at enforcing that const_conditions is only called on const items | Michael Goulet | -6/+7 | |
| 2024-10-24 | Implement const effect predicate in new solver | Michael Goulet | -0/+9 | |
| 2024-09-22 | Reformat using the new identifier sorting from rustfmt | Michael Goulet | -2/+2 | |
| 2024-07-29 | Reformat `use` declarations. | Nicholas Nethercote | -2/+4 | |
| The previous commit updated `rustfmt.toml` appropriately. This commit is the outcome of running `x fmt --all` with the new formatting options. | ||||
| 2024-05-26 | Give EarlyBinder a tcx parameter | Michael Goulet | -2/+2 | |
| We are gonna need it to uplift EarlyBinder | ||||
| 2024-05-23 | Remove `#[macro_use] extern crate tracing` from `rustc_ty_utils`. | Nicholas Nethercote | -0/+1 | |
| 2024-05-16 | Rename ToPredicate for Upcast | Michael Goulet | -2/+2 | |
| 2024-05-13 | Auto merge of #125076 - compiler-errors:alias-term, r=lcnr | bors | -1/+1 | |
| Split out `ty::AliasTerm` from `ty::AliasTy` Splitting out `AliasTerm` (for use in project and normalizes goals) and `AliasTy` (for use in `ty::Alias`) r? lcnr | ||||
| 2024-05-13 | split out AliasTy -> AliasTerm | Michael Goulet | -1/+1 | |
| 2024-05-13 | Remove `extern crate rustc_middle` from `rustc_ty_utils`. | Nicholas Nethercote | -0/+1 | |
| 2024-04-30 | Give items related to issue 33140 a more meaningful name | León Orell Valerian Liehr | -15/+17 | |
| 2024-04-16 | Fail candidate assembly for erroneous types | Gurinder Singh | -2/+2 | |
| Trait predicates for types which have errors may still evaluate to OK leading to downstream ICEs. Now we return a selection error for such types in candidate assembly and thereby prevent such issues | ||||
| 2024-04-08 | Actually create ranged int types in the type system. | Oli Scherer | -0/+2 | |
| 2024-03-18 | address nits | Lukas Markeffsky | -7/+4 | |
| 2024-03-14 | clean up ADT sized constraint computation | Lukas Markeffsky | -70/+67 | |
| 2024-03-14 | make `Representability::Infinite` carry `ErrorGuaranteed` | Lukas Markeffsky | -2/+2 | |
| 2024-03-07 | Apply `EarlyBinder` only to `TraitRef` in `ImplTraitHeader` | Yoshitomo Nakanishi | -3/+2 | |
| 2024-03-05 | Convert `TypeVisitor` and `DefIdVisitor` to use `VisitorResult` | Jason Newcomb | -7/+3 | |
| 2024-02-12 | Stop calling `impl_polarity` when `impl_trait_ref` was also called | Oli Scherer | -3/+4 | |
| 2024-02-06 | Add CoroutineClosure to TyKind, AggregateKind, UpvarArgs | Michael Goulet | -1/+3 | |
| 2023-12-12 | Move some methods from `tcx.hir()` to `tcx` | zetanumbers | -2/+2 | |
| Renamings: - find -> opt_hir_node - get -> hir_node - find_by_def_id -> opt_hir_node_by_def_id - get_by_def_id -> hir_node_by_def_id Fix rebase changes using removed methods Use `tcx.hir_node_by_def_id()` whenever possible in compiler Fix clippy errors Fix compiler Apply suggestions from code review Co-authored-by: Vadim Petrochenkov <vadim.petrochenkov@gmail.com> Add FIXME for `tcx.hir()` returned type about its removal Simplify with with `tcx.hir_node_by_def_id` | ||||
| 2023-11-21 | Fix `clippy::needless_borrow` in the compiler | Nilstrieb | -2/+2 | |
| `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-20 | Reduce exposure of some items. | Nicholas Nethercote | -1/+1 | |
| 2023-11-15 | Re-format code with new rustfmt | Mark Rousskov | -5/+1 | |
| 2023-11-13 | rename `ReLateBound` to `ReBound` | lcnr | -2/+2 | |
| other changes: - `Region::new_late_bound` -> `Region::new_bound` - `Region::is_late_bound` -> `Region::is_bound` | ||||
| 2023-10-20 | s/Generator/Coroutine/ | Oli Scherer | -2/+2 | |
| 2023-10-20 | Adjust imports | Michael Goulet | -1/+1 | |
| 2023-10-13 | Format all the let chains in compiler | Michael Goulet | -10/+24 | |
| 2023-09-29 | a small wf and clause cleanup | lcnr | -5/+4 | |
| 2023-09-23 | Remove GeneratorWitness and rename GeneratorWitnessMIR. | Camille GILLOT | -7/+1 | |
| 2023-09-21 | Record asyncness span in HIR | Michael Goulet | -2/+5 | |
| 2023-09-20 | remove `impl<'tcx> ToPredicate<'tcx, Clause<'tcx>> for ↵ | Ziru Niu | -8/+5 | |
| PolyProjectionPredicate<'tcx>` | ||||
| 2023-08-01 | Fix a comment | Michael Goulet | -1/+2 | |
| 2023-08-01 | don't create a predicate for just a comparison | Michael Goulet | -4/+10 | |
| 2023-08-01 | Convert adt_sized_constraint to early-binder, use list | Michael Goulet | -4/+7 | |
| 2023-07-31 | Rollup merge of #114267 - compiler-errors:rpitit-opaque-bounds, r=spastorino | Matthias Krüger | -2/+4 | |
| Map RPITIT's opaque type bounds back from projections to opaques An RPITIT in a program's AST is eventually translated into both a projection GAT and an opaque. The opaque is used for default trait methods, like: ``` trait Foo { fn bar() -> impl Sized { 0i32 } } ``` The item bounds for both the projection and opaque are identical, and both have a *projection* self ty. This is mostly okay, since we can normalize this projection within the default trait method body to the opaque, but it does two things: 1. it leads to bugs in places where we don't normalize item bounds, like `deduce_future_output_from_obligations` 2. it leads to extra match arms that are both suspicious looking and also easy to miss This PR maps the opaque type bounds of the RPITIT's *opaque* back to the opaque's self type to avoid this quirk. Then we can fix the UI test for #108304 (1.) and also remove a bunch of match arms (2.). Fixes #108304 r? `@spastorino` | ||||
| 2023-07-31 | We don't need impl_trait_in_trait_parent_fn anymore | Michael Goulet | -2/+4 | |
| 2023-07-30 | Don't install default projection bound for RPITITs | Michael Goulet | -1/+3 | |
| 2023-07-27 | Remove `constness` from `ParamEnv` | Deadbeef | -77/+1 | |
| 2023-07-17 | Rename arg_iter to iter_instantiated | Michael Goulet | -2/+2 | |
| 2023-07-17 | Remove `instance_def_size_estimate` query. | Nicholas Nethercote | -17/+0 | |
| It doesn't seem worthwhile now that `MonoItem::size_estimate` is called much less often. | ||||
| 2023-07-14 | refactor(rustc_middle): Substs -> GenericArg | Mahdi Dibaiee | -15/+13 | |
| 2023-07-08 | Replace RPITIT current impl with new strategy that lowers as a GAT | Santiago Pastorino | -8/+2 | |
