summary refs log tree commit diff
path: root/compiler/rustc_metadata/src/rmeta/encoder.rs
AgeCommit message (Expand)AuthorLines
2023-05-19Encode VariantIdx so we can decode variants in the right orderMichael Goulet-1/+2
2023-04-27Encode lifetime param spans tooMichael Goulet-1/+1
2023-04-26Encode def span for ConstParamMichael Goulet-2/+2
2023-04-12resolve: Pre-compute non-reexport module childrenVadim Petrochenkov-47/+15
2023-04-11Split implied and super predicate queriesMichael Goulet-1/+5
2023-04-10rustc_metadata: Filter encoded data more aggressively using `DefKind`Vadim Petrochenkov-10/+127
2023-04-10rustc_metadata: Cleanup `fn encode_info_for_item`Vadim Petrochenkov-62/+33
2023-04-08rustc_middle: Remove `Option` from `module_reexports` queryVadim Petrochenkov-2/+2
2023-04-06Rollup merge of #109984 - scottmcm:less-float, r=NilstriebMatthias Krüger-2/+0
2023-04-06Remove f32 & f64 from MemDecoder/MemEncoderScott McMurray-2/+0
2023-04-04Remove a lock in favor of an AppendOnlyVecOli Scherer-2/+1
2023-03-23Don't split up TreatProjections and TreatParams anymoreMichael Goulet-2/+1
2023-03-22Rollup merge of #109358 - petrochenkov:nosess, r=cjgillotMatthias Krüger-12/+10
2023-03-22rustc: Remove unused `Session` argument from some attribute functionsVadim Petrochenkov-12/+10
2023-03-21RPITITs are DefKind::Opaque with new lowering strategyMichael Goulet-1/+12
2023-03-21Always encode RPITITsSantiago Pastorino-1/+7
2023-03-21LocalCrate keyMichael Goulet-2/+3
2023-03-21Use local key in providersMichael Goulet-8/+4
2023-03-20Rollup merge of #109362 - nnethercote:split-meta-stats-items, r=bjorn3Matthias Krüger-4/+3
2023-03-20Update some names and commentsMichael Goulet-2/+2
2023-03-20Split `items` from `-Zmeta-stats` in two.Nicholas Nethercote-4/+3
2023-03-18Implement FixedSizeEncoding for UnusedGenericParams.Camille GILLOT-3/+1
2023-03-15Rename impl_trait_in_trait_parent to impl_trait_in_trait_parent_fnSantiago Pastorino-1/+1
2023-03-15Auto merge of #109089 - compiler-errors:opt_rpitit_info-follow-up, r=spastorinobors-0/+8
2023-03-14Encode opt_rpitit_info for associated typesMichael Goulet-0/+8
2023-03-14Get impl defaultness using querySantiago Pastorino-2/+3
2023-03-13Better names?Michael Goulet-2/+2
2023-03-13Treat projections with infer as placeholder during fast reject in new solverMichael Goulet-1/+2
2023-03-12Auto merge of #108820 - cjgillot:ensure-on-disk, r=oli-obkbors-3/+3
2023-03-11Use ensure_with_value in a few more places.Camille GILLOT-3/+3
2023-03-06Add tcx::lower_impl_trait_in_trait_to_assoc_ty to avoid accessing through ses...Santiago Pastorino-1/+1
2023-03-03Match unmatched backticks in comments in compiler/est31-1/+1
2023-03-01Properly implement should_encode_fn_impl_trait_in_trait using new unstable op...Santiago Pastorino-3/+12
2023-02-28Descriptive error when users try to combine RPITIT/AFIT with specializationMichael Goulet-29/+1
2023-02-19Add associated_items_for_impl_trait_in_trait querySantiago Pastorino-0/+9
2023-02-17Make encode_attrs use opt_local_def_id_to_hir_id so we can feed it with None ...Santiago Pastorino-2/+2
2023-02-16fix ugly skip_binderKyle Matsuda-1/+2
2023-02-14Add `of_trait` to DefKind::Impl.Camille GILLOT-8/+8
2023-02-13rustdoc: Eliminate remaining uses of resolverVadim Petrochenkov-0/+16
2023-02-10Resolve documentation links in rustc and store the results in metadataVadim Petrochenkov-10/+27
2023-02-05rustc_metadata: Encode/decode `DefPathHash`es without an `Option`Vadim Petrochenkov-2/+2
2023-02-05rustc_metadata: Encode/decode some `LazyArray`s without an `Option`Vadim Petrochenkov-12/+15
2023-02-05rustc_metadata: Support encoding/decoding `LazyArray` without an `Option`Vadim Petrochenkov-3/+3
2023-02-05rustc_metadata: Refactor lazy table reading/writingVadim Petrochenkov-55/+45
2023-01-29Test drop_tracking_mir before querying generator.Camille GILLOT-1/+1
2023-01-29Auto merge of #107406 - cjgillot:eliminate-witnesses, r=compiler-errorsbors-1/+1
2023-01-28Remove `HirId -> LocalDefId` map from HIR.Camille GILLOT-2/+2
2023-01-28Only compute mir_generator_witnesses query in drop_tracking_mir mode.Camille GILLOT-1/+1
2023-01-27Separate witness type computation from the generator transform.Camille GILLOT-0/+4
2023-01-27Auto merge of #107055 - kylematsuda:eb-fn-sig, r=lcnrbors-2/+2