Go to the documentation of this file.
46 :
Base(), maxCodeLength(max_code_length)
49 "Code length cannot surpass its underlying container");
60 std::unique_ptr<Huffman::Node>
65 while (
trees.size() > 1) {
72 Node* parent =
new Node(left, right);
80 return std::unique_ptr<Node>(root);
103 Code right_code = current_code;
104 right_code.
code = (right_code.
code << 1) + 1;
108 Code left_code = current_code;
109 left_code.
code = left_code.
code << 1;
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)
uint64_t decode(const uint64_t code) const override
Decode a value.
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...
uint64_t code
Only the LSB of the code are relevant.
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.
unsigned length
Number of bits in the code.
const Node * getLeftSubTree() const
GEM5_DEPRECATED_NAMESPACE(Encoder, encoder)
#define fatal_if(cond,...)
Conditional fatal macro that checks the supplied condition and only causes a fatal error if the condi...
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
void generateCodeMaps()
Generation of the code maps.
Node for the Huffman tree.
uint64_t getValue() const
Get the leaf's value.
Generated on Wed May 4 2022 12:13:59 for gem5 by doxygen 1.8.17