ubsan: microblaze: left shift cannot be represented in type 'int'
[deliverable/binutils-gdb.git] / sim / common / sim-io.c
index 994d30fcb1e338b94eb4dae754a8b63d73ff7571..8dc7428159f52a78e528a6f920959603a35b3eb2 100644 (file)
@@ -1,81 +1,99 @@
-/*  This file is part of the program psim.
+/* The common simulator framework for GDB, the GNU Debugger.
 
-    Copyright (C) 1994-1997, Andrew Cagney <cagney@highland.com.au>
+   Copyright 2002-2019 Free Software Foundation, Inc.
 
-    This program is free software; you can redistribute it and/or modify
-    it under the terms of the GNU General Public License as published by
-    the Free Software Foundation; either version 2 of the License, or
-    (at your option) any later version.
+   Contributed by Andrew Cagney and Red Hat.
 
-    This program is distributed in the hope that it will be useful,
-    but WITHOUT ANY WARRANTY; without even the implied warranty of
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-    GNU General Public License for more details.
-    You should have received a copy of the GNU General Public License
-    along with this program; if not, write to the Free Software
-    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-    */
+   This file is part of GDB.
+
+   This program is free software; you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
 
 
 #include "sim-main.h"
 #include "sim-io.h"
 #include "targ-vals.h"
 
+#include <errno.h>
+#if HAVE_FCNTL_H
+#include <fcntl.h>
+#endif
+
+#if HAVE_UNISTD_H
+#include <unistd.h>
+#endif
+
+/* Define the rate at which the simulator should poll the host
+   for a quit. */
+#ifndef POLL_QUIT_INTERVAL
+#define POLL_QUIT_INTERVAL 0x10
+#endif
+
+static int poll_quit_count = POLL_QUIT_INTERVAL;
+
 /* See the file include/callbacks.h for a description */
 
 
 int
-sim_io_init(SIM_DESC sd)
+sim_io_init (SIM_DESC sd)
 {
   return STATE_CALLBACK (sd)->init (STATE_CALLBACK (sd));
 }
 
 
 int
-sim_io_shutdown(SIM_DESC sd)
+sim_io_shutdown (SIM_DESC sd)
 {
   return STATE_CALLBACK (sd)->shutdown (STATE_CALLBACK (sd));
 }
 
 
 int
-sim_io_unlink(SIM_DESC sd,
-             const char *f1)
+sim_io_unlink (SIM_DESC sd,
+              const char *f1)
 {
   return STATE_CALLBACK (sd)->unlink (STATE_CALLBACK (sd), f1);
 }
 
 
 long
-sim_io_time(SIM_DESC sd,
-           long *t)
+sim_io_time (SIM_DESC sd,
+            long *t)
 {
   return STATE_CALLBACK (sd)->time (STATE_CALLBACK (sd), t);
 }
 
 
 int
-sim_io_system(SIM_DESC sd, const char *s)
+sim_io_system (SIM_DESC sd, const char *s)
 {
   return STATE_CALLBACK (sd)->system (STATE_CALLBACK (sd), s);
 }
 
 
 int
-sim_io_rename(SIM_DESC sd,
-             const char *f1,
-             const char *f2)
+sim_io_rename (SIM_DESC sd,
+              const char *f1,
+              const char *f2)
 {
   return STATE_CALLBACK (sd)->rename (STATE_CALLBACK (sd), f1, f2);
 }
 
 
 int
-sim_io_write_stdout(SIM_DESC sd,
-                   const char *buf,
-                   int len)
+sim_io_write_stdout (SIM_DESC sd,
+                    const char *buf,
+                    int len)
 {
   switch (CURRENT_STDIO) {
   case DO_USE_STDIO:
@@ -93,7 +111,7 @@ sim_io_write_stdout(SIM_DESC sd,
 
 
 void
-sim_io_flush_stdout(SIM_DESC sd)
+sim_io_flush_stdout (SIM_DESC sd)
 {
   switch (CURRENT_STDIO) {
   case DO_USE_STDIO:
@@ -109,9 +127,9 @@ sim_io_flush_stdout(SIM_DESC sd)
 
 
 int
-sim_io_write_stderr(SIM_DESC sd,
-                   const char *buf,
-                   int len)
+sim_io_write_stderr (SIM_DESC sd,
+                    const char *buf,
+                    int len)
 {
   switch (CURRENT_STDIO) {
   case DO_USE_STDIO:
@@ -129,7 +147,7 @@ sim_io_write_stderr(SIM_DESC sd,
 
 
 void
-sim_io_flush_stderr(SIM_DESC sd)
+sim_io_flush_stderr (SIM_DESC sd)
 {
   switch (CURRENT_STDIO) {
   case DO_USE_STDIO:
@@ -145,19 +163,19 @@ sim_io_flush_stderr(SIM_DESC sd)
 
 
 int
-sim_io_write(SIM_DESC sd,
-            int fd,
-            const char *buf,
-            int len)
+sim_io_write (SIM_DESC sd,
+             int fd,
+             const char *buf,
+             int len)
 {
   return STATE_CALLBACK (sd)->write (STATE_CALLBACK (sd), fd, buf, len);
 }
 
 
 int
-sim_io_read_stdin(SIM_DESC sd,
-                 char *buf,
-                 int len)
+sim_io_read_stdin (SIM_DESC sd,
+                  char *buf,
+                  int len)
 {
   switch (CURRENT_STDIO) {
   case DO_USE_STDIO:
@@ -175,280 +193,209 @@ sim_io_read_stdin(SIM_DESC sd,
 
 
 int
-sim_io_read(SIM_DESC sd, int fd,
-           char *buf,
-           int len)
+sim_io_read (SIM_DESC sd, int fd,
+            char *buf,
+            int len)
 {
   return STATE_CALLBACK (sd)->read (STATE_CALLBACK (sd), fd, buf, len);
 }
 
 
 int
-sim_io_open(SIM_DESC sd,
-           const char *name,
-           int flags)
+sim_io_open (SIM_DESC sd,
+            const char *name,
+            int flags)
 {
   return STATE_CALLBACK (sd)->open (STATE_CALLBACK (sd), name, flags);
 }
 
 
 int
-sim_io_lseek(SIM_DESC sd,
-            int fd,
-            long off,
-            int way)
+sim_io_lseek (SIM_DESC sd,
+             int fd,
+             long off,
+             int way)
 {
   return STATE_CALLBACK (sd)->lseek (STATE_CALLBACK (sd), fd, off, way);
 }
 
 
 int
-sim_io_isatty(SIM_DESC sd,
-             int fd)
+sim_io_isatty (SIM_DESC sd,
+              int fd)
 {
   return STATE_CALLBACK (sd)->isatty (STATE_CALLBACK (sd), fd);
 }
 
 
 int
-sim_io_get_errno(SIM_DESC sd)
+sim_io_get_errno (SIM_DESC sd)
 {
   return STATE_CALLBACK (sd)->get_errno (STATE_CALLBACK (sd));
 }
 
 
 int
-sim_io_close(SIM_DESC sd,
-            int fd)
+sim_io_close (SIM_DESC sd,
+             int fd)
 {
   return STATE_CALLBACK (sd)->close (STATE_CALLBACK (sd), fd);
 }
 
 
 void
-sim_io_printf(SIM_DESC sd,
-             const char *fmt,
-             ...)
+sim_io_printf (SIM_DESC sd,
+              const char *fmt,
+              ...)
 {
   va_list ap;
-  va_start(ap, fmt);
+  va_start (ap, fmt);
   STATE_CALLBACK (sd)->vprintf_filtered (STATE_CALLBACK (sd), fmt, ap);
-  va_end(ap);
+  va_end (ap);
 }
 
 
 void
-sim_io_vprintf(SIM_DESC sd,
-              const char *fmt,
-              va_list ap)
+sim_io_vprintf (SIM_DESC sd,
+               const char *fmt,
+               va_list ap)
 {
   STATE_CALLBACK (sd)->vprintf_filtered (STATE_CALLBACK (sd), fmt, ap);
 }
 
 
 void
-sim_io_eprintf(SIM_DESC sd,
-             const char *fmt,
-             ...)
+sim_io_eprintf (SIM_DESC sd,
+              const char *fmt,
+              ...)
 {
   va_list ap;
-  va_start(ap, fmt);
+  va_start (ap, fmt);
   STATE_CALLBACK (sd)->evprintf_filtered (STATE_CALLBACK (sd), fmt, ap);
-  va_end(ap);
+  va_end (ap);
 }
 
 
 void
-sim_io_evprintf(SIM_DESC sd,
-               const char *fmt,
-               va_list ap)
+sim_io_evprintf (SIM_DESC sd,
+                const char *fmt,
+                va_list ap)
 {
   STATE_CALLBACK (sd)->evprintf_filtered (STATE_CALLBACK (sd), fmt, ap);
 }
 
 
 void
-sim_io_error(SIM_DESC sd,
-            const char *fmt,
-            ...)
+sim_io_error (SIM_DESC sd,
+             const char *fmt,
+             ...)
 {
   if (sd == NULL || STATE_CALLBACK (sd) == NULL) {
     va_list ap;
-    va_start(ap, fmt);
+    va_start (ap, fmt);
     vfprintf (stderr, fmt, ap);
-    va_end(ap);
+    va_end (ap);
     fprintf (stderr, "\n");
     abort ();
   }
   else {
     va_list ap;
-    va_start(ap, fmt);
+    va_start (ap, fmt);
     STATE_CALLBACK (sd)->evprintf_filtered (STATE_CALLBACK (sd), fmt, ap);
-    va_end(ap);
+    va_end (ap);
     STATE_CALLBACK (sd)->error (STATE_CALLBACK (sd), "");
   }
 }
 
 
 void
-sim_io_poll_quit(SIM_DESC sd)
+sim_io_poll_quit (SIM_DESC sd)
 {
-  if (STATE_CALLBACK (sd)->poll_quit != NULL)
-    if (STATE_CALLBACK (sd)->poll_quit (STATE_CALLBACK (sd)))
-      sim_stop (sd);
+  if (STATE_CALLBACK (sd)->poll_quit != NULL && poll_quit_count-- < 0)
+    {
+      poll_quit_count = POLL_QUIT_INTERVAL;
+      if (STATE_CALLBACK (sd)->poll_quit (STATE_CALLBACK (sd)))
+       sim_stop (sd);
+    }
 }
 
 
-static char *
-sim_io_getstring(SIM_DESC sd,
-                sim_cpu *cpu,
-                address_word cia,
-                address_word target_string)
-{
-  int len = 0;
-  char *buf;
+/* Based on gdb-4.17/sim/ppc/main.c:sim_io_read_stdin().
 
-  while (sim_core_read_1 (cpu, cia, sim_core_read_map, target_string+len) != 0)
-    len++;
+   FIXME: Should not be calling fcntl() or grubbing around inside of
+   ->fdmap and ->errno.
 
-  buf = NZALLOC (char, len+1);
-  buf[len] = '\0';
-  sim_core_read_buffer (sd, cpu, sim_core_read_map, buf, target_string, len);
-  return buf;
-}
+   FIXME: Some completly new mechanism for handling the general
+   problem of asynchronous IO is needed.
 
-void
-sim_io_syscalls(SIM_DESC sd,
-               int syscall,
-               address_word cia,
-               address_word parm1,
-               address_word parm2,
-               address_word parm3,
-               address_word parm4,
-               address_word *syscall_return,
-               address_word *errno_return)
-{
-  sim_cpu *cpu = STATE_CPU (sd, 0);
-  struct host_callback_struct *callback = STATE_CALLBACK (sd);
-  int len, len2, len3;
-  int ret;
-  char *buf;
-  int fd;
+   FIXME: This function does not supress the echoing (ECHO) of input.
+   Consequently polled input is always displayed.
 
-  *errno_return = 0;
-  *syscall_return = 0;
+   FIXME: This function does not perform uncooked reads.
+   Consequently, data will not be read until an EOLN character has
+   been entered. A cntrl-d may force the early termination of a line */
 
-  switch (syscall)
+
+int
+sim_io_poll_read (SIM_DESC sd,
+                 int sim_io_fd,
+                 char *buf,
+                 int sizeof_buf)
+{
+#if defined(O_NDELAY) && defined(F_GETFL) && defined(F_SETFL)
+  int fd = STATE_CALLBACK (sd)->fdmap[sim_io_fd];
+  int flags;
+  int status;
+  int nr_read;
+  int result;
+  STATE_CALLBACK (sd)->last_errno = 0;
+  /* get the old status */
+  flags = fcntl (fd, F_GETFL, 0);
+  if (flags == -1)
     {
-    case 1:                    /* exit (status) */
-      sim_engine_halt (sd, STATE_CPU (sd, 0), NULL, cia, sim_exited, parm1);
-      break;
-
-    case 2:                    /* open (filename, flags, mode) */
-      buf = sim_io_getstring (sd, cpu, cia, parm1);
-      ret = *syscall_return = callback->open (callback, buf, parm2);
-      if (ret < 0)
-       *errno_return = callback->get_errno (callback);
-
-      zfree (buf);
-      break;
-
-    case 3:                    /* close (filedes) */
-      ret = *syscall_return = callback->close (callback, parm1);
-      if (ret < 0)
-       *errno_return = callback->get_errno (callback);
-      break;
-
-    case 4:                    /* read (filedes, buffer, len) */
-      fd = parm1;
-      len = parm3;
-      buf = NZALLOC (char, len);
-
-      if (fd == 0)
-       len2 = sim_io_read_stdin (sd, buf, len);
-      else
-       len2 = sim_io_read (sd, fd, buf, len);
-
-      if (len2 > 0)
-       {
-         len3 = sim_core_write_buffer (sd, cpu, sim_core_write_map, buf, parm2,
-                                       len);
-
-         if (len3 < len2)
-           sim_engine_abort (sd, cpu, cia,
-                             "Could only write back %d bytes for read system call, wanted to write %d\n",
-                             len3, len2);
-
-         *syscall_return = len2;
-       }
-      else
-       *errno_return = callback->get_errno (callback);
-
-      zfree (buf);
-      break;
-
-    case 5:                    /* write (filedes, buffer, len) */
-      fd = parm1;
-      len = parm3;
-      buf = NZALLOC (char, len);
-
-      len = sim_core_read_buffer (sd, cpu, sim_core_read_map, buf, parm2, len);
-      if (fd == 1)
-       {
-         len2 = sim_io_write_stdout (sd, buf, len);
-         sim_io_flush_stdout (sd);
-       }
-      else if (fd == 2)
-       {
-         len2 = sim_io_write_stderr (sd, buf, len);
-         sim_io_flush_stderr (sd);
-       }
-      else
-       len2 = sim_io_write (sd, fd, buf, len);
-
-      if (len2 > 0)
-       *syscall_return = len2;
-      else
-       *errno_return = callback->get_errno (callback);
-
-      zfree (buf);
-      break;
-      
-    case 6:                    /* lseek (filedes, offset, whence) */
-      *errno_return = TARGET_ENOSYS;
-      break;
-
-    case 7:                    /* unlink (filename) */
-      buf = sim_io_getstring (sd, cpu, cia, parm1);
-      ret = *syscall_return = callback->unlink (callback, buf);
-      if (ret < 0)
-       *errno_return = callback->get_errno (callback);
-
-      zfree (buf);
-      break;
-
-    case 8:                    /* getpid () */
-    case 9:                    /* kill (signal, pid) */
-    case 10:                   /* fstat (filedes, packet) */
-    case 11:                   /* reserved for sbrk */
-    case 12:                   /* argvlen () */
-    case 13:                   /* argv () */
-    case 14:                   /* chdir (dir) */
-    case 15:                   /* stat (filename, packet) */
-    case 16:                   /* chmod (filename, mode) */
-    case 17:                   /* utime (filename, packet) */
-    case 18:                   /* time (time_t *) */
-      *errno_return = TARGET_ENOSYS;
-      break;
-
-    default:
-      sim_engine_abort (sd, cpu, cia, "Unknown monitor call %d", syscall);
-      break;
+      perror ("sim_io_poll_read");
+      return 0;
     }
+  /* temp, disable blocking IO */
+  status = fcntl (fd, F_SETFL, flags | O_NDELAY);
+  if (status == -1)
+    {
+      perror ("sim_io_read_stdin");
+      return 0;
+    }
+  /* try for input */
+  nr_read = read (fd, buf, sizeof_buf);
+  if (nr_read >= 0)
+    {
+      /* printf ("<nr-read=%d>\n", nr_read); */
+      result = nr_read;
+    }
+  else
+    { /* nr_read < 0 */
+      result = -1;
+      STATE_CALLBACK (sd)->last_errno = errno;
+    }
+  /* return to regular vewing */
+  status = fcntl (fd, F_SETFL, flags);
+  if (status == -1)
+    {
+      perror ("sim_io_read_stdin");
+      /* return 0; */
+    }
+  return result;
+#else
+  return sim_io_read (sd, sim_io_fd, buf, sizeof_buf);
+#endif
+}
 
-  if (*errno_return)
-    *syscall_return = -1;
-
-  return;
+int
+sim_io_stat (SIM_DESC sd, const char *path, struct stat *buf)
+{
+  return STATE_CALLBACK (sd)->to_stat (STATE_CALLBACK (sd), path, buf);
 }
 
+int
+sim_io_fstat (SIM_DESC sd, int fd, struct stat *buf)
+{
+  return STATE_CALLBACK (sd)->to_fstat (STATE_CALLBACK (sd), fd, buf);
+}
This page took 0.030544 seconds and 4 git commands to generate.