* [PATCH] tree-optimization/107435 - ICE with recurrence vectorization
@ 2022-10-28 13:06 Richard Biener
0 siblings, 0 replies; only message in thread
From: Richard Biener @ 2022-10-28 13:06 UTC (permalink / raw)
To: gcc-patches
This implements the missed conversion from pointer to integer.
Bootstrapped and tested on x86_64-unknown-linux-gnu, pushed.
PR tree-optimization/107435
* tree-vect-loop.cc (vectorizable_recurr): Convert initial
value to vector component type.
* gcc.dg/torture/pr107435.c: New testcase.
---
gcc/testsuite/gcc.dg/torture/pr107435.c | 23 +++++++++++++++++++++++
gcc/tree-vect-loop.cc | 6 ++++++
2 files changed, 29 insertions(+)
create mode 100644 gcc/testsuite/gcc.dg/torture/pr107435.c
diff --git a/gcc/testsuite/gcc.dg/torture/pr107435.c b/gcc/testsuite/gcc.dg/torture/pr107435.c
new file mode 100644
index 00000000000..10128969191
--- /dev/null
+++ b/gcc/testsuite/gcc.dg/torture/pr107435.c
@@ -0,0 +1,23 @@
+/* { dg-do compile } */
+/* { dg-additional-options "-mavx2" { target x86_64-*-* i?86-*-* } } */
+
+struct qlist_head {
+ struct qlist_head *next;
+};
+void
+qlist_add (struct qlist_head *new, struct qlist_head *head)
+{
+ struct qlist_head *prev = head;
+ new->next = head->next;
+ prev->next = new;
+}
+struct {
+ struct qlist_head queue_link;
+} free_list, prealloc[64];
+void
+dbpf_open_cache_initialize()
+{
+ int i = 0;
+ for (; i < 64; i++)
+ qlist_add(&prealloc[i].queue_link, &free_list.queue_link);
+}
diff --git a/gcc/tree-vect-loop.cc b/gcc/tree-vect-loop.cc
index d5c2bff80be..aacbb12580c 100644
--- a/gcc/tree-vect-loop.cc
+++ b/gcc/tree-vect-loop.cc
@@ -8469,6 +8469,12 @@ vectorizable_recurr (loop_vec_info loop_vinfo, stmt_vec_info stmt_info,
edge pe = loop_preheader_edge (LOOP_VINFO_LOOP (loop_vinfo));
basic_block bb = gimple_bb (phi);
tree preheader = PHI_ARG_DEF_FROM_EDGE (phi, pe);
+ if (!useless_type_conversion_p (TREE_TYPE (vectype), TREE_TYPE (preheader)))
+ {
+ gimple_seq stmts = NULL;
+ preheader = gimple_convert (&stmts, TREE_TYPE (vectype), preheader);
+ gsi_insert_seq_on_edge_immediate (pe, stmts);
+ }
tree vec_init = build_vector_from_val (vectype, preheader);
vec_init = vect_init_vector (loop_vinfo, stmt_info, vec_init, vectype, NULL);
--
2.35.3
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2022-10-28 13:06 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-10-28 13:06 [PATCH] tree-optimization/107435 - ICE with recurrence vectorization Richard Biener
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).