gem5 v24.0.0.0
Loading...
Searching...
No Matches
linux.hh
Go to the documentation of this file.
1/*
2 * Copyright (c) 2003-2005 The Regents of The University of Michigan
3 * Copyright (c) 2009 The University of Edinburgh
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met: redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer;
10 * redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution;
13 * neither the name of the copyright holders nor the names of its
14 * contributors may be used to endorse or promote products derived from
15 * this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 */
29
30#ifndef __ARCH_POWER_LINUX_LINUX_HH__
31#define __ARCH_POWER_LINUX_LINUX_HH__
32
33#include <map>
34
35#include "arch/power/isa.hh"
37#include "cpu/thread_context.hh"
39#include "kern/linux/linux.hh"
40
41namespace gem5
42{
43
44/*
45 * This works for a 2.6.15 kernel.
46 */
47
48class PowerLinux : public Linux, public OpenFlagTable<PowerLinux>
49{
50 public:
51
52 static const ByteOrder byteOrder = ByteOrder::big;
53
54 typedef int32_t time_t;
55
56 struct tgt_stat
57 {
58 uint64_t st_dev;
59 uint32_t __pad1;
60 uint32_t st_ino;
61 uint32_t st_mode;
62 uint32_t st_nlink;
63 uint32_t st_uid;
64 uint32_t st_gid;
65 uint64_t st_rdev;
66 uint32_t __pad2;
67 uint32_t st_size;
68 uint32_t st_blksize;
69 uint32_t st_blocks;
70 uint32_t st_atimeX;
71 uint32_t st_atime_nsec;
72 uint32_t st_mtimeX;
73 uint32_t st_mtime_nsec;
74 uint32_t st_ctimeX;
75 uint32_t st_ctime_nsec;
76 uint32_t __unused4;
77 uint32_t __unused5;
78 };
79
81 {
82 uint64_t st_dev;
83 uint64_t st_ino;
84 uint32_t st_mode;
85 uint32_t st_nlink;
86 uint32_t st_uid;
87 uint32_t st_gid;
88 uint64_t st_rdev;
89 uint64_t __pad2;
90 uint64_t st_size;
91 uint32_t st_blksize;
92 uint32_t __blksize_pad;
93 uint64_t st_blocks;
94 uint32_t st_atimeX;
95 uint32_t st_atime_nsec;
96 uint32_t st_mtimeX;
97 uint32_t st_mtime_nsec;
98 uint32_t st_ctimeX;
99 uint32_t st_ctime_nsec;
100 uint32_t __unused4;
101 uint32_t __unused5;
102 };
103
105 struct tms
106 {
107 int32_t tms_utime;
108 int32_t tms_stime;
109 int32_t tms_cutime;
110 int32_t tms_cstime;
111 };
112
113 static const int TGT_SIGHUP = 0x000001;
114 static const int TGT_SIGINT = 0x000002;
115 static const int TGT_SIGQUIT = 0x000003;
116 static const int TGT_SIGILL = 0x000004;
117 static const int TGT_SIGTRAP = 0x000005;
118 static const int TGT_SIGABRT = 0x000006;
119 static const int TGT_SIGIOT = 0x000006;
120 static const int TGT_SIGBUS = 0x000007;
121 static const int TGT_SIGFPE = 0x000008;
122 static const int TGT_SIGKILL = 0x000009;
123 static const int TGT_SIGUSR1 = 0x00000a;
124 static const int TGT_SIGSEGV = 0x00000b;
125 static const int TGT_SIGUSR2 = 0x00000c;
126 static const int TGT_SIGPIPE = 0x00000d;
127 static const int TGT_SIGALRM = 0x00000e;
128 static const int TGT_SIGTERM = 0x00000f;
129 static const int TGT_SIGSTKFLT = 0x000010;
130 static const int TGT_SIGCHLD = 0x000011;
131 static const int TGT_SIGCONT = 0x000012;
132 static const int TGT_SIGSTOP = 0x000013;
133 static const int TGT_SIGTSTP = 0x000014;
134 static const int TGT_SIGTTIN = 0x000015;
135 static const int TGT_SIGTTOU = 0x000016;
136 static const int TGT_SIGURG = 0x000017;
137 static const int TGT_SIGXCPU = 0x000018;
138 static const int TGT_SIGXFSZ = 0x000019;
139 static const int TGT_SIGVTALRM = 0x00001a;
140 static const int TGT_SIGPROF = 0x00001b;
141 static const int TGT_SIGWINCH = 0x00001c;
142 static const int TGT_SIGIO = 0x00001d;
143 static const int TGT_SIGPOLL = 0x00001d;
144 static const int TGT_SIGPWR = 0x00001e;
145 static const int TGT_SIGSYS = 0x00001f;
146 static const int TGT_SIGUNUSED = 0x00001f;
147
149
150 static constexpr int TGT_O_RDONLY = 000000000;
151 static constexpr int TGT_O_WRONLY = 000000001;
152 static constexpr int TGT_O_RDWR = 000000002;
153 static constexpr int TGT_O_CREAT = 000000100;
154 static constexpr int TGT_O_EXCL = 000000200;
155 static constexpr int TGT_O_NOCTTY = 000000400;
156 static constexpr int TGT_O_TRUNC = 000001000;
157 static constexpr int TGT_O_APPEND = 000002000;
158 static constexpr int TGT_O_NONBLOCK = 000004000;
159 static constexpr int TGT_O_DSYNC = 000010000;
160 static constexpr int TGT_FASYNC = 000020000;
161 static constexpr int TGT_O_DIRECT = 000400000;
162 static constexpr int TGT_O_LARGEFILE = 000200000;
163 static constexpr int TGT_O_DIRECTORY = 000040000;
164 static constexpr int TGT_O_NOFOLLOW = 000100000;
165 static constexpr int TGT_O_NOATIME = 001000000;
166 static constexpr int TGT_O_CLOEXEC = 002000000;
167 static constexpr int TGT_O_SYNC = 004010000;
168 static constexpr int TGT_O_PATH = 010000000;
170
171 static constexpr unsigned TGT_MAP_SHARED = 0x00001;
172 static constexpr unsigned TGT_MAP_PRIVATE = 0x00002;
173 static constexpr unsigned TGT_MAP_ANON = 0x00020;
174 static constexpr unsigned TGT_MAP_DENYWRITE = 0x00800;
175 static constexpr unsigned TGT_MAP_EXECUTABLE = 0x01000;
176 static constexpr unsigned TGT_MAP_FILE = 0x00000;
177 static constexpr unsigned TGT_MAP_GROWSDOWN = 0x00100;
178 static constexpr unsigned TGT_MAP_HUGETLB = 0x40000;
179 static constexpr unsigned TGT_MAP_LOCKED = 0x00080;
180 static constexpr unsigned TGT_MAP_NONBLOCK = 0x10000;
181 static constexpr unsigned TGT_MAP_NORESERVE = 0x00040;
182 static constexpr unsigned TGT_MAP_POPULATE = 0x08000;
183 static constexpr unsigned TGT_MAP_STACK = 0x20000;
184 static constexpr unsigned TGT_MAP_ANONYMOUS = 0x00020;
185 static constexpr unsigned TGT_MAP_FIXED = 0x00010;
186
188
189 static const unsigned TGT_TIOCGETP = 0x40067408;
190 static const unsigned TGT_TIOCSETP = 0x80067409;
191 static const unsigned TGT_TIOCSETN = 0x8006740a;
192 static const unsigned TGT_TIOCSETC = 0x80067411;
193 static const unsigned TGT_TIOCGETC = 0x40067412;
194 static const unsigned TGT_FIONREAD = 0x4004667f;
195 static const unsigned TGT_TCGETS = 0x402c7413;
196 static const unsigned TGT_TCGETA = 0x40127417;
197 static const unsigned TGT_TCSETAW = 0x80147419; // 2.6.15 kernel
199
200 static bool
201 isTtyReq(unsigned req)
202 {
203 switch (req) {
204 case TGT_TIOCGETP:
205 case TGT_TIOCSETP:
206 case TGT_TIOCSETN:
207 case TGT_TIOCSETC:
208 case TGT_TIOCGETC:
209 case TGT_TCGETS:
210 case TGT_TCGETA:
211 case TGT_TCSETAW:
212 return true;
213 default:
214 return false;
215 }
216 }
217
218 static void
219 archClone(uint64_t flags,
220 Process *pp, Process *cp,
222 uint64_t stack, uint64_t tls)
223 {
224 ctc->getIsaPtr()->copyRegsFrom(ptc);
225
228
229 if (stack)
231 }
232};
233
234} // namespace gem5
235
236#endif // __ARCH_POWER_LINUX_LINUX_HH__
virtual void copyRegsFrom(ThreadContext *src)=0
This class encapsulates the types, structures, constants, functions, and syscall-number mappings spec...
Definition linux.hh:62
static const unsigned TGT_CLONE_SETTLS
Definition linux.hh:319
static const int TGT_SIGQUIT
Definition linux.hh:115
static const unsigned TGT_TIOCGETC
Definition linux.hh:193
static constexpr int TGT_O_DSYNC
O_DSYNC.
Definition linux.hh:159
static const int TGT_SIGALRM
Definition linux.hh:127
static constexpr int TGT_O_WRONLY
O_WRONLY.
Definition linux.hh:151
static const unsigned TGT_TCGETA
Definition linux.hh:196
static const unsigned TGT_TIOCGETP
ioctl() command codes.
Definition linux.hh:189
static constexpr int TGT_O_EXCL
O_EXCL.
Definition linux.hh:154
static constexpr int TGT_O_DIRECTORY
O_DIRECTORY.
Definition linux.hh:163
static const int TGT_SIGBUS
Definition linux.hh:120
static const int TGT_SIGKILL
Definition linux.hh:122
static const int TGT_SIGXFSZ
Definition linux.hh:138
static constexpr unsigned TGT_MAP_ANONYMOUS
Definition linux.hh:184
static constexpr unsigned TGT_MAP_ANON
Definition linux.hh:173
static constexpr unsigned TGT_MAP_NORESERVE
Definition linux.hh:181
static constexpr unsigned TGT_MAP_NONBLOCK
Definition linux.hh:180
static constexpr int TGT_FASYNC
FASYNC.
Definition linux.hh:160
static const int TGT_SIGCHLD
Definition linux.hh:130
static constexpr int TGT_O_NONBLOCK
O_NONBLOCK.
Definition linux.hh:158
static constexpr unsigned TGT_MAP_SHARED
Definition linux.hh:171
static const unsigned TGT_TCGETS
Definition linux.hh:195
static constexpr unsigned TGT_MAP_LOCKED
Definition linux.hh:179
static const int TGT_SIGVTALRM
Definition linux.hh:139
static const int TGT_SIGSTKFLT
Definition linux.hh:129
static constexpr int TGT_O_NOFOLLOW
O_NOFOLLOW.
Definition linux.hh:164
static constexpr int TGT_O_PATH
O_PATH.
Definition linux.hh:168
static constexpr int TGT_O_LARGEFILE
O_LARGEFILE.
Definition linux.hh:162
static const int TGT_SIGTERM
Definition linux.hh:128
static const int TGT_SIGUNUSED
Definition linux.hh:146
static const int TGT_SIGXCPU
Definition linux.hh:137
static const int TGT_SIGSTOP
Definition linux.hh:132
static const unsigned TGT_TIOCSETN
Definition linux.hh:191
static const int TGT_SIGTSTP
Definition linux.hh:133
static constexpr int TGT_O_CLOEXEC
O_CLOEXEC.
Definition linux.hh:166
static const int TGT_SIGSYS
Definition linux.hh:145
static const int TGT_SIGPOLL
Definition linux.hh:143
static const int TGT_SIGABRT
Definition linux.hh:118
static const int TGT_SIGIO
Definition linux.hh:142
static constexpr unsigned TGT_MAP_POPULATE
Definition linux.hh:182
static const int TGT_SIGFPE
Definition linux.hh:121
static constexpr unsigned TGT_MAP_FILE
Definition linux.hh:176
static const unsigned TGT_TIOCSETC
Definition linux.hh:192
static const int TGT_SIGPIPE
Definition linux.hh:126
static const int TGT_SIGUSR1
Definition linux.hh:123
int32_t time_t
Definition linux.hh:54
static const int TGT_SIGILL
Definition linux.hh:116
static constexpr unsigned TGT_MAP_HUGETLB
Definition linux.hh:178
static const int TGT_SIGUSR2
Definition linux.hh:125
static const int TGT_SIGCONT
Definition linux.hh:131
static bool isTtyReq(unsigned req)
Definition linux.hh:201
static const int TGT_SIGHUP
Definition linux.hh:113
static const int TGT_SIGSEGV
Definition linux.hh:124
static constexpr unsigned TGT_MAP_DENYWRITE
Definition linux.hh:174
static const int TGT_SIGTRAP
Definition linux.hh:117
static constexpr int TGT_O_DIRECT
O_DIRECT.
Definition linux.hh:161
static const int TGT_SIGTTIN
Definition linux.hh:134
static const unsigned TGT_TIOCSETP
Definition linux.hh:190
static constexpr int TGT_O_RDONLY
open(2) flag values.
Definition linux.hh:150
static constexpr int TGT_O_SYNC
O_SYNC.
Definition linux.hh:167
static constexpr unsigned TGT_MAP_GROWSDOWN
Definition linux.hh:177
static const unsigned TGT_TCSETAW
Definition linux.hh:197
static const int TGT_SIGINT
Definition linux.hh:114
static constexpr int TGT_O_CREAT
O_CREAT.
Definition linux.hh:153
static constexpr int TGT_O_NOATIME
O_NOATIME.
Definition linux.hh:165
static constexpr unsigned TGT_MAP_STACK
Definition linux.hh:183
static constexpr unsigned TGT_MAP_EXECUTABLE
Definition linux.hh:175
static constexpr int TGT_O_NOCTTY
O_NOCTTY.
Definition linux.hh:155
static const int TGT_SIGURG
Definition linux.hh:136
static const int TGT_SIGTTOU
Definition linux.hh:135
static const int TGT_SIGPROF
Definition linux.hh:140
static const int TGT_SIGIOT
Definition linux.hh:119
static const int TGT_SIGPWR
Definition linux.hh:144
static constexpr unsigned TGT_MAP_FIXED
Definition linux.hh:185
static const unsigned TGT_FIONREAD
Definition linux.hh:194
static constexpr int TGT_O_RDWR
O_RDWR.
Definition linux.hh:152
static constexpr int TGT_O_APPEND
O_APPEND.
Definition linux.hh:157
static const ByteOrder byteOrder
Definition linux.hh:52
static const int TGT_SIGWINCH
Definition linux.hh:141
static constexpr int TGT_O_TRUNC
O_TRUNC.
Definition linux.hh:156
static void archClone(uint64_t flags, Process *pp, Process *cp, ThreadContext *ptc, ThreadContext *ctc, uint64_t stack, uint64_t tls)
Definition linux.hh:219
static constexpr unsigned TGT_MAP_PRIVATE
Definition linux.hh:172
ThreadContext is the external interface to all thread state for anything outside of the CPU.
virtual BaseISA * getIsaPtr() const =0
virtual void setReg(const RegId &reg, RegVal val)
uint8_t flags
Definition helpers.cc:87
Bitfield< 7, 0 > ptc
constexpr auto & StackPointerReg
Definition int.hh:160
constexpr auto & ThreadPointerReg
Definition int.hh:162
Bitfield< 17, 16 > stack
Definition misc.hh:602
Copyright (c) 2024 - Pranith Kumar Copyright (c) 2020 Inria All rights reserved.
Definition binary32.hh:36
For times().
Definition linux.hh:106
int32_t tms_cstime
system time of children
Definition linux.hh:110
int32_t tms_cutime
user time of children
Definition linux.hh:109
int32_t tms_utime
user time
Definition linux.hh:107
int32_t tms_stime
system time
Definition linux.hh:108

Generated on Tue Jun 18 2024 16:24:04 for gem5 by doxygen 1.11.0