Skip to content

Commit f7eefec

Browse files
committedAug 5, 2024
Auto merge of #128689 - matthiaskrgr:rollup-ukyn8wq, r=matthiaskrgr
Rollup of 5 pull requests Successful merges: - #128385 (rustdoc-json: discard non-local inherent impls for primitives) - #128559 (Don't re-elaborated already elaborated caller bounds in method probe) - #128631 (handle crates when they are not specified for std docs) - #128664 (Add `Debug` impls to API types in `rustc_codegen_ssa`) - #128686 (fix the invalid argument type) r? `@ghost` `@rustbot` modify labels: rollup
2 parents 2b78d92 + 8679840 commit f7eefec

File tree

10 files changed

+56
-61
lines changed

10 files changed

+56
-61
lines changed
 

‎compiler/rustc_codegen_ssa/src/common.rs

+5-5
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ use rustc_span::Span;
88

99
use crate::traits::*;
1010

11-
#[derive(Copy, Clone)]
11+
#[derive(Copy, Clone, Debug)]
1212
pub enum IntPredicate {
1313
IntEQ,
1414
IntNE,
@@ -22,7 +22,7 @@ pub enum IntPredicate {
2222
IntSLE,
2323
}
2424

25-
#[derive(Copy, Clone)]
25+
#[derive(Copy, Clone, Debug)]
2626
pub enum RealPredicate {
2727
RealPredicateFalse,
2828
RealOEQ,
@@ -42,7 +42,7 @@ pub enum RealPredicate {
4242
RealPredicateTrue,
4343
}
4444

45-
#[derive(Copy, Clone, PartialEq)]
45+
#[derive(Copy, Clone, PartialEq, Debug)]
4646
pub enum AtomicRmwBinOp {
4747
AtomicXchg,
4848
AtomicAdd,
@@ -57,7 +57,7 @@ pub enum AtomicRmwBinOp {
5757
AtomicUMin,
5858
}
5959

60-
#[derive(Copy, Clone)]
60+
#[derive(Copy, Clone, Debug)]
6161
pub enum AtomicOrdering {
6262
Unordered,
6363
Relaxed,
@@ -67,7 +67,7 @@ pub enum AtomicOrdering {
6767
SequentiallyConsistent,
6868
}
6969

70-
#[derive(Copy, Clone)]
70+
#[derive(Copy, Clone, Debug)]
7171
pub enum SynchronizationScope {
7272
SingleThread,
7373
CrossThread,

‎compiler/rustc_codegen_ssa/src/traits/builder.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ use crate::mir::operand::{OperandRef, OperandValue};
2323
use crate::mir::place::{PlaceRef, PlaceValue};
2424
use crate::MemFlags;
2525

26-
#[derive(Copy, Clone)]
26+
#[derive(Copy, Clone, Debug)]
2727
pub enum OverflowOp {
2828
Add,
2929
Sub,

‎compiler/rustc_hir_typeck/src/method/probe.rs

+16-12
Original file line numberDiff line numberDiff line change
@@ -774,18 +774,23 @@ impl<'a, 'tcx> ProbeContext<'a, 'tcx> {
774774
// instantiation that replaces `Self` with the object type itself. Hence,
775775
// a `&self` method will wind up with an argument type like `&dyn Trait`.
776776
let trait_ref = principal.with_self_ty(self.tcx, self_ty);
777-
self.elaborate_bounds(iter::once(trait_ref), |this, new_trait_ref, item| {
778-
this.push_candidate(
779-
Candidate { item, kind: ObjectCandidate(new_trait_ref), import_ids: smallvec![] },
780-
true,
781-
);
782-
});
777+
self.assemble_candidates_for_bounds(
778+
traits::supertraits(self.tcx, trait_ref),
779+
|this, new_trait_ref, item| {
780+
this.push_candidate(
781+
Candidate {
782+
item,
783+
kind: ObjectCandidate(new_trait_ref),
784+
import_ids: smallvec![],
785+
},
786+
true,
787+
);
788+
},
789+
);
783790
}
784791

785792
#[instrument(level = "debug", skip(self))]
786793
fn assemble_inherent_candidates_from_param(&mut self, param_ty: ty::ParamTy) {
787-
// FIXME: do we want to commit to this behavior for param bounds?
788-
789794
let bounds = self.param_env.caller_bounds().iter().filter_map(|predicate| {
790795
let bound_predicate = predicate.kind();
791796
match bound_predicate.skip_binder() {
@@ -806,7 +811,7 @@ impl<'a, 'tcx> ProbeContext<'a, 'tcx> {
806811
}
807812
});
808813

809-
self.elaborate_bounds(bounds, |this, poly_trait_ref, item| {
814+
self.assemble_candidates_for_bounds(bounds, |this, poly_trait_ref, item| {
810815
this.push_candidate(
811816
Candidate {
812817
item,
@@ -820,15 +825,14 @@ impl<'a, 'tcx> ProbeContext<'a, 'tcx> {
820825

821826
// Do a search through a list of bounds, using a callback to actually
822827
// create the candidates.
823-
fn elaborate_bounds<F>(
828+
fn assemble_candidates_for_bounds<F>(
824829
&mut self,
825830
bounds: impl Iterator<Item = ty::PolyTraitRef<'tcx>>,
826831
mut mk_cand: F,
827832
) where
828833
F: for<'b> FnMut(&mut ProbeContext<'b, 'tcx>, ty::PolyTraitRef<'tcx>, ty::AssocItem),
829834
{
830-
let tcx = self.tcx;
831-
for bound_trait_ref in traits::transitive_bounds(tcx, bounds) {
835+
for bound_trait_ref in bounds {
832836
debug!("elaborate_bounds(bound_trait_ref={:?})", bound_trait_ref);
833837
for item in self.impl_or_trait_item(bound_trait_ref.def_id()) {
834838
if !self.has_applicable_self(&item) {

‎compiler/rustc_trait_selection/src/traits/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ pub use self::specialize::{
6262
};
6363
pub use self::structural_normalize::StructurallyNormalizeExt;
6464
pub use self::util::{
65-
elaborate, expand_trait_aliases, impl_item_is_final, supertraits, transitive_bounds,
65+
elaborate, expand_trait_aliases, impl_item_is_final, supertraits,
6666
transitive_bounds_that_define_assoc_item, upcast_choices, with_replaced_escaping_bound_vars,
6767
BoundVarReplacer, PlaceholderReplacer, TraitAliasExpander, TraitAliasExpansionInfo,
6868
};

‎compiler/rustc_type_ir/src/elaborate.rs

-9
Original file line numberDiff line numberDiff line change
@@ -264,15 +264,6 @@ pub fn supertraits<I: Interner>(
264264
elaborate(cx, [trait_ref.upcast(cx)]).filter_only_self().filter_to_traits()
265265
}
266266

267-
pub fn transitive_bounds<I: Interner>(
268-
cx: I,
269-
trait_refs: impl Iterator<Item = ty::Binder<I, ty::TraitRef<I>>>,
270-
) -> FilterToTraits<I, Elaborator<I, I::Clause>> {
271-
elaborate(cx, trait_refs.map(|trait_ref| trait_ref.upcast(cx)))
272-
.filter_only_self()
273-
.filter_to_traits()
274-
}
275-
276267
impl<I: Interner> Elaborator<I, I::Clause> {
277268
fn filter_to_traits(self) -> FilterToTraits<I, Self> {
278269
FilterToTraits { _cx: PhantomData, base_iterator: self }

‎src/bootstrap/src/core/build_steps/doc.rs

+12-2
Original file line numberDiff line numberDiff line change
@@ -599,6 +599,16 @@ impl Step for Std {
599599
fn run(self, builder: &Builder<'_>) {
600600
let stage = self.stage;
601601
let target = self.target;
602+
let crates = if self.crates.is_empty() {
603+
builder
604+
.in_tree_crates("sysroot", Some(target))
605+
.iter()
606+
.map(|c| c.name.to_string())
607+
.collect()
608+
} else {
609+
self.crates
610+
};
611+
602612
let out = match self.format {
603613
DocumentationFormat::Html => builder.doc_out(target),
604614
DocumentationFormat::Json => builder.json_doc_out(target),
@@ -627,7 +637,7 @@ impl Step for Std {
627637
extra_args.push("--disable-minification");
628638
}
629639

630-
doc_std(builder, self.format, stage, target, &out, &extra_args, &self.crates);
640+
doc_std(builder, self.format, stage, target, &out, &extra_args, &crates);
631641

632642
// Don't open if the format is json
633643
if let DocumentationFormat::Json = self.format {
@@ -639,7 +649,7 @@ impl Step for Std {
639649
let index = out.join("std").join("index.html");
640650
builder.open_in_browser(index);
641651
} else {
642-
for requested_crate in &*self.crates {
652+
for requested_crate in crates {
643653
if STD_PUBLIC_CRATES.iter().any(|&k| k == requested_crate) {
644654
let index = out.join(requested_crate).join("index.html");
645655
builder.open_in_browser(index);

‎src/bootstrap/src/utils/helpers.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -536,8 +536,7 @@ pub fn get_closest_merge_base_commit(
536536

537537
let merge_base = get_git_merge_base(config, source_dir).unwrap_or_else(|_| "HEAD".into());
538538

539-
git.arg(Path::new("rev-list"));
540-
git.args([&format!("--author={author}"), "-n1", "--first-parent", &merge_base]);
539+
git.args(["rev-list", &format!("--author={author}"), "-n1", "--first-parent", &merge_base]);
541540

542541
if !target_paths.is_empty() {
543542
git.arg("--").args(target_paths);

‎src/librustdoc/formats/cache.rs

+15-23
Original file line numberDiff line numberDiff line change
@@ -310,16 +310,16 @@ impl<'a, 'tcx> DocFolder for CacheBuilder<'a, 'tcx> {
310310
// `public_items` map, so we can skip inserting into the
311311
// paths map if there was already an entry present and we're
312312
// not a public item.
313-
if !self.cache.paths.contains_key(&item.item_id.expect_def_id())
313+
let item_def_id = item.item_id.expect_def_id();
314+
if !self.cache.paths.contains_key(&item_def_id)
314315
|| self
315316
.cache
316317
.effective_visibilities
317-
.is_directly_public(self.tcx, item.item_id.expect_def_id())
318+
.is_directly_public(self.tcx, item_def_id)
318319
{
319-
self.cache.paths.insert(
320-
item.item_id.expect_def_id(),
321-
(self.cache.stack.clone(), item.type_()),
322-
);
320+
self.cache
321+
.paths
322+
.insert(item_def_id, (self.cache.stack.clone(), item.type_()));
323323
}
324324
}
325325
}
@@ -381,9 +381,7 @@ impl<'a, 'tcx> DocFolder for CacheBuilder<'a, 'tcx> {
381381
&& adt.is_fundamental()
382382
{
383383
for ty in generics {
384-
if let Some(did) = ty.def_id(self.cache) {
385-
dids.insert(did);
386-
}
384+
dids.extend(ty.def_id(self.cache));
387385
}
388386
}
389387
}
@@ -396,32 +394,26 @@ impl<'a, 'tcx> DocFolder for CacheBuilder<'a, 'tcx> {
396394
.primitive_type()
397395
.and_then(|t| self.cache.primitive_locations.get(&t).cloned());
398396

399-
if let Some(did) = did {
400-
dids.insert(did);
401-
}
397+
dids.extend(did);
402398
}
403399
}
404400

405401
if let Some(generics) = i.trait_.as_ref().and_then(|t| t.generics()) {
406402
for bound in generics {
407-
if let Some(did) = bound.def_id(self.cache) {
408-
dids.insert(did);
409-
}
403+
dids.extend(bound.def_id(self.cache));
410404
}
411405
}
412406
let impl_item = Impl { impl_item: item };
413-
if impl_item.trait_did().map_or(true, |d| self.cache.traits.contains_key(&d)) {
407+
let impl_did = impl_item.def_id();
408+
let trait_did = impl_item.trait_did();
409+
if trait_did.map_or(true, |d| self.cache.traits.contains_key(&d)) {
414410
for did in dids {
415-
if self.impl_ids.entry(did).or_default().insert(impl_item.def_id()) {
416-
self.cache
417-
.impls
418-
.entry(did)
419-
.or_insert_with(Vec::new)
420-
.push(impl_item.clone());
411+
if self.impl_ids.entry(did).or_default().insert(impl_did) {
412+
self.cache.impls.entry(did).or_default().push(impl_item.clone());
421413
}
422414
}
423415
} else {
424-
let trait_did = impl_item.trait_did().expect("no trait did");
416+
let trait_did = trait_did.expect("no trait did");
425417
self.cache.orphan_trait_impls.push((trait_did, dids, impl_item));
426418
}
427419
None

‎src/librustdoc/json/mod.rs

-6
Original file line numberDiff line numberDiff line change
@@ -216,13 +216,7 @@ impl<'tcx> FormatRenderer<'tcx> for JsonRenderer<'tcx> {
216216
fn after_krate(&mut self) -> Result<(), Error> {
217217
debug!("Done with crate");
218218

219-
debug!("Adding Primitive impls");
220-
for primitive in Rc::clone(&self.cache).primitive_locations.values() {
221-
self.get_impls(*primitive);
222-
}
223-
224219
let e = ExternalCrate { crate_num: LOCAL_CRATE };
225-
226220
let index = (*self.index).clone().into_inner();
227221

228222
debug!("Constructing Output");

‎tests/rustdoc-json/the_smallest.rs

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
// This test asserts that `index` is not polluted with unrelated items.
2+
// See https://github.com/rust-lang/rust/issues/114039
3+
4+
//@ count "$.index[*]" 1
5+
fn main() {}

0 commit comments

Comments
 (0)
Please sign in to comment.