gem5/ext/dsent/util/Config.h
Nilay Vaish e8ed7b1d1b ext: add the source code for DSENT
This patch adds a tool called DSENT to the ext/ directory.  DSENT
is a tool that models power and area for on-chip networks.  The next
patch adds a script for using the tool.
2014-10-11 15:02:23 -05:00

41 lines
901 B
C++

#ifndef __DSENT_UTIL_CONFIG_H__
#define __DSENT_UTIL_CONFIG_H__
#include "util/CommonType.h"
namespace DSENT
{
class TechModel;
class StdCellLib;
class Config : public LibUtil::Config
{
public:
static void allocate(const String& cfg_file_name_);
static void release();
static Config* getSingleton();
protected:
static Config* ms_singleton_;
public:
Config();
~Config();
public:
void setTechModel(const TechModel* tech_model_);
const TechModel* getTechModel() const;
void constructTechModel(const String& overwrite_str_);
protected:
void readFile(const String& file_name_);
protected:
const TechModel* m_tech_model_;
}; // class Config
} // namespace DSENT
#endif // __DSENT_UTIL_CONFIG_H__