gem5  v20.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
store_set.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2004-2005 The Regents of The University of Michigan
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions are
7  * met: redistributions of source code must retain the above copyright
8  * notice, this list of conditions and the following disclaimer;
9  * redistributions in binary form must reproduce the above copyright
10  * notice, this list of conditions and the following disclaimer in the
11  * documentation and/or other materials provided with the distribution;
12  * neither the name of the copyright holders nor the names of its
13  * contributors may be used to endorse or promote products derived from
14  * this software without specific prior written permission.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27  */
28 
29 #ifndef __CPU_O3_STORE_SET_HH__
30 #define __CPU_O3_STORE_SET_HH__
31 
32 #include <list>
33 #include <map>
34 #include <utility>
35 #include <vector>
36 
37 #include "base/types.hh"
38 #include "cpu/inst_seq.hh"
39 
40 struct ltseqnum {
41  bool operator()(const InstSeqNum &lhs, const InstSeqNum &rhs) const
42  {
43  return lhs > rhs;
44  }
45 };
46 
54 class StoreSet
55 {
56  public:
57  typedef unsigned SSID;
58 
59  public:
61  StoreSet() { };
62 
64  StoreSet(uint64_t clear_period, int SSIT_size, int LFST_size);
65 
67  ~StoreSet();
68 
70  void init(uint64_t clear_period, int SSIT_size, int LFST_size);
71 
74  void violation(Addr store_PC, Addr load_PC);
75 
80  void checkClear();
81 
85  void insertLoad(Addr load_PC, InstSeqNum load_seq_num);
86 
89  void insertStore(Addr store_PC, InstSeqNum store_seq_num, ThreadID tid);
90 
95  InstSeqNum checkInst(Addr PC);
96 
98  void issued(Addr issued_PC, InstSeqNum issued_seq_num, bool is_store);
99 
101  void squash(InstSeqNum squashed_num, ThreadID tid);
102 
104  void clear();
105 
107  void dump();
108 
109  private:
111  inline int calcIndex(Addr PC)
112  { return (PC >> offsetBits) & indexMask; }
113 
115  inline SSID calcSSID(Addr PC)
116  { return ((PC ^ (PC >> 10)) % LFSTSize); }
117 
120 
123 
126 
129 
133  std::map<InstSeqNum, int, ltseqnum> storeList;
134 
135  typedef std::map<InstSeqNum, int, ltseqnum>::iterator SeqNumMapIt;
136 
140  uint64_t clearPeriod;
141 
143  int SSITSize;
144 
146  int LFSTSize;
147 
150 
151  // HACK: Hardcoded for now.
153 
156 };
157 
158 #endif // __CPU_O3_STORE_SET_HH__
Implements a store set predictor for determining if memory instructions are dependent upon each other...
Definition: store_set.hh:54
SSID calcSSID(Addr PC)
Calculates a Store Set ID based on the PC.
Definition: store_set.hh:115
std::vector< bool > validSSIT
Bit vector to tell if the SSIT has a valid entry.
Definition: store_set.hh:122
int calcIndex(Addr PC)
Calculates the index into the SSIT based on the PC.
Definition: store_set.hh:111
std::map< InstSeqNum, int, ltseqnum >::iterator SeqNumMapIt
Definition: store_set.hh:135
int indexMask
Mask to obtain the index.
Definition: store_set.hh:149
std::vector< InstSeqNum > LFST
Last Fetched Store Table.
Definition: store_set.hh:125
StoreSet()
Default constructor.
Definition: store_set.hh:61
uint64_t clearPeriod
Number of loads/stores to process before wiping predictor so all entries don&#39;t get saturated...
Definition: store_set.hh:140
uint64_t InstSeqNum
Definition: inst_seq.hh:37
int LFSTSize
Last Fetched Store Table size, in entries.
Definition: store_set.hh:146
unsigned SSID
Definition: store_set.hh:57
bool operator()(const InstSeqNum &lhs, const InstSeqNum &rhs) const
Definition: store_set.hh:41
std::map< InstSeqNum, int, ltseqnum > storeList
Map of stores that have been inserted into the store set, but not yet issued or squashed.
Definition: store_set.hh:133
Defines global host-dependent types: Counter, Tick, and (indirectly) {int,uint}{8,16,32,64}_t.
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:140
int memOpsPred
Number of memory operations predicted since last clear of predictor.
Definition: store_set.hh:155
int SSITSize
Store Set ID Table size, in entries.
Definition: store_set.hh:143
int16_t ThreadID
Thread index/ID type.
Definition: types.hh:225
std::vector< SSID > SSIT
The Store Set ID Table.
Definition: store_set.hh:119
std::vector< bool > validLFST
Bit vector to tell if the LFST has a valid entry.
Definition: store_set.hh:128
int offsetBits
Definition: store_set.hh:152
void dump()
Dump all statistics data to the registered outputs.
Definition: statistics.cc:560
const FlagsType init
This Stat is Initialized.
Definition: info.hh:45

Generated on Thu May 28 2020 16:21:31 for gem5 by doxygen 1.8.13