-
Notifications
You must be signed in to change notification settings - Fork 15.8k
Description
| Bugzilla Link | 21414 |
| Version | trunk |
| OS | All |
| CC | @DimitryAndric,@emaste,@zmodem,@hfinkel,@rnk,@TNorthover |
Extended Description
We recently enabled clang as default compiler for chrome on linux. It mostly went well. One problem we ran into was that chrome 38 crashed on old debians. rnk explained this to me, and from what I understand (I probably got some of it wrong) it was due to clang using aligned SSE instructions.
gcc changed their alignment abi on linux a while ago, and the current abi does guarantee alignment. The old one doesn't, and I suppose on debian system libraries still use the old abi. gcc emits unaligned SSE loads on 32bit linux, clang should too.
As is, every provider of binary-distributed binaries on linux will run into this and then work around it somehow. We ended up adding tons of stack adjustments, which bloats binary size, is bad for the icache, etc. Unaligned SSE reads are almost as fast as aligned ones, so clang should do the thing that Just Works instead of giving a bad user experience to its users.
https://code.google.com/p/nativeclient/issues/detail?id=3935