Searched refs:outstanding (Results 1 - 6 of 6) sorted by relevance

/gem5/src/cpu/
H A Dtranslation.hh64 int outstanding; member in class:WholeTranslationState
78 * Single translation state. We set the number of outstanding
83 : outstanding(1), delay(false), isSplit(false), mainReq(_req),
92 * number of outstanding translations to two and then mark this as a
98 : outstanding(2), delay(false), isSplit(true), mainReq(_req),
109 * the outstanding count determines whether the translation is complete.
116 assert(outstanding);
118 outstanding--;
119 if (isSplit && outstanding == 0) {
128 return outstanding
[all...]
/gem5/src/cpu/o3/
H A Dlsq.hh84 outstanding(0), isLoad(isLoad_), needWB(isLoad_), isSplit(false),
95 /** Number of outstanding packets to complete. */
96 uint8_t outstanding; member in class:LSQ::LSQSenderState
113 inline bool isComplete() { return outstanding == 0; }
H A Dlsq_unit_impl.hh105 senderState->outstanding--;
967 // If the instruction has an outstanding fault, we cannot complete
970 // If we have an outstanding fault, the fault should only be of
1079 state->outstanding++;
H A Dlsq_impl.hh991 state->outstanding--;
1007 state->outstanding--;
/gem5/src/cpu/simple/
H A Dtiming.cc413 main_send_state->outstanding = 2;
902 // Record the fact that this packet is no longer outstanding.
903 assert(main_send_state->outstanding != 0);
904 main_send_state->outstanding--;
906 if (main_send_state->outstanding) {
H A Dtiming.hh69 * been processed, the "outstanding" counter is decremented. Once the
75 int outstanding; member in class:TimingSimpleCPU::SplitMainSenderState

Completed in 20 milliseconds