diff options
author | Kevin Lim <ktlim@umich.edu> | 2005-03-10 15:53:27 -0500 |
---|---|---|
committer | Kevin Lim <ktlim@umich.edu> | 2005-03-10 15:53:27 -0500 |
commit | c12a665c3120b61ed4e09da5d8a52c57406763d5 (patch) | |
tree | b5176be0d526ea24cafcd6f615058651f2b34dfb /cpu/base_cpu.cc | |
parent | aa8c9db159422a313f6dfc9a76fd827515b32126 (diff) | |
parent | 51108a8c0a3a42702f49a945f8a4dac776a8d189 (diff) | |
download | gem5-c12a665c3120b61ed4e09da5d8a52c57406763d5.tar.xz |
Merge ktlim@zizzer.eecs.umich.edu:/bk/m5
into zamp.eecs.umich.edu:/z/ktlim2/m5
--HG--
extra : convert_revision : a58535776cf5a3d17f8d9f65144cdf8db54289aa
Diffstat (limited to 'cpu/base_cpu.cc')
-rw-r--r-- | cpu/base_cpu.cc | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/cpu/base_cpu.cc b/cpu/base_cpu.cc index 181b484e7..8feb362fb 100644 --- a/cpu/base_cpu.cc +++ b/cpu/base_cpu.cc @@ -40,6 +40,8 @@ #include "sim/param.hh" #include "sim/sim_events.hh" +#include "base/trace.hh" + using namespace std; vector<BaseCPU *> BaseCPU::cpuList; @@ -49,6 +51,7 @@ vector<BaseCPU *> BaseCPU::cpuList; // been initialized int maxThreadsPerCPU = 1; +extern void debug_break(); #ifdef FULL_SYSTEM BaseCPU::BaseCPU(Params *p) : SimObject(p->name), frequency(p->freq), checkInterrupts(true), @@ -58,9 +61,16 @@ BaseCPU::BaseCPU(Params *p) : SimObject(p->name), params(p), number_of_threads(p->numberOfThreads) #endif { + DPRINTF(FullCPU, "BaseCPU: Creating object, mem address %#x.\n", this); + + debug_break(); + // add self to global list of CPUs cpuList.push_back(this); + DPRINTF(FullCPU, "BaseCPU: CPU added to cpuList, mem address %#x.\n", + this); + if (number_of_threads > maxThreadsPerCPU) maxThreadsPerCPU = number_of_threads; |