visium.md (type): Add trap.
authorEric Botcazou <ebotcazou@adacore.com>
Thu, 23 Feb 2017 23:04:00 +0000 (23:04 +0000)
committerEric Botcazou <ebotcazou@gcc.gnu.org>
Thu, 23 Feb 2017 23:04:00 +0000 (23:04 +0000)
* config/visium/visium.md (type): Add trap.
(b): New mode attribute.
(*btst): Rename into...
(*btst<mode>): ...this and adjust.
(*cbranchsi4_btst_insn): Rename into...
(*cbranch<mode>4_btst_insn): ...this and adjust.
(trap): New define_insn.

From-SVN: r245691

gcc/ChangeLog
gcc/config/visium/visium.md
gcc/testsuite/ChangeLog
gcc/testsuite/gcc.target/visium/bit_test.c
gcc/testsuite/gcc.target/visium/block_move.c

index ffb5e25..68cd88f 100644 (file)
@@ -1,3 +1,13 @@
+2017-02-23  Eric Botcazou  <ebotcazou@adacore.com>
+
+       * config/visium/visium.md (type): Add trap.
+       (b): New mode attribute.
+       (*btst): Rename into...
+       (*btst<mode>): ...this and adjust.
+       (*cbranchsi4_btst_insn): Rename into...
+       (*cbranch<mode>4_btst_insn): ...this and adjust.
+       (trap): New define_insn.
+
 2017-02-23  Jakub Jelinek  <jakub@redhat.com>
 
        PR tree-optimization/79389
index 87fa9b6..501e874 100644 (file)
 ;nop           No operation.
 ;multi         Multiple instructions which split.
 ;asm           User asm instructions.
+;trap          Trap instructions.
 
 (define_attr "type"
-"imm_reg,mem_reg,eam_reg,fp_reg,reg_mem,reg_eam,reg_fp,arith,arith2,logic,abs_branch,branch,bmi,call,ret,rfi,dsi,cmp,div,divd,mul,shiftdi,fdiv,fsqrt,ftoi,itof,fmove,fcmp,fp,nop,multi,asm" (const_string "logic"))
+"imm_reg,mem_reg,eam_reg,fp_reg,reg_mem,reg_eam,reg_fp,arith,arith2,logic,abs_branch,branch,bmi,call,ret,rfi,dsi,cmp,div,divd,mul,shiftdi,fdiv,fsqrt,ftoi,itof,fmove,fcmp,fp,nop,multi,asm,trap" (const_string "logic"))
 
 ; Those insns that occupy 4 bytes.
 (define_attr "single_insn" "no,yes"
 
 (define_mode_iterator QHI [QI HI])
 (define_mode_iterator I [QI HI SI])
+(define_mode_attr b [(QI "8") (HI "16") (SI "32")])
 (define_mode_attr s [(QI ".b") (HI ".w") (SI ".l")])
 
 ; This code iterator allows signed and unsigned widening multiplications
 
 ; BITS_BIG_ENDIAN is defined to 1 so operand #1 counts from the MSB.
 
-(define_insn "*btst"
+(define_insn "*btst<mode>"
   [(set (reg:CCC R_FLAGS)
-       (compare:CCC (zero_extract:SI
-                      (match_operand:SI 0 "register_operand" "r")
+       (compare:CCC (zero_extract:I
+                      (match_operand:I 0 "register_operand" "r")
                       (const_int 1)
                       (match_operand:QI 1 "const_shift_operand" "K"))
                     (const_int 0)))]
   "reload_completed"
-  "lsr.l   r0,%0,32-%1"
+  "lsr<s>   r0,%0,<b>-%1"
   [(set_attr "type" "logic")])
 
 ;;
 }
   [(set_attr "type" "cmp")])
 
-(define_insn_and_split "*cbranchsi4_btst_insn"
+(define_insn_and_split "*cbranch<mode>4_btst_insn"
   [(set (pc)
        (if_then_else (match_operator 0 "visium_equality_comparison_operator"
-                      [(zero_extract:SI
-                          (match_operand:SI 1 "register_operand" "r")
+                      [(zero_extract:I
+                          (match_operand:I 1 "register_operand" "r")
                           (const_int 1)
                           (match_operand:QI 2 "const_shift_operand" "K"))
                        (const_int 0)])
 ;;
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 ;;
+;; trap instructions
+;;
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+;;
+
+(define_insn "trap"
+  [(trap_if (const_int 1) (const_int 0))]
+  ""
+  "stop    0,r0"
+  [(set_attr "type" "trap")])
+
+;;
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+;;
 ;; Subprogram call instructions
 ;;
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
index 0bd9f06..96a0234 100644 (file)
@@ -1,3 +1,8 @@
+2017-02-23  Eric Botcazou  <ebotcazou@adacore.com>
+
+       * gcc.target/visium/bit_test.c: Accept any lsr form.
+       * gcc.target/visium/block_move.c: Tweak.
+
 2017-02-23  Dominik Vogt  <vogt@linux.vnet.ibm.com>
 
        PR 68749
index 2de9208..8fbb87e 100644 (file)
@@ -27,5 +27,5 @@ void foo4 (unsigned char c)
     bar ();
 }
 
-/* { dg-final { scan-assembler-times "lsr.l" 2 } } */
+/* { dg-final { scan-assembler-times "lsr" 2 } } */
 /* { dg-final { scan-assembler-times "cmp" 2 } } */
index d85c135..f66c261 100644 (file)
@@ -11,7 +11,7 @@ void foo (void)
   int dst[LEN], src[LEN];
   unsigned int i;
 
-  __builtin_memset (src, 0, LEN * sizeof (int));
+  __builtin_memset (src, 1, LEN * sizeof (int));
   __builtin_memcpy (dst, src, LEN * sizeof (int));
   if (__builtin_memcmp (dst, src, LEN * sizeof (int)) != 0)
     abort ();