Searched refs:pending (Results 1 - 9 of 9) sorted by relevance

/gem5/src/dev/net/
H A Ddist_packet.hh67 enum class ReqType { immediate, collective, pending, none }; member in class:DistHeaderPkt::ReqType
H A Ddist_iface.cc141 needCkpt = ReqType::pending;
144 needExit = ReqType::pending;
146 needStopSync = ReqType::pending;
467 // Schedule pending packets asap in case link speed/delay changed when
/gem5/src/sim/
H A Dinit.cc201 std::list<EmbeddedPyBind *> pending; local
217 pending.push_back(obj);
221 while (!pending.empty()) {
222 for (auto it = pending.begin(); it != pending.end(); ) {
226 it = pending.erase(it);
/gem5/ext/systemc/src/sysc/communication/
H A Dsc_prim_channel.cpp145 // Thread-safe list of pending external updates
154 bool pending() const function in class:sc_core::sc_prim_channel_registry::async_update_list
249 return m_async_update_list_p->pending();
278 if( m_async_update_list_p->pending() )
/gem5/src/arch/arm/
H A Dtable_walker.cc63 currState(NULL), pending(false),
344 if (pending || pendingQueue.size()) {
349 pending = true;
383 pending = true;
448 // if we still have pending translations, schedule more work
524 pending = false;
692 pending = false;
876 pending = false;
964 pending = false;
986 pending
[all...]
H A Dtable_walker.hh847 bool pending; member in class:ArmISA::TableWalker::LongDescriptor
/gem5/src/dev/arm/
H A Dgic_v3_redistributor.cc505 bool pending = data & (1 << int_id) ? 1 : 0; local
507 if (pending) {
510 "pending bit set\n", int_id);
711 "int_id %d (PPI) pending bit set\n", int_id);
748 "int_id %d (SGI) pending bit set\n", int_id);
777 * Recalculate the highest priority pending interrupt after a
791 * Multiple pending ints with same priority.
882 // Fetch the LPI pending entry from memory
909 // Fetch the LPI pending entry from memory
918 // corresponds to an LPI that is already pending
[all...]
H A Dgic_v3_distributor.cc607 bool pending = data & (1 << i) ? 1 : 0; local
609 if (pending) {
611 "int_id %d (SPI) pending bit set\n", int_id);
921 // * The SPI is already pending.
931 // Valid SPI, set interrupt pending
940 // * The SPI is not pending.
950 // Valid SPI, clear interrupt pending
960 // * The SPI is already pending.
966 // Valid SPI, set interrupt pending
976 // * The SPI is not pending
[all...]
/gem5/src/cpu/kvm/
H A Dx86_cpu.cc361 inform("\tNMI: [inj: %i, pending: %i, masked: %i]\n",
362 events.nmi.injected, events.nmi.pending,
1203 "M5 has pending interrupts, delivering interrupt.\n");
1213 "M5 has pending interrupts, requesting interrupt "
1238 // should ensure that pending interrupts have been delivered and
1239 // things are reasonably consistent (i.e., no interrupts pending
1248 DPRINTF(Drain, "kvmRunDrain: Delivering pending IO\n");
1384 // that are pending into gem5 on a drain. However, that would
1386 // drain if there is anything pending in the
1389 // there are pending interrupt
[all...]

Completed in 35 milliseconds