OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [newlib-1.10.0/] [newlib/] [libc/] [sys/] [mmixware/] [sys/] [syscall.h] - Diff between revs 1010 and 1765

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 1010 Rev 1765
/* syscall defines for MMIXware.
/* syscall defines for MMIXware.
 
 
   Copyright (C) 2001 Hans-Peter Nilsson
   Copyright (C) 2001 Hans-Peter Nilsson
 
 
   Permission to use, copy, modify, and distribute this software is
   Permission to use, copy, modify, and distribute this software is
   freely granted, provided that the above copyright notice, this notice
   freely granted, provided that the above copyright notice, this notice
   and the following disclaimer are preserved with no changes.
   and the following disclaimer are preserved with no changes.
 
 
   THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
   THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
   IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
   IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
   WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
   WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
   PURPOSE.  */
   PURPOSE.  */
 
 
/* These are the mmixware simulator calls that are of use in newlib.  */
/* These are the mmixware simulator calls that are of use in newlib.  */
 
 
#define SYS_halt        0
#define SYS_halt        0
#define SYS_Fopen       1
#define SYS_Fopen       1
#define SYS_Fclose      2
#define SYS_Fclose      2
#define SYS_Fread       3
#define SYS_Fread       3
#define SYS_Fwrite      6
#define SYS_Fwrite      6
#define SYS_Fseek       9
#define SYS_Fseek       9
#define SYS_Ftell       10
#define SYS_Ftell       10
 
 
 
 
enum MMIX_filemode
enum MMIX_filemode
 {
 {
   TextRead = 0,
   TextRead = 0,
   TextWrite = 1,
   TextWrite = 1,
   BinaryRead = 2,
   BinaryRead = 2,
   BinaryWrite = 3,
   BinaryWrite = 3,
   BinaryReadWrite = 4
   BinaryReadWrite = 4
 };
 };
 
 
#define N_MMIX_FILEHANDLES 32
#define N_MMIX_FILEHANDLES 32
 
 
/* We store a bitmap of allocated filehandles
/* We store a bitmap of allocated filehandles
   _MMIX_allocated_filehandle[fileno] in an array.  There are 32 of them.
   _MMIX_allocated_filehandle[fileno] in an array.  There are 32 of them.
   Indexes 0, 1 and 2 are allocated from start.  The reason we keep track
   Indexes 0, 1 and 2 are allocated from start.  The reason we keep track
   of them is that *we* have to allocate a filehandle when opening a file.
   of them is that *we* have to allocate a filehandle when opening a file.
   Had we got a filehandle from the simulator, we wouldn't have to keep
   Had we got a filehandle from the simulator, we wouldn't have to keep
   track of it.  A value of 0 denotes a free handle.  */
   track of it.  A value of 0 denotes a free handle.  */
extern unsigned char _MMIX_allocated_filehandle[N_MMIX_FILEHANDLES];
extern unsigned char _MMIX_allocated_filehandle[N_MMIX_FILEHANDLES];
 
 
/* We use this file-handle number as a temporary; not used by usual file
/* We use this file-handle number as a temporary; not used by usual file
   I/O.  */
   I/O.  */
#define TMPFNO 127
#define TMPFNO 127
 
 
/* Simulator call with one argument.  Also used for zero-argument calls;
/* Simulator call with one argument.  Also used for zero-argument calls;
   pass a zero as ARG1.  */
   pass a zero as ARG1.  */
#define TRAP1i(FUN, ARG1)                               \
#define TRAP1i(FUN, ARG1)                               \
 ({ long ret_;                                          \
 ({ long ret_;                                          \
    __asm__ ("TRAP 0,%1,%2\n\tSET %0,$255"              \
    __asm__ ("TRAP 0,%1,%2\n\tSET %0,$255"              \
             : "=r" (ret_) : "i" (FUN), "i" (ARG1)      \
             : "=r" (ret_) : "i" (FUN), "i" (ARG1)      \
             : "memory");                               \
             : "memory");                               \
    ret_;                                               \
    ret_;                                               \
 })
 })
 
 
/* Helper macros to cope with the file-handle parameter to the simulator
/* Helper macros to cope with the file-handle parameter to the simulator
   being *constant*.  We support up to 32 simultaneously open files.  */
   being *constant*.  We support up to 32 simultaneously open files.  */
#define I3f(FUN, ARG1, N, ARGS)                                 \
#define I3f(FUN, ARG1, N, ARGS)                                 \
 if (ARG1 == N)                                                 \
 if (ARG1 == N)                                                 \
   __asm__ ("SET $255,%3\n\tTRAP 0,%1,%2\n\tSET %0,$255"        \
   __asm__ ("SET $255,%3\n\tTRAP 0,%1,%2\n\tSET %0,$255"        \
            : "=r" (ret_) : "i" (FUN), "i" (N), "r" (ARGS)      \
            : "=r" (ret_) : "i" (FUN), "i" (N), "r" (ARGS)      \
            : "memory")
            : "memory")
 
 
/* Using if:s rather than switches to help GCC optimize the rest away.  */
/* Using if:s rather than switches to help GCC optimize the rest away.  */
#define DO32(FUN, ARG1, ARGS)                   \
#define DO32(FUN, ARG1, ARGS)                   \
    I3f (FUN, ARG1, 0, ARGS);                    \
    I3f (FUN, ARG1, 0, ARGS);                    \
    else I3f (FUN, ARG1, 1, ARGS);              \
    else I3f (FUN, ARG1, 1, ARGS);              \
    else I3f (FUN, ARG1, 2, ARGS);              \
    else I3f (FUN, ARG1, 2, ARGS);              \
    else I3f (FUN, ARG1, 3, ARGS);              \
    else I3f (FUN, ARG1, 3, ARGS);              \
    else I3f (FUN, ARG1, 4, ARGS);              \
    else I3f (FUN, ARG1, 4, ARGS);              \
    else I3f (FUN, ARG1, 5, ARGS);              \
    else I3f (FUN, ARG1, 5, ARGS);              \
    else I3f (FUN, ARG1, 6, ARGS);              \
    else I3f (FUN, ARG1, 6, ARGS);              \
    else I3f (FUN, ARG1, 7, ARGS);              \
    else I3f (FUN, ARG1, 7, ARGS);              \
    else I3f (FUN, ARG1, 8, ARGS);              \
    else I3f (FUN, ARG1, 8, ARGS);              \
    else I3f (FUN, ARG1, 9, ARGS);              \
    else I3f (FUN, ARG1, 9, ARGS);              \
    else I3f (FUN, ARG1, 10, ARGS);             \
    else I3f (FUN, ARG1, 10, ARGS);             \
    else I3f (FUN, ARG1, 11, ARGS);             \
    else I3f (FUN, ARG1, 11, ARGS);             \
    else I3f (FUN, ARG1, 12, ARGS);             \
    else I3f (FUN, ARG1, 12, ARGS);             \
    else I3f (FUN, ARG1, 13, ARGS);             \
    else I3f (FUN, ARG1, 13, ARGS);             \
    else I3f (FUN, ARG1, 14, ARGS);             \
    else I3f (FUN, ARG1, 14, ARGS);             \
    else I3f (FUN, ARG1, 15, ARGS);             \
    else I3f (FUN, ARG1, 15, ARGS);             \
    else I3f (FUN, ARG1, 16, ARGS);             \
    else I3f (FUN, ARG1, 16, ARGS);             \
    else I3f (FUN, ARG1, 17, ARGS);             \
    else I3f (FUN, ARG1, 17, ARGS);             \
    else I3f (FUN, ARG1, 18, ARGS);             \
    else I3f (FUN, ARG1, 18, ARGS);             \
    else I3f (FUN, ARG1, 19, ARGS);             \
    else I3f (FUN, ARG1, 19, ARGS);             \
    else I3f (FUN, ARG1, 20, ARGS);             \
    else I3f (FUN, ARG1, 20, ARGS);             \
    else I3f (FUN, ARG1, 21, ARGS);             \
    else I3f (FUN, ARG1, 21, ARGS);             \
    else I3f (FUN, ARG1, 22, ARGS);             \
    else I3f (FUN, ARG1, 22, ARGS);             \
    else I3f (FUN, ARG1, 23, ARGS);             \
    else I3f (FUN, ARG1, 23, ARGS);             \
    else I3f (FUN, ARG1, 24, ARGS);             \
    else I3f (FUN, ARG1, 24, ARGS);             \
    else I3f (FUN, ARG1, 25, ARGS);             \
    else I3f (FUN, ARG1, 25, ARGS);             \
    else I3f (FUN, ARG1, 26, ARGS);             \
    else I3f (FUN, ARG1, 26, ARGS);             \
    else I3f (FUN, ARG1, 27, ARGS);             \
    else I3f (FUN, ARG1, 27, ARGS);             \
    else I3f (FUN, ARG1, 28, ARGS);             \
    else I3f (FUN, ARG1, 28, ARGS);             \
    else I3f (FUN, ARG1, 29, ARGS);             \
    else I3f (FUN, ARG1, 29, ARGS);             \
    else I3f (FUN, ARG1, 30, ARGS);             \
    else I3f (FUN, ARG1, 30, ARGS);             \
    else I3f (FUN, ARG1, 31, ARGS);             \
    else I3f (FUN, ARG1, 31, ARGS);             \
    else                                        \
    else                                        \
      {                                         \
      {                                         \
        errno = EBADF;                          \
        errno = EBADF;                          \
        return -1;                              \
        return -1;                              \
      }
      }
 
 
#define TRAP1f(FUN, ARG1)                       \
#define TRAP1f(FUN, ARG1)                       \
 ({ long ret_;                                  \
 ({ long ret_;                                  \
    DO32 (FUN, ARG1, 0);                 \
    DO32 (FUN, ARG1, 0);                 \
    ret_;                                       \
    ret_;                                       \
 })
 })
 
 
#define TRAP2f(FUN, ARG1, ARG2)                 \
#define TRAP2f(FUN, ARG1, ARG2)                 \
 ({ long ret_;                                  \
 ({ long ret_;                                  \
    DO32 (FUN, ARG1, ARG2);                     \
    DO32 (FUN, ARG1, ARG2);                     \
    ret_;                                       \
    ret_;                                       \
 })
 })
 
 
#define TRAP3f(FUN, ARG1, ARG2, ARG3)                           \
#define TRAP3f(FUN, ARG1, ARG2, ARG3)                           \
 ({ long ret_;                                                  \
 ({ long ret_;                                                  \
    unsigned long args_[]                                       \
    unsigned long args_[]                                       \
      = { (unsigned long) (ARG2), (unsigned long) (ARG3) };     \
      = { (unsigned long) (ARG2), (unsigned long) (ARG3) };     \
    DO32 (FUN, ARG1, args_);                                    \
    DO32 (FUN, ARG1, args_);                                    \
    ret_;                                                       \
    ret_;                                                       \
 })
 })
 
 
#ifndef __GNUC__
#ifndef __GNUC__
/* Probably will not happen.  Nevertheless...  */
/* Probably will not happen.  Nevertheless...  */
# define UNIMPLEMENTED(MSG)
# define UNIMPLEMENTED(MSG)
#else
#else
# define UNIMPLEMENTED(MSG) UNIMPLEMENTEDi MSG
# define UNIMPLEMENTED(MSG) UNIMPLEMENTEDi MSG
# define UNIMPLEMENTEDi(MSG, ARGS...)                                   \
# define UNIMPLEMENTEDi(MSG, ARGS...)                                   \
 do {                                                                   \
 do {                                                                   \
     char buf[2000];                                                    \
     char buf[2000];                                                    \
     sprintf (buf, "UNIMPLEMENTED %s in %s\n", __FUNCTION__, __FILE__); \
     sprintf (buf, "UNIMPLEMENTED %s in %s\n", __FUNCTION__, __FILE__); \
     write (2, buf, strlen (buf));                                      \
     write (2, buf, strlen (buf));                                      \
     sprintf (buf, MSG , ##ARGS);                                       \
     sprintf (buf, MSG , ##ARGS);                                       \
     write (2, buf, strlen (buf));                                      \
     write (2, buf, strlen (buf));                                      \
     write (2, "\n", 1);                                                \
     write (2, "\n", 1);                                                \
 } while (0)
 } while (0)
#endif
#endif
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.