Searched refs:StdCellLib (Results 1 - 25 of 28) sorted by relevance

12

/gem5/ext/dsent/model/std_cells/
H A DStdCellLib.h33 class StdCellLib class in namespace:DSENT
36 StdCellLib(TechModel* tech_model_);
37 ~StdCellLib();
60 StdCellLib* clone() const;
64 StdCellLib(const StdCellLib& std_cell_lib_);
80 }; // class StdCellLib
H A DStdCellLib.cc22 #include "model/std_cells/StdCellLib.h"
34 StdCellLib::StdCellLib(TechModel* tech_model_) function in class:DSENT::StdCellLib
38 ASSERT((m_tech_model_ != NULL), "[Error] StdCellLib -> tech_model is NULL");
42 StdCellLib::~StdCellLib()
47 const TechModel* StdCellLib::getTechModel() const
52 StdCell* StdCellLib::createStdCell(const String& std_cell_name_, const String& instance_name_) const
67 double StdCellLib::getPToNRatio() const
72 void StdCellLib
[all...]
H A DNAND2.h41 void cacheStdCell(StdCellLib* cell_lib_, double drive_strength_);
H A DNOR2.h41 void cacheStdCell(StdCellLib* cell_lib_, double drive_strength_);
H A DADDF.h42 void cacheStdCell(StdCellLib* cell_lib_, double drive_strength_);
H A DAND2.h40 void cacheStdCell(StdCellLib* cell_lib_, double drive_strength_);
H A DBUF.h40 void cacheStdCell(StdCellLib* cell_lib_, double drive_strength_);
H A DDFFQ.h42 void cacheStdCell(StdCellLib* cell_lib_, double drive_strength_);
H A DINV.h41 void cacheStdCell(StdCellLib* cell_lib_, double drive_strength_);
H A DLATQ.h41 void cacheStdCell(StdCellLib* cell_lib_, double drive_strength_);
H A DMUX2.h41 void cacheStdCell(StdCellLib* cell_lib_, double drive_strength_);
H A DOR2.h40 void cacheStdCell(StdCellLib* cell_lib_, double drive_strength_);
H A DXOR2.h41 void cacheStdCell(StdCellLib* cell_lib_, double drive_strength_);
H A DStdCell.h54 virtual void cacheStdCell(StdCellLib* cell_lib_, double drive_strength_) = 0;
H A DBUF.cc29 #include "model/std_cells/StdCellLib.h"
154 void BUF::cacheStdCell(StdCellLib* cell_lib_, double drive_strength_)
H A DINV.cc30 #include "model/std_cells/StdCellLib.h"
167 void INV::cacheStdCell(StdCellLib* cell_lib_, double drive_strength_)
H A DAND2.cc29 #include "model/std_cells/StdCellLib.h"
201 void AND2::cacheStdCell(StdCellLib* cell_lib_, double drive_strength_)
H A DNAND2.cc29 #include "model/std_cells/StdCellLib.h"
197 void NAND2::cacheStdCell(StdCellLib* cell_lib_, double drive_strength_)
H A DNOR2.cc29 #include "model/std_cells/StdCellLib.h"
196 void NOR2::cacheStdCell(StdCellLib* cell_lib_, double drive_strength_)
H A DOR2.cc29 #include "model/std_cells/StdCellLib.h"
197 void OR2::cacheStdCell(StdCellLib* cell_lib_, double drive_strength_)
H A DXOR2.cc29 #include "model/std_cells/StdCellLib.h"
216 void XOR2::cacheStdCell(StdCellLib* cell_lib_, double drive_strength_)
H A DLATQ.cc29 #include "model/std_cells/StdCellLib.h"
226 void LATQ::cacheStdCell(StdCellLib* cell_lib_, double drive_strength_)
/gem5/ext/dsent/tech/
H A DTechModel.h33 class StdCellLib;
53 void setStdCellLib(const StdCellLib* std_cell_lib_);
55 const StdCellLib* getStdCellLib() const;
88 const StdCellLib* m_std_cell_lib_;
H A DTechModel.cc26 #include "model/std_cells/StdCellLib.h"
42 void TechModel::setStdCellLib(const StdCellLib* std_cell_lib_)
48 const StdCellLib* TechModel::getStdCellLib() const
/gem5/ext/dsent/
H A DDSENT.cc26 #include "model/std_cells/StdCellLib.h"
269 // Allocate static StdCellLib instance
270 StdCellLib* std_cell_lib = new StdCellLib(tech_model);
272 // Set the StdCellLib pointer in static TechModel instance

Completed in 28 milliseconds

12