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

Only export #[no_mangle] extern symbols during LTO #35069

Merged
merged 1 commit into from
Jul 30, 2016

Conversation

wesleywiser
Copy link
Member

Fixes #34985

@rust-highfive
Copy link
Contributor

r? @Aatch

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

@wesleywiser
Copy link
Member Author

r? @alexcrichton

@rust-highfive rust-highfive assigned alexcrichton and unassigned Aatch Jul 27, 2016
@@ -1542,13 +1541,9 @@ pub fn is_extern_item<'a, 'tcx>(cdata: Cmd,
let applicable = match item_family(item_doc) {
ImmStatic | MutStatic => true,
Fn => {
let ty::TypeScheme { generics, ty } = get_type(cdata, id, tcx);
let ty::TypeScheme { generics, ty: _ } = get_type(cdata, id, tcx);
Copy link
Member

@alexcrichton alexcrichton Jul 27, 2016

Choose a reason for hiding this comment

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

You should be able to actually change this to:

let ty::TypeScheme { generics, .. } = ...

that is, remove the ty matching entirely

Copy link
Member Author

Choose a reason for hiding this comment

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

Thank you! I was trying to find that syntax but couldn't.

@alexcrichton
Copy link
Member

Thanks @wesleywiser! The PR/commit may want to be updated to indicate though that only extern + no_mangle symbols are exported across LTO. I believe today we basically export everything with extern, whether or not it has no_mangle.

I'd love to write a test for this as well, but I have no idea how to do so, so seems fine to just have manual verification :)

@alexcrichton
Copy link
Member

Also just to confirm, could you gist the contents of the commands in #34985 after this PR?

@wesleywiser
Copy link
Member Author

The output of the commands in #34985 is now empty. Did you want the full output of nm without the grep?

@alexcrichton
Copy link
Member

Nah that's good enough for me! Mind updating the commit message to something like:

Only export #[no_mangle] extern symbols during LTO

Previously ... (more words here)

Previously, all extern symbols were exported even when performing LTO.
Now, we only export symbols that are also marked #[no_mangle].

Fixes rust-lang#34985
@wesleywiser
Copy link
Member Author

How's that?

@alexcrichton alexcrichton changed the title Only export symbols that are marked extern Only export #[no_mangle] extern symbols during LTO Jul 27, 2016
@alexcrichton
Copy link
Member

@bors: r+ 2dbf00e

Looks good to me, thanks @wesleywiser! (also updated the PR title)

@wesleywiser
Copy link
Member Author

Thank you!

@bors
Copy link
Collaborator

bors commented Jul 30, 2016

⌛ Testing commit 2dbf00e with merge daa25ba...

@bors
Copy link
Collaborator

bors commented Jul 30, 2016

💔 Test failed - auto-mac-32-opt

@alexcrichton
Copy link
Member

@bors: retry

On Sat, Jul 30, 2016 at 10:11 AM, bors notifications@github.com wrote:

💔 Test failed - auto-mac-32-opt
https://buildbot.rust-lang.org/builders/auto-mac-32-opt/builds/10073


You are receiving this because you were assigned.
Reply to this email directly, view it on GitHub
#35069 (comment), or mute
the thread
https://github.com/notifications/unsubscribe-auth/AAD95H26P1Tw2rMjhgQrqiPIDdrDa6rTks5qa4XHgaJpZM4JWNZC
.

@bors
Copy link
Collaborator

bors commented Jul 30, 2016

⌛ Testing commit 2dbf00e with merge 9dba50b...

bors added a commit that referenced this pull request Jul 30, 2016
Only export #[no_mangle] extern symbols during LTO

Fixes #34985
@bors bors merged commit 2dbf00e into rust-lang:master Jul 30, 2016
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.

5 participants