Lines Matching defs:c2c_stats
51 struct c2c_stats { struct
52 u32 nr_entries;
54 u32 locks; /* count of 'lock' transactions */
55 u32 store; /* count of all stores in trace */
56 u32 st_uncache; /* stores to uncacheable address */
57 u32 st_noadrs; /* cacheable store with no address */
58 u32 st_l1hit; /* count of stores that hit L1D */
59 u32 st_l1miss; /* count of stores that miss L1D */
60 u32 st_na; /* count of stores with memory level is not available */
61 u32 load; /* count of all loads in trace */
62 u32 ld_excl; /* exclusive loads, rmt/lcl DRAM - snp none/miss */
63 u32 ld_shared; /* shared loads, rmt/lcl DRAM - snp hit */
64 u32 ld_uncache; /* loads to uncacheable address */
88 int c2c_decode_stats(struct c2c_stats *stats, struct mem_info *mi); argument