gem5  v21.0.1.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
fpc.cc
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 
30 
32 #include "params/FPC.hh"
33 
34 namespace Compressor {
35 
36 FPC::FPCCompData::FPCCompData(int zero_run_size_bits)
37  : CompData(), zeroRunSizeBits(zero_run_size_bits)
38 {
39 }
40 
41 void
42 FPC::FPCCompData::addEntry(std::unique_ptr<Pattern> pattern)
43 {
44  // If this is a zero match, check for zero runs
45  if (pattern->getPatternNumber() == ZERO_RUN) {
46  // If it is a new zero run, create it; otherwise, increase current
47  // run's length
48  if (!entries.size() ||
49  (entries.back()->getPatternNumber() != ZERO_RUN)) {
50  static_cast<ZeroRun*>(pattern.get())->setRealSize(zeroRunSizeBits);
51  } else {
52  // A zero run has a maximum length, given by the number of bits
53  // used to represent it. When this limit is reached, a new run
54  // must be created
55  const int run_length =
56  static_cast<ZeroRun*>(entries.back().get())->getRunLength();
57  if (run_length == mask(zeroRunSizeBits)) {
58  // The limit for this zero run has been reached, so a new
59  // run must be started, with a sized pattern
60  static_cast<ZeroRun*>(pattern.get())->setRealSize(
62  } else {
63  // Increase the current run's length.
64  // Since the first zero entry of the run contains the size,
65  // and all the following ones are created just to simplify
66  // decompression, this fake pattern will have a size of 0 bits
67  static_cast<ZeroRun*>(pattern.get())->setRunLength(
68  run_length + 1);
69  }
70  }
71  }
72 
73  CompData::addEntry(std::move(pattern));
74 }
75 
76 FPC::FPC(const Params &p)
77  : DictionaryCompressor<uint32_t>(p), zeroRunSizeBits(p.zero_run_bits)
78 {
79 }
80 
81 void
83 {
84  // There is no dictionary in FPC, so its size is zero, and no pattern
85  // causes an insertion in the dictionary. The only reason we do not
86  // assert it is that the UncompressedPattern implementation always
87  // inserts by default
88 }
89 
90 std::unique_ptr<DictionaryCompressor<uint32_t>::CompData>
92 {
93  return std::unique_ptr<DictionaryCompressor<uint32_t>::CompData>(
95 }
96 
97 } // namespace Compressor
Compressor::FPC::instantiateDictionaryCompData
std::unique_ptr< DictionaryCompressor::CompData > instantiateDictionaryCompData() const override
Definition: fpc.cc:91
fpc.hh
data
const char data[]
Definition: circlebuf.test.cc:47
Compressor
Definition: base.cc:47
Compressor::FPC::zeroRunSizeBits
const int zeroRunSizeBits
Number of bits of the zero run size bitfield.
Definition: fpc.hh:89
Compressor::DictionaryCompressor
A template version of the dictionary compressor that allows to choose the dictionary size.
Definition: dictionary_compressor.hh:113
Compressor::FPC::FPCCompData::FPCCompData
FPCCompData(int zeroRunSizeBits)
Definition: fpc.cc:36
Compressor::Base::Params
BaseCacheCompressorParams Params
Definition: base.hh:196
Compressor::FPC::FPCCompData::addEntry
void addEntry(std::unique_ptr< Pattern > pattern) override
Definition: fpc.cc:42
Compressor::FPC::FPCCompData
Definition: fpc.hh:132
Compressor::FPC::ZeroRun
Definition: fpc.hh:150
dictionary_compressor_impl.hh
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::FPC::ZERO_RUN
@ ZERO_RUN
Definition: fpc.hh:79
MipsISA::p
Bitfield< 0 > p
Definition: pra_constants.hh:323
Compressor::FPC::FPC
FPC(const Params &p)
Definition: fpc.cc:76
ArmISA::mask
Bitfield< 28, 24 > mask
Definition: miscregs_types.hh:711

Generated on Tue Jun 22 2021 15:28:29 for gem5 by doxygen 1.8.17