gem5
v20.1.0.0
|
Base for peer classes of SimObjectParams derived classes with parameter modifying member functions. More...
#include <cxx_config.hh>
Public Types | |
typedef uint32_t | FlagsType |
Flags passable to setParam... More... | |
typedef ::Flags< FlagsType > | Flags |
Public Member Functions | |
virtual void | setName (const std::string &name_) |
Example flag. More... | |
virtual const std::string & | getName () |
Get full path name string. More... | |
virtual bool | setSimObject (const std::string &name, SimObject *simObject) |
Set a SimObject valued parameter with a reference to the given SimObject. More... | |
virtual bool | setSimObjectVector (const std::string &name, const std::vector< SimObject * > &simObjects) |
As setSimObjectVector but set a whole vector of references. More... | |
virtual bool | setParam (const std::string &name, const std::string &value, const Flags flags) |
Set a parameter with a value parsed from the given string. More... | |
virtual bool | setParamVector (const std::string &name, const std::vector< std::string > &values, const Flags flags) |
As setParamVector but for parameters given as vectors pre-separated into elements. More... | |
virtual bool | setPortConnectionCount (const std::string &name, unsigned int count) |
Set the number of connections expected for the named port. More... | |
virtual SimObject * | simObjectCreate () |
Create the associated SimObject. More... | |
CxxConfigParams () | |
virtual | ~CxxConfigParams () |
Static Private Attributes | |
static const std::string | invalidName = "<invalid>" |
Base for peer classes of SimObjectParams derived classes with parameter modifying member functions.
C++ configuration will offer objects of these classes to SimObjects as params rather than SimObjectParams objects
Definition at line 123 of file cxx_config.hh.
typedef ::Flags<FlagsType> CxxConfigParams::Flags |
Definition at line 132 of file cxx_config.hh.
typedef uint32_t CxxConfigParams::FlagsType |
Flags passable to setParam...
to smooth over any parsing difference between different config files
Definition at line 131 of file cxx_config.hh.
|
inline |
Definition at line 179 of file cxx_config.hh.
|
inlinevirtual |
Definition at line 181 of file cxx_config.hh.
|
inlinevirtual |
Get full path name string.
Definition at line 142 of file cxx_config.hh.
References invalidName.
Referenced by CxxConfigManager::deleteObjects().
|
inlinevirtual |
Example flag.
Set future object's full path name
Definition at line 139 of file cxx_config.hh.
Referenced by CxxConfigManager::findObjectParams().
|
inlinevirtual |
Set a parameter with a value parsed from the given string.
The parsing regime matches the format of .ini config files. Returns false if the parameter name is not valid or the string cannot be parsed as the type of the parameter
Definition at line 160 of file cxx_config.hh.
Referenced by CxxConfigManager::findObjectParams(), and CxxConfigManager::setParam().
|
inlinevirtual |
As setParamVector but for parameters given as vectors pre-separated into elements.
Definition at line 166 of file cxx_config.hh.
Referenced by CxxConfigManager::findObjectParams(), and CxxConfigManager::setParamVector().
|
inlinevirtual |
Set the number of connections expected for the named port.
Returns false if the port name is not valid
Definition at line 172 of file cxx_config.hh.
Referenced by CxxConfigManager::findObjectParams().
|
inlinevirtual |
Set a SimObject valued parameter with a reference to the given SimObject.
This will return false if the parameter name is not valid or the object is of the wrong type
Definition at line 147 of file cxx_config.hh.
Referenced by CxxConfigManager::findObject(), and CxxConfigManager::findObjectParams().
|
inlinevirtual |
As setSimObjectVector but set a whole vector of references.
Definition at line 152 of file cxx_config.hh.
Referenced by CxxConfigManager::findObject(), and CxxConfigManager::findObjectParams().
|
inlinevirtual |
Create the associated SimObject.
Definition at line 177 of file cxx_config.hh.
Referenced by CxxConfigManager::findObject().
|
staticprivate |
Definition at line 126 of file cxx_config.hh.
Referenced by getName().