Searched refs:cpuList (Results 1 - 3 of 3) sorted by relevance

/gem5/src/python/m5/
H A Dsimulate.py244 def switchCpus(system, cpuList, verbose=True):
253 cpuList -- (old_cpu, new_cpu) tuples
259 if not isinstance(cpuList, list):
261 for item in cpuList:
265 old_cpus = [old_cpu for old_cpu, new_cpu in cpuList]
266 new_cpus = [new_cpu for old_cpu, new_cpu in cpuList]
269 for old_cpu, new_cpu in cpuList:
300 for old_cpu, new_cpu in cpuList:
315 for old_cpu, new_cpu in cpuList:
/gem5/src/cpu/
H A Dbase.hh598 static std::vector<BaseCPU *> cpuList; //!< Static global cpu list variable
607 static int numSimulatedCPUs() { return cpuList.size(); }
612 int size = cpuList.size();
614 total += cpuList[i]->totalInsts();
623 int size = cpuList.size();
625 total += cpuList[i]->totalOps();
H A Dbase.cc80 vector<BaseCPU *> BaseCPU::cpuList;
147 _cpuId = cpuList.size();
151 cpuList.push_back(this);

Completed in 6 milliseconds