xcoff slurp_armap bounds checking
[deliverable/binutils-gdb.git] / sim / ppc / options.c
index 74f0b035d4a0738017d5d4309fb9b9cdf8923166..ddb492f54fb7095ef2d1952da56a700e9f76de39 100644 (file)
@@ -4,7 +4,7 @@
 
     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
+    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,
@@ -13,8 +13,7 @@
     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.
+    along with this program; if not, see <http://www.gnu.org/licenses/>.
 
     */
 
@@ -99,9 +98,9 @@ options_inline (int in)
   case /*1*/ REVEAL_MODULE:                    return "REVEAL_MODULE";
   case /*2*/ INLINE_MODULE:                    return "INLINE_MODULE";
   case /*3*/ REVEAL_MODULE|INLINE_MODULE:      return "REVEAL_MODULE|INLINE_MODULE";
-  case /*4*/ INLINE_LOCALS:                    return "LOCALS_INLINE";
-  case /*5*/ INLINE_LOCALS|REVEAL_MODULE:      return "INLINE_LOCALS|REVEAL_MODULE";
-  case /*6*/ INLINE_LOCALS|INLINE_MODULE:      return "INLINE_LOCALS|INLINE_MODULE";
+  case /*4*/ PSIM_INLINE_LOCALS:               return "PSIM_LOCALS_INLINE";
+  case /*5*/ PSIM_INLINE_LOCALS|REVEAL_MODULE: return "PSIM_INLINE_LOCALS|REVEAL_MODULE";
+  case /*6*/ PSIM_INLINE_LOCALS|INLINE_MODULE: return "PSIM_INLINE_LOCALS|INLINE_MODULE";
   case /*7*/ ALL_INLINE:                       return "ALL_INLINE";
   }
   return "0";
@@ -121,7 +120,6 @@ print_options (void)
   printf_filtered ("WITH_HOST_BYTE_ORDER     = %s\n", options_byte_order (WITH_HOST_BYTE_ORDER));
   printf_filtered ("WITH_TARGET_BYTE_ORDER   = %s\n", options_byte_order (WITH_TARGET_BYTE_ORDER));
   printf_filtered ("WITH_XOR_ENDIAN          = %d\n", WITH_XOR_ENDIAN);
-  printf_filtered ("WITH_BSWAP               = %d\n", WITH_BSWAP);
   printf_filtered ("WITH_SMP                 = %d\n", WITH_SMP);
   printf_filtered ("WITH_HOST_WORD_BITSIZE   = %d\n", WITH_HOST_WORD_BITSIZE);
   printf_filtered ("WITH_TARGET_WORD_BITSIZE = %d\n", WITH_TARGET_WORD_BITSIZE);
@@ -139,8 +137,6 @@ print_options (void)
   printf_filtered ("WITH_MODEL_ISSUE         = %d\n", WITH_MODEL_ISSUE);
   printf_filtered ("WITH_RESERVED_BITS       = %d\n", WITH_RESERVED_BITS);
   printf_filtered ("WITH_STDIO               = %d\n", WITH_STDIO);
-  printf_filtered ("WITH_REGPARM             = %d\n", WITH_REGPARM);
-  printf_filtered ("WITH_STDCALL             = %d\n", WITH_STDCALL);
   printf_filtered ("DEFAULT_INLINE           = %s\n", options_inline (DEFAULT_INLINE));
   printf_filtered ("SIM_ENDIAN_INLINE        = %s\n", options_inline (SIM_ENDIAN_INLINE));
   printf_filtered ("BITS_INLINE              = %s\n", options_inline (BITS_INLINE));
@@ -170,6 +166,78 @@ print_options (void)
 #ifdef DGEN_FLAGS
   printf_filtered ("DGEN_FLAGS               = %s\n", DGEN_FLAGS);
 #endif
+
+  {
+    static const char *const defines[] = {
+#ifdef __GNUC__
+      "__GNUC__",
+#endif
+
+#ifdef __STRICT_ANSI__
+      "__STRICT_ANSI__",
+#endif
+
+#ifdef __CHAR_UNSIGNED__
+      "__CHAR_UNSIGNED__",
+#endif
+
+#ifdef __OPTIMIZE__
+      "__OPTIMIZE__",
+#endif
+
+#ifdef STDC_HEADERS
+      "STDC_HEADERS",
+#endif
+
+#include "defines.h"
+
+#ifdef HAVE_TERMIOS_CLINE
+      "HAVE_TERMIOS_CLINE",
+#endif
+
+#ifdef HAVE_TERMIOS_STRUCTURE
+      "HAVE_TERMIOS_STRUCTURE",
+#endif
+
+#ifdef HAVE_TERMIO_CLINE
+      "HAVE_TERMIO_CLINE",
+#endif
+
+#ifdef HAVE_TERMIO_STRUCTURE
+      "HAVE_TERMIO_STRUCTURE",
+#endif
+
+#ifdef HAVE_DEVZERO
+      "HAVE_DEVZERO",
+#endif
+    };
+
+    int i;
+    int max_len = 0;
+    int cols;
+
+    for (i = 0; i < ARRAY_SIZE (defines); i++) {
+      int len = strlen (defines[i]);
+      if (len > max_len)
+       max_len = len;
+    }
+
+    cols = 78 / (max_len + 2);
+    if (cols < 0)
+      cols = 1;
+
+    printf_filtered ("\n#defines:");
+    for (i = 0; i < ARRAY_SIZE (defines); i++) {
+      const char *const prefix = ((i % cols) == 0) ? "\n" : "";
+      printf_filtered ("%s  %s%*s", prefix, defines[i],
+                      (((i == ARRAY_SIZE (defines) - 1)
+                        || (((i + 1) % cols) == 0))
+                       ? 0
+                       : max_len + 4 - strlen (defines[i])),
+                      "");
+    }
+    printf_filtered ("\n");
+  }
 }
 
 #endif /* _OPTIONS_C_ */
This page took 0.024755 seconds and 4 git commands to generate.