-
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
Add -C hint-mostly-unused
to tell rustc that most of a crate will go unused
#135656
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -172,6 +172,25 @@ values: | |
|
||
The default if not specified depends on the target. | ||
|
||
## hint-mostly-unused | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Given that the flag is now unstable/nightly-gated, this documentation should be moved to the unstable-book (under There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No need for a tracking issue before consensus tho right ? This still needs fcp anyways. (And given the reservations in the thread some more tests and all will be needed before stabilization.) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sure, the creation of the tracking issue can wait until the MCP is accepted and the PR nearing approval. |
||
|
||
This flag hints to the compiler that most of the crate will probably go unused. | ||
The compiler can optimize its operation based on this assumption, in order to | ||
compile faster. This is a hint, and does not guarantee any particular behavior. | ||
|
||
This option can substantially speed up compilation if applied to a large | ||
dependency where the majority of the dependency does not get used. This flag | ||
Comment on lines
+181
to
+182
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can we provide any indication of how to do this? I've suggested some people try adding There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sure, will do. |
||
may slow down compilation in other cases. | ||
|
||
Currently, this option makes the compiler defer as much code generation as | ||
possible from functions in the crate, until later crates invoke those | ||
functions. Functions that never get invoked will never have code generated for | ||
them. For instance, if a crate provides thousands of functions, but only a few | ||
of them will get called, this flag will result in the compiler only doing code | ||
generation for the called functions. (This uses the same mechanisms as | ||
cross-crate inlining of functions.) This does not affect `extern` functions, or | ||
functions marked as `#[inline(never)]`. | ||
|
||
## incremental | ||
|
||
This flag allows you to enable incremental compilation, which allows `rustc` | ||
|
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.
Placing this logic below the check for
InlineAttr::Never
does not change whether a call to a#[inline(never)]
function can be inlined, it changes when and where#[inline(never)]
functions get compiled. With the logic down here,#[inline(never)]
functions and their callees (recursively) are not delayed.The exact motivation for putting this logic here instead of above the check for
codegen_fn_attrs.inline
should be clearly recorded. I don't rightly remember what it was, but for example panic backtrace trimming still works even if it is moved.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.
Making sure inline-never functions don't get affected was an intentional goal here. I'll add a comment.