59 #include "config/have_protobuf.hh" 65 #include <google/protobuf/stubs/common.h> 70 namespace py = pybind11;
74 #define PyCC(x) (const_cast<char *>(x)) 79 const char *modpath,
const unsigned char *code,
int zlen,
int len)
80 : filename(filename), abspath(abspath), modpath(modpath), code(code),
85 if (
string(modpath) ==
string(
"importer"))
105 Bytef marshalled[
len];
107 int ret = uncompress(marshalled, &unzlen, (
const Bytef *)
code,
zlen);
109 panic(
"Could not uncompress code: %s\n", zError(ret));
110 assert(unzlen == (uLongf)
len);
112 return PyMarshal_ReadObjectFromString((
char *)marshalled, len);
148 for (; i != end; ++
i)
149 if (!(*i)->addModule())
156 void (*init_func)(py::module &),
158 : initFunc(init_func), registered(
false),
name(_name),
base(_base)
160 getMap()[_name] =
this;
164 void (*init_func)(py::module &))
165 : initFunc(init_func), registered(
false),
name(_name),
base(
"")
167 getMap()[_name] =
this;
177 cprintf(
"Warning: %s already registered.\n",
name);
184 return base.empty() || getMap()[
base]->registered;
187 std::map<std::string, EmbeddedPyBind *> &
190 static std::map<std::string, EmbeddedPyBind *> objs;
194 #if PY_MAJOR_VERSION >= 3 203 py::module m_m5 = py::module(
"_m5");
204 m_m5.attr(
"__package__") = py::cast(
"_m5");
212 for (
auto &kv : getMap()) {
213 auto &obj = kv.second;
214 if (obj->base.empty()) {
217 pending.push_back(obj);
221 while (!pending.empty()) {
222 for (
auto it = pending.begin(); it != pending.end(); ) {
226 it = pending.erase(it);
233 #if PY_MAJOR_VERSION >= 3 243 panic(
"Failed to add _m5 to Python's inittab\n");
267 GOOGLE_PROTOBUF_VERIFY_VERSION;
271 #if PY_MAJOR_VERSION >= 3 272 typedef std::unique_ptr<wchar_t[], decltype(&PyMem_RawFree)> WArgUPtr;
275 v_argv.reserve(argc);
276 vp_argv.reserve(argc);
277 for (
int i = 0;
i < argc;
i++) {
278 v_argv.emplace_back(Py_DecodeLocale(_argv[
i], NULL), &PyMem_RawFree);
279 vp_argv.emplace_back(v_argv.back().get());
282 wchar_t **argv = vp_argv.data();
287 PySys_SetArgv(argc, argv);
290 PyObject *module = PyImport_AddModule(
PyCC(
"__main__"));
292 panic(
"Could not import __main__");
293 PyObject *dict = PyModule_GetDict(module);
302 result = PyRun_String(*command, Py_file_input, dict, dict);
313 google::protobuf::ShutdownProtobufLibrary();
#define panic(...)
This implements a cprintf based panic() function.
void pybind_init_core(py::module &m_native)
static std::list< EmbeddedPython * > & getList()
void pybind_init_stats(pybind11::module &m_native)
void registerNativeModules()
const std::string & name()
This file defines flags used to handle asynchronous simulator events.
void pybind_init_event(py::module &m_native)
const char * __attribute__((weak)) m5MainCommands[]
static EmbeddedPython * importer
static std::map< std::string, EmbeddedPyBind * > & getMap()
void init(pybind11::module &m)
Overload hash function for BasicBlockRange type.
const char * m5MainCommands[]
static PyObject * importerModule
int m5Main(int argc, char **_argv)
Defines global host-dependent types: Counter, Tick, and (indirectly) {int,uint}{8,16,32,64}_t.
void pybind_init_debug(py::module &m_native)
PyObject * getCode() const
EmbeddedPython(const char *filename, const char *abspath, const char *modpath, const uint8_t *code, int zlen, int len)
void cprintf(const char *format, const Args &...args)
EmbeddedPyBind(const char *_name, void(*init_func)(pybind11::module &), const char *_base)