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 * 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#ifndef __ARCH_SPARC_LINUX_LINUX_HH__
30#define __ARCH_SPARC_LINUX_LINUX_HH__
31
32#include <map>
33
34#include "arch/sparc/asi.hh"
37#include "cpu/thread_context.hh"
39#include "kern/linux/linux.hh"
40
41namespace gem5
42{
43
44class SparcLinux : public Linux, public OpenFlagTable<SparcLinux>
45{
46 public:
47
48 static const ByteOrder byteOrder = ByteOrder::big;
49
50 struct tgt_stat
51 {
52 uint32_t st_dev;
53 char __pad1[4];
54 uint64_t st_ino;
55 uint32_t st_mode;
56 uint16_t st_nlink;
57 uint32_t st_uid;
58 uint32_t st_gid;
59 uint32_t st_rdev;
60 char __pad2[4];
61 int64_t st_size;
62 int64_t st_atimeX;
63 int64_t st_mtimeX;
64 int64_t st_ctimeX;
65 int64_t st_blksize;
66 int64_t st_blocks;
67 uint64_t __unused4[2];
68 };
69
71 {
72 uint64_t st_dev;
73 uint64_t st_ino;
74 uint64_t st_nlink;
75
76 uint32_t st_mode;
77 uint32_t st_uid;
78 uint32_t st_gid;
79 uint32_t __pad0;
80
81 uint64_t st_rdev;
82 int64_t st_size;
83 int64_t st_blksize;
84 int64_t st_blocks;
85
86 uint64_t st_atimeX;
87 uint64_t st_atime_nsec;
88 uint64_t st_mtimeX;
89 uint64_t st_mtime_nsec;
90 uint64_t st_ctimeX;
91 uint64_t st_ctime_nsec;
92 int64_t __unused4[3];
93 };
94
95 // SPARC receives weird subsignals for several of its signals. If you
96 // find yourself needing to implement these in detail, look at the
97 // Linux source.
98 static const int TGT_SIGHUP = 0x000001;
99 static const int TGT_SIGINT = 0x000002;
100 static const int TGT_SIGQUIT = 0x000003;
101 static const int TGT_SIGILL = 0x000004;
102 static const int TGT_SIGTRAP = 0x000005;
103 static const int TGT_SIGABRT = 0x000006;
104 static const int TGT_SIGIOT = 0x000006;
105 static const int TGT_SIGEMT = 0x000007;
106 static const int TGT_SIGFPE = 0x000008;
107 static const int TGT_SIGKILL = 0x000009;
108 static const int TGT_SIGBUS = 0x00000a;
109 static const int TGT_SIGSEGV = 0x00000b;
110 static const int TGT_SIGSYS = 0x00000c;
111 static const int TGT_SIGPIPE = 0x00000d;
112 static const int TGT_SIGALRM = 0x00000e;
113 static const int TGT_SIGTERM = 0x00000f;
114 static const int TGT_SIGURG = 0x000010;
115 static const int TGT_SIGSTOP = 0x000011;
116 static const int TGT_SIGTSTP = 0x000012;
117 static const int TGT_SIGCONT = 0x000013;
118 static const int TGT_SIGCHLD = 0x000014;
119 static const int TGT_SIGTTIN = 0x000015;
120 static const int TGT_SIGTTOU = 0x000016;
121 static const int TGT_SIGIO = 0x000017;
122 static const int TGT_SIGPOLL = 0x000017;
123 static const int TGT_SIGXCPU = 0x000018;
124 static const int TGT_SIGXFSZ = 0x000019;
125 static const int TGT_SIGVTALRM = 0x00001a;
126 static const int TGT_SIGPROF = 0x00001b;
127 static const int TGT_SIGWINCH = 0x00001c;
128 static const int TGT_SIGLOST = 0x00001d;
129 static const int TGT_SIGPWR = 0x00001d;
130 static const int TGT_SIGUSR1 = 0x00001e;
131 static const int TGT_SIGUSR2 = 0x00001f;
132
133 static constexpr int TGT_O_RDONLY = 0x00000000;
134 static constexpr int TGT_O_WRONLY = 0x00000001;
135 static constexpr int TGT_O_RDWR = 0x00000002;
136 static constexpr int TGT_O_NONBLOCK = 0x00004000;
137 static constexpr int TGT_O_APPEND = 0x00000008;
138 static constexpr int TGT_FASYNC = 0x00000040;
139 static constexpr int TGT_O_CREAT = 0x00000200;
140 static constexpr int TGT_O_TRUNC = 0x00000400;
141 static constexpr int TGT_O_EXCL = 0x00000800;
142 static constexpr int TGT_O_NOCTTY = 0x00008000;
143 static constexpr int TGT_O_DSYNC = 0x00002000;
144 static constexpr int TGT_O_LARGEFILE = 0x00040000;
145 static constexpr int TGT_O_DIRECT = 0x00100000;
146 static constexpr int TGT_O_NOATIME = 0x00200000;
147 static constexpr int TGT_O_CLOEXEC = 0x00400000;
148 static constexpr int TGT_O_SYNC = 0x00802000;
149 static constexpr int TGT_O_PATH = 0x01000000;
150
151 static constexpr int TGT_O_DIRECTORY = 000200000;
152 static constexpr int TGT_O_NOFOLLOW = 000400000;
153
154 static constexpr unsigned TGT_MAP_SHARED = 0x00001;
155 static constexpr unsigned TGT_MAP_PRIVATE = 0x00002;
156 static constexpr unsigned TGT_MAP_ANON = 0x00020;
157 static constexpr unsigned TGT_MAP_DENYWRITE = 0x00800;
158 static constexpr unsigned TGT_MAP_EXECUTABLE = 0x01000;
159 static constexpr unsigned TGT_MAP_FILE = 0x00000;
160 static constexpr unsigned TGT_MAP_GROWSDOWN = 0x00200;
161 static constexpr unsigned TGT_MAP_HUGETLB = 0x40000;
162 static constexpr unsigned TGT_MAP_LOCKED = 0x00100;
163 static constexpr unsigned TGT_MAP_NONBLOCK = 0x10000;
164 static constexpr unsigned TGT_MAP_NORESERVE = 0x00040;
165 static constexpr unsigned TGT_MAP_POPULATE = 0x08000;
166 static constexpr unsigned TGT_MAP_STACK = 0x20000;
167 static constexpr unsigned TGT_MAP_ANONYMOUS = 0x00020;
168 static constexpr unsigned TGT_MAP_FIXED = 0x00010;
169 static constexpr unsigned TGT_MAP_INHERIT = 0x00080;
170
172 {
173 int64_t uptime; /* Seconds since boot */
174 uint64_t loads[3]; /* 1, 5, and 15 minute load averages */
175 uint64_t totalram; /* Total usable main memory size */
176 uint64_t freeram; /* Available memory size */
177 uint64_t sharedram; /* Amount of shared memory */
178 uint64_t bufferram; /* Memory used by buffers */
179 uint64_t totalswap; /* Total swap space size */
180 uint64_t freeswap; /* swap space still available */
181 uint16_t procs; /* Number of current processes */
182 uint64_t totalhigh; /* Total high memory size */
183 uint64_t freehigh; /* Available high memory size */
184 uint64_t mem_unit; /* Memory unit size in bytes */
185 };
186
188
192 static const unsigned TGT_TCGETA = 0x40125401;
193 static const unsigned TGT_TCSETAW = 0x80125403;
194 static const unsigned TGT_TCGETS = 0x40385408;
195 static const unsigned TGT_FIONREAD = 0x4004667f;
196 static const unsigned TGT_TIOCGETP = 0x40067408;
197 static const unsigned TGT_TIOCSETP = 0x80067409;
198 static const unsigned TGT_TIOCSETN = 0x8006740a;
200
201 static bool
202 isTtyReq(unsigned req)
203 {
204 switch (req) {
205 case TGT_TIOCGETP:
206 case TGT_TIOCSETP:
207 case TGT_TIOCSETN:
208 case TGT_TCGETS:
209 case TGT_TCGETA:
210 case TGT_TCSETAW:
211 return true;
212 default:
213 return false;
214 }
215 }
216
217 static void
218 archClone(uint64_t flags,
219 Process *pp, Process *cp,
221 uint64_t stack, uint64_t tls)
222 {
223 ctc->getIsaPtr()->copyRegsFrom(ptc);
232 for (int y = 8; y < 32; y++) {
234 ctc->setReg(reg, ptc->getReg(reg));
235 }
236
237 if (stack)
239
240 // Set these extra values. Since "clone" doesn't return two values,
241 // we can set these and they won't be clobbered by the syscall ABI.
244 }
245};
246
248{
249 public:
250
252 {
253 uint64_t st_dev;
254 uint64_t st_ino;
255 uint32_t st_mode;
256 uint32_t st_nlink;
257 uint32_t st_uid;
258 uint32_t st_gid;
259 uint64_t st_rdev;
260 uint8_t __pad3[8];
261 int64_t st_size;
262 int32_t st_blksize;
263 uint8_t __pad4[8];
264 int64_t st_blocks;
265 uint64_t st_atimeX;
267 uint64_t st_mtimeX;
269 uint64_t st_ctimeX;
271 uint32_t __unused4;
272 uint32_t __unused5;
273 };
274
276 {
277 int32_t uptime; /* Seconds since boot */
278 uint32_t loads[3]; /* 1, 5, and 15 minute load averages */
279 uint32_t totalram; /* Total usable main memory size */
280 uint32_t freeram; /* Available memory size */
281 uint32_t sharedram; /* Amount of shared memory */
282 uint32_t bufferram; /* Memory used by buffers */
283 uint32_t totalswap; /* Total swap space size */
284 uint32_t freeswap; /* swap space still available */
285 uint16_t procs; /* Number of current processes */
286 uint32_t totalhigh; /* Total high memory size */
287 uint32_t freehigh; /* Available high memory size */
288 uint32_t mem_unit; /* Memory unit size in bytes */
289 };
290
292 static const unsigned TGT_RLIMIT_NPROC = 7;
293 static const unsigned TGT_RLIMIT_NOFILE = 6;
294};
295
296} // namespace gem5
297
298#endif
virtual void copyRegsFrom(ThreadContext *src)=0
This class encapsulates the types, structures, constants, functions, and syscall-number mappings spec...
Definition linux.hh:62
Register ID: describe an architectural register with its class and index.
Definition reg_class.hh:94
static const unsigned TGT_RLIMIT_NPROC
Resource constants for getrlimit() (overide some generics).
Definition linux.hh:292
static const unsigned TGT_RLIMIT_NOFILE
Definition linux.hh:293
static const int TGT_SIGXCPU
Definition linux.hh:123
static const int TGT_SIGSEGV
Definition linux.hh:109
static const unsigned TGT_TCGETS
Definition linux.hh:194
static const int TGT_SIGSTOP
Definition linux.hh:115
static const int TGT_SIGLOST
Definition linux.hh:128
static const int TGT_SIGHUP
Definition linux.hh:98
static constexpr int TGT_O_RDWR
O_RDWR.
Definition linux.hh:135
static const int TGT_SIGBUS
Definition linux.hh:108
static constexpr unsigned TGT_MAP_FIXED
Definition linux.hh:168
static const int TGT_SIGABRT
Definition linux.hh:103
static constexpr int TGT_O_NOATIME
O_NOATIME.
Definition linux.hh:146
static constexpr int TGT_O_CLOEXEC
O_CLOEXEC.
Definition linux.hh:147
static const int TGT_SIGPOLL
Definition linux.hh:122
static constexpr int TGT_FASYNC
FASYNC.
Definition linux.hh:138
static const int TGT_SIGXFSZ
Definition linux.hh:124
static const int TGT_SIGSYS
Definition linux.hh:110
static const int TGT_SIGINT
Definition linux.hh:99
static constexpr unsigned TGT_MAP_GROWSDOWN
Definition linux.hh:160
static const int TGT_SIGFPE
Definition linux.hh:106
static const int TGT_SIGKILL
Definition linux.hh:107
static constexpr unsigned TGT_MAP_LOCKED
Definition linux.hh:162
static const int TGT_SIGTERM
Definition linux.hh:113
static constexpr int TGT_O_PATH
O_PATH.
Definition linux.hh:149
static const int TGT_SIGQUIT
Definition linux.hh:100
static const int TGT_SIGIO
Definition linux.hh:121
static constexpr unsigned TGT_MAP_ANON
Definition linux.hh:156
static const unsigned TGT_TIOCGETP
Definition linux.hh:196
static constexpr int TGT_O_NOFOLLOW
O_NOFOLLOW.
Definition linux.hh:152
static constexpr unsigned TGT_MAP_STACK
Definition linux.hh:166
static constexpr int TGT_O_WRONLY
O_WRONLY.
Definition linux.hh:134
static const int TGT_SIGUSR1
Definition linux.hh:130
static constexpr int TGT_O_SYNC
O_SYNC.
Definition linux.hh:148
static constexpr unsigned TGT_MAP_ANONYMOUS
Definition linux.hh:167
static const unsigned TGT_TCGETA
ioctl() command codes.
Definition linux.hh:192
static constexpr int TGT_O_NOCTTY
O_NOCTTY.
Definition linux.hh:142
static constexpr int TGT_O_DSYNC
O_DSYNC.
Definition linux.hh:143
static bool isTtyReq(unsigned req)
Definition linux.hh:202
static constexpr unsigned TGT_MAP_NONBLOCK
Definition linux.hh:163
static const ByteOrder byteOrder
Definition linux.hh:48
static constexpr unsigned TGT_MAP_SHARED
Definition linux.hh:154
static const int TGT_SIGTSTP
Definition linux.hh:116
static const unsigned TGT_FIONREAD
Definition linux.hh:195
static const unsigned TGT_TCSETAW
Definition linux.hh:193
static constexpr int TGT_O_CREAT
O_CREAT.
Definition linux.hh:139
static const int TGT_SIGCHLD
Definition linux.hh:118
static constexpr int TGT_O_EXCL
O_EXCL.
Definition linux.hh:141
static constexpr unsigned TGT_MAP_DENYWRITE
Definition linux.hh:157
static const int TGT_SIGTRAP
Definition linux.hh:102
static constexpr int TGT_O_RDONLY
O_RDONLY.
Definition linux.hh:133
static const int TGT_SIGCONT
Definition linux.hh:117
static const unsigned TGT_TIOCSETP
Definition linux.hh:197
static const int TGT_SIGURG
Definition linux.hh:114
static constexpr unsigned TGT_MAP_INHERIT
Definition linux.hh:169
static const int TGT_SIGPROF
Definition linux.hh:126
static constexpr int TGT_O_NONBLOCK
O_NONBLOCK.
Definition linux.hh:136
static constexpr int TGT_O_DIRECT
O_DIRECT.
Definition linux.hh:145
static const unsigned TGT_TIOCSETN
Definition linux.hh:198
static const int TGT_SIGILL
Definition linux.hh:101
static void archClone(uint64_t flags, Process *pp, Process *cp, ThreadContext *ptc, ThreadContext *ctc, uint64_t stack, uint64_t tls)
Definition linux.hh:218
static constexpr int TGT_O_TRUNC
O_TRUNC.
Definition linux.hh:140
static const int TGT_SIGTTIN
Definition linux.hh:119
static constexpr unsigned TGT_MAP_POPULATE
Definition linux.hh:165
static constexpr unsigned TGT_MAP_EXECUTABLE
Definition linux.hh:158
static const int TGT_SIGTTOU
Definition linux.hh:120
static const int TGT_SIGIOT
Definition linux.hh:104
static constexpr unsigned TGT_MAP_NORESERVE
Definition linux.hh:164
static const int TGT_SIGWINCH
Definition linux.hh:127
static constexpr unsigned TGT_MAP_HUGETLB
Definition linux.hh:161
static const int TGT_SIGPIPE
Definition linux.hh:111
static const int TGT_SIGUSR2
Definition linux.hh:131
static constexpr unsigned TGT_MAP_FILE
Definition linux.hh:159
static constexpr int TGT_O_DIRECTORY
O_DIRECTORY.
Definition linux.hh:151
static constexpr int TGT_O_APPEND
O_APPEND.
Definition linux.hh:137
static const int TGT_SIGVTALRM
Definition linux.hh:125
static constexpr int TGT_O_LARGEFILE
O_LARGEFILE.
Definition linux.hh:144
static constexpr unsigned TGT_MAP_PRIVATE
Definition linux.hh:155
static const int TGT_SIGEMT
Definition linux.hh:105
static const int TGT_SIGPWR
Definition linux.hh:129
static const int TGT_SIGALRM
Definition linux.hh:112
ThreadContext is the external interface to all thread state for anything outside of the CPU.
virtual void setMiscReg(RegIndex misc_reg, RegVal val)=0
virtual void setMiscRegNoEffect(RegIndex misc_reg, RegVal val)=0
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 RegId Cleanwin
Definition int.hh:135
constexpr RegId Wstate
Definition int.hh:137
constexpr RegId Cansave
Definition int.hh:133
constexpr RegId Otherwin
Definition int.hh:136
constexpr RegId Canrestore
Definition int.hh:134
@ MISCREG_ASI
Ancillary State Registers.
Definition misc.hh:47
constexpr RegClass intRegClass
Definition int.hh:78
constexpr auto & StackPointerReg
Definition int.hh:170
const int NWindows
constexpr auto & SyscallPseudoReturnReg
Definition int.hh:174
Bitfield< 5, 3 > reg
Definition types.hh:92
Bitfield< 17, 16 > stack
Definition misc.hh:602
Copyright (c) 2024 - Pranith Kumar Copyright (c) 2020 Inria All rights reserved.
Definition binary32.hh:36
uint64_t RegVal
Definition types.hh:173
uint64_t __unused4[2]
Definition linux.hh:67

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