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

lint: Deny #[no_mangle] const items #21881

Merged
merged 3 commits into from
Feb 12, 2015
Merged

Conversation

richo
Copy link
Contributor

@richo richo commented Feb 3, 2015

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)

@@ -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",
Copy link
Contributor Author

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

@richo richo force-pushed the lint-no-mangle-const branch 2 times, most recently from 7e009f9 to 1f64d7a Compare February 3, 2015 06:06
richo added 2 commits February 2, 2015 23:11
This renames the PrivateNoMangleFns lint to allow both to happen in a
single pass, since they do roughly the same work.
@richo richo force-pushed the lint-no-mangle-const branch from 1f64d7a to 73d5d89 Compare February 3, 2015 07:11
@richo
Copy link
Contributor Author

richo commented Feb 3, 2015

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

@richo
Copy link
Contributor Author

richo commented Feb 3, 2015

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]";
Copy link
Contributor

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?

Copy link
Contributor Author

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.

@richo
Copy link
Contributor Author

richo commented Feb 3, 2015

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");
Copy link
Contributor

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

Copy link
Contributor Author

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.

Copy link
Contributor

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.

@richo richo force-pushed the lint-no-mangle-const branch from a5cff01 to b6f55ef Compare February 10, 2015 20:09
@richo
Copy link
Contributor Author

richo commented Feb 10, 2015

Turned the warning + hint into one longer warning.

@kmcallister
Copy link
Contributor

@bors r+ b6f55ef rollup

@bors
Copy link
Collaborator

bors commented Feb 11, 2015

⌛ Testing commit b6f55ef with merge 289ae60...

bors added a commit that referenced this pull request Feb 11, 2015
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)
@bors
Copy link
Collaborator

bors commented Feb 11, 2015

💔 Test failed - auto-mac-32-opt

@alexcrichton
Copy link
Member

@bors: retry

richo added a commit to richo/rust that referenced this pull request Feb 11, 2015
…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)
alexcrichton added a commit to alexcrichton/rust that referenced this pull request Feb 11, 2015
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)
@bors bors merged commit b6f55ef 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.

pub const items have no linker symbol
4 participants