cpu.cc (5737:f43dbc09fad3) cpu.cc (5804:34fe9bbc6705)
1/*
2 * Copyright (c) 2004-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;

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

187 TheISA::NumMiscRegs * number_of_threads,
188 TheISA::ZeroReg),
189
190 timeBuffer(params->backComSize, params->forwardComSize),
191 fetchQueue(params->backComSize, params->forwardComSize),
192 decodeQueue(params->backComSize, params->forwardComSize),
193 renameQueue(params->backComSize, params->forwardComSize),
194 iewQueue(params->backComSize, params->forwardComSize),
1/*
2 * Copyright (c) 2004-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;

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

187 TheISA::NumMiscRegs * number_of_threads,
188 TheISA::ZeroReg),
189
190 timeBuffer(params->backComSize, params->forwardComSize),
191 fetchQueue(params->backComSize, params->forwardComSize),
192 decodeQueue(params->backComSize, params->forwardComSize),
193 renameQueue(params->backComSize, params->forwardComSize),
194 iewQueue(params->backComSize, params->forwardComSize),
195 activityRec(NumStages,
195 activityRec(name(), NumStages,
196 params->backComSize + params->forwardComSize,
197 params->activity),
198
199 globalSeqNum(1),
200#if FULL_SYSTEM
201 system(params->system),
202 physmem(system->physmem),
203#endif // FULL_SYSTEM

--- 1540 unchanged lines hidden ---
196 params->backComSize + params->forwardComSize,
197 params->activity),
198
199 globalSeqNum(1),
200#if FULL_SYSTEM
201 system(params->system),
202 physmem(system->physmem),
203#endif // FULL_SYSTEM

--- 1540 unchanged lines hidden ---