Deleted Added
sdiff udiff text old ( 8232:b28d06a175be ) new ( 8460:3893d9d2c6c2 )
full compact
1/*
2 * Copyright (c) 2003-2006 The Regents of The University of Michigan
3 * Copyright (c) 2011 Regents of the University of California
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met: redistributions of source code must retain the above copyright

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

78 workItemsEnd(0),
79 _params(p),
80 totalNumInsts(0),
81 instEventQueue("system instruction-based event queue")
82{
83 // add self to global system list
84 systemList.push_back(this);
85
86#if FULL_SYSTEM
87 kernelSymtab = new SymbolTable;
88 if (!debugSymbolTable)
89 debugSymbolTable = new SymbolTable;
90
91
92 /**
93 * Get a functional port to memory

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

283Addr
284System::freeMemSize()
285{
286 return physmem->size() - (pagePtr << LogVMPageSize);
287}
288
289#endif
290
291void
292System::resume()
293{
294 SimObject::resume();
295 totalNumInsts = 0;
296}
297
298void

--- 51 unchanged lines hidden ---