gem5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
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 "kern/linux/linux.hh"
35 
36 class SparcLinux : public Linux
37 {
38  public:
39 
40  typedef struct {
41  uint32_t st_dev;
42  char __pad1[4];
43  uint64_t st_ino;
44  uint32_t st_mode;
45  uint16_t st_nlink;
46  uint32_t st_uid;
47  uint32_t st_gid;
48  uint32_t st_rdev;
49  char __pad2[4];
50  int64_t st_size;
51  int64_t st_atimeX;
52  int64_t st_mtimeX;
53  int64_t st_ctimeX;
54  int64_t st_blksize;
55  int64_t st_blocks;
56  uint64_t __unused4[2];
57  } tgt_stat;
58 
59  // SPARC receives weird subsignals for several of its signals. If you
60  // find yourself needing to implement these in detail, look at the
61  // Linux source.
62  static const int TGT_SIGHUP = 0x000001;
63  static const int TGT_SIGINT = 0x000002;
64  static const int TGT_SIGQUIT = 0x000003;
65  static const int TGT_SIGILL = 0x000004;
66  static const int TGT_SIGTRAP = 0x000005;
67  static const int TGT_SIGABRT = 0x000006;
68  static const int TGT_SIGIOT = 0x000006;
69  static const int TGT_SIGEMT = 0x000007;
70  static const int TGT_SIGFPE = 0x000008;
71  static const int TGT_SIGKILL = 0x000009;
72  static const int TGT_SIGBUS = 0x00000a;
73  static const int TGT_SIGSEGV = 0x00000b;
74  static const int TGT_SIGSYS = 0x00000c;
75  static const int TGT_SIGPIPE = 0x00000d;
76  static const int TGT_SIGALRM = 0x00000e;
77  static const int TGT_SIGTERM = 0x00000f;
78  static const int TGT_SIGURG = 0x000010;
79  static const int TGT_SIGSTOP = 0x000011;
80  static const int TGT_SIGTSTP = 0x000012;
81  static const int TGT_SIGCONT = 0x000013;
82  static const int TGT_SIGCHLD = 0x000014;
83  static const int TGT_SIGTTIN = 0x000015;
84  static const int TGT_SIGTTOU = 0x000016;
85  static const int TGT_SIGIO = 0x000017;
86  static const int TGT_SIGPOLL = 0x000017;
87  static const int TGT_SIGXCPU = 0x000018;
88  static const int TGT_SIGXFSZ = 0x000019;
89  static const int TGT_SIGVTALRM = 0x00001a;
90  static const int TGT_SIGPROF = 0x00001b;
91  static const int TGT_SIGWINCH = 0x00001c;
92  static const int TGT_SIGLOST = 0x00001d;
93  static const int TGT_SIGPWR = 0x00001d;
94  static const int TGT_SIGUSR1 = 0x00001e;
95  static const int TGT_SIGUSR2 = 0x00001f;
96 
98 
99  static const int TGT_O_RDONLY = 0x00000000;
100  static const int TGT_O_WRONLY = 0x00000001;
101  static const int TGT_O_RDWR = 0x00000002;
102  static const int TGT_O_NONBLOCK = 0x00004000;
103  static const int TGT_O_APPEND = 0x00000008;
104  static const int TGT_FASYNC = 0x00000040;
105  static const int TGT_O_CREAT = 0x00000200;
106  static const int TGT_O_TRUNC = 0x00000400;
107  static const int TGT_O_EXCL = 0x00000800;
108  static const int TGT_O_NOCTTY = 0x00008000;
109  static const int TGT_O_DSYNC = 0x00002000;
110  static const int TGT_O_LARGEFILE = 0x00040000;
111  static const int TGT_O_DIRECT = 0x00100000;
112  static const int TGT_O_NOATIME = 0x00200000;
113  static const int TGT_O_CLOEXEC = 0x00400000;
114  static const int TGT_O_SYNC = 0x00802000;
115  static const int TGT_O_PATH = 0x01000000;
116 
117  static const int TGT_O_DIRECTORY = 000200000;
118  static const int TGT_O_NOFOLLOW = 000400000;
119 
120  static const int NUM_OPEN_FLAGS;
121 
122  static const unsigned TGT_MAP_SHARED = 0x00001;
123  static const unsigned TGT_MAP_PRIVATE = 0x00002;
124  static const unsigned TGT_MAP_ANON = 0x00020;
125  static const unsigned TGT_MAP_DENYWRITE = 0x00800;
126  static const unsigned TGT_MAP_EXECUTABLE = 0x01000;
127  static const unsigned TGT_MAP_FILE = 0x00000;
128  static const unsigned TGT_MAP_GROWSDOWN = 0x00200;
129  static const unsigned TGT_MAP_HUGETLB = 0x40000;
130  static const unsigned TGT_MAP_LOCKED = 0x00100;
131  static const unsigned TGT_MAP_NONBLOCK = 0x10000;
132  static const unsigned TGT_MAP_NORESERVE = 0x00040;
133  static const unsigned TGT_MAP_POPULATE = 0x08000;
134  static const unsigned TGT_MAP_STACK = 0x20000;
135  static const unsigned TGT_MAP_ANONYMOUS = 0x00020;
136  static const unsigned TGT_MAP_FIXED = 0x00010;
137  static const unsigned TGT_MAP_INHERIT = 0x00080;
138 
139  static const unsigned NUM_MMAP_FLAGS;
140 
141  typedef struct {
142  int64_t uptime; /* Seconds since boot */
143  uint64_t loads[3]; /* 1, 5, and 15 minute load averages */
144  uint64_t totalram; /* Total usable main memory size */
145  uint64_t freeram; /* Available memory size */
146  uint64_t sharedram; /* Amount of shared memory */
147  uint64_t bufferram; /* Memory used by buffers */
148  uint64_t totalswap; /* Total swap space size */
149  uint64_t freeswap; /* swap space still available */
150  uint16_t procs; /* Number of current processes */
151  uint64_t totalhigh; /* Total high memory size */
152  uint64_t freehigh; /* Available high memory size */
153  uint64_t mem_unit; /* Memory unit size in bytes */
154  } tgt_sysinfo;
155 
157  static const unsigned TGT_TCGETA = 0x40125401;
162  static const unsigned TGT_TCSETAW = 0x80125403;
163  static const unsigned TGT_TCGETS = 0x40385408;
164  static const unsigned TGT_FIONREAD = 0x4004667f;
165  static const unsigned TGT_TIOCGETP = 0x40067408;
166  static const unsigned TGT_TIOCSETP = 0x80067409;
167  static const unsigned TGT_TIOCSETN = 0x8006740a;
169 
170  static bool
171  isTtyReq(unsigned req)
172  {
173  switch (req) {
174  case TGT_TIOCGETP:
175  case TGT_TIOCSETP:
176  case TGT_TIOCSETN:
177  case TGT_TCGETS:
178  case TGT_TCGETA:
179  case TGT_TCSETAW:
180  return true;
181  default:
182  return false;
183  }
184  }
185 };
186 
187 class Sparc32Linux : public SparcLinux
188 {
189  public:
190 
191  typedef struct {
192  uint64_t st_dev;
193  uint64_t st_ino;
194  uint32_t st_mode;
195  uint32_t st_nlink;
196  uint32_t st_uid;
197  uint32_t st_gid;
198  uint64_t st_rdev;
199  uint8_t __pad3[8];
200  int64_t st_size;
201  int32_t st_blksize;
202  uint8_t __pad4[8];
203  int64_t st_blocks;
204  uint64_t st_atimeX;
205  uint64_t st_atime_nsec;
206  uint64_t st_mtimeX;
207  uint64_t st_mtime_nsec;
208  uint64_t st_ctimeX;
209  uint64_t st_ctime_nsec;
210  uint32_t __unused4;
211  uint32_t __unused5;
212  } tgt_stat64;
213 
214  typedef struct {
215  int32_t uptime; /* Seconds since boot */
216  uint32_t loads[3]; /* 1, 5, and 15 minute load averages */
217  uint32_t totalram; /* Total usable main memory size */
218  uint32_t freeram; /* Available memory size */
219  uint32_t sharedram; /* Amount of shared memory */
220  uint32_t bufferram; /* Memory used by buffers */
221  uint32_t totalswap; /* Total swap space size */
222  uint32_t freeswap; /* swap space still available */
223  uint16_t procs; /* Number of current processes */
224  uint32_t totalhigh; /* Total high memory size */
225  uint32_t freehigh; /* Available high memory size */
226  uint32_t mem_unit; /* Memory unit size in bytes */
227  } tgt_sysinfo;
228 
230  static const unsigned TGT_RLIMIT_NPROC = 7;
231  static const unsigned TGT_RLIMIT_NOFILE = 6;
232 };
233 
234 #endif
static const int TGT_O_CREAT
O_CREAT.
Definition: linux.hh:105
uint64_t st_ctime_nsec
Definition: linux.hh:209
static const int TGT_SIGWINCH
Definition: linux.hh:91
static const unsigned TGT_TCGETA
ioctl() command codes.
Definition: linux.hh:161
static const unsigned TGT_MAP_SHARED
Definition: linux.hh:122
static const int TGT_SIGPIPE
Definition: linux.hh:75
static const int TGT_SIGBUS
Definition: linux.hh:72
int64_t st_blksize
Definition: linux.hh:54
static const int TGT_SIGQUIT
Definition: linux.hh:64
static const unsigned TGT_MAP_ANONYMOUS
Definition: linux.hh:135
static const unsigned TGT_MAP_PRIVATE
Definition: linux.hh:123
static const int TGT_SIGIO
Definition: linux.hh:85
static const int TGT_SIGPROF
Definition: linux.hh:90
uint64_t st_ino
Definition: linux.hh:43
static const int TGT_SIGTRAP
Definition: linux.hh:66
static const int TGT_SIGXCPU
Definition: linux.hh:87
static SyscallFlagTransTable openFlagTable[]
Definition: linux.hh:97
static const unsigned TGT_MAP_LOCKED
Definition: linux.hh:130
static const int TGT_O_CLOEXEC
O_CLOEXEC.
Definition: linux.hh:113
uint32_t st_uid
Definition: linux.hh:46
uint16_t st_nlink
Definition: linux.hh:45
static const unsigned TGT_MAP_HUGETLB
Definition: linux.hh:129
static const unsigned TGT_TCGETS
Definition: linux.hh:163
static const unsigned TGT_MAP_EXECUTABLE
Definition: linux.hh:126
uint32_t st_rdev
Definition: linux.hh:48
static const int TGT_O_EXCL
O_EXCL.
Definition: linux.hh:107
static const unsigned TGT_MAP_FILE
Definition: linux.hh:127
static const unsigned NUM_MMAP_FLAGS
Definition: linux.hh:139
static const unsigned TGT_TIOCSETP
Definition: linux.hh:166
static const int TGT_SIGSTOP
Definition: linux.hh:79
static const int TGT_SIGPOLL
Definition: linux.hh:86
static const int TGT_O_LARGEFILE
O_LARGEFILE.
Definition: linux.hh:110
static const int TGT_SIGPWR
Definition: linux.hh:93
static const unsigned TGT_MAP_DENYWRITE
Definition: linux.hh:125
static const int TGT_O_WRONLY
O_WRONLY.
Definition: linux.hh:100
static const int TGT_O_SYNC
O_SYNC.
Definition: linux.hh:114
static const int TGT_SIGVTALRM
Definition: linux.hh:89
int64_t st_ctimeX
Definition: linux.hh:53
static const unsigned TGT_MAP_INHERIT
Definition: linux.hh:137
static const int TGT_SIGINT
Definition: linux.hh:63
static const unsigned TGT_TIOCGETP
Definition: linux.hh:165
uint32_t st_dev
Definition: linux.hh:41
static const unsigned TGT_RLIMIT_NOFILE
Definition: linux.hh:231
static const int TGT_SIGALRM
Definition: linux.hh:76
static const int TGT_SIGIOT
Definition: linux.hh:68
static const unsigned TGT_MAP_ANON
Definition: linux.hh:124
static const int TGT_SIGCHLD
Definition: linux.hh:82
static const int TGT_SIGTTOU
Definition: linux.hh:84
static const int TGT_SIGHUP
Definition: linux.hh:62
static const int TGT_SIGURG
Definition: linux.hh:78
This class encapsulates the types, structures, constants, functions, and syscall-number mappings spec...
Definition: linux.hh:48
uint64_t st_mtime_nsec
Definition: linux.hh:207
static const int TGT_SIGTSTP
Definition: linux.hh:80
static const int TGT_O_NOFOLLOW
O_NOFOLLOW.
Definition: linux.hh:118
void tgt_stat
Stat buffer.
static const int TGT_O_DSYNC
O_DSYNC.
Definition: linux.hh:109
static const unsigned TGT_TCSETAW
Definition: linux.hh:162
int64_t st_mtimeX
Definition: linux.hh:52
static const int TGT_SIGSEGV
Definition: linux.hh:73
static const int TGT_SIGILL
Definition: linux.hh:65
static const int TGT_O_RDWR
O_RDWR.
Definition: linux.hh:101
static const unsigned TGT_RLIMIT_NPROC
Resource constants for getrlimit() (overide some generics).
Definition: linux.hh:230
static const unsigned TGT_TIOCSETN
Definition: linux.hh:167
This struct is used to build target-OS-dependent tables that map the target's flags to the host's fla...
int64_t st_blocks
Definition: linux.hh:55
static const int TGT_SIGTTIN
Definition: linux.hh:83
static const int TGT_FASYNC
FASYNC.
Definition: linux.hh:104
static const int TGT_SIGLOST
Definition: linux.hh:92
static const int TGT_SIGUSR2
Definition: linux.hh:95
static const int TGT_O_TRUNC
O_TRUNC.
Definition: linux.hh:106
static const int TGT_SIGCONT
Definition: linux.hh:81
uint32_t st_gid
Definition: linux.hh:47
static const int TGT_O_RDONLY
O_RDONLY.
Definition: linux.hh:99
static const unsigned TGT_MAP_GROWSDOWN
Definition: linux.hh:128
static const unsigned TGT_MAP_NORESERVE
Definition: linux.hh:132
uint32_t st_mode
Definition: linux.hh:44
static const int TGT_O_NOATIME
O_NOATIME.
Definition: linux.hh:112
static const int TGT_O_NOCTTY
O_NOCTTY.
Definition: linux.hh:108
static const int TGT_SIGEMT
Definition: linux.hh:69
static const int TGT_SIGFPE
Definition: linux.hh:70
static const int TGT_O_NONBLOCK
O_NONBLOCK.
Definition: linux.hh:102
uint64_t st_atime_nsec
Definition: linux.hh:205
static const int NUM_OPEN_FLAGS
Definition: linux.hh:120
static const int TGT_O_DIRECTORY
O_DIRECTORY.
Definition: linux.hh:117
static const int TGT_SIGKILL
Definition: linux.hh:71
static const unsigned TGT_FIONREAD
Definition: linux.hh:164
static const unsigned TGT_MAP_NONBLOCK
Definition: linux.hh:131
int64_t st_atimeX
Definition: linux.hh:51
static const int TGT_SIGSYS
Definition: linux.hh:74
static const unsigned TGT_MAP_POPULATE
Definition: linux.hh:133
static const int TGT_SIGTERM
Definition: linux.hh:77
static const int TGT_SIGUSR1
Definition: linux.hh:94
static bool isTtyReq(unsigned req)
Definition: linux.hh:171
static const int TGT_O_APPEND
O_APPEND.
Definition: linux.hh:103
static const int TGT_SIGABRT
Definition: linux.hh:67
static const int TGT_O_PATH
O_PATH.
Definition: linux.hh:115
static const int TGT_SIGXFSZ
Definition: linux.hh:88
static const int TGT_O_DIRECT
O_DIRECT.
Definition: linux.hh:111
static const unsigned TGT_MAP_STACK
Definition: linux.hh:134
int64_t st_size
Definition: linux.hh:50
static const unsigned TGT_MAP_FIXED
Definition: linux.hh:136

Generated on Fri Jun 9 2017 13:03:35 for gem5 by doxygen 1.8.6