Go to the documentation of this file.
38 #ifndef __BASE_CIRCLEBUF_HH__
39 #define __BASE_CIRCLEBUF_HH__
88 template <
class OutputIterator>
90 peek(OutputIterator out,
size_t len)
const
102 template <
class OutputIterator>
107 "Trying to read past end of circular buffer.");
115 const size_t to_end =
buffer.end() - next_it;
120 out = std::copy_n(next_it, to_end, out);
126 std::copy_n(next_it,
len, out);
135 template <
class OutputIterator>
153 template <
class InputIterator>
170 const size_t total_bytes =
used +
len;
176 const size_t to_end =
buffer.end() - next_it;
181 std::copy_n(in, to_end, next_it);
184 std::advance(in, to_end);
189 std::copy_n(in,
len, next_it);
224 template <
class OutputIterator>
226 template <
class OutputIterator>
229 template <
class InputIterator>
242 template <
typename T>
248 param.
peek(temp.begin(), temp.size());
252 template <
typename T>
260 param.
write(temp.cbegin(), temp.size());
263 template <
typename T>
268 param.
peek(temp.begin(), temp.size());
272 template <
typename T>
280 "Trying to unserialize data into too small FIFO");
283 param.
write(temp.cbegin(), temp.size());
286 #endif // __BASE_CIRCLEBUF_HH__
void peek(OutputIterator out, off_t offset, size_t len) const
Copy buffer contents without advancing the read pointer.
static void overflow(double &c, const scfx_params ¶ms, bool &o_flag)
void write(InputIterator in, size_t len)
void read(OutputIterator out, size_t len)
Simple FIFO implementation backed by a circular buffer.
void peek(OutputIterator out, size_t len) const
void arrayParamOut(CheckpointOut &cp, const std::string &name, const CircleBuf< T > ¶m)
const std::string & name()
void write(InputIterator in, size_t len)
Add elements to the end of the ring buffers and advance.
void peek(OutputIterator out, size_t len) const
Copy buffer contents without advancing the read pointer.
void read(OutputIterator out, size_t len)
Copy buffer contents and advance the read pointer.
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
void flush()
Throw away any data in the buffer.
std::ostream CheckpointOut
void arrayParamIn(CheckpointIn &cp, const std::string &name, CircleBuf< T > ¶m)
#define fatal_if(cond,...)
Conditional fatal macro that checks the supplied condition and only causes a fatal error if the condi...
Circular buffer backed by a vector.
CircleBuf< value_type > buf
Generated on Tue Jun 22 2021 15:28:25 for gem5 by doxygen 1.8.17