Go to the documentation of this file.
38 #ifndef __BASE_CIRCLEBUF_HH__
39 #define __BASE_CIRCLEBUF_HH__
91 template <
class OutputIterator>
93 peek(OutputIterator out,
size_t len)
const
105 template <
class OutputIterator>
110 "Trying to read past end of circular buffer.");
118 const size_t to_end =
buffer.end() - next_it;
123 out = std::copy_n(next_it, to_end, out);
129 std::copy_n(next_it,
len, out);
138 template <
class OutputIterator>
156 template <
class InputIterator>
173 const size_t total_bytes =
used +
len;
179 const size_t to_end =
buffer.end() - next_it;
184 std::copy_n(in, to_end, next_it);
187 std::advance(in, to_end);
192 std::copy_n(in,
len, next_it);
227 template <
class OutputIterator>
229 template <
class OutputIterator>
232 template <
class InputIterator>
245 template <
typename T>
251 param.
peek(temp.begin(), temp.size());
255 template <
typename T>
263 param.
write(temp.cbegin(), temp.size());
266 template <
typename T>
271 param.
peek(temp.begin(), temp.size());
275 template <
typename T>
283 "Trying to unserialize data into too small FIFO");
286 param.
write(temp.cbegin(), temp.size());
291 #endif // __BASE_CIRCLEBUF_HH__
void peek(OutputIterator out, size_t len) const
Simple FIFO implementation backed by a circular buffer.
void flush()
Throw away any data in the buffer.
static void overflow(double &c, const scfx_params ¶ms, bool &o_flag)
void peek(OutputIterator out, size_t len) const
Copy buffer contents without advancing the read pointer.
Circular buffer backed by a vector.
void read(OutputIterator out, size_t len)
Copy buffer contents and advance the read pointer.
CircleBuf< value_type > buf
const std::string & name()
decltype(std::begin(std::declval< const T & >()), std::end(std::declval< const T & >()), void()) arrayParamOut(CheckpointOut &os, const std::string &name, const T ¶m)
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
void write(InputIterator in, size_t len)
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...
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
void read(OutputIterator out, size_t len)
void peek(OutputIterator out, off_t offset, size_t len) const
Copy buffer contents without advancing the read pointer.
void write(InputIterator in, size_t len)
Add elements to the end of the ring buffers and advance.
Generated on Wed Jul 28 2021 12:10:22 for gem5 by doxygen 1.8.17