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 serhiy.storchaka
Recipients christian.heimes, gregory.p.smith, jcea, mark.dickinson, pitrou, serhiy.storchaka, skrah, tim.peters
Date 2012-11-11.12:20:51
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1352636451.48.0.0723873299569.issue16427@psf.upfronthosting.co.za>
In-reply-to
Content
> Unaligned accesses are not a problem on x86(-64), but they will segfault
(bus error, IIRC) on other architectures such as SPARC, unfortunately.

On x86(-64) this kills performance and makes the optimization be senseless.

> FWIW, on x86/x64 gcc often generates identical code for x = y and
memcpy(x, y, 8).

The code can be identical, but the time will differ significantly for aligned and non-aligned data.
History
Date User Action Args
2012-11-11 12:20:51serhiy.storchakasetrecipients: + serhiy.storchaka, tim.peters, gregory.p.smith, jcea, mark.dickinson, pitrou, christian.heimes, skrah
2012-11-11 12:20:51serhiy.storchakasetmessageid: <1352636451.48.0.0723873299569.issue16427@psf.upfronthosting.co.za>
2012-11-11 12:20:51serhiy.storchakalinkissue16427 messages
2012-11-11 12:20:51serhiy.storchakacreate