public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [PATCH] Fix PR c++/66786 (ICE with nested lambdas in variable template)
@ 2016-02-08  5:19 Patrick Palka
  2016-02-15 14:43 ` Patrick Palka
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Patrick Palka @ 2016-02-08  5:19 UTC (permalink / raw)
  To: gcc-patches; +Cc: jason, Patrick Palka

Here, we are calling template_class_depth on a FIELD_DECL corresponding
to a lambda that is used inside variable template.  template_class_depth
however does not see that this FIELD_DECL is used inside a variable
template binding because its chain of DECL_CONTEXTs does not include the
corresponding VAR_DECL.  So template_class_depth returns the wrong
template nesting level which causes its callers to malfunction.  In
particular we strip a template argument level in
tsubst_copy [FIELD_DECL] when we shouldn't have.

This patch makes template_class_depth look at a lambda type's
LAMBDA_TYPE_EXTRA_SCOPE field instead of its TYPE_CONTEXT, so that it
can iterate into an enclosing variable template, if applicable.

Tested on x86_64-pc-linux gnu, no new regressions.  Also tested against
Boost.  Is this OK to commit?

gcc/cp/ChangeLog:

	PR c++/66786
	* pt.c (template_class_depth): Given a lambda type, iterate
	into its LAMBDA_TYPE_EXTRA_SCOPE field instead of its
	TYPE_CONTEXT.  Given a VAR_DECL, iterate into its
	CP_DECL_CONTEXT.

gcc/testsuite/ChangeLog:

	PR c++/66786
	* g++.dg/cpp1y/var-templ48.C: New test.
	* g++.dg/cpp1y/var-templ49.C: New test.
---
 gcc/cp/pt.c                              | 12 ++++++++----
 gcc/testsuite/g++.dg/cpp1y/var-templ48.C |  5 +++++
 gcc/testsuite/g++.dg/cpp1y/var-templ49.C |  9 +++++++++
 3 files changed, 22 insertions(+), 4 deletions(-)
 create mode 100644 gcc/testsuite/g++.dg/cpp1y/var-templ48.C
 create mode 100644 gcc/testsuite/g++.dg/cpp1y/var-templ49.C

diff --git a/gcc/cp/pt.c b/gcc/cp/pt.c
index 4d405cf..5c344c1 100644
--- a/gcc/cp/pt.c
+++ b/gcc/cp/pt.c
@@ -369,16 +369,20 @@ template_class_depth (tree type)
 {
   int depth;
 
-  for (depth = 0;
-       type && TREE_CODE (type) != NAMESPACE_DECL;
-       type = (TREE_CODE (type) == FUNCTION_DECL)
-	 ? CP_DECL_CONTEXT (type) : CP_TYPE_CONTEXT (type))
+  for (depth = 0; type && TREE_CODE (type) != NAMESPACE_DECL; )
     {
       tree tinfo = get_template_info (type);
 
       if (tinfo && PRIMARY_TEMPLATE_P (TI_TEMPLATE (tinfo))
 	  && uses_template_parms (INNERMOST_TEMPLATE_ARGS (TI_ARGS (tinfo))))
 	++depth;
+
+      if (VAR_OR_FUNCTION_DECL_P (type))
+	type = CP_DECL_CONTEXT (type);
+      else if (LAMBDA_TYPE_P (type))
+	type = LAMBDA_TYPE_EXTRA_SCOPE (type);
+      else
+	type = CP_TYPE_CONTEXT (type);
     }
 
   return depth;
diff --git a/gcc/testsuite/g++.dg/cpp1y/var-templ48.C b/gcc/testsuite/g++.dg/cpp1y/var-templ48.C
new file mode 100644
index 0000000..f0c7693
--- /dev/null
+++ b/gcc/testsuite/g++.dg/cpp1y/var-templ48.C
@@ -0,0 +1,5 @@
+// PR c++/66786
+// { dg-do compile { target c++14 } }
+
+template <typename... T> auto list = [](T... xs) { [=](auto f) { f(xs...); }; };
+int main() { list<int>(0); }
diff --git a/gcc/testsuite/g++.dg/cpp1y/var-templ49.C b/gcc/testsuite/g++.dg/cpp1y/var-templ49.C
new file mode 100644
index 0000000..cd3f230
--- /dev/null
+++ b/gcc/testsuite/g++.dg/cpp1y/var-templ49.C
@@ -0,0 +1,9 @@
+// PR c++/66786
+// { dg-do compile { target c++14 } }
+
+int f (int, bool);
+
+template <typename>
+auto list = [](auto... xs) { return [=](auto f, auto... ys) { return f(xs..., ys...); }; };
+
+const int &a = list<int>(0, true)(f);
-- 
2.7.1.257.g925a48d

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] Fix PR c++/66786 (ICE with nested lambdas in variable template)
  2016-02-08  5:19 [PATCH] Fix PR c++/66786 (ICE with nested lambdas in variable template) Patrick Palka
@ 2016-02-15 14:43 ` Patrick Palka
  2016-03-02 17:52   ` Patrick Palka
  2016-03-04 23:38 ` Jason Merrill
  2016-03-06  6:42 ` Jason Merrill
  2 siblings, 1 reply; 7+ messages in thread
From: Patrick Palka @ 2016-02-15 14:43 UTC (permalink / raw)
  To: GCC Patches; +Cc: Jason Merrill, Patrick Palka

On Mon, Feb 8, 2016 at 12:19 AM, Patrick Palka <patrick@parcs.ath.cx> wrote:
> Here, we are calling template_class_depth on a FIELD_DECL corresponding
> to a lambda that is used inside variable template.  template_class_depth
> however does not see that this FIELD_DECL is used inside a variable
> template binding because its chain of DECL_CONTEXTs does not include the
> corresponding VAR_DECL.  So template_class_depth returns the wrong
> template nesting level which causes its callers to malfunction.  In
> particular we strip a template argument level in
> tsubst_copy [FIELD_DECL] when we shouldn't have.
>
> This patch makes template_class_depth look at a lambda type's
> LAMBDA_TYPE_EXTRA_SCOPE field instead of its TYPE_CONTEXT, so that it
> can iterate into an enclosing variable template, if applicable.
>
> Tested on x86_64-pc-linux gnu, no new regressions.  Also tested against
> Boost.  Is this OK to commit?
>
> gcc/cp/ChangeLog:
>
>         PR c++/66786
>         * pt.c (template_class_depth): Given a lambda type, iterate
>         into its LAMBDA_TYPE_EXTRA_SCOPE field instead of its
>         TYPE_CONTEXT.  Given a VAR_DECL, iterate into its
>         CP_DECL_CONTEXT.
>
> gcc/testsuite/ChangeLog:
>
>         PR c++/66786
>         * g++.dg/cpp1y/var-templ48.C: New test.
>         * g++.dg/cpp1y/var-templ49.C: New test.
> ---
>  gcc/cp/pt.c                              | 12 ++++++++----
>  gcc/testsuite/g++.dg/cpp1y/var-templ48.C |  5 +++++
>  gcc/testsuite/g++.dg/cpp1y/var-templ49.C |  9 +++++++++
>  3 files changed, 22 insertions(+), 4 deletions(-)
>  create mode 100644 gcc/testsuite/g++.dg/cpp1y/var-templ48.C
>  create mode 100644 gcc/testsuite/g++.dg/cpp1y/var-templ49.C
>
> diff --git a/gcc/cp/pt.c b/gcc/cp/pt.c
> index 4d405cf..5c344c1 100644
> --- a/gcc/cp/pt.c
> +++ b/gcc/cp/pt.c
> @@ -369,16 +369,20 @@ template_class_depth (tree type)
>  {
>    int depth;
>
> -  for (depth = 0;
> -       type && TREE_CODE (type) != NAMESPACE_DECL;
> -       type = (TREE_CODE (type) == FUNCTION_DECL)
> -        ? CP_DECL_CONTEXT (type) : CP_TYPE_CONTEXT (type))
> +  for (depth = 0; type && TREE_CODE (type) != NAMESPACE_DECL; )
>      {
>        tree tinfo = get_template_info (type);
>
>        if (tinfo && PRIMARY_TEMPLATE_P (TI_TEMPLATE (tinfo))
>           && uses_template_parms (INNERMOST_TEMPLATE_ARGS (TI_ARGS (tinfo))))
>         ++depth;
> +
> +      if (VAR_OR_FUNCTION_DECL_P (type))
> +       type = CP_DECL_CONTEXT (type);
> +      else if (LAMBDA_TYPE_P (type))
> +       type = LAMBDA_TYPE_EXTRA_SCOPE (type);
> +      else
> +       type = CP_TYPE_CONTEXT (type);
>      }
>
>    return depth;
> diff --git a/gcc/testsuite/g++.dg/cpp1y/var-templ48.C b/gcc/testsuite/g++.dg/cpp1y/var-templ48.C
> new file mode 100644
> index 0000000..f0c7693
> --- /dev/null
> +++ b/gcc/testsuite/g++.dg/cpp1y/var-templ48.C
> @@ -0,0 +1,5 @@
> +// PR c++/66786
> +// { dg-do compile { target c++14 } }
> +
> +template <typename... T> auto list = [](T... xs) { [=](auto f) { f(xs...); }; };
> +int main() { list<int>(0); }
> diff --git a/gcc/testsuite/g++.dg/cpp1y/var-templ49.C b/gcc/testsuite/g++.dg/cpp1y/var-templ49.C
> new file mode 100644
> index 0000000..cd3f230
> --- /dev/null
> +++ b/gcc/testsuite/g++.dg/cpp1y/var-templ49.C
> @@ -0,0 +1,9 @@
> +// PR c++/66786
> +// { dg-do compile { target c++14 } }
> +
> +int f (int, bool);
> +
> +template <typename>
> +auto list = [](auto... xs) { return [=](auto f, auto... ys) { return f(xs..., ys...); }; };
> +
> +const int &a = list<int>(0, true)(f);
> --
> 2.7.1.257.g925a48d
>

Ping.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] Fix PR c++/66786 (ICE with nested lambdas in variable template)
  2016-02-15 14:43 ` Patrick Palka
@ 2016-03-02 17:52   ` Patrick Palka
  0 siblings, 0 replies; 7+ messages in thread
From: Patrick Palka @ 2016-03-02 17:52 UTC (permalink / raw)
  To: GCC Patches; +Cc: Jason Merrill, Patrick Palka

On Mon, Feb 15, 2016 at 9:42 AM, Patrick Palka <patrick@parcs.ath.cx> wrote:
> On Mon, Feb 8, 2016 at 12:19 AM, Patrick Palka <patrick@parcs.ath.cx> wrote:
>> Here, we are calling template_class_depth on a FIELD_DECL corresponding
>> to a lambda that is used inside variable template.  template_class_depth
>> however does not see that this FIELD_DECL is used inside a variable
>> template binding because its chain of DECL_CONTEXTs does not include the
>> corresponding VAR_DECL.  So template_class_depth returns the wrong
>> template nesting level which causes its callers to malfunction.  In
>> particular we strip a template argument level in
>> tsubst_copy [FIELD_DECL] when we shouldn't have.
>>
>> This patch makes template_class_depth look at a lambda type's
>> LAMBDA_TYPE_EXTRA_SCOPE field instead of its TYPE_CONTEXT, so that it
>> can iterate into an enclosing variable template, if applicable.
>>
>> Tested on x86_64-pc-linux gnu, no new regressions.  Also tested against
>> Boost.  Is this OK to commit?
>>
>> gcc/cp/ChangeLog:
>>
>>         PR c++/66786
>>         * pt.c (template_class_depth): Given a lambda type, iterate
>>         into its LAMBDA_TYPE_EXTRA_SCOPE field instead of its
>>         TYPE_CONTEXT.  Given a VAR_DECL, iterate into its
>>         CP_DECL_CONTEXT.
>>
>> gcc/testsuite/ChangeLog:
>>
>>         PR c++/66786
>>         * g++.dg/cpp1y/var-templ48.C: New test.
>>         * g++.dg/cpp1y/var-templ49.C: New test.
>> ---
>>  gcc/cp/pt.c                              | 12 ++++++++----
>>  gcc/testsuite/g++.dg/cpp1y/var-templ48.C |  5 +++++
>>  gcc/testsuite/g++.dg/cpp1y/var-templ49.C |  9 +++++++++
>>  3 files changed, 22 insertions(+), 4 deletions(-)
>>  create mode 100644 gcc/testsuite/g++.dg/cpp1y/var-templ48.C
>>  create mode 100644 gcc/testsuite/g++.dg/cpp1y/var-templ49.C
>>
>> diff --git a/gcc/cp/pt.c b/gcc/cp/pt.c
>> index 4d405cf..5c344c1 100644
>> --- a/gcc/cp/pt.c
>> +++ b/gcc/cp/pt.c
>> @@ -369,16 +369,20 @@ template_class_depth (tree type)
>>  {
>>    int depth;
>>
>> -  for (depth = 0;
>> -       type && TREE_CODE (type) != NAMESPACE_DECL;
>> -       type = (TREE_CODE (type) == FUNCTION_DECL)
>> -        ? CP_DECL_CONTEXT (type) : CP_TYPE_CONTEXT (type))
>> +  for (depth = 0; type && TREE_CODE (type) != NAMESPACE_DECL; )
>>      {
>>        tree tinfo = get_template_info (type);
>>
>>        if (tinfo && PRIMARY_TEMPLATE_P (TI_TEMPLATE (tinfo))
>>           && uses_template_parms (INNERMOST_TEMPLATE_ARGS (TI_ARGS (tinfo))))
>>         ++depth;
>> +
>> +      if (VAR_OR_FUNCTION_DECL_P (type))
>> +       type = CP_DECL_CONTEXT (type);
>> +      else if (LAMBDA_TYPE_P (type))
>> +       type = LAMBDA_TYPE_EXTRA_SCOPE (type);
>> +      else
>> +       type = CP_TYPE_CONTEXT (type);
>>      }
>>
>>    return depth;
>> diff --git a/gcc/testsuite/g++.dg/cpp1y/var-templ48.C b/gcc/testsuite/g++.dg/cpp1y/var-templ48.C
>> new file mode 100644
>> index 0000000..f0c7693
>> --- /dev/null
>> +++ b/gcc/testsuite/g++.dg/cpp1y/var-templ48.C
>> @@ -0,0 +1,5 @@
>> +// PR c++/66786
>> +// { dg-do compile { target c++14 } }
>> +
>> +template <typename... T> auto list = [](T... xs) { [=](auto f) { f(xs...); }; };
>> +int main() { list<int>(0); }
>> diff --git a/gcc/testsuite/g++.dg/cpp1y/var-templ49.C b/gcc/testsuite/g++.dg/cpp1y/var-templ49.C
>> new file mode 100644
>> index 0000000..cd3f230
>> --- /dev/null
>> +++ b/gcc/testsuite/g++.dg/cpp1y/var-templ49.C
>> @@ -0,0 +1,9 @@
>> +// PR c++/66786
>> +// { dg-do compile { target c++14 } }
>> +
>> +int f (int, bool);
>> +
>> +template <typename>
>> +auto list = [](auto... xs) { return [=](auto f, auto... ys) { return f(xs..., ys...); }; };
>> +
>> +const int &a = list<int>(0, true)(f);
>> --
>> 2.7.1.257.g925a48d
>>
>
> Ping.

Ping

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] Fix PR c++/66786 (ICE with nested lambdas in variable template)
  2016-02-08  5:19 [PATCH] Fix PR c++/66786 (ICE with nested lambdas in variable template) Patrick Palka
  2016-02-15 14:43 ` Patrick Palka
@ 2016-03-04 23:38 ` Jason Merrill
  2016-03-06  6:42 ` Jason Merrill
  2 siblings, 0 replies; 7+ messages in thread
From: Jason Merrill @ 2016-03-04 23:38 UTC (permalink / raw)
  To: Patrick Palka, gcc-patches

OK.

Jason

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] Fix PR c++/66786 (ICE with nested lambdas in variable template)
  2016-02-08  5:19 [PATCH] Fix PR c++/66786 (ICE with nested lambdas in variable template) Patrick Palka
  2016-02-15 14:43 ` Patrick Palka
  2016-03-04 23:38 ` Jason Merrill
@ 2016-03-06  6:42 ` Jason Merrill
  2016-03-06 14:30   ` Patrick Palka
  2 siblings, 1 reply; 7+ messages in thread
From: Jason Merrill @ 2016-03-06  6:42 UTC (permalink / raw)
  To: Patrick Palka, gcc-patches

On 02/08/2016 12:19 AM, Patrick Palka wrote:
> Here, we are calling template_class_depth on a FIELD_DECL corresponding
> to a lambda that is used inside variable template.  template_class_depth
> however does not see that this FIELD_DECL is used inside a variable
> template binding because its chain of DECL_CONTEXTs does not include the
> corresponding VAR_DECL.  So template_class_depth returns the wrong
> template nesting level which causes its callers to malfunction.  In
> particular we strip a template argument level in
> tsubst_copy [FIELD_DECL] when we shouldn't have.
>
> This patch makes template_class_depth look at a lambda type's
> LAMBDA_TYPE_EXTRA_SCOPE field instead of its TYPE_CONTEXT, so that it
> can iterate into an enclosing variable template, if applicable.
>
> Tested on x86_64-pc-linux gnu, no new regressions.  Also tested against
> Boost.  Is this OK to commit?

This is breaking several lambda testcases with -fconcepts on; 
LAMBDA_TYPE_EXTRA_SCOPE can also be a FIELD_DECL or PARM_DECL.  Let's 
just check DECL_P.

Jason

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] Fix PR c++/66786 (ICE with nested lambdas in variable template)
  2016-03-06  6:42 ` Jason Merrill
@ 2016-03-06 14:30   ` Patrick Palka
  2016-03-07 14:08     ` Jason Merrill
  0 siblings, 1 reply; 7+ messages in thread
From: Patrick Palka @ 2016-03-06 14:30 UTC (permalink / raw)
  To: Jason Merrill; +Cc: GCC Patches

On Sun, Mar 6, 2016 at 1:42 AM, Jason Merrill <jason@redhat.com> wrote:
> On 02/08/2016 12:19 AM, Patrick Palka wrote:
>>
>> Here, we are calling template_class_depth on a FIELD_DECL corresponding
>> to a lambda that is used inside variable template.  template_class_depth
>> however does not see that this FIELD_DECL is used inside a variable
>> template binding because its chain of DECL_CONTEXTs does not include the
>> corresponding VAR_DECL.  So template_class_depth returns the wrong
>> template nesting level which causes its callers to malfunction.  In
>> particular we strip a template argument level in
>> tsubst_copy [FIELD_DECL] when we shouldn't have.
>>
>> This patch makes template_class_depth look at a lambda type's
>> LAMBDA_TYPE_EXTRA_SCOPE field instead of its TYPE_CONTEXT, so that it
>> can iterate into an enclosing variable template, if applicable.
>>
>> Tested on x86_64-pc-linux gnu, no new regressions.  Also tested against
>> Boost.  Is this OK to commit?
>
>
> This is breaking several lambda testcases with -fconcepts on;
> LAMBDA_TYPE_EXTRA_SCOPE can also be a FIELD_DECL or PARM_DECL.  Let's just
> check DECL_P.

Sorry about that.

In the case of LAMBDA_TYPE_EXTRA_SCOPE being a PARM_DECL, could there
be a chance that this PARM_DECL has a non-null DECL_LANG_SPECIFIC? If
so it looks like we could still later ICE in get_template_info (called
from template_class_depth) when we try to get at its
DECL_TEMPLATE_INFO, an accessor that cannot be used on PARM_DECLs.  So
I wonder if maybe get_template_info() should also be adjusted to
handle the case of being given a PARM_DECL which may have a non-null
DECL_LANG_SPECIFIC:

diff --git a/gcc/cp/pt.c b/gcc/cp/pt.c
index 823e2f0..f68b1f6 100644
--- a/gcc/cp/pt.c
+++ b/gcc/cp/pt.c
@@ -330,7 +330,8 @@ get_template_info (const_tree t)
   if (!t || t == error_mark_node)
     return NULL;

-  if (TREE_CODE (t) == NAMESPACE_DECL)
+  if (TREE_CODE (t) == NAMESPACE_DECL
+      || TREE_CODE (t) == PARM_DECL)
     return NULL;

   if (DECL_P (t) && DECL_LANG_SPECIFIC (t))
@@ -378,7 +379,7 @@ template_class_depth (tree type)
          && uses_template_parms (INNERMOST_TEMPLATE_ARGS (TI_ARGS (tinfo))))
        ++depth;

-      if (VAR_OR_FUNCTION_DECL_P (type))
+      if (DECL_P (type))
        type = CP_DECL_CONTEXT (type);
       else if (LAMBDA_TYPE_P (type))
        type = LAMBDA_TYPE_EXTRA_SCOPE (type);

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] Fix PR c++/66786 (ICE with nested lambdas in variable template)
  2016-03-06 14:30   ` Patrick Palka
@ 2016-03-07 14:08     ` Jason Merrill
  0 siblings, 0 replies; 7+ messages in thread
From: Jason Merrill @ 2016-03-07 14:08 UTC (permalink / raw)
  To: Patrick Palka; +Cc: GCC Patches

On 03/06/2016 09:30 AM, Patrick Palka wrote:
> On Sun, Mar 6, 2016 at 1:42 AM, Jason Merrill <jason@redhat.com> wrote:
>> On 02/08/2016 12:19 AM, Patrick Palka wrote:
>>>
>>> Here, we are calling template_class_depth on a FIELD_DECL corresponding
>>> to a lambda that is used inside variable template.  template_class_depth
>>> however does not see that this FIELD_DECL is used inside a variable
>>> template binding because its chain of DECL_CONTEXTs does not include the
>>> corresponding VAR_DECL.  So template_class_depth returns the wrong
>>> template nesting level which causes its callers to malfunction.  In
>>> particular we strip a template argument level in
>>> tsubst_copy [FIELD_DECL] when we shouldn't have.
>>>
>>> This patch makes template_class_depth look at a lambda type's
>>> LAMBDA_TYPE_EXTRA_SCOPE field instead of its TYPE_CONTEXT, so that it
>>> can iterate into an enclosing variable template, if applicable.
>>>
>>> Tested on x86_64-pc-linux gnu, no new regressions.  Also tested against
>>> Boost.  Is this OK to commit?
>>
>>
>> This is breaking several lambda testcases with -fconcepts on;
>> LAMBDA_TYPE_EXTRA_SCOPE can also be a FIELD_DECL or PARM_DECL.  Let's just
>> check DECL_P.
>
> Sorry about that.
>
> In the case of LAMBDA_TYPE_EXTRA_SCOPE being a PARM_DECL, could there
> be a chance that this PARM_DECL has a non-null DECL_LANG_SPECIFIC? If
> so it looks like we could still later ICE in get_template_info (called
> from template_class_depth) when we try to get at its
> DECL_TEMPLATE_INFO, an accessor that cannot be used on PARM_DECLs.  So
> I wonder if maybe get_template_info() should also be adjusted to
> handle the case of being given a PARM_DECL which may have a non-null
> DECL_LANG_SPECIFIC:

Looks good.

Jason


^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2016-03-07 14:08 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-02-08  5:19 [PATCH] Fix PR c++/66786 (ICE with nested lambdas in variable template) Patrick Palka
2016-02-15 14:43 ` Patrick Palka
2016-03-02 17:52   ` Patrick Palka
2016-03-04 23:38 ` Jason Merrill
2016-03-06  6:42 ` Jason Merrill
2016-03-06 14:30   ` Patrick Palka
2016-03-07 14:08     ` Jason Merrill

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).