gem5  v21.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
etherdevice.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2004-2005 The Regents of The University of Michigan
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions are
7  * met: redistributions of source code must retain the above copyright
8  * notice, this list of conditions and the following disclaimer;
9  * redistributions in binary form must reproduce the above copyright
10  * notice, this list of conditions and the following disclaimer in the
11  * documentation and/or other materials provided with the distribution;
12  * neither the name of the copyright holders nor the names of its
13  * contributors may be used to endorse or promote products derived from
14  * this software without specific prior written permission.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27  */
28 
29 #include "dev/net/etherdevice.hh"
30 
31 #include "sim/stats.hh"
32 
34  : Stats::Group(parent, "EtherDevice"),
35  ADD_STAT(postedInterrupts, UNIT_COUNT, "Number of posts to CPU"),
36  ADD_STAT(txBytes, UNIT_BYTE, "Bytes Transmitted"),
37  ADD_STAT(rxBytes, UNIT_BYTE, "Bytes Received"),
38  ADD_STAT(txPackets, UNIT_COUNT, "Number of Packets Transmitted"),
39  ADD_STAT(rxPackets, UNIT_COUNT, "Number of Packets Received"),
40  ADD_STAT(txBandwidth, UNIT_RATE(Stats::Units::Bit, Stats::Units::Second),
41  "Transmit Bandwidth",
42  txBytes * Stats::constant(8) / simSeconds),
43  ADD_STAT(rxBandwidth, UNIT_RATE(Stats::Units::Bit, Stats::Units::Second),
44  "Receive Bandwidth",
45  rxBytes * Stats::constant(8) / simSeconds),
46  ADD_STAT(txIpChecksums, UNIT_COUNT,
47  "Number of tx IP Checksums done by device"),
48  ADD_STAT(rxIpChecksums, UNIT_COUNT,
49  "Number of rx IP Checksums done by device"),
50  ADD_STAT(txTcpChecksums, UNIT_COUNT,
51  "Number of tx TCP Checksums done by device"),
52  ADD_STAT(rxTcpChecksums, UNIT_COUNT,
53  "Number of rx TCP Checksums done by device"),
54  ADD_STAT(txUdpChecksums, UNIT_COUNT,
55  "Number of tx UDP Checksums done by device"),
56  ADD_STAT(rxUdpChecksums, UNIT_COUNT,
57  "Number of rx UDP Checksums done by device"),
58  ADD_STAT(descDmaReads, UNIT_COUNT,
59  "Number of descriptors the device read w/ DMA"),
60  ADD_STAT(descDmaWrites, UNIT_COUNT,
61  "Number of descriptors the device wrote w/ DMA"),
62  ADD_STAT(descDmaRdBytes, UNIT_COUNT,
63  "Number of descriptor bytes read w/ DMA"),
64  ADD_STAT(descDmaWrBytes, UNIT_COUNT,
65  "Number of descriptor bytes write w/ DMA"),
66  ADD_STAT(totBandwidth,
67  UNIT_RATE(Stats::Units::Bit, Stats::Units::Second),
68  "Total Bandwidth",
69  txBandwidth + rxBandwidth),
70  ADD_STAT(totPackets, UNIT_COUNT, "Total Packets", txPackets + rxPackets),
71  ADD_STAT(totBytes, UNIT_BYTE, "Total Bytes", txBytes + rxBytes),
72  ADD_STAT(totPacketRate,
73  UNIT_RATE(Stats::Units::Count, Stats::Units::Second),
74  "Total Packet Tranmission Rate",
75  totPackets / simSeconds),
76  ADD_STAT(txPacketRate,
77  UNIT_RATE(Stats::Units::Count, Stats::Units::Second),
78  "Packet Tranmission Rate",
79  txPackets / simSeconds),
80  ADD_STAT(rxPacketRate,
81  UNIT_RATE(Stats::Units::Count, Stats::Units::Second),
82  "Packet Reception Rate",
83  rxPackets / simSeconds),
84  ADD_STAT(postedSwi, UNIT_COUNT,
85  "Number of software interrupts posted to CPU"),
86  ADD_STAT(totalSwi, UNIT_COUNT, "Total number of Swi written to ISR"),
87  ADD_STAT(coalescedSwi,
88  UNIT_RATE(Stats::Units::Count, Stats::Units::Count),
89  "Average number of Swi's coalesced into each post",
90  totalSwi / postedInterrupts),
91  ADD_STAT(postedRxIdle, UNIT_COUNT,
92  "Number of rxIdle interrupts posted to CPU"),
93  ADD_STAT(totalRxIdle, UNIT_COUNT,
94  "Total number of RxIdle written to ISR"),
95  ADD_STAT(coalescedRxIdle,
96  UNIT_RATE(Stats::Units::Count, Stats::Units::Count),
97  "Average number of RxIdle's coalesced into each post",
98  totalRxIdle / postedInterrupts),
99  ADD_STAT(postedRxOk, UNIT_COUNT,
100  "Number of RxOk interrupts posted to CPU"),
101  ADD_STAT(totalRxOk, UNIT_COUNT, "Total number of RxOk written to ISR"),
102  ADD_STAT(coalescedRxOk,
103  UNIT_RATE(Stats::Units::Count, Stats::Units::Count),
104  "Average number of RxOk's coalesced into each post",
105  totalRxOk / postedInterrupts),
106  ADD_STAT(postedRxDesc, UNIT_COUNT,
107  "Number of RxDesc interrupts posted to CPU"),
108  ADD_STAT(totalRxDesc, UNIT_COUNT,
109  "Total number of RxDesc written to ISR"),
110  ADD_STAT(coalescedRxDesc,
111  UNIT_RATE(Stats::Units::Count, Stats::Units::Count),
112  "Average number of RxDesc's coalesced into each post",
113  totalRxDesc / postedInterrupts),
114  ADD_STAT(postedTxOk, UNIT_COUNT,
115  "Number of TxOk interrupts posted to CPU"),
116  ADD_STAT(totalTxOk, UNIT_COUNT,
117  "Total number of TxOk written to ISR"),
118  ADD_STAT(coalescedTxOk,
119  UNIT_RATE(Stats::Units::Count, Stats::Units::Count),
120  "Average number of TxOk's coalesced into each post",
121  totalTxOk / postedInterrupts),
122  ADD_STAT(postedTxIdle, UNIT_COUNT,
123  "Number of TxIdle interrupts posted to CPU"),
124  ADD_STAT(totalTxIdle, UNIT_COUNT,
125  "Total number of TxIdle written to ISR"),
126  ADD_STAT(coalescedTxIdle,
127  UNIT_RATE(Stats::Units::Count, Stats::Units::Count),
128  "Average number of TxIdle's coalesced into each post",
129  totalTxIdle / postedInterrupts),
130  ADD_STAT(postedTxDesc, UNIT_COUNT,
131  "Number of TxDesc interrupts posted to CPU"),
132  ADD_STAT(totalTxDesc, UNIT_COUNT,
133  "Total number of TxDesc written to ISR"),
134  ADD_STAT(coalescedTxDesc,
135  UNIT_RATE(Stats::Units::Count, Stats::Units::Count),
136  "Average number of TxDesc's coalesced into each post",
137  totalTxDesc / postedInterrupts),
138  ADD_STAT(postedRxOrn, UNIT_COUNT,
139  "Number of RxOrn posted to CPU"),
140  ADD_STAT(totalRxOrn, UNIT_COUNT,
141  "Total number of RxOrn written to ISR"),
142  ADD_STAT(coalescedRxOrn,
143  UNIT_RATE(Stats::Units::Count, Stats::Units::Count),
144  "Average number of RxOrn's coalesced into each post",
145  totalRxOrn / postedInterrupts),
146  ADD_STAT(coalescedTotal,
147  UNIT_RATE(Stats::Units::Count, Stats::Units::Count),
148  "Average number of interrupts coalesced into each post"),
149  ADD_STAT(droppedPackets, UNIT_COUNT, "Number of packets dropped")
150 {
151 
153  .precision(0);
154 
155  txBytes
156  .prereq(txBytes);
157 
158  rxBytes
159  .prereq(rxBytes);
160 
161  txPackets
162  .prereq(txBytes);
163 
164  rxPackets
165  .prereq(rxBytes);
166 
168  .precision(0)
169  .prereq(txBytes);
170 
172  .precision(0)
173  .prereq(rxBytes);
174 
176  .precision(0)
177  .prereq(txBytes);
178 
180  .precision(0)
181  .prereq(rxBytes);
182 
184  .precision(0)
185  .prereq(txBytes);
186 
188  .precision(0)
189  .prereq(rxBytes);
190 
192  .precision(0);
193 
195  .precision(0);
196 
198  .precision(0);
199 
201  .precision(0);
202 
204  .precision(0)
205  .prereq(txBytes)
206  ;
207 
209  .precision(0)
210  .prereq(rxBytes);
211 
213  .precision(0)
214  .prereq(totBytes);
215 
216  totPackets
217  .precision(0)
218  .prereq(totBytes);
219 
220  totBytes
221  .precision(0)
222  .prereq(totBytes);
223 
225  .precision(0)
226  .prereq(totBytes);
227 
229  .precision(0)
230  .prereq(txBytes);
231 
233  .precision(0)
234  .prereq(rxBytes);
235 
236  postedSwi
237  .precision(0);
238 
239  totalSwi
240  .precision(0);
241 
243  .precision(0);
244 
246  .precision(0);
247 
249  .precision(0);
250 
252  .precision(0);
253 
254  postedRxOk
255  .precision(0);
256 
257  totalRxOk
258  .precision(0);
259 
261  .precision(0);
262 
264  .precision(0);
265 
267  .precision(0);
268 
270  .precision(0);
271 
272  postedTxOk
273  .precision(0);
274 
275  totalTxOk
276  .precision(0);
277 
279  .precision(0);
280 
282  .precision(0);
283 
285  .precision(0);
286 
288  .precision(0);
289 
291  .precision(0);
292 
294  .precision(0);
295 
297  .precision(0);
298 
300  .precision(0);
301 
302  totalRxOrn
303  .precision(0);
304 
306  .precision(0);
307 
309  .precision(0);
310 
312  .precision(0);
313 
317 }
EtherDevice::EtherDeviceStats::coalescedSwi
Stats::Formula coalescedSwi
Definition: etherdevice.hh:95
EtherDevice::EtherDeviceStats::totalTxIdle
Stats::Scalar totalTxIdle
Definition: etherdevice.hh:114
UNIT_BYTE
#define UNIT_BYTE
Definition: units.hh:43
EtherDevice::EtherDeviceStats::totalTxDesc
Stats::Scalar totalTxDesc
Definition: etherdevice.hh:118
EtherDevice::EtherDeviceStats::txBandwidth
Stats::Formula txBandwidth
Definition: etherdevice.hh:67
EtherDevice::EtherDeviceStats::postedRxDesc
Stats::Scalar postedRxDesc
Definition: etherdevice.hh:105
EtherDevice::EtherDeviceStats::postedTxOk
Stats::Scalar postedTxOk
Definition: etherdevice.hh:109
EtherDevice::EtherDeviceStats::rxUdpChecksums
Stats::Scalar rxUdpChecksums
Definition: etherdevice.hh:77
EtherDevice::EtherDeviceStats::EtherDeviceStats
EtherDeviceStats(Stats::Group *parent)
Definition: etherdevice.cc:33
EtherDevice::EtherDeviceStats::rxBytes
Stats::Scalar rxBytes
Definition: etherdevice.hh:62
EtherDevice::EtherDeviceStats::rxBandwidth
Stats::Formula rxBandwidth
Definition: etherdevice.hh:68
EtherDevice::EtherDeviceStats::coalescedTxOk
Stats::Formula coalescedTxOk
Definition: etherdevice.hh:111
EtherDevice::EtherDeviceStats::totalTxOk
Stats::Scalar totalTxOk
Definition: etherdevice.hh:110
EtherDevice::EtherDeviceStats::rxIpChecksums
Stats::Scalar rxIpChecksums
Definition: etherdevice.hh:71
EtherDevice::EtherDeviceStats::descDmaWrites
Stats::Scalar descDmaWrites
Definition: etherdevice.hh:80
EtherDevice::EtherDeviceStats::coalescedRxDesc
Stats::Formula coalescedRxDesc
Definition: etherdevice.hh:107
EtherDevice::EtherDeviceStats::descDmaWrBytes
Stats::Scalar descDmaWrBytes
Definition: etherdevice.hh:83
EtherDevice::EtherDeviceStats::postedTxIdle
Stats::Scalar postedTxIdle
Definition: etherdevice.hh:113
EtherDevice::EtherDeviceStats::totalRxIdle
Stats::Scalar totalRxIdle
Definition: etherdevice.hh:98
EtherDevice::EtherDeviceStats::rxPacketRate
Stats::Formula rxPacketRate
Definition: etherdevice.hh:91
EtherDevice::EtherDeviceStats::totPacketRate
Stats::Formula totPacketRate
Definition: etherdevice.hh:88
EtherDevice::EtherDeviceStats::totalRxOrn
Stats::Scalar totalRxOrn
Definition: etherdevice.hh:122
EtherDevice::EtherDeviceStats::descDmaReads
Stats::Scalar descDmaReads
Definition: etherdevice.hh:79
stats.hh
EtherDevice::EtherDeviceStats::postedRxIdle
Stats::Scalar postedRxIdle
Definition: etherdevice.hh:97
EtherDevice::EtherDeviceStats::droppedPackets
Stats::Scalar droppedPackets
Definition: etherdevice.hh:126
Stats::DataWrap::prereq
Derived & prereq(const Stat &prereq)
Set the prerequisite stat and marks this stat to print at the end of simulation.
Definition: statistics.hh:353
EtherDevice::EtherDeviceStats::txTcpChecksums
Stats::Scalar txTcpChecksums
Definition: etherdevice.hh:73
EtherDevice::EtherDeviceStats::totalRxDesc
Stats::Scalar totalRxDesc
Definition: etherdevice.hh:106
ADD_STAT
#define ADD_STAT(n,...)
Convenience macro to add a stat to a statistics group.
Definition: group.hh:71
EtherDevice::EtherDeviceStats::coalescedRxIdle
Stats::Formula coalescedRxIdle
Definition: etherdevice.hh:99
EtherDevice::EtherDeviceStats::txPackets
Stats::Scalar txPackets
Definition: etherdevice.hh:64
EtherDevice::EtherDeviceStats::postedSwi
Stats::Scalar postedSwi
Definition: etherdevice.hh:93
EtherDevice::EtherDeviceStats::txIpChecksums
Stats::Scalar txIpChecksums
Definition: etherdevice.hh:70
EtherDevice::EtherDeviceStats::coalescedTxDesc
Stats::Formula coalescedTxDesc
Definition: etherdevice.hh:119
EtherDevice::EtherDeviceStats::txPacketRate
Stats::Formula txPacketRate
Definition: etherdevice.hh:90
UNIT_COUNT
#define UNIT_COUNT
Definition: units.hh:49
EtherDevice::EtherDeviceStats::postedRxOk
Stats::Scalar postedRxOk
Definition: etherdevice.hh:101
EtherDevice::EtherDeviceStats::totalRxOk
Stats::Scalar totalRxOk
Definition: etherdevice.hh:102
simSeconds
Stats::Formula & simSeconds
Definition: stats.cc:42
EtherDevice::EtherDeviceStats::coalescedTxIdle
Stats::Formula coalescedTxIdle
Definition: etherdevice.hh:115
EtherDevice::EtherDeviceStats::rxPackets
Stats::Scalar rxPackets
Definition: etherdevice.hh:65
UNIT_RATE
#define UNIT_RATE(T1, T2)
Definition: units.hh:47
EtherDevice::EtherDeviceStats::postedRxOrn
Stats::Scalar postedRxOrn
Definition: etherdevice.hh:121
EtherDevice::EtherDeviceStats::postedInterrupts
Stats::Scalar postedInterrupts
Definition: etherdevice.hh:59
EtherDevice::EtherDeviceStats::rxTcpChecksums
Stats::Scalar rxTcpChecksums
Definition: etherdevice.hh:74
EtherDevice::EtherDeviceStats::coalescedTotal
Stats::Formula coalescedTotal
Definition: etherdevice.hh:125
EtherDevice::EtherDeviceStats::txBytes
Stats::Scalar txBytes
Definition: etherdevice.hh:61
Stats::DataWrap::precision
Derived & precision(int _precision)
Set the precision and marks this stat to print at the end of simulation.
Definition: statistics.hh:327
EtherDevice::EtherDeviceStats::descDmaRdBytes
Stats::Scalar descDmaRdBytes
Definition: etherdevice.hh:82
Stats::Group
Statistics container.
Definition: group.hh:87
EtherDevice::EtherDeviceStats::totalSwi
Stats::Scalar totalSwi
Definition: etherdevice.hh:94
EtherDevice::EtherDeviceStats::coalescedRxOrn
Stats::Formula coalescedRxOrn
Definition: etherdevice.hh:123
Stats
Definition: statistics.cc:53
etherdevice.hh
EtherDevice::EtherDeviceStats::totBytes
Stats::Formula totBytes
Definition: etherdevice.hh:87
EtherDevice::EtherDeviceStats::totBandwidth
Stats::Formula totBandwidth
Definition: etherdevice.hh:85
EtherDevice::EtherDeviceStats::postedTxDesc
Stats::Scalar postedTxDesc
Definition: etherdevice.hh:117
EtherDevice::EtherDeviceStats::coalescedRxOk
Stats::Formula coalescedRxOk
Definition: etherdevice.hh:103
Stats::constant
Temp constant(T val)
Definition: statistics.hh:2864
EtherDevice::EtherDeviceStats::txUdpChecksums
Stats::Scalar txUdpChecksums
Definition: etherdevice.hh:76
EtherDevice::EtherDeviceStats::totPackets
Stats::Formula totPackets
Definition: etherdevice.hh:86

Generated on Tue Mar 23 2021 19:41:26 for gem5 by doxygen 1.8.17