Symbol: SNOOP
arch/powerpc/perf/isa207-common.c
223
ret = PH(LVL, L1) | LEVEL(L1) | P(SNOOP, HIT);
arch/powerpc/perf/isa207-common.c
226
ret = PH(LVL, L2) | LEVEL(L2) | P(SNOOP, HIT);
arch/powerpc/perf/isa207-common.c
229
ret = PH(LVL, L3) | LEVEL(L3) | P(SNOOP, HIT);
arch/powerpc/perf/isa207-common.c
233
ret = P(SNOOP, HIT);
arch/powerpc/perf/isa207-common.c
252
ret |= P(SNOOP, HIT);
arch/powerpc/perf/isa207-common.c
260
ret |= PH(LVL, L2) | LEVEL(L2) | P(SNOOP, HIT);
arch/powerpc/perf/isa207-common.c
262
ret |= PH(LVL, L2) | LEVEL(L2) | P(SNOOP, HITM);
arch/powerpc/perf/isa207-common.c
264
ret |= PH(LVL, L3) | LEVEL(L3) | P(SNOOP, HIT);
arch/powerpc/perf/isa207-common.c
266
ret |= PH(LVL, L3) | LEVEL(L3) | P(SNOOP, HITM);
arch/powerpc/perf/isa207-common.c
269
ret = PH(LVL, L2) | LEVEL(L2) | REM | P(SNOOP, HIT) | P(HOPS, 0);
arch/powerpc/perf/isa207-common.c
271
ret = PH(LVL, L2) | LEVEL(L2) | REM | P(SNOOP, HITM) | P(HOPS, 0);
arch/powerpc/perf/isa207-common.c
273
ret = PH(LVL, L3) | LEVEL(L3) | REM | P(SNOOP, HIT) | P(HOPS, 0);
arch/powerpc/perf/isa207-common.c
275
ret = PH(LVL, L3) | LEVEL(L3) | REM | P(SNOOP, HITM) | P(HOPS, 0);
arch/powerpc/perf/isa207-common.c
282
P(SNOOP, HIT) | P(HOPS, 2);
arch/powerpc/perf/isa207-common.c
285
P(SNOOP, HITM) | P(HOPS, 2);
arch/powerpc/perf/isa207-common.c
288
P(SNOOP, HIT) | P(HOPS, 3);
arch/powerpc/perf/isa207-common.c
291
P(SNOOP, HITM) | P(HOPS, 3);
arch/powerpc/perf/isa207-common.c
295
ret |= P(SNOOP, HIT);
arch/powerpc/perf/isa207-common.c
297
ret |= P(SNOOP, HITM);
arch/x86/events/intel/ds.c
122
#define SNOOP_NONE_MISS (P(SNOOP, NONE) | P(SNOOP, MISS))
arch/x86/events/intel/ds.c
126
P(OP, LOAD) | P(LVL, MISS) | LEVEL(L3) | P(SNOOP, NA),/* 0x00:ukn L3 */
arch/x86/events/intel/ds.c
127
OP_LH | P(LVL, L1) | LEVEL(L1) | P(SNOOP, NONE), /* 0x01: L1 local */
arch/x86/events/intel/ds.c
128
OP_LH | P(LVL, LFB) | LEVEL(LFB) | P(SNOOP, NONE), /* 0x02: LFB hit */
arch/x86/events/intel/ds.c
129
OP_LH | P(LVL, L2) | LEVEL(L2) | P(SNOOP, NONE), /* 0x03: L2 hit */
arch/x86/events/intel/ds.c
130
OP_LH | P(LVL, L3) | LEVEL(L3) | P(SNOOP, NONE), /* 0x04: L3 hit */
arch/x86/events/intel/ds.c
131
OP_LH | P(LVL, L3) | LEVEL(L3) | P(SNOOP, MISS), /* 0x05: L3 hit, snoop miss */
arch/x86/events/intel/ds.c
132
OP_LH | P(LVL, L3) | LEVEL(L3) | P(SNOOP, HIT), /* 0x06: L3 hit, snoop hit */
arch/x86/events/intel/ds.c
133
OP_LH | P(LVL, L3) | LEVEL(L3) | P(SNOOP, HITM), /* 0x07: L3 hit, snoop hitm */
arch/x86/events/intel/ds.c
134
OP_LH | P(LVL, REM_CCE1) | REM | LEVEL(L3) | P(SNOOP, HIT), /* 0x08: L3 miss snoop hit */
arch/x86/events/intel/ds.c
135
OP_LH | P(LVL, REM_CCE1) | REM | LEVEL(L3) | P(SNOOP, HITM), /* 0x09: L3 miss snoop hitm*/
arch/x86/events/intel/ds.c
136
OP_LH | P(LVL, LOC_RAM) | LEVEL(RAM) | P(SNOOP, HIT), /* 0x0a: L3 miss, shared */
arch/x86/events/intel/ds.c
137
OP_LH | P(LVL, REM_RAM1) | REM | LEVEL(L3) | P(SNOOP, HIT), /* 0x0b: L3 miss, shared */
arch/x86/events/intel/ds.c
140
OP_LH | P(LVL, IO) | LEVEL(NA) | P(SNOOP, NONE), /* 0x0e: I/O */
arch/x86/events/intel/ds.c
141
OP_LH | P(LVL, UNC) | LEVEL(NA) | P(SNOOP, NONE), /* 0x0f: uncached */
arch/x86/events/intel/ds.c
147
pebs_data_source[0x05] = OP_LH | P(LVL, L3) | LEVEL(L3) | P(SNOOP, HIT);
arch/x86/events/intel/ds.c
148
pebs_data_source[0x06] = OP_LH | P(LVL, L3) | LEVEL(L3) | P(SNOOP, HITM);
arch/x86/events/intel/ds.c
149
pebs_data_source[0x07] = OP_LH | P(LVL, L3) | LEVEL(L3) | P(SNOOP, HITM);
arch/x86/events/intel/ds.c
156
data_source[0x08] = OP_LH | pmem_or_l4 | P(SNOOP, HIT);
arch/x86/events/intel/ds.c
157
data_source[0x09] = OP_LH | pmem_or_l4 | REM | P(SNOOP, HIT);
arch/x86/events/intel/ds.c
158
data_source[0x0b] = OP_LH | LEVEL(RAM) | REM | P(SNOOP, NONE);
arch/x86/events/intel/ds.c
160
data_source[0x0d] = OP_LH | LEVEL(ANY_CACHE) | REM | P(SNOOP, HITM);
arch/x86/events/intel/ds.c
170
data_source[0x05] = OP_LH | P(LVL, L3) | LEVEL(L3) | P(SNOOP, HIT);
arch/x86/events/intel/ds.c
171
data_source[0x06] = OP_LH | P(LVL, L3) | LEVEL(L3) | P(SNOOP, HITM);
arch/x86/events/intel/ds.c
196
data_source[0x08] = OP_LH | P(LVL, L3) | LEVEL(L3) | P(SNOOP, HITM);
arch/x86/events/intel/ds.c
197
data_source[0x0a] = OP_LH | P(LVL, LOC_RAM) | LEVEL(RAM) | P(SNOOP, NONE);
arch/x86/events/intel/ds.c
198
data_source[0x0b] = OP_LH | LEVEL(RAM) | REM | P(SNOOP, NONE);
arch/x86/events/intel/ds.c
200
data_source[0x0d] = OP_LH | LEVEL(RAM) | REM | P(SNOOP, HITM);
arch/x86/events/intel/ds.c
234
P(OP, LOAD) | P(LVL, MISS) | LEVEL(L3) | P(SNOOP, NA), /* 0x00: ukn L3 */
arch/x86/events/intel/ds.c
235
OP_LH | P(LVL, L1) | LEVEL(L1) | P(SNOOP, NONE), /* 0x01: L1 hit */
arch/x86/events/intel/ds.c
236
OP_LH | P(LVL, L1) | LEVEL(L1) | P(SNOOP, NONE), /* 0x02: L1 hit */
arch/x86/events/intel/ds.c
237
OP_LH | P(LVL, LFB) | LEVEL(LFB) | P(SNOOP, NONE), /* 0x03: LFB/L1 Miss Handling Buffer hit */
arch/x86/events/intel/ds.c
239
OP_LH | P(LVL, L2) | LEVEL(L2) | P(SNOOP, NONE), /* 0x05: L2 Hit */
arch/x86/events/intel/ds.c
240
OP_LH | LEVEL(L2_MHB) | P(SNOOP, NONE), /* 0x06: L2 Miss Handling Buffer Hit */
arch/x86/events/intel/ds.c
242
OP_LH | P(LVL, L3) | LEVEL(L3) | P(SNOOP, NONE), /* 0x08: L3 Hit */
arch/x86/events/intel/ds.c
247
OP_LH | P(LVL, L3) | LEVEL(L3) | P(SNOOP, HITM), /* 0x0d: L3 Hit Snoop HitM */
arch/x86/events/intel/ds.c
249
P(OP, LOAD) | P(LVL, MISS) | P(LVL, L3) | LEVEL(L3) | P(SNOOP, HITM), /* 0x0f: L3 Miss Snoop HitM */
arch/x86/events/intel/ds.c
250
OP_LH | LEVEL(MSC) | P(SNOOP, NONE), /* 0x10: Memory-side Cache Hit */
arch/x86/events/intel/ds.c
251
OP_LH | P(LVL, LOC_RAM) | LEVEL(RAM) | P(SNOOP, NONE), /* 0x11: Local Memory Hit */
arch/x86/events/intel/ds.c
271
P(OP, LOAD) | P(LVL, NA) | LEVEL(NA) | P(SNOOP, NA), /* 0x00: non-cache access */
arch/x86/events/intel/ds.c
272
OP_LH | LEVEL(L0) | P(SNOOP, NONE), /* 0x01: L0 hit */
arch/x86/events/intel/ds.c
273
OP_LH | P(LVL, L1) | LEVEL(L1) | P(SNOOP, NONE), /* 0x02: L1 hit */
arch/x86/events/intel/ds.c
274
OP_LH | P(LVL, LFB) | LEVEL(LFB) | P(SNOOP, NONE), /* 0x03: L1 Miss Handling Buffer hit */
arch/x86/events/intel/ds.c
275
OP_LH | P(LVL, L2) | LEVEL(L2) | P(SNOOP, NONE), /* 0x04: L2 Hit Clean */
arch/x86/events/intel/ds.c
278
OP_LH | P(LVL, L2) | LEVEL(L2) | P(SNOOP, HIT), /* 0x07: L2 Hit Snoop HIT */
arch/x86/events/intel/ds.c
279
OP_LH | P(LVL, L2) | LEVEL(L2) | P(SNOOP, HITM), /* 0x08: L2 Hit Snoop Hit Modified */
arch/x86/events/intel/ds.c
280
OP_LH | P(LVL, L2) | LEVEL(L2) | P(SNOOP, MISS), /* 0x09: Prefetch Promotion */
arch/x86/events/intel/ds.c
281
OP_LH | P(LVL, L2) | LEVEL(L2) | P(SNOOP, MISS), /* 0x0a: Cross Core Prefetch Promotion */
arch/x86/events/intel/ds.c
286
OP_LH | P(LVL, UNC) | LEVEL(NA) | P(SNOOP, NONE), /* 0x0f: uncached */
arch/x86/events/intel/ds.c
294
P(OP, LOAD) | P(LVL, NA) | LEVEL(NA) | P(SNOOP, NA), /* 0x00: non-cache access */
arch/x86/events/intel/ds.c
295
OP_LH | P(LVL, L1) | LEVEL(L1) | P(SNOOP, NONE), /* 0x01: L1 hit */
arch/x86/events/intel/ds.c
296
OP_LH | P(LVL, LFB) | LEVEL(LFB) | P(SNOOP, NONE), /* 0x02: WCB Hit */
arch/x86/events/intel/ds.c
297
OP_LH | P(LVL, L2) | LEVEL(L2) | P(SNOOP, NONE), /* 0x03: L2 Hit Clean */
arch/x86/events/intel/ds.c
298
OP_LH | P(LVL, L2) | LEVEL(L2) | P(SNOOP, HIT), /* 0x04: L2 Hit Snoop HIT */
arch/x86/events/intel/ds.c
299
OP_LH | P(LVL, L2) | LEVEL(L2) | P(SNOOP, HITM), /* 0x05: L2 Hit Snoop Hit Modified */
arch/x86/events/intel/ds.c
300
OP_LH | P(LVL, UNC) | LEVEL(NA) | P(SNOOP, NONE), /* 0x06: uncached */
arch/x86/events/intel/ds.c
315
P(OP, LOAD) | P(LVL, NA) | LEVEL(NA) | P(SNOOP, NA), /* 0x00: invalid */
arch/x86/events/intel/ds.c
352
val |= P(SNOOP, HITM);
arch/x86/events/intel/ds.c
354
val |= P(SNOOP, NA);
arch/x86/events/intel/ds.c
356
val |= P(SNOOP, MISS);
arch/x86/events/intel/ds.c
358
val |= P(SNOOP, HIT);
arch/x86/events/intel/ds.c
360
val |= P(SNOOP, NONE);
arch/x86/events/intel/ds.c
362
val |= omr.omr_hitm ? P(SNOOP, HITM) : P(SNOOP, HIT);
arch/x86/events/intel/ds.c
365
val |= P(SNOOP, NONE);
arch/x86/events/intel/ds.c
374
u64 val = P(OP, STORE) | P(SNOOP, NA) | P(LVL, L1) | P(TLB, L2);
arch/x86/events/intel/ds.c
513
val = P(OP, LOAD) | LEVEL(NA) | P(SNOOP, NA);
arch/x86/events/intel/ds.c
548
val = P(OP, LOAD) | LEVEL(NA) | P(SNOOP, NA);
arch/x86/events/intel/ds.c
606
val = P(OP, LOAD) | LEVEL(NA) | P(SNOOP, NA);
drivers/ata/pata_legacy.c
220
return SNOOP;
drivers/infiniband/hw/hfi1/trace.c
524
__hfi1_trace_fn(SNOOP);
drivers/infiniband/hw/hfi1/trace_dbg.h
84
__hfi1_trace_def(SNOOP);
include/linux/perf_event.h
1355
PERF_MEM_S(SNOOP, NA) |\
tools/perf/ui/browsers/hists.c
1290
__HPP_COLOR_MEM_STAT_FN(snoop, SNOOP)
tools/perf/ui/hist.c
658
HPP_MEM_STAT_FNS(snoop, SNOOP)
tools/perf/ui/hist.c
766
HPP__MEM_STAT_PRINT_FNS("Snoop", snoop, SNOOP),
tools/perf/util/event.h
101
PERF_MEM_S(SNOOP, NA) |\
tools/perf/util/intel-pt.c
2281
#define SNOOP_NONE_MISS (P(SNOOP, NONE) | P(SNOOP, MISS))
tools/perf/util/intel-pt.c
2288
P(OP, LOAD) | P(LVL, MISS) | LEVEL(L3) | P(SNOOP, NA), /* L3 miss|SNP N/A */
tools/perf/util/intel-pt.c
2289
OP_LH | P(LVL, L1) | LEVEL(L1) | P(SNOOP, NONE), /* L1 hit|SNP None */
tools/perf/util/intel-pt.c
2290
OP_LH | P(LVL, LFB) | LEVEL(LFB) | P(SNOOP, NONE), /* LFB/MAB hit|SNP None */
tools/perf/util/intel-pt.c
2291
OP_LH | P(LVL, L2) | LEVEL(L2) | P(SNOOP, NONE), /* L2 hit|SNP None */
tools/perf/util/intel-pt.c
2292
OP_LH | P(LVL, L3) | LEVEL(L3) | P(SNOOP, NONE), /* L3 hit|SNP None */
tools/perf/util/intel-pt.c
2293
OP_LH | P(LVL, L3) | LEVEL(L3) | P(SNOOP, HIT), /* L3 hit|SNP Hit */
tools/perf/util/intel-pt.c
2294
OP_LH | P(LVL, L3) | LEVEL(L3) | P(SNOOP, HITM), /* L3 hit|SNP HitM */
tools/perf/util/intel-pt.c
2295
OP_LH | P(LVL, L3) | LEVEL(L3) | P(SNOOP, HITM), /* L3 hit|SNP HitM */
tools/perf/util/intel-pt.c
2297
OP_LH | P(LVL, REM_CCE1) | REM | LEVEL(L3) | P(SNOOP, HITM), /* Remote L3 hit|SNP HitM */
tools/perf/util/intel-pt.c
2298
OP_LH | P(LVL, LOC_RAM) | LEVEL(RAM) | P(SNOOP, HIT), /* RAM hit|SNP Hit */
tools/perf/util/intel-pt.c
2299
OP_LH | P(LVL, REM_RAM1) | REM | LEVEL(L3) | P(SNOOP, HIT), /* Remote L3 hit|SNP Hit */
tools/perf/util/intel-pt.c
2302
OP_LH | P(LVL, IO) | LEVEL(NA) | P(SNOOP, NONE), /* I/O hit|SNP None */
tools/perf/util/intel-pt.c
2303
OP_LH | P(LVL, UNC) | LEVEL(NA) | P(SNOOP, NONE), /* Uncached hit|SNP None */
tools/perf/util/intel-pt.c
2308
P(OP, LOAD) | P(LVL, MISS) | LEVEL(L3) | P(SNOOP, NA), /* L3 miss|SNP N/A */
tools/perf/util/intel-pt.c
2309
OP_LH | P(LVL, L1) | LEVEL(L1) | P(SNOOP, NONE), /* L1 hit|SNP None */
tools/perf/util/intel-pt.c
2310
OP_LH | P(LVL, LFB) | LEVEL(LFB) | P(SNOOP, NONE), /* LFB/MAB hit|SNP None */
tools/perf/util/intel-pt.c
2311
OP_LH | P(LVL, L2) | LEVEL(L2) | P(SNOOP, NONE), /* L2 hit|SNP None */
tools/perf/util/intel-pt.c
2312
OP_LH | P(LVL, L3) | LEVEL(L3) | P(SNOOP, NONE), /* L3 hit|SNP None */
tools/perf/util/intel-pt.c
2313
OP_LH | P(LVL, L3) | LEVEL(L3) | P(SNOOP, MISS), /* L3 hit|SNP Hit */
tools/perf/util/intel-pt.c
2314
OP_LH | P(LVL, L3) | LEVEL(L3) | P(SNOOP, HIT), /* L3 hit|SNP HitM */
tools/perf/util/intel-pt.c
2316
OP_LH | P(LVL, L3) | LEVEL(L3) | P(SNOOP, HITM), /* L3 hit|SNP Fwd */
tools/perf/util/intel-pt.c
2317
OP_LH | P(LVL, REM_CCE1) | REM | LEVEL(L3) | P(SNOOP, HITM), /* Remote L3 hit|SNP HitM */
tools/perf/util/intel-pt.c
2318
OP_LH | P(LVL, LOC_RAM) | LEVEL(RAM) | P(SNOOP, NONE), /* RAM hit|SNP Hit */
tools/perf/util/intel-pt.c
2319
OP_LH | LEVEL(RAM) | REM | P(SNOOP, NONE), /* Remote L3 hit|SNP Hit */
tools/perf/util/intel-pt.c
2321
OP_LH | LEVEL(RAM) | REM | P(SNOOP, HITM), /* Remote RAM hit|SNP None or Miss */
tools/perf/util/intel-pt.c
2322
OP_LH | P(LVL, IO) | LEVEL(NA) | P(SNOOP, NONE), /* I/O hit|SNP None */
tools/perf/util/intel-pt.c
2323
OP_LH | P(LVL, UNC) | LEVEL(NA) | P(SNOOP, NONE), /* Uncached hit|SNP None */
tools/perf/util/intel-pt.c
2366
PERF_MEM_S(SNOOP, NA) |\
tools/perf/util/mem-events.c
683
if (snoop & P(SNOOP, HITM))
tools/perf/util/mem-events.c
692
if (snoop & P(SNOOP, HITM))
tools/perf/util/mem-events.c
703
if (snoop & P(SNOOP, HIT))
tools/perf/util/mem-events.c
713
if (snoop & P(SNOOP, HIT))
tools/perf/util/mem-events.c
723
if (snoop & P(SNOOP, HIT)) {
tools/perf/util/mem-events.c
725
} else if (snoop & P(SNOOP, HITM)) {