Searched refs:MaxTick (Results 1 - 25 of 47) sorted by relevance

12

/gem5/src/sim/
H A Dsimulate.hh36 GlobalSimLoopExitEvent *simulate(Tick num_cycles = MaxTick);
H A Dsimulate.cc109 if (num_cycles < MaxTick - curTick())
111 else // counter would roll over or be set to MaxTick anyhow
112 num_cycles = MaxTick;
/gem5/src/cpu/testers/traffic_gen/
H A Didle_gen.cc63 return MaxTick;
H A Dexit_gen.cc65 return MaxTick;
H A Dbase.cc122 nextPacketTick = MaxTick;
123 nextTransitionTick = MaxTick;
239 if (duration != MaxTick && duration != 0) {
245 nextTransitionTick = MaxTick;
251 nextPacketTick = MaxTick;
252 nextTransitionTick = MaxTick;
263 nextPacketTick == MaxTick && nextTransitionTick == MaxTick) {
321 nextPacketTick = MaxTick;
322 nextTransitionTick = MaxTick;
[all...]
H A Dlinear_gen.cc100 // there are no more requests, therefore return MaxTick
101 return MaxTick;
H A Drandom_gen.cc94 // No more requests. Return MaxTick.
95 return MaxTick;
H A Dtrace_gen.cc101 // the trace Return MaxTick to signal that there will be no
103 return MaxTick;
/gem5/configs/example/
H A Dsc_main.py44 cause = m5.simulate(m5.MaxTick).getCause()
/gem5/src/systemc/tests/
H A Dconfig.py47 cause = m5.simulate(m5.MaxTick).getCause()
/gem5/src/arch/arm/tracers/
H A DTarmacTrace.py76 end_tick = Param.Tick(MaxTick,
/gem5/util/systemc/systemc_within_gem5/systemc_sc_main/
H A Dconfig.py64 cause = m5.simulate(m5.MaxTick).getCause()
/gem5/src/systemc/core/
H A Dsched_event.hh75 work(work), _when(MaxTick), _events(nullptr)
H A Dsc_main.cc66 sc_start(sc_time::from_value(MaxTick - now), SC_EXIT_ON_STARVATION);
83 if (MaxTick - now < time.value())
/gem5/util/systemc/gem5_within_systemc/
H A Dsc_module.hh156 GlobalSimLoopExitEvent *simulate(Tick num_cycles = MaxTick);
H A Dsc_module.cc257 if (num_cycles < MaxTick - curTick())
259 else /* counter would roll over or be set to MaxTick anyhow */
260 num_cycles = MaxTick;
/gem5/util/systemc/systemc_within_gem5/systemc_simple_object/
H A Dconfig.py58 cause = m5.simulate(m5.MaxTick).getCause()
/gem5/src/mem/cache/prefetch/
H A Dmulti.cc61 Tick next_ready = MaxTick;
H A Dqueued.hh192 return pfq.empty() ? MaxTick : pfq.front().tick;
/gem5/tests/legacy-configs/
H A Drun.py52 maxtick = m5.MaxTick
/gem5/src/cpu/o3/probe/
H A Delastic_trace.hh222 : executeTick(MaxTick),
223 toCommitTick(MaxTick)
/gem5/src/base/
H A Dtrace.cc150 if (when != MaxTick)
/gem5/src/python/pybind11/
H A Devent.cc110 py::arg("ticks") = MaxTick);
/gem5/src/mem/cache/
H A Dqueue.hh229 return readyList.empty() ? MaxTick : readyList.front()->readyTime;
/gem5/src/mem/
H A Dpacket_queue.hh172 { return transmitList.empty() ? MaxTick : transmitList.front().tick; }
191 * send event, the event will be rescheduled. If MaxTick is

Completed in 26 milliseconds

12