From: Richard Henderson Date: Thu, 15 Jul 2004 00:38:43 +0000 (-0700) Subject: * print-tree.c (print_node): Handle SSA_NAME. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=018479fbada08df57b9978ec7f01c06d81e08554;p=gcc.git * print-tree.c (print_node): Handle SSA_NAME. From-SVN: r84729 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index e9f8b71bc62..6ada0787ab9 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2004-07-14 Richard Henderson + + * print-tree.c (print_node): Handle SSA_NAME. + 2004-07-14 James E Wilson PR target/16325 diff --git a/gcc/print-tree.c b/gcc/print-tree.c index 01e57026153..482f67c1bc4 100644 --- a/gcc/print-tree.c +++ b/gcc/print-tree.c @@ -731,6 +731,32 @@ print_node (FILE *file, const char *prefix, tree node, int indent) BLOCK_ABSTRACT_ORIGIN (node), indent + 4); break; + case SSA_NAME: + print_node_brief (file, "var", SSA_NAME_VAR (node), indent + 4); + print_node_brief (file, "def_stmt", + SSA_NAME_DEF_STMT (node), indent + 4); + + indent_to (file, indent + 4); + fprintf (file, "version %u", SSA_NAME_VERSION (node)); + if (SSA_NAME_OCCURS_IN_ABNORMAL_PHI (node)) + fprintf (file, " in-abnormal-phi"); + if (SSA_NAME_IN_FREE_LIST (node)) + fprintf (file, " in-free-list"); + + if (SSA_NAME_PTR_INFO (node) + || SSA_NAME_VALUE (node) + || SSA_NAME_AUX (node)) + { + indent_to (file, indent + 3); + if (SSA_NAME_PTR_INFO (node)) + fprintf (file, " ptr-info %p", SSA_NAME_PTR_INFO (node)); + if (SSA_NAME_VALUE (node)) + fprintf (file, " value %p", SSA_NAME_VALUE (node)); + if (SSA_NAME_AUX (node)) + fprintf (file, " aux %p", SSA_NAME_AUX (node)); + } + break; + default: if (TREE_CODE_CLASS (TREE_CODE (node)) == 'x') lang_hooks.print_xnode (file, node, indent);