gem5  v21.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
fpc.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2018-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 
35 #ifndef __MEM_CACHE_COMPRESSORS_FPC_HH__
36 #define __MEM_CACHE_COMPRESSORS_FPC_HH__
37 
38 #include <cstdint>
39 #include <map>
40 #include <memory>
41 #include <string>
42 #include <type_traits>
43 #include <vector>
44 
45 #include "base/bitfield.hh"
46 #include "base/types.hh"
48 
49 struct FPCParams;
50 
51 namespace Compressor {
52 
53 class FPC : public DictionaryCompressor<uint32_t>
54 {
55  private:
57 
62  class FPCCompData;
63 
64  // Declaration of all possible patterns
65  class ZeroRun;
66  class SignExtended4Bits;
67  class SignExtended1Byte;
69  class ZeroPaddedHalfword;
71  class RepBytes;
72  class Uncompressed;
73 
78  typedef enum {
83  } PatternNumber;
84 
89  const int zeroRunSizeBits;
90 
91  uint64_t getNumPatterns() const override { return NUM_PATTERNS; }
92 
93  std::string
94  getName(int number) const override
95  {
96  static std::map<int, std::string> patternNames = {
97  {ZERO_RUN, "ZERO_RUN"},
98  {SIGN_EXTENDED_4_BITS, "SignExtended4Bits"},
99  {SIGN_EXTENDED_1_BYTE, "SignExtended1Byte"},
100  {SIGN_EXTENDED_HALFWORD, "SignExtendedHalfword"},
101  {ZERO_PADDED_HALFWORD, "ZeroPaddedHalfword"},
102  {SIGN_EXTENDED_TWO_HALFWORDS, "SignExtendedTwoHalfwords"},
103  {REP_BYTES, "RepBytes"},
104  {UNCOMPRESSED, "Uncompressed"}
105  };
106 
107  return patternNames[number];
108  };
109 
110  std::unique_ptr<Pattern> getPattern(
111  const DictionaryEntry& bytes,
112  const DictionaryEntry& dict_bytes,
113  const int match_location) const override
114  {
115  using PatternFactory = Factory<ZeroRun, SignExtended4Bits,
118  return PatternFactory::getPattern(bytes, dict_bytes, match_location);
119  }
120 
121  void addToDictionary(const DictionaryEntry data) override;
122 
123  std::unique_ptr<DictionaryCompressor::CompData>
124  instantiateDictionaryCompData() const override;
125 
126  public:
127  typedef FPCParams Params;
128  FPC(const Params &p);
129  ~FPC() = default;
130 };
131 
132 class FPC::FPCCompData : public DictionaryCompressor<uint32_t>::CompData
133 {
134  protected:
139  const int zeroRunSizeBits;
140 
141  public:
143  ~FPCCompData() = default;
144 
145  void addEntry(std::unique_ptr<Pattern> pattern) override;
146 };
147 
148 // Pattern implementations
149 
150 class FPC::ZeroRun : public MaskedValuePattern<0, 0xFFFFFFFF>
151 {
152  private:
155 
163 
164  public:
165  ZeroRun(const DictionaryEntry bytes, const int match_location)
166  : MaskedValuePattern<0, 0xFFFFFFFF>(ZERO_RUN, ZERO_RUN, 3, -1, bytes,
167  false),
168  _runLength(0), _realSize(0)
169  {
170  }
171 
172  std::size_t
173  getSizeBits() const override
174  {
175  return _realSize;
176  }
177 
183  int getRunLength() const { return _runLength; }
184 
190  void setRunLength(int length) { _runLength = length; }
191 
200  void setRealSize(int size) { _realSize = length + size; }
201 };
202 
203 class FPC::SignExtended4Bits : public SignExtendedPattern<4>
204 {
205  public:
206  SignExtended4Bits(const DictionaryEntry bytes, const int match_location)
207  : SignExtendedPattern<4>(SIGN_EXTENDED_4_BITS, SIGN_EXTENDED_4_BITS, 3,
208  bytes)
209  {
210  }
211 };
212 
213 class FPC::SignExtended1Byte : public SignExtendedPattern<8>
214 {
215  public:
216  SignExtended1Byte(const DictionaryEntry bytes, const int match_location)
217  : SignExtendedPattern<8>(SIGN_EXTENDED_1_BYTE, SIGN_EXTENDED_1_BYTE, 3,
218  bytes)
219  {
220  }
221 };
222 
223 class FPC::SignExtendedHalfword : public SignExtendedPattern<16>
224 {
225  public:
226  SignExtendedHalfword(const DictionaryEntry bytes, const int match_location)
227  : SignExtendedPattern<16>(SIGN_EXTENDED_HALFWORD, SIGN_EXTENDED_HALFWORD,
228  3, bytes)
229  {
230  }
231 };
232 
233 class FPC::ZeroPaddedHalfword : public MaskedValuePattern<0, 0x0000FFFF>
234 {
235  public:
236  ZeroPaddedHalfword(const DictionaryEntry bytes, const int match_location)
237  : MaskedValuePattern<0, 0x0000FFFF>(ZERO_PADDED_HALFWORD,
238  ZERO_PADDED_HALFWORD, 3, -1, bytes, false)
239  {
240  }
241 };
242 
243 class FPC::SignExtendedTwoHalfwords : public Pattern
244 {
245  private:
247  const int8_t extendedBytes[2];
248 
249  public:
251  const int match_location)
253  16, -1, false),
254  extendedBytes{int8_t(fromDictionaryEntry(bytes) & mask(8)),
255  int8_t((fromDictionaryEntry(bytes) >> 16) & mask(8))}
256  {
257  }
258 
259  static bool
261  const DictionaryEntry& dict_bytes, const int match_location)
262  {
263  const uint32_t data = fromDictionaryEntry(bytes);
264  const int16_t halfwords[2] = {
265  int16_t(data & mask(16)),
266  int16_t((data >> 16) & mask(16))
267  };
268  return (halfwords[0] == sext<8>(halfwords[0] & mask(8))) &&
269  (halfwords[1] == sext<8>(halfwords[1] & mask(8)));
270  }
271 
273  decompress(const DictionaryEntry dict_bytes) const override
274  {
275  uint16_t halfwords[2] = {
276  uint16_t(sext<8>(extendedBytes[0]) & mask(16)),
277  uint16_t(sext<8>(extendedBytes[1]) & mask(16))
278  };
279  return toDictionaryEntry((halfwords[1] << 16) | halfwords[0]);
280  }
281 };
282 
283 class FPC::RepBytes : public RepeatedValuePattern<uint8_t>
284 {
285  public:
286  RepBytes(const DictionaryEntry bytes, const int match_location)
287  : RepeatedValuePattern<uint8_t>(REP_BYTES, REP_BYTES, 3, -1, bytes,
288  false)
289  {
290  }
291 };
292 
293 class FPC::Uncompressed : public UncompressedPattern
294 {
295  public:
296  Uncompressed(const DictionaryEntry bytes, const int match_location)
297  : UncompressedPattern(UNCOMPRESSED, UNCOMPRESSED, 3, -1, bytes)
298  {
299  }
300 };
301 
302 } // namespace Compressor
303 
304 #endif //__MEM_CACHE_COMPRESSORS_FPC_HH__
Compressor::FPC::instantiateDictionaryCompData
std::unique_ptr< DictionaryCompressor::CompData > instantiateDictionaryCompData() const override
Definition: fpc.cc:91
Compressor::FPC::~FPC
~FPC()=default
Compressor::FPC::SignExtendedTwoHalfwords::decompress
DictionaryEntry decompress(const DictionaryEntry dict_bytes) const override
Definition: fpc.hh:273
Compressor::FPC::FPCCompData::zeroRunSizeBits
const int zeroRunSizeBits
Number of bits of the zero run size bitfield.
Definition: fpc.hh:139
data
const char data[]
Definition: circlebuf.test.cc:47
Compressor::FPC::SignExtendedHalfword::SignExtendedHalfword
SignExtendedHalfword(const DictionaryEntry bytes, const int match_location)
Definition: fpc.hh:226
Compressor::FPC::ZeroPaddedHalfword::ZeroPaddedHalfword
ZeroPaddedHalfword(const DictionaryEntry bytes, const int match_location)
Definition: fpc.hh:236
Compressor::FPC::ZeroRun::getSizeBits
std::size_t getSizeBits() const override
Definition: fpc.hh:173
Compressor::FPC::NUM_PATTERNS
@ NUM_PATTERNS
Definition: fpc.hh:82
Compressor::FPC::FPCCompData::~FPCCompData
~FPCCompData()=default
Compressor
Definition: base.cc:47
Compressor::FPC::ZeroPaddedHalfword
Definition: fpc.hh:233
Compressor::FPC::PatternNumber
PatternNumber
The possible patterns.
Definition: fpc.hh:78
Compressor::FPC::SIGN_EXTENDED_TWO_HALFWORDS
@ SIGN_EXTENDED_TWO_HALFWORDS
Definition: fpc.hh:81
Compressor::FPC::ZERO_PADDED_HALFWORD
@ ZERO_PADDED_HALFWORD
Definition: fpc.hh:80
Compressor::FPC::zeroRunSizeBits
const int zeroRunSizeBits
Number of bits of the zero run size bitfield.
Definition: fpc.hh:89
Compressor::FPC::SIGN_EXTENDED_1_BYTE
@ SIGN_EXTENDED_1_BYTE
Definition: fpc.hh:79
Compressor::FPC::RepBytes::RepBytes
RepBytes(const DictionaryEntry bytes, const int match_location)
Definition: fpc.hh:286
Compressor::FPC::SIGN_EXTENDED_HALFWORD
@ SIGN_EXTENDED_HALFWORD
Definition: fpc.hh:80
Compressor::FPC::getNumPatterns
uint64_t getNumPatterns() const override
Trick function to get the number of patterns.
Definition: fpc.hh:91
dictionary_compressor.hh
Compressor::FPC::ZeroRun::_realSize
int _realSize
A zero run consists of a main ZeroRun pattern, which has a meaningful real size (i....
Definition: fpc.hh:162
Compressor::FPC::UNCOMPRESSED
@ UNCOMPRESSED
Definition: fpc.hh:81
Compressor::DictionaryCompressor
A template version of the dictionary compressor that allows to choose the dictionary size.
Definition: dictionary_compressor.hh:113
bitfield.hh
Compressor::FPC::ZeroRun::_runLength
int _runLength
Run length so far.
Definition: fpc.hh:154
Compressor::FPC::SIGN_EXTENDED_4_BITS
@ SIGN_EXTENDED_4_BITS
Definition: fpc.hh:79
Compressor::FPC::FPCCompData::FPCCompData
FPCCompData(int zeroRunSizeBits)
Definition: fpc.cc:36
Compressor::FPC::ZeroRun::ZeroRun
ZeroRun(const DictionaryEntry bytes, const int match_location)
Definition: fpc.hh:165
Compressor::FPC::Params
FPCParams Params
Definition: fpc.hh:127
Compressor::Base::Params
BaseCacheCompressorParams Params
Definition: base.hh:196
Compressor::FPC::REP_BYTES
@ REP_BYTES
Definition: fpc.hh:81
Compressor::FPC::ZeroRun::setRealSize
void setRealSize(int size)
When the real size is set it means that we are adding the main zero run pattern.
Definition: fpc.hh:200
Compressor::FPC::Uncompressed
Definition: fpc.hh:293
Compressor::FPC::FPCCompData::addEntry
void addEntry(std::unique_ptr< Pattern > pattern) override
Definition: fpc.cc:42
Compressor::FPC::SignExtendedTwoHalfwords::extendedBytes
const int8_t extendedBytes[2]
These are the bytes that are extended to form the two halfwords.
Definition: fpc.hh:247
Compressor::FPC::SignExtendedTwoHalfwords::SignExtendedTwoHalfwords
SignExtendedTwoHalfwords(const DictionaryEntry bytes, const int match_location)
Definition: fpc.hh:250
Compressor::FPC::FPCCompData
Definition: fpc.hh:132
Compressor::FPC::ZeroRun
Definition: fpc.hh:150
Compressor::FPC::SignExtended1Byte
Definition: fpc.hh:213
Compressor::FPC::getName
std::string getName(int number) const override
Get meta-name assigned to the given pattern.
Definition: fpc.hh:94
Compressor::DictionaryCompressor< uint32_t >::fromDictionaryEntry
static uint32_t fromDictionaryEntry(const DictionaryEntry &entry)
Turn a dictionary entry into a value.
Definition: dictionary_compressor_impl.hh:225
Compressor::FPC::SignExtended4Bits::SignExtended4Bits
SignExtended4Bits(const DictionaryEntry bytes, const int match_location)
Definition: fpc.hh:206
Compressor::FPC::getPattern
std::unique_ptr< Pattern > getPattern(const DictionaryEntry &bytes, const DictionaryEntry &dict_bytes, const int match_location) const override
Definition: fpc.hh:110
Compressor::FPC::addToDictionary
void addToDictionary(const DictionaryEntry data) override
Definition: fpc.cc:82
Compressor::FPC::DictionaryEntry
DictionaryCompressor< uint32_t >::DictionaryEntry DictionaryEntry
Definition: fpc.hh:56
Compressor::DictionaryCompressor< uint32_t >::toDictionaryEntry
static DictionaryEntry toDictionaryEntry(uint32_t value)
Turn a value into a dictionary entry.
Definition: dictionary_compressor_impl.hh:213
types.hh
Compressor::FPC::ZERO_RUN
@ ZERO_RUN
Definition: fpc.hh:79
Compressor::FPC::ZeroRun::setRunLength
void setRunLength(int length)
Set the number of zeros in the run so far.
Definition: fpc.hh:190
Compressor::FPC
Definition: fpc.hh:53
Compressor::FPC::SignExtendedTwoHalfwords
Definition: fpc.hh:243
Compressor::FPC::SignExtendedHalfword
Definition: fpc.hh:223
MipsISA::p
Bitfield< 0 > p
Definition: pra_constants.hh:323
Compressor::FPC::RepBytes
Definition: fpc.hh:283
Compressor::FPC::FPC
FPC(const Params &p)
Definition: fpc.cc:76
Compressor::FPC::SignExtended1Byte::SignExtended1Byte
SignExtended1Byte(const DictionaryEntry bytes, const int match_location)
Definition: fpc.hh:216
Compressor::FPC::SignExtendedTwoHalfwords::isPattern
static bool isPattern(const DictionaryEntry &bytes, const DictionaryEntry &dict_bytes, const int match_location)
Definition: fpc.hh:260
Compressor::FPC::Uncompressed::Uncompressed
Uncompressed(const DictionaryEntry bytes, const int match_location)
Definition: fpc.hh:296
Compressor::FPC::ZeroRun::getRunLength
int getRunLength() const
Get the number of zeros in the run so far.
Definition: fpc.hh:183
ArmISA::mask
Bitfield< 28, 24 > mask
Definition: miscregs_types.hh:711
Compressor::FPC::SignExtended4Bits
Definition: fpc.hh:203

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