aboutsummaryrefslogtreecommitdiff
path: root/gcc/print-rtl.c
diff options
context:
space:
mode:
authorRichard Henderson <rth@redhat.com>2004-09-12 10:27:04 -0700
committerRichard Henderson <rth@gcc.gnu.org>2004-09-12 10:27:04 -0700
commit21076c8ec342f7610a684e60bee243f111a2d0fd (patch)
tree4ee187759fbe33dcc95a607a9dee9d8c02fac25d /gcc/print-rtl.c
parentf6a41d17646f19146749442cced240b927f88b8b (diff)
downloadgcc-21076c8ec342f7610a684e60bee243f111a2d0fd.zip
gcc-21076c8ec342f7610a684e60bee243f111a2d0fd.tar.gz
gcc-21076c8ec342f7610a684e60bee243f111a2d0fd.tar.bz2
print-rtl.c (print_decl_name): New.
* print-rtl.c (print_decl_name): New. (print_mem_expr): Use it. From-SVN: r87395
Diffstat (limited to 'gcc/print-rtl.c')
-rw-r--r--gcc/print-rtl.c29
1 files changed, 23 insertions, 6 deletions
diff --git a/gcc/print-rtl.c b/gcc/print-rtl.c
index a90a2c3..0683159 100644
--- a/gcc/print-rtl.c
+++ b/gcc/print-rtl.c
@@ -67,6 +67,23 @@ int flag_simple = 0;
int dump_for_graph;
#ifndef GENERATOR_FILE
+static void
+print_decl_name (FILE *outfile, tree node)
+{
+ if (DECL_NAME (node))
+ fputs (IDENTIFIER_POINTER (DECL_NAME (node)), outfile);
+ else
+ {
+ if (TREE_CODE (node) == LABEL_DECL && LABEL_DECL_UID (node) != -1)
+ fprintf (outfile, "L." HOST_WIDE_INT_PRINT_DEC, LABEL_DECL_UID (node));
+ else
+ {
+ char c = TREE_CODE (node) == CONST_DECL ? 'C' : 'D';
+ fprintf (outfile, "%c.%u", c, DECL_UID (node));
+ }
+ }
+}
+
void
print_mem_expr (FILE *outfile, tree expr)
{
@@ -76,9 +93,8 @@ print_mem_expr (FILE *outfile, tree expr)
print_mem_expr (outfile, TREE_OPERAND (expr, 0));
else
fputs (" <variable>", outfile);
- if (DECL_NAME (TREE_OPERAND (expr, 1)))
- fprintf (outfile, ".%s",
- IDENTIFIER_POINTER (DECL_NAME (TREE_OPERAND (expr, 1))));
+ fputc ('.', outfile);
+ print_decl_name (outfile, TREE_OPERAND (expr, 1));
}
else if (TREE_CODE (expr) == INDIRECT_REF)
{
@@ -86,12 +102,13 @@ print_mem_expr (FILE *outfile, tree expr)
print_mem_expr (outfile, TREE_OPERAND (expr, 0));
fputs (")", outfile);
}
- else if (DECL_NAME (expr))
- fprintf (outfile, " %s", IDENTIFIER_POINTER (DECL_NAME (expr)));
else if (TREE_CODE (expr) == RESULT_DECL)
fputs (" <result>", outfile);
else
- fputs (" <anonymous>", outfile);
+ {
+ fputc (' ', outfile);
+ print_decl_name (outfile, expr);
+ }
}
#endif