gem5
v21.1.0.1
|
#include <algorithm>
#include <cassert>
#include <climits>
#include <functional>
#include <iosfwd>
#include <list>
#include <memory>
#include <string>
#include "base/debug.hh"
#include "base/flags.hh"
#include "base/types.hh"
#include "base/uncontended_mutex.hh"
#include "debug/Event.hh"
#include "sim/cur_tick.hh"
#include "sim/serialize.hh"
Go to the source code of this file.
Classes | |
class | gem5::EventBase |
Common base class for Event and GlobalEvent, so they can share flag and priority definitions and accessor functions. More... | |
class | gem5::Event |
class | gem5::EventQueue |
Queue of events sorted in time order. More... | |
class | gem5::EventQueue::ScopedMigration |
class | gem5::EventQueue::ScopedRelease |
class | gem5::EventManager |
class | gem5::EventWrapper< T, F > |
class | gem5::EventFunctionWrapper |
Namespaces | |
gem5 | |
Reference material can be found at the JEDEC website: UFS standard http://www.jedec.org/standards-documents/results/jesd220 UFS HCI specification http://www.jedec.org/standards-documents/results/jesd223. | |
Macros | |
#define | SERIALIZE_EVENT(event) event.serializeSection(cp, #event); |
#define | UNSERIALIZE_EVENT(event) |
Functions | |
EventQueue * | gem5::getEventQueue (uint32_t index) |
Function for returning eventq queue for the provided index. More... | |
EventQueue * | gem5::curEventQueue () |
void | gem5::curEventQueue (EventQueue *q) |
bool | gem5::operator< (const Event &l, const Event &r) |
bool | gem5::operator> (const Event &l, const Event &r) |
bool | gem5::operator<= (const Event &l, const Event &r) |
bool | gem5::operator>= (const Event &l, const Event &r) |
bool | gem5::operator== (const Event &l, const Event &r) |
bool | gem5::operator!= (const Event &l, const Event &r) |
void | gem5::dumpMainQueue () |