gem5  v21.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
pktfifo.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/pktfifo.hh"
30 
31 #include "base/logging.hh"
32 
33 bool
34 PacketFifo::copyout(void *dest, unsigned offset, unsigned len)
35 {
36  char *data = (char *)dest;
37  if (offset + len >= size())
38  return false;
39 
40  iterator i = fifo.begin();
41  iterator end = fifo.end();
42  while (len > 0) {
43  EthPacketPtr &pkt = i->packet;
44  while (offset >= pkt->length) {
45  offset -= pkt->length;
46  ++i;
47  }
48 
49  if (i == end)
50  panic("invalid fifo");
51 
52  unsigned size = std::min(pkt->length - offset, len);
53  memcpy(data, pkt->data, size);
54  offset = 0;
55  len -= size;
56  data += size;
57  ++i;
58  }
59 
60  return true;
61 }
62 
63 
64 void
65 PacketFifoEntry::serialize(const std::string &base, CheckpointOut &cp) const
66 {
67  packet->serialize(base + ".packet", cp);
68  paramOut(cp, base + ".slack", slack);
69  paramOut(cp, base + ".number", number);
70  paramOut(cp, base + ".priv", priv);
71 }
72 
73 void
75 {
76  packet = std::make_shared<EthPacketData>();
77  packet->unserialize(base + ".packet", cp);
78  paramIn(cp, base + ".slack", slack);
79  paramIn(cp, base + ".number", number);
80  paramIn(cp, base + ".priv", priv);
81 }
82 
83 void
84 PacketFifo::serialize(const std::string &base, CheckpointOut &cp) const
85 {
86  paramOut(cp, base + ".size", _size);
87  paramOut(cp, base + ".maxsize", _maxsize);
88  paramOut(cp, base + ".reserved", _reserved);
89  paramOut(cp, base + ".packets", fifo.size());
90 
91  int i = 0;
92  for (const auto &entry : fifo)
93  entry.serialize(csprintf("%s.entry%d", base, i++), cp);
94 }
95 
96 void
98 {
99  paramIn(cp, base + ".size", _size);
100 // paramIn(cp, base + ".maxsize", _maxsize);
101  paramIn(cp, base + ".reserved", _reserved);
102  int fifosize;
103  paramIn(cp, base + ".packets", fifosize);
104 
105  fifo.clear();
106 
107  for (int i = 0; i < fifosize; ++i) {
108  PacketFifoEntry entry;
109  entry.unserialize(csprintf("%s.entry%d", base, i), cp);
110  fifo.push_back(entry);
111  }
112 }
data
const char data[]
Definition: circlebuf.test.cc:47
PacketFifo::serialize
void serialize(const std::string &base, CheckpointOut &cp) const
Serialization stuff.
Definition: pktfifo.cc:84
PacketFifoEntry::serialize
void serialize(const std::string &base, CheckpointOut &cp) const
Definition: pktfifo.cc:65
PacketFifo::unserialize
void unserialize(const std::string &base, CheckpointIn &cp)
Definition: pktfifo.cc:97
ArmISA::i
Bitfield< 7 > i
Definition: miscregs_types.hh:63
X86ISA::base
Bitfield< 51, 12 > base
Definition: pagetable.hh:138
PacketFifo::end
iterator end()
Definition: pktfifo.hh:113
PacketFifoEntry
Definition: pktfifo.hh:42
PacketFifo::_maxsize
unsigned _maxsize
Definition: pktfifo.hh:87
PacketFifo::_size
unsigned _size
Definition: pktfifo.hh:88
PacketFifo::copyout
bool copyout(void *dest, unsigned offset, unsigned len)
Definition: pktfifo.cc:34
cp
Definition: cprintf.cc:37
PacketFifo::_reserved
unsigned _reserved
Definition: pktfifo.hh:89
PacketFifo::size
unsigned size() const
Definition: pktfifo.hh:98
PacketFifo::fifo
std::list< PacketFifoEntry > fifo
Definition: pktfifo.hh:85
PacketFifoEntry::unserialize
void unserialize(const std::string &base, CheckpointIn &cp)
Definition: pktfifo.cc:74
PacketFifoEntry::priv
int priv
Definition: pktfifo.hh:47
PacketFifoEntry::slack
unsigned slack
Definition: pktfifo.hh:46
PacketFifo::iterator
fifo_list::iterator iterator
Definition: pktfifo.hh:81
paramOut
void paramOut(CheckpointOut &cp, const std::string &name, ExtMachInst const &machInst)
Definition: types.cc:37
EthPacketPtr
std::shared_ptr< EthPacketData > EthPacketPtr
Definition: etherpkt.hh:87
ArmISA::len
Bitfield< 18, 16 > len
Definition: miscregs_types.hh:439
logging.hh
pktfifo.hh
CheckpointOut
std::ostream CheckpointOut
Definition: serialize.hh:64
PacketFifoEntry::packet
EthPacketPtr packet
Definition: pktfifo.hh:44
paramIn
void paramIn(CheckpointIn &cp, const std::string &name, ExtMachInst &machInst)
Definition: types.cc:69
CheckpointIn
Definition: serialize.hh:68
csprintf
std::string csprintf(const char *format, const Args &...args)
Definition: cprintf.hh:158
panic
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:171
ArmISA::offset
Bitfield< 23, 0 > offset
Definition: types.hh:153
PacketFifoEntry::number
uint64_t number
Definition: pktfifo.hh:45

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