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 Neil.Hodgson
Recipients Neil.Hodgson, ethan.furman, ezio.melotti, georg.brandl, pitrou, serhiy.storchaka, vstinner
Date 2013-04-04.22:21:47
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1365114107.35.0.327260381381.issue17615@psf.upfronthosting.co.za>
In-reply-to
Content
Looking at the assembler output from gcc 4.7 on Linux shows that it specialises the loop 9 times - once for each pair of kinds. This is why there was far less slow-down on Linux.

Explicitly writing out the 9 loops is inelegant and would make accurate maintenance more difficult. There may be some way to use the preprocessor to do this cleanly.
History
Date User Action Args
2013-04-04 22:21:47Neil.Hodgsonsetrecipients: + Neil.Hodgson, georg.brandl, pitrou, vstinner, ezio.melotti, ethan.furman, serhiy.storchaka
2013-04-04 22:21:47Neil.Hodgsonsetmessageid: <1365114107.35.0.327260381381.issue17615@psf.upfronthosting.co.za>
2013-04-04 22:21:47Neil.Hodgsonlinkissue17615 messages
2013-04-04 22:21:47Neil.Hodgsoncreate