|
gem5
v20.1.0.5
|
#include <dictionary_compressor.hh>
Public Member Functions | |
| CompData () | |
| ~CompData ()=default | |
| virtual void | addEntry (std::unique_ptr< Pattern >) |
| Add a pattern entry to the list of patterns. More... | |
Public Member Functions inherited from Compressor::Base::CompressionData | |
| CompressionData () | |
| Default constructor. More... | |
| virtual | ~CompressionData () |
| Virtual destructor. More... | |
| void | setSizeBits (std::size_t size) |
| Set compression size (in bits). More... | |
| std::size_t | getSizeBits () const |
| Get compression size (in bits). More... | |
| std::size_t | getSize () const |
| Get compression size (in bytes). More... | |
Public Attributes | |
| std::vector< std::unique_ptr< Pattern > > | entries |
| The patterns matched in the original line. More... | |
Definition at line 387 of file dictionary_compressor.hh.
| Compressor::DictionaryCompressor< T >::CompData::CompData |
Definition at line 46 of file dictionary_compressor_impl.hh.
|
default |
|
virtual |
Add a pattern entry to the list of patterns.
| entry | The new pattern entry. |
Definition at line 53 of file dictionary_compressor_impl.hh.
References Compressor::Base::setSizeBits().
| std::vector<std::unique_ptr<Pattern> > Compressor::DictionaryCompressor< T >::CompData::entries |
The patterns matched in the original line.
Definition at line 391 of file dictionary_compressor.hh.