Go to the documentation of this file.
29 #ifndef __MEM_CACHE_COMPRESSORS_ENCODERS_HUFFMAN_HH__
30 #define __MEM_CACHE_COMPRESSORS_ENCODERS_HUFFMAN_HH__
51 Huffman(uint64_t max_code_length);
60 void sample(uint64_t value, uint64_t frequency);
66 uint64_t
decode(
const uint64_t code)
const override;
87 Node(uint64_t value, uint64_t frequency)
180 #endif //__MEM_CACHE_COMPRESSORS_ENCODERS_HUFFMAN_HH__
std::priority_queue< Node *, std::vector< Node * >, NodeComparator > trees
const unsigned maxCodeLength
Maximum number of bits in a codeword.
uint64_t getFrequency() const
Getter for the frequency counter.
const Node * getLeftSubTree() const
bool operator()(const Node *lhs, const Node *rhs) const
void generateCodeMaps()
Generation of the code maps.
void sample(uint64_t value, uint64_t frequency)
Inserts the value-frequency pair in the tree.
uint64_t getValue() const
Get the leaf's value.
This encoder builds a Huffman tree using the frequency of each value to be encoded.
std::unique_ptr< Node > _right
The right tree.
Entries are not inserted directly into the tree.
std::unique_ptr< Node > buildTree()
Build a Huffman tree using the values and their respective frequencies, which have been informed thro...
uint64_t decode(const uint64_t code) const override
Decode a value.
std::map< uint64_t, Code > valueToCode
Table containing the codewords and their respective lengths.
const uint64_t _value
Value represented by this node, if this is a leaf node.
const Node * getRightSubTree() const
std::unique_ptr< Node > _left
The left tree.
Node(uint64_t value, uint64_t frequency)
Initialize node as a leaf node.
Huffman(uint64_t max_code_length)
bool isLeaf() const
Determine if the node is a leaf node by checking if it does not have sub-trees.
Node(Node *left, Node *right)
Initialize node as an internal node.
const uint64_t _frequency
Frequency of the value represented by this node.
void generateCodes(const Node *node, const Code ¤t_code)
Recursive function that generates the huffman codes based on the tree provided.
std::map< uint64_t, uint64_t > codeToValue
Code encode(const uint64_t val) const override
The function responsible for the generation of the alternative value.
Node for the Huffman tree.
Generated on Tue Jun 22 2021 15:28:29 for gem5 by doxygen 1.8.17