Skip to content

Commit 7da9250

Browse files
committed
Remove Res::Label
Paths can never resolve to labels
1 parent 85ddd1d commit 7da9250

File tree

5 files changed

+24
-23
lines changed

5 files changed

+24
-23
lines changed

src/librustc/hir/def.rs

-4
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,6 @@ pub enum Res<Id = hir::HirId> {
142142
Upvar(Id, // `HirId` of closed over local
143143
usize, // index in the `freevars` list of the closure
144144
ast::NodeId), // expr node that creates the closure
145-
Label(ast::NodeId),
146145

147146
// Macro namespace
148147
NonMacroAttr(NonMacroAttrKind), // e.g., `#[inline]` or `#[rustfmt::skip]`
@@ -349,7 +348,6 @@ impl<Id> Res<Id> {
349348

350349
Res::Local(..) |
351350
Res::Upvar(..) |
352-
Res::Label(..) |
353351
Res::PrimTy(..) |
354352
Res::SelfTy(..) |
355353
Res::SelfCtor(..) |
@@ -377,7 +375,6 @@ impl<Id> Res<Id> {
377375
Res::PrimTy(..) => "builtin type",
378376
Res::Local(..) => "local variable",
379377
Res::Upvar(..) => "closure capture",
380-
Res::Label(..) => "label",
381378
Res::SelfTy(..) => "self type",
382379
Res::ToolMod => "tool module",
383380
Res::NonMacroAttr(attr_kind) => attr_kind.descr(),
@@ -405,7 +402,6 @@ impl<Id> Res<Id> {
405402
index,
406403
closure
407404
),
408-
Res::Label(id) => Res::Label(id),
409405
Res::SelfTy(a, b) => Res::SelfTy(a, b),
410406
Res::ToolMod => Res::ToolMod,
411407
Res::NonMacroAttr(attr_kind) => Res::NonMacroAttr(attr_kind),

src/librustc/hir/lowering.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,9 @@ pub trait Resolver {
151151
/// Obtain per-namespace resolutions for `use` statement with the given `NoedId`.
152152
fn get_import_res(&mut self, id: NodeId) -> PerNS<Option<Res<NodeId>>>;
153153

154+
/// Obtain resolution for a label with the given `NodeId`.
155+
fn get_label_res(&mut self, id: NodeId) -> Option<NodeId>;
156+
154157
/// We must keep the set of definitions up to date as we add nodes that weren't in the AST.
155158
/// This should only return `None` during testing.
156159
fn definitions(&mut self) -> &mut Definitions;
@@ -1246,7 +1249,7 @@ impl<'a> LoweringContext<'a> {
12461249
fn lower_loop_destination(&mut self, destination: Option<(NodeId, Label)>) -> hir::Destination {
12471250
let target_id = match destination {
12481251
Some((id, _)) => {
1249-
if let Res::Label(loop_id) = self.expect_full_res(id) {
1252+
if let Some(loop_id) = self.resolver.get_label_res(id) {
12501253
Ok(self.lower_node_id(loop_id))
12511254
} else {
12521255
Err(hir::LoopIdError::UnresolvedLabel)

src/librustc_resolve/lib.rs

+19-16
Original file line numberDiff line numberDiff line change
@@ -1071,13 +1071,13 @@ enum RibKind<'a> {
10711071
/// The resolution keeps a separate stack of ribs as it traverses the AST for each namespace. When
10721072
/// resolving, the name is looked up from inside out.
10731073
#[derive(Debug)]
1074-
struct Rib<'a> {
1075-
bindings: FxHashMap<Ident, Res>,
1074+
struct Rib<'a, R = Res> {
1075+
bindings: FxHashMap<Ident, R>,
10761076
kind: RibKind<'a>,
10771077
}
10781078

1079-
impl<'a> Rib<'a> {
1080-
fn new(kind: RibKind<'a>) -> Rib<'a> {
1079+
impl<'a, R> Rib<'a, R> {
1080+
fn new(kind: RibKind<'a>) -> Rib<'a, R> {
10811081
Rib {
10821082
bindings: Default::default(),
10831083
kind,
@@ -1638,7 +1638,7 @@ pub struct Resolver<'a> {
16381638
ribs: PerNS<Vec<Rib<'a>>>,
16391639

16401640
/// The current set of local scopes, for labels.
1641-
label_ribs: Vec<Rib<'a>>,
1641+
label_ribs: Vec<Rib<'a, NodeId>>,
16421642

16431643
/// The trait that the current context can refer to.
16441644
current_trait_ref: Option<(Module<'a>, TraitRef)>,
@@ -1663,6 +1663,8 @@ pub struct Resolver<'a> {
16631663
partial_res_map: NodeMap<PartialRes>,
16641664
/// Resolutions for import nodes, which have multiple resolutions in different namespaces.
16651665
import_res_map: NodeMap<PerNS<Option<Res>>>,
1666+
/// Resolutions for labels (node IDs of their corresponding blocks or loops).
1667+
label_res_map: NodeMap<NodeId>,
16661668

16671669
pub freevars: FreevarMap,
16681670
freevars_seen: NodeMap<NodeMap<usize>>,
@@ -1841,6 +1843,10 @@ impl<'a> hir::lowering::Resolver for Resolver<'a> {
18411843
self.import_res_map.get(&id).cloned().unwrap_or_default()
18421844
}
18431845

1846+
fn get_label_res(&mut self, id: NodeId) -> Option<NodeId> {
1847+
self.label_res_map.get(&id).cloned()
1848+
}
1849+
18441850
fn definitions(&mut self) -> &mut Definitions {
18451851
&mut self.definitions
18461852
}
@@ -2024,6 +2030,7 @@ impl<'a> Resolver<'a> {
20242030

20252031
partial_res_map: Default::default(),
20262032
import_res_map: Default::default(),
2033+
label_res_map: Default::default(),
20272034
freevars: Default::default(),
20282035
freevars_seen: Default::default(),
20292036
export_map: FxHashMap::default(),
@@ -2490,7 +2497,7 @@ impl<'a> Resolver<'a> {
24902497
///
24912498
/// Stops after meeting a closure.
24922499
fn search_label<P, R>(&self, mut ident: Ident, pred: P) -> Option<R>
2493-
where P: Fn(&Rib<'_>, Ident) -> Option<R>
2500+
where P: Fn(&Rib<'_, NodeId>, Ident) -> Option<R>
24942501
{
24952502
for rib in self.label_ribs.iter().rev() {
24962503
match rib.kind {
@@ -4332,10 +4339,9 @@ impl<'a> Resolver<'a> {
43324339
{
43334340
if let Some(label) = label {
43344341
self.unused_labels.insert(id, label.ident.span);
4335-
let res = Res::Label(id);
43364342
self.with_label_rib(|this| {
43374343
let ident = label.ident.modern_and_legacy();
4338-
this.label_ribs.last_mut().unwrap().bindings.insert(ident, res);
4344+
this.label_ribs.last_mut().unwrap().bindings.insert(ident, id);
43394345
f(this);
43404346
});
43414347
} else {
@@ -4366,10 +4372,10 @@ impl<'a> Resolver<'a> {
43664372
}
43674373

43684374
ExprKind::Break(Some(label), _) | ExprKind::Continue(Some(label)) => {
4369-
let res = self.search_label(label.ident, |rib, ident| {
4375+
let node_id = self.search_label(label.ident, |rib, ident| {
43704376
rib.bindings.get(&ident.modern_and_legacy()).cloned()
43714377
});
4372-
match res {
4378+
match node_id {
43734379
None => {
43744380
// Search again for close matches...
43754381
// Picks the first label that is "close enough", which is not necessarily
@@ -4390,13 +4396,10 @@ impl<'a> Resolver<'a> {
43904396
ResolutionError::UndeclaredLabel(&label.ident.as_str(),
43914397
close_match));
43924398
}
4393-
Some(Res::Label(id)) => {
4399+
Some(node_id) => {
43944400
// Since this res is a label, it is never read.
4395-
self.record_partial_res(expr.id, PartialRes::new(Res::Label(id)));
4396-
self.unused_labels.remove(&id);
4397-
}
4398-
Some(_) => {
4399-
span_bug!(expr.span, "label wasn't mapped to a label res!");
4401+
self.label_res_map.insert(expr.id, node_id);
4402+
self.unused_labels.remove(&node_id);
44004403
}
44014404
}
44024405

src/librustc_save_analysis/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -796,7 +796,6 @@ impl<'l, 'tcx: 'l> SaveContext<'l, 'tcx> {
796796
}
797797
Res::PrimTy(..) |
798798
Res::SelfTy(..) |
799-
Res::Label(..) |
800799
Res::Def(HirDefKind::Macro(..), _) |
801800
Res::ToolMod |
802801
Res::NonMacroAttr(..) |

src/librustc_save_analysis/sig.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -579,7 +579,7 @@ impl Sig for ast::Path {
579579
let res = scx.get_path_res(id.ok_or("Missing id for Path")?);
580580

581581
let (name, start, end) = match res {
582-
Res::Label(..) | Res::PrimTy(..) | Res::SelfTy(..) | Res::Err => {
582+
Res::PrimTy(..) | Res::SelfTy(..) | Res::Err => {
583583
return Ok(Signature {
584584
text: pprust::path_to_string(self),
585585
defs: vec![],

0 commit comments

Comments
 (0)