gem5  v19.0.0.0
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  * Authors: Gabe Black
29  */
30 
31 #ifndef __ARCH_SPARC_LINUX_LINUX_HH__
32 #define __ARCH_SPARC_LINUX_LINUX_HH__
33 
34 #include "arch/sparc/utility.hh"
35 #include "kern/linux/linux.hh"
36 
37 class SparcLinux : public Linux
38 {
39  public:
40 
42 
43  typedef struct {
44  uint32_t st_dev;
45  char __pad1[4];
46  uint64_t st_ino;
47  uint32_t st_mode;
48  uint16_t st_nlink;
49  uint32_t st_uid;
50  uint32_t st_gid;
51  uint32_t st_rdev;
52  char __pad2[4];
53  int64_t st_size;
54  int64_t st_atimeX;
55  int64_t st_mtimeX;
56  int64_t st_ctimeX;
57  int64_t st_blksize;
58  int64_t st_blocks;
59  uint64_t __unused4[2];
60  } tgt_stat;
61 
62  // SPARC receives weird subsignals for several of its signals. If you
63  // find yourself needing to implement these in detail, look at the
64  // Linux source.
65  static const int TGT_SIGHUP = 0x000001;
66  static const int TGT_SIGINT = 0x000002;
67  static const int TGT_SIGQUIT = 0x000003;
68  static const int TGT_SIGILL = 0x000004;
69  static const int TGT_SIGTRAP = 0x000005;
70  static const int TGT_SIGABRT = 0x000006;
71  static const int TGT_SIGIOT = 0x000006;
72  static const int TGT_SIGEMT = 0x000007;
73  static const int TGT_SIGFPE = 0x000008;
74  static const int TGT_SIGKILL = 0x000009;
75  static const int TGT_SIGBUS = 0x00000a;
76  static const int TGT_SIGSEGV = 0x00000b;
77  static const int TGT_SIGSYS = 0x00000c;
78  static const int TGT_SIGPIPE = 0x00000d;
79  static const int TGT_SIGALRM = 0x00000e;
80  static const int TGT_SIGTERM = 0x00000f;
81  static const int TGT_SIGURG = 0x000010;
82  static const int TGT_SIGSTOP = 0x000011;
83  static const int TGT_SIGTSTP = 0x000012;
84  static const int TGT_SIGCONT = 0x000013;
85  static const int TGT_SIGCHLD = 0x000014;
86  static const int TGT_SIGTTIN = 0x000015;
87  static const int TGT_SIGTTOU = 0x000016;
88  static const int TGT_SIGIO = 0x000017;
89  static const int TGT_SIGPOLL = 0x000017;
90  static const int TGT_SIGXCPU = 0x000018;
91  static const int TGT_SIGXFSZ = 0x000019;
92  static const int TGT_SIGVTALRM = 0x00001a;
93  static const int TGT_SIGPROF = 0x00001b;
94  static const int TGT_SIGWINCH = 0x00001c;
95  static const int TGT_SIGLOST = 0x00001d;
96  static const int TGT_SIGPWR = 0x00001d;
97  static const int TGT_SIGUSR1 = 0x00001e;
98  static const int TGT_SIGUSR2 = 0x00001f;
99 
101 
102  static const int TGT_O_RDONLY = 0x00000000;
103  static const int TGT_O_WRONLY = 0x00000001;
104  static const int TGT_O_RDWR = 0x00000002;
105  static const int TGT_O_NONBLOCK = 0x00004000;
106  static const int TGT_O_APPEND = 0x00000008;
107  static const int TGT_FASYNC = 0x00000040;
108  static const int TGT_O_CREAT = 0x00000200;
109  static const int TGT_O_TRUNC = 0x00000400;
110  static const int TGT_O_EXCL = 0x00000800;
111  static const int TGT_O_NOCTTY = 0x00008000;
112  static const int TGT_O_DSYNC = 0x00002000;
113  static const int TGT_O_LARGEFILE = 0x00040000;
114  static const int TGT_O_DIRECT = 0x00100000;
115  static const int TGT_O_NOATIME = 0x00200000;
116  static const int TGT_O_CLOEXEC = 0x00400000;
117  static const int TGT_O_SYNC = 0x00802000;
118  static const int TGT_O_PATH = 0x01000000;
119 
120  static const int TGT_O_DIRECTORY = 000200000;
121  static const int TGT_O_NOFOLLOW = 000400000;
122 
123  static const int NUM_OPEN_FLAGS;
124 
125  static const unsigned TGT_MAP_SHARED = 0x00001;
126  static const unsigned TGT_MAP_PRIVATE = 0x00002;
127  static const unsigned TGT_MAP_ANON = 0x00020;
128  static const unsigned TGT_MAP_DENYWRITE = 0x00800;
129  static const unsigned TGT_MAP_EXECUTABLE = 0x01000;
130  static const unsigned TGT_MAP_FILE = 0x00000;
131  static const unsigned TGT_MAP_GROWSDOWN = 0x00200;
132  static const unsigned TGT_MAP_HUGETLB = 0x40000;
133  static const unsigned TGT_MAP_LOCKED = 0x00100;
134  static const unsigned TGT_MAP_NONBLOCK = 0x10000;
135  static const unsigned TGT_MAP_NORESERVE = 0x00040;
136  static const unsigned TGT_MAP_POPULATE = 0x08000;
137  static const unsigned TGT_MAP_STACK = 0x20000;
138  static const unsigned TGT_MAP_ANONYMOUS = 0x00020;
139  static const unsigned TGT_MAP_FIXED = 0x00010;
140  static const unsigned TGT_MAP_INHERIT = 0x00080;
141 
142  static const unsigned NUM_MMAP_FLAGS;
143 
144  typedef struct {
145  int64_t uptime; /* Seconds since boot */
146  uint64_t loads[3]; /* 1, 5, and 15 minute load averages */
147  uint64_t totalram; /* Total usable main memory size */
148  uint64_t freeram; /* Available memory size */
149  uint64_t sharedram; /* Amount of shared memory */
150  uint64_t bufferram; /* Memory used by buffers */
151  uint64_t totalswap; /* Total swap space size */
152  uint64_t freeswap; /* swap space still available */
153  uint16_t procs; /* Number of current processes */
154  uint64_t totalhigh; /* Total high memory size */
155  uint64_t freehigh; /* Available high memory size */
156  uint64_t mem_unit; /* Memory unit size in bytes */
157  } tgt_sysinfo;
158 
160  static const unsigned TGT_TCGETA = 0x40125401;
165  static const unsigned TGT_TCSETAW = 0x80125403;
166  static const unsigned TGT_TCGETS = 0x40385408;
167  static const unsigned TGT_FIONREAD = 0x4004667f;
168  static const unsigned TGT_TIOCGETP = 0x40067408;
169  static const unsigned TGT_TIOCSETP = 0x80067409;
170  static const unsigned TGT_TIOCSETN = 0x8006740a;
172 
173  static bool
174  isTtyReq(unsigned req)
175  {
176  switch (req) {
177  case TGT_TIOCGETP:
178  case TGT_TIOCSETP:
179  case TGT_TIOCSETN:
180  case TGT_TCGETS:
181  case TGT_TCGETA:
182  case TGT_TCSETAW:
183  return true;
184  default:
185  return false;
186  }
187  }
188 
189  static void
190  archClone(uint64_t flags,
191  Process *pp, Process *cp,
193  uint64_t stack, uint64_t tls)
194  {
195  SparcISA::copyRegs(ptc, ctc);
196  ctc->setIntReg(SparcISA::NumIntArchRegs + 6, 0);
197  ctc->setIntReg(SparcISA::NumIntArchRegs + 4, 0);
201  ctc->setIntReg(SparcISA::NumIntArchRegs + 7, 0);
204  for (int y = 8; y < 32; y++)
205  ctc->setIntReg(y, ptc->readIntReg(y));
206 
207  if (stack)
209  }
210 };
211 
212 class Sparc32Linux : public SparcLinux
213 {
214  public:
215 
216  typedef struct {
217  uint64_t st_dev;
218  uint64_t st_ino;
219  uint32_t st_mode;
220  uint32_t st_nlink;
221  uint32_t st_uid;
222  uint32_t st_gid;
223  uint64_t st_rdev;
224  uint8_t __pad3[8];
225  int64_t st_size;
226  int32_t st_blksize;
227  uint8_t __pad4[8];
228  int64_t st_blocks;
229  uint64_t st_atimeX;
230  uint64_t st_atime_nsec;
231  uint64_t st_mtimeX;
232  uint64_t st_mtime_nsec;
233  uint64_t st_ctimeX;
234  uint64_t st_ctime_nsec;
235  uint32_t __unused4;
236  uint32_t __unused5;
237  } tgt_stat64;
238 
239  typedef struct {
240  int32_t uptime; /* Seconds since boot */
241  uint32_t loads[3]; /* 1, 5, and 15 minute load averages */
242  uint32_t totalram; /* Total usable main memory size */
243  uint32_t freeram; /* Available memory size */
244  uint32_t sharedram; /* Amount of shared memory */
245  uint32_t bufferram; /* Memory used by buffers */
246  uint32_t totalswap; /* Total swap space size */
247  uint32_t freeswap; /* swap space still available */
248  uint16_t procs; /* Number of current processes */
249  uint32_t totalhigh; /* Total high memory size */
250  uint32_t freehigh; /* Available high memory size */
251  uint32_t mem_unit; /* Memory unit size in bytes */
252  } tgt_sysinfo;
253 
255  static const unsigned TGT_RLIMIT_NPROC = 7;
256  static const unsigned TGT_RLIMIT_NOFILE = 6;
257 };
258 
259 #endif
static const int TGT_O_CREAT
O_CREAT.
Definition: linux.hh:108
virtual void setMiscReg(RegIndex misc_reg, RegVal val)=0
uint64_t st_ctime_nsec
Definition: linux.hh:234
static const int TGT_SIGWINCH
Definition: linux.hh:94
static const unsigned TGT_TCGETA
ioctl() command codes.
Definition: linux.hh:164
static const unsigned TGT_MAP_SHARED
Definition: linux.hh:125
static const int TGT_SIGPIPE
Definition: linux.hh:78
static const int TGT_SIGBUS
Definition: linux.hh:75
int64_t st_blksize
Definition: linux.hh:57
static const int TGT_SIGQUIT
Definition: linux.hh:67
static const unsigned TGT_MAP_ANONYMOUS
Definition: linux.hh:138
static const unsigned TGT_MAP_PRIVATE
Definition: linux.hh:126
static const int TGT_SIGIO
Definition: linux.hh:88
virtual RegVal readIntReg(RegIndex reg_idx) const =0
static const ByteOrder byteOrder
Definition: linux.hh:41
static const int TGT_SIGPROF
Definition: linux.hh:93
uint64_t st_ino
Definition: linux.hh:46
static const int TGT_SIGTRAP
Definition: linux.hh:69
virtual void setMiscRegNoEffect(RegIndex misc_reg, RegVal val)=0
static const int TGT_SIGXCPU
Definition: linux.hh:90
static SyscallFlagTransTable openFlagTable[]
Definition: linux.hh:100
static const unsigned TGT_MAP_LOCKED
Definition: linux.hh:133
static const int TGT_O_CLOEXEC
O_CLOEXEC.
Definition: linux.hh:116
uint32_t st_uid
Definition: linux.hh:49
uint16_t st_nlink
Definition: linux.hh:48
static const unsigned TGT_MAP_HUGETLB
Definition: linux.hh:132
static const unsigned TGT_TCGETS
Definition: linux.hh:166
static const unsigned TGT_MAP_EXECUTABLE
Definition: linux.hh:129
uint32_t st_rdev
Definition: linux.hh:51
static const int TGT_O_EXCL
O_EXCL.
Definition: linux.hh:110
static const unsigned TGT_MAP_FILE
Definition: linux.hh:130
static const unsigned NUM_MMAP_FLAGS
Definition: linux.hh:142
static const unsigned TGT_TIOCSETP
Definition: linux.hh:169
static const int TGT_SIGSTOP
Definition: linux.hh:82
static const int TGT_SIGPOLL
Definition: linux.hh:89
static const int TGT_O_LARGEFILE
O_LARGEFILE.
Definition: linux.hh:113
static const int TGT_SIGPWR
Definition: linux.hh:96
Definition: cprintf.cc:42
static void archClone(uint64_t flags, Process *pp, Process *cp, ThreadContext *ptc, ThreadContext *ctc, uint64_t stack, uint64_t tls)
Definition: linux.hh:190
static const unsigned TGT_MAP_DENYWRITE
Definition: linux.hh:128
static const int TGT_O_WRONLY
O_WRONLY.
Definition: linux.hh:103
static const int TGT_O_SYNC
O_SYNC.
Definition: linux.hh:117
static const int TGT_SIGVTALRM
Definition: linux.hh:92
int64_t st_ctimeX
Definition: linux.hh:56
ThreadContext is the external interface to all thread state for anything outside of the CPU...
static const unsigned TGT_MAP_INHERIT
Definition: linux.hh:140
static const int TGT_SIGINT
Definition: linux.hh:66
static const unsigned TGT_TIOCGETP
Definition: linux.hh:168
uint32_t st_dev
Definition: linux.hh:44
static const int TGT_SIGALRM
Definition: linux.hh:79
static const int TGT_SIGIOT
Definition: linux.hh:71
static const unsigned TGT_MAP_ANON
Definition: linux.hh:127
static const int TGT_SIGCHLD
Definition: linux.hh:85
const int NumIntArchRegs
Definition: registers.hh:75
void copyRegs(ThreadContext *src, ThreadContext *dest)
Definition: utility.cc:204
static const int TGT_SIGTTOU
Definition: linux.hh:87
static const int TGT_SIGHUP
Definition: linux.hh:65
static const int TGT_SIGURG
Definition: linux.hh:81
uint64_t st_mtime_nsec
Definition: linux.hh:232
static const unsigned TGT_RLIMIT_NOFILE
Definition: linux.hh:200
static const int TGT_SIGTSTP
Definition: linux.hh:83
static const int TGT_O_NOFOLLOW
O_NOFOLLOW.
Definition: linux.hh:121
ByteOrder
Definition: types.hh:247
void tgt_stat
Stat buffer.
static const int TGT_O_DSYNC
O_DSYNC.
Definition: linux.hh:112
static const unsigned TGT_RLIMIT_NPROC
Definition: linux.hh:199
static const unsigned TGT_TCSETAW
Definition: linux.hh:165
int64_t st_mtimeX
Definition: linux.hh:55
static const int TGT_SIGSEGV
Definition: linux.hh:76
static const int TGT_SIGILL
Definition: linux.hh:68
virtual void setIntReg(RegIndex reg_idx, RegVal val)=0
static const int TGT_O_RDWR
O_RDWR.
Definition: linux.hh:104
static const unsigned TGT_TIOCSETN
Definition: linux.hh:170
Ancillary State Registers.
Definition: miscregs.hh:45
This struct is used to build target-OS-dependent tables that map the target&#39;s flags to the host&#39;s fla...
int64_t st_blocks
Definition: linux.hh:58
static const int TGT_SIGTTIN
Definition: linux.hh:86
static const int TGT_FASYNC
FASYNC.
Definition: linux.hh:107
static const int TGT_SIGLOST
Definition: linux.hh:95
Bitfield< 17, 16 > stack
Definition: misc.hh:589
static const int TGT_SIGUSR2
Definition: linux.hh:98
static const int TGT_O_TRUNC
O_TRUNC.
Definition: linux.hh:109
static const int TGT_SIGCONT
Definition: linux.hh:84
uint32_t st_gid
Definition: linux.hh:50
static const int TGT_O_RDONLY
O_RDONLY.
Definition: linux.hh:102
static const unsigned TGT_MAP_GROWSDOWN
Definition: linux.hh:131
static const unsigned TGT_MAP_NORESERVE
Definition: linux.hh:135
uint32_t st_mode
Definition: linux.hh:47
static const int TGT_O_NOATIME
O_NOATIME.
Definition: linux.hh:115
static const int TGT_O_NOCTTY
O_NOCTTY.
Definition: linux.hh:111
Bitfield< 7, 0 > ptc
Definition: mt_constants.hh:56
static const int TGT_SIGEMT
Definition: linux.hh:72
static const int TGT_SIGFPE
Definition: linux.hh:73
static const int TGT_O_NONBLOCK
O_NONBLOCK.
Definition: linux.hh:105
const int NWindows
Definition: sparc_traits.hh:43
uint64_t st_atime_nsec
Definition: linux.hh:230
static const int NUM_OPEN_FLAGS
Definition: linux.hh:123
const int StackPointerReg
Definition: registers.hh:69
static const int TGT_O_DIRECTORY
O_DIRECTORY.
Definition: linux.hh:120
static const int TGT_SIGKILL
Definition: linux.hh:74
static const unsigned TGT_FIONREAD
Definition: linux.hh:167
static const unsigned TGT_MAP_NONBLOCK
Definition: linux.hh:134
int64_t st_atimeX
Definition: linux.hh:54
static const int TGT_SIGSYS
Definition: linux.hh:77
static const unsigned TGT_MAP_POPULATE
Definition: linux.hh:136
static const int TGT_SIGTERM
Definition: linux.hh:80
static const int TGT_SIGUSR1
Definition: linux.hh:97
static bool isTtyReq(unsigned req)
Definition: linux.hh:174
static const int TGT_O_APPEND
O_APPEND.
Definition: linux.hh:106
static const int TGT_SIGABRT
Definition: linux.hh:70
static const int TGT_O_PATH
O_PATH.
Definition: linux.hh:118
static const int TGT_SIGXFSZ
Definition: linux.hh:91
static const int TGT_O_DIRECT
O_DIRECT.
Definition: linux.hh:114
static const unsigned TGT_MAP_STACK
Definition: linux.hh:137
int64_t st_size
Definition: linux.hh:53
static const unsigned TGT_MAP_FIXED
Definition: linux.hh:139

Generated on Fri Feb 28 2020 16:26:56 for gem5 by doxygen 1.8.13