gem5  v21.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
huffman.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 
29 #ifndef __MEM_CACHE_COMPRESSORS_ENCODERS_HUFFMAN_HH__
30 #define __MEM_CACHE_COMPRESSORS_ENCODERS_HUFFMAN_HH__
31 
32 #include <cassert>
33 #include <cstdint>
34 #include <map>
35 #include <memory>
36 #include <queue>
37 #include <vector>
38 
40 
41 namespace Compressor {
42 namespace Encoder {
43 
48 class Huffman : public Base
49 {
50  public:
51  Huffman(uint64_t max_code_length);
52  ~Huffman() = default;
53 
60  void sample(uint64_t value, uint64_t frequency);
61 
63  void generateCodeMaps();
64 
65  Code encode(const uint64_t val) const override;
66  uint64_t decode(const uint64_t code) const override;
67 
68  private:
70  class Node
71  {
72  private:
74  const uint64_t _frequency;
75 
77  const uint64_t _value;
78 
80  std::unique_ptr<Node> _left;
81 
83  std::unique_ptr<Node> _right;
84 
85  public:
87  Node(uint64_t value, uint64_t frequency)
88  : _frequency(frequency), _value(value), _left(), _right()
89  {
90  }
91 
93  Node(Node* left, Node* right)
94  : _frequency(left->getFrequency() + right->getFrequency()),
95  _value(0), _left(left), _right(right)
96  {
97  }
98 
100  uint64_t getFrequency() const { return _frequency; }
101 
108  bool
109  isLeaf() const
110  {
111  return (_left == nullptr) && (_right == nullptr);
112  }
113 
119  uint64_t
120  getValue() const
121  {
122  assert(isLeaf());
123  return _value;
124  }
125 
126  const Node* getLeftSubTree() const { return _left.get(); }
127  const Node* getRightSubTree() const { return _right.get(); }
128  };
129 
134  const unsigned maxCodeLength;
135 
140  std::map<uint64_t, Code> valueToCode;
141  std::map<uint64_t, uint64_t> codeToValue;
142 
148  {
149  bool
150  operator()(const Node* lhs, const Node* rhs) const
151  {
152  return lhs->getFrequency() > rhs->getFrequency();
153  }
154  };
155  std::priority_queue<Node*, std::vector<Node*>, NodeComparator> trees;
156 
164  std::unique_ptr<Node> buildTree();
165 
174  void generateCodes(const Node* node, const Code& current_code);
175 };
176 
177 } // namespace Encoder
178 } // namespace Compressor
179 
180 #endif //__MEM_CACHE_COMPRESSORS_ENCODERS_HUFFMAN_HH__
Compressor::Encoder::Huffman::trees
std::priority_queue< Node *, std::vector< Node * >, NodeComparator > trees
Definition: huffman.hh:155
Compressor::Encoder::Huffman::maxCodeLength
const unsigned maxCodeLength
Maximum number of bits in a codeword.
Definition: huffman.hh:134
Compressor::Encoder::Huffman::Node::getFrequency
uint64_t getFrequency() const
Getter for the frequency counter.
Definition: huffman.hh:100
Compressor::Encoder::Huffman::~Huffman
~Huffman()=default
Compressor
Definition: base.cc:47
Compressor::Encoder::Huffman::Node::getLeftSubTree
const Node * getLeftSubTree() const
Definition: huffman.hh:126
Compressor::Encoder::Huffman::NodeComparator::operator()
bool operator()(const Node *lhs, const Node *rhs) const
Definition: huffman.hh:150
base.hh
Compressor::Encoder::Huffman::generateCodeMaps
void generateCodeMaps()
Generation of the code maps.
Definition: huffman.cc:77
Compressor::Encoder::Huffman::sample
void sample(uint64_t value, uint64_t frequency)
Inserts the value-frequency pair in the tree.
Definition: huffman.cc:46
Compressor::Encoder::Huffman::Node::getValue
uint64_t getValue() const
Get the leaf's value.
Definition: huffman.hh:120
Compressor::Encoder::Huffman
This encoder builds a Huffman tree using the frequency of each value to be encoded.
Definition: huffman.hh:48
Compressor::Encoder::Huffman::Node::_right
std::unique_ptr< Node > _right
The right tree.
Definition: huffman.hh:83
Compressor::Encoder::Huffman::NodeComparator
Entries are not inserted directly into the tree.
Definition: huffman.hh:147
Compressor::Encoder::Huffman::buildTree
std::unique_ptr< Node > buildTree()
Build a Huffman tree using the values and their respective frequencies, which have been informed thro...
Definition: huffman.cc:54
Compressor::Encoder::Huffman::decode
uint64_t decode(const uint64_t code) const override
Decode a value.
Definition: huffman.cc:125
Compressor::Encoder::Code
Definition: base.hh:37
Compressor::Encoder::Huffman::valueToCode
std::map< uint64_t, Code > valueToCode
Table containing the codewords and their respective lengths.
Definition: huffman.hh:140
Compressor::Encoder::Huffman::Node::_value
const uint64_t _value
Value represented by this node, if this is a leaf node.
Definition: huffman.hh:77
X86ISA::val
Bitfield< 63 > val
Definition: misc.hh:769
Compressor::Encoder::Huffman::Node::getRightSubTree
const Node * getRightSubTree() const
Definition: huffman.hh:127
Compressor::Encoder::Huffman::Node::_left
std::unique_ptr< Node > _left
The left tree.
Definition: huffman.hh:80
Compressor::Encoder::Huffman::Node::Node
Node(uint64_t value, uint64_t frequency)
Initialize node as a leaf node.
Definition: huffman.hh:87
Compressor::Encoder::Huffman::Huffman
Huffman(uint64_t max_code_length)
Definition: huffman.cc:38
Compressor::Encoder::Huffman::Node::isLeaf
bool isLeaf() const
Determine if the node is a leaf node by checking if it does not have sub-trees.
Definition: huffman.hh:109
Compressor::Encoder::Huffman::Node::Node
Node(Node *left, Node *right)
Initialize node as an internal node.
Definition: huffman.hh:93
Compressor::Encoder::Huffman::Node::_frequency
const uint64_t _frequency
Frequency of the value represented by this node.
Definition: huffman.hh:74
Compressor::Encoder::Huffman::generateCodes
void generateCodes(const Node *node, const Code &current_code)
Recursive function that generates the huffman codes based on the tree provided.
Definition: huffman.cc:85
Compressor::Encoder::Huffman::codeToValue
std::map< uint64_t, uint64_t > codeToValue
Definition: huffman.hh:141
Compressor::Encoder::Base
Base class for encoders.
Definition: base.hh:50
Compressor::Encoder::Huffman::encode
Code encode(const uint64_t val) const override
The function responsible for the generation of the alternative value.
Definition: huffman.cc:109
Compressor::Encoder::Huffman::Node
Node for the Huffman tree.
Definition: huffman.hh:70

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