Idea: Tell compiler palloc() et al return aligned values - Mailing list pgsql-hackers

From Andres Freund
Subject Idea: Tell compiler palloc() et al return aligned values
Date
Msg-id 20161004223914.4v3pkzvga4wdekbj@alap3.anarazel.de
Whole thread Raw
List pgsql-hackers
Hi,

Just saw a fair amount of memset/memcpy in a profile, with the symbol
name indicating that the compiler assumes the data is unaligned.  After
pondering it for a few moments, that's not too surprising: Even if the
memory is allocated in the same place, the compiler has no way knowing
that palloc et al always return aligned memory.

Seems like a good idea to replace palloc et al with a macro that does
__builtin_assume_aligned(real_palloc(), 8) or such.

Greetings,

Andres Freund



pgsql-hackers by date:

Previous
From: Andres Freund
Date:
Subject: Re: Hash tables in dynamic shared memory
Next
From: Thomas Munro
Date:
Subject: Re: Hash tables in dynamic shared memory