Home
last modified time | relevance | path

Searched full:reads (Results 1 – 25 of 4141) sorted by relevance

12345678910>>...166

/kernel/linux/linux-5.10/tools/perf/pmu-events/arch/x86/broadwell/
Dmemory.json433 "PublicDescription": "Counts demand data reads",
441 "BriefDescription": "Counts demand data reads",
446 "PublicDescription": "Counts demand data reads",
454 "BriefDescription": "Counts demand data reads",
459 "PublicDescription": "Counts demand data reads",
467 "BriefDescription": "Counts demand data reads",
472 "PublicDescription": "Counts demand data reads",
480 "BriefDescription": "Counts demand data reads",
485 "PublicDescription": "Counts demand data reads",
493 "BriefDescription": "Counts demand data reads",
[all …]
Dcache.json83 "BriefDescription": "L2 cache hits when fetching instructions, code reads.",
185Reads. FB either is held by demand loads, or it is held by non-demand loads and gets hit at least …
271 …"PublicDescription": "This event counts the number of offcore outstanding Code Reads transactions …
278 …"BriefDescription": "Offcore outstanding code reads transactions in SuperQueue (SQ), queue to unco…
293 …"PublicDescription": "This event counts the number of offcore outstanding demand rfo Reads transac…
300 …"BriefDescription": "Offcore outstanding demand rfo reads transactions in SuperQueue (SQ), queue t…
368 …d prefetch data reads. All Core Data Reads include cacheable Demands and L2 prefetchers (not L3 pr…
374 "BriefDescription": "Demand and prefetch data reads",
774 "PublicDescription": "Counts demand data reads have any response type.",
782 "BriefDescription": "Counts demand data reads have any response type.",
[all …]
/kernel/linux/linux-6.6/tools/perf/pmu-events/arch/x86/broadwell/
Dmemory.json196 "BriefDescription": "Counts all demand & prefetch data reads",
205 "BriefDescription": "Counts all demand & prefetch data reads",
214 "BriefDescription": "Counts all demand & prefetch data reads",
223 "BriefDescription": "Counts all demand & prefetch data reads",
232 "BriefDescription": "Counts all demand & prefetch data reads",
241 "BriefDescription": "Counts all demand & prefetch data reads",
250 "BriefDescription": "Counts all demand & prefetch data reads",
259 "BriefDescription": "Counts all demand & prefetch data reads",
268 "BriefDescription": "Counts all demand & prefetch data reads",
277 "BriefDescription": "Counts all demand & prefetch data reads",
[all …]
Dcache.json22Reads. FB either is held by demand loads, or it is held by non-demand loads and gets hit at least …
138 "BriefDescription": "L2 cache hits when fetching instructions, code reads.",
498 "BriefDescription": "Demand and prefetch data reads",
501 …d prefetch data reads. All Core Data Reads include cacheable Demands and L2 prefetchers (not L3 pr…
575 …"BriefDescription": "Offcore outstanding demand rfo reads transactions in SuperQueue (SQ), queue t…
580 …"PublicDescription": "This event counts the number of offcore outstanding demand rfo Reads transac…
585 …"BriefDescription": "Offcore outstanding code reads transactions in SuperQueue (SQ), queue to unco…
589 …"PublicDescription": "This event counts the number of offcore outstanding Code Reads transactions …
628 "BriefDescription": "Counts all demand & prefetch data reads have any response type.",
637 "BriefDescription": "Counts all demand & prefetch data reads",
[all …]
/kernel/linux/linux-6.6/tools/perf/pmu-events/arch/x86/ivytown/
Dmemory.json122 "BriefDescription": "Counts all demand & prefetch code reads that miss the LLC",
131 …"BriefDescription": "Counts all demand & prefetch code reads that miss the LLC and the data retur…
140 …"BriefDescription": "Counts all demand & prefetch code reads that miss the LLC and the data forwa…
149 "BriefDescription": "Counts all demand & prefetch data reads that hits the LLC",
158 "BriefDescription": "Counts all data/code/rfo reads (demand & prefetch) that hit the LLC",
167 …"BriefDescription": "Counts all data/code/rfo reads (demand & prefetch) that miss the LLC and the…
176 …"BriefDescription": "Counts all data/code/rfo reads (demand & prefetch) that miss the LLC the dat…
185 …"BriefDescription": "Counts all data/code/rfo reads (demand & prefetch) that miss the LLC and the…
194 "BriefDescription": "Counts all demand code reads that miss the LLC",
203 …"BriefDescription": "Counts all demand code reads that miss the LLC and the data returned from lo…
[all …]
/kernel/linux/linux-6.6/tools/memory-model/Documentation/
Dglossary.txt36 to that same variable, (in other words, the acquire load "reads
40 See also "Happens-Before", "Reads-From", "Relaxed", and "Release".
52 See also "From-reads" and "Reads-from".
105 From-Reads (fr): When one CPU's store to a given variable happened
107 load from that same variable, there is said to be a from-reads
110 It is also possible to have a from-reads link within a CPU, which
111 is a "from-reads internal" (fri) link. The term "from-reads
115 See also "Coherence" and "Reads-from".
138 smp_store_release() pairs with an smp_load_acquire() that reads
143 Reads-From (rf): When one CPU's load returns the value stored by some other
[all …]
/kernel/liteos_a/testsuites/unittest/extended/signal/full/
DIt_ipc_fdclr_001.cpp41 fd_set reads; in Testcase() local
42 FD_ZERO(&reads); in Testcase()
54 ret = select(fdmax + 1, &reads, NULL, NULL, &tv); in Testcase()
57 FD_SET(pipeFd[0][0], &reads); in Testcase()
58 ret = select(fdmax + 1, &reads, NULL, NULL, &tv); in Testcase()
60 ret = FD_ISSET(pipeFd[0][0], &reads); in Testcase()
62 FD_SET(pipeFd[1][0], &reads); in Testcase()
63 FD_SET(pipeFd[2][0], &reads); // 2, pipe return on the 2nd loop in Testcase()
64 FD_SET(pipeFd[3][0], &reads); // 3, pipe return on the 3rd loop in Testcase()
65 FD_CLR(pipeFd[3][0], &reads); // 3, pipe return on the 3rd loop in Testcase()
[all …]
DIt_ipc_fdzero_001.cpp42 fd_set reads; in Testcase() local
43 FD_ZERO(&reads); in Testcase()
56 ret = select(fdmax + 1, &reads, NULL, NULL, &tv); in Testcase()
59 FD_SET(pipeFd[0][0], &reads); in Testcase()
60 ret = select(fdmax + 1, &reads, NULL, NULL, &tv); in Testcase()
62 ret = FD_ISSET(pipeFd[0][0], &reads); in Testcase()
65 FD_SET(pipeFd[1][0], &reads); in Testcase()
66 FD_SET(pipeFd[2][0], &reads); // 2, pipe return on the 2nd loop in Testcase()
67 FD_SET(pipeFd[3][0], &reads); // 3, pipe return on the 3rd loop in Testcase()
68 FD_ZERO(&reads); in Testcase()
[all …]
DIt_ipc_fdset_001.cpp42 fd_set reads; in Testcase() local
43 FD_ZERO(&reads); in Testcase()
57 ret = select(fdmax + 1, &reads, NULL, NULL, &tv); in Testcase()
60 FD_SET(pipeFd[0][0], &reads); in Testcase()
61 ret = select(fdmax + 1, &reads, NULL, NULL, &tv); in Testcase()
63 ret = FD_ISSET(pipeFd[0][0], &reads); in Testcase()
66 FD_SET(pipeFd[1][0], &reads); in Testcase()
67 FD_SET(pipeFd[2][0], &reads); // 2, pipe return on the 2nd loop in Testcase()
68 FD_SET(pipeFd[3][0], &reads); // 3, pipe return on the 3rd loop in Testcase()
69 ret = select(fdmax + 1, &reads, NULL, NULL, &tv); in Testcase()
[all …]
/kernel/linux/linux-5.10/tools/perf/scripts/perl/
Drw-by-pid.pl21 my %reads;
31 $reads{$common_pid}{bytes_read} += $ret;
33 if (!defined ($reads{$common_pid}{bytes_read})) {
34 $reads{$common_pid}{bytes_read} = 0;
36 $reads{$common_pid}{errors}{$ret}++;
46 $reads{$common_pid}{bytes_requested} += $count;
47 $reads{$common_pid}{total_reads}++;
48 $reads{$common_pid}{comm} = $common_comm;
78 "# reads", "bytes_requested", "bytes_read");
82 foreach my $pid (sort { ($reads{$b}{bytes_read} || 0) <=>
[all …]
Drwtop.pl27 my %reads;
44 $reads{$common_pid}{bytes_read} += $ret;
46 if (!defined ($reads{$common_pid}{bytes_read})) {
47 $reads{$common_pid}{bytes_read} = 0;
49 $reads{$common_pid}{errors}{$ret}++;
61 $reads{$common_pid}{bytes_requested} += $count;
62 $reads{$common_pid}{total_reads}++;
63 $reads{$common_pid}{comm} = $common_comm;
132 "# reads", "bytes_req", "bytes_read");
136 foreach my $pid (sort { ($reads{$b}{bytes_read} || 0) <=>
[all …]
/kernel/linux/linux-6.6/tools/perf/scripts/perl/
Drw-by-pid.pl21 my %reads;
31 $reads{$common_pid}{bytes_read} += $ret;
33 if (!defined ($reads{$common_pid}{bytes_read})) {
34 $reads{$common_pid}{bytes_read} = 0;
36 $reads{$common_pid}{errors}{$ret}++;
46 $reads{$common_pid}{bytes_requested} += $count;
47 $reads{$common_pid}{total_reads}++;
48 $reads{$common_pid}{comm} = $common_comm;
78 "# reads", "bytes_requested", "bytes_read");
82 foreach my $pid (sort { ($reads{$b}{bytes_read} || 0) <=>
[all …]
Drwtop.pl27 my %reads;
44 $reads{$common_pid}{bytes_read} += $ret;
46 if (!defined ($reads{$common_pid}{bytes_read})) {
47 $reads{$common_pid}{bytes_read} = 0;
49 $reads{$common_pid}{errors}{$ret}++;
61 $reads{$common_pid}{bytes_requested} += $count;
62 $reads{$common_pid}{total_reads}++;
63 $reads{$common_pid}{comm} = $common_comm;
132 "# reads", "bytes_req", "bytes_read");
136 foreach my $pid (sort { ($reads{$b}{bytes_read} || 0) <=>
[all …]
/kernel/linux/linux-6.6/tools/perf/pmu-events/arch/x86/skylake/
Dcache.json22Reads. FB either is held by demand loads, or it is held by non-demand loads and gets hit at least …
130 "BriefDescription": "L2 cache hits when fetching instructions, code reads.",
133 "PublicDescription": "Counts L2 cache hits when fetching instructions, code reads.",
222 … the L3 cache (Longest Latency cache). Requests include data and code reads, Reads-for-Ownership (…
231 …the L3 cache (Longest Latency cache). Requests include data and code reads, Reads-for-Ownership (…
433 "BriefDescription": "Demand and prefetch data reads",
436 … prefetch data reads. All Core Data Reads include cacheable 'Demands' and L2 prefetchers (not L3 p…
498 …"BriefDescription": "Cycles with offcore outstanding Code Reads transactions in the SuperQueue (SQ…
502 …"PublicDescription": "Counts the number of offcore outstanding Code Reads transactions in the supe…
516 …"BriefDescription": "Cycles with offcore outstanding demand rfo reads transactions in SuperQueue (…
[all …]
/kernel/linux/linux-6.6/tools/perf/pmu-events/arch/x86/goldmontplus/
Dcache.json196 …"BriefDescription": "Counts data reads (demand & prefetch) have any transaction responses from the…
201 …"PublicDescription": "Counts data reads (demand & prefetch) have any transaction responses from th…
206 "BriefDescription": "Counts data reads (demand & prefetch) hit the L2 cache.",
211 …"PublicDescription": "Counts data reads (demand & prefetch) hit the L2 cache. Requires MSR_OFFCORE…
216 …"BriefDescription": "Counts data reads (demand & prefetch) miss the L2 cache with a snoop hit in t…
221 …"PublicDescription": "Counts data reads (demand & prefetch) miss the L2 cache with a snoop hit in …
226 …"BriefDescription": "Counts data reads (demand & prefetch) true miss for the L2 cache with a snoop…
231 …"PublicDescription": "Counts data reads (demand & prefetch) true miss for the L2 cache with a snoo…
236 …"BriefDescription": "Counts data reads (demand & prefetch) outstanding, per cycle, from the time o…
241 …"PublicDescription": "Counts data reads (demand & prefetch) outstanding, per cycle, from the time …
[all …]
/kernel/linux/linux-6.6/tools/perf/pmu-events/arch/x86/goldmont/
Dcache.json196 "BriefDescription": "Counts data reads (demand & prefetch) that hit the L2 cache.",
201 …"PublicDescription": "Counts data reads (demand & prefetch) that hit the L2 cache. Requires MSR_OF…
206 "BriefDescription": "Counts data reads (demand & prefetch) that miss the L2 cache.",
211 …"PublicDescription": "Counts data reads (demand & prefetch) that miss the L2 cache. Requires MSR_O…
216 …"BriefDescription": "Counts data reads (demand & prefetch) that miss the L2 cache with a snoop hit…
221 …"PublicDescription": "Counts data reads (demand & prefetch) that miss the L2 cache with a snoop hi…
226 …"BriefDescription": "Counts data reads (demand & prefetch) that miss the L2 cache with a snoop hit…
231 …"PublicDescription": "Counts data reads (demand & prefetch) that miss the L2 cache with a snoop hi…
236 …"BriefDescription": "Counts data reads (demand & prefetch) that true miss for the L2 cache with a …
241 …"PublicDescription": "Counts data reads (demand & prefetch) that true miss for the L2 cache with a…
[all …]
/kernel/linux/linux-6.6/tools/perf/pmu-events/arch/x86/westmereex/
Dmemory.json10 "BriefDescription": "Offcore data reads satisfied by any DRAM",
19 "BriefDescription": "Offcore data reads that missed the LLC",
28 "BriefDescription": "Offcore data reads satisfied by the local DRAM",
37 "BriefDescription": "Offcore data reads satisfied by a remote DRAM",
46 "BriefDescription": "Offcore code reads satisfied by any DRAM",
55 "BriefDescription": "Offcore code reads that missed the LLC",
64 "BriefDescription": "Offcore code reads satisfied by the local DRAM",
73 "BriefDescription": "Offcore code reads satisfied by a remote DRAM",
244 "BriefDescription": "Offcore data reads, RFOs, and prefetches satisfied by the local DRAM.",
253 "BriefDescription": "Offcore data reads, RFOs, and prefetches satisfied by the remote DRAM",
[all …]
/kernel/linux/linux-6.6/tools/perf/pmu-events/arch/x86/nehalemex/
Dmemory.json3 "BriefDescription": "Offcore data reads satisfied by any DRAM",
12 "BriefDescription": "Offcore data reads that missed the LLC",
21 "BriefDescription": "Offcore data reads satisfied by the local DRAM",
30 "BriefDescription": "Offcore data reads satisfied by a remote DRAM",
39 "BriefDescription": "Offcore code reads satisfied by any DRAM",
48 "BriefDescription": "Offcore code reads that missed the LLC",
57 "BriefDescription": "Offcore code reads satisfied by the local DRAM",
66 "BriefDescription": "Offcore code reads satisfied by a remote DRAM",
237 "BriefDescription": "Offcore data reads, RFOs, and prefetches satisfied by the local DRAM.",
246 "BriefDescription": "Offcore data reads, RFOs, and prefetches satisfied by the remote DRAM",
[all …]
/kernel/linux/linux-6.6/tools/perf/pmu-events/arch/x86/nehalemep/
Dmemory.json3 "BriefDescription": "Offcore data reads satisfied by any DRAM",
12 "BriefDescription": "Offcore data reads that missed the LLC",
21 "BriefDescription": "Offcore data reads satisfied by the local DRAM",
30 "BriefDescription": "Offcore data reads satisfied by a remote DRAM",
39 "BriefDescription": "Offcore code reads satisfied by any DRAM",
48 "BriefDescription": "Offcore code reads that missed the LLC",
57 "BriefDescription": "Offcore code reads satisfied by the local DRAM",
66 "BriefDescription": "Offcore code reads satisfied by a remote DRAM",
237 "BriefDescription": "Offcore data reads, RFOs, and prefetches satisfied by the local DRAM.",
246 "BriefDescription": "Offcore data reads, RFOs, and prefetches satisfied by the remote DRAM",
[all …]
/kernel/linux/linux-6.6/tools/perf/pmu-events/arch/x86/jaketown/
Dmemory.json140 "BriefDescription": "Counts all demand code reads that miss the LLC",
149 …"BriefDescription": "Counts all demand code reads that miss the LLC and the data returned from lo…
158 …"BriefDescription": "Counts all demand code reads that miss the LLC and the data returned from re…
167 …"BriefDescription": "Counts all demand code reads that miss the LLC the data is found in M state …
176 …"BriefDescription": "Counts all demand code reads that miss the LLC and the data forwarded from r…
185 …"BriefDescription": "Counts demand data reads that miss the LLC and the data returned from remote…
194 "BriefDescription": "Counts demand data reads that miss in the LLC",
203 …"BriefDescription": "Counts demand data reads that miss the LLC and the data returned from local …
212 …"BriefDescription": "Counts demand data reads that miss the LLC and the data returned from remote…
221 …"BriefDescription": "Counts demand data reads that miss the LLC the data is found in M state in r…
[all …]
/kernel/linux/linux-5.10/tools/perf/pmu-events/arch/x86/ivytown/
Dmemory.json164 "BriefDescription": "Counts all demand & prefetch code reads that miss the LLC",
176 …"BriefDescription": "Counts all demand & prefetch code reads that miss the LLC and the data retur…
188 …"BriefDescription": "Counts all demand & prefetch code reads that miss the LLC and the data forwa…
200 "BriefDescription": "Counts all demand & prefetch data reads that hits the LLC",
212 "BriefDescription": "Counts all data/code/rfo reads (demand & prefetch) that hit the LLC",
224 …"BriefDescription": "Counts all data/code/rfo reads (demand & prefetch) that miss the LLC and the…
236 …"BriefDescription": "Counts all data/code/rfo reads (demand & prefetch) that miss the LLC and the…
248 …"BriefDescription": "Counts all data/code/rfo reads (demand & prefetch) that miss the LLC the dat…
260 "BriefDescription": "Counts all demand code reads that miss the LLC",
272 …"BriefDescription": "Counts all demand code reads that miss the LLC and the data returned from lo…
[all …]
/kernel/linux/linux-5.10/tools/perf/pmu-events/arch/x86/goldmont/
Dcache.json306 …"PublicDescription": "Counts reads for ownership (RFO) requests (demand & prefetch) that miss the …
314 …"BriefDescription": "Counts reads for ownership (RFO) requests (demand & prefetch) that miss the L…
319 …"PublicDescription": "Counts reads for ownership (RFO) requests (demand & prefetch) that miss the …
327 …"BriefDescription": "Counts reads for ownership (RFO) requests (demand & prefetch) that miss the L…
332 …"PublicDescription": "Counts reads for ownership (RFO) requests (demand & prefetch) that miss the …
340 …"BriefDescription": "Counts reads for ownership (RFO) requests (demand & prefetch) that miss the L…
345 …"PublicDescription": "Counts reads for ownership (RFO) requests (demand & prefetch) that true miss…
353 …"BriefDescription": "Counts reads for ownership (RFO) requests (demand & prefetch) that true miss …
358 …"PublicDescription": "Counts reads for ownership (RFO) requests (demand & prefetch) that hit the L…
366 …"BriefDescription": "Counts reads for ownership (RFO) requests (demand & prefetch) that hit the L2…
[all …]
/kernel/linux/linux-6.6/tools/perf/pmu-events/arch/x86/westmereep-sp/
Dmemory.json3 "BriefDescription": "Offcore data reads satisfied by any DRAM",
12 "BriefDescription": "Offcore data reads that missed the LLC",
21 "BriefDescription": "Offcore data reads satisfied by the local DRAM",
30 "BriefDescription": "Offcore data reads satisfied by a remote DRAM",
39 "BriefDescription": "Offcore code reads satisfied by any DRAM",
48 "BriefDescription": "Offcore code reads that missed the LLC",
57 "BriefDescription": "Offcore code reads satisfied by the local DRAM",
66 "BriefDescription": "Offcore code reads satisfied by a remote DRAM",
237 "BriefDescription": "Offcore data reads, RFOs, and prefetches satisfied by the local DRAM.",
246 "BriefDescription": "Offcore data reads, RFOs, and prefetches satisfied by the remote DRAM",
[all …]
/kernel/linux/linux-5.10/tools/perf/pmu-events/arch/x86/nehalemex/
Dmemory.json10 "BriefDescription": "Offcore data reads satisfied by any DRAM",
21 "BriefDescription": "Offcore data reads that missed the LLC",
32 "BriefDescription": "Offcore data reads satisfied by the local DRAM",
43 "BriefDescription": "Offcore data reads satisfied by a remote DRAM",
54 "BriefDescription": "Offcore code reads satisfied by any DRAM",
65 "BriefDescription": "Offcore code reads that missed the LLC",
76 "BriefDescription": "Offcore code reads satisfied by the local DRAM",
87 "BriefDescription": "Offcore code reads satisfied by a remote DRAM",
296 … "BriefDescription": "Offcore data reads, RFO's and prefetches statisfied by the local DRAM.",
307 … "BriefDescription": "Offcore data reads, RFO's and prefetches statisfied by the remote DRAM",
[all …]
/kernel/linux/linux-5.10/tools/perf/pmu-events/arch/x86/westmereex/
Dmemory.json18 "BriefDescription": "Offcore data reads satisfied by any DRAM",
29 "BriefDescription": "Offcore data reads that missed the LLC",
40 "BriefDescription": "Offcore data reads satisfied by the local DRAM",
51 "BriefDescription": "Offcore data reads satisfied by a remote DRAM",
62 "BriefDescription": "Offcore code reads satisfied by any DRAM",
73 "BriefDescription": "Offcore code reads that missed the LLC",
84 "BriefDescription": "Offcore code reads satisfied by the local DRAM",
95 "BriefDescription": "Offcore code reads satisfied by a remote DRAM",
304 … "BriefDescription": "Offcore data reads, RFO's and prefetches statisfied by the local DRAM.",
315 … "BriefDescription": "Offcore data reads, RFO's and prefetches statisfied by the remote DRAM",
[all …]

12345678910>>...166