Skip to content

Commit 05b9f0e

Browse files
authored
Rollup merge of #102483 - spastorino:create-defs-on-lowering, r=cjgillot
create def ids for impl traits during ast lowering r? `@cjgillot`
2 parents 9ec772e + b2bef02 commit 05b9f0e

File tree

6 files changed

+30
-36
lines changed

6 files changed

+30
-36
lines changed

compiler/rustc_ast_lowering/src/lib.rs

+18-9
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ use rustc_hir::def_id::{LocalDefId, CRATE_DEF_ID};
6161
use rustc_hir::definitions::DefPathData;
6262
use rustc_hir::{ConstArg, GenericArg, ItemLocalId, ParamName, TraitCandidate};
6363
use rustc_index::vec::{Idx, IndexVec};
64-
use rustc_middle::span_bug;
6564
use rustc_middle::ty::{ResolverAstLowering, TyCtxt};
65+
use rustc_middle::{bug, span_bug};
6666
use rustc_session::parse::feature_err;
6767
use rustc_span::hygiene::MacroKind;
6868
use rustc_span::source_map::DesugaringKind;
@@ -1060,13 +1060,7 @@ impl<'a, 'hir> LoweringContext<'a, 'hir> {
10601060
// Desugar `AssocTy: Bounds` into `AssocTy = impl Bounds`. We do this by
10611061
// constructing the HIR for `impl bounds...` and then lowering that.
10621062

1063-
let parent_def_id = self.current_hir_id_owner;
10641063
let impl_trait_node_id = self.next_node_id();
1065-
self.create_def(
1066-
parent_def_id.def_id,
1067-
impl_trait_node_id,
1068-
DefPathData::ImplTrait,
1069-
);
10701064

10711065
self.with_dyn_type_scope(false, |this| {
10721066
let node_id = this.next_node_id();
@@ -1357,9 +1351,14 @@ impl<'a, 'hir> LoweringContext<'a, 'hir> {
13571351
def_node_id,
13581352
bounds,
13591353
false,
1360-
&ImplTraitContext::TypeAliasesOpaqueTy,
1354+
itctx,
13611355
),
13621356
ImplTraitContext::Universal => {
1357+
self.create_def(
1358+
self.current_hir_id_owner.def_id,
1359+
def_node_id,
1360+
DefPathData::ImplTrait,
1361+
);
13631362
let span = t.span;
13641363
let ident = Ident::from_str_and_span(&pprust::ty_to_string(t), span);
13651364
let (param, bounds, path) =
@@ -1453,7 +1452,17 @@ impl<'a, 'hir> LoweringContext<'a, 'hir> {
14531452
// frequently opened issues show.
14541453
let opaque_ty_span = self.mark_span_with_reason(DesugaringKind::OpaqueTy, span, None);
14551454

1456-
let opaque_ty_def_id = self.local_def_id(opaque_ty_node_id);
1455+
let opaque_ty_def_id = match origin {
1456+
hir::OpaqueTyOrigin::TyAlias => self.create_def(
1457+
self.current_hir_id_owner.def_id,
1458+
opaque_ty_node_id,
1459+
DefPathData::ImplTrait,
1460+
),
1461+
hir::OpaqueTyOrigin::FnReturn(fn_def_id) => {
1462+
self.create_def(fn_def_id, opaque_ty_node_id, DefPathData::ImplTrait)
1463+
}
1464+
hir::OpaqueTyOrigin::AsyncFn(..) => bug!("unreachable"),
1465+
};
14571466
debug!(?opaque_ty_def_id);
14581467

14591468
// Contains the new lifetime definitions created for the TAIT (if any).

compiler/rustc_middle/src/hir/map/mod.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ use rustc_index::vec::Idx;
1414
use rustc_middle::hir::nested_filter;
1515
use rustc_span::def_id::StableCrateId;
1616
use rustc_span::symbol::{kw, sym, Ident, Symbol};
17-
use rustc_span::Span;
17+
use rustc_span::{Span, DUMMY_SP};
1818
use rustc_target::spec::abi::Abi;
1919

2020
#[inline]
@@ -1131,7 +1131,7 @@ pub(super) fn crate_hash(tcx: TyCtxt<'_>, crate_num: CrateNum) -> Svh {
11311131
.filter_map(|(def_id, info)| {
11321132
let _ = info.as_owner()?;
11331133
let def_path_hash = definitions.def_path_hash(def_id);
1134-
let span = resolutions.source_span[def_id];
1134+
let span = resolutions.source_span.get(def_id).unwrap_or(&DUMMY_SP);
11351135
debug_assert_eq!(span.parent(), None);
11361136
Some((def_path_hash, span))
11371137
})

compiler/rustc_query_system/src/ich/hcx.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ use rustc_session::cstore::CrateStore;
1212
use rustc_session::Session;
1313
use rustc_span::source_map::SourceMap;
1414
use rustc_span::symbol::Symbol;
15-
use rustc_span::{BytePos, CachingSourceMapView, SourceFile, Span, SpanData};
15+
use rustc_span::{BytePos, CachingSourceMapView, SourceFile, Span, SpanData, DUMMY_SP};
1616

1717
/// This is the context state available during incr. comp. hashing. It contains
1818
/// enough information to transform `DefId`s and `HirId`s into stable `DefPath`s (i.e.,
@@ -185,7 +185,7 @@ impl<'a> rustc_span::HashStableContext for StableHashingContext<'a> {
185185

186186
#[inline]
187187
fn def_span(&self, def_id: LocalDefId) -> Span {
188-
self.source_span[def_id]
188+
*self.source_span.get(def_id).unwrap_or(&DUMMY_SP)
189189
}
190190

191191
#[inline]

compiler/rustc_resolve/src/def_collector.rs

-15
Original file line numberDiff line numberDiff line change
@@ -285,21 +285,6 @@ impl<'a, 'b> visit::Visitor<'a> for DefCollector<'a, 'b> {
285285
fn visit_ty(&mut self, ty: &'a Ty) {
286286
match ty.kind {
287287
TyKind::MacCall(..) => self.visit_macro_invoc(ty.id),
288-
TyKind::ImplTrait(node_id, _) => {
289-
let parent_def = match self.impl_trait_context {
290-
ImplTraitContext::Universal(item_def) => self.resolver.create_def(
291-
item_def,
292-
node_id,
293-
DefPathData::ImplTrait,
294-
self.expansion.to_expn_id(),
295-
ty.span,
296-
),
297-
ImplTraitContext::Existential => {
298-
self.create_def(node_id, DefPathData::ImplTrait, ty.span)
299-
}
300-
};
301-
self.with_parent(parent_def, |this| visit::walk_ty(this, ty))
302-
}
303288
_ => visit::walk_ty(self, ty),
304289
}
305290
}

src/test/ui/generator/print/generator-print-verbose-1.stderr

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ note: generator is not `Send` as this value is used across a yield
99
--> $DIR/generator-print-verbose-1.rs:35:9
1010
|
1111
LL | let _non_send_gen = make_non_send_generator();
12-
| ------------- has type `Opaque(DefId(0:34 ~ generator_print_verbose_1[749a]::make_non_send_generator::{opaque#0}), [])` which is not `Send`
12+
| ------------- has type `Opaque(DefId(0:44 ~ generator_print_verbose_1[749a]::make_non_send_generator::{opaque#0}), [])` which is not `Send`
1313
LL | yield;
1414
| ^^^^^ yield occurs here, with `_non_send_gen` maybe used later
1515
LL | };
@@ -35,17 +35,17 @@ note: required because it's used within this generator
3535
|
3636
LL | || {
3737
| ^^
38-
note: required because it appears within the type `Opaque(DefId(0:39 ~ generator_print_verbose_1[749a]::make_gen2::{opaque#0}), [std::sync::Arc<std::cell::RefCell<i32>>])`
38+
note: required because it appears within the type `Opaque(DefId(0:45 ~ generator_print_verbose_1[749a]::make_gen2::{opaque#0}), [std::sync::Arc<std::cell::RefCell<i32>>])`
3939
--> $DIR/generator-print-verbose-1.rs:41:30
4040
|
4141
LL | pub fn make_gen2<T>(t: T) -> impl Generator<Return = T> {
4242
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
43-
note: required because it appears within the type `Opaque(DefId(0:42 ~ generator_print_verbose_1[749a]::make_non_send_generator2::{opaque#0}), [])`
43+
note: required because it appears within the type `Opaque(DefId(0:46 ~ generator_print_verbose_1[749a]::make_non_send_generator2::{opaque#0}), [])`
4444
--> $DIR/generator-print-verbose-1.rs:47:34
4545
|
4646
LL | fn make_non_send_generator2() -> impl Generator<Return = Arc<RefCell<i32>>> {
4747
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
48-
= note: required because it captures the following types: `Opaque(DefId(0:42 ~ generator_print_verbose_1[749a]::make_non_send_generator2::{opaque#0}), [])`, `()`
48+
= note: required because it captures the following types: `Opaque(DefId(0:46 ~ generator_print_verbose_1[749a]::make_non_send_generator2::{opaque#0}), [])`, `()`
4949
note: required because it's used within this generator
5050
--> $DIR/generator-print-verbose-1.rs:52:20
5151
|

src/test/ui/nll/ty-outlives/impl-trait-captures.stderr

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
error[E0700]: hidden type for `Opaque(DefId(0:11 ~ impl_trait_captures[1afc]::foo::{opaque#0}), [ReStatic, T, ReEarlyBound(0, 'a)])` captures lifetime that does not appear in bounds
1+
error[E0700]: hidden type for `Opaque(DefId(0:13 ~ impl_trait_captures[1afc]::foo::{opaque#0}), [ReStatic, T, ReEarlyBound(0, 'a)])` captures lifetime that does not appear in bounds
22
--> $DIR/impl-trait-captures.rs:11:5
33
|
44
LL | fn foo<'a, T>(x: &T) -> impl Foo<'a> {
5-
| -- hidden type `&ReFree(DefId(0:8 ~ impl_trait_captures[1afc]::foo), BrNamed(DefId(0:13 ~ impl_trait_captures[1afc]::foo::'_), '_)) T` captures the anonymous lifetime defined here
5+
| -- hidden type `&ReFree(DefId(0:8 ~ impl_trait_captures[1afc]::foo), BrNamed(DefId(0:12 ~ impl_trait_captures[1afc]::foo::'_), '_)) T` captures the anonymous lifetime defined here
66
LL | x
77
| ^
88
|
9-
help: to declare that the `impl Trait` captures `ReFree(DefId(0:8 ~ impl_trait_captures[1afc]::foo), BrNamed(DefId(0:13 ~ impl_trait_captures[1afc]::foo::'_), '_))`, you can add an explicit `ReFree(DefId(0:8 ~ impl_trait_captures[1afc]::foo), BrNamed(DefId(0:13 ~ impl_trait_captures[1afc]::foo::'_), '_))` lifetime bound
9+
help: to declare that the `impl Trait` captures `ReFree(DefId(0:8 ~ impl_trait_captures[1afc]::foo), BrNamed(DefId(0:12 ~ impl_trait_captures[1afc]::foo::'_), '_))`, you can add an explicit `ReFree(DefId(0:8 ~ impl_trait_captures[1afc]::foo), BrNamed(DefId(0:12 ~ impl_trait_captures[1afc]::foo::'_), '_))` lifetime bound
1010
|
11-
LL | fn foo<'a, T>(x: &T) -> impl Foo<'a> + ReFree(DefId(0:8 ~ impl_trait_captures[1afc]::foo), BrNamed(DefId(0:13 ~ impl_trait_captures[1afc]::foo::'_), '_)) {
11+
LL | fn foo<'a, T>(x: &T) -> impl Foo<'a> + ReFree(DefId(0:8 ~ impl_trait_captures[1afc]::foo), BrNamed(DefId(0:12 ~ impl_trait_captures[1afc]::foo::'_), '_)) {
1212
| ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1313

1414
error: aborting due to previous error

0 commit comments

Comments
 (0)