Does anyone know how to get the memory accesses (pointers) that cause page faults? I'm interested mostly in the major page faults.
A bit of background about what I'm trying to achieve. I have an application with a large memory footprint (a database) and I want to correlate paging with the accesses to the large data structures (such as tables, indexes which are allocated using mmap()). The mappings of the process are easy to retrieve from /proc//maps. Now, if I have the memory accesses that cause page faults I can track how many page faults are caused when accessing each data structure.
I think perf or systemtap could do the job. Any ideas?