38 char *
data = (
char *)dest;
39 if (offset + len >= size())
46 while (offset >= pkt->length) {
47 offset -= pkt->length;
52 panic(
"invalid fifo");
54 unsigned size = min(pkt->length - offset, len);
55 memcpy(data, pkt->data, size);
69 packet->serialize(base +
".packet", cp);
70 paramOut(cp, base +
".slack", slack);
71 paramOut(cp, base +
".number", number);
78 packet = make_shared<EthPacketData>();
79 packet->unserialize(base +
".packet", cp);
80 paramIn(cp, base +
".slack", slack);
81 paramIn(cp, base +
".number", number);
89 paramOut(cp, base +
".maxsize", _maxsize);
90 paramOut(cp, base +
".reserved", _reserved);
91 paramOut(cp, base +
".packets", fifo.size());
94 for (
const auto &entry : fifo)
95 entry.serialize(
csprintf(
"%s.entry%d", base, i++), cp);
101 paramIn(cp, base +
".size", _size);
103 paramIn(cp, base +
".reserved", _reserved);
105 paramIn(cp, base +
".packets", fifosize);
109 for (
int i = 0;
i < fifosize; ++
i) {
112 fifo.push_back(entry);
#define panic(...)
This implements a cprintf based panic() function.
void unserialize(const std::string &base, CheckpointIn &cp)
void unserialize(const std::string &base, CheckpointIn &cp)
Overload hash function for BasicBlockRange type.
std::string csprintf(const char *format, const Args &...args)
void paramOut(CheckpointOut &cp, const string &name, ExtMachInst const &machInst)
std::shared_ptr< EthPacketData > EthPacketPtr
std::ostream CheckpointOut
fifo_list::iterator iterator
void paramIn(CheckpointIn &cp, const string &name, ExtMachInst &machInst)
void serialize(const std::string &base, CheckpointOut &cp) const
bool copyout(void *dest, unsigned offset, unsigned len)
void serialize(const std::string &base, CheckpointOut &cp) const
Serialization stuff.