Merge with head.

--HG--
extra : convert_revision : 19bea7995285eeb7e277d3064f427429ade2bcb8
This commit is contained in:
Gabe Black 2007-09-04 23:46:08 -07:00
commit 57da059415
3 changed files with 19 additions and 27 deletions

View file

@ -47,7 +47,6 @@ extern const char *compileDate;
void setOutputDir(const std::string &dir);
void setOutputFile(const std::string &file);
void loadIniFile(PyObject *);
void SimStartup();
void doExitCleanup();

View file

@ -141,11 +141,6 @@ inifile()
return inifile;
}
/**
* Pointer to the Python function that maps names to SimObjects.
*/
PyObject *resolveFunc = NULL;
/**
* Convert a pointer to the Python object that SWIG wraps around a C++
* SimObject pointer back to the actual C++ pointer. See main.i.
@ -155,29 +150,29 @@ extern "C" SimObject *convertSwigSimObjectPtr(PyObject *);
SimObject *
resolveSimObject(const string &name)
{
PyObject *pyPtr = PyEval_CallFunction(resolveFunc, "(s)", name.c_str());
if (pyPtr == NULL) {
PyObject *module = PyImport_ImportModule("m5.SimObject");
if (module == NULL)
panic("Could not import m5.SimObject");
PyObject *resolver = PyObject_GetAttrString(module, "resolveSimObject");
if (resolver == NULL) {
PyErr_Print();
panic("resolveSimObject: failed to find resolveSimObject");
}
PyObject *ptr = PyObject_CallFunction(resolver, "(s)", name.c_str());
if (ptr == NULL) {
PyErr_Print();
panic("resolveSimObject: failure on call to Python for %s", name);
}
SimObject *simObj = convertSwigSimObjectPtr(pyPtr);
if (simObj == NULL)
SimObject *obj = convertSwigSimObjectPtr(ptr);
if (obj == NULL)
panic("resolveSimObject: failure on pointer conversion for %s", name);
return simObj;
Py_DECREF(module);
Py_DECREF(resolver);
Py_DECREF(ptr);
return obj;
}
/**
* Load config.ini into C++ database. Exported to Python via SWIG;
* invoked from m5.instantiate().
*/
void
loadIniFile(PyObject *_resolveFunc)
{
resolveFunc = _resolveFunc;
// The configuration database is now complete; start processing it.
inifile().load(simout.resolve("config.ini"));
}

View file

@ -38,8 +38,6 @@
extern "C" SimObject *convertSwigSimObjectPtr(PyObject *);
SimObject *resolveSimObject(const std::string &name);
void loadIniFile(PyObject *_resolveFunc);
/**
* Connect the described MemObject ports. Called from Python via SWIG.