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

Add inline attributes documentation. #11491

Merged
merged 1 commit into from
Jan 12, 2014

Conversation

wting
Copy link
Contributor

@wting wting commented Jan 12, 2014

Closes #7959.

* `#[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.

Copy link
Member

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.

Copy link
Contributor

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.

@wting
Copy link
Contributor Author

wting commented Jan 12, 2014

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
Copy link
Member

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).

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'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...

Copy link
Contributor

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.

@wting
Copy link
Contributor Author

wting commented Jan 12, 2014

Removed info about inlining advantages / disadvantages.

bors added a commit that referenced this pull request Jan 12, 2014
@bors bors closed this Jan 12, 2014
@bors bors merged commit 826f24b into rust-lang:master Jan 12, 2014
@wting wting deleted the wting_7959_document_inline_attributes branch February 14, 2014 15:22
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.

Document attributes inline {,always,never}
5 participants