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

Mark provided methods in dead-code pass #11246

Merged
merged 1 commit into from
Jan 2, 2014
Merged

Conversation

ktt3ja
Copy link
Contributor

@ktt3ja ktt3ja commented Dec 31, 2013

Close #11224

@alexcrichton
Copy link
Member

I think that #11245 is the way to go about this instead. Dead code shouldn't assume that all provided methods are not dead, but rather privacy should instruct dead code on whether these methods are exported or not (which is what #11245 does).

Thanks for looking into this though!

@ktt3ja
Copy link
Contributor Author

ktt3ja commented Dec 31, 2013

@alexcrichton: It doesn't mark all provided methods as live. It only marks a provided method as live if the method is used in the first place. For example, if we have foo.bar(), bar is statically resolved, and bar is a non-provided method, then the behavior is exactly the same as before. If bar is a provided method, then we look at the actual source (currently the dead-code pass would look at the dummy def id instead).

On the other hand, if bar is invoked on type parameters or trait instance, then we look at the original trait method definition (which may turn out to be a provided method).

Perhaps my commit message ought to be more descriptive. :P

@alexcrichton
Copy link
Member

Is that right though? If the invocation itself is contained within dead code the trait method should still be considered dead code, right?

@ktt3ja
Copy link
Contributor Author

ktt3ja commented Dec 31, 2013

@alexcrichton: I only do the method_map lookup from within MarkSymbolVisitor, which only visits live code.

(I'm fine with this PR being closed, though, since the issue is already fixed)

@alexcrichton alexcrichton reopened this Jan 1, 2014
@alexcrichton
Copy link
Member

Ah ok, I understand now, thanks!

bors added a commit that referenced this pull request Jan 2, 2014
@bors bors closed this Jan 2, 2014
@bors bors merged commit 576a851 into rust-lang:master Jan 2, 2014
flip1995 pushed a commit to flip1995/rust that referenced this pull request Sep 7, 2023
fix fp when [`undocumented_unsafe_blocks`] not able to detect comment on globally defined const/static variables

fixes: rust-lang#11246

changelog: fix detection on global variables for [`undocumented_unsafe_blocks`]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Spurious dead_code warning
3 participants