Uh oh!
There was an error while loading. Please reload this page.
Micro-optimize list index range checks - #9784
Conversation
Is not this like bpo-28397? |
pablogsal
commented
Oct 10, 2018
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.
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.
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.
I think because they don't know that Py_SIZE(op) is non-negative.
There was a problem hiding this comment.
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.
gpshead
left a comment
There was a problem hiding this comment.
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.
| } | ||
| static inline int | ||
| valid_index(Py_ssize_t i, Py_ssize_t limit) |
There was a problem hiding this comment.
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