Commit 8f905d69 by Alan Lawrence Committed by Alan Lawrence

vabs_intrinsic_2.c: New test.

gcc/testsuite/:

        * gcc.target/aarch64/vabs_intrinsic_2.c: New test.

From-SVN: r218530
parent 82e0c914
2014-12-09 Alan Lawrence <alan.lawrence@arm.com>
* config/aarch64/aarch64.md (absdi2): Remove scratch operand by
earlyclobbering result operand.
* config/aarch64/aarch64-builtins.c (aarch64_types_unop_qualifiers):
Remove final qualifier_internal.
(aarch64_fold_builtin): Stop folding abs builtins, except on floats.
2014-12-09 Wilco Dijkstra <wilco.dijkstra@arm.com> 2014-12-09 Wilco Dijkstra <wilco.dijkstra@arm.com>
* gcc/config/aarch64/aarch64-protos.h (tune-params): Add reasociation * gcc/config/aarch64/aarch64-protos.h (tune-params): Add reasociation
...@@ -128,11 +128,9 @@ typedef struct ...@@ -128,11 +128,9 @@ typedef struct
enum aarch64_type_qualifiers *qualifiers; enum aarch64_type_qualifiers *qualifiers;
} aarch64_simd_builtin_datum; } aarch64_simd_builtin_datum;
/* The qualifier_internal allows generation of a unary builtin from
a pattern with a third pseudo-operand such as a match_scratch. */
static enum aarch64_type_qualifiers static enum aarch64_type_qualifiers
aarch64_types_unop_qualifiers[SIMD_MAX_BUILTIN_ARGS] aarch64_types_unop_qualifiers[SIMD_MAX_BUILTIN_ARGS]
= { qualifier_none, qualifier_none, qualifier_internal }; = { qualifier_none, qualifier_none };
#define TYPES_UNOP (aarch64_types_unop_qualifiers) #define TYPES_UNOP (aarch64_types_unop_qualifiers)
static enum aarch64_type_qualifiers static enum aarch64_type_qualifiers
aarch64_types_unopu_qualifiers[SIMD_MAX_BUILTIN_ARGS] aarch64_types_unopu_qualifiers[SIMD_MAX_BUILTIN_ARGS]
...@@ -1282,7 +1280,7 @@ aarch64_fold_builtin (tree fndecl, int n_args ATTRIBUTE_UNUSED, tree *args, ...@@ -1282,7 +1280,7 @@ aarch64_fold_builtin (tree fndecl, int n_args ATTRIBUTE_UNUSED, tree *args,
switch (fcode) switch (fcode)
{ {
BUILTIN_VALLDI (UNOP, abs, 2) BUILTIN_VDQF (UNOP, abs, 2)
return fold_build1 (ABS_EXPR, type, args[0]); return fold_build1 (ABS_EXPR, type, args[0]);
break; break;
VAR1 (UNOP, floatv2si, 2, v2sf) VAR1 (UNOP, floatv2si, 2, v2sf)
......
...@@ -2154,9 +2154,8 @@ ...@@ -2154,9 +2154,8 @@
) )
(define_insn_and_split "absdi2" (define_insn_and_split "absdi2"
[(set (match_operand:DI 0 "register_operand" "=r,w") [(set (match_operand:DI 0 "register_operand" "=&r,w")
(abs:DI (match_operand:DI 1 "register_operand" "r,w"))) (abs:DI (match_operand:DI 1 "register_operand" "r,w")))]
(clobber (match_scratch:DI 2 "=&r,X"))]
"" ""
"@ "@
# #
...@@ -2166,7 +2165,7 @@ ...@@ -2166,7 +2165,7 @@
&& GP_REGNUM_P (REGNO (operands[1]))" && GP_REGNUM_P (REGNO (operands[1]))"
[(const_int 0)] [(const_int 0)]
{ {
emit_insn (gen_rtx_SET (VOIDmode, operands[2], emit_insn (gen_rtx_SET (VOIDmode, operands[0],
gen_rtx_XOR (DImode, gen_rtx_XOR (DImode,
gen_rtx_ASHIFTRT (DImode, gen_rtx_ASHIFTRT (DImode,
operands[1], operands[1],
...@@ -2175,7 +2174,7 @@ ...@@ -2175,7 +2174,7 @@
emit_insn (gen_rtx_SET (VOIDmode, emit_insn (gen_rtx_SET (VOIDmode,
operands[0], operands[0],
gen_rtx_MINUS (DImode, gen_rtx_MINUS (DImode,
operands[2], operands[0],
gen_rtx_ASHIFTRT (DImode, gen_rtx_ASHIFTRT (DImode,
operands[1], operands[1],
GEN_INT (63))))); GEN_INT (63)))));
......
2014-12-09 Alan Lawrence <alan.lawrence@arm.com>
* gcc.target/aarch64/vabs_intrinsic_2.c: New test.
2014-12-09 David Malcolm <dmalcolm@redhat.com> 2014-12-09 David Malcolm <dmalcolm@redhat.com>
PR jit/64166 PR jit/64166
......
/* { dg-do run } */
/* { dg-options "-O2" } */
#include <arm_neon.h>
extern void abort (void);
int
main (int argc, char **argv)
{
int8x8_t a = vabs_s8 (vdup_n_s8 (-128)); /* Should all be -128. */
uint8x8_t b = vcltz_s8 (a); /* Should all be true i.e. -1. */
if (vget_lane_u8 (b, 1))
return 0;
abort ();
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment