Micro-optimize list index range checks by rhettinger · Pull Request #9784 · python/cpython (original) (raw)
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 andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Conversation8 Commits2 Checks0 Files changed
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
[ Show hidden characters]({{ revealButtonHref }})
Old code
_list_item:
testq %rsi, %rsi
js L282
cmpq %rsi, 16(%rdi)
jg L283
...
L283:
movq 24(%rdi), %rax
movq (%rax,%rsi,8), %rax
addq $1, (%rax)
ret
New code
_list_item:
cmpq 16(%rdi), %rsi
jb L282
...
L282:
movq 24(%rdi), %rax
movq (%rax,%rsi,8), %rax
addq $1, (%rax)
ret
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; |
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 ?
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?
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.
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.
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) |
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.
This was referenced
Jun 6, 2024
Reviewers
vstinner vstinner left review comments
sir-sigurd sir-sigurd left review comments
gpshead gpshead approved these changes
serhiy-storchaka Awaiting requested review from serhiy-storchaka
skrah Awaiting requested review from skrah