gem5  v20.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
cpack.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2018-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 
34 #ifndef __MEM_CACHE_COMPRESSORS_CPACK_HH__
35 #define __MEM_CACHE_COMPRESSORS_CPACK_HH__
36 
37 #include <cstdint>
38 #include <map>
39 #include <memory>
40 
41 #include "base/types.hh"
43 
44 struct CPackParams;
45 
46 class CPack : public DictionaryCompressor<uint32_t>
47 {
48  private:
50 
51  // Forward declaration of all possible patterns
52  class PatternZZZZ;
53  class PatternXXXX;
54  class PatternMMMM;
55  class PatternMMXX;
56  class PatternZZZX;
57  class PatternMMMX;
58 
65  typedef enum {
67  } PatternNumber;
68 
75 
76  uint64_t getNumPatterns() const override { return NUM_PATTERNS; }
77 
78  std::string
79  getName(int number) const override
80  {
81  static std::map<int, std::string> patternNames = {
82  {ZZZZ, "ZZZZ"}, {XXXX, "XXXX"}, {MMMM, "MMMM"},
83  {MMXX, "MMXX"}, {ZZZX, "ZZZX"}, {MMMX, "MMMX"}
84  };
85 
86  return patternNames[number];
87  };
88 
89  std::unique_ptr<Pattern> getPattern(
90  const DictionaryEntry& bytes,
91  const DictionaryEntry& dict_bytes,
92  const int match_location) const override
93  {
94  return PatternFactory::getPattern(bytes, dict_bytes, match_location);
95  }
96 
97  void addToDictionary(DictionaryEntry data) override;
98 
107  std::unique_ptr<BaseCacheCompressor::CompressionData> compress(
108  const uint64_t* data, Cycles& comp_lat, Cycles& decomp_lat) override;
109 
110  public:
112  typedef CPackParams Params;
113 
117  CPack(const Params *p);
118 
122  ~CPack() {};
123 };
124 
125 class CPack::PatternZZZZ : public MaskedValuePattern<0, 0xFFFFFFFF>
126 {
127  public:
128  PatternZZZZ(const DictionaryEntry bytes, const int match_location)
129  : MaskedValuePattern<0, 0xFFFFFFFF>(ZZZZ, 0x0, 2, match_location,
130  bytes)
131  {
132  }
133 };
134 
135 class CPack::PatternXXXX : public UncompressedPattern
136 {
137  public:
138  PatternXXXX(const DictionaryEntry bytes, const int match_location)
139  : UncompressedPattern(XXXX, 0x1, 2, match_location, bytes)
140  {
141  }
142 };
143 
144 class CPack::PatternMMMM : public MaskedPattern<0xFFFFFFFF>
145 {
146  public:
147  PatternMMMM(const DictionaryEntry bytes, const int match_location)
148  : MaskedPattern<0xFFFFFFFF>(MMMM, 0x2, 6, match_location, bytes, true)
149  {
150  }
151 };
152 
153 class CPack::PatternMMXX : public MaskedPattern<0xFFFF0000>
154 {
155  public:
156  PatternMMXX(const DictionaryEntry bytes, const int match_location)
157  : MaskedPattern<0xFFFF0000>(MMXX, 0xC, 8, match_location, bytes, true)
158  {
159  }
160 };
161 
162 class CPack::PatternZZZX : public MaskedValuePattern<0, 0xFFFFFF00>
163 {
164  public:
165  PatternZZZX(const DictionaryEntry bytes, const int match_location)
166  : MaskedValuePattern<0, 0xFFFFFF00>(ZZZX, 0xD, 4, match_location,
167  bytes)
168  {
169  }
170 };
171 
172 class CPack::PatternMMMX : public MaskedPattern<0xFFFFFF00>
173 {
174  public:
175  PatternMMMX(const DictionaryEntry bytes, const int match_location)
176  : MaskedPattern<0xFFFFFF00>(MMMX, 0xE, 8, match_location, bytes, true)
177  {
178  }
179 };
180 
181 #endif //__MEM_CACHE_COMPRESSORS_CPACK_HH__
CPack(const Params *p)
Default constructor.
Definition: cpack.cc:38
Cycles is a wrapper class for representing cycle counts, i.e.
Definition: types.hh:81
PatternMMMM(const DictionaryEntry bytes, const int match_location)
Definition: cpack.hh:147
std::unique_ptr< Pattern > getPattern(const DictionaryEntry &bytes, const DictionaryEntry &dict_bytes, const int match_location) const override
Definition: cpack.hh:89
CPackParams Params
Convenience typedef.
Definition: cpack.hh:112
PatternXXXX(const DictionaryEntry bytes, const int match_location)
Definition: cpack.hh:138
uint64_t getNumPatterns() const override
Trick function to get the number of patterns.
Definition: cpack.hh:76
PatternZZZX(const DictionaryEntry bytes, const int match_location)
Definition: cpack.hh:165
Definition: cpack.hh:46
void addToDictionary(DictionaryEntry data) override
Definition: cpack.cc:44
PatternMMMX(const DictionaryEntry bytes, const int match_location)
Definition: cpack.hh:175
std::unique_ptr< BaseCacheCompressor::CompressionData > compress(const uint64_t *data, Cycles &comp_lat, Cycles &decomp_lat) override
Apply compression.
Definition: cpack.cc:51
PatternZZZZ(const DictionaryEntry bytes, const int match_location)
Definition: cpack.hh:128
Defines global host-dependent types: Counter, Tick, and (indirectly) {int,uint}{8,16,32,64}_t.
std::string getName(int number) const override
Get meta-name assigned to the given pattern.
Definition: cpack.hh:79
Definition of a dictionary based cache compressor.
PatternMMXX(const DictionaryEntry bytes, const int match_location)
Definition: cpack.hh:156
PatternNumber
The patterns proposed in the paper.
Definition: cpack.hh:65
DictionaryCompressor< uint32_t >::DictionaryEntry DictionaryEntry
Definition: cpack.hh:49
Factory< PatternZZZZ, PatternMMMM, PatternZZZX, PatternMMMX, PatternMMXX, PatternXXXX > PatternFactory
Convenience factory declaration.
Definition: cpack.hh:74
~CPack()
Default destructor.
Definition: cpack.hh:122
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