gem5  v20.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
fpcd.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2019 Inria
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 
39 #ifndef __MEM_CACHE_COMPRESSORS_FPCD_HH__
40 #define __MEM_CACHE_COMPRESSORS_FPCD_HH__
41 
42 #include <cstdint>
43 #include <map>
44 #include <memory>
45 #include <string>
46 
47 #include "base/types.hh"
49 
50 struct FPCDParams;
51 
52 class FPCD : public DictionaryCompressor<uint32_t>
53 {
54  private:
56 
58  static constexpr int prefixSize = 4;
59 
61  static constexpr int previousIndex = 1;
62 
64  static constexpr int penultimateIndex = 0;
65 
66  // Declaration of all possible patterns, from lowest to highest sizes.
67  // Penultimate is prioritized over previous to reduce the ripple effect
68  // of propagating values during decompression
69  class PatternZZZZ;
70  class PatternFFFF;
72  class PatternMMMMPrevious;
73  class PatternZZZX;
74  class PatternXZZZ;
75  class PatternRRRR;
77  class PatternMMMXPrevious;
78  class PatternZZXX;
79  class PatternZXZX;
80  class PatternFFXX;
81  class PatternXXZZ;
83  class PatternMMXXPrevious;
84  class PatternXXXX;
85 
93  typedef enum {
97  } PatternNumber;
98 
103  using PatternFactory =
109 
110  uint64_t getNumPatterns() const override { return NUM_PATTERNS; }
111 
112  std::string
113  getName(int number) const override
114  {
115  static std::map<PatternNumber, std::string> pattern_names = {
116  {ZZZZ, "ZZZZ"}, {FFFF, "FFFF"},
117  {MMMMPenultimate, "MMMMPenultimate"},
118  {MMMMPrevious, "MMMMPrevious"}, {ZZZX, "ZZZX"},
119  {XZZZ, "XZZZ"}, {RRRR, "RRRR"},
120  {MMMXPenultimate, "MMMXPenultimate"},
121  {MMMXPrevious, "MMMXPrevious"},
122  {ZZXX, "ZZXX"},
123  {ZXZX, "ZXZX"}, {FFXX, "FFXX"}, {XXZZ, "XXZZ"},
124  {MMXXPenultimate, "MMXXPenultimate"},
125  {MMXXPrevious, "MMXXPrevious"}, {XXXX, "XXXX"}
126  };
127 
128  return pattern_names[(PatternNumber)number];
129  };
130 
131  std::unique_ptr<Pattern>
132  getPattern(const DictionaryEntry& bytes, const DictionaryEntry& dict_bytes,
133  const int match_location) const override
134  {
135  return PatternFactory::getPattern(bytes, dict_bytes, match_location);
136  }
137 
138  void addToDictionary(DictionaryEntry data) override;
139 
140  std::unique_ptr<BaseCacheCompressor::CompressionData> compress(
141  const uint64_t* data, Cycles& comp_lat, Cycles& decomp_lat) override;
142 
143  public:
144  typedef FPCDParams Params;
145  FPCD(const Params *p);
146  ~FPCD() = default;
147 };
148 
149 class FPCD::PatternZZZZ : public MaskedValuePattern<0, 0xFFFFFFFF>
150 {
151  public:
152  PatternZZZZ(const DictionaryEntry bytes, const int match_location)
153  : MaskedValuePattern<0, 0xFFFFFFFF>(ZZZZ, 0x0, prefixSize,
154  match_location, bytes, true)
155  {
156  }
157 };
158 
159 class FPCD::PatternFFFF : public MaskedValuePattern<0xFFFFFFFF, 0xFFFFFFFF>
160 {
161  public:
162  PatternFFFF(const DictionaryEntry bytes, const int match_location)
163  : MaskedValuePattern<0xFFFFFFFF, 0xFFFFFFFF>(FFFF, 0x1,
164  prefixSize, match_location, bytes, true)
165  {
166  }
167 };
168 
170  : public LocatedMaskedPattern<0xFFFFFFFF, previousIndex>
171 {
172  public:
174  const int match_location)
175  : LocatedMaskedPattern<0xFFFFFFFF, previousIndex>(MMMMPrevious,
176  0x2, prefixSize, match_location, bytes)
177  {
178  }
179 };
180 
182  : public LocatedMaskedPattern<0xFFFFFFFF, penultimateIndex>
183 {
184  public:
186  const int match_location)
187  : LocatedMaskedPattern<0xFFFFFFFF, penultimateIndex>(
188  MMMMPenultimate, 0x3, prefixSize, match_location, bytes)
189  {
190  }
191 };
192 
193 class FPCD::PatternZZZX : public MaskedValuePattern<0, 0xFFFFFF00>
194 {
195  public:
196  PatternZZZX(const DictionaryEntry bytes, const int match_location)
197  : MaskedValuePattern<0, 0xFFFFFF00>(ZZZX, 0x4, prefixSize,
198  match_location, bytes, true)
199  {
200  }
201 };
202 
203 class FPCD::PatternXZZZ : public MaskedValuePattern<0, 0x00FFFFFF>
204 {
205  public:
206  PatternXZZZ(const DictionaryEntry bytes, const int match_location)
207  : MaskedValuePattern<0, 0x00FFFFFF>(XZZZ, 0x5, prefixSize,
208  match_location, bytes, true)
209  {
210  }
211 };
212 
213 class FPCD::PatternRRRR : public RepeatedValuePattern<uint8_t>
214 {
215  public:
216  PatternRRRR(const DictionaryEntry bytes, const int match_location)
217  : RepeatedValuePattern<uint8_t>(RRRR, 0x6, prefixSize,
218  match_location, bytes, true)
219  {
220  }
221 };
222 
224  : public LocatedMaskedPattern<0xFFFFFF00, previousIndex>
225 {
226  public:
228  const int match_location)
229  : LocatedMaskedPattern<0xFFFFFF00, previousIndex>(MMMXPrevious,
230  0x7, prefixSize, match_location, bytes)
231  {
232  }
233 };
234 
236  : public LocatedMaskedPattern<0xFFFFFF00, penultimateIndex>
237 {
238  public:
240  const int match_location)
241  : LocatedMaskedPattern<0xFFFFFF00, penultimateIndex>(
242  MMMXPenultimate, 0x8, prefixSize, match_location, bytes)
243  {
244  }
245 };
246 
247 class FPCD::PatternZZXX : public MaskedValuePattern<0, 0xFFFF0000>
248 {
249  public:
250  PatternZZXX(const DictionaryEntry bytes, const int match_location)
251  : MaskedValuePattern<0, 0xFFFF0000>(ZZXX, 0x9, prefixSize,
252  match_location, bytes, true)
253  {
254  }
255 };
256 
257 class FPCD::PatternZXZX : public MaskedValuePattern<0, 0xFF00FF00>
258 {
259  public:
260  PatternZXZX(const DictionaryEntry bytes, const int match_location)
261  : MaskedValuePattern<0, 0xFF00FF00>(ZXZX, 0xA, prefixSize,
262  match_location, bytes, true)
263  {
264  }
265 };
266 
267 class FPCD::PatternFFXX : public MaskedValuePattern<0xFFFFFFFF, 0xFFFF0000>
268 {
269  public:
270  PatternFFXX(const DictionaryEntry bytes, const int match_location)
271  : MaskedValuePattern<0xFFFFFFFF, 0xFFFF0000>(FFXX, 0xB,
272  prefixSize, match_location, bytes, true)
273  {
274  }
275 };
276 
277 class FPCD::PatternXXZZ : public MaskedValuePattern<0, 0x0000FFFF>
278 {
279  public:
280  PatternXXZZ(const DictionaryEntry bytes, const int match_location)
281  : MaskedValuePattern<0, 0x0000FFFF>(XXZZ, 0xC, prefixSize,
282  match_location, bytes, true)
283  {
284  }
285 };
286 
288  : public LocatedMaskedPattern<0xFFFF0000, previousIndex>
289 {
290  public:
292  const int match_location)
293  : LocatedMaskedPattern<0xFFFF0000, previousIndex>(MMXXPrevious,
294  0xD, prefixSize, match_location, bytes)
295  {
296  }
297 };
298 
300  : public LocatedMaskedPattern<0xFFFF0000, penultimateIndex>
301 {
302  public:
304  const int match_location)
305  : LocatedMaskedPattern<0xFFFF0000, penultimateIndex>(
306  MMXXPenultimate, 0xE, prefixSize, match_location, bytes)
307  {
308  }
309 };
310 
311 class FPCD::PatternXXXX : public UncompressedPattern
312 {
313  public:
314  PatternXXXX(const DictionaryEntry bytes, const int match_location)
315  : UncompressedPattern(XXXX, 0xF, prefixSize, match_location,
316  bytes)
317  {
318  }
319 };
320 
321 #endif //__MEM_CACHE_COMPRESSORS_FPCD_HH__
Definition: fpcd.hh:52
PatternFFXX(const DictionaryEntry bytes, const int match_location)
Definition: fpcd.hh:270
Cycles is a wrapper class for representing cycle counts, i.e.
Definition: types.hh:81
std::string getName(int number) const override
Get meta-name assigned to the given pattern.
Definition: fpcd.hh:113
uint64_t getNumPatterns() const override
Trick function to get the number of patterns.
Definition: fpcd.hh:110
std::unique_ptr< BaseCacheCompressor::CompressionData > compress(const uint64_t *data, Cycles &comp_lat, Cycles &decomp_lat) override
Apply the compression process to the cache line.
Definition: fpcd.cc:56
DictionaryCompressor< uint32_t >::DictionaryEntry DictionaryEntry
Definition: fpcd.hh:55
PatternXXXX(const DictionaryEntry bytes, const int match_location)
Definition: fpcd.hh:314
PatternMMMMPenultimate(const DictionaryEntry bytes, const int match_location)
Definition: fpcd.hh:185
PatternZZZX(const DictionaryEntry bytes, const int match_location)
Definition: fpcd.hh:196
PatternMMXXPrevious(const DictionaryEntry bytes, const int match_location)
Definition: fpcd.hh:291
static constexpr int previousIndex
Index of the previous dictionary entry.
Definition: fpcd.hh:61
PatternMMMMPrevious(const DictionaryEntry bytes, const int match_location)
Definition: fpcd.hh:173
PatternMMXXPenultimate(const DictionaryEntry bytes, const int match_location)
Definition: fpcd.hh:303
static constexpr int prefixSize
Number of bits in a FPCD pattern prefix.
Definition: fpcd.hh:58
PatternXXZZ(const DictionaryEntry bytes, const int match_location)
Definition: fpcd.hh:280
Factory< PatternZZZZ, PatternFFFF, PatternMMMMPrevious, PatternMMMMPenultimate, PatternZZZX, PatternXZZZ, PatternRRRR, PatternMMMXPrevious, PatternMMMXPenultimate, PatternZZXX, PatternZXZX, PatternFFXX, PatternXXZZ, PatternMMXXPrevious, PatternMMXXPenultimate, PatternXXXX > PatternFactory
Convenience factory declaration.
Definition: fpcd.hh:108
PatternRRRR(const DictionaryEntry bytes, const int match_location)
Definition: fpcd.hh:216
PatternNumber
The patterns proposed in the paper.
Definition: fpcd.hh:93
PatternZXZX(const DictionaryEntry bytes, const int match_location)
Definition: fpcd.hh:260
std::unique_ptr< Pattern > getPattern(const DictionaryEntry &bytes, const DictionaryEntry &dict_bytes, const int match_location) const override
Definition: fpcd.hh:132
FPCD(const Params *p)
Definition: fpcd.cc:38
~FPCD()=default
Defines global host-dependent types: Counter, Tick, and (indirectly) {int,uint}{8,16,32,64}_t.
PatternFFFF(const DictionaryEntry bytes, const int match_location)
Definition: fpcd.hh:162
PatternZZZZ(const DictionaryEntry bytes, const int match_location)
Definition: fpcd.hh:152
PatternMMMXPrevious(const DictionaryEntry bytes, const int match_location)
Definition: fpcd.hh:227
PatternMMMXPenultimate(const DictionaryEntry bytes, const int match_location)
Definition: fpcd.hh:239
Definition of a dictionary based cache compressor.
void addToDictionary(DictionaryEntry data) override
Definition: fpcd.cc:44
static constexpr int penultimateIndex
Index of the penultimate dictionary entry.
Definition: fpcd.hh:64
PatternZZXX(const DictionaryEntry bytes, const int match_location)
Definition: fpcd.hh:250
PatternXZZZ(const DictionaryEntry bytes, const int match_location)
Definition: fpcd.hh:206
FPCDParams Params
Definition: fpcd.hh:144
Bitfield< 0 > p
const char data[]
A template version of the dictionary compressor that allows to choose the dictionary size...

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