Searched refs:curTick (Results 151 - 175 of 213) sorted by relevance

123456789

/gem5/src/mem/cache/
H A Dmshr.cc473 targets.add(cp_pkt, curTick(), _order, Target::FromSnoop,
563 readyTime = std::max(curTick(), targets.front().readyTime);
/gem5/src/mem/cache/prefetch/
H A Dqueued.cc292 Tick pf_time = curTick() + clockPeriod() * latency;
433 Tick pf_time = curTick() + clockPeriod() * latency;
/gem5/src/mem/
H A Dmem_checker.cc281 // reads, we use curTick(), i.e. we will remove all readObservation except
283 const Tick before = outstandingReads.empty() ? curTick() :
H A Dnoncoherent_xbar.cc221 slavePorts[slave_port_id]->schedTimingResp(pkt, curTick() + latency);
/gem5/ext/sst/
H A Dgem5.cc178 info.output("exiting: curTick()=%lu cause=`%s` code=%d\n",
179 curTick(), event->getCause().c_str(), event->getCode());
/gem5/src/sim/
H A Deventq.cc297 cprintf("EventQueue Dump (cycle %d)\n", curTick());
H A Dsystem.hh458 lastWorkItemStarted[p] = curTick();
/gem5/src/dev/alpha/
H A Dbackdoor.cc242 inform("Launching CPU %d @ %d", cpunum, curTick());
/gem5/src/mem/qos/
H A Dmem_ctrl.hh507 serviceTick[pkt_priority] = curTick();
/gem5/configs/example/
H A Dmemtest.py335 print('Exiting @ tick', m5.curTick(), 'because', exit_event.getCause())
H A Dmemcheck.py321 print('Exiting @ tick', m5.curTick(), 'because', exit_event.getCause())
/gem5/configs/splash2/
H A Drun.py288 print('Exiting @ tick', m5.curTick(), 'because', exit_event.getCause())
/gem5/src/dev/arm/
H A Dgeneric_timer.hh85 return (curTick() - _resetTick) / _period;
H A Dpl011.cc293 schedule(intEvent, curTick() + intDelay);
H A Dufs_device.cc1159 stats.idleTimes.sample(curTick() - idlePhaseStart);
1310 transactionStart[count] = curTick(); //note the start time
1697 panic("no LUN finished in tick %d\n", curTick());
1758 stats.transactionLatency.sample(curTick() -
1850 idlePhaseStart = curTick();
1892 < curTick()))
2278 panic("no read finished in tick %d\n", curTick());
/gem5/src/gpu-compute/
H A Dlds_state.hh386 // TODO set to max(lastCommand+1, curTick())
387 return returnQueue.empty() ? curTick() : returnQueue.back().first;
H A Dgpu_tlb.hh91 Tick curCycle() const { return curTick() / clock; }
/gem5/src/cpu/minor/
H A Ddecode.cc112 inst->traceData = cpu.getTracer()->getInstRecord(curTick(),
/gem5/src/cpu/testers/rubytest/
H A DRubyTester.cc254 schedule(checkStartEvent, curTick() + m_wakeup_frequency);
/gem5/src/python/pybind11/
H A Dcore.cc254 .def("curTick", curTick)
/gem5/src/mem/ruby/system/
H A DVIPERCoalescer.cc163 schedule(issueEvent, curTick());
/gem5/src/python/m5/
H A Dsimulate.py376 from _m5.core import curTick
/gem5/src/python/m5/stats/
H A D__init__.py357 now = m5.curTick()
/gem5/src/base/
H A Dstatistics.hh91 extern Tick curTick();
590 total += current * (curTick() - last);
591 last = curTick();
620 assert(last == curTick());
621 return (Result)(total + current) / (Result)(curTick() - lastReset + 1);
635 total += current * (curTick() - last);
636 last = curTick();
646 last = curTick();
647 lastReset = curTick();
1830 data.samples = curTick();
[all...]
/gem5/src/arch/arm/
H A Dtable_walker.cc66 pendingChangeTick(curTick()),
231 currState->startTime = curTick();
426 statWalkServiceTime.sample(curTick() - currState->startTime);
466 statWalkWaitTime.sample(curTick() - currState->startTime);
564 statWalkWaitTime.sample(curTick() - currState->startTime);
751 statWalkWaitTime.sample(curTick() - currState->startTime);
1825 statWalkServiceTime.sample(curTick() - currState->startTime);
1866 statWalkServiceTime.sample(curTick() - currState->startTime);
1944 statWalkServiceTime.sample(curTick() - currState->startTime);
2155 Tick now = curTick();
[all...]

Completed in 62 milliseconds

123456789