Commit 612c671a by Gabriel Dos Reis Committed by Gabriel Dos Reis

Implement function template instantiation pretty printing.

1999-09-28  Gabriel Dos Reis  <gdr@codesourcery.com>

	Implement function template instantiation pretty printing.

        * pt.c (most_general_template): Adjust declaration.

        * cp-tree.h: (most_general_template): Declare.

        * error.c (dump_template_value): Rename to ...
        (dump_template_argument): This.
        (dump_template_argument_list): New function.
        (dump_type): Use it.
        (dump_template_parameter): New function.
        (dump_template_decl): Use it.
        (dump_template_bindings): New function.
        (dump_function_decl): Use it. Pretty print function template
        instantiations.

From-SVN: r29702
parent 224a6bca
1999-09-28 Gabriel Dos Reis <gdr@codesourcery.com>
* pt.c (most_general_template): Adjust declaration.
* cp-tree.h: (most_general_template): Declare.
* error.c (dump_template_value): Rename to ...
(dump_template_argument): This.
(dump_template_argument_list): New function.
(dump_type): Use it.
(dump_template_parameter): New function.
(dump_template_decl): Use it.
(dump_template_bindings): New function.
(dump_function_decl): Use it. Pretty print function template
instantiations.
1999-09-28 Nathan Sidwell <nathan@acm.org> 1999-09-28 Nathan Sidwell <nathan@acm.org>
* decl.c (grokdeclarator): Distinguish parameter context for * decl.c (grokdeclarator): Distinguish parameter context for
......
...@@ -3644,6 +3644,7 @@ extern tree most_specialized_instantiation PROTO((tree, tree)); ...@@ -3644,6 +3644,7 @@ extern tree most_specialized_instantiation PROTO((tree, tree));
extern void print_candidates PROTO((tree)); extern void print_candidates PROTO((tree));
extern int instantiate_pending_templates PROTO((void)); extern int instantiate_pending_templates PROTO((void));
extern tree tsubst_default_argument PROTO((tree, tree, tree)); extern tree tsubst_default_argument PROTO((tree, tree, tree));
extern tree most_general_template PROTO((tree));
extern int processing_template_parmlist; extern int processing_template_parmlist;
......
...@@ -89,7 +89,10 @@ static void dump_parameters PROTO((tree, enum tree_string_flags)); ...@@ -89,7 +89,10 @@ static void dump_parameters PROTO((tree, enum tree_string_flags));
static void dump_exception_spec PROTO((tree, enum tree_string_flags)); static void dump_exception_spec PROTO((tree, enum tree_string_flags));
static const char *aggr_variety PROTO((tree)); static const char *aggr_variety PROTO((tree));
static tree ident_fndecl PROTO((tree)); static tree ident_fndecl PROTO((tree));
static void dump_template_value PROTO((tree, enum tree_string_flags)); static void dump_template_argument PROTO((tree, enum tree_string_flags));
static void dump_template_argument_list PROTO((tree, enum tree_string_flags));
static void dump_template_parameter PROTO((tree, enum tree_string_flags));
static void dump_template_bindings PROTO((tree, tree, enum tree_string_flags));
static void dump_scope PROTO((tree, enum tree_string_flags)); static void dump_scope PROTO((tree, enum tree_string_flags));
static void dump_template_parms PROTO((tree, int, enum tree_string_flags)); static void dump_template_parms PROTO((tree, int, enum tree_string_flags));
...@@ -211,21 +214,120 @@ dump_qualifiers (t, p) ...@@ -211,21 +214,120 @@ dump_qualifiers (t, p)
value. */ value. */
static char digit_buffer[128]; static char digit_buffer[128];
/* Dump a template parameter or template argument VALUE under /* Dump the template ARGument under control of FLAGS. */
control of FLAGS. */
static void static void
dump_template_value (value, flags) dump_template_argument (arg, flags)
tree value; tree arg;
enum tree_string_flags flags; enum tree_string_flags flags;
{ {
if (TREE_CODE_CLASS (TREE_CODE (value)) == 't' if (TREE_CODE_CLASS (TREE_CODE (arg)) == 't'
|| TREE_CODE (value) == TEMPLATE_DECL) || TREE_CODE (arg) == TEMPLATE_DECL)
dump_type (value, flags & ~TS_AGGR_TAGS); dump_type (arg, flags & ~TS_AGGR_TAGS);
else else
dump_expr (value, (flags | TS_EXPR_PARENS) & ~TS_AGGR_TAGS); dump_expr (arg, (flags | TS_EXPR_PARENS) & ~TS_AGGR_TAGS);
} }
/* Dump a template-argument-list ARGS (always a TREE_VEC) under control
of FLAGS. */
static void
dump_template_argument_list (args, flags)
tree args;
enum tree_string_flags flags;
{
int n = TREE_VEC_LENGTH (args);
int need_comma = 0;
int i;
for (i = 0; i< n; ++i)
{
if (need_comma)
OB_PUTS (", ");
dump_template_argument (TREE_VEC_ELT (args, i), flags);
need_comma = 1;
}
}
/* Dump a template parameter PARM (a TREE_LIST) under control of FLAGS. */
static void
dump_template_parameter (parm, flags)
tree parm;
enum tree_string_flags flags;
{
tree p = TREE_VALUE (parm);
tree a = TREE_PURPOSE (parm);
if (TREE_CODE (p) == TYPE_DECL)
{
if (flags & TS_DECL_TYPE)
{
OB_PUTS ("class");
if (DECL_NAME (p))
{
OB_PUTC (' ');
OB_PUTID (DECL_NAME (p));
}
}
else if (DECL_NAME (p))
OB_PUTID (DECL_NAME (p));
else
OB_PUTS ("{template default argument error}");
}
else
dump_decl (p, flags | TS_DECL_TYPE);
if ((flags & TS_PARM_DEFAULTS) && a != NULL_TREE)
{
OB_PUTS (" = ");
if (TREE_CODE (a) == TYPE_DECL || TREE_CODE (a) == TEMPLATE_DECL)
dump_type (a, flags & ~TS_CHASE_TYPEDEFS);
else
dump_expr (a, flags | TS_EXPR_PARENS);
}
}
/* Dump, under control of FLAGS, a template-parameter-list binding.
PARMS is a TREE_LIST of TREE_VEC of TREE_LIST and ARGS is a
TREE_VEC. */
static void
dump_template_bindings (parms, args, flags)
tree parms, args;
enum tree_string_flags flags;
{
int arg_idx = 0;
int need_comma = 0;
while (parms)
{
tree p = TREE_VALUE (parms);
int i;
for (i = 0; i < TREE_VEC_LENGTH (p); ++i)
{
tree arg = TREE_VEC_ELT (args, arg_idx);
if (need_comma)
OB_PUTS (", ");
dump_template_parameter (TREE_VEC_ELT (p, i), TS_PLAIN);
OB_PUTS (" = ");
if (arg)
dump_template_argument (arg, TS_PLAIN);
else
OB_PUTS ("{missing}");
++arg_idx;
need_comma = 1;
}
parms = TREE_CHAIN (parms);
}
}
/* Dump into the obstack a human-readable equivalent of TYPE. FLAGS /* Dump into the obstack a human-readable equivalent of TYPE. FLAGS
controls the format. */ controls the format. */
...@@ -315,21 +417,14 @@ dump_type (t, flags) ...@@ -315,21 +417,14 @@ dump_type (t, flags)
if (TYPE_IDENTIFIER (t)) if (TYPE_IDENTIFIER (t))
OB_PUTID (TYPE_IDENTIFIER (t)); OB_PUTID (TYPE_IDENTIFIER (t));
else else
OB_PUTS ("{anonymous template template parm}"); OB_PUTS ("{anonymous template template parameter}");
} }
else else
{ {
int i;
tree args = TYPE_TI_ARGS (t); tree args = TYPE_TI_ARGS (t);
OB_PUTID (TYPE_IDENTIFIER (t)); OB_PUTID (TYPE_IDENTIFIER (t));
OB_PUTC ('<'); OB_PUTC ('<');
for (i = 0; i < TREE_VEC_LENGTH (args); i++) dump_template_argument_list (args, flags);
{
tree arg = TREE_VEC_ELT (args, i);
if (i)
OB_PUTS (", ");
dump_template_value (arg, flags);
}
OB_END_TEMPLATE_ID (); OB_END_TEMPLATE_ID ();
} }
break; break;
...@@ -339,7 +434,7 @@ dump_type (t, flags) ...@@ -339,7 +434,7 @@ dump_type (t, flags)
if (TYPE_IDENTIFIER (t)) if (TYPE_IDENTIFIER (t))
OB_PUTID (TYPE_IDENTIFIER (t)); OB_PUTID (TYPE_IDENTIFIER (t));
else else
OB_PUTS ("{anonymous template type parm}"); OB_PUTS ("{anonymous template type parameter}");
break; break;
/* This is not always necessary for pointers and such, but doing this /* This is not always necessary for pointers and such, but doing this
...@@ -375,7 +470,7 @@ dump_type (t, flags) ...@@ -375,7 +470,7 @@ dump_type (t, flags)
/* Fall through to error. */ /* Fall through to error. */
case ERROR_MARK: case ERROR_MARK:
OB_PUTS ("{typeerror}"); OB_PUTS ("{type error}");
break; break;
} }
} }
...@@ -742,7 +837,7 @@ dump_simple_decl (t, type, flags) ...@@ -742,7 +837,7 @@ dump_simple_decl (t, type, flags)
if (DECL_NAME (t)) if (DECL_NAME (t))
dump_decl (DECL_NAME (t), flags); dump_decl (DECL_NAME (t), flags);
else else
OB_PUTS ("{anon}"); OB_PUTS ("{anonymous}");
if (flags & TS_DECL_TYPE) if (flags & TS_DECL_TYPE)
dump_type_suffix (type, flags); dump_type_suffix (type, flags);
} }
...@@ -802,7 +897,7 @@ dump_decl (t, flags) ...@@ -802,7 +897,7 @@ dump_decl (t, flags)
case NAMESPACE_DECL: case NAMESPACE_DECL:
dump_scope (CP_DECL_CONTEXT (t), flags); dump_scope (CP_DECL_CONTEXT (t), flags);
if (DECL_NAME (t) == anonymous_namespace_name) if (DECL_NAME (t) == anonymous_namespace_name)
OB_PUTS ("{anonymous}"); OB_PUTS ("{unnamed}");
else else
OB_PUTID (DECL_NAME (t)); OB_PUTID (DECL_NAME (t));
break; break;
...@@ -892,7 +987,7 @@ dump_decl (t, flags) ...@@ -892,7 +987,7 @@ dump_decl (t, flags)
OB_PUTC ('<'); OB_PUTC ('<');
for (args = TREE_OPERAND (t, 1); args; args = TREE_CHAIN (args)) for (args = TREE_OPERAND (t, 1); args; args = TREE_CHAIN (args))
{ {
dump_template_value (TREE_VALUE (args), flags); dump_template_argument (TREE_VALUE (args), flags);
if (TREE_CHAIN (args)) if (TREE_CHAIN (args))
OB_PUTS (", "); OB_PUTS (", ");
} }
...@@ -934,7 +1029,7 @@ dump_decl (t, flags) ...@@ -934,7 +1029,7 @@ dump_decl (t, flags)
/* Fallthrough to error. */ /* Fallthrough to error. */
case ERROR_MARK: case ERROR_MARK:
OB_PUTS ("{declerror}"); OB_PUTS ("{declaration error}");
break; break;
} }
} }
...@@ -962,33 +1057,9 @@ dump_template_decl (t, flags) ...@@ -962,33 +1057,9 @@ dump_template_decl (t, flags)
OB_PUTS ("template <"); OB_PUTS ("template <");
for (i = 0; i < len; i++) for (i = 0; i < len; i++)
{ {
tree arg = TREE_VEC_ELT (TREE_VALUE (args), i);
tree defval = TREE_PURPOSE (arg);
arg = TREE_VALUE (arg);
if (i) if (i)
OB_PUTS (", "); OB_PUTS (", ");
if (TREE_CODE (arg) == TYPE_DECL) dump_template_parameter (TREE_VEC_ELT (args, i), flags);
{
if (DECL_NAME (arg))
{
OB_PUTS ("class ");
OB_PUTID (DECL_NAME (arg));
}
else
OB_PUTS ("class");
}
else
dump_decl (arg, flags | TS_DECL_TYPE);
if (defval)
{
OB_PUTS (" = ");
if (TREE_CODE (arg) == TYPE_DECL
|| TREE_CODE (arg) == TEMPLATE_DECL)
dump_type (defval, flags);
else
dump_expr (defval, flags | TS_EXPR_PARENS);
}
} }
OB_END_TEMPLATE_ID (); OB_END_TEMPLATE_ID ();
OB_PUTC (' '); OB_PUTC (' ');
...@@ -1034,11 +1105,21 @@ dump_function_decl (t, flags) ...@@ -1034,11 +1105,21 @@ dump_function_decl (t, flags)
tree fntype; tree fntype;
tree parmtypes; tree parmtypes;
tree cname = NULL_TREE; tree cname = NULL_TREE;
tree template_args = NULL_TREE;
tree template_parms = NULL_TREE;
int show_return = !(flags & TS_FUNC_NORETURN) && (flags & TS_DECL_TYPE); int show_return = !(flags & TS_FUNC_NORETURN) && (flags & TS_DECL_TYPE);
if (TREE_CODE (t) == TEMPLATE_DECL) if (TREE_CODE (t) == TEMPLATE_DECL)
t = DECL_TEMPLATE_RESULT (t); t = DECL_TEMPLATE_RESULT (t);
/* Pretty print template instantiations only. */
if (DECL_USE_TEMPLATE (t) == 1 || DECL_USE_TEMPLATE (t) == 3)
{
template_args = DECL_TI_ARGS (t);
t = most_general_template (t);
template_parms = DECL_TEMPLATE_PARMS (t);
}
fntype = TREE_TYPE (t); fntype = TREE_TYPE (t);
parmtypes = TYPE_ARG_TYPES (fntype); parmtypes = TYPE_ARG_TYPES (fntype);
...@@ -1098,6 +1179,14 @@ dump_function_decl (t, flags) ...@@ -1098,6 +1179,14 @@ dump_function_decl (t, flags)
if (flags & TS_FUNC_THROW) if (flags & TS_FUNC_THROW)
dump_exception_spec (TYPE_RAISES_EXCEPTIONS (fntype), flags); dump_exception_spec (TYPE_RAISES_EXCEPTIONS (fntype), flags);
/* If T is a template instantiation, dump the parameter binding. */
if (template_parms != NULL_TREE && template_args != NULL_TREE)
{
OB_PUTS (" [with ");
dump_template_bindings (template_parms, template_args, flags);
OB_PUTC (']');
}
} }
/* Print a parameter list. If this is for a member function, the /* Print a parameter list. If this is for a member function, the
...@@ -1255,9 +1344,9 @@ dump_template_parms (info, primary, flags) ...@@ -1255,9 +1344,9 @@ dump_template_parms (info, primary, flags)
OB_PUTS (", "); OB_PUTS (", ");
if (!arg) if (!arg)
OB_PUTS ("{tplparmerror}"); OB_PUTS ("{template parameter error}");
else else
dump_template_value (arg, flags); dump_template_argument (arg, flags);
need_comma = 1; need_comma = 1;
} }
} }
...@@ -1956,7 +2045,7 @@ dump_expr (t, flags) ...@@ -1956,7 +2045,7 @@ dump_expr (t, flags)
/* fall through to ERROR_MARK... */ /* fall through to ERROR_MARK... */
case ERROR_MARK: case ERROR_MARK:
OB_PUTCP ("{exprerror}"); OB_PUTCP ("{expression error}");
break; break;
} }
} }
......
...@@ -136,7 +136,6 @@ static tree tsubst_template_parms PROTO((tree, tree, int)); ...@@ -136,7 +136,6 @@ static tree tsubst_template_parms PROTO((tree, tree, int));
static void regenerate_decl_from_template PROTO((tree, tree)); static void regenerate_decl_from_template PROTO((tree, tree));
static tree most_specialized PROTO((tree, tree, tree)); static tree most_specialized PROTO((tree, tree, tree));
static tree most_specialized_class PROTO((tree, tree)); static tree most_specialized_class PROTO((tree, tree));
static tree most_general_template PROTO((tree));
static void set_mangled_name_for_template_decl PROTO((tree)); static void set_mangled_name_for_template_decl PROTO((tree));
static int template_class_depth_real PROTO((tree, int)); static int template_class_depth_real PROTO((tree, int));
static tree tsubst_aggr_type PROTO((tree, tree, int, tree, int)); static tree tsubst_aggr_type PROTO((tree, tree, int, tree, int));
...@@ -9088,7 +9087,7 @@ most_specialized (fns, decl, explicit_args) ...@@ -9088,7 +9087,7 @@ most_specialized (fns, decl, explicit_args)
if TMPL is `template <class U> void S<int*>::f(U)' this will return if TMPL is `template <class U> void S<int*>::f(U)' this will return
`template <class T> template <class U> S<T*>::f(U)'. */ `template <class T> template <class U> S<T*>::f(U)'. */
static tree tree
most_general_template (decl) most_general_template (decl)
tree decl; tree decl;
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment