-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
lint: Deny #[no_mangle] const items #21881
Conversation
@@ -2083,6 +2090,12 @@ impl LintPass for PrivateNoMangleFns { | |||
cx.span_lint(PRIVATE_NO_MANGLE_FNS, it.span, msg.as_slice()); | |||
} | |||
}, | |||
ast::ItemConst(..) => { | |||
if attr::contains_name(it.attrs.as_slice(), "no_mangle") { | |||
let msg = format!("const items cannot export symbols. {} therefore cannot be #[no_mangle", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
And I guess this line needs to be broken up to appease tidy
7e009f9
to
1f64d7a
Compare
This renames the PrivateNoMangleFns lint to allow both to happen in a single pass, since they do roughly the same work.
1f64d7a
to
73d5d89
Compare
I rethought this a bit. I don't think there's ever a reason to #[no_mangle] a const, and private #[no_mangle]'d statics should throw a warning as well. I added the new lint, and tests for all. It's possible to reuse some code between the Static and Fn check, but it seemed liek it would be way less readable so I let it be duplicated. I think this is now good to go out |
Aaaaand confirmed that the tests still pass. r? @kmcallister |
}, | ||
ast::ItemConst(..) => { | ||
if attr::contains_name(it.attrs.as_slice(), "no_mangle") { | ||
let msg = "const items should never be #[no_mangle]"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you add a few words about why?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure. How concerned should I be about overly long messages? (The current
ones all seem pretty terse).
I think this should probably have a hint that "maybe you wanted pub static"
too
On Tuesday, February 3, 2015, Keegan McAllister notifications@github.com
wrote:
In src/librustc/lint/builtin.rs
#21881 (comment):@@ -2083,6 +2097,20 @@ impl LintPass for PrivateNoMangleFns {
cx.span_lint(PRIVATE_NO_MANGLE_FNS, it.span, msg.as_slice());
}
},
ast::ItemStatic(..) => {
if attr::contains_name(it.attrs.as_slice(), "no_mangle") &&
!cx.exported_items.contains(&it.id) {
let msg = format!("static {} is marked #[no_mangle], but not exported",
it.ident);
cx.span_lint(PRIVATE_NO_MANGLE_STATICS, it.span, msg.as_slice());
}
},
ast::ItemConst(..) => {
if attr::contains_name(it.attrs.as_slice(), "no_mangle") {
let msg = "const items should never be #[no_mangle]";
Can you add a few words about why?
—
Reply to this email directly or view it on GitHub
https://github.com/rust-lang/rust/pull/21881/files#r24023185.
I added another commit with a comment and a help message about the thing a user probably wanted |
// don't have anything to attach a symbol to | ||
let msg = "const items should never be #[no_mangle]"; | ||
cx.span_lint(NO_MANGLE_CONST_ITEMS, it.span, msg); | ||
cx.sess().span_help(it.span, "maybe you wanted this to be a pub static"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unfortunately the help message will print even with -A no-mangle-const-items
, see #19668
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not sure that's a huge issue in this case. I'm not aware of any time
you would actually want this.
On Tuesday, February 3, 2015, Keegan McAllister notifications@github.com
wrote:
In src/librustc/lint/builtin.rs
#21881 (comment):@@ -2083,6 +2097,23 @@ impl LintPass for PrivateNoMangleFns {
cx.span_lint(PRIVATE_NO_MANGLE_FNS, it.span, msg.as_slice());
}
},
ast::ItemStatic(..) => {
if attr::contains_name(it.attrs.as_slice(), "no_mangle") &&
!cx.exported_items.contains(&it.id) {
let msg = format!("static {} is marked #[no_mangle], but not exported",
it.ident);
cx.span_lint(PRIVATE_NO_MANGLE_STATICS, it.span, msg.as_slice());
}
},
ast::ItemConst(..) => {
if attr::contains_name(it.attrs.as_slice(), "no_mangle") {
// Const items do not refer to a particular location in memory, and therefore
// don't have anything to attach a symbol to
let msg = "const items should never be #[no_mangle]";
cx.span_lint(NO_MANGLE_CONST_ITEMS, it.span, msg);
cx.sess().span_help(it.span, "maybe you wanted this to be a pub static");
Unfortunately the help message will print even with -A
no-mangle-const-items, see #19668
#19668—
Reply to this email directly or view it on GitHub
https://github.com/rust-lang/rust/pull/21881/files#r24038887.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Still, the lint should behave consistently.
a5cff01
to
b6f55ef
Compare
Turned the warning + hint into one longer warning. |
This renames the PrivateNoMangleFns lint to allow both to happen in a single pass, since they do roughly the same work. Closes #21856 Open questions: [ ]: Do the tests actually pass (I'm running make check and running out the door now) [ ]: Is the name of this lint ok. it seems to mostly be fine with [convention](https://github.com/rust-lang/rfcs/blob/cc53afbe5dea41e1f7d1c3dce71e013abe025211/text/0344-conventions-galore.md#lints) [ ]: I'm not super thrilled about the warning text r? @kmcallister (Shamelessly nominating because you were looking at my other ticket)
💔 Test failed - auto-mac-32-opt |
@bors: retry |
…lister This renames the PrivateNoMangleFns lint to allow both to happen in a single pass, since they do roughly the same work. Closes rust-lang#21856 Open questions: [ ]: Do the tests actually pass (I'm running make check and running out the door now) [ ]: Is the name of this lint ok. it seems to mostly be fine with [convention](https://github.com/rust-lang/rfcs/blob/cc53afbe5dea41e1f7d1c3dce71e013abe025211/text/0344-conventions-galore.md#lints) [ ]: I'm not super thrilled about the warning text r? @kmcallister (Shamelessly nominating because you were looking at my other ticket)
This renames the PrivateNoMangleFns lint to allow both to happen in a single pass, since they do roughly the same work. Closes rust-lang#21856 Open questions: [ ]: Do the tests actually pass (I'm running make check and running out the door now) [ ]: Is the name of this lint ok. it seems to mostly be fine with [convention](https://github.com/rust-lang/rfcs/blob/cc53afbe5dea41e1f7d1c3dce71e013abe025211/text/0344-conventions-galore.md#lints) [ ]: I'm not super thrilled about the warning text r? @kmcallister (Shamelessly nominating because you were looking at my other ticket)
This renames the PrivateNoMangleFns lint to allow both to happen in a
single pass, since they do roughly the same work.
Closes #21856
Open questions:
[ ]: Do the tests actually pass (I'm running make check and running out the door now)
[ ]: Is the name of this lint ok. it seems to mostly be fine with convention
[ ]: I'm not super thrilled about the warning text
r? @kmcallister (Shamelessly nominating because you were looking at my other ticket)