public inbox for glibc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug libc/12872] New: Wrong alignment of La_x86_64_vector
@ 2011-06-10  5:29 hjl.tools at gmail dot com
  2011-07-07  3:57 ` [Bug libc/12872] " drepper.fsp at gmail dot com
                   ` (6 more replies)
  0 siblings, 7 replies; 8+ messages in thread
From: hjl.tools at gmail dot com @ 2011-06-10  5:29 UTC (permalink / raw)
  To: glibc-bugs

http://sourceware.org/bugzilla/show_bug.cgi?id=12872

           Summary: Wrong alignment of La_x86_64_vector
           Product: glibc
           Version: 2.14
            Status: NEW
          Severity: normal
          Priority: P2
         Component: libc
        AssignedTo: drepper.fsp@gmail.com
        ReportedBy: hjl.tools@gmail.com


sysdeps/x86_64/bits/link.h has

/* Registers for entry into PLT on x86-64.  */
# if __GNUC_PREREQ (4,0)
typedef float La_x86_64_xmm __attribute__ ((__vector_size__ (16)));
typedef float La_x86_64_ymm __attribute__ ((__vector_size__ (32)));
# else
typedef float La_x86_64_xmm __attribute__ ((__mode__ (__V4SF__)));
# endif

typedef union
{
# if __GNUC_PREREQ (4,0)
  La_x86_64_ymm ymm[2];
# endif
  La_x86_64_xmm xmm[4];
} La_x86_64_vector __attribute__ ((aligned(16)));


It makes La_x86_64_vector aligned at 16byte. Any access
to ymm field may cause unaligned access.

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.


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

end of thread, other threads:[~2014-06-24  8:37 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-06-10  5:29 [Bug libc/12872] New: Wrong alignment of La_x86_64_vector hjl.tools at gmail dot com
2011-07-07  3:57 ` [Bug libc/12872] " drepper.fsp at gmail dot com
2011-07-07  4:12 ` hjl.tools at gmail dot com
2011-07-08 17:10 ` drepper.fsp at gmail dot com
2011-07-08 17:16 ` hjl.tools at gmail dot com
2011-07-09 23:58 ` drepper.fsp at gmail dot com
2011-07-11  1:27 ` hjl.tools at gmail dot com
2014-06-24  8:37 ` fweimer at redhat dot com

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).