Merge zizzer.eecs.umich.edu:/z/m5/Bitkeeper/m5
[gem5.git] / arch / alpha / alpha_tru64_process.cc
1 /*
2 * Copyright (c) 2001-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 #include <sys/types.h>
30 #include <sys/stat.h>
31 #if defined(__OpenBSD__) || defined(__APPLE__) || defined(__FreeBSD__)
32 #include <sys/param.h>
33 #include <sys/mount.h>
34 #else
35 #include <sys/statfs.h>
36 #endif
37
38 #include <dirent.h>
39 #include <errno.h>
40 #include <fcntl.h> // for host open() flags
41 #include <string.h> // for memset()
42 #include <unistd.h>
43
44 #include "arch/alpha/isa_traits.hh"
45 #include "arch/alpha/alpha_common_syscall_emul.hh"
46 #include "arch/alpha/alpha_tru64_process.hh"
47 #include "base/trace.hh"
48 #include "cpu/base.hh"
49 #include "cpu/exec_context.hh"
50 #include "mem/functional/functional.hh"
51 #include "sim/fake_syscall.hh"
52 #include "sim/host.hh"
53 #include "sim/process.hh"
54 #include "sim/root.hh"
55 #include "sim/syscall_emul.hh"
56
57 using namespace std;
58
59 typedef struct stat global_stat;
60 typedef struct statfs global_statfs;
61 typedef struct dirent global_dirent;
62
63 ///
64 /// This class encapsulates the types, structures, constants,
65 /// functions, and syscall-number mappings specific to the Alpha Tru64
66 /// syscall interface.
67 ///
68 class Tru64 {
69
70 public:
71
72 //@{
73 /// Basic Tru64 types.
74 typedef uint64_t size_t;
75 typedef uint64_t off_t;
76 typedef uint16_t nlink_t;
77 typedef int32_t dev_t;
78 typedef uint32_t uid_t;
79 typedef uint32_t gid_t;
80 typedef uint32_t time_t;
81 typedef uint32_t mode_t;
82 typedef uint32_t ino_t;
83 typedef struct { int val[2]; } quad;
84 typedef quad fsid_t;
85 //@}
86
87 //@{
88 /// open(2) flag values.
89 static const int TGT_O_RDONLY = 00000000;
90 static const int TGT_O_WRONLY = 00000001;
91 static const int TGT_O_RDWR = 00000002;
92 static const int TGT_O_NONBLOCK = 00000004;
93 static const int TGT_O_APPEND = 00000010;
94 static const int TGT_O_CREAT = 00001000;
95 static const int TGT_O_TRUNC = 00002000;
96 static const int TGT_O_EXCL = 00004000;
97 static const int TGT_O_NOCTTY = 00010000;
98 static const int TGT_O_SYNC = 00040000;
99 static const int TGT_O_DRD = 00100000;
100 static const int TGT_O_DIRECTIO = 00200000;
101 static const int TGT_O_CACHE = 00400000;
102 static const int TGT_O_DSYNC = 02000000;
103 static const int TGT_O_RSYNC = 04000000;
104 //@}
105
106 /// This table maps the target open() flags to the corresponding
107 /// host open() flags.
108 static OpenFlagTransTable openFlagTable[];
109
110 /// Number of entries in openFlagTable[].
111 static const int NUM_OPEN_FLAGS;
112
113 /// Stat buffer. Note that Tru64 v5.0+ use a new "F64" stat
114 /// structure, and a new set of syscall numbers for stat calls.
115 /// On some hosts (notably Linux) define st_atime, st_mtime, and
116 /// st_ctime as macros, so we append an X to get around this.
117 struct F64_stat {
118 dev_t st_dev; //!< st_dev
119 int32_t st_retired1; //!< st_retired1
120 mode_t st_mode; //!< st_mode
121 nlink_t st_nlink; //!< st_nlink
122 uint16_t st_nlink_reserved; //!< st_nlink_reserved
123 uid_t st_uid; //!< st_uid
124 gid_t st_gid; //!< st_gid
125 dev_t st_rdev; //!< st_rdev
126 dev_t st_ldev; //!< st_ldev
127 off_t st_size; //!< st_size
128 time_t st_retired2; //!< st_retired2
129 int32_t st_uatime; //!< st_uatime
130 time_t st_retired3; //!< st_retired3
131 int32_t st_umtime; //!< st_umtime
132 time_t st_retired4; //!< st_retired4
133 int32_t st_uctime; //!< st_uctime
134 int32_t st_retired5; //!< st_retired5
135 int32_t st_retired6; //!< st_retired6
136 uint32_t st_flags; //!< st_flags
137 uint32_t st_gen; //!< st_gen
138 uint64_t st_spare[4]; //!< st_spare[4]
139 ino_t st_ino; //!< st_ino
140 int32_t st_ino_reserved; //!< st_ino_reserved
141 time_t st_atimeX; //!< st_atime
142 int32_t st_atime_reserved; //!< st_atime_reserved
143 time_t st_mtimeX; //!< st_mtime
144 int32_t st_mtime_reserved; //!< st_mtime_reserved
145 time_t st_ctimeX; //!< st_ctime
146 int32_t st_ctime_reserved; //!< st_ctime_reserved
147 uint64_t st_blksize; //!< st_blksize
148 uint64_t st_blocks; //!< st_blocks
149 };
150
151
152 /// Old Tru64 v4.x stat struct.
153 /// Tru64 maintains backwards compatibility with v4.x by
154 /// implementing another set of stat functions using the old
155 /// structure definition and binding them to the old syscall
156 /// numbers.
157 struct pre_F64_stat {
158 dev_t st_dev;
159 ino_t st_ino;
160 mode_t st_mode;
161 nlink_t st_nlink;
162 uid_t st_uid;
163 gid_t st_gid;
164 dev_t st_rdev;
165 off_t st_size;
166 time_t st_atimeX;
167 int32_t st_uatime;
168 time_t st_mtimeX;
169 int32_t st_umtime;
170 time_t st_ctimeX;
171 int32_t st_uctime;
172 uint32_t st_blksize;
173 int32_t st_blocks;
174 uint32_t st_flags;
175 uint32_t st_gen;
176 };
177
178 /// For statfs().
179 struct F64_statfs {
180 int16_t f_type;
181 int16_t f_flags;
182 int32_t f_retired1;
183 int32_t f_retired2;
184 int32_t f_retired3;
185 int32_t f_retired4;
186 int32_t f_retired5;
187 int32_t f_retired6;
188 int32_t f_retired7;
189 fsid_t f_fsid;
190 int32_t f_spare[9];
191 char f_retired8[90];
192 char f_retired9[90];
193 uint64_t dummy[10]; // was union mount_info mount_info;
194 uint64_t f_flags2;
195 int64_t f_spare2[14];
196 int64_t f_fsize;
197 int64_t f_bsize;
198 int64_t f_blocks;
199 int64_t f_bfree;
200 int64_t f_bavail;
201 int64_t f_files;
202 int64_t f_ffree;
203 char f_mntonname[1024];
204 char f_mntfromname[1024];
205 };
206
207 /// For old Tru64 v4.x statfs()
208 struct pre_F64_statfs {
209 int16_t f_type;
210 int16_t f_flags;
211 int32_t f_fsize;
212 int32_t f_bsize;
213 int32_t f_blocks;
214 int32_t f_bfree;
215 int32_t f_bavail;
216 int32_t f_files;
217 int32_t f_ffree;
218 fsid_t f_fsid;
219 int32_t f_spare[9];
220 char f_mntonname[90];
221 char f_mntfromname[90];
222 uint64_t dummy[10]; // was union mount_info mount_info;
223 };
224
225 /// For getdirentries().
226 struct dirent
227 {
228 ino_t d_ino; //!< file number of entry
229 uint16_t d_reclen; //!< length of this record
230 uint16_t d_namlen; //!< length of string in d_name
231 char d_name[256]; //!< dummy name length
232 };
233
234
235 /// Length of strings in struct utsname (plus 1 for null char).
236 static const int _SYS_NMLN = 32;
237
238 /// Interface struct for uname().
239 struct utsname {
240 char sysname[_SYS_NMLN]; //!< System name.
241 char nodename[_SYS_NMLN]; //!< Node name.
242 char release[_SYS_NMLN]; //!< OS release.
243 char version[_SYS_NMLN]; //!< OS version.
244 char machine[_SYS_NMLN]; //!< Machine type.
245 };
246
247 //@{
248 /// ioctl() command codes.
249 static const unsigned TIOCGETP = 0x40067408;
250 static const unsigned TIOCSETP = 0x80067409;
251 static const unsigned TIOCSETN = 0x8006740a;
252 static const unsigned TIOCSETC = 0x80067411;
253 static const unsigned TIOCGETC = 0x40067412;
254 static const unsigned FIONREAD = 0x4004667f;
255 static const unsigned TIOCISATTY = 0x2000745e;
256 // TIOCGETS not defined in tru64, so I made up a number
257 static const unsigned TIOCGETS = 0x40000000;
258 static const unsigned TIOCGETA = 0x402c7413;
259 //@}
260
261 /// Resource enumeration for getrlimit().
262 enum rlimit_resources {
263 TGT_RLIMIT_CPU = 0,
264 TGT_RLIMIT_FSIZE = 1,
265 TGT_RLIMIT_DATA = 2,
266 TGT_RLIMIT_STACK = 3,
267 TGT_RLIMIT_CORE = 4,
268 TGT_RLIMIT_RSS = 5,
269 TGT_RLIMIT_NOFILE = 6,
270 TGT_RLIMIT_AS = 7,
271 TGT_RLIMIT_VMEM = 7
272 };
273
274 /// Limit struct for getrlimit/setrlimit.
275 struct rlimit {
276 uint64_t rlim_cur; //!< soft limit
277 uint64_t rlim_max; //!< hard limit
278 };
279
280
281 /// For mmap().
282 static const unsigned TGT_MAP_ANONYMOUS = 0x10;
283
284
285 //@{
286 /// For getsysinfo().
287 static const unsigned GSI_PLATFORM_NAME = 103; //!< platform name as string
288 static const unsigned GSI_CPU_INFO = 59; //!< CPU information
289 static const unsigned GSI_PROC_TYPE = 60; //!< get proc_type
290 static const unsigned GSI_MAX_CPU = 30; //!< max # cpu's on this machine
291 static const unsigned GSI_CPUS_IN_BOX = 55; //!< number of CPUs in system
292 static const unsigned GSI_PHYSMEM = 19; //!< Physical memory in KB
293 static const unsigned GSI_CLK_TCK = 42; //!< clock freq in Hz
294 //@}
295
296 /// For getsysinfo() GSI_CPU_INFO option.
297 struct cpu_info {
298 uint32_t current_cpu; //!< current_cpu
299 uint32_t cpus_in_box; //!< cpus_in_box
300 uint32_t cpu_type; //!< cpu_type
301 uint32_t ncpus; //!< ncpus
302 uint64_t cpus_present; //!< cpus_present
303 uint64_t cpus_running; //!< cpus_running
304 uint64_t cpu_binding; //!< cpu_binding
305 uint64_t cpu_ex_binding; //!< cpu_ex_binding
306 uint32_t mhz; //!< mhz
307 uint32_t unused[3]; //!< future expansion
308 };
309
310 //@{
311 /// For setsysinfo().
312 static const unsigned SSI_IEEE_FP_CONTROL = 14; //!< ieee_set_fp_control()
313 //@}
314
315 /// For gettimeofday.
316 struct timeval {
317 uint32_t tv_sec; //!< seconds
318 uint32_t tv_usec; //!< microseconds
319 };
320
321 //@{
322 /// For getrusage().
323 static const int TGT_RUSAGE_THREAD = 1;
324 static const int TGT_RUSAGE_SELF = 0;
325 static const int TGT_RUSAGE_CHILDREN = -1;
326 //@}
327
328 /// For getrusage().
329 struct rusage {
330 struct timeval ru_utime; //!< user time used
331 struct timeval ru_stime; //!< system time used
332 uint64_t ru_maxrss; //!< ru_maxrss
333 uint64_t ru_ixrss; //!< integral shared memory size
334 uint64_t ru_idrss; //!< integral unshared data "
335 uint64_t ru_isrss; //!< integral unshared stack "
336 uint64_t ru_minflt; //!< page reclaims - total vmfaults
337 uint64_t ru_majflt; //!< page faults
338 uint64_t ru_nswap; //!< swaps
339 uint64_t ru_inblock; //!< block input operations
340 uint64_t ru_oublock; //!< block output operations
341 uint64_t ru_msgsnd; //!< messages sent
342 uint64_t ru_msgrcv; //!< messages received
343 uint64_t ru_nsignals; //!< signals received
344 uint64_t ru_nvcsw; //!< voluntary context switches
345 uint64_t ru_nivcsw; //!< involuntary "
346 };
347
348 /// For sigreturn().
349 struct sigcontext {
350 int64_t sc_onstack; //!< sigstack state to restore
351 int64_t sc_mask; //!< signal mask to restore
352 int64_t sc_pc; //!< pc at time of signal
353 int64_t sc_ps; //!< psl to retore
354 int64_t sc_regs[32]; //!< processor regs 0 to 31
355 int64_t sc_ownedfp; //!< fp has been used
356 int64_t sc_fpregs[32]; //!< fp regs 0 to 31
357 uint64_t sc_fpcr; //!< floating point control reg
358 uint64_t sc_fp_control; //!< software fpcr
359 int64_t sc_reserved1; //!< reserved for kernel
360 uint32_t sc_kreserved1; //!< reserved for kernel
361 uint32_t sc_kreserved2; //!< reserved for kernel
362 size_t sc_ssize; //!< stack size
363 caddr_t sc_sbase; //!< stack start
364 uint64_t sc_traparg_a0; //!< a0 argument to trap on exc
365 uint64_t sc_traparg_a1; //!< a1 argument to trap on exc
366 uint64_t sc_traparg_a2; //!< a2 argument to trap on exc
367 uint64_t sc_fp_trap_pc; //!< imprecise pc
368 uint64_t sc_fp_trigger_sum; //!< Exception summary at trigg
369 uint64_t sc_fp_trigger_inst; //!< Instruction at trigger pc
370 };
371
372
373 /// For table().
374 static const int TBL_SYSINFO = 12;
375
376 /// For table().
377 struct tbl_sysinfo {
378 uint64_t si_user; //!< User time
379 uint64_t si_nice; //!< Nice time
380 uint64_t si_sys; //!< System time
381 uint64_t si_idle; //!< Idle time
382 uint64_t si_hz; //!< hz
383 uint64_t si_phz; //!< phz
384 uint64_t si_boottime; //!< Boot time in seconds
385 uint64_t wait; //!< Wait time
386 uint32_t si_max_procs; //!< rpb->rpb_numprocs
387 uint32_t pad; //!< padding
388 };
389
390
391 /// For stack_create.
392 struct vm_stack {
393 // was void *
394 Addr address; //!< address hint
395 size_t rsize; //!< red zone size
396 size_t ysize; //!< yellow zone size
397 size_t gsize; //!< green zone size
398 size_t swap; //!< amount of swap to reserve
399 size_t incr; //!< growth increment
400 uint64_t align; //!< address alignment
401 uint64_t flags; //!< MAP_FIXED etc.
402 // was struct memalloc_attr *
403 Addr attr; //!< allocation policy
404 uint64_t reserved; //!< reserved
405 };
406
407 /// Return values for nxm calls.
408 enum {
409 KERN_NOT_RECEIVER = 7,
410 KERN_NOT_IN_SET = 12
411 };
412
413 /// For nxm_task_init.
414 static const int NXM_TASK_INIT_VP = 2; //!< initial thread is VP
415
416 /// Task attribute structure.
417 struct nxm_task_attr {
418 int64_t nxm_callback; //!< nxm_callback
419 unsigned int nxm_version; //!< nxm_version
420 unsigned short nxm_uniq_offset; //!< nxm_uniq_offset
421 unsigned short flags; //!< flags
422 int nxm_quantum; //!< nxm_quantum
423 int pad1; //!< pad1
424 int64_t pad2; //!< pad2
425 };
426
427 /// Signal set.
428 typedef uint64_t sigset_t;
429
430 /// Thread state shared between user & kernel.
431 struct ushared_state {
432 sigset_t sigmask; //!< thread signal mask
433 sigset_t sig; //!< thread pending mask
434 // struct nxm_pth_state *
435 Addr pth_id; //!< out-of-line state
436 int flags; //!< shared flags
437 #define US_SIGSTACK 0x1 // thread called sigaltstack
438 #define US_ONSTACK 0x2 // thread is running on altstack
439 #define US_PROFILE 0x4 // thread called profil
440 #define US_SYSCALL 0x8 // thread in syscall
441 #define US_TRAP 0x10 // thread has trapped
442 #define US_YELLOW 0x20 // thread has mellowed yellow
443 #define US_YZONE 0x40 // thread has zoned out
444 #define US_FP_OWNED 0x80 // thread used floating point
445
446 int cancel_state; //!< thread's cancelation state
447 #define US_CANCEL 0x1 // cancel pending
448 #define US_NOCANCEL 0X2 // synch cancel disabled
449 #define US_SYS_NOCANCEL 0x4 // syscall cancel disabled
450 #define US_ASYNC_NOCANCEL 0x8 // asynch cancel disabled
451 #define US_CANCEL_BITS (US_NOCANCEL|US_SYS_NOCANCEL|US_ASYNC_NOCANCEL)
452 #define US_CANCEL_MASK (US_CANCEL|US_NOCANCEL|US_SYS_NOCANCEL| \
453 US_ASYNC_NOCANCEL)
454
455 // These are semi-shared. They are always visible to
456 // the kernel but are never context-switched by the library.
457
458 int nxm_ssig; //!< scheduler's synchronous signals
459 int reserved1; //!< reserved1
460 int64_t nxm_active; //!< scheduler active
461 int64_t reserved2; //!< reserved2
462 };
463
464 struct nxm_sched_state {
465 struct ushared_state nxm_u; //!< state own by user thread
466 unsigned int nxm_bits; //!< scheduler state / slot
467 int nxm_quantum; //!< quantum count-down value
468 int nxm_set_quantum; //!< quantum reset value
469 int nxm_sysevent; //!< syscall state
470 // struct nxm_upcall *
471 Addr nxm_uc_ret; //!< stack ptr of null thread
472 // void *
473 Addr nxm_tid; //!< scheduler's thread id
474 int64_t nxm_va; //!< page fault address
475 // struct nxm_pth_state *
476 Addr nxm_pthid; //!< id of null thread
477 uint64_t nxm_bound_pcs_count; //!< bound PCS thread count
478 int64_t pad[2]; //!< pad
479 };
480
481 /// nxm_shared.
482 struct nxm_shared {
483 int64_t nxm_callback; //!< address of upcall routine
484 unsigned int nxm_version; //!< version number
485 unsigned short nxm_uniq_offset; //!< correction factor for TEB
486 unsigned short pad1; //!< pad1
487 int64_t space[2]; //!< future growth
488 struct nxm_sched_state nxm_ss[1]; //!< array of shared areas
489 };
490
491 /// nxm_slot_state_t.
492 enum nxm_slot_state_t {
493 NXM_SLOT_AVAIL,
494 NXM_SLOT_BOUND,
495 NXM_SLOT_UNBOUND,
496 NXM_SLOT_EMPTY
497 };
498
499 /// nxm_config_info
500 struct nxm_config_info {
501 int nxm_nslots_per_rad; //!< max number of VP slots per RAD
502 int nxm_nrads; //!< max number of RADs
503 // nxm_slot_state_t *
504 Addr nxm_slot_state; //!< per-VP slot state
505 // struct nxm_shared *
506 Addr nxm_rad[1]; //!< per-RAD shared areas
507 };
508
509 /// For nxm_thread_create.
510 enum nxm_thread_type {
511 NXM_TYPE_SCS = 0,
512 NXM_TYPE_VP = 1,
513 NXM_TYPE_MANAGER = 2
514 };
515
516 /// Thread attributes.
517 struct nxm_thread_attr {
518 int version; //!< version
519 int type; //!< type
520 int cancel_flags; //!< cancel_flags
521 int priority; //!< priority
522 int policy; //!< policy
523 int signal_type; //!< signal_type
524 // void *
525 Addr pthid; //!< pthid
526 sigset_t sigmask; //!< sigmask
527 /// Initial register values.
528 struct {
529 uint64_t pc; //!< pc
530 uint64_t sp; //!< sp
531 uint64_t a0; //!< a0
532 } registers;
533 uint64_t pad2[2]; //!< pad2
534 };
535
536 /// Helper function to convert a host stat buffer to a target stat
537 /// buffer. Also copies the target buffer out to the simulated
538 /// memory space. Used by stat(), fstat(), and lstat().
539 template <class T>
540 static void
541 copyOutStatBuf(FunctionalMemory *mem, Addr addr, global_stat *host)
542 {
543 TypedBufferArg<T> tgt(addr);
544
545 tgt->st_dev = htog(host->st_dev);
546 tgt->st_ino = htog(host->st_ino);
547 tgt->st_mode = htog(host->st_mode);
548 tgt->st_nlink = htog(host->st_nlink);
549 tgt->st_uid = htog(host->st_uid);
550 tgt->st_gid = htog(host->st_gid);
551 tgt->st_rdev = htog(host->st_rdev);
552 tgt->st_size = htog(host->st_size);
553 tgt->st_atimeX = htog(host->st_atime);
554 tgt->st_mtimeX = htog(host->st_mtime);
555 tgt->st_ctimeX = htog(host->st_ctime);
556 tgt->st_blksize = htog(host->st_blksize);
557 tgt->st_blocks = htog(host->st_blocks);
558
559 tgt.copyOut(mem);
560 }
561
562 /// Helper function to convert a host statfs buffer to a target statfs
563 /// buffer. Also copies the target buffer out to the simulated
564 /// memory space. Used by statfs() and fstatfs().
565 template <class T>
566 static void
567 copyOutStatfsBuf(FunctionalMemory *mem, Addr addr, global_statfs *host)
568 {
569 TypedBufferArg<T> tgt(addr);
570
571 #if defined(__OpenBSD__) || defined(__APPLE__) || defined(__FreeBSD__)
572 tgt->f_type = 0;
573 #else
574 tgt->f_type = htog(host->f_type);
575 #endif
576 tgt->f_bsize = htog(host->f_bsize);
577 tgt->f_blocks = htog(host->f_blocks);
578 tgt->f_bfree = htog(host->f_bfree);
579 tgt->f_bavail = htog(host->f_bavail);
580 tgt->f_files = htog(host->f_files);
581 tgt->f_ffree = htog(host->f_ffree);
582
583 // Is this as string normally?
584 memcpy(&tgt->f_fsid, &host->f_fsid, sizeof(host->f_fsid));
585
586 tgt.copyOut(mem);
587 }
588
589 class F64 {
590 public:
591 static void copyOutStatBuf(FunctionalMemory *mem, Addr addr,
592 global_stat *host)
593 {
594 Tru64::copyOutStatBuf<Tru64::F64_stat>(mem, addr, host);
595 }
596
597 static void copyOutStatfsBuf(FunctionalMemory *mem, Addr addr,
598 global_statfs *host)
599 {
600 Tru64::copyOutStatfsBuf<Tru64::F64_statfs>(mem, addr, host);
601 }
602 };
603
604 class PreF64 {
605 public:
606 static void copyOutStatBuf(FunctionalMemory *mem, Addr addr,
607 global_stat *host)
608 {
609 Tru64::copyOutStatBuf<Tru64::pre_F64_stat>(mem, addr, host);
610 }
611
612 static void copyOutStatfsBuf(FunctionalMemory *mem, Addr addr,
613 global_statfs *host)
614 {
615 Tru64::copyOutStatfsBuf<Tru64::pre_F64_statfs>(mem, addr, host);
616 }
617 };
618
619 /// Helper function to convert a host stat buffer to an old pre-F64
620 /// (4.x) target stat buffer. Also copies the target buffer out to
621 /// the simulated memory space. Used by pre_F64_stat(),
622 /// pre_F64_fstat(), and pre_F64_lstat().
623 static void
624 copyOutPreF64StatBuf(FunctionalMemory *mem, Addr addr, struct stat *host)
625 {
626 TypedBufferArg<Tru64::pre_F64_stat> tgt(addr);
627
628 tgt->st_dev = htog(host->st_dev);
629 tgt->st_ino = htog(host->st_ino);
630 tgt->st_mode = htog(host->st_mode);
631 tgt->st_nlink = htog(host->st_nlink);
632 tgt->st_uid = htog(host->st_uid);
633 tgt->st_gid = htog(host->st_gid);
634 tgt->st_rdev = htog(host->st_rdev);
635 tgt->st_size = htog(host->st_size);
636 tgt->st_atimeX = htog(host->st_atime);
637 tgt->st_mtimeX = htog(host->st_mtime);
638 tgt->st_ctimeX = htog(host->st_ctime);
639 tgt->st_blksize = htog(host->st_blksize);
640 tgt->st_blocks = htog(host->st_blocks);
641
642 tgt.copyOut(mem);
643 }
644
645
646 /// The target system's hostname.
647 static const char *hostname;
648
649 /// Target uname() handler.
650 static SyscallReturn
651 unameFunc(SyscallDesc *desc, int callnum, Process *process,
652 ExecContext *xc)
653 {
654 TypedBufferArg<Tru64::utsname> name(xc->getSyscallArg(0));
655
656 strcpy(name->sysname, "OSF1");
657 strcpy(name->nodename, hostname);
658 strcpy(name->release, "V5.1");
659 strcpy(name->version, "732");
660 strcpy(name->machine, "alpha");
661
662 name.copyOut(xc->mem);
663 return 0;
664 }
665
666
667 /// Target getsysyinfo() handler.
668 static SyscallReturn
669 getsysinfoFunc(SyscallDesc *desc, int callnum, Process *process,
670 ExecContext *xc)
671 {
672 unsigned op = xc->getSyscallArg(0);
673 unsigned nbytes = xc->getSyscallArg(2);
674
675 switch (op) {
676
677 case Tru64::GSI_MAX_CPU: {
678 TypedBufferArg<uint32_t> max_cpu(xc->getSyscallArg(1));
679 *max_cpu = htog((uint32_t)process->numCpus());
680 max_cpu.copyOut(xc->mem);
681 return 1;
682 }
683
684 case Tru64::GSI_CPUS_IN_BOX: {
685 TypedBufferArg<uint32_t> cpus_in_box(xc->getSyscallArg(1));
686 *cpus_in_box = htog((uint32_t)process->numCpus());
687 cpus_in_box.copyOut(xc->mem);
688 return 1;
689 }
690
691 case Tru64::GSI_PHYSMEM: {
692 TypedBufferArg<uint64_t> physmem(xc->getSyscallArg(1));
693 *physmem = htog((uint64_t)1024 * 1024); // physical memory in KB
694 physmem.copyOut(xc->mem);
695 return 1;
696 }
697
698 case Tru64::GSI_CPU_INFO: {
699 TypedBufferArg<Tru64::cpu_info> infop(xc->getSyscallArg(1));
700
701 infop->current_cpu = htog(0);
702 infop->cpus_in_box = htog(process->numCpus());
703 infop->cpu_type = htog(57);
704 infop->ncpus = htog(process->numCpus());
705 uint64_t cpumask = (1 << process->numCpus()) - 1;
706 infop->cpus_present = infop->cpus_running = htog(cpumask);
707 infop->cpu_binding = htog(0);
708 infop->cpu_ex_binding = htog(0);
709 infop->mhz = htog(667);
710
711 infop.copyOut(xc->mem);
712 return 1;
713 }
714
715 case Tru64::GSI_PROC_TYPE: {
716 TypedBufferArg<uint64_t> proc_type(xc->getSyscallArg(1));
717 *proc_type = htog((uint64_t)11);
718 proc_type.copyOut(xc->mem);
719 return 1;
720 }
721
722 case Tru64::GSI_PLATFORM_NAME: {
723 BufferArg bufArg(xc->getSyscallArg(1), nbytes);
724 strncpy((char *)bufArg.bufferPtr(),
725 "COMPAQ Professional Workstation XP1000",
726 nbytes);
727 bufArg.copyOut(xc->mem);
728 return 1;
729 }
730
731 case Tru64::GSI_CLK_TCK: {
732 TypedBufferArg<uint64_t> clk_hz(xc->getSyscallArg(1));
733 *clk_hz = htog((uint64_t)1024);
734 clk_hz.copyOut(xc->mem);
735 return 1;
736 }
737
738 default:
739 warn("getsysinfo: unknown op %d\n", op);
740 break;
741 }
742
743 return 0;
744 }
745
746 /// Target setsysyinfo() handler.
747 static SyscallReturn
748 setsysinfoFunc(SyscallDesc *desc, int callnum, Process *process,
749 ExecContext *xc)
750 {
751 unsigned op = xc->getSyscallArg(0);
752
753 switch (op) {
754 case SSI_IEEE_FP_CONTROL:
755 warn("setsysinfo: ignoring ieee_set_fp_control() arg 0x%x\n",
756 xc->getSyscallArg(1));
757 break;
758
759 default:
760 warn("setsysinfo: unknown op %d\n", op);
761 break;
762 }
763
764 return 0;
765 }
766
767 /// Target fnctl() handler.
768 static SyscallReturn
769 fcntlFunc(SyscallDesc *desc, int callnum, Process *process,
770 ExecContext *xc)
771 {
772 int fd = xc->getSyscallArg(0);
773
774 if (fd < 0 || process->sim_fd(fd) < 0)
775 return -EBADF;
776
777 int cmd = xc->getSyscallArg(1);
778 switch (cmd) {
779 case 0: // F_DUPFD
780 // if we really wanted to support this, we'd need to do it
781 // in the target fd space.
782 warn("fcntl(%d, F_DUPFD) not supported, error returned\n", fd);
783 return -EMFILE;
784
785 case 1: // F_GETFD (get close-on-exec flag)
786 case 2: // F_SETFD (set close-on-exec flag)
787 return 0;
788
789 case 3: // F_GETFL (get file flags)
790 case 4: // F_SETFL (set file flags)
791 // not sure if this is totally valid, but we'll pass it through
792 // to the underlying OS
793 warn("fcntl(%d, %d) passed through to host\n", fd, cmd);
794 return fcntl(process->sim_fd(fd), cmd);
795 // return 0;
796
797 case 7: // F_GETLK (get lock)
798 case 8: // F_SETLK (set lock)
799 case 9: // F_SETLKW (set lock and wait)
800 // don't mess with file locking... just act like it's OK
801 warn("File lock call (fcntl(%d, %d)) ignored.\n", fd, cmd);
802 return 0;
803
804 default:
805 warn("Unknown fcntl command %d\n", cmd);
806 return 0;
807 }
808 }
809
810
811 /// Target getdirentries() handler.
812 static SyscallReturn
813 getdirentriesFunc(SyscallDesc *desc, int callnum, Process *process,
814 ExecContext *xc)
815 {
816 #ifdef __CYGWIN__
817 panic("getdirent not implemented on cygwin!");
818 #else
819 int fd = process->sim_fd(xc->getSyscallArg(0));
820 Addr tgt_buf = xc->getSyscallArg(1);
821 int tgt_nbytes = xc->getSyscallArg(2);
822 Addr tgt_basep = xc->getSyscallArg(3);
823
824 char * const host_buf = new char[tgt_nbytes];
825
826 // just pass basep through uninterpreted.
827 TypedBufferArg<int64_t> basep(tgt_basep);
828 basep.copyIn(xc->mem);
829 long host_basep = (off_t)htog((int64_t)*basep);
830 int host_result = getdirentries(fd, host_buf, tgt_nbytes, &host_basep);
831
832 // check for error
833 if (host_result < 0) {
834 delete [] host_buf;
835 return -errno;
836 }
837
838 // no error: copy results back to target space
839 Addr tgt_buf_ptr = tgt_buf;
840 char *host_buf_ptr = host_buf;
841 char *host_buf_end = host_buf + host_result;
842 while (host_buf_ptr < host_buf_end) {
843 global_dirent *host_dp = (global_dirent *)host_buf_ptr;
844 int namelen = strlen(host_dp->d_name);
845
846 // Actual size includes padded string rounded up for alignment.
847 // Subtract 256 for dummy char array in Tru64::dirent definition.
848 // Add 1 to namelen for terminating null char.
849 int tgt_bufsize = sizeof(Tru64::dirent) - 256 + roundUp(namelen+1, 8);
850 TypedBufferArg<Tru64::dirent> tgt_dp(tgt_buf_ptr, tgt_bufsize);
851 tgt_dp->d_ino = host_dp->d_ino;
852 tgt_dp->d_reclen = tgt_bufsize;
853 tgt_dp->d_namlen = namelen;
854 strcpy(tgt_dp->d_name, host_dp->d_name);
855 tgt_dp.copyOut(xc->mem);
856
857 tgt_buf_ptr += tgt_bufsize;
858 host_buf_ptr += host_dp->d_reclen;
859 }
860
861 delete [] host_buf;
862
863 *basep = htog((int64_t)host_basep);
864 basep.copyOut(xc->mem);
865
866 return tgt_buf_ptr - tgt_buf;
867 #endif
868 }
869
870 /// Target sigreturn() handler.
871 static SyscallReturn
872 sigreturnFunc(SyscallDesc *desc, int callnum, Process *process,
873 ExecContext *xc)
874 {
875 RegFile *regs = &xc->regs;
876 TypedBufferArg<Tru64::sigcontext> sc(xc->getSyscallArg(0));
877
878 sc.copyIn(xc->mem);
879
880 // Restore state from sigcontext structure.
881 // Note that we'll advance PC <- NPC before the end of the cycle,
882 // so we need to restore the desired PC into NPC.
883 // The current regs->pc will get clobbered.
884 regs->npc = htog(sc->sc_pc);
885
886 for (int i = 0; i < 31; ++i) {
887 regs->intRegFile[i] = htog(sc->sc_regs[i]);
888 regs->floatRegFile.q[i] = htog(sc->sc_fpregs[i]);
889 }
890
891 regs->miscRegs.fpcr = htog(sc->sc_fpcr);
892
893 return 0;
894 }
895
896 /// Target table() handler.
897 static SyscallReturn
898 tableFunc(SyscallDesc *desc, int callnum, Process *process,
899 ExecContext *xc)
900 {
901 int id = xc->getSyscallArg(0); // table ID
902 int index = xc->getSyscallArg(1); // index into table
903 // arg 2 is buffer pointer; type depends on table ID
904 int nel = xc->getSyscallArg(3); // number of elements
905 int lel = xc->getSyscallArg(4); // expected element size
906
907 switch (id) {
908 case Tru64::TBL_SYSINFO: {
909 if (index != 0 || nel != 1 || lel != sizeof(Tru64::tbl_sysinfo))
910 return -EINVAL;
911 TypedBufferArg<Tru64::tbl_sysinfo> elp(xc->getSyscallArg(2));
912
913 const int clk_hz = one_million;
914 elp->si_user = htog(curTick / (Clock::Frequency / clk_hz));
915 elp->si_nice = htog(0);
916 elp->si_sys = htog(0);
917 elp->si_idle = htog(0);
918 elp->wait = htog(0);
919 elp->si_hz = htog(clk_hz);
920 elp->si_phz = htog(clk_hz);
921 elp->si_boottime = htog(seconds_since_epoch); // seconds since epoch?
922 elp->si_max_procs = htog(process->numCpus());
923 elp.copyOut(xc->mem);
924 return 0;
925 }
926
927 default:
928 cerr << "table(): id " << id << " unknown." << endl;
929 return -EINVAL;
930 }
931 }
932
933 /// Array of syscall descriptors, indexed by call number.
934 static SyscallDesc syscallDescs[];
935
936 /// Number of syscalls in syscallDescs[].
937 static const int Num_Syscall_Descs;
938
939 /// Max supported syscall number.
940 static const int Max_Syscall_Desc;
941
942 //
943 // Mach syscalls -- identified by negated syscall numbers
944 //
945
946 /// Create a stack region for a thread.
947 static SyscallReturn
948 stack_createFunc(SyscallDesc *desc, int callnum, Process *process,
949 ExecContext *xc)
950 {
951 TypedBufferArg<Tru64::vm_stack> argp(xc->getSyscallArg(0));
952
953 argp.copyIn(xc->mem);
954
955 // if the user chose an address, just let them have it. Otherwise
956 // pick one for them.
957 if (htog(argp->address) == 0) {
958 argp->address = htog(process->next_thread_stack_base);
959 int stack_size = (htog(argp->rsize) + htog(argp->ysize) +
960 htog(argp->gsize));
961 process->next_thread_stack_base -= stack_size;
962 argp.copyOut(xc->mem);
963 }
964
965 return 0;
966 }
967
968 /// NXM library version stamp.
969 static
970 const int NXM_LIB_VERSION = 301003;
971
972 /// This call sets up the interface between the user and kernel
973 /// schedulers by creating a shared-memory region. The shared memory
974 /// region has several structs, some global, some per-RAD, some per-VP.
975 static SyscallReturn
976 nxm_task_initFunc(SyscallDesc *desc, int callnum, Process *process,
977 ExecContext *xc)
978 {
979 TypedBufferArg<Tru64::nxm_task_attr> attrp(xc->getSyscallArg(0));
980 TypedBufferArg<Addr> configptr_ptr(xc->getSyscallArg(1));
981
982 attrp.copyIn(xc->mem);
983
984 if (gtoh(attrp->nxm_version) != NXM_LIB_VERSION) {
985 cerr << "nxm_task_init: thread library version mismatch! "
986 << "got " << attrp->nxm_version
987 << ", expected " << NXM_LIB_VERSION << endl;
988 abort();
989 }
990
991 if (gtoh(attrp->flags) != Tru64::NXM_TASK_INIT_VP) {
992 cerr << "nxm_task_init: bad flag value " << attrp->flags
993 << " (expected " << Tru64::NXM_TASK_INIT_VP << ")" << endl;
994 abort();
995 }
996
997 const Addr base_addr = 0x12000; // was 0x3f0000000LL;
998 Addr cur_addr = base_addr; // next addresses to use
999 // first comes the config_info struct
1000 Addr config_addr = cur_addr;
1001 cur_addr += sizeof(Tru64::nxm_config_info);
1002 // next comes the per-cpu state vector
1003 Addr slot_state_addr = cur_addr;
1004 int slot_state_size =
1005 process->numCpus() * sizeof(Tru64::nxm_slot_state_t);
1006 cur_addr += slot_state_size;
1007 // now the per-RAD state struct (we only support one RAD)
1008 cur_addr = 0x14000; // bump up addr for alignment
1009 Addr rad_state_addr = cur_addr;
1010 int rad_state_size =
1011 (sizeof(Tru64::nxm_shared)
1012 + (process->numCpus()-1) * sizeof(Tru64::nxm_sched_state));
1013 cur_addr += rad_state_size;
1014
1015 // now initialize a config_info struct and copy it out to user space
1016 TypedBufferArg<Tru64::nxm_config_info> config(config_addr);
1017
1018 config->nxm_nslots_per_rad = htog(process->numCpus());
1019 config->nxm_nrads = htog(1); // only one RAD in our system!
1020 config->nxm_slot_state = htog(slot_state_addr);
1021 config->nxm_rad[0] = htog(rad_state_addr);
1022
1023 config.copyOut(xc->mem);
1024
1025 // initialize the slot_state array and copy it out
1026 TypedBufferArg<Tru64::nxm_slot_state_t> slot_state(slot_state_addr,
1027 slot_state_size);
1028 for (int i = 0; i < process->numCpus(); ++i) {
1029 // CPU 0 is bound to the calling process; all others are available
1030 // XXX this code should have an endian conversion, but I don't think
1031 // it works anyway
1032 slot_state[i] =
1033 (i == 0) ? Tru64::NXM_SLOT_BOUND : Tru64::NXM_SLOT_AVAIL;
1034 }
1035
1036 slot_state.copyOut(xc->mem);
1037
1038 // same for the per-RAD "shared" struct. Note that we need to
1039 // allocate extra bytes for the per-VP array which is embedded at
1040 // the end.
1041 TypedBufferArg<Tru64::nxm_shared> rad_state(rad_state_addr,
1042 rad_state_size);
1043
1044 rad_state->nxm_callback = attrp->nxm_callback;
1045 rad_state->nxm_version = attrp->nxm_version;
1046 rad_state->nxm_uniq_offset = attrp->nxm_uniq_offset;
1047 for (int i = 0; i < process->numCpus(); ++i) {
1048 Tru64::nxm_sched_state *ssp = &rad_state->nxm_ss[i];
1049 ssp->nxm_u.sigmask = htog(0);
1050 ssp->nxm_u.sig = htog(0);
1051 ssp->nxm_u.flags = htog(0);
1052 ssp->nxm_u.cancel_state = htog(0);
1053 ssp->nxm_u.nxm_ssig = 0;
1054 ssp->nxm_bits = htog(0);
1055 ssp->nxm_quantum = attrp->nxm_quantum;
1056 ssp->nxm_set_quantum = attrp->nxm_quantum;
1057 ssp->nxm_sysevent = htog(0);
1058
1059 if (i == 0) {
1060 uint64_t uniq = xc->regs.miscRegs.uniq;
1061 ssp->nxm_u.pth_id = htog(uniq + gtoh(attrp->nxm_uniq_offset));
1062 ssp->nxm_u.nxm_active = htog(uniq | 1);
1063 }
1064 else {
1065 ssp->nxm_u.pth_id = htog(0);
1066 ssp->nxm_u.nxm_active = htog(0);
1067 }
1068 }
1069
1070 rad_state.copyOut(xc->mem);
1071
1072 //
1073 // copy pointer to shared config area out to user
1074 //
1075 *configptr_ptr = htog(config_addr);
1076 configptr_ptr.copyOut(xc->mem);
1077
1078 // Register this as a valid address range with the process
1079 process->nxm_start = base_addr;
1080 process->nxm_end = cur_addr;
1081
1082 return 0;
1083 }
1084
1085 /// Initialize execution context.
1086 static void
1087 init_exec_context(ExecContext *ec,
1088 Tru64::nxm_thread_attr *attrp, uint64_t uniq_val)
1089 {
1090 memset(&ec->regs, 0, sizeof(ec->regs));
1091
1092 ec->regs.intRegFile[ArgumentReg0] = gtoh(attrp->registers.a0);
1093 ec->regs.intRegFile[27/*t12*/] = gtoh(attrp->registers.pc);
1094 ec->regs.intRegFile[StackPointerReg] = gtoh(attrp->registers.sp);
1095 ec->regs.miscRegs.uniq = uniq_val;
1096
1097 ec->regs.pc = gtoh(attrp->registers.pc);
1098 ec->regs.npc = gtoh(attrp->registers.pc) + sizeof(MachInst);
1099
1100 ec->activate();
1101 }
1102
1103 /// Create thread.
1104 static SyscallReturn
1105 nxm_thread_createFunc(SyscallDesc *desc, int callnum, Process *process,
1106 ExecContext *xc)
1107 {
1108 TypedBufferArg<Tru64::nxm_thread_attr> attrp(xc->getSyscallArg(0));
1109 TypedBufferArg<uint64_t> kidp(xc->getSyscallArg(1));
1110 int thread_index = xc->getSyscallArg(2);
1111
1112 // get attribute args
1113 attrp.copyIn(xc->mem);
1114
1115 if (gtoh(attrp->version) != NXM_LIB_VERSION) {
1116 cerr << "nxm_thread_create: thread library version mismatch! "
1117 << "got " << attrp->version
1118 << ", expected " << NXM_LIB_VERSION << endl;
1119 abort();
1120 }
1121
1122 if (thread_index < 0 | thread_index > process->numCpus()) {
1123 cerr << "nxm_thread_create: bad thread index " << thread_index
1124 << endl;
1125 abort();
1126 }
1127
1128 // On a real machine, the per-RAD shared structure is in
1129 // shared memory, so both the user and kernel can get at it.
1130 // We don't have that luxury, so we just copy it in and then
1131 // back out again.
1132 int rad_state_size =
1133 (sizeof(Tru64::nxm_shared) +
1134 (process->numCpus()-1) * sizeof(Tru64::nxm_sched_state));
1135
1136 TypedBufferArg<Tru64::nxm_shared> rad_state(0x14000,
1137 rad_state_size);
1138 rad_state.copyIn(xc->mem);
1139
1140 uint64_t uniq_val = gtoh(attrp->pthid) - gtoh(rad_state->nxm_uniq_offset);
1141
1142 if (gtoh(attrp->type) == Tru64::NXM_TYPE_MANAGER) {
1143 // DEC pthreads seems to always create one of these (in
1144 // addition to N application threads), but we don't use it,
1145 // so don't bother creating it.
1146
1147 // This is supposed to be a port number. Make something up.
1148 *kidp = htog(99);
1149 kidp.copyOut(xc->mem);
1150
1151 return 0;
1152 } else if (gtoh(attrp->type) == Tru64::NXM_TYPE_VP) {
1153 // A real "virtual processor" kernel thread. Need to fork
1154 // this thread on another CPU.
1155 Tru64::nxm_sched_state *ssp = &rad_state->nxm_ss[thread_index];
1156
1157 if (gtoh(ssp->nxm_u.nxm_active) != 0)
1158 return (int) Tru64::KERN_NOT_RECEIVER;
1159
1160 ssp->nxm_u.pth_id = attrp->pthid;
1161 ssp->nxm_u.nxm_active = htog(uniq_val | 1);
1162
1163 rad_state.copyOut(xc->mem);
1164
1165 Addr slot_state_addr = 0x12000 + sizeof(Tru64::nxm_config_info);
1166 int slot_state_size =
1167 process->numCpus() * sizeof(Tru64::nxm_slot_state_t);
1168
1169 TypedBufferArg<Tru64::nxm_slot_state_t>
1170 slot_state(slot_state_addr,
1171 slot_state_size);
1172
1173 slot_state.copyIn(xc->mem);
1174
1175 if (slot_state[thread_index] != Tru64::NXM_SLOT_AVAIL) {
1176 cerr << "nxm_thread_createFunc: requested VP slot "
1177 << thread_index << " not available!" << endl;
1178 fatal("");
1179 }
1180
1181 // XXX This should have an endian conversion but I think this code
1182 // doesn't work anyway
1183 slot_state[thread_index] = Tru64::NXM_SLOT_BOUND;
1184
1185 slot_state.copyOut(xc->mem);
1186
1187 // Find a free simulator execution context.
1188 for (int i = 0; i < process->numCpus(); ++i) {
1189 ExecContext *xc = process->execContexts[i];
1190
1191 if (xc->status() == ExecContext::Unallocated) {
1192 // inactive context... grab it
1193 init_exec_context(xc, attrp, uniq_val);
1194
1195 // This is supposed to be a port number, but we'll try
1196 // and get away with just sticking the thread index
1197 // here.
1198 *kidp = htog(thread_index);
1199 kidp.copyOut(xc->mem);
1200
1201 return 0;
1202 }
1203 }
1204
1205 // fell out of loop... no available inactive context
1206 cerr << "nxm_thread_create: no idle contexts available." << endl;
1207 abort();
1208 } else {
1209 cerr << "nxm_thread_create: can't handle thread type "
1210 << attrp->type << endl;
1211 abort();
1212 }
1213
1214 return 0;
1215 }
1216
1217 /// Thread idle call (like yield()).
1218 static SyscallReturn
1219 nxm_idleFunc(SyscallDesc *desc, int callnum, Process *process,
1220 ExecContext *xc)
1221 {
1222 return 0;
1223 }
1224
1225 /// Block thread.
1226 static SyscallReturn
1227 nxm_thread_blockFunc(SyscallDesc *desc, int callnum, Process *process,
1228 ExecContext *xc)
1229 {
1230 uint64_t tid = xc->getSyscallArg(0);
1231 uint64_t secs = xc->getSyscallArg(1);
1232 uint64_t flags = xc->getSyscallArg(2);
1233 uint64_t action = xc->getSyscallArg(3);
1234 uint64_t usecs = xc->getSyscallArg(4);
1235
1236 cout << xc->cpu->name() << ": nxm_thread_block " << tid << " " << secs
1237 << " " << flags << " " << action << " " << usecs << endl;
1238
1239 return 0;
1240 }
1241
1242 /// block.
1243 static SyscallReturn
1244 nxm_blockFunc(SyscallDesc *desc, int callnum, Process *process,
1245 ExecContext *xc)
1246 {
1247 Addr uaddr = xc->getSyscallArg(0);
1248 uint64_t val = xc->getSyscallArg(1);
1249 uint64_t secs = xc->getSyscallArg(2);
1250 uint64_t usecs = xc->getSyscallArg(3);
1251 uint64_t flags = xc->getSyscallArg(4);
1252
1253 BaseCPU *cpu = xc->cpu;
1254
1255 cout << cpu->name() << ": nxm_block "
1256 << hex << uaddr << dec << " " << val
1257 << " " << secs << " " << usecs
1258 << " " << flags << endl;
1259
1260 return 0;
1261 }
1262
1263 /// Unblock thread.
1264 static SyscallReturn
1265 nxm_unblockFunc(SyscallDesc *desc, int callnum, Process *process,
1266 ExecContext *xc)
1267 {
1268 Addr uaddr = xc->getSyscallArg(0);
1269
1270 cout << xc->cpu->name() << ": nxm_unblock "
1271 << hex << uaddr << dec << endl;
1272
1273 return 0;
1274 }
1275
1276 /// Switch thread priority.
1277 static SyscallReturn
1278 swtch_priFunc(SyscallDesc *desc, int callnum, Process *process,
1279 ExecContext *xc)
1280 {
1281 // Attempts to switch to another runnable thread (if there is
1282 // one). Returns false if there are no other threads to run
1283 // (i.e., the thread can reasonably spin-wait) or true if there
1284 // are other threads.
1285 //
1286 // Since we assume at most one "kernel" thread per CPU, it's
1287 // always safe to return false here.
1288 return 0; //false;
1289 }
1290
1291
1292 /// Activate exec context waiting on a channel. Just activate one
1293 /// by default.
1294 static int
1295 activate_waiting_context(Addr uaddr, Process *process,
1296 bool activate_all = false)
1297 {
1298 int num_activated = 0;
1299
1300 list<Process::WaitRec>::iterator i = process->waitList.begin();
1301 list<Process::WaitRec>::iterator end = process->waitList.end();
1302
1303 while (i != end && (num_activated == 0 || activate_all)) {
1304 if (i->waitChan == uaddr) {
1305 // found waiting process: make it active
1306 ExecContext *newCtx = i->waitingContext;
1307 assert(newCtx->status() == ExecContext::Suspended);
1308 newCtx->activate();
1309
1310 // get rid of this record
1311 i = process->waitList.erase(i);
1312
1313 ++num_activated;
1314 } else {
1315 ++i;
1316 }
1317 }
1318
1319 return num_activated;
1320 }
1321
1322 /// M5 hacked-up lock acquire.
1323 static void
1324 m5_lock_mutex(Addr uaddr, Process *process, ExecContext *xc)
1325 {
1326 TypedBufferArg<uint64_t> lockp(uaddr);
1327
1328 lockp.copyIn(xc->mem);
1329
1330 if (gtoh(*lockp) == 0) {
1331 // lock is free: grab it
1332 *lockp = htog(1);
1333 lockp.copyOut(xc->mem);
1334 } else {
1335 // lock is busy: disable until free
1336 process->waitList.push_back(Process::WaitRec(uaddr, xc));
1337 xc->suspend();
1338 }
1339 }
1340
1341 /// M5 unlock call.
1342 static void
1343 m5_unlock_mutex(Addr uaddr, Process *process, ExecContext *xc)
1344 {
1345 TypedBufferArg<uint64_t> lockp(uaddr);
1346
1347 lockp.copyIn(xc->mem);
1348 assert(*lockp != 0);
1349
1350 // Check for a process waiting on the lock.
1351 int num_waiting = activate_waiting_context(uaddr, process);
1352
1353 // clear lock field if no waiting context is taking over the lock
1354 if (num_waiting == 0) {
1355 *lockp = 0;
1356 lockp.copyOut(xc->mem);
1357 }
1358 }
1359
1360 /// Lock acquire syscall handler.
1361 static SyscallReturn
1362 m5_mutex_lockFunc(SyscallDesc *desc, int callnum, Process *process,
1363 ExecContext *xc)
1364 {
1365 Addr uaddr = xc->getSyscallArg(0);
1366
1367 m5_lock_mutex(uaddr, process, xc);
1368
1369 // Return 0 since we will always return to the user with the lock
1370 // acquired. We will just keep the context inactive until that is
1371 // true.
1372 return 0;
1373 }
1374
1375 /// Try lock (non-blocking).
1376 static SyscallReturn
1377 m5_mutex_trylockFunc(SyscallDesc *desc, int callnum, Process *process,
1378 ExecContext *xc)
1379 {
1380 Addr uaddr = xc->getSyscallArg(0);
1381 TypedBufferArg<uint64_t> lockp(uaddr);
1382
1383 lockp.copyIn(xc->mem);
1384
1385 if (gtoh(*lockp) == 0) {
1386 // lock is free: grab it
1387 *lockp = htog(1);
1388 lockp.copyOut(xc->mem);
1389 return 0;
1390 } else {
1391 return 1;
1392 }
1393 }
1394
1395 /// Unlock syscall handler.
1396 static SyscallReturn
1397 m5_mutex_unlockFunc(SyscallDesc *desc, int callnum, Process *process,
1398 ExecContext *xc)
1399 {
1400 Addr uaddr = xc->getSyscallArg(0);
1401
1402 m5_unlock_mutex(uaddr, process, xc);
1403
1404 return 0;
1405 }
1406
1407 /// Signal ocndition.
1408 static SyscallReturn
1409 m5_cond_signalFunc(SyscallDesc *desc, int callnum, Process *process,
1410 ExecContext *xc)
1411 {
1412 Addr cond_addr = xc->getSyscallArg(0);
1413
1414 // Wake up one process waiting on the condition variable.
1415 activate_waiting_context(cond_addr, process);
1416
1417 return 0;
1418 }
1419
1420 /// Wake up all processes waiting on the condition variable.
1421 static SyscallReturn
1422 m5_cond_broadcastFunc(SyscallDesc *desc, int callnum, Process *process,
1423 ExecContext *xc)
1424 {
1425 Addr cond_addr = xc->getSyscallArg(0);
1426
1427 activate_waiting_context(cond_addr, process, true);
1428
1429 return 0;
1430 }
1431
1432 /// Wait on a condition.
1433 static SyscallReturn
1434 m5_cond_waitFunc(SyscallDesc *desc, int callnum, Process *process,
1435 ExecContext *xc)
1436 {
1437 Addr cond_addr = xc->getSyscallArg(0);
1438 Addr lock_addr = xc->getSyscallArg(1);
1439 TypedBufferArg<uint64_t> condp(cond_addr);
1440 TypedBufferArg<uint64_t> lockp(lock_addr);
1441
1442 // user is supposed to acquire lock before entering
1443 lockp.copyIn(xc->mem);
1444 assert(gtoh(*lockp) != 0);
1445
1446 m5_unlock_mutex(lock_addr, process, xc);
1447
1448 process->waitList.push_back(Process::WaitRec(cond_addr, xc));
1449 xc->suspend();
1450
1451 return 0;
1452 }
1453
1454 /// Thread exit.
1455 static SyscallReturn
1456 m5_thread_exitFunc(SyscallDesc *desc, int callnum, Process *process,
1457 ExecContext *xc)
1458 {
1459 assert(xc->status() == ExecContext::Active);
1460 xc->deallocate();
1461
1462 return 0;
1463 }
1464
1465 /// Array of syscall descriptors for Mach syscalls, indexed by
1466 /// (negated) call number.
1467 static SyscallDesc machSyscallDescs[];
1468
1469 /// Number of syscalls in machSyscallDescs[].
1470 static const int Num_Mach_Syscall_Descs;
1471
1472 /// Max supported Mach syscall number.
1473 static const int Max_Mach_Syscall_Desc;
1474
1475 /// Since negated values are used to identify Mach syscalls, the
1476 /// minimum (signed) valid syscall number is the negated max Mach
1477 /// syscall number.
1478 static const int Min_Syscall_Desc;
1479
1480 /// Do the specified syscall. Just looks the call number up in
1481 /// the table and invokes the appropriate handler.
1482 static void
1483 doSyscall(int callnum, Process *process, ExecContext *xc)
1484 {
1485 if (callnum < Min_Syscall_Desc || callnum > Max_Syscall_Desc) {
1486 fatal("Syscall %d out of range\n", callnum);
1487 }
1488
1489 SyscallDesc *desc =
1490 (callnum < 0) ?
1491 &machSyscallDescs[-callnum] : &syscallDescs[callnum];
1492
1493 desc->doSyscall(callnum, process, xc);
1494 }
1495
1496 /// Indirect syscall invocation (call #0).
1497 static SyscallReturn
1498 indirectSyscallFunc(SyscallDesc *desc, int callnum, Process *process,
1499 ExecContext *xc)
1500 {
1501 int new_callnum = xc->getSyscallArg(0);
1502
1503 for (int i = 0; i < 5; ++i)
1504 xc->setSyscallArg(i, xc->getSyscallArg(i+1));
1505
1506 doSyscall(new_callnum, process, xc);
1507
1508 return 0;
1509 }
1510
1511 }; // class Tru64
1512
1513
1514 // open(2) flags translation table
1515 OpenFlagTransTable Tru64::openFlagTable[] = {
1516 #ifdef _MSC_VER
1517 { Tru64::TGT_O_RDONLY, _O_RDONLY },
1518 { Tru64::TGT_O_WRONLY, _O_WRONLY },
1519 { Tru64::TGT_O_RDWR, _O_RDWR },
1520 { Tru64::TGT_O_APPEND, _O_APPEND },
1521 { Tru64::TGT_O_CREAT, _O_CREAT },
1522 { Tru64::TGT_O_TRUNC, _O_TRUNC },
1523 { Tru64::TGT_O_EXCL, _O_EXCL },
1524 #ifdef _O_NONBLOCK
1525 { Tru64::TGT_O_NONBLOCK, _O_NONBLOCK },
1526 #endif
1527 #ifdef _O_NOCTTY
1528 { Tru64::TGT_O_NOCTTY, _O_NOCTTY },
1529 #endif
1530 #ifdef _O_SYNC
1531 { Tru64::TGT_O_SYNC, _O_SYNC },
1532 #endif
1533 #else /* !_MSC_VER */
1534 { Tru64::TGT_O_RDONLY, O_RDONLY },
1535 { Tru64::TGT_O_WRONLY, O_WRONLY },
1536 { Tru64::TGT_O_RDWR, O_RDWR },
1537 { Tru64::TGT_O_APPEND, O_APPEND },
1538 { Tru64::TGT_O_CREAT, O_CREAT },
1539 { Tru64::TGT_O_TRUNC, O_TRUNC },
1540 { Tru64::TGT_O_EXCL, O_EXCL },
1541 { Tru64::TGT_O_NONBLOCK, O_NONBLOCK },
1542 { Tru64::TGT_O_NOCTTY, O_NOCTTY },
1543 #ifdef O_SYNC
1544 { Tru64::TGT_O_SYNC, O_SYNC },
1545 #endif
1546 #endif /* _MSC_VER */
1547 };
1548
1549 const int Tru64::NUM_OPEN_FLAGS = (sizeof(Tru64::openFlagTable)/sizeof(Tru64::openFlagTable[0]));
1550
1551 const char *Tru64::hostname = "m5.eecs.umich.edu";
1552
1553 SyscallDesc Tru64::syscallDescs[] = {
1554 /* 0 */ SyscallDesc("syscall (#0)", indirectSyscallFunc,
1555 SyscallDesc::SuppressReturnValue),
1556 /* 1 */ SyscallDesc("exit", exitFunc),
1557 /* 2 */ SyscallDesc("fork", unimplementedFunc),
1558 /* 3 */ SyscallDesc("read", readFunc),
1559 /* 4 */ SyscallDesc("write", writeFunc),
1560 /* 5 */ SyscallDesc("old_open", unimplementedFunc),
1561 /* 6 */ SyscallDesc("close", closeFunc),
1562 /* 7 */ SyscallDesc("wait4", unimplementedFunc),
1563 /* 8 */ SyscallDesc("old_creat", unimplementedFunc),
1564 /* 9 */ SyscallDesc("link", unimplementedFunc),
1565 /* 10 */ SyscallDesc("unlink", unlinkFunc),
1566 /* 11 */ SyscallDesc("execv", unimplementedFunc),
1567 /* 12 */ SyscallDesc("chdir", unimplementedFunc),
1568 /* 13 */ SyscallDesc("fchdir", unimplementedFunc),
1569 /* 14 */ SyscallDesc("mknod", unimplementedFunc),
1570 /* 15 */ SyscallDesc("chmod", unimplementedFunc),
1571 /* 16 */ SyscallDesc("chown", unimplementedFunc),
1572 /* 17 */ SyscallDesc("obreak", obreakFunc),
1573 /* 18 */ SyscallDesc("pre_F64_getfsstat", unimplementedFunc),
1574 /* 19 */ SyscallDesc("lseek", lseekFunc),
1575 /* 20 */ SyscallDesc("getpid", getpidFunc),
1576 /* 21 */ SyscallDesc("mount", unimplementedFunc),
1577 /* 22 */ SyscallDesc("unmount", unimplementedFunc),
1578 /* 23 */ SyscallDesc("setuid", setuidFunc),
1579 /* 24 */ SyscallDesc("getuid", getuidFunc),
1580 /* 25 */ SyscallDesc("exec_with_loader", unimplementedFunc),
1581 /* 26 */ SyscallDesc("ptrace", unimplementedFunc),
1582 /* 27 */ SyscallDesc("recvmsg", unimplementedFunc),
1583 /* 28 */ SyscallDesc("sendmsg", unimplementedFunc),
1584 /* 29 */ SyscallDesc("recvfrom", unimplementedFunc),
1585 /* 30 */ SyscallDesc("accept", unimplementedFunc),
1586 /* 31 */ SyscallDesc("getpeername", unimplementedFunc),
1587 /* 32 */ SyscallDesc("getsockname", unimplementedFunc),
1588 /* 33 */ SyscallDesc("access", unimplementedFunc),
1589 /* 34 */ SyscallDesc("chflags", unimplementedFunc),
1590 /* 35 */ SyscallDesc("fchflags", unimplementedFunc),
1591 /* 36 */ SyscallDesc("sync", unimplementedFunc),
1592 /* 37 */ SyscallDesc("kill", unimplementedFunc),
1593 /* 38 */ SyscallDesc("old_stat", unimplementedFunc),
1594 /* 39 */ SyscallDesc("setpgid", unimplementedFunc),
1595 /* 40 */ SyscallDesc("old_lstat", unimplementedFunc),
1596 /* 41 */ SyscallDesc("dup", unimplementedFunc),
1597 /* 42 */ SyscallDesc("pipe", unimplementedFunc),
1598 /* 43 */ SyscallDesc("set_program_attributes", unimplementedFunc),
1599 /* 44 */ SyscallDesc("profil", unimplementedFunc),
1600 /* 45 */ SyscallDesc("open", openFunc<Tru64>),
1601 /* 46 */ SyscallDesc("obsolete osigaction", unimplementedFunc),
1602 /* 47 */ SyscallDesc("getgid", getgidFunc),
1603 /* 48 */ SyscallDesc("sigprocmask", ignoreFunc),
1604 /* 49 */ SyscallDesc("getlogin", unimplementedFunc),
1605 /* 50 */ SyscallDesc("setlogin", unimplementedFunc),
1606 /* 51 */ SyscallDesc("acct", unimplementedFunc),
1607 /* 52 */ SyscallDesc("sigpending", unimplementedFunc),
1608 /* 53 */ SyscallDesc("classcntl", unimplementedFunc),
1609 /* 54 */ SyscallDesc("ioctl", ioctlFunc<Tru64>),
1610 /* 55 */ SyscallDesc("reboot", unimplementedFunc),
1611 /* 56 */ SyscallDesc("revoke", unimplementedFunc),
1612 /* 57 */ SyscallDesc("symlink", unimplementedFunc),
1613 /* 58 */ SyscallDesc("readlink", unimplementedFunc),
1614 /* 59 */ SyscallDesc("execve", unimplementedFunc),
1615 /* 60 */ SyscallDesc("umask", unimplementedFunc),
1616 /* 61 */ SyscallDesc("chroot", unimplementedFunc),
1617 /* 62 */ SyscallDesc("old_fstat", unimplementedFunc),
1618 /* 63 */ SyscallDesc("getpgrp", unimplementedFunc),
1619 /* 64 */ SyscallDesc("getpagesize", getpagesizeFunc),
1620 /* 65 */ SyscallDesc("mremap", unimplementedFunc),
1621 /* 66 */ SyscallDesc("vfork", unimplementedFunc),
1622 /* 67 */ SyscallDesc("pre_F64_stat", statFunc<Tru64::PreF64>),
1623 /* 68 */ SyscallDesc("pre_F64_lstat", lstatFunc<Tru64::PreF64>),
1624 /* 69 */ SyscallDesc("sbrk", unimplementedFunc),
1625 /* 70 */ SyscallDesc("sstk", unimplementedFunc),
1626 /* 71 */ SyscallDesc("mmap", mmapFunc<Tru64>),
1627 /* 72 */ SyscallDesc("ovadvise", unimplementedFunc),
1628 /* 73 */ SyscallDesc("munmap", munmapFunc),
1629 /* 74 */ SyscallDesc("mprotect", ignoreFunc),
1630 /* 75 */ SyscallDesc("madvise", unimplementedFunc),
1631 /* 76 */ SyscallDesc("old_vhangup", unimplementedFunc),
1632 /* 77 */ SyscallDesc("kmodcall", unimplementedFunc),
1633 /* 78 */ SyscallDesc("mincore", unimplementedFunc),
1634 /* 79 */ SyscallDesc("getgroups", unimplementedFunc),
1635 /* 80 */ SyscallDesc("setgroups", unimplementedFunc),
1636 /* 81 */ SyscallDesc("old_getpgrp", unimplementedFunc),
1637 /* 82 */ SyscallDesc("setpgrp", unimplementedFunc),
1638 /* 83 */ SyscallDesc("setitimer", unimplementedFunc),
1639 /* 84 */ SyscallDesc("old_wait", unimplementedFunc),
1640 /* 85 */ SyscallDesc("table", tableFunc),
1641 /* 86 */ SyscallDesc("getitimer", unimplementedFunc),
1642 /* 87 */ SyscallDesc("gethostname", gethostnameFunc),
1643 /* 88 */ SyscallDesc("sethostname", unimplementedFunc),
1644 /* 89 */ SyscallDesc("getdtablesize", unimplementedFunc),
1645 /* 90 */ SyscallDesc("dup2", unimplementedFunc),
1646 /* 91 */ SyscallDesc("pre_F64_fstat", fstatFunc<Tru64::PreF64>),
1647 /* 92 */ SyscallDesc("fcntl", fcntlFunc),
1648 /* 93 */ SyscallDesc("select", unimplementedFunc),
1649 /* 94 */ SyscallDesc("poll", unimplementedFunc),
1650 /* 95 */ SyscallDesc("fsync", unimplementedFunc),
1651 /* 96 */ SyscallDesc("setpriority", unimplementedFunc),
1652 /* 97 */ SyscallDesc("socket", unimplementedFunc),
1653 /* 98 */ SyscallDesc("connect", unimplementedFunc),
1654 /* 99 */ SyscallDesc("old_accept", unimplementedFunc),
1655 /* 100 */ SyscallDesc("getpriority", unimplementedFunc),
1656 /* 101 */ SyscallDesc("old_send", unimplementedFunc),
1657 /* 102 */ SyscallDesc("old_recv", unimplementedFunc),
1658 /* 103 */ SyscallDesc("sigreturn", sigreturnFunc,
1659 SyscallDesc::SuppressReturnValue),
1660 /* 104 */ SyscallDesc("bind", unimplementedFunc),
1661 /* 105 */ SyscallDesc("setsockopt", unimplementedFunc),
1662 /* 106 */ SyscallDesc("listen", unimplementedFunc),
1663 /* 107 */ SyscallDesc("plock", unimplementedFunc),
1664 /* 108 */ SyscallDesc("old_sigvec", unimplementedFunc),
1665 /* 109 */ SyscallDesc("old_sigblock", unimplementedFunc),
1666 /* 110 */ SyscallDesc("old_sigsetmask", unimplementedFunc),
1667 /* 111 */ SyscallDesc("sigsuspend", unimplementedFunc),
1668 /* 112 */ SyscallDesc("sigstack", ignoreFunc),
1669 /* 113 */ SyscallDesc("old_recvmsg", unimplementedFunc),
1670 /* 114 */ SyscallDesc("old_sendmsg", unimplementedFunc),
1671 /* 115 */ SyscallDesc("obsolete vtrace", unimplementedFunc),
1672 /* 116 */ SyscallDesc("gettimeofday", gettimeofdayFunc<Tru64>),
1673 /* 117 */ SyscallDesc("getrusage", getrusageFunc<Tru64>),
1674 /* 118 */ SyscallDesc("getsockopt", unimplementedFunc),
1675 /* 119 */ SyscallDesc("numa_syscalls", unimplementedFunc),
1676 /* 120 */ SyscallDesc("readv", unimplementedFunc),
1677 /* 121 */ SyscallDesc("writev", unimplementedFunc),
1678 /* 122 */ SyscallDesc("settimeofday", unimplementedFunc),
1679 /* 123 */ SyscallDesc("fchown", unimplementedFunc),
1680 /* 124 */ SyscallDesc("fchmod", unimplementedFunc),
1681 /* 125 */ SyscallDesc("old_recvfrom", unimplementedFunc),
1682 /* 126 */ SyscallDesc("setreuid", unimplementedFunc),
1683 /* 127 */ SyscallDesc("setregid", unimplementedFunc),
1684 /* 128 */ SyscallDesc("rename", renameFunc),
1685 /* 129 */ SyscallDesc("truncate", truncateFunc),
1686 /* 130 */ SyscallDesc("ftruncate", ftruncateFunc),
1687 /* 131 */ SyscallDesc("flock", unimplementedFunc),
1688 /* 132 */ SyscallDesc("setgid", unimplementedFunc),
1689 /* 133 */ SyscallDesc("sendto", unimplementedFunc),
1690 /* 134 */ SyscallDesc("shutdown", unimplementedFunc),
1691 /* 135 */ SyscallDesc("socketpair", unimplementedFunc),
1692 /* 136 */ SyscallDesc("mkdir", unimplementedFunc),
1693 /* 137 */ SyscallDesc("rmdir", unimplementedFunc),
1694 /* 138 */ SyscallDesc("utimes", unimplementedFunc),
1695 /* 139 */ SyscallDesc("obsolete 4.2 sigreturn", unimplementedFunc),
1696 /* 140 */ SyscallDesc("adjtime", unimplementedFunc),
1697 /* 141 */ SyscallDesc("old_getpeername", unimplementedFunc),
1698 /* 142 */ SyscallDesc("gethostid", unimplementedFunc),
1699 /* 143 */ SyscallDesc("sethostid", unimplementedFunc),
1700 /* 144 */ SyscallDesc("getrlimit", getrlimitFunc<Tru64>),
1701 /* 145 */ SyscallDesc("setrlimit", ignoreFunc),
1702 /* 146 */ SyscallDesc("old_killpg", unimplementedFunc),
1703 /* 147 */ SyscallDesc("setsid", unimplementedFunc),
1704 /* 148 */ SyscallDesc("quotactl", unimplementedFunc),
1705 /* 149 */ SyscallDesc("oldquota", unimplementedFunc),
1706 /* 150 */ SyscallDesc("old_getsockname", unimplementedFunc),
1707 /* 151 */ SyscallDesc("pread", unimplementedFunc),
1708 /* 152 */ SyscallDesc("pwrite", unimplementedFunc),
1709 /* 153 */ SyscallDesc("pid_block", unimplementedFunc),
1710 /* 154 */ SyscallDesc("pid_unblock", unimplementedFunc),
1711 /* 155 */ SyscallDesc("signal_urti", unimplementedFunc),
1712 /* 156 */ SyscallDesc("sigaction", ignoreFunc),
1713 /* 157 */ SyscallDesc("sigwaitprim", unimplementedFunc),
1714 /* 158 */ SyscallDesc("nfssvc", unimplementedFunc),
1715 /* 159 */ SyscallDesc("getdirentries", getdirentriesFunc),
1716 /* 160 */ SyscallDesc("pre_F64_statfs", statfsFunc<Tru64::PreF64>),
1717 /* 161 */ SyscallDesc("pre_F64_fstatfs", fstatfsFunc<Tru64::PreF64>),
1718 /* 162 */ SyscallDesc("unknown #162", unimplementedFunc),
1719 /* 163 */ SyscallDesc("async_daemon", unimplementedFunc),
1720 /* 164 */ SyscallDesc("getfh", unimplementedFunc),
1721 /* 165 */ SyscallDesc("getdomainname", unimplementedFunc),
1722 /* 166 */ SyscallDesc("setdomainname", unimplementedFunc),
1723 /* 167 */ SyscallDesc("unknown #167", unimplementedFunc),
1724 /* 168 */ SyscallDesc("unknown #168", unimplementedFunc),
1725 /* 169 */ SyscallDesc("exportfs", unimplementedFunc),
1726 /* 170 */ SyscallDesc("unknown #170", unimplementedFunc),
1727 /* 171 */ SyscallDesc("unknown #171", unimplementedFunc),
1728 /* 172 */ SyscallDesc("unknown #172", unimplementedFunc),
1729 /* 173 */ SyscallDesc("unknown #173", unimplementedFunc),
1730 /* 174 */ SyscallDesc("unknown #174", unimplementedFunc),
1731 /* 175 */ SyscallDesc("unknown #175", unimplementedFunc),
1732 /* 176 */ SyscallDesc("unknown #176", unimplementedFunc),
1733 /* 177 */ SyscallDesc("unknown #177", unimplementedFunc),
1734 /* 178 */ SyscallDesc("unknown #178", unimplementedFunc),
1735 /* 179 */ SyscallDesc("unknown #179", unimplementedFunc),
1736 /* 180 */ SyscallDesc("unknown #180", unimplementedFunc),
1737 /* 181 */ SyscallDesc("alt_plock", unimplementedFunc),
1738 /* 182 */ SyscallDesc("unknown #182", unimplementedFunc),
1739 /* 183 */ SyscallDesc("unknown #183", unimplementedFunc),
1740 /* 184 */ SyscallDesc("getmnt", unimplementedFunc),
1741 /* 185 */ SyscallDesc("unknown #185", unimplementedFunc),
1742 /* 186 */ SyscallDesc("unknown #186", unimplementedFunc),
1743 /* 187 */ SyscallDesc("alt_sigpending", unimplementedFunc),
1744 /* 188 */ SyscallDesc("alt_setsid", unimplementedFunc),
1745 /* 189 */ SyscallDesc("unknown #189", unimplementedFunc),
1746 /* 190 */ SyscallDesc("unknown #190", unimplementedFunc),
1747 /* 191 */ SyscallDesc("unknown #191", unimplementedFunc),
1748 /* 192 */ SyscallDesc("unknown #192", unimplementedFunc),
1749 /* 193 */ SyscallDesc("unknown #193", unimplementedFunc),
1750 /* 194 */ SyscallDesc("unknown #194", unimplementedFunc),
1751 /* 195 */ SyscallDesc("unknown #195", unimplementedFunc),
1752 /* 196 */ SyscallDesc("unknown #196", unimplementedFunc),
1753 /* 197 */ SyscallDesc("unknown #197", unimplementedFunc),
1754 /* 198 */ SyscallDesc("unknown #198", unimplementedFunc),
1755 /* 199 */ SyscallDesc("swapon", unimplementedFunc),
1756 /* 200 */ SyscallDesc("msgctl", unimplementedFunc),
1757 /* 201 */ SyscallDesc("msgget", unimplementedFunc),
1758 /* 202 */ SyscallDesc("msgrcv", unimplementedFunc),
1759 /* 203 */ SyscallDesc("msgsnd", unimplementedFunc),
1760 /* 204 */ SyscallDesc("semctl", unimplementedFunc),
1761 /* 205 */ SyscallDesc("semget", unimplementedFunc),
1762 /* 206 */ SyscallDesc("semop", unimplementedFunc),
1763 /* 207 */ SyscallDesc("uname", unameFunc),
1764 /* 208 */ SyscallDesc("lchown", unimplementedFunc),
1765 /* 209 */ SyscallDesc("shmat", unimplementedFunc),
1766 /* 210 */ SyscallDesc("shmctl", unimplementedFunc),
1767 /* 211 */ SyscallDesc("shmdt", unimplementedFunc),
1768 /* 212 */ SyscallDesc("shmget", unimplementedFunc),
1769 /* 213 */ SyscallDesc("mvalid", unimplementedFunc),
1770 /* 214 */ SyscallDesc("getaddressconf", unimplementedFunc),
1771 /* 215 */ SyscallDesc("msleep", unimplementedFunc),
1772 /* 216 */ SyscallDesc("mwakeup", unimplementedFunc),
1773 /* 217 */ SyscallDesc("msync", unimplementedFunc),
1774 /* 218 */ SyscallDesc("signal", unimplementedFunc),
1775 /* 219 */ SyscallDesc("utc_gettime", unimplementedFunc),
1776 /* 220 */ SyscallDesc("utc_adjtime", unimplementedFunc),
1777 /* 221 */ SyscallDesc("unknown #221", unimplementedFunc),
1778 /* 222 */ SyscallDesc("security", unimplementedFunc),
1779 /* 223 */ SyscallDesc("kloadcall", unimplementedFunc),
1780 /* 224 */ SyscallDesc("stat", statFunc<Tru64::F64>),
1781 /* 225 */ SyscallDesc("lstat", lstatFunc<Tru64::F64>),
1782 /* 226 */ SyscallDesc("fstat", fstatFunc<Tru64::F64>),
1783 /* 227 */ SyscallDesc("statfs", statfsFunc<Tru64::F64>),
1784 /* 228 */ SyscallDesc("fstatfs", fstatfsFunc<Tru64::F64>),
1785 /* 229 */ SyscallDesc("getfsstat", unimplementedFunc),
1786 /* 230 */ SyscallDesc("gettimeofday64", unimplementedFunc),
1787 /* 231 */ SyscallDesc("settimeofday64", unimplementedFunc),
1788 /* 232 */ SyscallDesc("unknown #232", unimplementedFunc),
1789 /* 233 */ SyscallDesc("getpgid", unimplementedFunc),
1790 /* 234 */ SyscallDesc("getsid", unimplementedFunc),
1791 /* 235 */ SyscallDesc("sigaltstack", ignoreFunc),
1792 /* 236 */ SyscallDesc("waitid", unimplementedFunc),
1793 /* 237 */ SyscallDesc("priocntlset", unimplementedFunc),
1794 /* 238 */ SyscallDesc("sigsendset", unimplementedFunc),
1795 /* 239 */ SyscallDesc("set_speculative", unimplementedFunc),
1796 /* 240 */ SyscallDesc("msfs_syscall", unimplementedFunc),
1797 /* 241 */ SyscallDesc("sysinfo", unimplementedFunc),
1798 /* 242 */ SyscallDesc("uadmin", unimplementedFunc),
1799 /* 243 */ SyscallDesc("fuser", unimplementedFunc),
1800 /* 244 */ SyscallDesc("proplist_syscall", unimplementedFunc),
1801 /* 245 */ SyscallDesc("ntp_adjtime", unimplementedFunc),
1802 /* 246 */ SyscallDesc("ntp_gettime", unimplementedFunc),
1803 /* 247 */ SyscallDesc("pathconf", unimplementedFunc),
1804 /* 248 */ SyscallDesc("fpathconf", unimplementedFunc),
1805 /* 249 */ SyscallDesc("sync2", unimplementedFunc),
1806 /* 250 */ SyscallDesc("uswitch", unimplementedFunc),
1807 /* 251 */ SyscallDesc("usleep_thread", unimplementedFunc),
1808 /* 252 */ SyscallDesc("audcntl", unimplementedFunc),
1809 /* 253 */ SyscallDesc("audgen", unimplementedFunc),
1810 /* 254 */ SyscallDesc("sysfs", unimplementedFunc),
1811 /* 255 */ SyscallDesc("subsys_info", unimplementedFunc),
1812 /* 256 */ SyscallDesc("getsysinfo", getsysinfoFunc),
1813 /* 257 */ SyscallDesc("setsysinfo", setsysinfoFunc),
1814 /* 258 */ SyscallDesc("afs_syscall", unimplementedFunc),
1815 /* 259 */ SyscallDesc("swapctl", unimplementedFunc),
1816 /* 260 */ SyscallDesc("memcntl", unimplementedFunc),
1817 /* 261 */ SyscallDesc("fdatasync", unimplementedFunc),
1818 /* 262 */ SyscallDesc("oflock", unimplementedFunc),
1819 /* 263 */ SyscallDesc("F64_readv", unimplementedFunc),
1820 /* 264 */ SyscallDesc("F64_writev", unimplementedFunc),
1821 /* 265 */ SyscallDesc("cdslxlate", unimplementedFunc),
1822 /* 266 */ SyscallDesc("sendfile", unimplementedFunc),
1823 };
1824
1825 const int Tru64::Num_Syscall_Descs =
1826 sizeof(Tru64::syscallDescs) / sizeof(SyscallDesc);
1827
1828 const int Tru64::Max_Syscall_Desc = Tru64::Num_Syscall_Descs - 1;
1829
1830 SyscallDesc Tru64::machSyscallDescs[] = {
1831 /* 0 */ SyscallDesc("kern_invalid", unimplementedFunc),
1832 /* 1 */ SyscallDesc("m5_mutex_lock", m5_mutex_lockFunc),
1833 /* 2 */ SyscallDesc("m5_mutex_trylock", m5_mutex_trylockFunc),
1834 /* 3 */ SyscallDesc("m5_mutex_unlock", m5_mutex_unlockFunc),
1835 /* 4 */ SyscallDesc("m5_cond_signal", m5_cond_signalFunc),
1836 /* 5 */ SyscallDesc("m5_cond_broadcast", m5_cond_broadcastFunc),
1837 /* 6 */ SyscallDesc("m5_cond_wait", m5_cond_waitFunc),
1838 /* 7 */ SyscallDesc("m5_thread_exit", m5_thread_exitFunc),
1839 /* 8 */ SyscallDesc("kern_invalid", unimplementedFunc),
1840 /* 9 */ SyscallDesc("kern_invalid", unimplementedFunc),
1841 /* 10 */ SyscallDesc("task_self", unimplementedFunc),
1842 /* 11 */ SyscallDesc("thread_reply", unimplementedFunc),
1843 /* 12 */ SyscallDesc("task_notify", unimplementedFunc),
1844 /* 13 */ SyscallDesc("thread_self", unimplementedFunc),
1845 /* 14 */ SyscallDesc("kern_invalid", unimplementedFunc),
1846 /* 15 */ SyscallDesc("kern_invalid", unimplementedFunc),
1847 /* 16 */ SyscallDesc("kern_invalid", unimplementedFunc),
1848 /* 17 */ SyscallDesc("kern_invalid", unimplementedFunc),
1849 /* 18 */ SyscallDesc("kern_invalid", unimplementedFunc),
1850 /* 19 */ SyscallDesc("kern_invalid", unimplementedFunc),
1851 /* 20 */ SyscallDesc("msg_send_trap", unimplementedFunc),
1852 /* 21 */ SyscallDesc("msg_receive_trap", unimplementedFunc),
1853 /* 22 */ SyscallDesc("msg_rpc_trap", unimplementedFunc),
1854 /* 23 */ SyscallDesc("kern_invalid", unimplementedFunc),
1855 /* 24 */ SyscallDesc("nxm_block", nxm_blockFunc),
1856 /* 25 */ SyscallDesc("nxm_unblock", nxm_unblockFunc),
1857 /* 26 */ SyscallDesc("kern_invalid", unimplementedFunc),
1858 /* 27 */ SyscallDesc("kern_invalid", unimplementedFunc),
1859 /* 28 */ SyscallDesc("kern_invalid", unimplementedFunc),
1860 /* 29 */ SyscallDesc("nxm_thread_destroy", unimplementedFunc),
1861 /* 30 */ SyscallDesc("lw_wire", unimplementedFunc),
1862 /* 31 */ SyscallDesc("lw_unwire", unimplementedFunc),
1863 /* 32 */ SyscallDesc("nxm_thread_create", nxm_thread_createFunc),
1864 /* 33 */ SyscallDesc("nxm_task_init", nxm_task_initFunc),
1865 /* 34 */ SyscallDesc("kern_invalid", unimplementedFunc),
1866 /* 35 */ SyscallDesc("nxm_idle", nxm_idleFunc),
1867 /* 36 */ SyscallDesc("nxm_wakeup_idle", unimplementedFunc),
1868 /* 37 */ SyscallDesc("nxm_set_pthid", unimplementedFunc),
1869 /* 38 */ SyscallDesc("nxm_thread_kill", unimplementedFunc),
1870 /* 39 */ SyscallDesc("nxm_thread_block", nxm_thread_blockFunc),
1871 /* 40 */ SyscallDesc("nxm_thread_wakeup", unimplementedFunc),
1872 /* 41 */ SyscallDesc("init_process", unimplementedFunc),
1873 /* 42 */ SyscallDesc("nxm_get_binding", unimplementedFunc),
1874 /* 43 */ SyscallDesc("map_fd", unimplementedFunc),
1875 /* 44 */ SyscallDesc("nxm_resched", unimplementedFunc),
1876 /* 45 */ SyscallDesc("nxm_set_cancel", unimplementedFunc),
1877 /* 46 */ SyscallDesc("nxm_set_binding", unimplementedFunc),
1878 /* 47 */ SyscallDesc("stack_create", stack_createFunc),
1879 /* 48 */ SyscallDesc("nxm_get_state", unimplementedFunc),
1880 /* 49 */ SyscallDesc("nxm_thread_suspend", unimplementedFunc),
1881 /* 50 */ SyscallDesc("nxm_thread_resume", unimplementedFunc),
1882 /* 51 */ SyscallDesc("nxm_signal_check", unimplementedFunc),
1883 /* 52 */ SyscallDesc("htg_unix_syscall", unimplementedFunc),
1884 /* 53 */ SyscallDesc("kern_invalid", unimplementedFunc),
1885 /* 54 */ SyscallDesc("kern_invalid", unimplementedFunc),
1886 /* 55 */ SyscallDesc("host_self", unimplementedFunc),
1887 /* 56 */ SyscallDesc("host_priv_self", unimplementedFunc),
1888 /* 57 */ SyscallDesc("kern_invalid", unimplementedFunc),
1889 /* 58 */ SyscallDesc("kern_invalid", unimplementedFunc),
1890 /* 59 */ SyscallDesc("swtch_pri", swtch_priFunc),
1891 /* 60 */ SyscallDesc("swtch", unimplementedFunc),
1892 /* 61 */ SyscallDesc("thread_switch", unimplementedFunc),
1893 /* 62 */ SyscallDesc("semop_fast", unimplementedFunc),
1894 /* 63 */ SyscallDesc("nxm_pshared_init", unimplementedFunc),
1895 /* 64 */ SyscallDesc("nxm_pshared_block", unimplementedFunc),
1896 /* 65 */ SyscallDesc("nxm_pshared_unblock", unimplementedFunc),
1897 /* 66 */ SyscallDesc("nxm_pshared_destroy", unimplementedFunc),
1898 /* 67 */ SyscallDesc("nxm_swtch_pri", swtch_priFunc),
1899 /* 68 */ SyscallDesc("lw_syscall", unimplementedFunc),
1900 /* 69 */ SyscallDesc("kern_invalid", unimplementedFunc),
1901 /* 70 */ SyscallDesc("mach_sctimes_0", unimplementedFunc),
1902 /* 71 */ SyscallDesc("mach_sctimes_1", unimplementedFunc),
1903 /* 72 */ SyscallDesc("mach_sctimes_2", unimplementedFunc),
1904 /* 73 */ SyscallDesc("mach_sctimes_3", unimplementedFunc),
1905 /* 74 */ SyscallDesc("mach_sctimes_4", unimplementedFunc),
1906 /* 75 */ SyscallDesc("mach_sctimes_5", unimplementedFunc),
1907 /* 76 */ SyscallDesc("mach_sctimes_6", unimplementedFunc),
1908 /* 77 */ SyscallDesc("mach_sctimes_7", unimplementedFunc),
1909 /* 78 */ SyscallDesc("mach_sctimes_8", unimplementedFunc),
1910 /* 79 */ SyscallDesc("mach_sctimes_9", unimplementedFunc),
1911 /* 80 */ SyscallDesc("mach_sctimes_10", unimplementedFunc),
1912 /* 81 */ SyscallDesc("mach_sctimes_11", unimplementedFunc),
1913 /* 82 */ SyscallDesc("mach_sctimes_port_alloc_dealloc", unimplementedFunc)
1914 };
1915
1916 const int Tru64::Num_Mach_Syscall_Descs =
1917 sizeof(Tru64::machSyscallDescs) / sizeof(SyscallDesc);
1918 const int Tru64::Max_Mach_Syscall_Desc = Tru64::Num_Mach_Syscall_Descs - 1;
1919 const int Tru64::Min_Syscall_Desc = -Tru64::Max_Mach_Syscall_Desc;
1920
1921
1922 void
1923 AlphaTru64Process::syscall(ExecContext *xc)
1924 {
1925 num_syscalls++;
1926
1927 int64_t callnum = xc->regs.intRegFile[ReturnValueReg];
1928
1929 Tru64::doSyscall(callnum, this, xc);
1930 }
1931
1932
1933 AlphaTru64Process::AlphaTru64Process(const std::string &name,
1934 ObjectFile *objFile,
1935 int stdin_fd,
1936 int stdout_fd,
1937 int stderr_fd,
1938 std::vector<std::string> &argv,
1939 std::vector<std::string> &envp)
1940 : LiveProcess(name, objFile, stdin_fd, stdout_fd, stderr_fd, argv, envp)
1941 {
1942 }