aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenedikt Tutzer <e1225461@student.tuwien.ac.at>2018-08-20 15:11:06 +0200
committerBenedikt Tutzer <e1225461@student.tuwien.ac.at>2018-08-20 15:11:06 +0200
commit6d18837d62436b297b34c20d5a005ef0b6a75da2 (patch)
tree2ca891b33af29e9e7f47679bc81cd1e02e28bd29
parent5864db3c2bf353d4ee124d35aa2f911c4249edbc (diff)
downloadyosys-6d18837d62436b297b34c20d5a005ef0b6a75da2.tar.gz
yosys-6d18837d62436b297b34c20d5a005ef0b6a75da2.tar.bz2
yosys-6d18837d62436b297b34c20d5a005ef0b6a75da2.zip
Python passes are now looked for in share/plugins and can be added by specifying a relative or absolute path
-rw-r--r--kernel/yosys.cc5
-rw-r--r--passes/cmds/plugin.cc24
2 files changed, 5 insertions, 24 deletions
diff --git a/kernel/yosys.cc b/kernel/yosys.cc
index 8380fe75d..e36c68752 100644
--- a/kernel/yosys.cc
+++ b/kernel/yosys.cc
@@ -495,10 +495,7 @@ void yosys_setup()
PyImport_AppendInittab((char*)"libyosys", INIT_MODULE);
Py_Initialize();
PyRun_SimpleString("import sys");
- PyRun_SimpleString("sys.path.append(\"./\")");
- //PyRun_SimpleString("import libyosys");
- //PyRun_SimpleString("sys.path.append(\"./plugins\")");
- //PyRun_SimpleString(("sys.path.append(\""+proc_share_dirname()+"plugins\")").c_str());
+ PyRun_SimpleString(("sys.path.append(\""+proc_share_dirname()+"plugins\")").c_str());
#endif
Pass::init_register();
diff --git a/passes/cmds/plugin.cc b/passes/cmds/plugin.cc
index b5d22a84a..940092301 100644
--- a/passes/cmds/plugin.cc
+++ b/passes/cmds/plugin.cc
@@ -49,10 +49,12 @@ void load_plugin(std::string filename, std::vector<std::string> aliases)
#ifdef WITH_PYTHON
if(boost::algorithm::ends_with(filename, ".py"))
{
- int last_slash = filename.find('/');
+ int last_slash = filename.find_last_of('/');
+ std::string path = filename.substr(0, last_slash);
filename = filename.substr(last_slash+1, filename.size());
filename = filename.substr(0,filename.size()-3);
- PyObject *filename_p = PyUnicode_FromString(filename.c_str());//filename.c_str());
+ PyRun_SimpleString(("sys.path.insert(0,\""+path+"\")").c_str());
+ PyObject *filename_p = PyUnicode_FromString(filename.c_str());
if(filename_p == NULL)
{
log_cmd_error("Issues converting `%s' to Python\n", filename.c_str());
@@ -63,25 +65,7 @@ void load_plugin(std::string filename, std::vector<std::string> aliases)
{
log_cmd_error("Can't load python module `%s'\n", filename.c_str());
return;
- }/*
- PyObject *dict_p = PyModule_GetDict(module_p);
- if(dict_p == NULL)
- {
- log_cmd_error("Can't load dictionary from module `%s'\n", filename.c_str());
- return;
- }
- PyObject *func_p = PyDict_GetItemString(dict_p, "test");
- if(module_p == NULL)
- {
- log_cmd_error("Module `%s' does not contain test function\n", filename.c_str());
- return;
}
- PyObject *args_p = PyTuple_New(0);
- PyObject *result_p = PyObject_CallObject(func_p, args_p);
- if(result_p == NULL)
- printf("Calling test failed\n");
- printf("Loaded Python module\n");
- */
loaded_python_plugins[orig_filename] = module_p;
Pass::init_register();
} else {