gem5
v20.1.0.0
arch
x86
process.hh
Go to the documentation of this file.
1
/*
2
* Copyright (c) 2007 The Hewlett-Packard Development Company
3
* All rights reserved.
4
*
5
* The license below extends only to copyright in the software and shall
6
* not be construed as granting a license to any other intellectual
7
* property including but not limited to intellectual property relating
8
* to a hardware implementation of the functionality of the software
9
* licensed hereunder. You may use the software subject to the license
10
* terms below provided that you ensure that this notice is replicated
11
* unmodified and in its entirety in all distributions of the software,
12
* modified or unmodified, in source code or in binary form.
13
*
14
* Redistribution and use in source and binary forms, with or without
15
* modification, are permitted provided that the following conditions are
16
* met: redistributions of source code must retain the above copyright
17
* notice, this list of conditions and the following disclaimer;
18
* redistributions in binary form must reproduce the above copyright
19
* notice, this list of conditions and the following disclaimer in the
20
* documentation and/or other materials provided with the distribution;
21
* neither the name of the copyright holders nor the names of its
22
* contributors may be used to endorse or promote products derived from
23
* this software without specific prior written permission.
24
*
25
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
28
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
29
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
31
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36
*/
37
38
#ifndef __ARCH_X86_PROCESS_HH__
39
#define __ARCH_X86_PROCESS_HH__
40
41
#include <string>
42
#include <vector>
43
44
#include "
arch/x86/pagetable.hh
"
45
#include "
mem/multi_level_page_table.hh
"
46
#include "
sim/aux_vector.hh
"
47
#include "
sim/process.hh
"
48
49
class
SyscallDesc
;
50
51
namespace
X86ISA
52
{
53
enum
X86AuxiliaryVectorTypes
{
54
M5_AT_SYSINFO
= 32,
55
M5_AT_SYSINFO_EHDR
= 33
56
};
57
58
class
X86Process
:
public
Process
59
{
60
protected
:
61
Addr
_gdtStart
;
62
Addr
_gdtSize
;
63
64
X86Process
(ProcessParams *
params
, ::
Loader::ObjectFile
*
objFile
);
65
66
template
<
class
IntType>
67
void
argsInit
(
int
pageSize,
68
std::vector
<
AuxVector<IntType>
> extraAuxvs);
69
70
public
:
71
Addr
gdtStart
()
72
{
return
_gdtStart
; }
73
74
Addr
gdtSize
()
75
{
return
_gdtSize
; }
76
77
void
clone
(
ThreadContext
*old_tc,
ThreadContext
*new_tc,
78
Process
*process,
RegVal
flags)
override
;
79
80
X86Process
&
81
operator=
(
const
X86Process
&in)
82
{
83
if
(
this
== &in)
84
return
*
this
;
85
86
_gdtStart
= in.
_gdtStart
;
87
_gdtSize
= in.
_gdtSize
;
88
89
return
*
this
;
90
}
91
};
92
93
class
X86_64Process
:
public
X86Process
94
{
95
protected
:
96
class
VSyscallPage
97
{
98
public
:
99
Addr
base
;
100
Addr
size
;
101
Addr
vtimeOffset
;
102
Addr
vgettimeofdayOffset
;
103
104
VSyscallPage
&
105
operator=
(
const
VSyscallPage
&in)
106
{
107
if
(
this
== &in)
108
return
*
this
;
109
110
base
= in.
base
;
111
size
= in.
size
;
112
vtimeOffset
= in.
vtimeOffset
;
113
vgettimeofdayOffset
= in.
vgettimeofdayOffset
;
114
115
return
*
this
;
116
}
117
};
118
VSyscallPage
vsyscallPage
;
119
120
public
:
121
X86_64Process
(ProcessParams *
params
, ::
Loader::ObjectFile
*
objFile
);
122
123
void
argsInit
(
int
pageSize);
124
void
initState
()
override
;
125
126
void
clone
(
ThreadContext
*old_tc,
ThreadContext
*new_tc,
127
Process
*process,
RegVal
flags)
override
;
128
};
129
130
class
I386Process
:
public
X86Process
131
{
132
protected
:
133
class
VSyscallPage
134
{
135
public
:
136
Addr
base
;
137
Addr
size
;
138
Addr
vsyscallOffset
;
139
Addr
vsysexitOffset
;
140
141
VSyscallPage
&
142
operator=
(
const
VSyscallPage
&in)
143
{
144
if
(
this
== &in)
145
return
*
this
;
146
147
base
= in.
base
;
148
size
= in.
size
;
149
vsyscallOffset
= in.
vsyscallOffset
;
150
vsysexitOffset
= in.
vsysexitOffset
;
151
152
return
*
this
;
153
}
154
};
155
VSyscallPage
vsyscallPage
;
156
157
public
:
158
I386Process
(ProcessParams *
params
, ::
Loader::ObjectFile
*
objFile
);
159
160
void
argsInit
(
int
pageSize);
161
void
initState
()
override
;
162
163
void
clone
(
ThreadContext
*old_tc,
ThreadContext
*new_tc,
164
Process
*process,
RegVal
flags)
override
;
165
};
166
167
}
168
169
#endif // __ARCH_X86_PROCESS_HH__
pagetable.hh
X86ISA::M5_AT_SYSINFO_EHDR
@ M5_AT_SYSINFO_EHDR
Definition:
process.hh:55
X86ISA::X86Process
Definition:
process.hh:58
X86ISA::I386Process::initState
void initState() override
initState() is called on each SimObject when not restoring from a checkpoint.
Definition:
process.cc:588
Process
Definition:
process.hh:65
X86ISA::I386Process::VSyscallPage::vsyscallOffset
Addr vsyscallOffset
Definition:
process.hh:138
X86ISA::X86Process::operator=
X86Process & operator=(const X86Process &in)
Definition:
process.hh:81
X86ISA::X86Process::clone
void clone(ThreadContext *old_tc, ThreadContext *new_tc, Process *process, RegVal flags) override
Definition:
process.cc:90
std::vector
STL vector class.
Definition:
stl.hh:37
X86ISA::M5_AT_SYSINFO
@ M5_AT_SYSINFO
Definition:
process.hh:54
X86ISA::I386Process::VSyscallPage::vsysexitOffset
Addr vsysexitOffset
Definition:
process.hh:139
X86ISA::X86_64Process::VSyscallPage
Definition:
process.hh:96
X86ISA::I386Process::VSyscallPage::size
Addr size
Definition:
process.hh:137
X86ISA::X86_64Process::VSyscallPage::size
Addr size
Definition:
process.hh:100
Loader::ObjectFile
Definition:
object_file.hh:70
X86ISA::X86_64Process
Definition:
process.hh:93
AuxVector
Definition:
aux_vector.hh:38
X86ISA::X86_64Process::vsyscallPage
VSyscallPage vsyscallPage
Definition:
process.hh:118
ThreadContext
ThreadContext is the external interface to all thread state for anything outside of the CPU.
Definition:
thread_context.hh:88
X86ISA::I386Process
Definition:
process.hh:130
multi_level_page_table.hh
X86ISA::I386Process::argsInit
void argsInit(int pageSize)
Definition:
process.cc:999
X86ISA::X86Process::_gdtStart
Addr _gdtStart
Definition:
process.hh:61
process.hh
X86ISA::X86_64Process::argsInit
void argsInit(int pageSize)
Definition:
process.cc:991
X86ISA::X86AuxiliaryVectorTypes
X86AuxiliaryVectorTypes
Definition:
process.hh:53
X86ISA::X86Process::gdtStart
Addr gdtStart()
Definition:
process.hh:71
X86ISA
This is exposed globally, independent of the ISA.
Definition:
acpi.hh:55
Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition:
types.hh:142
Process::objFile
::Loader::ObjectFile * objFile
Definition:
process.hh:213
X86ISA::X86_64Process::clone
void clone(ThreadContext *old_tc, ThreadContext *new_tc, Process *process, RegVal flags) override
Definition:
process.cc:1010
SimObject::params
const Params * params() const
Definition:
sim_object.hh:119
X86ISA::I386Process::VSyscallPage
Definition:
process.hh:133
X86ISA::I386Process::I386Process
I386Process(ProcessParams *params, ::Loader::ObjectFile *objFile)
Definition:
process.cc:119
X86ISA::X86_64Process::VSyscallPage::operator=
VSyscallPage & operator=(const VSyscallPage &in)
Definition:
process.hh:105
X86ISA::X86Process::X86Process
X86Process(ProcessParams *params, ::Loader::ObjectFile *objFile)
Definition:
process.cc:79
X86ISA::X86_64Process::VSyscallPage::vgettimeofdayOffset
Addr vgettimeofdayOffset
Definition:
process.hh:102
X86ISA::X86_64Process::X86_64Process
X86_64Process(ProcessParams *params, ::Loader::ObjectFile *objFile)
Definition:
process.cc:98
aux_vector.hh
X86ISA::X86Process::_gdtSize
Addr _gdtSize
Definition:
process.hh:62
X86ISA::X86_64Process::VSyscallPage::vtimeOffset
Addr vtimeOffset
Definition:
process.hh:101
X86ISA::I386Process::clone
void clone(ThreadContext *old_tc, ThreadContext *new_tc, Process *process, RegVal flags) override
Definition:
process.cc:1018
X86ISA::I386Process::vsyscallPage
VSyscallPage vsyscallPage
Definition:
process.hh:155
X86ISA::I386Process::VSyscallPage::base
Addr base
Definition:
process.hh:136
X86ISA::X86Process::gdtSize
Addr gdtSize()
Definition:
process.hh:74
X86ISA::X86Process::argsInit
void argsInit(int pageSize, std::vector< AuxVector< IntType > > extraAuxvs)
Definition:
process.cc:708
X86ISA::X86_64Process::initState
void initState() override
initState() is called on each SimObject when not restoring from a checkpoint.
Definition:
process.cc:146
X86ISA::I386Process::VSyscallPage::operator=
VSyscallPage & operator=(const VSyscallPage &in)
Definition:
process.hh:142
RegVal
uint64_t RegVal
Definition:
types.hh:168
X86ISA::X86_64Process::VSyscallPage::base
Addr base
Definition:
process.hh:99
SyscallDesc
This class provides the wrapper interface for the system call implementations which are defined in th...
Definition:
syscall_desc.hh:66
Generated on Wed Sep 30 2020 14:02:00 for gem5 by
doxygen
1.8.17