| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2023-10-21 | Implement JumpThreading pass. | Camille GILLOT | -18/+89 | |
| 2023-10-20 | s/generator/coroutine/ | Oli Scherer | -13/+13 | |
| 2023-10-20 | s/Generator/Coroutine/ | Oli Scherer | -11/+11 | |
| 2023-10-13 | Format all the let chains in compiler | Michael Goulet | -4/+8 | |
| 2023-10-06 | Preserve DebugInfo in DeadStoreElimination. | Camille GILLOT | -0/+21 | |
| 2023-10-02 | have better explanation for `relate_types` | ouz-a | -4/+3 | |
| 2023-10-02 | Add docs, remove code, change subtyper code | ouz-a | -4/+5 | |
| 2023-10-02 | subtyping_projections | ouz-a | -0/+4 | |
| 2023-09-28 | Some tracing cleanups | Oli Scherer | -4/+3 | |
| 2023-09-24 | Auto merge of #115794 - cjgillot:aggregate-no-box, r=davidtwco | bors | -1/+3 | |
| Do not create a DerefLen place for `Box<[T]>`. Fixes https://github.com/rust-lang/rust/issues/115789 | ||||
| 2023-09-23 | Remove GeneratorWitness and rename GeneratorWitnessMIR. | Camille GILLOT | -4/+2 | |
| 2023-09-22 | Rollup merge of #115770 - ouz-a:match_elem_builder, r=lcnr | Matthias Krüger | -32/+113 | |
| Match on elem first while building move paths While working on https://github.com/rust-lang/rust/pull/115025 `@lcnr` and I observed "move_paths_for" function matched on the `Ty` instead of `Projection` which seems flawed as it's the `Projection`s that cause the problem not the type. r? `@lcnr` | ||||
| 2023-09-22 | match array for constantindex and subslice | ouz-a | -8/+9 | |
| 2023-09-22 | better bug message | ouz-a | -3/+7 | |
| 2023-09-22 | remove inner match | ouz-a | -6/+4 | |
| 2023-09-21 | rename mir::Constant -> mir::ConstOperand, mir::ConstKind -> mir::Const | Ralf Jung | -5/+5 | |
| 2023-09-20 | Do not create a DerefLen place for `Box<[T]>`. | Camille GILLOT | -1/+3 | |
| 2023-09-12 | very verbose error handling | ouz-a | -20/+86 | |
| 2023-09-12 | match on elem first | ouz-a | -33/+45 | |
| 2023-09-11 | Support non-scalar constants. | Camille GILLOT | -1/+26 | |
| 2023-09-07 | Correct comment and assumption. | Camille GILLOT | -6/+5 | |
| 2023-09-06 | Support array length. | Camille GILLOT | -0/+36 | |
| 2023-09-05 | Support non-trivial scalars in ConstProp. | Camille GILLOT | -45/+29 | |
| 2023-09-02 | Take `&mut Results` in `ResultsVisitor` | Jason Newcomb | -12/+12 | |
| 2023-08-24 | when terminating during unwinding, show the reason why | Ralf Jung | -10/+10 | |
| 2023-08-20 | give some unwind-related terminators a more clear name | Ralf Jung | -10/+10 | |
| 2023-08-16 | Use Terminator::edges for backward analysis too. | Camille GILLOT | -1/+1 | |
| 2023-08-16 | Only evaluate yield place after resume in liveness. | Camille GILLOT | -15/+31 | |
| 2023-08-16 | Specify that method only applies statement effects. | Camille GILLOT | -9/+14 | |
| 2023-08-16 | Rename YieldResumeEffect. | Camille GILLOT | -6/+6 | |
| 2023-08-16 | Make TerminatorEdge plural. | Camille GILLOT | -39/+39 | |
| 2023-08-16 | Rename MaybeUnreachable. | Camille GILLOT | -47/+53 | |
| 2023-08-16 | Use TerminatorEdge for dataflow-const-prop. | Camille GILLOT | -18/+31 | |
| 2023-08-16 | Only run MaybeInitializedPlaces once for drop elaboration. | Camille GILLOT | -9/+63 | |
| 2023-08-16 | Allow apply_terminator_effect to customize edges. | Camille GILLOT | -295/+177 | |
| 2023-08-16 | Introduce MaybeUnreachable. | Camille GILLOT | -3/+136 | |
| 2023-08-16 | Move domain_size to GenKillAnalysis. | Camille GILLOT | -14/+39 | |
| 2023-08-16 | Move initialization dataflow impls into their own module. | Camille GILLOT | -749/+756 | |
| 2023-08-16 | Create bottom on-the-fly instead of cloning it. | Camille GILLOT | -3/+4 | |
| 2023-08-16 | Simplify for_each_mut_borrow. | Camille GILLOT | -58/+9 | |
| 2023-08-06 | Rollup merge of #114505 - ouz-a:cleanup_mir, r=RalfJung | Matthias Krüger | -1/+1 | |
| Add documentation to has_deref Documentation of `has_deref` needed some polish to be more clear about where it should be used and what's it's purpose. cc https://github.com/rust-lang/rust/issues/114401 r? `@RalfJung` | ||||
| 2023-08-06 | cleanup misinformation regarding has_deref | ouz-a | -1/+1 | |
| 2023-08-01 | Use upvar_tys in more places, make it a list | Michael Goulet | -8/+2 | |
| 2023-07-30 | inline format!() args up to and including rustc_codegen_llvm | Matthias Krüger | -2/+2 | |
| 2023-07-19 | Turn copy into moves during DSE. | Camille GILLOT | -1/+2 | |
| 2023-07-14 | refactor(rustc_middle): Substs -> GenericArg | Mahdi Dibaiee | -28/+32 | |
| 2023-07-12 | Re-format let-else per rustfmt update | Mark Rousskov | -2/+6 | |
| 2023-07-11 | Auto merge of #113316 - DrMeepster:underefer_perf, r=oli-obk | bors | -122/+184 | |
| Rewrite `UnDerefer`, again This PR is intended to improve the perf regression introduced by #112882. `UnDerefer` has been separated out again for borrowck reasons. It was a bit overzealous to remove it in the previous PR. r? `@oli-obk` | ||||
| 2023-07-10 | optimization round 2 | DrMeepster | -34/+96 | |
| - moved work from `find_local` to `gather_statement` - created custom iterator for `iter_projections` - reverted change from `IndexVec` to `FxIndexMap` | ||||
| 2023-07-05 | Move `TyCtxt::mk_x` to `Ty::new_x` where applicable | Boxy | -5/+8 | |
