SHORT Data cache miss rate/ratio

EVENTSET
FIXC0 INSTR_RETIRED_ANY
FIXC1 CPU_CLK_UNHALTED_CORE
FIXC2 CPU_CLK_UNHALTED_REF
PMC0  L1D_REPL
PMC1  L1D_ALL_CACHE_REF

METRICS
Runtime (RDTSC) [s] time
Runtime unhalted [s] FIXC1*inverseClock
Clock [MHz]  1.E-06*(FIXC1/FIXC2)/inverseClock
CPI  FIXC1/FIXC0
Data cache misses PMC0
Data cache request rate PMC1/FIXC0
Data cache miss rate PMC0/FIXC0
Data cache miss ratio PMC0/PMC1

LONG
Formulas:
Data cache request rate =  L1D_ALL_CACHE_REF / INSTR_RETIRED_ANY
Data cache miss rate = L1D_REPL / INSTR_RETIRED_ANY
Data cache miss ratio =  L1D_REPL / L1D_ALL_CACHE_REF
-
This group measures the locality of your data accesses with regard to the
L1 Cache. Data cache request rate tells you how data intensive your code is
or how many Data accesses you have in average per instruction.
The Data cache miss rate gives a measure how often it was necessary to get
cachelines from higher levels of the memory hierarchy. And finally 
Data cache miss ratio tells you how many of your memory references required
a cacheline to be loaded from a higher level. While the Data cache miss rate 
might be given by your algorithm you should try to get Data cache miss ratio
as low as possible by increasing your cache reuse.

