system.cc (4762:c94e103c83ad) system.cc (4838:286c4b41f425)
1/*
2 * Copyright (c) 2003-2006 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

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

67#endif
68 memoryMode(p->mem_mode), _params(p)
69{
70 // add self to global system list
71 systemList.push_back(this);
72
73#if FULL_SYSTEM
74 kernelSymtab = new SymbolTable;
1/*
2 * Copyright (c) 2003-2006 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

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

67#endif
68 memoryMode(p->mem_mode), _params(p)
69{
70 // add self to global system list
71 systemList.push_back(this);
72
73#if FULL_SYSTEM
74 kernelSymtab = new SymbolTable;
75 debugSymbolTable = new SymbolTable;
75 if (!debugSymbolTable)
76 debugSymbolTable = new SymbolTable;
76
77
78 /**
79 * Get a functional port to memory
80 */
81 Port *mem_port;
82 mem_port = physmem->getPort("functional");
83 functionalPort.setPeer(mem_port);

--- 202 unchanged lines hidden ---
77
78
79 /**
80 * Get a functional port to memory
81 */
82 Port *mem_port;
83 mem_port = physmem->getPort("functional");
84 functionalPort.setPeer(mem_port);

--- 202 unchanged lines hidden ---