public inbox for gcc-help@gcc.gnu.org
 help / color / mirror / Atom feed
* Is UBSan supposed to produce a finding for _mm_load_sd and _mm_store_sd
@ 2017-12-08 17:16 Jeffrey Walton
  2017-12-08 17:29 ` Marc Glisse
  0 siblings, 1 reply; 3+ messages in thread
From: Jeffrey Walton @ 2017-12-08 17:16 UTC (permalink / raw)
  To: gcc-help

I have some code that loads a 64-bit integer into a XMM register. It
loads the integer from a byte array:

    byte v[8] = ...
    __m128i t = _mm_castpd_si128(
        _mm_load_sd((const double *)(v)));

It is producing a finding for an unaligned load. I get similar
findings for _mm_load_sd, _mm_store_sd and _mm_loaddup_pd.

According to the Intel Intrinsics Guide (e.g., _mm_load_sd):

    Load a double-precision (64-bit) floating-point element from memory
    into the lower of dst, and zero the upper element. mem_addr does
    not need to be aligned on any particular boundary.

Should GCC be producing a finding in this case? Is there a way to work
around it without an extra memcpy?

A similar Clang issue is at http://bugs.llvm.org/show_bug.cgi?id=20670 .

Thanks in advance,

Jeff

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2018-02-22  2:28 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-12-08 17:16 Is UBSan supposed to produce a finding for _mm_load_sd and _mm_store_sd Jeffrey Walton
2017-12-08 17:29 ` Marc Glisse
2018-02-22 14:08   ` Jeffrey Walton

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).