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

rustc: Pass -dead_strip on OSX #13829

Merged
merged 1 commit into from
Apr 29, 2014
Merged

Conversation

alexcrichton
Copy link
Member

This flag to the linker asks it to strip away all dead code during linking, as
well as dead data. This reduces the size of hello world from 1.7MB to 458K on my
system (70% reduction).

I have not seen this impact link times negatively, and I have seen this pass
'make check' successfully. I am slightly wary of adding this option, but the
benefits are so huge tha I think we should work hard to work around any issues
rather than avoid using the flag entirely.

This flag to the linker asks it to strip away all dead code during linking, as
well as dead data. This reduces the size of hello world from 1.7MB to 458K on my
system (70% reduction).

I have not seen this impact link times negatively, and I have seen this pass
'make check' successfully. I am slightly wary of adding this option, but the
benefits are so huge tha I think we should work hard to work around any issues
rather than avoid using the flag entirely.
@thestinger
Copy link
Contributor

Can you add --gc-sections for the GNU-style linkers too? If these strip out metadata it indicates a bug in Rust (not marking it as used) which should be easy to fix.

@alexcrichton
Copy link
Member Author

We gain no benefit from --gc-sections currently. I'm investigating what sort of improvement we can get from this.

We can work around stripping out metadata (or we could only run it on executables). I think the benefits will be worth the cost of working around the flag (if we get some big benefits)

@thestinger
Copy link
Contributor

Passing --gc-sections strips out a bit of data for me, but it's not going to have the full effect without forcing all of the functions to be output in individual sections, which comes with a cost. The section per function part could be a command-line switch, but there's no reason to leave in the dead sections by default, at least when optimizing.

@alexcrichton
Copy link
Member Author

I have separate analysis for -ffunction-sections in #13833. Adding that is less clear cut to me. This is clear cut in that I can't find a downside to running -dead_strip.

@thestinger
Copy link
Contributor

I don't think we should enable -ffunction-sections by default because splitting into sections has a performance cost, but I do think --gc-sections should be there.

@alexcrichton
Copy link
Member Author

I think you may have meant to comment on the other PR, this has nothing to do with -ffunction-sections or --gc-sections.

bors added a commit that referenced this pull request Apr 29, 2014
This flag to the linker asks it to strip away all dead code during linking, as
well as dead data. This reduces the size of hello world from 1.7MB to 458K on my
system (70% reduction).

I have not seen this impact link times negatively, and I have seen this pass
'make check' successfully. I am slightly wary of adding this option, but the
benefits are so huge tha I think we should work hard to work around any issues
rather than avoid using the flag entirely.
@bors bors closed this Apr 29, 2014
@bors bors merged commit edd8bb0 into rust-lang:master Apr 29, 2014
@alexcrichton alexcrichton deleted the dead-strip branch May 1, 2014 18:33
arcnmx pushed a commit to arcnmx/rust that referenced this pull request Jan 9, 2023
Clippy-fix explicit auto-deref

Seems like these can be safely fixed. With one, I was particularly surprised -- `Some(pats) => &**pats,` in body.rs?

```
cargo clippy --fix -- -A clippy::all -D clippy::explicit_auto_deref
```
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.

3 participants