re PR target/65914 (error: unrecognizable insn)
authorBill Schmidt <wschmidt@linux.vnet.ibm.com>
Mon, 22 Jun 2015 13:16:04 +0000 (13:16 +0000)
committerWilliam Schmidt <wschmidt@gcc.gnu.org>
Mon, 22 Jun 2015 13:16:04 +0000 (13:16 +0000)
[gcc]

2015-06-22  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>

PR target/65914
* config/rs6000/predicates.md (altivec_register_operand): Permit
virtual stack registers.
(vsx_register_operand): Likewise.
(vfloat_operand): Likewise.
(vint_operand): Likewise.
(vlogical_operand): Likewise.

[gcc/testsuite]

2015-06-22  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>

PR target/65914
* g++.dg/torture/pr65914.C:  New.

From-SVN: r224725

gcc/ChangeLog
gcc/config/rs6000/predicates.md
gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/torture/pr65914.C [new file with mode: 0644]

index 9dc3b9159e405cfc68de15e59abaed8a360ec9b1..9bfaa22f49b7c82c2a1decc3e3e4845487542a85 100644 (file)
@@ -1,3 +1,13 @@
+2015-06-22  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
+
+       PR target/65914
+       * config/rs6000/predicates.md (altivec_register_operand): Permit
+       virtual stack registers.
+       (vsx_register_operand): Likewise.
+       (vfloat_operand): Likewise.
+       (vint_operand): Likewise.
+       (vlogical_operand): Likewise.
+
 2015-06-22  Richard Biener  <rguenther@suse.de>
 
        * tree-vectorizer.h (_loop_vec_info): Add scalar_cost_vec
index fd293ab4f6e544af4a53b4808254d8fb32aab230..e2d836f68a20a9980f8a767d853d9be2831b6e13 100644 (file)
@@ -41,7 +41,7 @@
   if (!REG_P (op))
     return 0;
 
-  if (REGNO (op) > LAST_VIRTUAL_REGISTER)
+  if (REGNO (op) >= FIRST_PSEUDO_REGISTER)
     return 1;
 
   return ALTIVEC_REGNO_P (REGNO (op));
@@ -57,7 +57,7 @@
   if (!REG_P (op))
     return 0;
 
-  if (REGNO (op) > LAST_VIRTUAL_REGISTER)
+  if (REGNO (op) >= FIRST_PSEUDO_REGISTER)
     return 1;
 
   return VSX_REGNO_P (REGNO (op));
@@ -74,7 +74,7 @@
   if (!REG_P (op))
     return 0;
 
-  if (REGNO (op) > LAST_VIRTUAL_REGISTER)
+  if (REGNO (op) >= FIRST_PSEUDO_REGISTER)
     return 1;
 
   return VFLOAT_REGNO_P (REGNO (op));
@@ -91,7 +91,7 @@
   if (!REG_P (op))
     return 0;
 
-  if (REGNO (op) > LAST_VIRTUAL_REGISTER)
+  if (REGNO (op) >= FIRST_PSEUDO_REGISTER)
     return 1;
 
   return VINT_REGNO_P (REGNO (op));
   if (!REG_P (op))
     return 0;
 
-  if (REGNO (op) > LAST_VIRTUAL_REGISTER)
+  if (REGNO (op) >= FIRST_PSEUDO_REGISTER)
     return 1;
 
   return VLOGICAL_REGNO_P (REGNO (op));
index 06ab49726904616b90e5b2d13717adf27fc92938..faa73a5dccf19431b96838fa2ee0eb1f468ffe76 100644 (file)
@@ -1,3 +1,8 @@
+2015-06-22  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
+
+       PR target/65914
+       * g++.dg/torture/pr65914.C:  New.
+
 2015-06-22  Richard Biener  <rguenther@suse.de>
 
        * lib/c-torture.exp: Set LTO_TORTURE_OPTIONS conditional on
diff --git a/gcc/testsuite/g++.dg/torture/pr65914.C b/gcc/testsuite/g++.dg/torture/pr65914.C
new file mode 100644 (file)
index 0000000..fada262
--- /dev/null
@@ -0,0 +1,70 @@
+/* { dg-do compile } */
+/* { dg-additional-options "-std=c++14" } */
+
+enum expression_template_option { et_on };
+template <class, expression_template_option = et_on> class A;
+template <class, class, class, class = void, class = void> struct expression;
+template <class T> struct B { typedef const T &type; };
+template <class tag, class A1, class A2, class A3, class A4>
+struct B<expression<tag, A1, A2, A3, A4>> {
+  typedef expression<tag, A1, A2> type;
+};
+template <class tag, class Arg1, class Arg2>
+struct expression<tag, Arg1, Arg2> {
+  expression(Arg1 p1, const Arg2 &p2) : arg1(p1), arg2(p2) {}
+  typename B<Arg1>::type arg1;
+  typename B<Arg2>::type arg2;
+};
+template <class Backend> expression<int, int, A<Backend>> sin(A<Backend>) {
+  return expression<int, int, A<Backend>>(0, 0);
+}
+template <class tag, class A1, class A2, class A3, class A4>
+expression<int, int, expression<tag, A1, A2>>
+  asin(expression<tag, A1, A2, A3, A4> p1) {
+  return expression<int, int, expression<tag, A1, A2>>(0, p1);
+}
+template <class B, expression_template_option ET, class tag, class Arg1,
+         class Arg2, class Arg3, class Arg4>
+expression<int, A<B>, expression<tag, Arg1, Arg2>>
+  operator+(A<B, ET>, expression<tag, Arg1, Arg2, Arg3, Arg4> p2) {
+  return expression<int, A<B>, expression<tag, Arg1, Arg2>>(0, p2);
+}
+template <class tag, class Arg1, class Arg2, class Arg3, class Arg4, class tag2,
+         class Arg1b, class Arg2b, class Arg3b, class Arg4b>
+expression<int, expression<tag, Arg1, Arg2>, expression<tag2, Arg1b, Arg2b>>
+  operator*(expression<tag, Arg1, Arg2, Arg3, Arg4> p1,
+           expression<tag2, Arg1b, Arg2b, Arg3b, Arg4b> p2) {
+  return expression<int, expression<tag, Arg1, Arg2>,
+                   expression<tag2, Arg1b, Arg2b>>(p1, p2);
+}
+template <class B> expression<int, A<B>, A<B>> operator/(A<B>, A<B>) {
+  return expression<int, A<B>, A<B>>(0, 0);
+}
+template <class tag, class Arg1, class Arg2, class Arg3, class Arg4, class V>
+void operator/(expression<tag, Arg1, Arg2, Arg3, Arg4>, V);
+template <class, expression_template_option> class A {
+public:
+  A() {}
+  template <class V> A(V) {}
+};
+template <class T, class Policy> void jacobi_recurse(T, T, Policy) {
+  T a, b, c;
+  (a+asin(b/c) * sin(a)) / 0.1;
+}
+template <class T, class Policy> void jacobi_imp(T p1, Policy) {
+  T x;
+  jacobi_recurse(x, p1, 0);
+}
+template <class T, class U, class V, class Policy>
+void jacobi_elliptic(T, U, V, Policy) {
+  jacobi_imp(static_cast<T>(0), 0);
+}
+template <class U, class T, class Policy> void jacobi_sn(U, T, Policy) {
+  jacobi_elliptic(static_cast<T>(0), 0, 0, 0);
+}
+template <class U, class T> void jacobi_sn(U, T p2) { jacobi_sn(0, p2, 0); }
+template <class T> void test_extra(T) {
+  T d;
+  jacobi_sn(0, d);
+}
+void foo() { test_extra(A<int>()); }