summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoruros <uros@138bc75d-0d04-0410-961f-82ee72b054a4>2013-05-03 12:03:29 +0000
committeruros <uros@138bc75d-0d04-0410-961f-82ee72b054a4>2013-05-03 12:03:29 +0000
commit65c52515d9ef4f7425921a7acc7733bea43f286b (patch)
treef73cb1ece280fa9a14c16ee845be2fc27666ad2d
parent058e95717a406a82caa3da1f29db33091a540761 (diff)
downloadgcc-65c52515d9ef4f7425921a7acc7733bea43f286b.tar.gz
* config/i386/i386.md (isa): Add x64_sse4_noavx and x64_avx members.
(enabled): Handle new members. * config/i386/sse.md (*vec_concatv2si): Merge from *vec_concatv2si_sse2 and vec_concatv2si_sse. (vec_concatv2di): Merge with *vec_concatv2di_rex64. testsuite/ChangeLog: * gcc.target/i386/sse2-init-v2di-2.c: Update scan assembler string. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@198578 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/ChangeLog19
-rw-r--r--gcc/config/i386/i386.md8
-rw-r--r--gcc/config/i386/sse.md77
-rw-r--r--gcc/testsuite/ChangeLog4
-rw-r--r--gcc/testsuite/gcc.target/i386/sse2-init-v2di-2.c2
5 files changed, 45 insertions, 65 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 5a3de458d05..2b906ebd785 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,11 @@
+2013-05-03 Uros Bizjak <ubizjak@gmail.com>
+
+ * config/i386/i386.md (isa): Add x64_sse4_noavx and x64_avx members.
+ (enabled): Handle new members.
+ * config/i386/sse.md (*vec_concatv2si): Merge from
+ *vec_concatv2si_sse2 and vec_concatv2si_sse.
+ (vec_concatv2di): Merge with *vec_concatv2di_rex64.
+
2013-05-03 Joern Rennecke <joern.rennecke@embecosm.com>
PR tree-optimization/57027
@@ -80,8 +88,7 @@
* graphds.c (new_graph): Initialize obstack and allocate
vertices from it.
(add_edge): Allocate edge from the obstack.
- (free_graph): Free the obstack instead of all edges and
- vertices.
+ (free_graph): Free the obstack instead of all edges and vertices.
2013-05-02 Teresa Johnson <tejohnson@google.com>
@@ -321,8 +328,7 @@
2013-04-30 Richard Biener <rguenther@suse.de>
PR middle-end/57122
- * cfghooks.c (split_edge): Properly check for the loop
- latch edge.
+ * cfghooks.c (split_edge): Properly check for the loop latch edge.
2013-04-30 Richard Biener <rguenther@suse.de>
@@ -333,7 +339,6 @@
PR rtl-optimization/56957
PR rtl-optimization/57105
-
* sel-sched.c (move_op_orig_expr_found): Remove insn_emitted
variable. Use just INSN_UID for determining whether an insn
should be only disconnected from the insn stream.
@@ -1151,7 +1156,7 @@
2013-04-25 Marek Polacek <polacek@redhat.com>
PR tree-optimization/57066
- * builtins.c (fold_builtin_logb): Return +Inf for -Inf.
+ * builtins.c (fold_builtin_logb): Return +Inf for -Inf.
2013-04-25 James Greenhalgh <jame.greenhalgh@arm.com>
@@ -1189,7 +1194,7 @@
(*ngcsi_uxtw): New pattern.
2013-04-25 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
- Julian Brown <julian@codesourcery.com>
+ Julian Brown <julian@codesourcery.com>
* config/arm/arm.c (neon_builtin_type_mode): Add T_V4HF.
(TB_DREG): Add T_V4HF.
diff --git a/gcc/config/i386/i386.md b/gcc/config/i386/i386.md
index d8add681ffe..d0241db6bcf 100644
--- a/gcc/config/i386/i386.md
+++ b/gcc/config/i386/i386.md
@@ -658,12 +658,16 @@
(define_attr "movu" "0,1" (const_string "0"))
;; Used to control the "enabled" attribute on a per-instruction basis.
-(define_attr "isa" "base,x64,nox64,sse2,sse2_noavx,sse3,sse4,sse4_noavx,
- noavx,avx,avx2,noavx2,bmi2,fma4,fma"
+(define_attr "isa" "base,x64,x64_sse4_noavx,x64_avx,nox64,sse2,sse2_noavx,
+ sse3,sse4,sse4_noavx,avx,noavx,avx2,noavx2,bmi2,fma4,fma"
(const_string "base"))
(define_attr "enabled" ""
(cond [(eq_attr "isa" "x64") (symbol_ref "TARGET_64BIT")
+ (eq_attr "isa" "x64_sse4_noavx")
+ (symbol_ref "TARGET_64BIT && TARGET_SSE4_1 && !TARGET_AVX")
+ (eq_attr "isa" "x64_avx")
+ (symbol_ref "TARGET_64BIT && TARGET_AVX")
(eq_attr "isa" "nox64") (symbol_ref "!TARGET_64BIT")
(eq_attr "isa" "sse2") (symbol_ref "TARGET_SSE2")
(eq_attr "isa" "sse2_noavx")
diff --git a/gcc/config/i386/sse.md b/gcc/config/i386/sse.md
index 354d4c909a7..ffd6be07dd8 100644
--- a/gcc/config/i386/sse.md
+++ b/gcc/config/i386/sse.md
@@ -7505,33 +7505,23 @@
;; ??? In theory we can match memory for the MMX alternative, but allowing
;; nonimmediate_operand for operand 2 and *not* allowing memory for the SSE
;; alternatives pretty much forces the MMX alternative to be chosen.
-(define_insn "*vec_concatv2si_sse2"
- [(set (match_operand:V2SI 0 "register_operand" "=x,x ,*y,*y")
+(define_insn "*vec_concatv2si"
+ [(set (match_operand:V2SI 0 "register_operand" "=x,x ,*y,x,x,*y,*y")
(vec_concat:V2SI
- (match_operand:SI 1 "nonimmediate_operand" " 0,rm, 0,rm")
- (match_operand:SI 2 "reg_or_0_operand" " x,C ,*y, C")))]
- "TARGET_SSE2"
+ (match_operand:SI 1 "nonimmediate_operand" " 0,rm,rm,0,m, 0,*rm")
+ (match_operand:SI 2 "reg_or_0_operand" " x,C ,C, x,C,*y,C")))]
+ "TARGET_SSE && !TARGET_SSE4_1"
"@
punpckldq\t{%2, %0|%0, %2}
movd\t{%1, %0|%0, %1}
- punpckldq\t{%2, %0|%0, %2}
- movd\t{%1, %0|%0, %1}"
- [(set_attr "type" "sselog,ssemov,mmxcvt,mmxmov")
- (set_attr "mode" "TI,TI,DI,DI")])
-
-(define_insn "*vec_concatv2si_sse"
- [(set (match_operand:V2SI 0 "register_operand" "=x,x,*y,*y")
- (vec_concat:V2SI
- (match_operand:SI 1 "nonimmediate_operand" " 0,m, 0,*rm")
- (match_operand:SI 2 "reg_or_0_operand" " x,C,*y,C")))]
- "TARGET_SSE"
- "@
+ movd\t{%1, %0|%0, %1}
unpcklps\t{%2, %0|%0, %2}
movss\t{%1, %0|%0, %1}
punpckldq\t{%2, %0|%0, %2}
movd\t{%1, %0|%0, %1}"
- [(set_attr "type" "sselog,ssemov,mmxcvt,mmxmov")
- (set_attr "mode" "V4SF,V4SF,DI,DI")])
+ [(set_attr "isa" "sse2,sse2,sse2,*,*,*,*")
+ (set_attr "type" "sselog,ssemov,mmxmov,sselog,ssemov,mmxcvt,mmxmov")
+ (set_attr "mode" "TI,TI,DI,V4SF,SF,DI,DI")])
(define_insn "*vec_concatv4si"
[(set (match_operand:V4SI 0 "register_operand" "=x,x,x,x,x")
@@ -7551,60 +7541,37 @@
(set_attr "mode" "TI,TI,V4SF,V2SF,V2SF")])
;; movd instead of movq is required to handle broken assemblers.
-(define_insn "*vec_concatv2di_rex64"
+(define_insn "vec_concatv2di"
[(set (match_operand:V2DI 0 "register_operand"
- "=x,x ,x ,Yi,!x,x,x,x,x")
+ "=x,x ,Yi,x ,!x,x,x,x,x,x")
(vec_concat:V2DI
(match_operand:DI 1 "nonimmediate_operand"
- " 0,x ,xm,r ,*y,0,x,0,x")
+ " 0,x ,r ,xm,*y,0,x,0,0,x")
(match_operand:DI 2 "vector_move_operand"
- "rm,rm,C ,C ,C ,x,x,m,m")))]
- "TARGET_64BIT"
+ "rm,rm,C ,C ,C ,x,x,x,m,m")))]
+ "TARGET_SSE"
"@
pinsrq\t{$1, %2, %0|%0, %2, 1}
vpinsrq\t{$1, %2, %1, %0|%0, %1, %2, 1}
- %vmovq\t{%1, %0|%0, %1}
%vmovd\t{%1, %0|%0, %1}
+ %vmovq\t{%1, %0|%0, %1}
movq2dq\t{%1, %0|%0, %1}
punpcklqdq\t{%2, %0|%0, %2}
vpunpcklqdq\t{%2, %1, %0|%0, %1, %2}
+ movlhps\t{%2, %0|%0, %2}
movhps\t{%2, %0|%0, %2}
vmovhps\t{%2, %1, %0|%0, %1, %2}"
- [(set_attr "isa" "sse4_noavx,avx,*,*,*,noavx,avx,noavx,avx")
+ [(set_attr "isa" "x64_sse4_noavx,x64_avx,x64,sse2,sse2,sse2_noavx,avx,noavx,noavx,avx")
(set (attr "type")
(if_then_else
(eq_attr "alternative" "0,1,5,6")
(const_string "sselog")
(const_string "ssemov")))
- (set (attr "prefix_rex")
- (if_then_else
- (and (eq_attr "alternative" "0,3")
- (not (match_test "TARGET_AVX")))
- (const_string "1")
- (const_string "*")))
- (set_attr "prefix_extra" "1,1,*,*,*,*,*,*,*")
- (set_attr "length_immediate" "1,1,*,*,*,*,*,*,*")
- (set_attr "prefix" "orig,vex,maybe_vex,maybe_vex,orig,orig,vex,orig,vex")
- (set_attr "mode" "TI,TI,TI,TI,TI,TI,TI,V2SF,V2SF")])
-
-(define_insn "vec_concatv2di"
- [(set (match_operand:V2DI 0 "register_operand" "=x,?x,x,x,x,x,x")
- (vec_concat:V2DI
- (match_operand:DI 1 "nonimmediate_operand" "xm,*y,0,x,0,0,x")
- (match_operand:DI 2 "vector_move_operand" " C, C,x,x,x,m,m")))]
- "!TARGET_64BIT && TARGET_SSE"
- "@
- %vmovq\t{%1, %0|%0, %1}
- movq2dq\t{%1, %0|%0, %1}
- punpcklqdq\t{%2, %0|%0, %2}
- vpunpcklqdq\t{%2, %1, %0|%0, %1, %2}
- movlhps\t{%2, %0|%0, %2}
- movhps\t{%2, %0|%0, %2}
- vmovhps\t{%2, %1, %0|%0, %1, %2}"
- [(set_attr "isa" "sse2,sse2,sse2_noavx,avx,noavx,noavx,avx")
- (set_attr "type" "ssemov,ssemov,sselog,sselog,ssemov,ssemov,ssemov")
- (set_attr "prefix" "maybe_vex,orig,orig,vex,orig,orig,vex")
- (set_attr "mode" "TI,TI,TI,TI,V4SF,V2SF,V2SF")])
+ (set_attr "prefix_rex" "1,1,1,*,*,*,*,*,*,*")
+ (set_attr "prefix_extra" "1,1,*,*,*,*,*,*,*,*")
+ (set_attr "length_immediate" "1,1,*,*,*,*,*,*,*,*")
+ (set_attr "prefix" "orig,vex,maybe_vex,maybe_vex,orig,orig,vex,orig,orig,vex")
+ (set_attr "mode" "TI,TI,TI,TI,TI,TI,TI,V4SF,V2SF,V2SF")])
(define_expand "vec_unpacks_lo_<mode>"
[(match_operand:<sseunpackmode> 0 "register_operand")
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 937d634ccfd..e40150aa6e1 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,7 @@
+2013-05-03 Uros Bizjak <ubizjak@gmail.com>
+
+ * gcc.target/i386/sse2-init-v2di-2.c: Update scan assembler string.
+
2013-05-03 Vidya Praveen <vidyapraveen@arm.com>
* gcc.target/aarch64/fabd.c: New file.
diff --git a/gcc/testsuite/gcc.target/i386/sse2-init-v2di-2.c b/gcc/testsuite/gcc.target/i386/sse2-init-v2di-2.c
index f4d3a9a8f26..dfe2d94a53a 100644
--- a/gcc/testsuite/gcc.target/i386/sse2-init-v2di-2.c
+++ b/gcc/testsuite/gcc.target/i386/sse2-init-v2di-2.c
@@ -9,4 +9,4 @@ test (long long b)
return _mm_cvtsi64_si128 (b);
}
-/* { dg-final { scan-assembler-times "\\*vec_concatv2di_rex64/4" 1 } } */
+/* { dg-final { scan-assembler-times "\\vec_concatv2di/3" 1 } } */