-
Notifications
You must be signed in to change notification settings - Fork 245
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
Apply __attribute__((const))
where applicable
#1982
Comments
Is there a reason for not doing |
It is cheap compared to searching for all such instances as they don't necessarily have to be contained within for-loops. It can also lead to more readable code. |
Personally, I am a big fan of attributes since that hints the compiler that it can assume even more things. Of course, one should still try to optimize the code as much as possible, as this is only valid for GCC-compatible compilers. |
I don't think there are too many of these. One of the drawbacks of this attribute is that the compiler can start to optimize out benchmarked function calls from benchmarking loops :-) |
That's true. |
I've seen functions which does something like
Assuming that
g
andn
does not change, GCC cannot optimize this as it doesn't know if the output will be different each time. Pushing__attribute__((const))
will make it understand it.This should be pushed onto every function where it applies.
See GCC's documentation for more information.
The text was updated successfully, but these errors were encountered: