decl.c (grokdeclarator): Remove redundant calls to build_type_variant and some duplicated code.

* decl.c (grokdeclarator): Remove redundant calls to
	build_type_variant and some duplicated code.
	* sig.c (build_signature_reference_type): Only take the type parm.
	(build_signature_pointer_type): Likewise.
	* tree.c (build_cplus_method_type): Adjust.
	* cp-tree.h: Update.

From-SVN: r22820
This commit is contained in:
Jason Merrill 1998-10-04 16:20:59 +00:00 committed by Jason Merrill
parent 710afba434
commit 14ae7e7d28
5 changed files with 63 additions and 122 deletions

View File

@ -1,3 +1,12 @@
1998-10-04 Jason Merrill <jason@yorick.cygnus.com>
* decl.c (grokdeclarator): Remove redundant calls to
build_type_variant and some duplicated code.
* sig.c (build_signature_reference_type): Only take the type parm.
(build_signature_pointer_type): Likewise.
* tree.c (build_cplus_method_type): Adjust.
* cp-tree.h: Update.
1998-10-04 Mark Mitchell <mark@markmitchell.com> 1998-10-04 Mark Mitchell <mark@markmitchell.com>
* call.c (build_over_call): Make pedwarns about dropped qualifiers * call.c (build_over_call): Make pedwarns about dropped qualifiers

View File

@ -2960,8 +2960,8 @@ extern void enter_scope_of PROTO((tree));
extern tree finish_base_specifier PROTO((tree, tree, int)); extern tree finish_base_specifier PROTO((tree, tree, int));
/* in sig.c */ /* in sig.c */
extern tree build_signature_pointer_type PROTO((tree, int, int)); extern tree build_signature_pointer_type PROTO((tree));
extern tree build_signature_reference_type PROTO((tree, int, int)); extern tree build_signature_reference_type PROTO((tree));
extern tree build_signature_pointer_constructor PROTO((tree, tree)); extern tree build_signature_pointer_constructor PROTO((tree, tree));
extern tree build_signature_method_call PROTO((tree, tree)); extern tree build_signature_method_call PROTO((tree, tree));
extern tree build_optr_ref PROTO((tree)); extern tree build_optr_ref PROTO((tree));

View File

@ -9460,15 +9460,7 @@ grokdeclarator (declarator, declspecs, decl_context, initialized, attrlist)
resume_momentary (yes); resume_momentary (yes);
} }
/* Build the array type itself, then merge any constancy or
volatility into the target type. We must do it in this order
to ensure that the TYPE_MAIN_VARIANT field of the array type
is set correctly. */
type = build_cplus_array_type (type, itype); type = build_cplus_array_type (type, itype);
if (constp || volatilep)
type = cp_build_type_variant (type, constp, volatilep);
ctype = NULL_TREE; ctype = NULL_TREE;
} }
break; break;
@ -9482,23 +9474,10 @@ grokdeclarator (declarator, declspecs, decl_context, initialized, attrlist)
/* Declaring a function type. /* Declaring a function type.
Make sure we have a valid type for the function to return. */ Make sure we have a valid type for the function to return. */
#if 0
/* Is this an error? Should they be merged into TYPE here? */
if (pedantic && (constp || volatilep))
pedwarn ("function declared to return const or volatile result");
#else
/* Merge any constancy or volatility into the function return
type. */
if (constp || volatilep) /* We now know that constp and volatilep don't apply to the
{ decl, but to its return type. */
type = cp_build_type_variant (type, constp, volatilep); constp = volatilep = 0;
if (IS_AGGR_TYPE (type))
build_pointer_type (type);
constp = 0;
volatilep = 0;
}
#endif
/* Warn about some types functions can't return. */ /* Warn about some types functions can't return. */
@ -9703,24 +9682,9 @@ grokdeclarator (declarator, declspecs, decl_context, initialized, attrlist)
type = TREE_TYPE (type); type = TREE_TYPE (type);
} }
/* Merge any constancy or volatility into the target type /* We now know that constp and volatilep don't apply to the
for the pointer. */ decl, but to the target of the pointer. */
constp = volatilep = 0;
if (constp || volatilep)
{
/* A const or volatile signature pointer/reference is
pointing to a const or volatile object, i.e., the
`optr' is const or volatile, respectively, not the
signature pointer/reference itself. */
if (! IS_SIGNATURE (type))
{
type = cp_build_type_variant (type, constp, volatilep);
if (IS_AGGR_TYPE (type))
build_pointer_type (type);
constp = 0;
volatilep = 0;
}
}
if (IS_SIGNATURE (type)) if (IS_SIGNATURE (type))
{ {
@ -9731,8 +9695,7 @@ grokdeclarator (declarator, declspecs, decl_context, initialized, attrlist)
cp_warning ("empty signature `%T' used in signature reference declaration", cp_warning ("empty signature `%T' used in signature reference declaration",
type); type);
#if 0 #if 0
type = build_signature_reference_type (type, type = build_signature_reference_type (type);
constp, volatilep);
#else #else
sorry ("signature reference"); sorry ("signature reference");
return NULL_TREE; return NULL_TREE;
@ -9744,8 +9707,7 @@ grokdeclarator (declarator, declspecs, decl_context, initialized, attrlist)
&& TYPE_SIZE (type)) && TYPE_SIZE (type))
cp_warning ("empty signature `%T' used in signature pointer declaration", cp_warning ("empty signature `%T' used in signature pointer declaration",
type); type);
type = build_signature_pointer_type (type, type = build_signature_pointer_type (type);
constp, volatilep);
} }
constp = 0; constp = 0;
volatilep = 0; volatilep = 0;
@ -9904,8 +9866,8 @@ grokdeclarator (declarator, declspecs, decl_context, initialized, attrlist)
{ {
if (current_class_type == NULL_TREE if (current_class_type == NULL_TREE
|| friendp) || friendp)
type = build_cplus_method_type (build_type_variant (ctype, constp, volatilep), type = build_cplus_method_type (ctype, TREE_TYPE (type),
TREE_TYPE (type), TYPE_ARG_TYPES (type)); TYPE_ARG_TYPES (type));
else else
{ {
cp_error ("cannot declare member function `%T::%s' within `%T'", cp_error ("cannot declare member function `%T::%s' within `%T'",
@ -9933,10 +9895,7 @@ grokdeclarator (declarator, declspecs, decl_context, initialized, attrlist)
{ {
if (TREE_CODE (type) == FUNCTION_TYPE) if (TREE_CODE (type) == FUNCTION_TYPE)
type type
= build_cplus_method_type (build_type_variant (ctype, = build_cplus_method_type (ctype, TREE_TYPE (type),
constp,
volatilep),
TREE_TYPE (type),
TYPE_ARG_TYPES (type)); TYPE_ARG_TYPES (type));
} }
else else
@ -9959,7 +9918,8 @@ grokdeclarator (declarator, declspecs, decl_context, initialized, attrlist)
else else
{ {
if (TREE_CODE (type) == FUNCTION_TYPE) if (TREE_CODE (type) == FUNCTION_TYPE)
type = build_cplus_method_type (build_type_variant (ctype, constp, volatilep), TREE_TYPE (type), TYPE_ARG_TYPES (type)); type = build_cplus_method_type (ctype, TREE_TYPE (type),
TYPE_ARG_TYPES (type));
else else
type = build_offset_type (ctype, type); type = build_offset_type (ctype, type);
} }
@ -10016,8 +9976,6 @@ grokdeclarator (declarator, declspecs, decl_context, initialized, attrlist)
/* Note that the grammar rejects storage classes /* Note that the grammar rejects storage classes
in typenames, fields or parameters. */ in typenames, fields or parameters. */
if (constp || volatilep)
type = cp_build_type_variant (type, constp, volatilep);
if (current_lang_name == lang_name_java) if (current_lang_name == lang_name_java)
TYPE_FOR_JAVA (type) = 1; TYPE_FOR_JAVA (type) = 1;
@ -10140,8 +10098,6 @@ grokdeclarator (declarator, declspecs, decl_context, initialized, attrlist)
{ {
if (IS_SIGNATURE (type)) if (IS_SIGNATURE (type))
error ("`const' or `volatile' specified with signature type"); error ("`const' or `volatile' specified with signature type");
else
type = cp_build_type_variant (type, constp, volatilep);
} }
/* Special case: "friend class foo" looks like a TYPENAME context. */ /* Special case: "friend class foo" looks like a TYPENAME context. */
@ -10217,35 +10173,37 @@ grokdeclarator (declarator, declspecs, decl_context, initialized, attrlist)
/* Now create the decl, which may be a VAR_DECL, a PARM_DECL /* Now create the decl, which may be a VAR_DECL, a PARM_DECL
or a FUNCTION_DECL, depending on DECL_CONTEXT and TYPE. */ or a FUNCTION_DECL, depending on DECL_CONTEXT and TYPE. */
if (decl_context == PARM || decl_context == CATCHPARM)
{
if (ctype || in_namespace)
error ("cannot use `::' in parameter declaration");
/* A parameter declared as an array of T is really a pointer to T.
One declared as a function is really a pointer to a function.
One declared as a member is really a pointer to member. */
if (TREE_CODE (type) == ARRAY_TYPE)
{
/* Transfer const-ness of array into that of type pointed to. */
type = build_pointer_type (TREE_TYPE (type));
volatilep = constp = 0;
}
else if (TREE_CODE (type) == FUNCTION_TYPE)
type = build_pointer_type (type);
else if (TREE_CODE (type) == OFFSET_TYPE)
type = build_pointer_type (type);
else if (TREE_CODE (type) == VOID_TYPE && declarator)
{
error ("declaration of `%s' as void", name);
return NULL_TREE;
}
}
{ {
register tree decl; register tree decl;
if (decl_context == PARM) if (decl_context == PARM)
{ {
if (ctype || in_namespace)
error ("cannot use `::' in parameter declaration");
/* A parameter declared as an array of T is really a pointer to T.
One declared as a function is really a pointer to a function.
One declared as a member is really a pointer to member. */
if (TREE_CODE (type) == ARRAY_TYPE)
{
/* Transfer const-ness of array into that of type pointed to. */
type = build_pointer_type
(cp_build_type_variant (TREE_TYPE (type), constp, volatilep));
volatilep = constp = 0;
}
else if (TREE_CODE (type) == FUNCTION_TYPE)
type = build_pointer_type (type);
else if (TREE_CODE (type) == OFFSET_TYPE)
type = build_pointer_type (type);
else if (TREE_CODE (type) == VOID_TYPE && declarator)
{
error ("declaration of `%s' as void", name);
return NULL_TREE;
}
decl = build_decl (PARM_DECL, declarator, complete_type (type)); decl = build_decl (PARM_DECL, declarator, complete_type (type));
bad_specifiers (decl, "parameter", virtualp, quals != NULL_TREE, bad_specifiers (decl, "parameter", virtualp, quals != NULL_TREE,
@ -10330,8 +10288,8 @@ grokdeclarator (declarator, declspecs, decl_context, initialized, attrlist)
} }
} }
else if (staticp < 2) else if (staticp < 2)
type = build_cplus_method_type (build_type_variant (ctype, constp, volatilep), type = build_cplus_method_type (ctype, TREE_TYPE (type),
TREE_TYPE (type), TYPE_ARG_TYPES (type)); TYPE_ARG_TYPES (type));
} }
/* Tell grokfndecl if it needs to set TREE_PUBLIC on the node. */ /* Tell grokfndecl if it needs to set TREE_PUBLIC on the node. */
@ -10571,8 +10529,8 @@ grokdeclarator (declarator, declspecs, decl_context, initialized, attrlist)
declarator = build_decl_overload (dname, TYPE_ARG_TYPES (type), 0); declarator = build_decl_overload (dname, TYPE_ARG_TYPES (type), 0);
} }
else if (TREE_CODE (type) == FUNCTION_TYPE && staticp < 2) else if (TREE_CODE (type) == FUNCTION_TYPE && staticp < 2)
type = build_cplus_method_type (build_type_variant (ctype, constp, volatilep), type = build_cplus_method_type (ctype, TREE_TYPE (type),
TREE_TYPE (type), TYPE_ARG_TYPES (type)); TYPE_ARG_TYPES (type));
/* Record presence of `static'. */ /* Record presence of `static'. */
publicp = (ctype != NULL_TREE publicp = (ctype != NULL_TREE
@ -10626,32 +10584,6 @@ grokdeclarator (declarator, declspecs, decl_context, initialized, attrlist)
{ {
/* It's a variable. */ /* It's a variable. */
if (decl_context == CATCHPARM)
{
if (ctype)
{
ctype = NULL_TREE;
error ("cannot use `::' in parameter declaration");
}
/* A parameter declared as an array of T is really a pointer to T.
One declared as a function is really a pointer to a function.
One declared as a member is really a pointer to member. */
if (TREE_CODE (type) == ARRAY_TYPE)
{
/* Transfer const-ness of array into that of type
pointed to. */
type = build_pointer_type
(cp_build_type_variant (TREE_TYPE (type), constp, volatilep));
volatilep = constp = 0;
}
else if (TREE_CODE (type) == FUNCTION_TYPE)
type = build_pointer_type (type);
else if (TREE_CODE (type) == OFFSET_TYPE)
type = build_pointer_type (type);
}
/* An uninitialized decl with `extern' is a reference. */ /* An uninitialized decl with `extern' is a reference. */
decl = grokvardecl (type, declarator, &specbits, decl = grokvardecl (type, declarator, &specbits,
initialized, constp, in_namespace); initialized, constp, in_namespace);

View File

@ -250,23 +250,25 @@ build_signature_pointer_or_reference_type (to_type, constp, volatilep, refp)
/* Construct, lay out and return the type of pointers to signature TO_TYPE. */ /* Construct, lay out and return the type of pointers to signature TO_TYPE. */
tree tree
build_signature_pointer_type (to_type, constp, volatilep) build_signature_pointer_type (to_type)
tree to_type; tree to_type;
int constp, volatilep;
{ {
return return
build_signature_pointer_or_reference_type (to_type, constp, volatilep, 0); build_signature_pointer_or_reference_type (TYPE_MAIN_VARIANT (to_type),
TYPE_READONLY (to_type),
TYPE_VOLATILE (to_type), 0);
} }
/* Construct, lay out and return the type of pointers to signature TO_TYPE. */ /* Construct, lay out and return the type of pointers to signature TO_TYPE. */
tree tree
build_signature_reference_type (to_type, constp, volatilep) build_signature_reference_type (to_type)
tree to_type; tree to_type;
int constp, volatilep;
{ {
return return
build_signature_pointer_or_reference_type (to_type, constp, volatilep, 1); build_signature_pointer_or_reference_type (TYPE_MAIN_VARIANT (to_type),
TYPE_READONLY (to_type),
TYPE_VOLATILE (to_type), 1);
} }
/* Return the name of the signature table (as an IDENTIFIER_NODE) /* Return the name of the signature table (as an IDENTIFIER_NODE)

View File

@ -377,9 +377,7 @@ build_cplus_method_type (basetype, rettype, argtypes)
TYPE_METHOD_BASETYPE (t) = TYPE_MAIN_VARIANT (basetype); TYPE_METHOD_BASETYPE (t) = TYPE_MAIN_VARIANT (basetype);
TREE_TYPE (t) = rettype; TREE_TYPE (t) = rettype;
if (IS_SIGNATURE (basetype)) if (IS_SIGNATURE (basetype))
ptype = build_signature_pointer_type (TYPE_MAIN_VARIANT (basetype), ptype = build_signature_pointer_type (basetype);
TYPE_READONLY (basetype),
TYPE_VOLATILE (basetype));
else else
ptype = build_pointer_type (basetype); ptype = build_pointer_type (basetype);