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

Make the live code analysis visit method declarations. #22048

Merged
merged 1 commit into from
Feb 12, 2015

Conversation

LeoTestard
Copy link
Contributor

The live code analysis only visited the function's body when visiting a
method, and not the FnDecl and the generics, resulting in code to be
incorrectly marked as unused when it only appeared in the generics, the
arguments, or the return type, whereas the same code in non-method
functions was correctly detected as used. Fixes #20343.

Originally I just added a call to walk_generics and walk_fndecl alongside walk_block but then I noticed the walk_method_helper function did pretty much the same thing. The only difference is that it also calls visit_mac, but since this is not going to happen at this stage, I think it's ok. However let me know if this was not the right thing to do.

@rust-highfive
Copy link
Contributor

r? @huonw

(rust_highfive has picked a reviewer for you, use r? to override)

@pnkfelix
Copy link
Member

pnkfelix commented Feb 7, 2015

@bors r+ 5c15692

@pnkfelix pnkfelix assigned pnkfelix and unassigned huonw Feb 7, 2015
@bors
Copy link
Collaborator

bors commented Feb 7, 2015

⌛ Testing commit 5c15692 with merge ce01c45...

@bors
Copy link
Collaborator

bors commented Feb 7, 2015

💔 Test failed - auto-mac-64-opt

@pnkfelix
Copy link
Member

pnkfelix commented Feb 7, 2015

@LeoTestard looks like there's something wrong with your test setup. Why did you make this a run-fail test if the idea is that its not supposed to type-check anymore?

@LeoTestard
Copy link
Contributor Author

@pnkfelix It's supposed to type-check. I made this a run-fail because the bug is hard to reproduce and I needed to make it panic!(). However:

 <anon>:37:1: 37:69 error: function is never used: `main`

this looks like the test is built as a lib. I think I need to make main pub or something...

@LeoTestard LeoTestard force-pushed the impl-patterns-used branch 2 times, most recently from b1bd387 to 1ab44f4 Compare February 7, 2015 22:02
@pnkfelix
Copy link
Member

pnkfelix commented Feb 7, 2015

@LeoTestard ah yes, I did not read the error message (or the test) carefully enough, sorry.

@pnkfelix
Copy link
Member

pnkfelix commented Feb 7, 2015

@bors r+ 1ab44f4 rollup

1 similar comment
@pnkfelix
Copy link
Member

pnkfelix commented Feb 7, 2015

@bors r+ 1ab44f4 rollup

@LeoTestard
Copy link
Contributor Author

@pnkfelix np. I don't really understand what this pretty test does so I hope just making main pub will be enough..

@pnkfelix
Copy link
Member

pnkfelix commented Feb 7, 2015

@LeoTestard actually, reviewing the log again, I'm not convinced making main pub is going to be enough. I can look at this more on Monday, but for now I don't want it to kill the rollup.

@pnkfelix
Copy link
Member

pnkfelix commented Feb 7, 2015

@bors r-

@LeoTestard
Copy link
Contributor Author

@pnkfelix Allright, this is not really urgent anyway...

@pnkfelix
Copy link
Member

(leo and I discussed in #rust-fr ways for him to make the test either a run-pass or compile-fail test. I suspect he will probably do the latter. But it would be nice to understand what went down with make check-pretty here.)

Update: @alexcrichton pointed out the use of --crate-type lib in the check-pretty invocations of rustc. That, combined with the non-pub fn main, yielded the dead code, which then caused the #[deny(dead_code)] to fire.

The live code analysis only visited the function's body when visiting a
method, and not the FnDecl and the generics, resulting in code to be
incorrectly marked as unused when it only appeared in the generics, the
arguments, or the return type, whereas the same code in non-method
functions was correctly detected as used. Fixes rust-lang#20343.
@LeoTestard
Copy link
Contributor Author

Run the tests locally and it went well (except failures in the run-pass-fulldeps suite that reported symbol lookup errors... probably a problem of dynamic loading, seems unrelated with this PR). I think we can retry to merge it.
r? @pnkfelix

@pnkfelix
Copy link
Member

@bors r+ 73201fd rollup

richo added a commit to richo/rust that referenced this pull request Feb 11, 2015
…kfelix

The live code analysis only visited the function's body when visiting a
method, and not the FnDecl and the generics, resulting in code to be
incorrectly marked as unused when it only appeared in the generics, the
arguments, or the return type, whereas the same code in non-method
functions was correctly detected as used. Fixes rust-lang#20343.

Originally I just added a call to `walk_generics` and `walk_fndecl` alongside `walk_block` but then I noticed the `walk_method_helper` function did pretty much the same thing. The only difference is that it also calls `visit_mac`, but since this is not going to happen at this stage, I think it's ok. However let me know if this was not the right thing to do.
alexcrichton added a commit to alexcrichton/rust that referenced this pull request Feb 11, 2015
The live code analysis only visited the function's body when visiting a
method, and not the FnDecl and the generics, resulting in code to be
incorrectly marked as unused when it only appeared in the generics, the
arguments, or the return type, whereas the same code in non-method
functions was correctly detected as used. Fixes rust-lang#20343.

Originally I just added a call to `walk_generics` and `walk_fndecl` alongside `walk_block` but then I noticed the `walk_method_helper` function did pretty much the same thing. The only difference is that it also calls `visit_mac`, but since this is not going to happen at this stage, I think it's ok. However let me know if this was not the right thing to do.
@bors bors merged commit 73201fd into rust-lang:master Feb 12, 2015
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.

Pattern matching for parameters in Impl blocks does not count struct fields as used
5 participants