Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / config / i386 / mm3dnow.h
blob7fdc6dce5413aad2b4274e39164bd39db5de4ea0
1 /* Copyright (C) 2004 Free Software Foundation, Inc.
3 This file is part of GCC.
5 GCC is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2, or (at your option)
8 any later version.
10 GCC is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with GCC; see the file COPYING. If not, write to
17 the Free Software Foundation, 51 Franklin Street, Fifth Floor,
18 Boston, MA 02110-1301, USA. */
20 /* As a special exception, if you include this header file into source
21 files compiled by GCC, this header file does not by itself cause
22 the resulting executable to be covered by the GNU General Public
23 License. This exception does not however invalidate any other
24 reasons why the executable file might be covered by the GNU General
25 Public License. */
27 /* Implemented from the mm3dnow.h (of supposedly AMD origin) included with
28 MSVC 7.1. */
30 #ifndef _MM3DNOW_H_INCLUDED
31 #define _MM3DNOW_H_INCLUDED
33 #ifdef __3dNOW__
35 #include <mmintrin.h>
37 /* Internal data types for implementing the intrinsics. */
38 typedef float __v2sf __attribute__ ((__vector_size__ (8)));
40 static __inline void
41 _m_femms (void)
43 __builtin_ia32_femms();
46 static __inline __m64
47 _m_pavgusb (__m64 __A, __m64 __B)
49 return (__m64)__builtin_ia32_pavgusb ((__v8qi)__A, (__v8qi)__B);
52 static __inline __m64
53 _m_pf2id (__m64 __A)
55 return (__m64)__builtin_ia32_pf2id ((__v2sf)__A);
58 static __inline __m64
59 _m_pfacc (__m64 __A, __m64 __B)
61 return (__m64)__builtin_ia32_pfacc ((__v2sf)__A, (__v2sf)__B);
64 static __inline __m64
65 _m_pfadd (__m64 __A, __m64 __B)
67 return (__m64)__builtin_ia32_pfadd ((__v2sf)__A, (__v2sf)__B);
70 static __inline __m64
71 _m_pfcmpeq (__m64 __A, __m64 __B)
73 return (__m64)__builtin_ia32_pfcmpeq ((__v2sf)__A, (__v2sf)__B);
76 static __inline __m64
77 _m_pfcmpge (__m64 __A, __m64 __B)
79 return (__m64)__builtin_ia32_pfcmpge ((__v2sf)__A, (__v2sf)__B);
82 static __inline __m64
83 _m_pfcmpgt (__m64 __A, __m64 __B)
85 return (__m64)__builtin_ia32_pfcmpgt ((__v2sf)__A, (__v2sf)__B);
88 static __inline __m64
89 _m_pfmax (__m64 __A, __m64 __B)
91 return (__m64)__builtin_ia32_pfmax ((__v2sf)__A, (__v2sf)__B);
94 static __inline __m64
95 _m_pfmin (__m64 __A, __m64 __B)
97 return (__m64)__builtin_ia32_pfmin ((__v2sf)__A, (__v2sf)__B);
100 static __inline __m64
101 _m_pfmul (__m64 __A, __m64 __B)
103 return (__m64)__builtin_ia32_pfmul ((__v2sf)__A, (__v2sf)__B);
106 static __inline __m64
107 _m_pfrcp (__m64 __A)
109 return (__m64)__builtin_ia32_pfrcp ((__v2sf)__A);
112 static __inline __m64
113 _m_pfrcpit1 (__m64 __A, __m64 __B)
115 return (__m64)__builtin_ia32_pfrcpit1 ((__v2sf)__A, (__v2sf)__B);
118 static __inline __m64
119 _m_pfrcpit2 (__m64 __A, __m64 __B)
121 return (__m64)__builtin_ia32_pfrcpit2 ((__v2sf)__A, (__v2sf)__B);
124 static __inline __m64
125 _m_pfrsqrt (__m64 __A)
127 return (__m64)__builtin_ia32_pfrsqrt ((__v2sf)__A);
130 static __inline __m64
131 _m_pfrsqit1 (__m64 __A, __m64 __B)
133 return (__m64)__builtin_ia32_pfrsqit1 ((__v2sf)__A, (__v2sf)__B);
136 static __inline __m64
137 _m_pfsub (__m64 __A, __m64 __B)
139 return (__m64)__builtin_ia32_pfsub ((__v2sf)__A, (__v2sf)__B);
142 static __inline __m64
143 _m_pfsubr (__m64 __A, __m64 __B)
145 return (__m64)__builtin_ia32_pfsubr ((__v2sf)__A, (__v2sf)__B);
148 static __inline __m64
149 _m_pi2fd (__m64 __A)
151 return (__m64)__builtin_ia32_pi2fd ((__v2si)__A);
154 static __inline __m64
155 _m_pmulhrw (__m64 __A, __m64 __B)
157 return (__m64)__builtin_ia32_pmulhrw ((__v4hi)__A, (__v4hi)__B);
160 static __inline void
161 _m_prefetch (void *__P)
163 __builtin_prefetch (__P, 0, 3 /* _MM_HINT_T0 */);
166 static __inline void
167 _m_prefetchw (void *__P)
169 __builtin_prefetch (__P, 1, 3 /* _MM_HINT_T0 */);
172 static __inline __m64
173 _m_from_float (float __A)
175 return (__m64)(__v2sf){ __A, 0 };
178 static __inline float
179 _m_to_float (__m64 __A)
181 union { __v2sf v; float a[2]; } __tmp = { (__v2sf)__A };
182 return __tmp.a[0];
185 #ifdef __3dNOW_A__
187 static __inline __m64
188 _m_pf2iw (__m64 __A)
190 return (__m64)__builtin_ia32_pf2iw ((__v2sf)__A);
193 static __inline __m64
194 _m_pfnacc (__m64 __A, __m64 __B)
196 return (__m64)__builtin_ia32_pfnacc ((__v2sf)__A, (__v2sf)__B);
199 static __inline __m64
200 _m_pfpnacc (__m64 __A, __m64 __B)
202 return (__m64)__builtin_ia32_pfpnacc ((__v2sf)__A, (__v2sf)__B);
205 static __inline __m64
206 _m_pi2fw (__m64 __A)
208 return (__m64)__builtin_ia32_pi2fw ((__v2si)__A);
211 static __inline __m64
212 _m_pswapd (__m64 __A)
214 return (__m64)__builtin_ia32_pswapdsf ((__v2sf)__A);
217 #endif /* __3dNOW_A__ */
218 #endif /* __3dNOW__ */
220 #endif /* _MM3DNOW_H_INCLUDED */