This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author pitrou
Recipients pitrou, rhettinger, serhiy.storchaka, tim.peters
Date 2015-01-18.01:26:39
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1421544400.39.0.987145107178.issue23259@psf.upfronthosting.co.za>
In-reply-to
Content
Fewer instructions doesn't necessarily translate into better performance. The bottleneck in superscalar, pipelined processors is often the data dependency path between instructions. Adding instructions may as well not slow anything down, if those instructions don't lengthen the dependency path.

It would be interesting to know what the impact of the patch is on the workloads that were supposed to be helped by the removed logic.
History
Date User Action Args
2015-01-18 01:26:40pitrousetrecipients: + pitrou, tim.peters, rhettinger, serhiy.storchaka
2015-01-18 01:26:40pitrousetmessageid: <1421544400.39.0.987145107178.issue23259@psf.upfronthosting.co.za>
2015-01-18 01:26:40pitroulinkissue23259 messages
2015-01-18 01:26:39pitroucreate