Auto merge of #112847 - bvanjoi:fix-112831, r=Nilstrieb
Revert #112758 and add test case Fixes #112831. Cannot unwrap `update_resolution` for `resolution.single_imports.remove(&Interned::new_unchecked(import));` because there is a relationship between the `Import` and `&NameBinding` in `NameResolution`. This issue caused by my unfamiliarity with the data structure and I apologize for it. This PR had been reverted, and test case have been added. r? `@Nilstrieb` cc `@petrochenkov`
This commit is contained in:
commit
a34ceade11
@ -304,23 +304,21 @@ impl<'a, 'tcx> Resolver<'a, 'tcx> {
|
|||||||
let res = binding.res();
|
let res = binding.res();
|
||||||
self.check_reserved_macro_name(key.ident, res);
|
self.check_reserved_macro_name(key.ident, res);
|
||||||
self.set_binding_parent_module(binding, module);
|
self.set_binding_parent_module(binding, module);
|
||||||
|
self.update_resolution(module, key, |this, resolution| {
|
||||||
let mut resolution = self.resolution(module, key).borrow_mut();
|
if let Some(old_binding) = resolution.binding {
|
||||||
let old_binding = resolution.binding();
|
if res == Res::Err && old_binding.res() != Res::Err {
|
||||||
let mut t = Ok(());
|
// Do not override real bindings with `Res::Err`s from error recovery.
|
||||||
if let Some(old_binding) = resolution.binding {
|
return Ok(());
|
||||||
if res == Res::Err && old_binding.res() != Res::Err {
|
}
|
||||||
// Do not override real bindings with `Res::Err`s from error recovery.
|
|
||||||
} else {
|
|
||||||
match (old_binding.is_glob_import(), binding.is_glob_import()) {
|
match (old_binding.is_glob_import(), binding.is_glob_import()) {
|
||||||
(true, true) => {
|
(true, true) => {
|
||||||
if res != old_binding.res() {
|
if res != old_binding.res() {
|
||||||
resolution.binding = Some(self.ambiguity(
|
resolution.binding = Some(this.ambiguity(
|
||||||
AmbiguityKind::GlobVsGlob,
|
AmbiguityKind::GlobVsGlob,
|
||||||
old_binding,
|
old_binding,
|
||||||
binding,
|
binding,
|
||||||
));
|
));
|
||||||
} else if !old_binding.vis.is_at_least(binding.vis, self.tcx) {
|
} else if !old_binding.vis.is_at_least(binding.vis, this.tcx) {
|
||||||
// We are glob-importing the same item but with greater visibility.
|
// We are glob-importing the same item but with greater visibility.
|
||||||
resolution.binding = Some(binding);
|
resolution.binding = Some(binding);
|
||||||
}
|
}
|
||||||
@ -332,7 +330,7 @@ impl<'a, 'tcx> Resolver<'a, 'tcx> {
|
|||||||
&& key.ns == MacroNS
|
&& key.ns == MacroNS
|
||||||
&& nonglob_binding.expansion != LocalExpnId::ROOT
|
&& nonglob_binding.expansion != LocalExpnId::ROOT
|
||||||
{
|
{
|
||||||
resolution.binding = Some(self.ambiguity(
|
resolution.binding = Some(this.ambiguity(
|
||||||
AmbiguityKind::GlobVsExpanded,
|
AmbiguityKind::GlobVsExpanded,
|
||||||
nonglob_binding,
|
nonglob_binding,
|
||||||
glob_binding,
|
glob_binding,
|
||||||
@ -344,12 +342,12 @@ impl<'a, 'tcx> Resolver<'a, 'tcx> {
|
|||||||
if let Some(old_binding) = resolution.shadowed_glob {
|
if let Some(old_binding) = resolution.shadowed_glob {
|
||||||
assert!(old_binding.is_glob_import());
|
assert!(old_binding.is_glob_import());
|
||||||
if glob_binding.res() != old_binding.res() {
|
if glob_binding.res() != old_binding.res() {
|
||||||
resolution.shadowed_glob = Some(self.ambiguity(
|
resolution.shadowed_glob = Some(this.ambiguity(
|
||||||
AmbiguityKind::GlobVsGlob,
|
AmbiguityKind::GlobVsGlob,
|
||||||
old_binding,
|
old_binding,
|
||||||
glob_binding,
|
glob_binding,
|
||||||
));
|
));
|
||||||
} else if !old_binding.vis.is_at_least(binding.vis, self.tcx) {
|
} else if !old_binding.vis.is_at_least(binding.vis, this.tcx) {
|
||||||
resolution.shadowed_glob = Some(glob_binding);
|
resolution.shadowed_glob = Some(glob_binding);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
@ -357,26 +355,52 @@ impl<'a, 'tcx> Resolver<'a, 'tcx> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
(false, false) => {
|
(false, false) => {
|
||||||
t = Err(old_binding);
|
return Err(old_binding);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
resolution.binding = Some(binding);
|
||||||
}
|
}
|
||||||
} else {
|
|
||||||
resolution.binding = Some(binding);
|
|
||||||
};
|
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
fn ambiguity(
|
||||||
|
&self,
|
||||||
|
kind: AmbiguityKind,
|
||||||
|
primary_binding: &'a NameBinding<'a>,
|
||||||
|
secondary_binding: &'a NameBinding<'a>,
|
||||||
|
) -> &'a NameBinding<'a> {
|
||||||
|
self.arenas.alloc_name_binding(NameBinding {
|
||||||
|
ambiguity: Some((secondary_binding, kind)),
|
||||||
|
..primary_binding.clone()
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// Use `f` to mutate the resolution of the name in the module.
|
||||||
|
// If the resolution becomes a success, define it in the module's glob importers.
|
||||||
|
fn update_resolution<T, F>(&mut self, module: Module<'a>, key: BindingKey, f: F) -> T
|
||||||
|
where
|
||||||
|
F: FnOnce(&mut Resolver<'a, 'tcx>, &mut NameResolution<'a>) -> T,
|
||||||
|
{
|
||||||
// Ensure that `resolution` isn't borrowed when defining in the module's glob importers,
|
// Ensure that `resolution` isn't borrowed when defining in the module's glob importers,
|
||||||
// during which the resolution might end up getting re-defined via a glob cycle.
|
// during which the resolution might end up getting re-defined via a glob cycle.
|
||||||
let (binding, t) = match resolution.binding() {
|
let (binding, t) = {
|
||||||
_ if old_binding.is_some() => return t,
|
let resolution = &mut *self.resolution(module, key).borrow_mut();
|
||||||
None => return t,
|
let old_binding = resolution.binding();
|
||||||
Some(binding) => match old_binding {
|
|
||||||
Some(old_binding) if ptr::eq(old_binding, binding) => return t,
|
|
||||||
_ => (binding, t),
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
drop(resolution);
|
let t = f(self, resolution);
|
||||||
|
|
||||||
|
match resolution.binding() {
|
||||||
|
_ if old_binding.is_some() => return t,
|
||||||
|
None => return t,
|
||||||
|
Some(binding) => match old_binding {
|
||||||
|
Some(old_binding) if ptr::eq(old_binding, binding) => return t,
|
||||||
|
_ => (binding, t),
|
||||||
|
},
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
// Define `binding` in `module`s glob importers.
|
// Define `binding` in `module`s glob importers.
|
||||||
for import in module.glob_importers.borrow_mut().iter() {
|
for import in module.glob_importers.borrow_mut().iter() {
|
||||||
@ -396,18 +420,6 @@ impl<'a, 'tcx> Resolver<'a, 'tcx> {
|
|||||||
t
|
t
|
||||||
}
|
}
|
||||||
|
|
||||||
fn ambiguity(
|
|
||||||
&self,
|
|
||||||
kind: AmbiguityKind,
|
|
||||||
primary_binding: &'a NameBinding<'a>,
|
|
||||||
secondary_binding: &'a NameBinding<'a>,
|
|
||||||
) -> &'a NameBinding<'a> {
|
|
||||||
self.arenas.alloc_name_binding(NameBinding {
|
|
||||||
ambiguity: Some((secondary_binding, kind)),
|
|
||||||
..primary_binding.clone()
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
// Define a dummy resolution containing a `Res::Err` as a placeholder for a failed
|
// Define a dummy resolution containing a `Res::Err` as a placeholder for a failed
|
||||||
// or indeterminate resolution, also mark such failed imports as used to avoid duplicate diagnostics.
|
// or indeterminate resolution, also mark such failed imports as used to avoid duplicate diagnostics.
|
||||||
fn import_dummy_binding(&mut self, import: &'a Import<'a>, is_indeterminate: bool) {
|
fn import_dummy_binding(&mut self, import: &'a Import<'a>, is_indeterminate: bool) {
|
||||||
@ -757,8 +769,9 @@ impl<'a, 'tcx> Resolver<'a, 'tcx> {
|
|||||||
.emit();
|
.emit();
|
||||||
}
|
}
|
||||||
let key = BindingKey::new(target, ns);
|
let key = BindingKey::new(target, ns);
|
||||||
let mut resolution = this.resolution(parent, key).borrow_mut();
|
this.update_resolution(parent, key, |_, resolution| {
|
||||||
resolution.single_imports.remove(&Interned::new_unchecked(import));
|
resolution.single_imports.remove(&Interned::new_unchecked(import));
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
13
tests/ui/resolve/auxiliary/issue-112831-aux.rs
Normal file
13
tests/ui/resolve/auxiliary/issue-112831-aux.rs
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
// force-host
|
||||||
|
// no-prefer-dynamic
|
||||||
|
|
||||||
|
#![crate_type = "proc-macro"]
|
||||||
|
|
||||||
|
extern crate proc_macro;
|
||||||
|
|
||||||
|
struct Zeroable;
|
||||||
|
|
||||||
|
#[proc_macro_derive(Zeroable)]
|
||||||
|
pub fn derive_zeroable(_: proc_macro::TokenStream) -> proc_macro::TokenStream {
|
||||||
|
proc_macro::TokenStream::default()
|
||||||
|
}
|
20
tests/ui/resolve/issue-112831.rs
Normal file
20
tests/ui/resolve/issue-112831.rs
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
// check-pass
|
||||||
|
// aux-build:issue-112831-aux.rs
|
||||||
|
|
||||||
|
mod zeroable {
|
||||||
|
pub trait Zeroable {}
|
||||||
|
}
|
||||||
|
|
||||||
|
use zeroable::*;
|
||||||
|
|
||||||
|
mod pod {
|
||||||
|
use super::*;
|
||||||
|
pub trait Pod: Zeroable {}
|
||||||
|
}
|
||||||
|
|
||||||
|
use pod::*;
|
||||||
|
|
||||||
|
extern crate issue_112831_aux;
|
||||||
|
use issue_112831_aux::Zeroable;
|
||||||
|
|
||||||
|
fn main() {}
|
Loading…
x
Reference in New Issue
Block a user