2010-05-16 Michael Snyder <msnyder@vmware.com>
[deliverable/binutils-gdb.git] / gdb / scm-exp.c
index 4c98d64d927ccd289f34dc0b2ece617deafe37b6..69eb249fc8ff738cf5073f382db9f828cda72b49 100644 (file)
@@ -1,21 +1,22 @@
 /* Scheme/Guile language support routines for GDB, the GNU debugger.
-   Copyright 1995 Free Software Foundation, Inc.
 
-This file is part of GDB.
+   Copyright (C) 1995, 1996, 2000, 2003, 2005, 2008, 2009, 2010
+   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.
+   This file is part of GDB.
 
-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.
+   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.
 
-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 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 "defs.h"
 #include "symtab.h"
@@ -30,98 +31,155 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
 
 #define USE_EXPRSTRING 0
 
-static void scm_lreadr PARAMS ((int));
+static void scm_lreadparen (int);
+static int scm_skip_ws (void);
+static void scm_read_token (int, int);
+static LONGEST scm_istring2number (char *, int, int);
+static LONGEST scm_istr2int (char *, int, int);
+static void scm_lreadr (int);
 
-LONGEST
-scm_istr2int(str, len, radix)
-     char *str;
-     int len;
-     int radix;
+static LONGEST
+scm_istr2int (char *str, int len, int radix)
 {
-  int j;
   int i = 0;
   LONGEST inum = 0;
   int c;
   int sign = 0;
 
-  if (0 >= len) return SCM_BOOL_F;     /* zero scm_length */
+  if (0 >= len)
+    return SCM_BOOL_F;         /* zero scm_length */
   switch (str[0])
-    {          /* leading sign */
+    {                          /* leading sign */
     case '-':
     case '+':
       sign = str[0];
-      if (++i==len)
-       return SCM_BOOL_F; /* bad if lone `+' or `-' */
+      if (++i == len)
+       return SCM_BOOL_F;      /* bad if lone `+' or `-' */
     }
-  do {
-    switch (c = str[i++]) {
-    case '0': case '1': case '2': case '3': case '4':
-    case '5': case '6': case '7': case '8': case '9':
-      c = c - '0';
-      goto accumulate;
-    case 'A': case 'B': case 'C': case 'D': case 'E': case 'F':
-      c = c-'A'+10;
-      goto accumulate;
-    case 'a': case 'b': case 'c': case 'd': case 'e': case 'f':
-      c = c-'a'+10;
-    accumulate:
-      if (c >= radix) return SCM_BOOL_F; /* bad digit for radix */
-      inum *= radix;
-      inum += c;
-      break;
-    default:
-      return SCM_BOOL_F;               /* not a digit */
+  do
+    {
+      switch (c = str[i++])
+       {
+       case '0':
+       case '1':
+       case '2':
+       case '3':
+       case '4':
+       case '5':
+       case '6':
+       case '7':
+       case '8':
+       case '9':
+         c = c - '0';
+         goto accumulate;
+       case 'A':
+       case 'B':
+       case 'C':
+       case 'D':
+       case 'E':
+       case 'F':
+         c = c - 'A' + 10;
+         goto accumulate;
+       case 'a':
+       case 'b':
+       case 'c':
+       case 'd':
+       case 'e':
+       case 'f':
+         c = c - 'a' + 10;
+       accumulate:
+         if (c >= radix)
+           return SCM_BOOL_F;  /* bad digit for radix */
+         inum *= radix;
+         inum += c;
+         break;
+       default:
+         return SCM_BOOL_F;    /* not a digit */
+       }
     }
-  while (i < len);
+  while (i < len);
   if (sign == '-')
     inum = -inum;
   return SCM_MAKINUM (inum);
 }
 
-LONGEST
-scm_istring2number(str, len, radix)
-     char *str;
-     int len;
-     int radix;
+static LONGEST
+scm_istring2number (char *str, int len, int radix)
 {
   int i = 0;
   char ex = 0;
   char ex_p = 0, rx_p = 0;     /* Only allow 1 exactness and 1 radix prefix */
+#if 0
   SCM res;
-  if (len==1)
-    if (*str=='+' || *str=='-') /* Catches lone `+' and `-' for speed */
+#endif
+
+  if (len == 1)
+    if (*str == '+' || *str == '-')    /* Catches lone `+' and `-' for speed */
       return SCM_BOOL_F;
 
-  while ((len-i) >= 2  &&  str[i]=='#' && ++i)
-    switch (str[i++]) {
-    case 'b': case 'B':  if (rx_p++) return SCM_BOOL_F; radix = 2;  break;
-    case 'o': case 'O':  if (rx_p++) return SCM_BOOL_F; radix = 8;  break;
-    case 'd': case 'D':  if (rx_p++) return SCM_BOOL_F; radix = 10; break;
-    case 'x': case 'X':  if (rx_p++) return SCM_BOOL_F; radix = 16; break;
-    case 'i': case 'I':  if (ex_p++) return SCM_BOOL_F; ex = 2;     break;
-    case 'e': case 'E':  if (ex_p++) return SCM_BOOL_F; ex = 1;     break;
-    default:  return SCM_BOOL_F;
-    }
+  while ((len - i) >= 2 && str[i] == '#' && ++i)
+    switch (str[i++])
+      {
+      case 'b':
+      case 'B':
+       if (rx_p++)
+         return SCM_BOOL_F;
+       radix = 2;
+       break;
+      case 'o':
+      case 'O':
+       if (rx_p++)
+         return SCM_BOOL_F;
+       radix = 8;
+       break;
+      case 'd':
+      case 'D':
+       if (rx_p++)
+         return SCM_BOOL_F;
+       radix = 10;
+       break;
+      case 'x':
+      case 'X':
+       if (rx_p++)
+         return SCM_BOOL_F;
+       radix = 16;
+       break;
+      case 'i':
+      case 'I':
+       if (ex_p++)
+         return SCM_BOOL_F;
+       ex = 2;
+       break;
+      case 'e':
+      case 'E':
+       if (ex_p++)
+         return SCM_BOOL_F;
+       ex = 1;
+       break;
+      default:
+       return SCM_BOOL_F;
+      }
 
-  switch (ex) {
-  case 1:
-    return scm_istr2int(&str[i], len-i, radix);
-  case 0:
-    return scm_istr2int(&str[i], len-i, radix);
+  switch (ex)
+    {
+    case 1:
+      return scm_istr2int (&str[i], len - i, radix);
+    case 0:
+      return scm_istr2int (&str[i], len - i, radix);
 #if 0
-    if NFALSEP(res) return res;
+      if NFALSEP
+       (res) return res;
 #ifdef FLOATS
-  case 2: return scm_istr2flo(&str[i], len-i, radix);
+    case 2:
+      return scm_istr2flo (&str[i], len - i, radix);
 #endif
 #endif
-  }
+    }
   return SCM_BOOL_F;
 }
 
 static void
-scm_read_token (c, weird)
-     int c;
-     int weird;
+scm_read_token (int c, int weird)
 {
   while (1)
     {
@@ -134,11 +192,14 @@ scm_read_token (c, weird)
        case ')':
        case '\"':
        case ';':
-       case ' ':  case '\t':  case '\r':  case '\f':
+       case ' ':
+       case '\t':
+       case '\r':
+       case '\f':
        case '\n':
          if (weird)
            goto default_case;
-       case '\0':  /* End of line */
+       case '\0':              /* End of line */
        eof_case:
          --lexptr;
          return;
@@ -174,10 +235,11 @@ scm_read_token (c, weird)
     }
 }
 
-static int 
-scm_skip_ws ()
+static int
+scm_skip_ws (void)
 {
-  register int c;
+  int c;
+
   while (1)
     switch ((c = *lexptr++))
       {
@@ -195,7 +257,11 @@ scm_skip_ws ()
          case '\n':
            break;
          }
-      case ' ':  case '\t':  case '\r':  case '\f':  case '\n':
+      case ' ':
+      case '\t':
+      case '\r':
+      case '\f':
+      case '\n':
        break;
       default:
        return c;
@@ -203,12 +269,12 @@ scm_skip_ws ()
 }
 
 static void
-scm_lreadparen (skipping)
-     int skipping;
+scm_lreadparen (int skipping)
 {
   for (;;)
     {
       int c = scm_skip_ws ();
+
       if (')' == c || ']' == c)
        return;
       --lexptr;
@@ -219,13 +285,13 @@ scm_lreadparen (skipping)
 }
 
 static void
-scm_lreadr (skipping)
-     int skipping;
+scm_lreadr (int skipping)
 {
   int c, j;
   struct stoken str;
-  LONGEST svalue;
- tryagain:
+  LONGEST svalue = 0;
+
+tryagain:
   c = *lexptr++;
   switch (c)
     {
@@ -246,11 +312,13 @@ scm_lreadr (skipping)
       scm_lreadr (skipping);
       if (!skipping)
        {
-         value_ptr val = scm_evaluate_string (str.ptr, lexptr - str.ptr);
-         if (!is_scmvalue_type (VALUE_TYPE (val)))
+         struct value *val = scm_evaluate_string (str.ptr, lexptr - str.ptr);
+
+         if (!is_scmvalue_type (value_type (val)))
            error ("quoted scm form yields non-SCM value");
-         svalue = extract_signed_integer (VALUE_CONTENTS (val),
-                                          TYPE_LENGTH (VALUE_TYPE (val)));
+         svalue = extract_signed_integer (value_contents (val),
+                                          TYPE_LENGTH (value_type (val)),
+                                          gdbarch_byte_order (parse_gdbarch));
          goto handle_immediate;
        }
       return;
@@ -268,28 +336,36 @@ scm_lreadr (skipping)
        case '(':
          scm_lreadparen (skipping);
          return;
-       case 't':  case 'T':
+       case 't':
+       case 'T':
          svalue = SCM_BOOL_T;
          goto handle_immediate;
-       case 'f':  case 'F':
+       case 'f':
+       case 'F':
          svalue = SCM_BOOL_F;
          goto handle_immediate;
-       case 'b':  case 'B':
-       case 'o':  case 'O':
-       case 'd':  case 'D':
-       case 'x':  case 'X':
-       case 'i':  case 'I':
-       case 'e':  case 'E':
+       case 'b':
+       case 'B':
+       case 'o':
+       case 'O':
+       case 'd':
+       case 'D':
+       case 'x':
+       case 'X':
+       case 'i':
+       case 'I':
+       case 'e':
+       case 'E':
          lexptr--;
          c = '#';
          goto num;
-       case '*': /* bitvector */
+       case '*':               /* bitvector */
          scm_read_token (c, 0);
          return;
        case '{':
          scm_read_token (c, 1);
          return;
-       case '\\': /* character */
+       case '\\':              /* character */
          c = *lexptr++;
          scm_read_token (c, 0);
          return;
@@ -319,7 +395,9 @@ scm_lreadr (skipping)
          goto tryagain;
        case '.':
        default:
+#if 0
        callshrp:
+#endif
          scm_lreadr (skipping);
          return;
        }
@@ -344,14 +422,22 @@ scm_lreadr (skipping)
              }
        }
       return;
-    case '0': case '1': case '2': case '3': case '4':
-    case '5': case '6': case '7': case '8': case '9':
+    case '0':
+    case '1':
+    case '2':
+    case '3':
+    case '4':
+    case '5':
+    case '6':
+    case '7':
+    case '8':
+    case '9':
     case '.':
     case '-':
     case '+':
     num:
       {
-       str.ptr = lexptr-1;
+       str.ptr = lexptr - 1;
        scm_read_token (c, 0);
        if (!skipping)
          {
@@ -365,35 +451,42 @@ scm_lreadr (skipping)
     case ':':
       scm_read_token ('-', 0);
       return;
+#if 0
     do_symbol:
+#endif
     default:
-      str.ptr = lexptr-1;
+      str.ptr = lexptr - 1;
       scm_read_token (c, 0);
     tok:
       if (!skipping)
        {
          str.length = lexptr - str.ptr;
+         if (str.ptr[0] == '$')
+           {
+             write_dollar_variable (str);
+             return;
+           }
          write_exp_elt_opcode (OP_NAME);
          write_exp_string (str);
          write_exp_elt_opcode (OP_NAME);
        }
       return;
     }
- handle_immediate:
+handle_immediate:
   if (!skipping)
     {
       write_exp_elt_opcode (OP_LONG);
-      write_exp_elt_type (builtin_type_scm);
+      write_exp_elt_type (builtin_scm_type (parse_gdbarch)->builtin_scm);
       write_exp_elt_longcst (svalue);
       write_exp_elt_opcode (OP_LONG);
     }
 }
 
 int
-scm_parse ()
+scm_parse (void)
 {
-  charstart;
-  struct stoken str;
+  char *start;
+
   while (*lexptr == ' ')
     lexptr++;
   start = lexptr;
This page took 0.036541 seconds and 4 git commands to generate.