-
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 inline attributes documentation. #11491
Add inline attributes documentation. #11491
Conversation
* `#[inline]` hints the compiler to perform an inline expansion. | ||
* `#[inline(always)]` asks the compiler to always perform an inline expansion. | ||
* `#[inline(never)]` asks the compiler to never perform an inline expansion. | ||
|
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.
It would be good to mention that having either #[inline]
or #[inline(always)]
causes the function to be serialised to crate metadata, and so allow cross-crate inlining.
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.
It's also worth mentioning that #[inline(always)]
may not always work due to indirection through function pointers. Link-time optimization allows cross-crate inlining without manual annotation so that's worth noting too.
Updated with @huonw's comments. |
The inline attribute is used to suggest to the compiler to perform an inline | ||
expansion and place a copy of the function in the caller rather than generating | ||
code to call the function where it is defined. This prevents the overhead of a | ||
function call at the expense of possibly creating code bloat. Incorrectly |
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.
It's not just function call overhead: inlining allows secondary optimisations like constant folding and dead-code elimination.
I think it would also be worth mentioning that the compiler will actually do this automatically (estimating whether it will be beneficial using heuristics like the size of the function, and the number of times it is called).
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've added more details about compiler automatically inlining functions.
However I think going into secondary optimizations from inlining functions is going too much into detail...
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.
Inlining isn't usually about removing the overhead of a function call, so I think that's better left unsaid if you're not going to go into more detail.
Removed info about inlining advantages / disadvantages. |
…es, r=alexcrichton Closes #7959.
Closes #7959.