Go to the documentation of this file.
29 #ifndef __MEM_CACHE_COMPRESSORS_ENCODERS_HUFFMAN_HH__
30 #define __MEM_CACHE_COMPRESSORS_ENCODERS_HUFFMAN_HH__
59 Huffman(uint64_t max_code_length);
68 void sample(uint64_t value, uint64_t frequency);
74 uint64_t
decode(
const uint64_t code)
const override;
95 Node(uint64_t value, uint64_t frequency)
189 #endif //__MEM_CACHE_COMPRESSORS_ENCODERS_HUFFMAN_HH__
Node(Node *left, Node *right)
Initialize node as an internal node.
bool isLeaf() const
Determine if the node is a leaf node by checking if it does not have sub-trees.
Huffman(uint64_t max_code_length)
Entries are not inserted directly into the tree.
uint64_t decode(const uint64_t code) const override
Decode a value.
Node(uint64_t value, uint64_t frequency)
Initialize node as a leaf node.
std::unique_ptr< Node > _left
The left tree.
const uint64_t _frequency
Frequency of the value represented by this node.
std::priority_queue< Node *, std::vector< Node * >, NodeComparator > trees
std::unique_ptr< Node > buildTree()
Build a Huffman tree using the values and their respective frequencies, which have been informed thro...
This encoder builds a Huffman tree using the frequency of each value to be encoded.
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.
std::map< uint64_t, Code > valueToCode
Table containing the codewords and their respective lengths.
const Node * getRightSubTree() const
GEM5_DEPRECATED_NAMESPACE(GuestABI, guest_abi)
const unsigned maxCodeLength
Maximum number of bits in a codeword.
void generateCodes(const Node *node, const Code ¤t_code)
Recursive function that generates the huffman codes based on the tree provided.
void sample(uint64_t value, uint64_t frequency)
Inserts the value-frequency pair in the tree.
const Node * getLeftSubTree() const
GEM5_DEPRECATED_NAMESPACE(Encoder, encoder)
uint64_t getFrequency() const
Getter for the frequency counter.
const uint64_t _value
Value represented by this node, if this is a leaf node.
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
void generateCodeMaps()
Generation of the code maps.
std::unique_ptr< Node > _right
The right tree.
Node for the Huffman tree.
bool operator()(const Node *lhs, const Node *rhs) const
uint64_t getValue() const
Get the leaf's value.
Generated on Thu Jun 16 2022 10:41:55 for gem5 by doxygen 1.8.17