there're a lot of buzz about cache-related performance issues. I have several questions about them:

  1. Probably most popular issues are cache locality, and false cache sharing. Any others?
  2. any good overview?
  3. are there any proven techniques to fight them?
  4. what are common characteristics of applications where they are real problems? computational-intensive fields (math/image processing etc.)? highly-parallel applications?
link|improve this question

aligning loops relative to cache lines can help, depends on collisions and evictions. the non-frequently used but re-used items, that say take two cache lines but could have fit in one cost you twice as much fetch time, fetching 8 words every execution instead of say 2 or 3. To see this in action add or remove one then two then three nops early in .text to force a change in the alignment of the whole program, then watch your performance change. – dwelch Feb 14 '11 at 17:43
feedback

1 Answer

up vote 3 down vote accepted

One of the more interesting ones is avoiding cache collisions. If you know a memory access pattern, you can lay out the accessed items in a way that minimizes the cache line collisions between the accessed data. You can do this for data and code.

Figuring out data access patterns is relatively hard, but you can relatively easily figure out code access patterns. Given a call graph, the sets of blocks that make up the bodies of functions, and some estimates of the transition frequencies between the blocks, you can assign code blocks to the cache in a way that maximizes the chance that the next block you need will be in some other cache line that doesn't conflict with the current one. One interesting idea was that you only had to assign code blocks that were "hot" (high probability of execution); it didn't matter much where you put the cold ones. IIRC, that means you can sort the blocks by frequency of probable execution, and then assign them in that order.

You merely need a global analysis :-} The first place I read about this, the optimizatoin was actually implemented as part of a linker, which is one way to get your hands on the entire program.

I don't remember any nice overview or set of collected techniques. The PLDI conferences tend to have research papers on this topic, though.

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.