Deleted Added
sdiff udiff text old ( 9944:4ff1c5c6dcbc ) new ( 10172:790a214be1f4 )
full compact
1/*
2 * Copyright (c) 2010-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

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

66 decodeToRenameDelay(params->decodeToRenameDelay),
67 commitToRenameDelay(params->commitToRenameDelay),
68 renameWidth(params->renameWidth),
69 commitWidth(params->commitWidth),
70 numThreads(params->numThreads),
71 maxPhysicalRegs(params->numPhysIntRegs + params->numPhysFloatRegs
72 + params->numPhysCCRegs)
73{
74 // @todo: Make into a parameter.
75 skidBufferMax = (2 * (decodeToRenameDelay * params->decodeWidth)) + renameWidth;
76}
77
78template <class Impl>
79std::string
80DefaultRename<Impl>::name() const
81{

--- 1309 unchanged lines hidden ---