aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorGabriel Dos Reis <gdr@integrable-solutions.net>2013-08-24 22:29:37 +0000
committerGabriel Dos Reis <gdr@gcc.gnu.org>2013-08-24 22:29:37 +0000
commitca43e9d547182a1eb1ba29e170f95ece16fcfe6c (patch)
tree4b35d7d9d9257f3609b5a24c0d5f87653ee87c46 /gcc
parentead69dac2006c72a14ecdac799d24171ab2f25fc (diff)
downloadgcc-ca43e9d547182a1eb1ba29e170f95ece16fcfe6c.zip
gcc-ca43e9d547182a1eb1ba29e170f95ece16fcfe6c.tar.gz
gcc-ca43e9d547182a1eb1ba29e170f95ece16fcfe6c.tar.bz2
c-pretty-print.h (c_pretty_printer::constant): Now a virtual member function.
* c-pretty-print.h (c_pretty_printer::constant): Now a virtual member function. (pp_constant): Adjust. (pp_c_constant): Remove. * c-pretty-print.c (c_pretty_printer::constant): Rename from pp_c_constant. Adjust. (pp_c_constant) (pp_c_primary_expression): Call pp_constant in lieu of pp_c_constant. (c_pretty_printer::c_pretty_printer): Remove assignment to constant. cp/ * cxx-pretty-print.h (cxx_pretty_printer::constant): Now a member function, overriding c_pretty_printer::constant. * cxx-pretty-print.c (cxx_pretty_printer::constant): Rename from pp_cxx_constant. Adjust. (cxx_pretty_printer::cxx_pretty_printer): Do not assign to constant. From-SVN: r201969
Diffstat (limited to 'gcc')
-rw-r--r--gcc/c-family/ChangeLog12
-rw-r--r--gcc/c-family/c-pretty-print.c25
-rw-r--r--gcc/c-family/c-pretty-print.h5
-rw-r--r--gcc/cp/ChangeLog8
-rw-r--r--gcc/cp/cxx-pretty-print.c21
-rw-r--r--gcc/cp/cxx-pretty-print.h2
6 files changed, 46 insertions, 27 deletions
diff --git a/gcc/c-family/ChangeLog b/gcc/c-family/ChangeLog
index 513a927..ffac4dd 100644
--- a/gcc/c-family/ChangeLog
+++ b/gcc/c-family/ChangeLog
@@ -1,3 +1,15 @@
+2013-08-24 Gabriel Dos Reis <gdr@integrable-solutions.net>
+
+ * c-pretty-print.h (c_pretty_printer::constant): Now a virtual
+ member function.
+ (pp_constant): Adjust.
+ (pp_c_constant): Remove.
+ * c-pretty-print.c (c_pretty_printer::constant): Rename from
+ pp_c_constant. Adjust.
+ (pp_c_constant)
+ (pp_c_primary_expression): Call pp_constant in lieu of pp_c_constant.
+ (c_pretty_printer::c_pretty_printer): Remove assignment to constant.
+
2013-08-22 Gabriel Dos Reis <gdr@integrable-solutions.net>
* c-pretty-print.h (pp_c_pretty_printer_init): Remove.
diff --git a/gcc/c-family/c-pretty-print.c b/gcc/c-family/c-pretty-print.c
index 253dfd1..5291be7 100644
--- a/gcc/c-family/c-pretty-print.c
+++ b/gcc/c-family/c-pretty-print.c
@@ -1130,7 +1130,7 @@ pp_c_complex_expr (c_pretty_printer *pp, tree e)
character-constant */
void
-pp_c_constant (c_pretty_printer *pp, tree e)
+c_pretty_printer::constant (tree e)
{
const enum tree_code code = TREE_CODE (e);
@@ -1140,38 +1140,38 @@ pp_c_constant (c_pretty_printer *pp, tree e)
{
tree type = TREE_TYPE (e);
if (type == boolean_type_node)
- pp_c_bool_constant (pp, e);
+ pp_c_bool_constant (this, e);
else if (type == char_type_node)
- pp_c_character_constant (pp, e);
+ pp_c_character_constant (this, e);
else if (TREE_CODE (type) == ENUMERAL_TYPE
- && pp_c_enumeration_constant (pp, e))
+ && pp_c_enumeration_constant (this, e))
;
else
- pp_c_integer_constant (pp, e);
+ pp_c_integer_constant (this, e);
}
break;
case REAL_CST:
- pp_c_floating_constant (pp, e);
+ pp_c_floating_constant (this, e);
break;
case FIXED_CST:
- pp_c_fixed_constant (pp, e);
+ pp_c_fixed_constant (this, e);
break;
case STRING_CST:
- pp_c_string_literal (pp, e);
+ pp_c_string_literal (this, e);
break;
case COMPLEX_CST:
/* Sometimes, we are confused and we think a complex literal
is a constant. Such thing is a compound literal which
grammatically belongs to postfix-expr production. */
- pp_c_compound_literal (pp, e);
+ pp_c_compound_literal (this, e);
break;
default:
- pp_unsupported_tree (pp, e);
+ pp_unsupported_tree (this, e);
break;
}
}
@@ -1236,7 +1236,7 @@ pp_c_primary_expression (c_pretty_printer *pp, tree e)
case REAL_CST:
case FIXED_CST:
case STRING_CST:
- pp_c_constant (pp, e);
+ pp_constant (pp, e);
break;
case TARGET_EXPR:
@@ -1357,7 +1357,7 @@ pp_c_initializer_list (c_pretty_printer *pp, tree e)
{
pp_c_left_bracket (pp);
if (TREE_PURPOSE (init))
- pp_c_constant (pp, TREE_PURPOSE (init));
+ pp_constant (pp, TREE_PURPOSE (init));
pp_c_right_bracket (pp);
}
pp_c_whitespace (pp);
@@ -2339,7 +2339,6 @@ c_pretty_printer::c_pretty_printer ()
statement = pp_c_statement;
- constant = pp_c_constant;
id_expression = pp_c_id_expression;
primary_expression = pp_c_primary_expression;
postfix_expression = pp_c_postfix_expression;
diff --git a/gcc/c-family/c-pretty-print.h b/gcc/c-family/c-pretty-print.h
index 9064755..13b0fe5 100644
--- a/gcc/c-family/c-pretty-print.h
+++ b/gcc/c-family/c-pretty-print.h
@@ -51,6 +51,7 @@ struct c_pretty_printer : pretty_printer
{
c_pretty_printer ();
+ virtual void constant (tree);
/* Points to the first element of an array of offset-list.
Not used yet. */
int *offset_list;
@@ -76,7 +77,6 @@ struct c_pretty_printer : pretty_printer
c_pretty_print_fn statement;
- c_pretty_print_fn constant;
c_pretty_print_fn id_expression;
c_pretty_print_fn primary_expression;
c_pretty_print_fn postfix_expression;
@@ -109,7 +109,7 @@ struct c_pretty_printer : pretty_printer
#define pp_statement(PP, S) (PP)->statement (PP, S)
-#define pp_constant(PP, E) (PP)->constant (PP, E)
+#define pp_constant(PP, E) (PP)->constant (E)
#define pp_id_expression(PP, E) (PP)->id_expression (PP, E)
#define pp_primary_expression(PP, E) (PP)->primary_expression (PP, E)
#define pp_postfix_expression(PP, E) (PP)->postfix_expression (PP, E)
@@ -169,7 +169,6 @@ void pp_c_cast_expression (c_pretty_printer *, tree);
void pp_c_postfix_expression (c_pretty_printer *, tree);
void pp_c_primary_expression (c_pretty_printer *, tree);
void pp_c_init_declarator (c_pretty_printer *, tree);
-void pp_c_constant (c_pretty_printer *, tree);
void pp_c_id_expression (c_pretty_printer *, tree);
void pp_c_ws_string (c_pretty_printer *, const char *);
void pp_c_identifier (c_pretty_printer *, const char *);
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index 6972868..42db295 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -1,3 +1,11 @@
+2013-08-24 Gabriel Dos Reis <gdr@integrable-solutions.net>
+
+ * cxx-pretty-print.h (cxx_pretty_printer::constant): Now a member
+ function, overriding c_pretty_printer::constant.
+ * cxx-pretty-print.c (cxx_pretty_printer::constant): Rename from
+ pp_cxx_constant. Adjust.
+ (cxx_pretty_printer::cxx_pretty_printer): Do not assign to constant.
+
2013-08-23 Gabriel Dos Reis <gdr@integrable-solutiobs.net>
* cp-objcp-common.c (cxx_initialize_diagnostics): Call a
diff --git a/gcc/cp/cxx-pretty-print.c b/gcc/cp/cxx-pretty-print.c
index 6c32365..f83f31d 100644
--- a/gcc/cp/cxx-pretty-print.c
+++ b/gcc/cp/cxx-pretty-print.c
@@ -321,8 +321,8 @@ pp_cxx_qualified_id (cxx_pretty_printer *pp, tree t)
}
-static void
-pp_cxx_constant (cxx_pretty_printer *pp, tree t)
+void
+cxx_pretty_printer::constant (tree t)
{
switch (TREE_CODE (t))
{
@@ -330,23 +330,23 @@ pp_cxx_constant (cxx_pretty_printer *pp, tree t)
{
const bool in_parens = PAREN_STRING_LITERAL_P (t);
if (in_parens)
- pp_cxx_left_paren (pp);
- pp_c_constant (pp, t);
+ pp_cxx_left_paren (this);
+ c_pretty_printer::constant (t);
if (in_parens)
- pp_cxx_right_paren (pp);
+ pp_cxx_right_paren (this);
}
break;
case INTEGER_CST:
if (NULLPTR_TYPE_P (TREE_TYPE (t)))
{
- pp_string (pp, "nullptr");
+ pp_string (this, "nullptr");
break;
}
/* else fall through. */
default:
- pp_c_constant (pp, t);
+ c_pretty_printer::constant (t);
break;
}
}
@@ -372,7 +372,7 @@ pp_cxx_id_expression (cxx_pretty_printer *pp, tree t)
void
pp_cxx_userdef_literal (cxx_pretty_printer *pp, tree t)
{
- pp_cxx_constant (pp, USERDEF_LITERAL_VALUE (t));
+ pp_constant (pp, USERDEF_LITERAL_VALUE (t));
pp_cxx_id_expression (pp, USERDEF_LITERAL_SUFFIX_ID (t));
}
@@ -420,7 +420,7 @@ pp_cxx_primary_expression (cxx_pretty_printer *pp, tree t)
case REAL_CST:
case COMPLEX_CST:
case STRING_CST:
- pp_cxx_constant (pp, t);
+ pp_constant (pp, t);
break;
case USERDEF_LITERAL:
@@ -1041,7 +1041,7 @@ pp_cxx_expression (cxx_pretty_printer *pp, tree t)
case INTEGER_CST:
case REAL_CST:
case COMPLEX_CST:
- pp_cxx_constant (pp, t);
+ pp_constant (pp, t);
break;
case USERDEF_LITERAL:
@@ -2452,7 +2452,6 @@ cxx_pretty_printer::cxx_pretty_printer ()
/* pp->statement = (pp_fun) pp_cxx_statement; */
- constant = (pp_fun) pp_cxx_constant;
id_expression = (pp_fun) pp_cxx_id_expression;
primary_expression = (pp_fun) pp_cxx_primary_expression;
postfix_expression = (pp_fun) pp_cxx_postfix_expression;
diff --git a/gcc/cp/cxx-pretty-print.h b/gcc/cp/cxx-pretty-print.h
index c4611e2..3d82ecb 100644
--- a/gcc/cp/cxx-pretty-print.h
+++ b/gcc/cp/cxx-pretty-print.h
@@ -32,6 +32,8 @@ enum cxx_pretty_printer_flags
struct cxx_pretty_printer : c_pretty_printer
{
cxx_pretty_printer ();
+
+ virtual void constant (tree);
/* This is the enclosing scope of the entity being pretty-printed. */
tree enclosing_scope;
};