OSDN Git Service

Remove change of Oct 4.
[pf3gnuchains/gcc-fork.git] / gcc / print-tree.c
index 6c2a64e..d7b9fdd 100644 (file)
@@ -1,5 +1,5 @@
 /* Prints out tree in human readable form - GNU C-compiler
-   Copyright (C) 1990, 1991, 1993, 1994 Free Software Foundation, Inc.
+   Copyright (C) 1990, 91, 93, 94, 95, 1996 Free Software Foundation, Inc.
 
 This file is part of GNU CC.
 
@@ -15,7 +15,8 @@ GNU General Public License for more details.
 
 You should have received a copy of the GNU General Public License
 along with GNU CC; see the file COPYING.  If not, write to
-the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
+the Free Software Foundation, 59 Temple Place - Suite 330,
+Boston, MA 02111-1307, USA.  */
 
 
 #include "config.h"
@@ -108,38 +109,18 @@ print_node_brief (file, prefix, node, indent)
       if (TREE_CONSTANT_OVERFLOW (node))
        fprintf (file, " overflow");
 
+      fprintf (file, " ");
       if (TREE_INT_CST_HIGH (node) == 0)
-       fprintf (file,
-#if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_INT
-                " %1u",
-#else
-                " %1lu",
-#endif
-                TREE_INT_CST_LOW (node));
+       fprintf (file, HOST_WIDE_INT_PRINT_UNSIGNED, TREE_INT_CST_LOW (node));
       else if (TREE_INT_CST_HIGH (node) == -1
               && TREE_INT_CST_LOW (node) != 0)
-       fprintf (file,
-#if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_INT
-                " -%1u",
-#else
-                " -%1lu",
-#endif
+       {
+         fprintf (file, "-");
+         fprintf (file, HOST_WIDE_INT_PRINT_UNSIGNED,
                 -TREE_INT_CST_LOW (node));
+       }
       else
-       fprintf (file,
-#if HOST_BITS_PER_WIDE_INT == 64
-#if HOST_BITS_PER_WIDE_INT != HOST_BITS_PER_INT
-                " 0x%lx%016lx",
-#else
-                " 0x%x%016x",
-#endif
-#else
-#if HOST_BITS_PER_WIDE_INT != HOST_BITS_PER_INT
-                " 0x%lx%08lx",
-#else
-                " 0x%x%08x",
-#endif
-#endif
+       fprintf (file, HOST_WIDE_INT_PRINT_DOUBLE_HEX,
                 TREE_INT_CST_HIGH (node), TREE_INT_CST_LOW (node));
     }
   if (TREE_CODE (node) == REAL_CST)
@@ -230,7 +211,7 @@ print_node (file, prefix, node, indent)
       return;
     }
 
-  /* It is unsafe to look at any other filds of an ERROR_MARK node. */
+  /* It is unsafe to look at any other filds of an ERROR_MARK node.  */
   if (TREE_CODE (node) == ERROR_MARK)
     {
       print_node_brief (file, prefix, node, indent);
@@ -352,22 +333,47 @@ print_node (file, prefix, node, indent)
     case 'd':
       mode = DECL_MODE (node);
 
+      if (DECL_IGNORED_P (node))
+       fputs (" ignored", file);
+      if (DECL_ABSTRACT (node))
+       fputs (" abstract", file);
+      if (DECL_IN_SYSTEM_HEADER (node))
+       fputs (" in_system_header", file);
+      if (DECL_COMMON (node))
+       fputs (" common", file);
       if (DECL_EXTERNAL (node))
        fputs (" external", file);
-      if (DECL_NONLOCAL (node))
-       fputs (" nonlocal", file);
       if (DECL_REGISTER (node))
        fputs (" regdecl", file);
+      if (DECL_PACKED (node))
+       fputs (" packed", file);
+      if (DECL_NONLOCAL (node))
+       fputs (" nonlocal", file);
       if (DECL_INLINE (node))
        fputs (" inline", file);
-      if (DECL_BIT_FIELD (node))
+
+      if (TREE_CODE (node) == TYPE_DECL && TYPE_DECL_SUPPRESS_DEBUG (node))
+       fputs (" suppress-debug", file);
+
+      if (TREE_CODE (node) == FUNCTION_DECL && DECL_BUILT_IN (node))
+       fputs (" built-in", file);
+      if (TREE_CODE (node) == FUNCTION_DECL && DECL_BUILT_IN_NONANSI (node))
+       fputs (" built-in-nonansi", file);
+
+      if (TREE_CODE (node) == FIELD_DECL && DECL_BIT_FIELD (node))
        fputs (" bit-field", file);
+      if (TREE_CODE (node) == LABEL_DECL && DECL_TOO_LATE (node))
+       fputs (" too-late", file);
+      if (TREE_CODE (node) == VAR_DECL && DECL_IN_TEXT_SECTION (node))
+       fputs (" in-text-section", file);
+
       if (DECL_VIRTUAL_P (node))
        fputs (" virtual", file);
-      if (DECL_IGNORED_P (node))
-       fputs (" ignored", file);
-      if (DECL_IN_SYSTEM_HEADER (node))
-       fputs (" in_system_header", file);
+      if (DECL_DEFER_OUTPUT (node))
+       fputs (" defer-output", file);
+      if (DECL_TRANSPARENT_UNION (node))
+       fputs (" transparent-union", file);
+
       if (DECL_LANG_FLAG_0 (node))
        fputs (" decl_0", file);
       if (DECL_LANG_FLAG_1 (node))
@@ -391,6 +397,7 @@ print_node (file, prefix, node, indent)
               DECL_SOURCE_FILE (node), DECL_SOURCE_LINE (node));
 
       print_node (file, "size", DECL_SIZE (node), indent + 4);
+      print_node (file, "attributes", TYPE_ATTRIBUTES (node), indent + 4);
       indent_to (file, indent + 3);
       if (TREE_CODE (node) != FUNCTION_DECL)
        fprintf (file, " align %d", DECL_ALIGN (node));
@@ -401,6 +408,7 @@ print_node (file, prefix, node, indent)
       if (TREE_CODE (node) == FIELD_DECL)
        print_node (file, "bitpos", DECL_FIELD_BITPOS (node), indent + 4);
       print_node_brief (file, "context", DECL_CONTEXT (node), indent + 4);
+      print_node_brief (file, "machine_attributes", DECL_MACHINE_ATTRIBUTES (node), indent + 4);
       print_node_brief (file, "abstract_origin",
                        DECL_ABSTRACT_ORIGIN (node), indent + 4);
 
@@ -441,7 +449,16 @@ print_node (file, prefix, node, indent)
 
     case 't':
       if (TYPE_NO_FORCE_BLK (node))
-       fputs (" no_force_blk", file);
+       fputs (" no-force-blk", file);
+      if (TYPE_STRING_FLAG (node))
+       fputs (" string-flag", file);
+      if (TYPE_NEEDS_CONSTRUCTING (node))
+       fputs (" needs-constructing", file);
+      if (TYPE_TRANSPARENT_UNION (node))
+       fputs (" transparent-union", file);
+      if (TYPE_PACKED (node))
+       fputs (" packed", file);
+
       if (TYPE_LANG_FLAG_0 (node))
        fputs (" type_0", file);
       if (TYPE_LANG_FLAG_1 (node))
@@ -585,38 +602,19 @@ print_node (file, prefix, node, indent)
          if (TREE_CONSTANT_OVERFLOW (node))
            fprintf (file, " overflow");
 
+         fprintf (file, " ");
          if (TREE_INT_CST_HIGH (node) == 0)
-           fprintf (file,
-#if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_INT
-                    " %1u",
-#else
-                    " %1lu",
-#endif
+           fprintf (file, HOST_WIDE_INT_PRINT_UNSIGNED,
                     TREE_INT_CST_LOW (node));
          else if (TREE_INT_CST_HIGH (node) == -1
                   && TREE_INT_CST_LOW (node) != 0)
-           fprintf (file,
-#if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_INT
-                    " -%1u",
-#else
-                    " -%1lu",
-#endif
-                    -TREE_INT_CST_LOW (node));
+           {
+             fprintf (file, "-");
+             fprintf (file, HOST_WIDE_INT_PRINT_UNSIGNED,
+                      -TREE_INT_CST_LOW (node));
+           }
          else
-           fprintf (file,
-#if HOST_BITS_PER_WIDE_INT == 64
-#if HOST_BITS_PER_WIDE_INT != HOST_BITS_PER_INT
-                    " 0x%lx%016lx",
-#else
-                    " 0x%x%016x",
-#endif
-#else
-#if HOST_BITS_PER_WIDE_INT != HOST_BITS_PER_INT
-                    " 0x%lx%08lx",
-#else
-                    " 0x%x%08x",
-#endif
-#endif
+           fprintf (file, HOST_WIDE_INT_PRINT_DOUBLE_HEX,
                     TREE_INT_CST_HIGH (node), TREE_INT_CST_LOW (node));
          break;