gem5  v22.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
zero.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 
34 #ifndef __MEM_CACHE_COMPRESSORS_ZERO_HH__
35 #define __MEM_CACHE_COMPRESSORS_ZERO_HH__
36 
37 #include <array>
38 #include <cstdint>
39 #include <map>
40 #include <memory>
41 
43 
44 namespace gem5
45 {
46 
47 struct ZeroCompressorParams;
48 
49 GEM5_DEPRECATED_NAMESPACE(Compressor, compression);
50 namespace compression
51 {
52 
53 class Zero : public DictionaryCompressor<uint64_t>
54 {
55  protected:
57 
58  // Forward declaration of all possible patterns
59  class PatternX;
60  class PatternZ;
61 
69  {
71  };
72 
77  using PatternFactory = Factory<PatternZ, PatternX>;
78 
79  uint64_t getNumPatterns() const override { return NUM_PATTERNS; }
80 
81  std::string
82  getName(int number) const override
83  {
84  static std::map<int, std::string> pattern_names = {
85  {X, "X"}, {Z, "Z"}
86  };
87 
88  return pattern_names[number];
89  };
90 
91  std::unique_ptr<Pattern>
92  getPattern(const DictionaryEntry& bytes, const DictionaryEntry& dict_bytes,
93  const int match_location) const override
94  {
95  return PatternFactory::getPattern(bytes, dict_bytes, match_location);
96  }
97 
98  void addToDictionary(DictionaryEntry data) override;
99 
100  std::unique_ptr<Base::CompressionData> compress(
101  const std::vector<Base::Chunk>& chunks,
102  Cycles& comp_lat, Cycles& decomp_lat) override;
103 
104  public:
105  typedef ZeroCompressorParams Params;
106  Zero(const Params &p);
107  ~Zero() = default;
108 };
109 
112 {
113  public:
114  PatternX(const DictionaryEntry bytes, const int match_location)
115  : DictionaryCompressor::UncompressedPattern(X, 0, 0, match_location,
116  bytes)
117  {
118  }
119 };
120 
122  : public DictionaryCompressor::MaskedValuePattern<0, 0xFFFFFFFFFFFFFFFF>
123 {
124  public:
125  PatternZ(const DictionaryEntry bytes, const int match_location)
126  : DictionaryCompressor::MaskedValuePattern<0, 0xFFFFFFFFFFFFFFFF>(
127  Z, 1, 0, match_location, bytes)
128  {
129  }
130 };
131 
132 } // namespace compression
133 } // namespace gem5
134 
135 #endif //__MEM_CACHE_COMPRESSORS_ZERO_HH__
gem5::compression::Zero::PatternX::PatternX
PatternX(const DictionaryEntry bytes, const int match_location)
Definition: zero.hh:114
gem5::compression::DictionaryCompressor
A template version of the dictionary compressor that allows to choose the dictionary size.
Definition: dictionary_compressor.hh:118
data
const char data[]
Definition: circlebuf.test.cc:48
gem5::compression::DictionaryCompressor::MaskedValuePattern
A pattern that compares masked values to a masked portion of a fixed value.
Definition: dictionary_compressor.hh:136
gem5::compression::Zero::addToDictionary
void addToDictionary(DictionaryEntry data) override
Definition: zero.cc:54
gem5::compression::Zero::~Zero
~Zero()=default
gem5::compression::Base::Params
BaseCacheCompressorParams Params
Definition: base.hh:202
gem5::compression::DictionaryCompressor::UncompressedPattern
A pattern containing the original uncompressed data.
Definition: dictionary_compressor.hh:416
std::vector
STL vector class.
Definition: stl.hh:37
gem5::compression::Zero::compress
std::unique_ptr< Base::CompressionData > compress(const std::vector< Base::Chunk > &chunks, Cycles &comp_lat, Cycles &decomp_lat) override
Apply the compression process to the cache line.
Definition: zero.cc:61
gem5::compression::Zero::PatternX
Definition: zero.hh:110
gem5::compression::Zero::NUM_PATTERNS
@ NUM_PATTERNS
Definition: zero.hh:70
gem5::compression::Zero::PatternFactory
Factory< PatternZ, PatternX > PatternFactory
Convenience factory declaration.
Definition: zero.hh:77
gem5::compression::Zero::getNumPatterns
uint64_t getNumPatterns() const override
Trick function to get the number of patterns.
Definition: zero.hh:79
gem5::Cycles
Cycles is a wrapper class for representing cycle counts, i.e.
Definition: types.hh:78
gem5::compression::Zero::PatternZ::PatternZ
PatternZ(const DictionaryEntry bytes, const int match_location)
Definition: zero.hh:125
dictionary_compressor.hh
gem5::compression::Zero::Z
@ Z
Definition: zero.hh:70
gem5::VegaISA::p
Bitfield< 54 > p
Definition: pagetable.hh:70
gem5::GEM5_DEPRECATED_NAMESPACE
GEM5_DEPRECATED_NAMESPACE(GuestABI, guest_abi)
gem5::compression::DictionaryCompressor::MaskedValuePattern< 0, 0xFFFFFFFFFFFFFFFF >::MaskedValuePattern
MaskedValuePattern(const int number, const uint64_t code, const uint64_t metadata_length, const int match_location, const DictionaryEntry bytes, const bool allocate=false)
Definition: dictionary_compressor.hh:533
gem5::compression::Zero::getName
std::string getName(int number) const override
Get meta-name assigned to the given pattern.
Definition: zero.hh:82
gem5::compression::Zero::PatternZ
Definition: zero.hh:121
gem5::compression::Zero::Params
ZeroCompressorParams Params
Definition: zero.hh:105
gem5::compression::Zero::PatternNumber
PatternNumber
The patterns proposed in the paper.
Definition: zero.hh:68
gem5::compression::Zero::Zero
Zero(const Params &p)
Definition: zero.cc:48
gem5::compression::Zero::getPattern
std::unique_ptr< Pattern > getPattern(const DictionaryEntry &bytes, const DictionaryEntry &dict_bytes, const int match_location) const override
Definition: zero.hh:92
gem5::compression::Zero::X
@ X
Definition: zero.hh:70
gem5::compression::Zero
Definition: zero.hh:53
gem5::compression::Zero::DictionaryEntry
DictionaryCompressor< uint64_t >::DictionaryEntry DictionaryEntry
Definition: zero.hh:56
gem5
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
Definition: gpu_translation_state.hh:37
gem5::compression::DictionaryCompressor::UncompressedPattern::UncompressedPattern
UncompressedPattern(const int number, const uint64_t code, const uint64_t metadata_length, const int match_location, const DictionaryEntry bytes)
Definition: dictionary_compressor.hh:424

Generated on Thu Jun 16 2022 10:41:55 for gem5 by doxygen 1.8.17