rename_impl.hh (8798:adaa92be9037) rename_impl.hh (8907:26256a3e8fa4)
1/*
2 * Copyright (c) 2010 ARM Limited
3 * All rights reserved.
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

82 instsInProgress[tid] = 0;
83
84 emptyROB[tid] = true;
85
86 serializeOnNextInst[tid] = false;
87 }
88
89 // @todo: Make into a parameter.
1/*
2 * Copyright (c) 2010 ARM Limited
3 * All rights reserved.
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

82 instsInProgress[tid] = 0;
83
84 emptyROB[tid] = true;
85
86 serializeOnNextInst[tid] = false;
87 }
88
89 // @todo: Make into a parameter.
90 skidBufferMax = (2 * (iewToRenameDelay * params->decodeWidth)) + renameWidth;
90 skidBufferMax = (2 * (decodeToRenameDelay * params->decodeWidth)) + renameWidth;
91}
92
93template <class Impl>
94std::string
95DefaultRename<Impl>::name() const
96{
97 return cpu->name() + ".rename";
98}

--- 1297 unchanged lines hidden ---
91}
92
93template <class Impl>
94std::string
95DefaultRename<Impl>::name() const
96{
97 return cpu->name() + ".rename";
98}

--- 1297 unchanged lines hidden ---