gem5
v20.1.0.0
arch
x86
linux
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 __X86_LINUX_PROCESS_HH__
39
#define __X86_LINUX_PROCESS_HH__
40
41
#include "
arch/x86/linux/linux.hh
"
42
#include "
arch/x86/process.hh
"
43
#include "
sim/process.hh
"
44
#include "
sim/syscall_abi.hh
"
45
46
struct
ProcessParams;
47
struct
ThreadContext
;
48
49
namespace
X86ISA
50
{
51
52
class
X86_64LinuxProcess
:
public
X86_64Process
53
{
54
public
:
55
using
X86_64Process::X86_64Process
;
56
void
syscall
(
ThreadContext
*tc)
override
;
57
void
clone
(
ThreadContext
*old_tc,
ThreadContext
*new_tc,
Process
*process,
58
RegVal
flags)
override
;
59
60
struct
SyscallABI
:
public
GenericSyscallABI64
,
public
X86Linux::SyscallABI
61
{
62
static
const
std::vector<IntRegIndex>
ArgumentRegs
;
63
};
64
};
65
66
class
I386LinuxProcess
:
public
I386Process
67
{
68
public
:
69
using
I386Process::I386Process
;
70
void
syscall
(
ThreadContext
*tc)
override
;
71
void
clone
(
ThreadContext
*old_tc,
ThreadContext
*new_tc,
Process
*process,
72
RegVal
flags)
override
;
73
74
struct
SyscallABI
:
public
GenericSyscallABI32
,
public
X86Linux::SyscallABI
75
{
76
static
const
std::vector<IntRegIndex>
ArgumentRegs
;
77
};
78
};
79
80
}
// namespace X86ISA
81
82
namespace
GuestABI
83
{
84
85
template
<
typename
Arg>
86
struct
Argument
<
X86ISA
::I386LinuxProcess::SyscallABI, Arg,
87
typename std::enable_if<
88
X86ISA::I386LinuxProcess::SyscallABI::IsWide<Arg>::value>
::type
>
89
{
90
using
ABI
=
X86ISA::I386LinuxProcess::SyscallABI
;
91
92
static
Arg
93
get
(
ThreadContext
*tc,
typename
ABI::State
&state)
94
{
95
panic_if
(state + 1 >=
ABI::ArgumentRegs
.size(),
96
"Ran out of syscall argument registers."
);
97
auto
low =
ABI::ArgumentRegs
[state++];
98
auto
high =
ABI::ArgumentRegs
[state++];
99
return
(Arg)ABI::mergeRegs(tc, low, high);
100
}
101
};
102
103
}
// namespace GuestABI
104
105
#endif // __X86_LINUX_PROCESS_HH__
GuestABI::Argument< X86ISA::I386LinuxProcess::SyscallABI, Arg, typename std::enable_if< X86ISA::I386LinuxProcess::SyscallABI::IsWide< Arg >::value >::type >::get
static Arg get(ThreadContext *tc, typename ABI::State &state)
Definition:
process.hh:93
X86Linux::SyscallABI
Definition:
linux.hh:68
RiscvISA::ArgumentRegs
const std::vector< int > ArgumentRegs
Definition:
registers.hh:100
X86ISA::I386LinuxProcess::SyscallABI::ArgumentRegs
static const std::vector< IntRegIndex > ArgumentRegs
Definition:
process.hh:76
GenericSyscallABI::State
int State
Definition:
syscall_abi.hh:52
Process
Definition:
process.hh:65
GenericSyscallABI64
Definition:
syscall_abi.hh:55
X86ISA::X86_64LinuxProcess::SyscallABI
Definition:
process.hh:60
type
uint8_t type
Definition:
inet.hh:421
std::vector< IntRegIndex >
syscall_abi.hh
X86ISA::X86_64LinuxProcess
Definition:
process.hh:52
X86ISA::X86_64Process
Definition:
process.hh:93
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
GuestABI
Definition:
aapcs32.hh:66
GuestABI::Argument
Definition:
definition.hh:93
process.hh
X86ISA::I386LinuxProcess::clone
void clone(ThreadContext *old_tc, ThreadContext *new_tc, Process *process, RegVal flags) override
Definition:
process.cc:932
X86ISA::I386LinuxProcess
Definition:
process.hh:66
X86ISA::I386LinuxProcess::SyscallABI
Definition:
process.hh:74
X86ISA
This is exposed globally, independent of the ISA.
Definition:
acpi.hh:55
X86ISA::I386Process::I386Process
I386Process(ProcessParams *params, ::Loader::ObjectFile *objFile)
Definition:
process.cc:119
panic_if
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
Definition:
logging.hh:197
X86ISA::X86_64Process::X86_64Process
X86_64Process(ProcessParams *params, ::Loader::ObjectFile *objFile)
Definition:
process.cc:98
process.hh
X86ISA::I386LinuxProcess::syscall
void syscall(ThreadContext *tc) override
Definition:
process.cc:918
linux.hh
X86ISA::X86_64LinuxProcess::SyscallABI::ArgumentRegs
static const std::vector< IntRegIndex > ArgumentRegs
Definition:
process.hh:62
X86ISA::X86_64LinuxProcess::syscall
void syscall(ThreadContext *tc) override
Definition:
process.cc:569
X86ISA::X86_64LinuxProcess::clone
void clone(ThreadContext *old_tc, ThreadContext *new_tc, Process *process, RegVal flags) override
Definition:
process.cc:576
GenericSyscallABI32
Definition:
syscall_abi.hh:58
RegVal
uint64_t RegVal
Definition:
types.hh:168
Generated on Wed Sep 30 2020 14:02:00 for gem5 by
doxygen
1.8.17