gem5  v21.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-2020 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 namespace Compressor {
53 
54 class FPCD : public DictionaryCompressor<uint32_t>
55 {
56  private:
58 
60  static constexpr int prefixSize = 4;
61 
63  static constexpr int previousIndex = 1;
64 
66  static constexpr int penultimateIndex = 0;
67 
68  // Declaration of all possible patterns, from lowest to highest sizes.
69  // Penultimate is prioritized over previous to reduce the ripple effect
70  // of propagating values during decompression
71  class PatternZZZZ;
72  class PatternFFFF;
74  class PatternMMMMPrevious;
75  class PatternZZZX;
76  class PatternXZZZ;
77  class PatternRRRR;
79  class PatternMMMXPrevious;
80  class PatternZZXX;
81  class PatternZXZX;
82  class PatternFFXX;
83  class PatternXXZZ;
85  class PatternMMXXPrevious;
86  class PatternXXXX;
87 
95  typedef enum {
99  } PatternNumber;
100 
105  using PatternFactory =
106  Factory<PatternZZZZ, PatternFFFF, PatternMMMMPrevious,
107  PatternMMMMPenultimate, PatternZZZX, PatternXZZZ,
108  PatternRRRR, PatternMMMXPrevious, PatternMMMXPenultimate,
109  PatternZZXX, PatternZXZX, PatternFFXX, PatternXXZZ,
111 
112  uint64_t getNumPatterns() const override { return NUM_PATTERNS; }
113 
114  std::string
115  getName(int number) const override
116  {
117  static std::map<PatternNumber, std::string> pattern_names = {
118  {ZZZZ, "ZZZZ"}, {FFFF, "FFFF"},
119  {MMMMPenultimate, "MMMMPenultimate"},
120  {MMMMPrevious, "MMMMPrevious"}, {ZZZX, "ZZZX"},
121  {XZZZ, "XZZZ"}, {RRRR, "RRRR"},
122  {MMMXPenultimate, "MMMXPenultimate"},
123  {MMMXPrevious, "MMMXPrevious"},
124  {ZZXX, "ZZXX"},
125  {ZXZX, "ZXZX"}, {FFXX, "FFXX"}, {XXZZ, "XXZZ"},
126  {MMXXPenultimate, "MMXXPenultimate"},
127  {MMXXPrevious, "MMXXPrevious"}, {XXXX, "XXXX"}
128  };
129 
130  return pattern_names[(PatternNumber)number];
131  };
132 
133  std::unique_ptr<Pattern>
134  getPattern(const DictionaryEntry& bytes, const DictionaryEntry& dict_bytes,
135  const int match_location) const override
136  {
137  return PatternFactory::getPattern(bytes, dict_bytes, match_location);
138  }
139 
140  void addToDictionary(DictionaryEntry data) override;
141 
142  public:
143  typedef FPCDParams Params;
144  FPCD(const Params &p);
145  ~FPCD() = default;
146 };
147 
148 class FPCD::PatternZZZZ : public MaskedValuePattern<0, 0xFFFFFFFF>
149 {
150  public:
151  PatternZZZZ(const DictionaryEntry bytes, const int match_location)
152  : MaskedValuePattern<0, 0xFFFFFFFF>(ZZZZ, 0x0, prefixSize,
153  match_location, bytes, true)
154  {
155  }
156 };
157 
158 class FPCD::PatternFFFF : public MaskedValuePattern<0xFFFFFFFF, 0xFFFFFFFF>
159 {
160  public:
161  PatternFFFF(const DictionaryEntry bytes, const int match_location)
162  : MaskedValuePattern<0xFFFFFFFF, 0xFFFFFFFF>(FFFF, 0x1,
163  prefixSize, match_location, bytes, true)
164  {
165  }
166 };
167 
169  : public LocatedMaskedPattern<0xFFFFFFFF, previousIndex>
170 {
171  public:
173  const int match_location)
174  : LocatedMaskedPattern<0xFFFFFFFF, previousIndex>(MMMMPrevious,
175  0x2, prefixSize, match_location, bytes)
176  {
177  }
178 };
179 
181  : public LocatedMaskedPattern<0xFFFFFFFF, penultimateIndex>
182 {
183  public:
185  const int match_location)
186  : LocatedMaskedPattern<0xFFFFFFFF, penultimateIndex>(
187  MMMMPenultimate, 0x3, prefixSize, match_location, bytes)
188  {
189  }
190 };
191 
192 class FPCD::PatternZZZX : public MaskedValuePattern<0, 0xFFFFFF00>
193 {
194  public:
195  PatternZZZX(const DictionaryEntry bytes, const int match_location)
196  : MaskedValuePattern<0, 0xFFFFFF00>(ZZZX, 0x4, prefixSize,
197  match_location, bytes, true)
198  {
199  }
200 };
201 
202 class FPCD::PatternXZZZ : public MaskedValuePattern<0, 0x00FFFFFF>
203 {
204  public:
205  PatternXZZZ(const DictionaryEntry bytes, const int match_location)
206  : MaskedValuePattern<0, 0x00FFFFFF>(XZZZ, 0x5, prefixSize,
207  match_location, bytes, true)
208  {
209  }
210 };
211 
212 class FPCD::PatternRRRR : public RepeatedValuePattern<uint8_t>
213 {
214  public:
215  PatternRRRR(const DictionaryEntry bytes, const int match_location)
216  : RepeatedValuePattern<uint8_t>(RRRR, 0x6, prefixSize,
217  match_location, bytes, true)
218  {
219  }
220 };
221 
223  : public LocatedMaskedPattern<0xFFFFFF00, previousIndex>
224 {
225  public:
227  const int match_location)
228  : LocatedMaskedPattern<0xFFFFFF00, previousIndex>(MMMXPrevious,
229  0x7, prefixSize, match_location, bytes)
230  {
231  }
232 };
233 
235  : public LocatedMaskedPattern<0xFFFFFF00, penultimateIndex>
236 {
237  public:
239  const int match_location)
240  : LocatedMaskedPattern<0xFFFFFF00, penultimateIndex>(
241  MMMXPenultimate, 0x8, prefixSize, match_location, bytes)
242  {
243  }
244 };
245 
246 class FPCD::PatternZZXX : public MaskedValuePattern<0, 0xFFFF0000>
247 {
248  public:
249  PatternZZXX(const DictionaryEntry bytes, const int match_location)
250  : MaskedValuePattern<0, 0xFFFF0000>(ZZXX, 0x9, prefixSize,
251  match_location, bytes, true)
252  {
253  }
254 };
255 
256 class FPCD::PatternZXZX : public MaskedValuePattern<0, 0xFF00FF00>
257 {
258  public:
259  PatternZXZX(const DictionaryEntry bytes, const int match_location)
260  : MaskedValuePattern<0, 0xFF00FF00>(ZXZX, 0xA, prefixSize,
261  match_location, bytes, true)
262  {
263  }
264 };
265 
266 class FPCD::PatternFFXX : public MaskedValuePattern<0xFFFFFFFF, 0xFFFF0000>
267 {
268  public:
269  PatternFFXX(const DictionaryEntry bytes, const int match_location)
270  : MaskedValuePattern<0xFFFFFFFF, 0xFFFF0000>(FFXX, 0xB,
271  prefixSize, match_location, bytes, true)
272  {
273  }
274 };
275 
276 class FPCD::PatternXXZZ : public MaskedValuePattern<0, 0x0000FFFF>
277 {
278  public:
279  PatternXXZZ(const DictionaryEntry bytes, const int match_location)
280  : MaskedValuePattern<0, 0x0000FFFF>(XXZZ, 0xC, prefixSize,
281  match_location, bytes, true)
282  {
283  }
284 };
285 
287  : public LocatedMaskedPattern<0xFFFF0000, previousIndex>
288 {
289  public:
291  const int match_location)
292  : LocatedMaskedPattern<0xFFFF0000, previousIndex>(MMXXPrevious,
293  0xD, prefixSize, match_location, bytes)
294  {
295  }
296 };
297 
299  : public LocatedMaskedPattern<0xFFFF0000, penultimateIndex>
300 {
301  public:
303  const int match_location)
304  : LocatedMaskedPattern<0xFFFF0000, penultimateIndex>(
305  MMXXPenultimate, 0xE, prefixSize, match_location, bytes)
306  {
307  }
308 };
309 
310 class FPCD::PatternXXXX : public UncompressedPattern
311 {
312  public:
313  PatternXXXX(const DictionaryEntry bytes, const int match_location)
314  : UncompressedPattern(XXXX, 0xF, prefixSize, match_location,
315  bytes)
316  {
317  }
318 };
319 
320 } // namespace Compressor
321 
322 #endif //__MEM_CACHE_COMPRESSORS_FPCD_HH__
Compressor::FPCD::getName
std::string getName(int number) const override
Get meta-name assigned to the given pattern.
Definition: fpcd.hh:115
Compressor::FPCD::addToDictionary
void addToDictionary(DictionaryEntry data) override
Definition: fpcd.cc:46
Compressor::FPCD::PatternZZZZ
Definition: fpcd.hh:148
data
const char data[]
Definition: circlebuf.test.cc:47
Compressor::FPCD::PatternMMMMPrevious
Definition: fpcd.hh:168
Compressor::FPCD::ZZZZ
@ ZZZZ
Definition: fpcd.hh:96
Compressor::FPCD::FFXX
@ FFXX
Definition: fpcd.hh:97
Compressor::FPCD::PatternMMMXPrevious
Definition: fpcd.hh:222
Compressor::FPCD::PatternFFXX::PatternFFXX
PatternFFXX(const DictionaryEntry bytes, const int match_location)
Definition: fpcd.hh:269
Compressor::FPCD::PatternXZZZ
Definition: fpcd.hh:202
Compressor::FPCD::PatternXXZZ
Definition: fpcd.hh:276
Compressor::FPCD::ZZZX
@ ZZZX
Definition: fpcd.hh:96
Compressor::FPCD::PatternMMMXPenultimate::PatternMMMXPenultimate
PatternMMMXPenultimate(const DictionaryEntry bytes, const int match_location)
Definition: fpcd.hh:238
Compressor
Definition: base.cc:47
Compressor::FPCD::PatternRRRR
Definition: fpcd.hh:212
Compressor::FPCD::PatternMMXXPenultimate::PatternMMXXPenultimate
PatternMMXXPenultimate(const DictionaryEntry bytes, const int match_location)
Definition: fpcd.hh:302
Compressor::FPCD::MMMMPrevious
@ MMMMPrevious
Definition: fpcd.hh:96
Compressor::FPCD::PatternFactory
Factory< PatternZZZZ, PatternFFFF, PatternMMMMPrevious, PatternMMMMPenultimate, PatternZZZX, PatternXZZZ, PatternRRRR, PatternMMMXPrevious, PatternMMMXPenultimate, PatternZZXX, PatternZXZX, PatternFFXX, PatternXXZZ, PatternMMXXPrevious, PatternMMXXPenultimate, PatternXXXX > PatternFactory
Convenience factory declaration.
Definition: fpcd.hh:110
Compressor::FPCD::PatternXXZZ::PatternXXZZ
PatternXXZZ(const DictionaryEntry bytes, const int match_location)
Definition: fpcd.hh:279
Compressor::FPCD::PatternMMMMPrevious::PatternMMMMPrevious
PatternMMMMPrevious(const DictionaryEntry bytes, const int match_location)
Definition: fpcd.hh:172
Compressor::FPCD::MMMXPrevious
@ MMMXPrevious
Definition: fpcd.hh:97
Compressor::FPCD::~FPCD
~FPCD()=default
Compressor::FPCD::MMXXPenultimate
@ MMXXPenultimate
Definition: fpcd.hh:98
Compressor::FPCD::MMMXPenultimate
@ MMMXPenultimate
Definition: fpcd.hh:97
Compressor::FPCD::penultimateIndex
static constexpr int penultimateIndex
Index of the penultimate dictionary entry.
Definition: fpcd.hh:66
Compressor::FPCD::MMMMPenultimate
@ MMMMPenultimate
Definition: fpcd.hh:96
Compressor::FPCD::PatternXXXX::PatternXXXX
PatternXXXX(const DictionaryEntry bytes, const int match_location)
Definition: fpcd.hh:313
Compressor::FPCD::PatternNumber
PatternNumber
The patterns proposed in the paper.
Definition: fpcd.hh:95
Compressor::FPCD::ZXZX
@ ZXZX
Definition: fpcd.hh:97
dictionary_compressor.hh
Compressor::FPCD::FFFF
@ FFFF
Definition: fpcd.hh:96
Compressor::FPCD::NUM_PATTERNS
@ NUM_PATTERNS
Definition: fpcd.hh:98
Compressor::FPCD::getNumPatterns
uint64_t getNumPatterns() const override
Trick function to get the number of patterns.
Definition: fpcd.hh:112
Compressor::FPCD::XZZZ
@ XZZZ
Definition: fpcd.hh:96
Compressor::FPCD::PatternZZXX
Definition: fpcd.hh:246
Compressor::FPCD::PatternMMXXPrevious
Definition: fpcd.hh:286
Compressor::FPCD::PatternZZZX::PatternZZZX
PatternZZZX(const DictionaryEntry bytes, const int match_location)
Definition: fpcd.hh:195
Compressor::FPCD::prefixSize
static constexpr int prefixSize
Number of bits in a FPCD pattern prefix.
Definition: fpcd.hh:60
Compressor::DictionaryCompressor
A template version of the dictionary compressor that allows to choose the dictionary size.
Definition: dictionary_compressor.hh:113
Compressor::FPCD::PatternMMMMPenultimate
Definition: fpcd.hh:180
Compressor::FPCD::PatternXXXX
Definition: fpcd.hh:310
Compressor::FPCD::PatternMMMMPenultimate::PatternMMMMPenultimate
PatternMMMMPenultimate(const DictionaryEntry bytes, const int match_location)
Definition: fpcd.hh:184
Compressor::FPCD::ZZXX
@ ZZXX
Definition: fpcd.hh:97
Compressor::FPCD::PatternMMXXPenultimate
Definition: fpcd.hh:298
Compressor::FPCD::PatternZZZX
Definition: fpcd.hh:192
Compressor::FPCD::PatternZXZX
Definition: fpcd.hh:256
Compressor::FPCD::PatternZZZZ::PatternZZZZ
PatternZZZZ(const DictionaryEntry bytes, const int match_location)
Definition: fpcd.hh:151
Compressor::Base::Params
BaseCacheCompressorParams Params
Definition: base.hh:196
Compressor::FPCD::PatternRRRR::PatternRRRR
PatternRRRR(const DictionaryEntry bytes, const int match_location)
Definition: fpcd.hh:215
Compressor::FPCD::XXXX
@ XXXX
Definition: fpcd.hh:98
Compressor::FPCD::MMXXPrevious
@ MMXXPrevious
Definition: fpcd.hh:98
Compressor::FPCD::PatternZXZX::PatternZXZX
PatternZXZX(const DictionaryEntry bytes, const int match_location)
Definition: fpcd.hh:259
Compressor::FPCD::DictionaryEntry
DictionaryCompressor< uint32_t >::DictionaryEntry DictionaryEntry
Definition: fpcd.hh:57
Compressor::FPCD::PatternFFFF::PatternFFFF
PatternFFFF(const DictionaryEntry bytes, const int match_location)
Definition: fpcd.hh:161
Compressor::FPCD::previousIndex
static constexpr int previousIndex
Index of the previous dictionary entry.
Definition: fpcd.hh:63
types.hh
Compressor::FPCD::RRRR
@ RRRR
Definition: fpcd.hh:96
Compressor::FPCD::PatternZZXX::PatternZZXX
PatternZZXX(const DictionaryEntry bytes, const int match_location)
Definition: fpcd.hh:249
Compressor::FPCD::PatternXZZZ::PatternXZZZ
PatternXZZZ(const DictionaryEntry bytes, const int match_location)
Definition: fpcd.hh:205
Compressor::FPCD::PatternMMMXPrevious::PatternMMMXPrevious
PatternMMMXPrevious(const DictionaryEntry bytes, const int match_location)
Definition: fpcd.hh:226
Compressor::FPCD
Definition: fpcd.hh:54
Compressor::FPCD::FPCD
FPCD(const Params &p)
Definition: fpcd.cc:40
Compressor::FPCD::PatternMMXXPrevious::PatternMMXXPrevious
PatternMMXXPrevious(const DictionaryEntry bytes, const int match_location)
Definition: fpcd.hh:290
MipsISA::p
Bitfield< 0 > p
Definition: pra_constants.hh:323
Compressor::FPCD::PatternMMMXPenultimate
Definition: fpcd.hh:234
Compressor::FPCD::PatternFFXX
Definition: fpcd.hh:266
Compressor::FPCD::Params
FPCDParams Params
Definition: fpcd.hh:143
Compressor::FPCD::getPattern
std::unique_ptr< Pattern > getPattern(const DictionaryEntry &bytes, const DictionaryEntry &dict_bytes, const int match_location) const override
Definition: fpcd.hh:134
Compressor::FPCD::XXZZ
@ XXZZ
Definition: fpcd.hh:97
Compressor::FPCD::PatternFFFF
Definition: fpcd.hh:158

Generated on Tue Mar 23 2021 19:41:27 for gem5 by doxygen 1.8.17