-
-
Notifications
You must be signed in to change notification settings - Fork 31k
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
Micro-optimize list index range checks #9784
Conversation
Is not this like bpo-28397? |
It would be interesting to run Linux perf on some representative examples to understand how the function call is affecting cache misses, references and branch predictions. (See #6493 as an example). |
optimization manual found at: | ||
https://www.agner.org/optimize/optimizing_cpp.pdf | ||
*/ | ||
return (size_t) i < (size_t) limit; |
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'm not sure that the behaviour is well defined in C. I fear that it's Undefined Behaviour. @benjaminp @gpshead: What do you think ?
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.
If it's well defined, why should we hack such micro optimization? Why compilers would not implement the optimization themself?
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 think because they don't know that Py_SIZE(op)
is non-negative.
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 is well defined. It is used for example in the STL implementations.
But there was not found any difference in microbenchmark results on 64-bit platforms in previous discussion in bpo-28397.
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.
Regardless of if this change is measurable, i like the way the code looks afterwards, getting rid of the repeated verbose i < 0 || i >= Py_SIZE(spam)
everywhere. so +1 from me.
@@ -208,6 +208,19 @@ PyList_Size(PyObject *op) | |||
return Py_SIZE(op); | |||
} | |||
|
|||
static inline int | |||
valid_index(Py_ssize_t i, Py_ssize_t limit) |
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.
Why not just define this as taking two size_t
parameters instead of doing the casting below. The casts then happen implicitly at all call sites.
Old code
New code