backport: re PR target/57623 (BEXTR intrinsic has memory operands switched around (fails to compile code))

Backported from mainline
	2013-06-27  Jakub Jelinek  <jakub@redhat.com>

	PR target/57623
	* config/i386/i386.md (bmi_bextr_<mode>): Swap predicates and
	constraints of operand 1 and 2.

	* gcc.target/i386/bmi-bextr-3.c: New test.

From-SVN: r210168
This commit is contained in:
Jakub Jelinek 2014-05-07 17:57:48 +02:00 committed by Jakub Jelinek
parent bc5874827e
commit 1b0399e74f
4 changed files with 40 additions and 2 deletions

View File

@ -3,6 +3,10 @@
Backported from mainline
2013-06-27 Jakub Jelinek <jakub@redhat.com>
PR target/57623
* config/i386/i386.md (bmi_bextr_<mode>): Swap predicates and
constraints of operand 1 and 2.
PR target/57623
* config/i386/i386.md (bmi2_bzhi_<mode>3): Swap AND arguments
to match RTL canonicalization. Swap predicates and

View File

@ -12077,8 +12077,8 @@
(define_insn "bmi_bextr_<mode>"
[(set (match_operand:SWI48 0 "register_operand" "=r")
(unspec:SWI48 [(match_operand:SWI48 1 "register_operand" "r")
(match_operand:SWI48 2 "nonimmediate_operand" "rm")]
(unspec:SWI48 [(match_operand:SWI48 1 "nonimmediate_operand" "rm")
(match_operand:SWI48 2 "register_operand" "r")]
UNSPEC_BEXTR))
(clobber (reg:CC FLAGS_REG))]
"TARGET_BMI"

View File

@ -3,6 +3,9 @@
Backported from mainline
2013-06-27 Jakub Jelinek <jakub@redhat.com>
PR target/57623
* gcc.target/i386/bmi-bextr-3.c: New test.
PR target/57623
* gcc.target/i386/bmi2-bzhi-1.c: New test.

View File

@ -0,0 +1,31 @@
/* PR target/57623 */
/* { dg-do assemble { target bmi } } */
/* { dg-options "-O2 -mbmi" } */
#include <x86intrin.h>
unsigned int
f1 (unsigned int x, unsigned int *y)
{
return __bextr_u32 (x, *y);
}
unsigned int
f2 (unsigned int *x, unsigned int y)
{
return __bextr_u32 (*x, y);
}
#ifdef __x86_64__
unsigned long long
f3 (unsigned long long x, unsigned long long *y)
{
return __bextr_u64 (x, *y);
}
unsigned long long
f4 (unsigned long long *x, unsigned long long y)
{
return __bextr_u64 (*x, y);
}
#endif