Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

operate on HirId instead of NodeId in hir::Pat::each_binding, and consequences of that #50929

Merged
merged 3 commits into from
May 28, 2018

Conversation

zackmdavis
Copy link
Member

See #50928 for motivation.

Questions—

  • Is HirId-ification initiative #50928 actually a good idea as a plan of record, or is there some reason to keep NodeIds?
  • Are the uses of find_node_for_hir_id in this initial submission OK (see the FIXME comments)?
  • Can we bikeshed a better method names struct_span_lint_hir &c.? (Coined in analogy to the struct_span_lint_node and NodeId, but it feels kind of semantically clunky.)

r? @michaelwoerister

@rust-highfive rust-highfive added the S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. label May 21, 2018
delegate.decl_without_init(id, span);
local.pat.each_binding(|_, hir_id, span, _| {
// FIXME: converting HirId → NodeId is said to be relatively expensive
let node_id = self.mc.tcx.hir.definitions().find_node_for_hir_id(hir_id);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You can use self.mc.tcx.hir.hir_to_node_id() which is "just" a hash table lookup. find_node_for_hir_id() should actually be removed.

@@ -1265,22 +1259,23 @@ impl<'a, 'tcx> Liveness<'a, 'tcx> {
}
}

fn access_var(&mut self, id: NodeId, nid: NodeId, succ: LiveNode, acc: u32, span: Span)
fn access_var(&mut self, hir_id: HirId, nid: NodeId, succ: LiveNode, acc: u32, span: Span)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You could change nid to HirId too, I think.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This doesn't feel like an organic part of this somewhat-narrowly-focused cleanup PR to me (value called as nid is ultimately coming out of a Def::Local(NodeId) variant, in contrast to hir::Pat already having a hir_id field)?

-> DiagnosticBuilder<'tcx>
{
// FIXME: converting HirId → NodeId is said to be relatively expensive
let node_id = self.hir.definitions().find_node_for_hir_id(hir_id);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same as above: self.hir.hir_to_node_id() will make it fast.

@michaelwoerister
Copy link
Member

Thanks for the PR, @zackmdavis!

Is #50928 actually a good idea as a plan of record, or is there some reason to keep NodeIds?

Mostly yes, I think. I know that @eddyb wants to get rid of NodeId, and I do too. It's good to see some progress here. Does anyone in @rust-lang/compiler think that we should not further replace NodeId with HirId?

Are the uses of find_node_for_hir_id in this initial submission OK (see the FIXME comments)?

There's a better alternative (which has been introduced later). See my comments in the code.

Can we bikeshed a better method names struct_span_lint_hir &c.? (Coined in analogy to the struct_span_lint_node and NodeId, but it feels kind of semantically clunky.)

I think the names are fine.

@michaelwoerister michaelwoerister added S-waiting-on-author Status: This is awaiting some action (such as code changes or more information) from the author. and removed S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. labels May 23, 2018
@zackmdavis zackmdavis force-pushed the hiridification_initiative branch 2 times, most recently from 9ee1803 to 6dd885e Compare May 27, 2018 01:28
@zackmdavis
Copy link
Member Author

@michaelwoerister (rebased, with a new commit using hir_to_node_id (everywhere))

@michaelwoerister
Copy link
Member

Thanks, @zackmdavis!

@bors r+

@bors
Copy link
Collaborator

bors commented May 28, 2018

📌 Commit 6dd885e has been approved by michaelwoerister

@bors bors added S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. and removed S-waiting-on-author Status: This is awaiting some action (such as code changes or more information) from the author. labels May 28, 2018
@bors
Copy link
Collaborator

bors commented May 28, 2018

☔ The latest upstream changes (presumably #50724) made this pull request unmergeable. Please resolve the merge conflicts.

@bors bors added S-waiting-on-author Status: This is awaiting some action (such as code changes or more information) from the author. and removed S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. labels May 28, 2018
Changing the `each_binding` utility method to take the `HirId` of a
binding pattern rather than its `NodeId` seems like a modest first step
in support of the `HirId`ification initiative rust-lang#50928. (The inspiration
for choosing this in particular came from the present author's previous
work on diagnostics issued during liveness analysis, which is the most
greatly affected module in this change.)
Michael Woerister pointed out that `hir_to_node_id` (introduced in
August 2017's 28ddd7a) supersedes the functionality of
`find_node_for_hir_id` (just a hash lookup compared to that linear
search).
@zackmdavis zackmdavis force-pushed the hiridification_initiative branch from 6dd885e to 1b7488d Compare May 28, 2018 16:20
@zackmdavis
Copy link
Member Author

@michaelwoerister (rebased to fix conflict ↑)

@michaelwoerister
Copy link
Member

Thanks!

@bors r+

@bors
Copy link
Collaborator

bors commented May 28, 2018

📌 Commit 1b7488d has been approved by michaelwoerister

@bors bors added S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. and removed S-waiting-on-author Status: This is awaiting some action (such as code changes or more information) from the author. labels May 28, 2018
@bors
Copy link
Collaborator

bors commented May 28, 2018

⌛ Testing commit 1b7488d with merge 5bf68db...

bors added a commit that referenced this pull request May 28, 2018
…lwoerister

operate on `HirId` instead of `NodeId` in `hir::Pat::each_binding`, and consequences of that

See #50928 for motivation.

Questions—

 * Is #50928 actually a good idea as a plan of record, or is there some reason to keep `NodeId`s?
 * Are the uses of `find_node_for_hir_id` in this initial submission OK (see the FIXME comments)?
 * Can we bikeshed a better method names `struct_span_lint_hir` _&c._? (Coined in analogy to the `struct_span_lint_node` and `NodeId`, but it feels kind of semantically clunky.)

r? @michaelwoerister
@bors
Copy link
Collaborator

bors commented May 28, 2018

☀️ Test successful - status-appveyor, status-travis
Approved by: michaelwoerister
Pushing 5bf68db to master...

@bors bors merged commit 1b7488d into rust-lang:master May 28, 2018
@zackmdavis zackmdavis deleted the hiridification_initiative branch May 28, 2018 21:30
bors added a commit that referenced this pull request Jul 2, 2018
HirId-ification, continued

Another incremental step towards the vision of #50928 (previously: #50929).

r? @michaelwoerister
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants