gem5
v22.1.0.0
Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
x
Enumerations
_
a
b
c
d
e
f
g
h
i
k
l
m
o
p
q
r
s
t
v
x
Enumerator
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
:
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
y
Enumerations
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
w
Enumerator
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Related Functions
:
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Files
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Functions
a
b
c
d
e
f
g
h
i
l
m
n
o
p
s
t
v
Variables
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
Typedefs
a
b
c
d
g
h
i
l
m
r
s
t
u
w
Enumerations
b
h
i
o
p
Enumerator
h
i
o
Macros
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Modules
Pages
sim
main.cc
Go to the documentation of this file.
1
/*
2
* Copyright (c) 2008 The Hewlett-Packard Development Company
3
* All rights reserved.
4
*
5
* Redistribution and use in source and binary forms, with or without
6
* modification, are permitted provided that the following conditions are
7
* met: redistributions of source code must retain the above copyright
8
* notice, this list of conditions and the following disclaimer;
9
* redistributions in binary form must reproduce the above copyright
10
* notice, this list of conditions and the following disclaimer in the
11
* documentation and/or other materials provided with the distribution;
12
* neither the name of the copyright holders nor the names of its
13
* contributors may be used to endorse or promote products derived from
14
* this software without specific prior written permission.
15
*
16
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
*/
28
29
#include <Python.h>
30
31
#include <iostream>
32
33
#include "pybind11/embed.h"
34
#include "pybind11/pybind11.h"
35
36
#include "
python/embedded.hh
"
37
#include "
sim/init_signals.hh
"
38
39
using namespace
gem5
;
40
41
namespace
py = pybind11;
42
43
// main() is now pretty stripped down and just sets up python and then
44
// calls EmbeddedPython::initAll which loads the various embedded python
45
// modules into the python environment and then starts things running by
46
// running python's m5.main().
47
int
48
main
(
int
argc,
char
**argv)
49
{
50
// Initialize gem5 special signal handling.
51
initSignals
();
52
53
// Convert argv[0] to a wchar_t string, using python's locale and cleanup
54
// functions.
55
std::unique_ptr<
wchar_t
[], decltype(&PyMem_RawFree)> program(
56
Py_DecodeLocale(argv[0],
nullptr
),
57
&PyMem_RawFree);
58
59
// This can help python find libraries at run time relative to this binary.
60
// It's probably not necessary, but is mostly harmless and might be useful.
61
Py_SetProgramName(program.get());
62
63
py::scoped_interpreter guard(
true
, argc, argv);
64
65
auto
importer = py::module_::import(
"importer"
);
66
importer.attr(
"install"
)();
67
68
try
{
69
py::module_::import(
"m5"
).attr(
"main"
)();
70
}
catch
(py::error_already_set &
e
) {
71
if
(
e
.matches(PyExc_SystemExit))
72
return
e
.value().attr(
"code"
).cast<
int
>();
73
74
std::cerr <<
e
.what();
75
return
1;
76
}
77
78
return
0;
79
}
embedded.hh
init_signals.hh
main
int main(int argc, char **argv)
Definition:
main.cc:48
gem5::ArmISA::e
Bitfield< 9 > e
Definition:
misc_types.hh:65
gem5
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
Definition:
gpu_translation_state.hh:38
gem5::initSignals
void initSignals()
Definition:
init_signals.cc:185
Generated on Wed Dec 21 2022 10:22:39 for gem5 by
doxygen
1.9.1