cpu.cc (9920:028e4da64b42) cpu.cc (9954:72a72649a156)
1/*
2 * Copyright (c) 2011-2012 ARM Limited
3 * Copyright (c) 2013 Advanced Micro Devices, Inc.
4 * All rights reserved
5 *
6 * The license below extends only to copyright in the software and shall
7 * not be construed as granting a license to any other intellectual
8 * property including but not limited to intellectual property relating

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

225 commit(this, params),
226
227 regFile(params->numPhysIntRegs,
228 params->numPhysFloatRegs,
229 params->numPhysCCRegs),
230
231 freeList(name() + ".freelist", &regFile),
232
1/*
2 * Copyright (c) 2011-2012 ARM Limited
3 * Copyright (c) 2013 Advanced Micro Devices, Inc.
4 * All rights reserved
5 *
6 * The license below extends only to copyright in the software and shall
7 * not be construed as granting a license to any other intellectual
8 * property including but not limited to intellectual property relating

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

225 commit(this, params),
226
227 regFile(params->numPhysIntRegs,
228 params->numPhysFloatRegs,
229 params->numPhysCCRegs),
230
231 freeList(name() + ".freelist", &regFile),
232
233 rob(this,
234 params->numROBEntries, params->squashWidth,
235 params->smtROBPolicy, params->smtROBThreshold,
236 params->numThreads),
233 rob(this, params),
237
238 scoreboard(name() + ".scoreboard",
239 regFile.totalNumPhysRegs(), TheISA::NumMiscRegs,
240 TheISA::ZeroReg, TheISA::ZeroReg),
241
242 isa(numThreads, NULL),
243
244 icachePort(&fetch, this),

--- 1610 unchanged lines hidden ---
234
235 scoreboard(name() + ".scoreboard",
236 regFile.totalNumPhysRegs(), TheISA::NumMiscRegs,
237 TheISA::ZeroReg, TheISA::ZeroReg),
238
239 isa(numThreads, NULL),
240
241 icachePort(&fetch, this),

--- 1610 unchanged lines hidden ---