I have some threaded C code that requires 64 byte alignment of the processed data structure. How will this alignment interact with prefetch instructions like the gcc __builtin_prefetch? Will the effects of prefetching be the same as using a non-aligned array or not?

Note that I am using memalign to obtain the aligned array.

Thanks.

link|improve this question

What language? C? C++? C#? OC? OCD? – Shaz Jun 24 '11 at 21:14
The code is in C. – Tudor Jun 24 '11 at 21:17
1  
I added that into the tags. You should get more views now. :) – Shaz Jun 24 '11 at 21:21
Thank you sir. :) – Tudor Jun 24 '11 at 21:28
It will be less useful than normal. Aligning data on a cache line (64 bytes on most mainstream cpus) makes everybody happy without much help. – Hans Passant Jun 24 '11 at 21:34
feedback

1 Answer

up vote 1 down vote accepted

The answer to this one is highly implementation-dependent.

However, on x86 and x86_64, GCC implements __builtin_prefetch as a single PREFETCH assembly instruction.

According to Intel's documentation (search for "PREFETCH"):

Fetches the line of data from memory that contains the byte specified with the source operand to a location in the cache hierarchy specified by a locality hint:

I am 99% sure the AMD version behaves the same way, but I am too busy to check...

So if the memory operand is unaligned, it will effectively be rounded down to a multiple of 64 bytes and that cache line will be prefetched. (Well, 64 bytes on all the current CPUs I know of. The instruction set reference only guaranteed to be "a minimum of 32 bytes". Not sure why they bothered saying that; in any situation where it makes sense to use this gadget, you have to be assuming a lot about the particular CPU already.)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.