From c7ecdec646c81eaea36143589c9fac564a2b4941 Mon Sep 17 00:00:00 2001 From: Kirill Yukhin Date: Wed, 21 Aug 2013 08:34:56 +0000 Subject: [PATCH] sse.md (V16): Rename to... * config/i386/sse.md (V16): Rename to... (VMOVE): this. (mov): Update iterator name. (*mov_internal): Ditto. (push1): Ditto. (movmisalign): Ditto. From-SVN: r201895 --- gcc/ChangeLog | 9 +++++++++ gcc/config/i386/sse.md | 16 ++++++++-------- 2 files changed, 17 insertions(+), 8 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 77dd86cf9c8..b20b9fa4e51 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,12 @@ +2013-08-21 Kirill Yukhin + + * config/i386/sse.md (V16): Rename to... + (VMOVE): this. + (mov): Update iterator name. + (*mov_internal): Ditto. + (push1): Ditto. + (movmisalign): Ditto. + 2013-08-20 Jan Hubicka PR bootstrap/58186 diff --git a/gcc/config/i386/sse.md b/gcc/config/i386/sse.md index 0eaaf292ee2..cd0e5e512f1 100644 --- a/gcc/config/i386/sse.md +++ b/gcc/config/i386/sse.md @@ -96,7 +96,7 @@ ]) ;; All vector modes including V?TImode, used in move patterns. -(define_mode_iterator V16 +(define_mode_iterator VMOVE [(V32QI "TARGET_AVX") V16QI (V16HI "TARGET_AVX") V8HI (V8SI "TARGET_AVX") V4SI @@ -435,8 +435,8 @@ ;; This is essential for maintaining stable calling conventions. (define_expand "mov" - [(set (match_operand:V16 0 "nonimmediate_operand") - (match_operand:V16 1 "nonimmediate_operand"))] + [(set (match_operand:VMOVE 0 "nonimmediate_operand") + (match_operand:VMOVE 1 "nonimmediate_operand"))] "TARGET_SSE" { ix86_expand_vector_move (mode, operands); @@ -444,8 +444,8 @@ }) (define_insn "*mov_internal" - [(set (match_operand:V16 0 "nonimmediate_operand" "=x,x ,m") - (match_operand:V16 1 "nonimmediate_or_sse_const_operand" "C ,xm,x"))] + [(set (match_operand:VMOVE 0 "nonimmediate_operand" "=x,x ,m") + (match_operand:VMOVE 1 "nonimmediate_or_sse_const_operand" "C ,xm,x"))] "TARGET_SSE && (register_operand (operands[0], mode) || register_operand (operands[1], mode))" @@ -586,7 +586,7 @@ }) (define_expand "push1" - [(match_operand:V16 0 "register_operand")] + [(match_operand:VMOVE 0 "register_operand")] "TARGET_SSE" { ix86_expand_push (mode, operands[0]); @@ -594,8 +594,8 @@ }) (define_expand "movmisalign" - [(set (match_operand:V16 0 "nonimmediate_operand") - (match_operand:V16 1 "nonimmediate_operand"))] + [(set (match_operand:VMOVE 0 "nonimmediate_operand") + (match_operand:VMOVE 1 "nonimmediate_operand"))] "TARGET_SSE" { ix86_expand_vector_move_misalign (mode, operands); -- 2.30.2