inst_queue_impl.hh (13590:d7e018859709) inst_queue_impl.hh (13610:5d5404ac6288)
1/*
2 * Copyright (c) 2011-2014, 2017-2018 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

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

99
100 numThreads = params->numThreads;
101
102 // Set the number of total physical registers
103 // As the vector registers have two addressing modes, they are added twice
104 numPhysRegs = params->numPhysIntRegs + params->numPhysFloatRegs +
105 params->numPhysVecRegs +
106 params->numPhysVecRegs * TheISA::NumVecElemPerVecReg +
1/*
2 * Copyright (c) 2011-2014, 2017-2018 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

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

99
100 numThreads = params->numThreads;
101
102 // Set the number of total physical registers
103 // As the vector registers have two addressing modes, they are added twice
104 numPhysRegs = params->numPhysIntRegs + params->numPhysFloatRegs +
105 params->numPhysVecRegs +
106 params->numPhysVecRegs * TheISA::NumVecElemPerVecReg +
107 params->numPhysVecPredRegs +
107 params->numPhysCCRegs;
108
109 //Create an entry for each physical register within the
110 //dependency graph.
111 dependGraph.resize(numPhysRegs);
112
113 // Resize the register scoreboard.
114 regScoreboard.resize(numPhysRegs);

--- 1527 unchanged lines hidden ---
108 params->numPhysCCRegs;
109
110 //Create an entry for each physical register within the
111 //dependency graph.
112 dependGraph.resize(numPhysRegs);
113
114 // Resize the register scoreboard.
115 regScoreboard.resize(numPhysRegs);

--- 1527 unchanged lines hidden ---