Searched refs:loads (Results 1 - 13 of 13) sorted by relevance

/gem5/ext/pybind11/tests/
H A Dtest_pickling.py18 p2 = pickle.loads(data)
33 p2 = pickle.loads(data)
42 assert e.EOne == pickle.loads(data)
/gem5/src/cpu/o3/
H A Dlsq_unit_impl.hh127 // Only loads, store conditionals and atomics perform the writeback
148 loads(0), stores(0), storesToWB(0), cacheBlockMask(0), stalled(false),
180 loads = stores = storesToWB = 0;
210 .desc("Number of loads that had data forwarded from stores");
214 .desc("Number of loads ignored due to an invalid address");
218 .desc("Number of loads squashed");
238 .desc("Number of blocked loads due to partial load-store forwarding");
242 .desc("Number of loads that were rescheduled");
296 assert(loads < loadQueue.capacity());
311 ++loads;
[all...]
H A Dlsq_unit.hh276 /** Commits loads older than a specific sequence number. */
306 /** Returns the number of loads in the LQ. */
307 int numLoads() { return loads; }
325 bool lqEmpty() const { return loads == 0; }
331 unsigned getCount() { return loads + stores; }
436 /** Writeback event, specifically for when stores forward data to loads. */
486 /** Should loads be checked for dependency issues */
490 int loads; member in class:LSQUnit
541 /** Total number of loads forwaded from LSQ stores. */
544 /** Total number of loads ignore
[all...]
/gem5/src/arch/mips/linux/
H A Dlinux.hh184 uint32_t loads[3]; /* 1, 5, and 15 minute load averages */ member in struct:MipsLinux::__anon8
/gem5/src/arch/alpha/linux/
H A Dlinux.hh184 uint64_t loads[3]; /* 1, 5, and 15 minute load averages */ member in struct:AlphaLinux::__anon69
/gem5/src/arch/riscv/linux/
H A Dlinux.hh178 uint64_t loads[3]; member in struct:RiscvLinux64::__anon85
350 uint32_t loads[3]; member in struct:RiscvLinux32::__anon89
/gem5/src/arch/sparc/linux/
H A Dlinux.hh144 uint64_t loads[3]; /* 1, 5, and 15 minute load averages */ member in struct:SparcLinux::__anon92
239 uint32_t loads[3]; /* 1, 5, and 15 minute load averages */ member in struct:Sparc32Linux::__anon94
/gem5/src/arch/x86/linux/
H A Dlinux.hh195 uint64_t loads[3]; /* 1, 5, and 15 minute load averages */ member in struct:X86Linux64::__anon99
318 uint32_t loads[3]; /* 1, 5, and 15 minute load averages */ member in struct:X86Linux32::__anon101
/gem5/tests/test-progs/asmtest/src/riscv/isa/rv64si/
H A Ddirty.S24 # Set up MPRV with MPP=S, so loads and stores use S-mode
/gem5/src/arch/arm/linux/
H A Dlinux.hh237 uint32_t loads[3]; /* 1, 5, and 15 minute load averages */ member in struct:ArmLinux32::__anon75
493 uint64_t loads[3]; /* 1, 5, and 15 minute load averages */ member in struct:ArmLinux64::__anon78
/gem5/src/cpu/
H A Dbase.hh395 * scheduling events based on number of loads committed by
473 * loads rather than ticks.
476 * @param loads Number of load instructions into the future.
479 void scheduleLoadStop(ThreadID tid, Counter loads, const char *cause);
H A Dbase.cc785 BaseCPU::scheduleLoadStop(ThreadID tid, Counter loads, const char *cause)
790 comLoadEventQueue[tid]->schedule(event, now + loads);
/gem5/src/python/m5/ext/pyfdt/
H A Dpyfdt.py858 tree = json.loads(buf)

Completed in 20 milliseconds