gem5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
scoreboard.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2005-2006 The Regents of The University of Michigan
3  * Copyright (c) 2013 Advanced Micro Devices, Inc.
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions are
8  * met: redistributions of source code must retain the above copyright
9  * notice, this list of conditions and the following disclaimer;
10  * redistributions in binary form must reproduce the above copyright
11  * notice, this list of conditions and the following disclaimer in the
12  * documentation and/or other materials provided with the distribution;
13  * neither the name of the copyright holders nor the names of its
14  * contributors may be used to endorse or promote products derived from
15  * this software without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28  *
29  * Authors: Korey Sewell
30  * Kevin Lim
31  * Steve Reinhardt
32  */
33 
34 #ifndef __CPU_O3_SCOREBOARD_HH__
35 #define __CPU_O3_SCOREBOARD_HH__
36 
37 #include <iostream>
38 #include <utility>
39 #include <vector>
40 
41 #include "base/trace.hh"
42 #include "config/the_isa.hh"
43 #include "cpu/o3/comm.hh"
44 #include "debug/Scoreboard.hh"
45 
57 {
58  private:
61  const std::string _name;
62 
66 
68  unsigned numPhysRegs;
69 
76 
79 
82 
83  bool isZeroReg(PhysRegIndex idx) const
84  {
85  return (idx == zeroRegIdx ||
86  (THE_ISA == ALPHA_ISA && idx == fpZeroRegIdx));
87  }
88 
89  public:
97  Scoreboard(const std::string &_my_name,
98  unsigned _numPhysicalRegs,
99  unsigned _numMiscRegs,
100  PhysRegIndex _zeroRegIdx,
101  PhysRegIndex _fpZeroRegIdx);
102 
105 
107  std::string name() const { return _name; };
108 
110  bool getReg(PhysRegIndex reg_idx) const
111  {
112  assert(reg_idx < numTotalRegs);
113 
114  if (reg_idx >= numPhysRegs) {
115  // misc regs are always ready
116  return true;
117  }
118 
119  bool ready = regScoreBoard[reg_idx];
120 
121  if (isZeroReg(reg_idx))
122  assert(ready);
123 
124  return ready;
125  }
126 
128  void setReg(PhysRegIndex reg_idx)
129  {
130  assert(reg_idx < numTotalRegs);
131 
132  if (reg_idx >= numPhysRegs) {
133  // misc regs are always ready, ignore attempts to change that
134  return;
135  }
136 
137  DPRINTF(Scoreboard, "Setting reg %i as ready\n", reg_idx);
138 
139  assert(reg_idx < numTotalRegs);
140  regScoreBoard[reg_idx] = true;
141  }
142 
144  void unsetReg(PhysRegIndex reg_idx)
145  {
146  assert(reg_idx < numTotalRegs);
147 
148  if (reg_idx >= numPhysRegs) {
149  // misc regs are always ready, ignore attempts to change that
150  return;
151  }
152 
153  // zero reg should never be marked unready
154  if (isZeroReg(reg_idx))
155  return;
156 
157  regScoreBoard[reg_idx] = false;
158  }
159 
160 };
161 
162 #endif
void unsetReg(PhysRegIndex reg_idx)
Sets the register as not ready.
Definition: scoreboard.hh:144
#define DPRINTF(x,...)
Definition: trace.hh:212
Scoreboard(const std::string &_my_name, unsigned _numPhysicalRegs, unsigned _numMiscRegs, PhysRegIndex _zeroRegIdx, PhysRegIndex _fpZeroRegIdx)
Constructs a scoreboard.
Definition: scoreboard.cc:38
#define M5_CLASS_VAR_USED
Definition: compiler.hh:61
void setReg(PhysRegIndex reg_idx)
Sets the register as ready.
Definition: scoreboard.hh:128
std::string name() const
Returns the name of the scoreboard.
Definition: scoreboard.hh:107
unsigned numPhysRegs
The number of actual physical registers.
Definition: scoreboard.hh:68
bool isZeroReg(PhysRegIndex idx) const
Definition: scoreboard.hh:83
PhysRegIndex fpZeroRegIdx
The index of the FP zero register.
Definition: scoreboard.hh:81
std::vector< bool > regScoreBoard
Scoreboard of physical integer registers, saying whether or not they are ready.
Definition: scoreboard.hh:65
bool getReg(PhysRegIndex reg_idx) const
Checks if the register is ready.
Definition: scoreboard.hh:110
Implements a simple scoreboard to track which registers are ready.
Definition: scoreboard.hh:56
const std::string _name
The object name, for DPRINTF.
Definition: scoreboard.hh:61
PhysRegIndex zeroRegIdx
The index of the zero register.
Definition: scoreboard.hh:78
unsigned M5_CLASS_VAR_USED numTotalRegs
The total number of registers which can be indexed, including the misc registers that come after the ...
Definition: scoreboard.hh:75
short int PhysRegIndex
Definition: comm.hh:57
~Scoreboard()
Destructor.
Definition: scoreboard.hh:104

Generated on Fri Jun 9 2017 13:03:43 for gem5 by doxygen 1.8.6