aboutsummaryrefslogtreecommitdiff
path: root/gcc/cp/pt.cc
diff options
context:
space:
mode:
authorPatrick Palka <ppalka@redhat.com>2023-02-16 11:12:19 -0500
committerPatrick Palka <ppalka@redhat.com>2023-02-16 11:12:19 -0500
commit46711ff8e60d64b7e5550f4614c29d42b224f98b (patch)
tree47042bc49951757931c34ef14290549c91882ae8 /gcc/cp/pt.cc
parentbb3aee20cdeeb6399ca77ac05cd8093d66256df3 (diff)
downloadgcc-46711ff8e60d64b7e5550f4614c29d42b224f98b.zip
gcc-46711ff8e60d64b7e5550f4614c29d42b224f98b.tar.gz
gcc-46711ff8e60d64b7e5550f4614c29d42b224f98b.tar.bz2
c++: TYPENAME_TYPE lookup ignoring non-types [PR107773]
Currently when resolving a TYPENAME_TYPE for 'typename T::m' via make_typename_type, we consider only type bindings of 'm' and ignore non-type ones. But [temp.res.general]/3 says, in a note, "the usual qualified name lookup ([basic.lookup.qual]) applies even in the presence of 'typename'", and qualified name lookup doesn't discriminate between type and non-type bindings. So when resolving such a TYPENAME_TYPE we want the lookup to consider all bindings. An exception is when we have a TYPENAME_TYPE corresponding to the qualifying scope of the :: scope resolution operator, such as 'T::type' in 'T::type::m'. In that case, [basic.lookup.qual]/1 applies, and lookup for such a TYPENAME_TYPE must ignore non-type bindings. So in order to correctly handle all cases, make_typename_type needs an additional flag controlling whether to restrict the lookup. To that end this patch adds a new tsubst flag tf_qualifying_scope denoting whether we're substituting the LHS of the :: operator, which make_typename_type will look for to conditionally restrict the lookup to type bindings (by default we want to consider all bindings). So in contexts such as substituting into the scope of TYPENAME_TYPE, SCOPE_REF or USING_DECL we simply pass tf_qualifying_scope to the relevant tsubst / tsubst_copy call, and if that scope is a TYPENAME_TYPE then make_typename_type will restrict the lookup accordingly. This flag is intended to apply only to overall scope (TYPENAME_TYPE or not) so we must be careful to clear the flag to avoid propagating it when recursing into sub-trees of the scope. PR c++/107773 gcc/cp/ChangeLog: * cp-tree.h (enum tsubst_flags): New flag tf_qualifying_scope. * decl.cc (make_typename_type): Use lookup_member instead of lookup_field. If tf_qualifying_scope is set, pass want_type=true instead of =false to lookup_member. Generalize format specifier in diagnostic to handle both type and non-type bindings. * pt.cc (tsubst_aggr_type_1): Clear tf_qualifying_scope. Tidy the function. (tsubst_decl) <case USING_DECL>: Set tf_qualifying_scope when substituting USING_DECL_SCOPE. (tsubst): Clear tf_qualifying_scope right away and remember if it was set. Do the same for tf_tst_ok sooner. <case TYPENAME_TYPE>: Set tf_qualifying_scope when substituting TYPE_CONTEXT. Pass tf_qualifying_scope to make_typename_type if it was set. (tsubst_qualified_id): Set tf_qualifying_scope when substituting the scope. (tsubst_copy): Clear tf_qualifying_scope and remember if it was set. <case SCOPE_REF>: Set tf_qualifying_scope when substituting the scope. <case *_TYPE>: Pass tf_qualifying_scope to tsubst if it was set. * search.cc (lookup_member): Document default argument. gcc/testsuite/ChangeLog: * g++.dg/template/typename24.C: New test. * g++.dg/template/typename25.C: New test. * g++.dg/template/typename25a.C: New test. * g++.dg/template/typename26.C: New test.
Diffstat (limited to 'gcc/cp/pt.cc')
-rw-r--r--gcc/cp/pt.cc58
1 files changed, 33 insertions, 25 deletions
diff --git a/gcc/cp/pt.cc b/gcc/cp/pt.cc
index e89dbf4..d11d540 100644
--- a/gcc/cp/pt.cc
+++ b/gcc/cp/pt.cc
@@ -13919,8 +13919,7 @@ tsubst_aggr_type_1 (tree t,
{
if (TYPE_TEMPLATE_INFO (t) && uses_template_parms (t))
{
- tree argvec;
- tree r;
+ complain &= ~tf_qualifying_scope;
/* Figure out what arguments are appropriate for the
type we are trying to find. For example, given:
@@ -13931,18 +13930,14 @@ tsubst_aggr_type_1 (tree t,
and supposing that we are instantiating f<int, double>,
then our ARGS will be {int, double}, but, when looking up
S we only want {double}. */
- argvec = tsubst_template_args (TYPE_TI_ARGS (t), args,
- complain, in_decl);
+ tree argvec = tsubst_template_args (TYPE_TI_ARGS (t), args,
+ complain, in_decl);
if (argvec == error_mark_node)
- r = error_mark_node;
- else
- {
- r = lookup_template_class (t, argvec, in_decl, NULL_TREE,
- entering_scope, complain);
- r = cp_build_qualified_type (r, cp_type_quals (t), complain);
- }
+ return error_mark_node;
- return r;
+ tree r = lookup_template_class (t, argvec, in_decl, NULL_TREE,
+ entering_scope, complain);
+ return cp_build_qualified_type (r, cp_type_quals (t), complain);
}
else
/* This is not a template type, so there's nothing to do. */
@@ -15003,11 +14998,15 @@ tsubst_decl (tree t, tree args, tsubst_flags_t complain)
tree scope = USING_DECL_SCOPE (t);
if (PACK_EXPANSION_P (scope))
{
- scope = tsubst_pack_expansion (scope, args, complain, in_decl);
+ scope = tsubst_pack_expansion (scope, args,
+ complain | tf_qualifying_scope,
+ in_decl);
variadic_p = true;
}
else
- scope = tsubst_copy (scope, args, complain, in_decl);
+ scope = tsubst_copy (scope, args,
+ complain | tf_qualifying_scope,
+ in_decl);
tree name = DECL_NAME (t);
if (IDENTIFIER_CONV_OP_P (name)
@@ -15821,6 +15820,12 @@ tsubst (tree t, tree args, tsubst_flags_t complain, tree in_decl)
|| TREE_CODE (t) == TRANSLATION_UNIT_DECL)
return t;
+ tsubst_flags_t tst_ok_flag = (complain & tf_tst_ok);
+ complain &= ~tf_tst_ok;
+
+ tsubst_flags_t qualifying_scope_flag = (complain & tf_qualifying_scope);
+ complain &= ~tf_qualifying_scope;
+
if (DECL_P (t))
return tsubst_decl (t, args, complain);
@@ -15889,9 +15894,6 @@ tsubst (tree t, tree args, tsubst_flags_t complain, tree in_decl)
bool fndecl_type = (complain & tf_fndecl_type);
complain &= ~tf_fndecl_type;
- bool tst_ok = (complain & tf_tst_ok);
- complain &= ~tf_tst_ok;
-
if (type
&& code != TYPENAME_TYPE
&& code != TEMPLATE_TYPE_PARM
@@ -16428,7 +16430,9 @@ tsubst (tree t, tree args, tsubst_flags_t complain, tree in_decl)
tree ctx = TYPE_CONTEXT (t);
if (TREE_CODE (ctx) == TYPE_PACK_EXPANSION)
{
- ctx = tsubst_pack_expansion (ctx, args, complain, in_decl);
+ ctx = tsubst_pack_expansion (ctx, args,
+ complain | tf_qualifying_scope,
+ in_decl);
if (ctx == error_mark_node
|| TREE_VEC_LENGTH (ctx) > 1)
return error_mark_node;
@@ -16442,8 +16446,9 @@ tsubst (tree t, tree args, tsubst_flags_t complain, tree in_decl)
ctx = TREE_VEC_ELT (ctx, 0);
}
else
- ctx = tsubst_aggr_type (ctx, args, complain, in_decl,
- /*entering_scope=*/1);
+ ctx = tsubst_aggr_type (ctx, args,
+ complain | tf_qualifying_scope,
+ in_decl, /*entering_scope=*/1);
if (ctx == error_mark_node)
return error_mark_node;
@@ -16473,8 +16478,7 @@ tsubst (tree t, tree args, tsubst_flags_t complain, tree in_decl)
}
tsubst_flags_t tcomplain = complain | tf_keep_type_decl;
- if (tst_ok)
- tcomplain |= tf_tst_ok;
+ tcomplain |= tst_ok_flag | qualifying_scope_flag;
f = make_typename_type (ctx, f, typename_type, tcomplain);
if (f == error_mark_node)
return f;
@@ -16879,7 +16883,7 @@ tsubst_qualified_id (tree qualified_id, tree args,
scope = TREE_OPERAND (qualified_id, 0);
if (args)
{
- scope = tsubst (scope, args, complain, in_decl);
+ scope = tsubst (scope, args, complain | tf_qualifying_scope, in_decl);
expr = tsubst_copy (name, args, complain, in_decl);
}
else
@@ -17125,6 +17129,9 @@ tsubst_copy (tree t, tree args, tsubst_flags_t complain, tree in_decl)
if (t == NULL_TREE || t == error_mark_node || args == NULL_TREE)
return t;
+ tsubst_flags_t qualifying_scope_flag = (complain & tf_qualifying_scope);
+ complain &= ~tf_qualifying_scope;
+
if (tree d = maybe_dependent_member_ref (t, args, complain, in_decl))
return d;
@@ -17598,7 +17605,8 @@ tsubst_copy (tree t, tree args, tsubst_flags_t complain, tree in_decl)
case SCOPE_REF:
{
- tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
+ tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args,
+ complain | tf_qualifying_scope, in_decl);
tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
return build_qualified_name (/*type=*/NULL_TREE, op0, op1,
QUALIFIED_NAME_IS_TEMPLATE (t));
@@ -17713,7 +17721,7 @@ tsubst_copy (tree t, tree args, tsubst_flags_t complain, tree in_decl)
case TYPEOF_TYPE:
case DECLTYPE_TYPE:
case TYPE_DECL:
- return tsubst (t, args, complain, in_decl);
+ return tsubst (t, args, complain | qualifying_scope_flag, in_decl);
case USING_DECL:
t = DECL_NAME (t);