system.cc (11005:e7f403b6b76f) system.cc (11146:0fd6976303bc)
1/*
2 * Copyright (c) 2011-2014 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

75
76vector<System *> System::systemList;
77
78int System::numSystemsRunning = 0;
79
80System::System(Params *p)
81 : MemObject(p), _systemPort("system_port", this),
82 _numContexts(0),
1/*
2 * Copyright (c) 2011-2014 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

75
76vector<System *> System::systemList;
77
78int System::numSystemsRunning = 0;
79
80System::System(Params *p)
81 : MemObject(p), _systemPort("system_port", this),
82 _numContexts(0),
83 multiThread(p->multi_thread),
83 pagePtr(0),
84 init_param(p->init_param),
85 physProxy(_systemPort, p->cache_line_size),
86 kernelSymtab(nullptr),
87 kernel(nullptr),
88 loadAddrMask(p->load_addr_mask),
89 loadAddrOffset(p->load_offset),
90 nextPID(0),

--- 394 unchanged lines hidden ---
84 pagePtr(0),
85 init_param(p->init_param),
86 physProxy(_systemPort, p->cache_line_size),
87 kernelSymtab(nullptr),
88 kernel(nullptr),
89 loadAddrMask(p->load_addr_mask),
90 loadAddrOffset(p->load_offset),
91 nextPID(0),

--- 394 unchanged lines hidden ---