traceflag stuff
src/base/traceflags.py:
add BaseCPU flag, O3CPUAll flag grouping
src/cpu/base.cc:
Use BaseCPU flag instead of FullCPU flag
--HG--
extra : convert_revision : 32f737a2f58eb936634799f1f809e07cbba90179
This commit is contained in:
@@ -68,12 +68,12 @@ BaseCPU::BaseCPU(Params *p)
|
||||
number_of_threads(p->numberOfThreads), system(p->system)
|
||||
#endif
|
||||
{
|
||||
DPRINTF(FullCPU, "BaseCPU: Creating object, mem address %#x.\n", this);
|
||||
DPRINTF(BaseCPU, "BaseCPU: Creating object, mem address %#x.\n", this);
|
||||
|
||||
// add self to global list of CPUs
|
||||
cpuList.push_back(this);
|
||||
|
||||
DPRINTF(FullCPU, "BaseCPU: CPU added to cpuList, mem address %#x.\n",
|
||||
DPRINTF(BaseCPU, "BaseCPU: CPU added to cpuList, mem address %#x.\n",
|
||||
this);
|
||||
|
||||
if (number_of_threads > maxThreadsPerCPU)
|
||||
|
||||
Reference in New Issue
Block a user