From 019b9fdbb30b5f8b385d9543e85124db5dfe614d Mon Sep 17 00:00:00 2001 From: Zdenek Dvorak Date: Thu, 12 Jul 2007 20:46:46 +0200 Subject: sse.md (storentdf, storentsf): New. * config/i386/sse.md (storentdf, storentsf): New. From-SVN: r126594 --- gcc/ChangeLog | 4 ++++ gcc/config/i386/sse.md | 14 ++++++++++++++ 2 files changed, 18 insertions(+) (limited to 'gcc') diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 5a6f61c..9656d74 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2007-07-12 Zdenek Dvorak + + * config/i386/sse.md (storentdf, storentsf): New. + 2007-07-12 Geoffrey Keating * builtins.c (get_pointer_alignment): Honor DECL_ALIGN on a diff --git a/gcc/config/i386/sse.md b/gcc/config/i386/sse.md index 3164077..58d4f31 100644 --- a/gcc/config/i386/sse.md +++ b/gcc/config/i386/sse.md @@ -343,6 +343,20 @@ "TARGET_SSE2" "") +(define_expand "storentdf" + [(set (match_operand:DF 0 "memory_operand" "") + (unspec:DF [(match_operand:DF 1 "register_operand" "")] + UNSPEC_MOVNT))] + "TARGET_SSE4A" + "") + +(define_expand "storentsf" + [(set (match_operand:SF 0 "memory_operand" "") + (unspec:SF [(match_operand:SF 1 "register_operand" "")] + UNSPEC_MOVNT))] + "TARGET_SSE4A" + "") + ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; ;; Parallel single-precision floating point arithmetic -- cgit v1.1