public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r13-798] ipa: Check cst type when propagating controled uses info
@ 2022-05-27 11:06 Martin Jambor
  0 siblings, 0 replies; only message in thread
From: Martin Jambor @ 2022-05-27 11:06 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:f571596f8cd8fbad34305b4bec1a813620e0cbf0

commit r13-798-gf571596f8cd8fbad34305b4bec1a813620e0cbf0
Author: Martin Jambor <mjambor@suse.cz>
Date:   Fri May 27 13:05:40 2022 +0200

    ipa: Check cst type when propagating controled uses info
    
    PR 105639 shows that code with type-mismatches can trigger an assert
    after runnning into a branch that was inteded only for references to
    variables - as opposed to references to functions.  Fixed by moving
    the condition from the assert to the guarding if statement.
    
    gcc/ChangeLog:
    
    2022-05-25  Martin Jambor  <mjambor@suse.cz>
    
            PR ipa/105639
            * ipa-prop.cc (propagate_controlled_uses): Check type of the
            constant before adding a LOAD reference.
    
    gcc/testsuite/ChangeLog:
    
    2022-05-25  Martin Jambor  <mjambor@suse.cz>
    
            PR ipa/105639
            * gcc.dg/ipa/pr105639.c: New test.

Diff:
---
 gcc/ipa-prop.cc                     | 10 ++++------
 gcc/testsuite/gcc.dg/ipa/pr105639.c | 16 ++++++++++++++++
 2 files changed, 20 insertions(+), 6 deletions(-)

diff --git a/gcc/ipa-prop.cc b/gcc/ipa-prop.cc
index c6c745f84a0..afd9222b5a2 100644
--- a/gcc/ipa-prop.cc
+++ b/gcc/ipa-prop.cc
@@ -4187,14 +4187,13 @@ propagate_controlled_uses (struct cgraph_edge *cs)
 	{
 	  int d = ipa_get_controlled_uses (old_root_info, i);
 	  int c = rdesc->refcount;
+	  tree cst = ipa_get_jf_constant (jf);
 	  rdesc->refcount = combine_controlled_uses_counters (c, d);
 	  if (rdesc->refcount != IPA_UNDESCRIBED_USE
-	      && ipa_get_param_load_dereferenced (old_root_info, i))
+	      && ipa_get_param_load_dereferenced (old_root_info, i)
+	      && TREE_CODE (cst) == ADDR_EXPR
+	      && TREE_CODE (TREE_OPERAND (cst, 0)) == VAR_DECL)
 	    {
-	      tree cst = ipa_get_jf_constant (jf);
-	      gcc_checking_assert (TREE_CODE (cst) == ADDR_EXPR
-				   && (TREE_CODE (TREE_OPERAND (cst, 0))
-				       == VAR_DECL));
 	      symtab_node *n = symtab_node::get (TREE_OPERAND (cst, 0));
 	      new_root->create_reference (n, IPA_REF_LOAD, NULL);
 	      if (dump_file)
@@ -4204,7 +4203,6 @@ propagate_controlled_uses (struct cgraph_edge *cs)
 	    }
 	  if (rdesc->refcount == 0)
 	    {
-	      tree cst = ipa_get_jf_constant (jf);
 	      gcc_checking_assert (TREE_CODE (cst) == ADDR_EXPR
 				   && ((TREE_CODE (TREE_OPERAND (cst, 0))
 					== FUNCTION_DECL)
diff --git a/gcc/testsuite/gcc.dg/ipa/pr105639.c b/gcc/testsuite/gcc.dg/ipa/pr105639.c
new file mode 100644
index 00000000000..5534fe93fbf
--- /dev/null
+++ b/gcc/testsuite/gcc.dg/ipa/pr105639.c
@@ -0,0 +1,16 @@
+/* { dg-do compile } */
+/* { dg-options "-O -w" } */
+
+void typedef (*cb) (void);
+
+static void
+bar (cb *fp)
+{
+  (*fp) ();
+}
+
+void
+foo (void)
+{
+  bar (foo);
+}


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2022-05-27 11:06 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-27 11:06 [gcc r13-798] ipa: Check cst type when propagating controled uses info Martin Jambor

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).