Searched refs:now (Results 1 - 24 of 24) sorted by relevance

/gem5/ext/systemc/src/tlm_utils/
H A Dpeq_with_get.h64 sc_core::sc_time now = sc_core::sc_time_stamp(); local
65 if (m_scheduled_events.begin()->first <= now) {
71 m_event.notify(m_scheduled_events.begin()->first - now);
H A Dpeq_with_cb_and_phase.h273 const sc_core::sc_time now=sc_core::sc_time_stamp(); local
276 while(m_ppq.get_size() && top==now) { // push all active ones into target
283 m_e.notify( top - now) ;
/gem5/src/systemc/ext/tlm_utils/
H A Dpeq_with_get.h70 sc_core::sc_time now = sc_core::sc_time_stamp(); local
71 if (m_scheduled_events.begin()->first <= now) {
77 m_event.notify(m_scheduled_events.begin()->first - now);
H A Dpeq_with_cb_and_phase.h276 const sc_core::sc_time now = sc_core::sc_time_stamp(); local
279 while (m_ppq.get_size() && top == now) {
287 m_e.notify(top - now);
/gem5/src/systemc/core/
H A Dsc_main.cc65 Tick now = ::sc_gem5::scheduler.getCurTick(); local
66 sc_start(sc_time::from_value(MaxTick - now), SC_EXIT_ON_STARVATION);
82 Tick now = ::sc_gem5::scheduler.getCurTick(); local
83 if (MaxTick - now < time.value())
85 ::sc_gem5::scheduler.start(now + time.value(), p == SC_RUN_TO_TIME);
/gem5/ext/pybind11/tests/
H A Dtest_chrono.cpp23 m.def("test_chrono1", []() { return std::chrono::system_clock::now(); });
39 m.def("test_chrono5", []() { return std::chrono::steady_clock::now(); });
H A Dtest_chrono.py174 time = datetime.datetime.now()
/gem5/ext/pybind11/docs/
H A Dbenchmark.py80 n1 = dt.datetime.now()
84 n2 = dt.datetime.now()
/gem5/src/sim/
H A Dstat_control.cc88 Time now; local
89 now.setTimer();
91 Time elapsed = now - statTime;
/gem5/src/cpu/minor/
H A Dscoreboard.hh136 Cycles now, ThreadContext *thread_context);
H A Dscoreboard.cc221 Cycles now, ThreadContext *thread_context)
267 if (returnCycle[index] > (now + relative_latency) ||
218 canInstIssue(MinorDynInstPtr inst, const std::vector<Cycles> *src_reg_relative_latencies, const std::vector<bool> *cant_forward_from_fu_indices, Cycles now, ThreadContext *thread_context) argument
H A Dexecute.cc1027 Cycles now = cpu.curCycle(); local
1284 } else if (inst->minimumCommitCycle > now) {
1287 *inst, inst->minimumCommitCycle - now);
1315 /* All discardable instructions must also be 'completed' by now */
/gem5/src/python/m5/stats/
H A D__init__.py357 now = m5.curTick()
359 assert lastDump <= now
360 new_dump = lastDump != now
361 lastDump = now
/gem5/src/systemc/utils/
H A Dvcd.cc254 Tick now = scheduler.getCurTick(); local
259 static_cast<double>(now) / SimClock::Float::s,
260 static_cast<double>(now / timeUnitTicks));
263 lastPrintedTime = now / timeUnitTicks;
302 Tick now = scheduler.getCurTick() / timeUnitTicks + deltaOffset; local
304 if (now <= lastPrintedTime) {
313 lastPrintedTime = now;
314 ccprintf(stream(), "#%u\n", now); local
/gem5/tests/test-progs/asmtest/src/riscv/isa/rv64ua/
H A Dlrsc.S21 # for now, only run this on core 0
/gem5/src/gpu-compute/
H A Dlds_state.cc218 // choose (delay + last packet in queue) or (now + delay) as the time to
279 Tick now = clockEdge(); local
282 while (!returnQueue.empty() && returnQueue.front().first <= now) {
/gem5/ext/googletest/googletest/test/
H A Dgtest_xml_output_unittest.py195 time_delta = abs(datetime.datetime.now() - date_time_from_xml)
/gem5/configs/example/
H A Dhmctest.py36 Right now this script supports only 4.\nDefault: 4")
/gem5/src/cpu/
H A Dbase.cc753 const Tick now(comInstEventQueue[tid]->getCurTick());
756 comInstEventQueue[tid]->schedule(event, now + insts);
787 const Tick now(comLoadEventQueue[tid]->getCurTick());
790 comLoadEventQueue[tid]->schedule(event, now + loads);
/gem5/src/dev/net/
H A Di8254xGBe.hh146 * @param now should we ignore the interrupt limiting timer
148 void postInterrupt(iGbReg::IntTypes t, bool now = false);
H A Di8254xGBe.cc695 IGbE::postInterrupt(IntTypes t, bool now) argument
700 if (t & regs.icr() && !now)
710 if (regs.itr.interval() == 0 || now ||
770 DPRINTF(EthernetIntr, "EINT: Posting interrupt to CPU now. Vector %#x\n",
784 "EINT: Clearing interrupt to CPU now. Vector %#x\n",
1089 // If we still have more to wb, call wb now
1221 "Part of split packet done: splitcount now %d\n", splitCount);
1439 // no rss support right now
/gem5/src/python/m5/
H A Dmain.py340 datetime.datetime.now().strftime("%b %e %Y %X"))
/gem5/ext/googletest/googletest/src/
H A Dgtest.cc829 __timeb64 now;
836 _ftime64(&now);
839 return static_cast<TimeInMillis>(now.time) * 1000 + now.millitm;
841 struct timeval now;
842 gettimeofday(&now, NULL);
843 return static_cast<TimeInMillis>(now.tv_sec) * 1000 + now.tv_usec / 1000;
3444 // We don't do it for now as:
/gem5/src/arch/arm/
H A Dtable_walker.cc425 // translate the request now that we know it will work
2155 Tick now = curTick(); local
2156 statPendingWalks.sample(pendingReqs, now - pendingChangeTick);
2158 pendingChangeTick = now;

Completed in 39 milliseconds