gem5  v20.1.0.0
Classes | Public Types | Public Member Functions | Static Public Member Functions | Protected Types | Protected Member Functions | Protected Attributes | Friends | List of all members
Compressor::Base Class Referenceabstract

Base cache compressor interface. More...

#include <base.hh>

Inheritance diagram for Compressor::Base:
SimObject EventManager Serializable Drainable Stats::Group Compressor::BaseDictionaryCompressor Compressor::Multi Compressor::Perfect Compressor::DictionaryCompressor< T > Compressor::DictionaryCompressor< BaseType > Compressor::DictionaryCompressor< uint16_t > Compressor::DictionaryCompressor< uint32_t > Compressor::DictionaryCompressor< uint64_t > Compressor::BaseDelta< BaseType, DeltaSizeBits > Compressor::BaseDelta< uint16_t, 8 > Compressor::BaseDelta< uint32_t, 16 > Compressor::BaseDelta< uint32_t, 8 > Compressor::CPack Compressor::FPCD Compressor::BaseDelta< uint64_t, 16 > Compressor::BaseDelta< uint64_t, 32 > Compressor::BaseDelta< uint64_t, 8 > Compressor::RepeatedQwords Compressor::Zero

Classes

struct  BaseStats
 
class  CompressionData
 

Public Types

typedef BaseCacheCompressorParams Params
 
- Public Types inherited from SimObject
typedef SimObjectParams Params
 

Public Member Functions

 Base (const Params *p)
 
virtual ~Base ()=default
 
std::unique_ptr< CompressionDatacompress (const uint64_t *data, Cycles &comp_lat, Cycles &decomp_lat)
 Apply the compression process to the cache line. More...
 
Cycles getDecompressionLatency (const CacheBlk *blk)
 Get the decompression latency if the block is compressed. More...
 
- Public Member Functions inherited from SimObject
const Paramsparams () const
 
 SimObject (const Params *_params)
 
virtual ~SimObject ()
 
virtual const std::string name () const
 
virtual void init ()
 init() is called after all C++ SimObjects have been created and all ports are connected. More...
 
virtual void loadState (CheckpointIn &cp)
 loadState() is called on each SimObject when restoring from a checkpoint. More...
 
virtual void initState ()
 initState() is called on each SimObject when not restoring from a checkpoint. More...
 
virtual void regProbePoints ()
 Register probe points for this object. More...
 
virtual void regProbeListeners ()
 Register probe listeners for this object. More...
 
ProbeManagergetProbeManager ()
 Get the probe manager for this object. More...
 
virtual PortgetPort (const std::string &if_name, PortID idx=InvalidPortID)
 Get a port with a given name and index. More...
 
virtual void startup ()
 startup() is the final initialization call before simulation. More...
 
DrainState drain () override
 Provide a default implementation of the drain interface for objects that don't need draining. More...
 
virtual void memWriteback ()
 Write back dirty buffers to memory using functional writes. More...
 
virtual void memInvalidate ()
 Invalidate the contents of memory buffers. More...
 
void serialize (CheckpointOut &cp) const override
 Serialize an object. More...
 
void unserialize (CheckpointIn &cp) override
 Unserialize an object. More...
 
- Public Member Functions inherited from EventManager
EventQueueeventQueue () const
 
void schedule (Event &event, Tick when)
 
void deschedule (Event &event)
 
void reschedule (Event &event, Tick when, bool always=false)
 
void schedule (Event *event, Tick when)
 
void deschedule (Event *event)
 
void reschedule (Event *event, Tick when, bool always=false)
 
void wakeupEventQueue (Tick when=(Tick) -1)
 This function is not needed by the usual gem5 event loop but may be necessary in derived EventQueues which host gem5 on other schedulers. More...
 
void setCurTick (Tick newVal)
 
 EventManager (EventManager &em)
 Event manger manages events in the event queue. More...
 
 EventManager (EventManager *em)
 
 EventManager (EventQueue *eq)
 
- Public Member Functions inherited from Serializable
 Serializable ()
 
virtual ~Serializable ()
 
void serializeSection (CheckpointOut &cp, const char *name) const
 Serialize an object into a new section. More...
 
void serializeSection (CheckpointOut &cp, const std::string &name) const
 
void unserializeSection (CheckpointIn &cp, const char *name)
 Unserialize an a child object. More...
 
void unserializeSection (CheckpointIn &cp, const std::string &name)
 
- Public Member Functions inherited from Drainable
DrainState drainState () const
 Return the current drain state of an object. More...
 
virtual void notifyFork ()
 Notify a child process of a fork. More...
 
- Public Member Functions inherited from Stats::Group
 Group (Group *parent, const char *name=nullptr)
 Construct a new statistics group. More...
 
virtual ~Group ()
 
virtual void regStats ()
 Callback to set stat parameters. More...
 
virtual void resetStats ()
 Callback to reset stats. More...
 
virtual void preDumpStats ()
 Callback before stats are dumped. More...
 
void addStat (Stats::Info *info)
 Register a stat with this group. More...
 
const std::map< std::string, Group * > & getStatGroups () const
 Get all child groups associated with this object. More...
 
const std::vector< Info * > & getStats () const
 Get all stats associated with this object. More...
 
void addStatGroup (const char *name, Group *block)
 Add a stat block as a child of this block. More...
 
const InforesolveStat (std::string name) const
 Resolve a stat by its name within this group. More...
 
 Group ()=delete
 
 Group (const Group &)=delete
 
Groupoperator= (const Group &)=delete
 

Static Public Member Functions

static void setDecompressionLatency (CacheBlk *blk, const Cycles lat)
 Set the decompression latency of compressed block. More...
 
static void setSizeBits (CacheBlk *blk, const std::size_t size_bits)
 Set the size of the compressed block, in bits. More...
 
- Static Public Member Functions inherited from SimObject
static void serializeAll (CheckpointOut &cp)
 Serialize all SimObjects in the system. More...
 
static SimObjectfind (const char *name)
 Find the SimObject with the given name and return a pointer to it. More...
 
- Static Public Member Functions inherited from Serializable
static const std::string & currentSection ()
 Gets the fully-qualified name of the active section. More...
 
static void serializeAll (const std::string &cpt_dir)
 Serializes all the SimObjects. More...
 
static void unserializeGlobals (CheckpointIn &cp)
 

Protected Types

typedef uint64_t Chunk
 A chunk is a basic lexical unit. More...
 

Protected Member Functions

std::vector< ChunktoChunks (const uint64_t *data) const
 This function splits the raw data into chunks, so that it can be parsed by the compressor. More...
 
void fromChunks (const std::vector< Chunk > &chunks, uint64_t *data) const
 This function re-joins the chunks to recreate the original data. More...
 
virtual std::unique_ptr< CompressionDatacompress (const std::vector< Chunk > &chunks, Cycles &comp_lat, Cycles &decomp_lat)=0
 Apply the compression process to the cache line. More...
 
virtual void decompress (const CompressionData *comp_data, uint64_t *cache_line)=0
 Apply the decompression process to the compressed data. More...
 
- Protected Member Functions inherited from Drainable
 Drainable ()
 
virtual ~Drainable ()
 
virtual void drainResume ()
 Resume execution after a successful drain. More...
 
void signalDrainDone () const
 Signal that an object is drained. More...
 

Protected Attributes

const std::size_t blkSize
 Uncompressed cache line size (in bytes). More...
 
const unsigned chunkSizeBits
 Chunk size, in number of bits. More...
 
const std::size_t sizeThreshold
 Size in bytes at which a compression is classified as bad and therefore the compressed block is restored to its uncompressed format. More...
 
Compressor::Base::BaseStats stats
 
- Protected Attributes inherited from SimObject
const SimObjectParams * _params
 Cached copy of the object parameters. More...
 
- Protected Attributes inherited from EventManager
EventQueueeventq
 A pointer to this object's event queue. More...
 

Friends

class Multi
 This compressor must be able to access the protected functions of its sub-compressors. More...
 

Detailed Description

Base cache compressor interface.

Every cache compressor must implement a compression and a decompression method.

Compressors usually cannot parse all data input at once. Therefore, they typically divide the input into multiple chunks, and parse them one at a cycle.

Definition at line 58 of file base.hh.

Member Typedef Documentation

◆ Chunk

typedef uint64_t Compressor::Base::Chunk
protected

A chunk is a basic lexical unit.

The data being compressed is received by the compressor as a raw pointer. In order to parse this data, the compressor must divide it into smaller units. Typically, state-of-the- art compressors interpret cache lines as sequential 32-bit chunks (chunks), but any size is valid.

See also
chunkSizeBits

Definition at line 65 of file base.hh.

◆ Params

typedef BaseCacheCompressorParams Compressor::Base::Params

Definition at line 168 of file base.hh.

Constructor & Destructor Documentation

◆ Base()

Base::Base ( const Params p)

Definition at line 78 of file base.cc.

References blkSize, chunkSizeBits, fatal_if, and sizeThreshold.

◆ ~Base()

virtual Compressor::Base::~Base ( )
virtualdefault

Member Function Documentation

◆ compress() [1/2]

virtual std::unique_ptr<CompressionData> Compressor::Base::compress ( const std::vector< Chunk > &  chunks,
Cycles comp_lat,
Cycles decomp_lat 
)
protectedpure virtual

Apply the compression process to the cache line.

Returns the number of cycles used by the compressor, however it is usually covered by a good pipelined execution, and is currently ignored. The decompression latency is also returned, in order to avoid increasing simulation time and memory consumption.

Parameters
chunksThe cache line to be compressed, divided into chunks.
comp_latCompression latency in number of cycles.
decomp_latDecompression latency in number of cycles.
Returns
Cache line after compression.

Implemented in Compressor::Perfect, Compressor::FPCD, Compressor::BaseDelta< BaseType, DeltaSizeBits >, Compressor::BaseDelta< uint64_t, 32 >, Compressor::BaseDelta< uint32_t, 16 >, Compressor::BaseDelta< uint32_t, 8 >, Compressor::BaseDelta< uint64_t, 8 >, Compressor::BaseDelta< uint16_t, 8 >, Compressor::BaseDelta< uint64_t, 16 >, Compressor::Multi, Compressor::CPack, Compressor::RepeatedQwords, and Compressor::Zero.

Referenced by BaseCache::allocateBlock(), compress(), and BaseCache::updateCompressionData().

◆ compress() [2/2]

std::unique_ptr< Base::CompressionData > Base::compress ( const uint64_t *  data,
Cycles comp_lat,
Cycles decomp_lat 
)

Apply the compression process to the cache line.

Ignores compression cycles.

Parameters
dataThe cache line to be compressed.
comp_latCompression latency in number of cycles.
decomp_latDecompression latency in number of cycles.
Returns
Cache line after compression.

Definition at line 126 of file base.cc.

References blkSize, compress(), Compressor::Base::BaseStats::compressions, Compressor::Base::BaseStats::compressionSize, Compressor::Base::BaseStats::compressionSizeBits, data, decompress(), DPRINTF, Compressor::Base::BaseStats::failedCompressions, fatal_if, sizeThreshold, stats, and toChunks().

◆ decompress()

virtual void Compressor::Base::decompress ( const CompressionData comp_data,
uint64_t *  cache_line 
)
protectedpure virtual

Apply the decompression process to the compressed data.

Parameters
comp_dataCompressed cache line.
cache_lineThe cache line to be decompressed.

Implemented in Compressor::DictionaryCompressor< T >, Compressor::DictionaryCompressor< uint32_t >, Compressor::DictionaryCompressor< uint16_t >, Compressor::DictionaryCompressor< BaseType >, Compressor::DictionaryCompressor< uint64_t >, Compressor::Multi, and Compressor::Perfect.

Referenced by compress().

◆ fromChunks()

void Base::fromChunks ( const std::vector< Chunk > &  chunks,
uint64_t *  data 
) const
protected

This function re-joins the chunks to recreate the original data.

Parameters
chunksThe raw data divided into a vector of sequential chunks.
dataThe raw pointer to the data.

Definition at line 109 of file base.cc.

References blkSize, chunkSizeBits, data, ArmISA::i, and replaceBits().

Referenced by Compressor::Multi::compress(), and Compressor::Perfect::decompress().

◆ getDecompressionLatency()

Cycles Base::getDecompressionLatency ( const CacheBlk blk)

Get the decompression latency if the block is compressed.

Latency is 0 otherwise.

Parameters
blkThe compressed block.

Definition at line 172 of file base.cc.

References Compressor::Base::BaseStats::decompressions, DPRINTF, CompressionBlk::getDecompressionLatency(), CompressionBlk::isCompressed(), CompressionBlk::print(), and stats.

Referenced by BaseCache::access(), Cache::handleSnoop(), BaseCache::writebackBlk(), and BaseCache::writecleanBlk().

◆ setDecompressionLatency()

void Base::setDecompressionLatency ( CacheBlk blk,
const Cycles  lat 
)
static

Set the decompression latency of compressed block.

Parameters
blkThe compressed block.
latThe decompression latency.

Definition at line 190 of file base.cc.

Referenced by BaseCache::allocateBlock().

◆ setSizeBits()

void Base::setSizeBits ( CacheBlk blk,
const std::size_t  size_bits 
)
static

Set the size of the compressed block, in bits.

Parameters
blkThe compressed block.
size_bitsThe block size.

Definition at line 200 of file base.cc.

References setSizeBits().

Referenced by Compressor::DictionaryCompressor< T >::CompData::addEntry(), BaseCache::allocateBlock(), Compressor::BaseDelta< uint64_t, 16 >::compress(), and setSizeBits().

◆ toChunks()

std::vector< Base::Chunk > Base::toChunks ( const uint64_t *  data) const
protected

This function splits the raw data into chunks, so that it can be parsed by the compressor.

Parameters
dataThe raw pointer to the data being compressed.
Returns
The raw data divided into a vector of sequential chunks.

Definition at line 90 of file base.cc.

References bits(), blkSize, chunkSizeBits, data, and ArmISA::i.

Referenced by compress().

Friends And Related Function Documentation

◆ Multi

friend class Multi
friend

This compressor must be able to access the protected functions of its sub-compressors.

Definition at line 82 of file base.hh.

Member Data Documentation

◆ blkSize

const std::size_t Compressor::Base::blkSize
protected

◆ chunkSizeBits

const unsigned Compressor::Base::chunkSizeBits
protected

Chunk size, in number of bits.

Definition at line 90 of file base.hh.

Referenced by Base(), fromChunks(), and toChunks().

◆ sizeThreshold

const std::size_t Compressor::Base::sizeThreshold
protected

Size in bytes at which a compression is classified as bad and therefore the compressed block is restored to its uncompressed format.

Definition at line 96 of file base.hh.

Referenced by Base(), and compress().

◆ stats

Compressor::Base::BaseStats Compressor::Base::stats
protected

The documentation for this class was generated from the following files:

Generated on Wed Sep 30 2020 14:02:38 for gem5 by doxygen 1.8.17