scoreboard.hh revision 10934:5af8f40d8f2c
1/*
2 * Copyright (c) 2013-2014 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
9 * licensed hereunder.  You may use the software subject to the license
10 * terms below provided that you ensure that this notice is replicated
11 * unmodified and in its entirety in all distributions of the software,
12 * modified or unmodified, in source code or in binary form.
13 *
14 * Redistribution and use in source and binary forms, with or without
15 * modification, are permitted provided that the following conditions are
16 * met: redistributions of source code must retain the above copyright
17 * notice, this list of conditions and the following disclaimer;
18 * redistributions in binary form must reproduce the above copyright
19 * notice, this list of conditions and the following disclaimer in the
20 * documentation and/or other materials provided with the distribution;
21 * neither the name of the copyright holders nor the names of its
22 * contributors may be used to endorse or promote products derived from
23 * this software without specific prior written permission.
24 *
25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
28 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
29 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
31 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36 *
37 * Authors: Andrew Bardsley
38 */
39
40/**
41 * @file
42 *
43 *  A simple instruction scoreboard for tracking dependencies in Execute.
44 */
45
46#ifndef __CPU_MINOR_SCOREBOARD_HH__
47#define __CPU_MINOR_SCOREBOARD_HH__
48
49#include "cpu/minor/cpu.hh"
50#include "cpu/minor/dyn_inst.hh"
51#include "cpu/minor/trace.hh"
52
53namespace Minor
54{
55
56/** A scoreboard of register dependencies including, for each register:
57 *  The number of in-flight instructions which will generate a result for
58 *  this register */
59class Scoreboard : public Named
60{
61  public:
62    /** The number of registers in the Scoreboard.  These
63     *  are just the integer, CC, float and vector registers packed
64     *  together with integer regs in the range [0,NumIntRegs-1],
65     *  CC regs in the range [NumIntRegs, NumIntRegs + NumCCRegs - 1],
66     *  float regs in the range
67     *  [NumIntRegs + NumCCRegs, NumFloatRegs + NumIntRegs + NumCCRegs - 1]
68     *  and vector regs in the range [NumFloatRegs + NumIntRegs + NumCCRegs,
69     *  NumFloatRegs + NumIntRegs + NumCCRegs + NumVectorRegs - 1]*/
70    const unsigned numRegs;
71
72    /** Type to use for thread context registers */
73    typedef TheISA::RegIndex RegIndex;
74
75    /** Type to use when indexing numResults */
76    typedef unsigned short int Index;
77
78    /** Count of the number of in-flight instructions that
79     *  have results for each register */
80    std::vector<Index> numResults;
81
82    /** Count of the number of results which can't be predicted */
83    std::vector<Index> numUnpredictableResults;
84
85    /** Index of the FU generating this result */
86    std::vector<int> fuIndices;
87
88    /** The estimated cycle number that the result will be presented.
89     *  This can be offset from to allow forwarding to be simulated as
90     *  long as instruction completion is *strictly* in order with
91     *  respect to instructions with unpredictable result timing */
92    std::vector<Cycles> returnCycle;
93
94    /** The execute sequence number of the most recent inst to generate this
95     *  register value */
96    std::vector<InstSeqNum> writingInst;
97
98  public:
99    Scoreboard(const std::string &name) :
100        Named(name),
101        numRegs(TheISA::NumIntRegs + TheISA::NumCCRegs +
102            TheISA::NumFloatRegs + TheISA::NumVectorRegs),
103        numResults(numRegs, 0),
104        numUnpredictableResults(numRegs, 0),
105        fuIndices(numRegs, 0),
106        returnCycle(numRegs, Cycles(0)),
107        writingInst(numRegs, 0)
108    { }
109
110  public:
111    /** Sets scoreboard_index to the index into numResults of the
112     *  given register index.  Returns true if the given register
113     *  is in the scoreboard and false if it isn't */
114    bool findIndex(RegIndex reg, Index &scoreboard_index);
115
116    /** Mark up an instruction's effects by incrementing
117     *  numResults counts.  If mark_unpredictable is true, the inst's
118     *  destination registers are marked as being unpredictable without
119     *  an estimated retire time */
120    void markupInstDests(MinorDynInstPtr inst, Cycles retire_time,
121        ThreadContext *thread_context, bool mark_unpredictable);
122
123    /** Clear down the dependencies for this instruction.  clear_unpredictable
124     *  must match mark_unpredictable for the same inst. */
125    void clearInstDests(MinorDynInstPtr inst, bool clear_unpredictable);
126
127    /** Returns the exec sequence number of the most recent inst on
128     *  which the given inst depends.  Useful for determining which
129     *  inst must actually be committed before a dependent inst
130     *  can call initiateAcc */
131    InstSeqNum execSeqNumToWaitFor(MinorDynInstPtr inst,
132        ThreadContext *thread_context);
133
134    /** Can this instruction be issued.  Are any of its source registers
135     *  due to be written by other marked-up instructions in flight */
136    bool canInstIssue(MinorDynInstPtr inst,
137        const std::vector<Cycles> *src_reg_relative_latencies,
138        const std::vector<bool> *cant_forward_from_fu_indices,
139        Cycles now, ThreadContext *thread_context);
140
141    /** MinorTraceIF interface */
142    void minorTrace() const;
143};
144
145}
146
147#endif /* __CPU_MINOR_SCOREBOARD_HH__ */
148