system.cc (11146:0fd6976303bc) system.cc (11420:b48c0ba4f524)
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
9 * licensed hereunder. You may use the software subject to the license
10 * terms below provided that you ensure that this notice is replicated
11 * unmodified and in its entirety in all distributions of the software,
12 * modified or unmodified, in source code or in binary form.
13 *
14 * Copyright (c) 2003-2006 The Regents of The University of Michigan
15 * Copyright (c) 2011 Regents of the University of California
16 * All rights reserved.
17 *
18 * Redistribution and use in source and binary forms, with or without
19 * modification, are permitted provided that the following conditions are
20 * met: redistributions of source code must retain the above copyright
21 * notice, this list of conditions and the following disclaimer;
22 * redistributions in binary form must reproduce the above copyright
23 * notice, this list of conditions and the following disclaimer in the
24 * documentation and/or other materials provided with the distribution;
25 * neither the name of the copyright holders nor the names of its
26 * contributors may be used to endorse or promote products derived from
27 * this software without specific prior written permission.
28 *
29 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
30 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
31 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
32 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
33 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
34 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
35 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
39 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40 *
41 * Authors: Steve Reinhardt
42 * Lisa Hsu
43 * Nathan Binkert
44 * Ali Saidi
45 * Rick Strong
46 */
47
48#include "arch/remote_gdb.hh"
49#include "arch/utility.hh"
50#include "base/loader/object_file.hh"
51#include "base/loader/symtab.hh"
52#include "base/str.hh"
53#include "base/trace.hh"
54#include "cpu/thread_context.hh"
55#include "debug/Loader.hh"
56#include "debug/WorkItems.hh"
57#include "mem/abstract_mem.hh"
58#include "mem/physical.hh"
59#include "params/System.hh"
60#include "sim/byteswap.hh"
61#include "sim/debug.hh"
62#include "sim/full_system.hh"
63#include "sim/system.hh"
64
65/**
66 * To avoid linking errors with LTO, only include the header if we
67 * actually have a definition.
68 */
69#if THE_ISA != NULL_ISA
70#include "kern/kernel_stats.hh"
71#endif
72
73using namespace std;
74using namespace TheISA;
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),
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),
92 physmem(name() + ".physmem", p->memories, p->mmap_using_noreserve),
93 memoryMode(p->mem_mode),
94 _cacheLineSize(p->cache_line_size),
95 workItemsBegin(0),
96 workItemsEnd(0),
97 numWorkIds(p->num_work_ids),
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
9 * licensed hereunder. You may use the software subject to the license
10 * terms below provided that you ensure that this notice is replicated
11 * unmodified and in its entirety in all distributions of the software,
12 * modified or unmodified, in source code or in binary form.
13 *
14 * Copyright (c) 2003-2006 The Regents of The University of Michigan
15 * Copyright (c) 2011 Regents of the University of California
16 * All rights reserved.
17 *
18 * Redistribution and use in source and binary forms, with or without
19 * modification, are permitted provided that the following conditions are
20 * met: redistributions of source code must retain the above copyright
21 * notice, this list of conditions and the following disclaimer;
22 * redistributions in binary form must reproduce the above copyright
23 * notice, this list of conditions and the following disclaimer in the
24 * documentation and/or other materials provided with the distribution;
25 * neither the name of the copyright holders nor the names of its
26 * contributors may be used to endorse or promote products derived from
27 * this software without specific prior written permission.
28 *
29 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
30 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
31 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
32 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
33 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
34 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
35 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
39 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40 *
41 * Authors: Steve Reinhardt
42 * Lisa Hsu
43 * Nathan Binkert
44 * Ali Saidi
45 * Rick Strong
46 */
47
48#include "arch/remote_gdb.hh"
49#include "arch/utility.hh"
50#include "base/loader/object_file.hh"
51#include "base/loader/symtab.hh"
52#include "base/str.hh"
53#include "base/trace.hh"
54#include "cpu/thread_context.hh"
55#include "debug/Loader.hh"
56#include "debug/WorkItems.hh"
57#include "mem/abstract_mem.hh"
58#include "mem/physical.hh"
59#include "params/System.hh"
60#include "sim/byteswap.hh"
61#include "sim/debug.hh"
62#include "sim/full_system.hh"
63#include "sim/system.hh"
64
65/**
66 * To avoid linking errors with LTO, only include the header if we
67 * actually have a definition.
68 */
69#if THE_ISA != NULL_ISA
70#include "kern/kernel_stats.hh"
71#endif
72
73using namespace std;
74using namespace TheISA;
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),
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),
92 physmem(name() + ".physmem", p->memories, p->mmap_using_noreserve),
93 memoryMode(p->mem_mode),
94 _cacheLineSize(p->cache_line_size),
95 workItemsBegin(0),
96 workItemsEnd(0),
97 numWorkIds(p->num_work_ids),
98 thermalModel(p->thermal_model),
98 _params(p),
99 totalNumInsts(0),
100 instEventQueue("system instruction-based event queue")
101{
102 // add self to global system list
103 systemList.push_back(this);
104
105 if (FullSystem) {
106 kernelSymtab = new SymbolTable;
107 if (!debugSymbolTable)
108 debugSymbolTable = new SymbolTable;
109 }
110
111 // check if the cache line size is a value known to work
112 if (!(_cacheLineSize == 16 || _cacheLineSize == 32 ||
113 _cacheLineSize == 64 || _cacheLineSize == 128))
114 warn_once("Cache line size is neither 16, 32, 64 nor 128 bytes.\n");
115
116 // Get the generic system master IDs
117 MasterID tmp_id M5_VAR_USED;
118 tmp_id = getMasterId("writebacks");
119 assert(tmp_id == Request::wbMasterId);
120 tmp_id = getMasterId("functional");
121 assert(tmp_id == Request::funcMasterId);
122 tmp_id = getMasterId("interrupt");
123 assert(tmp_id == Request::intMasterId);
124
125 if (FullSystem) {
126 if (params()->kernel == "") {
127 inform("No kernel set for full system simulation. "
128 "Assuming you know what you're doing\n");
129 } else {
130 // Get the kernel code
131 kernel = createObjectFile(params()->kernel);
132 inform("kernel located at: %s", params()->kernel);
133
134 if (kernel == NULL)
135 fatal("Could not load kernel file %s", params()->kernel);
136
137 // setup entry points
138 kernelStart = kernel->textBase();
139 kernelEnd = kernel->bssBase() + kernel->bssSize();
140 kernelEntry = kernel->entryPoint();
141
142 // load symbols
143 if (!kernel->loadGlobalSymbols(kernelSymtab))
144 fatal("could not load kernel symbols\n");
145
146 if (!kernel->loadLocalSymbols(kernelSymtab))
147 fatal("could not load kernel local symbols\n");
148
149 if (!kernel->loadGlobalSymbols(debugSymbolTable))
150 fatal("could not load kernel symbols\n");
151
152 if (!kernel->loadLocalSymbols(debugSymbolTable))
153 fatal("could not load kernel local symbols\n");
154
155 // Loading only needs to happen once and after memory system is
156 // connected so it will happen in initState()
157 }
158 }
159
160 // increment the number of running systms
161 numSystemsRunning++;
162
163 // Set back pointers to the system in all memories
164 for (int x = 0; x < params()->memories.size(); x++)
165 params()->memories[x]->system(this);
166}
167
168System::~System()
169{
170 delete kernelSymtab;
171 delete kernel;
172
173 for (uint32_t j = 0; j < numWorkIds; j++)
174 delete workItemStats[j];
175}
176
177void
178System::init()
179{
180 // check that the system port is connected
181 if (!_systemPort.isConnected())
182 panic("System port on %s is not connected.\n", name());
183}
184
185BaseMasterPort&
186System::getMasterPort(const std::string &if_name, PortID idx)
187{
188 // no need to distinguish at the moment (besides checking)
189 return _systemPort;
190}
191
192void
193System::setMemoryMode(Enums::MemoryMode mode)
194{
195 assert(drainState() == DrainState::Drained);
196 memoryMode = mode;
197}
198
199bool System::breakpoint()
200{
201 if (remoteGDB.size())
202 return remoteGDB[0]->breakpoint();
203 return false;
204}
205
206/**
207 * Setting rgdb_wait to a positive integer waits for a remote debugger to
208 * connect to that context ID before continuing. This should really
209 be a parameter on the CPU object or something...
210 */
211int rgdb_wait = -1;
212
213ContextID
214System::registerThreadContext(ThreadContext *tc, ContextID assigned)
215{
216 int id;
217 if (assigned == InvalidContextID) {
218 for (id = 0; id < threadContexts.size(); id++) {
219 if (!threadContexts[id])
220 break;
221 }
222
223 if (threadContexts.size() <= id)
224 threadContexts.resize(id + 1);
225 } else {
226 if (threadContexts.size() <= assigned)
227 threadContexts.resize(assigned + 1);
228 id = assigned;
229 }
230
231 if (threadContexts[id])
232 fatal("Cannot have two CPUs with the same id (%d)\n", id);
233
234 threadContexts[id] = tc;
235 _numContexts++;
236
237#if THE_ISA != NULL_ISA
238 int port = getRemoteGDBPort();
239 if (port) {
240 RemoteGDB *rgdb = new RemoteGDB(this, tc);
241 GDBListener *gdbl = new GDBListener(rgdb, port + id);
242 gdbl->listen();
243
244 if (rgdb_wait != -1 && rgdb_wait == id)
245 gdbl->accept();
246
247 if (remoteGDB.size() <= id) {
248 remoteGDB.resize(id + 1);
249 }
250
251 remoteGDB[id] = rgdb;
252 }
253#endif
254
255 activeCpus.push_back(false);
256
257 return id;
258}
259
260int
261System::numRunningContexts()
262{
263 int running = 0;
264 for (int i = 0; i < _numContexts; ++i) {
265 if (threadContexts[i]->status() != ThreadContext::Halted)
266 ++running;
267 }
268 return running;
269}
270
271void
272System::initState()
273{
274 if (FullSystem) {
275 for (int i = 0; i < threadContexts.size(); i++)
276 TheISA::startupCPU(threadContexts[i], i);
277 // Moved from the constructor to here since it relies on the
278 // address map being resolved in the interconnect
279 /**
280 * Load the kernel code into memory
281 */
282 if (params()->kernel != "") {
283 if (params()->kernel_addr_check) {
284 // Validate kernel mapping before loading binary
285 if (!(isMemAddr((kernelStart & loadAddrMask) +
286 loadAddrOffset) &&
287 isMemAddr((kernelEnd & loadAddrMask) +
288 loadAddrOffset))) {
289 fatal("Kernel is mapped to invalid location (not memory). "
290 "kernelStart 0x(%x) - kernelEnd 0x(%x) %#x:%#x\n",
291 kernelStart,
292 kernelEnd, (kernelStart & loadAddrMask) +
293 loadAddrOffset,
294 (kernelEnd & loadAddrMask) + loadAddrOffset);
295 }
296 }
297 // Load program sections into memory
298 kernel->loadSections(physProxy, loadAddrMask, loadAddrOffset);
299
300 DPRINTF(Loader, "Kernel start = %#x\n", kernelStart);
301 DPRINTF(Loader, "Kernel end = %#x\n", kernelEnd);
302 DPRINTF(Loader, "Kernel entry = %#x\n", kernelEntry);
303 DPRINTF(Loader, "Kernel loaded...\n");
304 }
305 }
306}
307
308void
309System::replaceThreadContext(ThreadContext *tc, ContextID context_id)
310{
311 if (context_id >= threadContexts.size()) {
312 panic("replaceThreadContext: bad id, %d >= %d\n",
313 context_id, threadContexts.size());
314 }
315
316 threadContexts[context_id] = tc;
317 if (context_id < remoteGDB.size())
318 remoteGDB[context_id]->replaceThreadContext(tc);
319}
320
321Addr
322System::allocPhysPages(int npages)
323{
324 Addr return_addr = pagePtr << PageShift;
325 pagePtr += npages;
326
327 Addr next_return_addr = pagePtr << PageShift;
328
329 AddrRange m5opRange(0xffff0000, 0xffffffff);
330 if (m5opRange.contains(next_return_addr)) {
331 warn("Reached m5ops MMIO region\n");
332 return_addr = 0xffffffff;
333 pagePtr = 0xffffffff >> PageShift;
334 }
335
336 if ((pagePtr << PageShift) > physmem.totalSize())
337 fatal("Out of memory, please increase size of physical memory.");
338 return return_addr;
339}
340
341Addr
342System::memSize() const
343{
344 return physmem.totalSize();
345}
346
347Addr
348System::freeMemSize() const
349{
350 return physmem.totalSize() - (pagePtr << PageShift);
351}
352
353bool
354System::isMemAddr(Addr addr) const
355{
356 return physmem.isMemAddr(addr);
357}
358
359void
360System::drainResume()
361{
362 totalNumInsts = 0;
363}
364
365void
366System::serialize(CheckpointOut &cp) const
367{
368 if (FullSystem)
369 kernelSymtab->serialize("kernel_symtab", cp);
370 SERIALIZE_SCALAR(pagePtr);
371 SERIALIZE_SCALAR(nextPID);
372 serializeSymtab(cp);
373
374 // also serialize the memories in the system
375 physmem.serializeSection(cp, "physmem");
376}
377
378
379void
380System::unserialize(CheckpointIn &cp)
381{
382 if (FullSystem)
383 kernelSymtab->unserialize("kernel_symtab", cp);
384 UNSERIALIZE_SCALAR(pagePtr);
385 UNSERIALIZE_SCALAR(nextPID);
386 unserializeSymtab(cp);
387
388 // also unserialize the memories in the system
389 physmem.unserializeSection(cp, "physmem");
390}
391
392void
393System::regStats()
394{
395 for (uint32_t j = 0; j < numWorkIds ; j++) {
396 workItemStats[j] = new Stats::Histogram();
397 stringstream namestr;
398 ccprintf(namestr, "work_item_type%d", j);
399 workItemStats[j]->init(20)
400 .name(name() + "." + namestr.str())
401 .desc("Run time stat for" + namestr.str())
402 .prereq(*workItemStats[j]);
403 }
404}
405
406void
407System::workItemEnd(uint32_t tid, uint32_t workid)
408{
409 std::pair<uint32_t,uint32_t> p(tid, workid);
410 if (!lastWorkItemStarted.count(p))
411 return;
412
413 Tick samp = curTick() - lastWorkItemStarted[p];
414 DPRINTF(WorkItems, "Work item end: %d\t%d\t%lld\n", tid, workid, samp);
415
416 if (workid >= numWorkIds)
417 fatal("Got workid greater than specified in system configuration\n");
418
419 workItemStats[workid]->sample(samp);
420 lastWorkItemStarted.erase(p);
421}
422
423void
424System::printSystems()
425{
426 ios::fmtflags flags(cerr.flags());
427
428 vector<System *>::iterator i = systemList.begin();
429 vector<System *>::iterator end = systemList.end();
430 for (; i != end; ++i) {
431 System *sys = *i;
432 cerr << "System " << sys->name() << ": " << hex << sys << endl;
433 }
434
435 cerr.flags(flags);
436}
437
438void
439printSystems()
440{
441 System::printSystems();
442}
443
444MasterID
445System::getMasterId(std::string master_name)
446{
447 // strip off system name if the string starts with it
448 if (startswith(master_name, name()))
449 master_name = master_name.erase(0, name().size() + 1);
450
451 // CPUs in switch_cpus ask for ids again after switching
452 for (int i = 0; i < masterIds.size(); i++) {
453 if (masterIds[i] == master_name) {
454 return i;
455 }
456 }
457
458 // Verify that the statistics haven't been enabled yet
459 // Otherwise objects will have sized their stat buckets and
460 // they will be too small
461
462 if (Stats::enabled()) {
463 fatal("Can't request a masterId after regStats(). "
464 "You must do so in init().\n");
465 }
466
467 masterIds.push_back(master_name);
468
469 return masterIds.size() - 1;
470}
471
472std::string
473System::getMasterName(MasterID master_id)
474{
475 if (master_id >= masterIds.size())
476 fatal("Invalid master_id passed to getMasterName()\n");
477
478 return masterIds[master_id];
479}
480
481System *
482SystemParams::create()
483{
484 return new System(this);
485}
99 _params(p),
100 totalNumInsts(0),
101 instEventQueue("system instruction-based event queue")
102{
103 // add self to global system list
104 systemList.push_back(this);
105
106 if (FullSystem) {
107 kernelSymtab = new SymbolTable;
108 if (!debugSymbolTable)
109 debugSymbolTable = new SymbolTable;
110 }
111
112 // check if the cache line size is a value known to work
113 if (!(_cacheLineSize == 16 || _cacheLineSize == 32 ||
114 _cacheLineSize == 64 || _cacheLineSize == 128))
115 warn_once("Cache line size is neither 16, 32, 64 nor 128 bytes.\n");
116
117 // Get the generic system master IDs
118 MasterID tmp_id M5_VAR_USED;
119 tmp_id = getMasterId("writebacks");
120 assert(tmp_id == Request::wbMasterId);
121 tmp_id = getMasterId("functional");
122 assert(tmp_id == Request::funcMasterId);
123 tmp_id = getMasterId("interrupt");
124 assert(tmp_id == Request::intMasterId);
125
126 if (FullSystem) {
127 if (params()->kernel == "") {
128 inform("No kernel set for full system simulation. "
129 "Assuming you know what you're doing\n");
130 } else {
131 // Get the kernel code
132 kernel = createObjectFile(params()->kernel);
133 inform("kernel located at: %s", params()->kernel);
134
135 if (kernel == NULL)
136 fatal("Could not load kernel file %s", params()->kernel);
137
138 // setup entry points
139 kernelStart = kernel->textBase();
140 kernelEnd = kernel->bssBase() + kernel->bssSize();
141 kernelEntry = kernel->entryPoint();
142
143 // load symbols
144 if (!kernel->loadGlobalSymbols(kernelSymtab))
145 fatal("could not load kernel symbols\n");
146
147 if (!kernel->loadLocalSymbols(kernelSymtab))
148 fatal("could not load kernel local symbols\n");
149
150 if (!kernel->loadGlobalSymbols(debugSymbolTable))
151 fatal("could not load kernel symbols\n");
152
153 if (!kernel->loadLocalSymbols(debugSymbolTable))
154 fatal("could not load kernel local symbols\n");
155
156 // Loading only needs to happen once and after memory system is
157 // connected so it will happen in initState()
158 }
159 }
160
161 // increment the number of running systms
162 numSystemsRunning++;
163
164 // Set back pointers to the system in all memories
165 for (int x = 0; x < params()->memories.size(); x++)
166 params()->memories[x]->system(this);
167}
168
169System::~System()
170{
171 delete kernelSymtab;
172 delete kernel;
173
174 for (uint32_t j = 0; j < numWorkIds; j++)
175 delete workItemStats[j];
176}
177
178void
179System::init()
180{
181 // check that the system port is connected
182 if (!_systemPort.isConnected())
183 panic("System port on %s is not connected.\n", name());
184}
185
186BaseMasterPort&
187System::getMasterPort(const std::string &if_name, PortID idx)
188{
189 // no need to distinguish at the moment (besides checking)
190 return _systemPort;
191}
192
193void
194System::setMemoryMode(Enums::MemoryMode mode)
195{
196 assert(drainState() == DrainState::Drained);
197 memoryMode = mode;
198}
199
200bool System::breakpoint()
201{
202 if (remoteGDB.size())
203 return remoteGDB[0]->breakpoint();
204 return false;
205}
206
207/**
208 * Setting rgdb_wait to a positive integer waits for a remote debugger to
209 * connect to that context ID before continuing. This should really
210 be a parameter on the CPU object or something...
211 */
212int rgdb_wait = -1;
213
214ContextID
215System::registerThreadContext(ThreadContext *tc, ContextID assigned)
216{
217 int id;
218 if (assigned == InvalidContextID) {
219 for (id = 0; id < threadContexts.size(); id++) {
220 if (!threadContexts[id])
221 break;
222 }
223
224 if (threadContexts.size() <= id)
225 threadContexts.resize(id + 1);
226 } else {
227 if (threadContexts.size() <= assigned)
228 threadContexts.resize(assigned + 1);
229 id = assigned;
230 }
231
232 if (threadContexts[id])
233 fatal("Cannot have two CPUs with the same id (%d)\n", id);
234
235 threadContexts[id] = tc;
236 _numContexts++;
237
238#if THE_ISA != NULL_ISA
239 int port = getRemoteGDBPort();
240 if (port) {
241 RemoteGDB *rgdb = new RemoteGDB(this, tc);
242 GDBListener *gdbl = new GDBListener(rgdb, port + id);
243 gdbl->listen();
244
245 if (rgdb_wait != -1 && rgdb_wait == id)
246 gdbl->accept();
247
248 if (remoteGDB.size() <= id) {
249 remoteGDB.resize(id + 1);
250 }
251
252 remoteGDB[id] = rgdb;
253 }
254#endif
255
256 activeCpus.push_back(false);
257
258 return id;
259}
260
261int
262System::numRunningContexts()
263{
264 int running = 0;
265 for (int i = 0; i < _numContexts; ++i) {
266 if (threadContexts[i]->status() != ThreadContext::Halted)
267 ++running;
268 }
269 return running;
270}
271
272void
273System::initState()
274{
275 if (FullSystem) {
276 for (int i = 0; i < threadContexts.size(); i++)
277 TheISA::startupCPU(threadContexts[i], i);
278 // Moved from the constructor to here since it relies on the
279 // address map being resolved in the interconnect
280 /**
281 * Load the kernel code into memory
282 */
283 if (params()->kernel != "") {
284 if (params()->kernel_addr_check) {
285 // Validate kernel mapping before loading binary
286 if (!(isMemAddr((kernelStart & loadAddrMask) +
287 loadAddrOffset) &&
288 isMemAddr((kernelEnd & loadAddrMask) +
289 loadAddrOffset))) {
290 fatal("Kernel is mapped to invalid location (not memory). "
291 "kernelStart 0x(%x) - kernelEnd 0x(%x) %#x:%#x\n",
292 kernelStart,
293 kernelEnd, (kernelStart & loadAddrMask) +
294 loadAddrOffset,
295 (kernelEnd & loadAddrMask) + loadAddrOffset);
296 }
297 }
298 // Load program sections into memory
299 kernel->loadSections(physProxy, loadAddrMask, loadAddrOffset);
300
301 DPRINTF(Loader, "Kernel start = %#x\n", kernelStart);
302 DPRINTF(Loader, "Kernel end = %#x\n", kernelEnd);
303 DPRINTF(Loader, "Kernel entry = %#x\n", kernelEntry);
304 DPRINTF(Loader, "Kernel loaded...\n");
305 }
306 }
307}
308
309void
310System::replaceThreadContext(ThreadContext *tc, ContextID context_id)
311{
312 if (context_id >= threadContexts.size()) {
313 panic("replaceThreadContext: bad id, %d >= %d\n",
314 context_id, threadContexts.size());
315 }
316
317 threadContexts[context_id] = tc;
318 if (context_id < remoteGDB.size())
319 remoteGDB[context_id]->replaceThreadContext(tc);
320}
321
322Addr
323System::allocPhysPages(int npages)
324{
325 Addr return_addr = pagePtr << PageShift;
326 pagePtr += npages;
327
328 Addr next_return_addr = pagePtr << PageShift;
329
330 AddrRange m5opRange(0xffff0000, 0xffffffff);
331 if (m5opRange.contains(next_return_addr)) {
332 warn("Reached m5ops MMIO region\n");
333 return_addr = 0xffffffff;
334 pagePtr = 0xffffffff >> PageShift;
335 }
336
337 if ((pagePtr << PageShift) > physmem.totalSize())
338 fatal("Out of memory, please increase size of physical memory.");
339 return return_addr;
340}
341
342Addr
343System::memSize() const
344{
345 return physmem.totalSize();
346}
347
348Addr
349System::freeMemSize() const
350{
351 return physmem.totalSize() - (pagePtr << PageShift);
352}
353
354bool
355System::isMemAddr(Addr addr) const
356{
357 return physmem.isMemAddr(addr);
358}
359
360void
361System::drainResume()
362{
363 totalNumInsts = 0;
364}
365
366void
367System::serialize(CheckpointOut &cp) const
368{
369 if (FullSystem)
370 kernelSymtab->serialize("kernel_symtab", cp);
371 SERIALIZE_SCALAR(pagePtr);
372 SERIALIZE_SCALAR(nextPID);
373 serializeSymtab(cp);
374
375 // also serialize the memories in the system
376 physmem.serializeSection(cp, "physmem");
377}
378
379
380void
381System::unserialize(CheckpointIn &cp)
382{
383 if (FullSystem)
384 kernelSymtab->unserialize("kernel_symtab", cp);
385 UNSERIALIZE_SCALAR(pagePtr);
386 UNSERIALIZE_SCALAR(nextPID);
387 unserializeSymtab(cp);
388
389 // also unserialize the memories in the system
390 physmem.unserializeSection(cp, "physmem");
391}
392
393void
394System::regStats()
395{
396 for (uint32_t j = 0; j < numWorkIds ; j++) {
397 workItemStats[j] = new Stats::Histogram();
398 stringstream namestr;
399 ccprintf(namestr, "work_item_type%d", j);
400 workItemStats[j]->init(20)
401 .name(name() + "." + namestr.str())
402 .desc("Run time stat for" + namestr.str())
403 .prereq(*workItemStats[j]);
404 }
405}
406
407void
408System::workItemEnd(uint32_t tid, uint32_t workid)
409{
410 std::pair<uint32_t,uint32_t> p(tid, workid);
411 if (!lastWorkItemStarted.count(p))
412 return;
413
414 Tick samp = curTick() - lastWorkItemStarted[p];
415 DPRINTF(WorkItems, "Work item end: %d\t%d\t%lld\n", tid, workid, samp);
416
417 if (workid >= numWorkIds)
418 fatal("Got workid greater than specified in system configuration\n");
419
420 workItemStats[workid]->sample(samp);
421 lastWorkItemStarted.erase(p);
422}
423
424void
425System::printSystems()
426{
427 ios::fmtflags flags(cerr.flags());
428
429 vector<System *>::iterator i = systemList.begin();
430 vector<System *>::iterator end = systemList.end();
431 for (; i != end; ++i) {
432 System *sys = *i;
433 cerr << "System " << sys->name() << ": " << hex << sys << endl;
434 }
435
436 cerr.flags(flags);
437}
438
439void
440printSystems()
441{
442 System::printSystems();
443}
444
445MasterID
446System::getMasterId(std::string master_name)
447{
448 // strip off system name if the string starts with it
449 if (startswith(master_name, name()))
450 master_name = master_name.erase(0, name().size() + 1);
451
452 // CPUs in switch_cpus ask for ids again after switching
453 for (int i = 0; i < masterIds.size(); i++) {
454 if (masterIds[i] == master_name) {
455 return i;
456 }
457 }
458
459 // Verify that the statistics haven't been enabled yet
460 // Otherwise objects will have sized their stat buckets and
461 // they will be too small
462
463 if (Stats::enabled()) {
464 fatal("Can't request a masterId after regStats(). "
465 "You must do so in init().\n");
466 }
467
468 masterIds.push_back(master_name);
469
470 return masterIds.size() - 1;
471}
472
473std::string
474System::getMasterName(MasterID master_id)
475{
476 if (master_id >= masterIds.size())
477 fatal("Invalid master_id passed to getMasterName()\n");
478
479 return masterIds[master_id];
480}
481
482System *
483SystemParams::create()
484{
485 return new System(this);
486}