system.cc (2632:1bb2f91485ea) system.cc (2640:266b80dd5eca)
1#include "arch/isa_traits.hh"
2#include "base/loader/object_file.hh"
3#include "base/loader/symtab.hh"
4#include "base/trace.hh"
5#include "cpu/exec_context.hh"
6#include "mem/mem_object.hh"
7#include "mem/physical.hh"
8#include "sim/builder.hh"

--- 11 unchanged lines hidden (view full) ---

20vector<System *> System::systemList;
21
22int System::numSystemsRunning = 0;
23
24System::System(Params *p)
25 : SimObject(p->name), physmem(p->physmem), numcpus(0),
26#if FULL_SYSTEM
27 init_param(p->init_param),
1#include "arch/isa_traits.hh"
2#include "base/loader/object_file.hh"
3#include "base/loader/symtab.hh"
4#include "base/trace.hh"
5#include "cpu/exec_context.hh"
6#include "mem/mem_object.hh"
7#include "mem/physical.hh"
8#include "sim/builder.hh"

--- 11 unchanged lines hidden (view full) ---

20vector<System *> System::systemList;
21
22int System::numSystemsRunning = 0;
23
24System::System(Params *p)
25 : SimObject(p->name), physmem(p->physmem), numcpus(0),
26#if FULL_SYSTEM
27 init_param(p->init_param),
28 functionalPort(p->name + "-fport"),
29 virtPort(p->name + "-vport"),
28#else
29 page_ptr(0),
30#endif
31 _params(p)
32{
33 // add self to global system list
34 systemList.push_back(this);
35

--- 230 unchanged lines hidden ---
30#else
31 page_ptr(0),
32#endif
33 _params(p)
34{
35 // add self to global system list
36 systemList.push_back(this);
37

--- 230 unchanged lines hidden ---