about summary refs log tree commit diff
path: root/compiler/rustc_pattern_analysis/src/rustc.rs
AgeCommit message (Expand)AuthorLines
2024-03-22Programmatically convert some of the pat ctorsMichael Goulet-1/+1
2024-03-21Rollup merge of #122644 - Nadrieril:complexity-tests, r=compiler-errorsMatthias Krüger-3/+4
2024-03-20Add barest-bones deref patternsNadrieril-0/+6
2024-03-19Improve the `WitnessPat: Debug` implNadrieril-3/+4
2024-03-18Rollup merge of #121823 - Nadrieril:never-witnesses, r=compiler-errorsMatthias Krüger-3/+4
2024-03-13Rollup merge of #122437 - Nadrieril:no-after-max, r=compiler-errorsMatthias Krüger-1/+1
2024-03-13Remove `MaybeInfiniteInt::JustAfterMax`Nadrieril-1/+1
2024-03-13Rename `RustcMatchCheckCtxt` -> `RustcPatCtxt`Nadrieril-23/+18
2024-03-13Rename `TypeCx` -> `PatCx`Nadrieril-2/+2
2024-03-12Add `Constructor::Never`Nadrieril-3/+4
2024-03-11`DeconstructedPat.data` is always present nowNadrieril-4/+4
2024-03-11Store field indices in `DeconstructedPat` to avoid virtual wildcardsNadrieril-23/+26
2024-03-11Store pattern arity in `DeconstructedPat`Nadrieril-3/+20
2024-03-09Lint small gaps between rangesNadrieril-1/+65
2024-03-09Make `MaybeInfiniteInt::plus_one/minus_one` fallibleNadrieril-3/+3
2024-03-03Add new `pattern_complexity` attribute to add possibility to limit and check ...Guillaume Gomez-0/+5
2024-03-01Auto merge of #121728 - tgross35:f16-f128-step1-ty-updates, r=compiler-errorsbors-0/+2
2024-02-28Add `f16` and `f128` to `rustc_type_ir::FloatTy` and `rustc_abi::Primitive`Trevor Gross-0/+2
2024-02-28Rename `Skip` to `PrivateUninhabited`Nadrieril-10/+13
2024-02-28SimplifyNadrieril-46/+34
2024-02-28Don't filter out skipped fieldsNadrieril-10/+5
2024-02-28Add special `Skip` constructorNadrieril-21/+5
2024-02-28Push the decision to skip fields further downNadrieril-7/+9
2024-02-28Push down the decision to skip fieldsNadrieril-16/+22
2024-02-12Dejargnonize substShoyu Vanilla-1/+1
2024-02-06Rollup merge of #120331 - Nadrieril:no-arena, r=compiler-errorsMatthias Krüger-40/+29
2024-02-06Add CoroutineClosure to TyKind, AggregateKind, UpvarArgsMichael Goulet-1/+2
2024-02-05Auto merge of #120313 - Nadrieril:graceful-error, r=compiler-errorsbors-1/+1
2024-02-03Rollup merge of #120517 - Nadrieril:lower-never-as-wildcard, r=compiler-errorsMatthias Krüger-2/+3
2024-01-31Remove `pattern_arena` from `RustcMatchCheckCtxt`Nadrieril-7/+5
2024-01-31Use a `Vec` instead of a slice in `DeconstructedPat`Nadrieril-33/+24
2024-01-31Gracefully abort on type incompatibilityNadrieril-1/+1
2024-01-31It is correct to lower `!` to `_`.Nadrieril-2/+3
2024-01-30Limit the use of `PlaceCtxt`Nadrieril-1/+0
2024-01-30Make `PatternColumn` generic in `Cx`Nadrieril-4/+0
2024-01-27Stop using derivative in rustc_pattern_analysisLaurențiu Nicola-2/+6
2024-01-26Rollup merge of #118803 - Nadrieril:min-exhaustive-patterns, r=compiler-errorsMatthias Krüger-1/+6
2024-01-25Rollup merge of #120318 - Nadrieril:share-debug-impl, r=compiler-errorsMatthias Krüger-99/+11
2024-01-25Implement feature gate logicNadrieril-1/+6
2024-01-24Most of the `DeconstructedPat` `Debug` impl is reusableNadrieril-99/+11
2024-01-24Let `ctor_sub_tys` return any Iterator they wantNadrieril-13/+13
2024-01-23Rename `TyCtxt::emit_spanned_lint` as `TyCtxt::emit_node_span_lint`.Nicholas Nethercote-1/+1
2024-01-20Remove Ty: Copy boundNadrieril-10/+10
2024-01-15Remove the unused `overlapping_range_endpoints` VecNadrieril-2/+0
2024-01-15Lint overlapping ranges directly from exhaustivenessNadrieril-8/+27
2024-01-12rustc_pattern_analysis no longer needs to be passed an arenaNadrieril-2/+4
2024-01-11Factor out collection of overlapping rangesNadrieril-0/+2
2024-01-07Abort analysis on type errorNadrieril-4/+13
2024-01-07Add an error path to the algorithmNadrieril-0/+2
2024-01-01Statically enforce revealing of opaquesNadrieril-63/+112