In what circumstances can large pages produce a speedup ?

Posted by timday on Stack Overflow See other posts from Stack Overflow or by timday
Published on 2010-05-20T17:42:16Z Indexed on 2010/05/20 17:50 UTC
Read the original article Hit count: 196

Filed under:
|
|
|

Modern x86 CPUs have the ability to support larger page sizes than the legacy 4K (ie 2MB or 4MB), and there are OS facilities (Linux, Windows) to access this functionality.

The Microsoft link above states large pages "increase the efficiency of the translation buffer, which can increase performance for frequently accessed memory". Which isn't very helpful in predicting whether large pages will improve any given situation. I'm interested in concrete, preferably quantified, examples of where moving some program logic (or a whole application) to use huge pages has resulted in some performance improvement. Anyone got any success stories ?

There's one particular case I know of myself: using huge pages can dramatically reduce the time needed to fork a large process (presumably as the number of TLB records needing copying is reduced by a factor on the order of 1000). I'm interested in whether huge pages can also benefit more mundane applications though.

© Stack Overflow or respective owner

Related posts about x86

Related posts about tlb