mmintrin.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:36k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* Copyright (C) 2002, 2003 Free Software Foundation, Inc.
  2.    This file is part of GCC.
  3.    GCC is free software; you can redistribute it and/or modify it
  4.    under the terms of the GNU General Public License as published
  5.    by the Free Software Foundation; either version 2, or (at your
  6.    option) any later version.
  7.    GCC is distributed in the hope that it will be useful, but WITHOUT
  8.    ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  9.    or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
  10.    License for more details.
  11.    You should have received a copy of the GNU General Public License
  12.    along with GCC; see the file COPYING.  If not, write to the Free
  13.    Software Foundation, 59 Temple Place - Suite 330, Boston, MA
  14.    02111-1307, USA.  */
  15. /* As a special exception, if you include this header file into source
  16.    files compiled by GCC, this header file does not by itself cause
  17.    the resulting executable to be covered by the GNU General Public
  18.    License.  This exception does not however invalidate any other
  19.    reasons why the executable file might be covered by the GNU General
  20.    Public License.  */
  21. #ifndef _MMINTRIN_H_INCLUDED
  22. #define _MMINTRIN_H_INCLUDED
  23. /* The data type intended for user use.  */
  24. typedef unsigned long long __m64, __int64;
  25. /* Internal data types for implementing the intrinsics.  */
  26. typedef int __v2si __attribute__ ((__mode__ (__V2SI__)));
  27. typedef int __v4hi __attribute__ ((__mode__ (__V4HI__)));
  28. typedef int __v8qi __attribute__ ((__mode__ (__V8QI__)));
  29. /* "Convert" __m64 and __int64 into each other.  */
  30. static __inline __m64 
  31. _mm_cvtsi64_m64 (__int64 __i)
  32. {
  33.   return __i;
  34. }
  35. static __inline __int64
  36. _mm_cvtm64_si64 (__m64 __i)
  37. {
  38.   return __i;
  39. }
  40. static __inline int
  41. _mm_cvtsi64_si32 (__int64 __i)
  42. {
  43.   return __i;
  44. }
  45. static __inline __int64
  46. _mm_cvtsi32_si64 (int __i)
  47. {
  48.   return __i;
  49. }
  50. /* Pack the four 16-bit values from M1 into the lower four 8-bit values of
  51.    the result, and the four 16-bit values from M2 into the upper four 8-bit
  52.    values of the result, all with signed saturation.  */
  53. static __inline __m64
  54. _mm_packs_pi16 (__m64 __m1, __m64 __m2)
  55. {
  56.   return (__m64) __builtin_arm_wpackhss ((__v4hi)__m1, (__v4hi)__m2);
  57. }
  58. /* Pack the two 32-bit values from M1 in to the lower two 16-bit values of
  59.    the result, and the two 32-bit values from M2 into the upper two 16-bit
  60.    values of the result, all with signed saturation.  */
  61. static __inline __m64
  62. _mm_packs_pi32 (__m64 __m1, __m64 __m2)
  63. {
  64.   return (__m64) __builtin_arm_wpackwss ((__v2si)__m1, (__v2si)__m2);
  65. }
  66. /* Copy the 64-bit value from M1 into the lower 32-bits of the result, and
  67.    the 64-bit value from M2 into the upper 32-bits of the result, all with
  68.    signed saturation for values that do not fit exactly into 32-bits.  */
  69. static __inline __m64
  70. _mm_packs_pi64 (__m64 __m1, __m64 __m2)
  71. {
  72.   return (__m64) __builtin_arm_wpackdss ((long long)__m1, (long long)__m2);
  73. }
  74. /* Pack the four 16-bit values from M1 into the lower four 8-bit values of
  75.    the result, and the four 16-bit values from M2 into the upper four 8-bit
  76.    values of the result, all with unsigned saturation.  */
  77. static __inline __m64
  78. _mm_packs_pu16 (__m64 __m1, __m64 __m2)
  79. {
  80.   return (__m64) __builtin_arm_wpackhus ((__v4hi)__m1, (__v4hi)__m2);
  81. }
  82. /* Pack the two 32-bit values from M1 into the lower two 16-bit values of
  83.    the result, and the two 32-bit values from M2 into the upper two 16-bit
  84.    values of the result, all with unsigned saturation.  */
  85. static __inline __m64
  86. _mm_packs_pu32 (__m64 __m1, __m64 __m2)
  87. {
  88.   return (__m64) __builtin_arm_wpackwus ((__v2si)__m1, (__v2si)__m2);
  89. }
  90. /* Copy the 64-bit value from M1 into the lower 32-bits of the result, and
  91.    the 64-bit value from M2 into the upper 32-bits of the result, all with
  92.    unsigned saturation for values that do not fit exactly into 32-bits.  */
  93. static __inline __m64
  94. _mm_packs_pu64 (__m64 __m1, __m64 __m2)
  95. {
  96.   return (__m64) __builtin_arm_wpackdus ((long long)__m1, (long long)__m2);
  97. }
  98. /* Interleave the four 8-bit values from the high half of M1 with the four
  99.    8-bit values from the high half of M2.  */
  100. static __inline __m64
  101. _mm_unpackhi_pi8 (__m64 __m1, __m64 __m2)
  102. {
  103.   return (__m64) __builtin_arm_wunpckihb ((__v8qi)__m1, (__v8qi)__m2);
  104. }
  105. /* Interleave the two 16-bit values from the high half of M1 with the two
  106.    16-bit values from the high half of M2.  */
  107. static __inline __m64
  108. _mm_unpackhi_pi16 (__m64 __m1, __m64 __m2)
  109. {
  110.   return (__m64) __builtin_arm_wunpckihh ((__v4hi)__m1, (__v4hi)__m2);
  111. }
  112. /* Interleave the 32-bit value from the high half of M1 with the 32-bit
  113.    value from the high half of M2.  */
  114. static __inline __m64
  115. _mm_unpackhi_pi32 (__m64 __m1, __m64 __m2)
  116. {
  117.   return (__m64) __builtin_arm_wunpckihw ((__v2si)__m1, (__v2si)__m2);
  118. }
  119. /* Interleave the four 8-bit values from the low half of M1 with the four
  120.    8-bit values from the low half of M2.  */
  121. static __inline __m64
  122. _mm_unpacklo_pi8 (__m64 __m1, __m64 __m2)
  123. {
  124.   return (__m64) __builtin_arm_wunpckilb ((__v8qi)__m1, (__v8qi)__m2);
  125. }
  126. /* Interleave the two 16-bit values from the low half of M1 with the two
  127.    16-bit values from the low half of M2.  */
  128. static __inline __m64
  129. _mm_unpacklo_pi16 (__m64 __m1, __m64 __m2)
  130. {
  131.   return (__m64) __builtin_arm_wunpckilh ((__v4hi)__m1, (__v4hi)__m2);
  132. }
  133. /* Interleave the 32-bit value from the low half of M1 with the 32-bit
  134.    value from the low half of M2.  */
  135. static __inline __m64
  136. _mm_unpacklo_pi32 (__m64 __m1, __m64 __m2)
  137. {
  138.   return (__m64) __builtin_arm_wunpckilw ((__v2si)__m1, (__v2si)__m2);
  139. }
  140. /* Take the four 8-bit values from the low half of M1, sign extend them,
  141.    and return the result as a vector of four 16-bit quantities.  */
  142. static __inline __m64
  143. _mm_unpackel_pi8 (__m64 __m1)
  144. {
  145.   return (__m64) __builtin_arm_wunpckelsb ((__v8qi)__m1);
  146. }
  147. /* Take the two 16-bit values from the low half of M1, sign extend them,
  148.    and return the result as a vector of two 32-bit quantities.  */
  149. static __inline __m64
  150. _mm_unpackel_pi16 (__m64 __m1)
  151. {
  152.   return (__m64) __builtin_arm_wunpckelsh ((__v4hi)__m1);
  153. }
  154. /* Take the 32-bit value from the low half of M1, and return it sign extended
  155.   to 64 bits.  */
  156. static __inline __m64
  157. _mm_unpackel_pi32 (__m64 __m1)
  158. {
  159.   return (__m64) __builtin_arm_wunpckelsw ((__v2si)__m1);
  160. }
  161. /* Take the four 8-bit values from the high half of M1, sign extend them,
  162.    and return the result as a vector of four 16-bit quantities.  */
  163. static __inline __m64
  164. _mm_unpackeh_pi8 (__m64 __m1)
  165. {
  166.   return (__m64) __builtin_arm_wunpckehsb ((__v8qi)__m1);
  167. }
  168. /* Take the two 16-bit values from the high half of M1, sign extend them,
  169.    and return the result as a vector of two 32-bit quantities.  */
  170. static __inline __m64
  171. _mm_unpackeh_pi16 (__m64 __m1)
  172. {
  173.   return (__m64) __builtin_arm_wunpckehsh ((__v4hi)__m1);
  174. }
  175. /* Take the 32-bit value from the high half of M1, and return it sign extended
  176.   to 64 bits.  */
  177. static __inline __m64
  178. _mm_unpackeh_pi32 (__m64 __m1)
  179. {
  180.   return (__m64) __builtin_arm_wunpckehsw ((__v2si)__m1);
  181. }
  182. /* Take the four 8-bit values from the low half of M1, zero extend them,
  183.    and return the result as a vector of four 16-bit quantities.  */
  184. static __inline __m64
  185. _mm_unpackel_pu8 (__m64 __m1)
  186. {
  187.   return (__m64) __builtin_arm_wunpckelub ((__v8qi)__m1);
  188. }
  189. /* Take the two 16-bit values from the low half of M1, zero extend them,
  190.    and return the result as a vector of two 32-bit quantities.  */
  191. static __inline __m64
  192. _mm_unpackel_pu16 (__m64 __m1)
  193. {
  194.   return (__m64) __builtin_arm_wunpckeluh ((__v4hi)__m1);
  195. }
  196. /* Take the 32-bit value from the low half of M1, and return it zero extended
  197.   to 64 bits.  */
  198. static __inline __m64
  199. _mm_unpackel_pu32 (__m64 __m1)
  200. {
  201.   return (__m64) __builtin_arm_wunpckeluw ((__v2si)__m1);
  202. }
  203. /* Take the four 8-bit values from the high half of M1, zero extend them,
  204.    and return the result as a vector of four 16-bit quantities.  */
  205. static __inline __m64
  206. _mm_unpackeh_pu8 (__m64 __m1)
  207. {
  208.   return (__m64) __builtin_arm_wunpckehub ((__v8qi)__m1);
  209. }
  210. /* Take the two 16-bit values from the high half of M1, zero extend them,
  211.    and return the result as a vector of two 32-bit quantities.  */
  212. static __inline __m64
  213. _mm_unpackeh_pu16 (__m64 __m1)
  214. {
  215.   return (__m64) __builtin_arm_wunpckehuh ((__v4hi)__m1);
  216. }
  217. /* Take the 32-bit value from the high half of M1, and return it zero extended
  218.   to 64 bits.  */
  219. static __inline __m64
  220. _mm_unpackeh_pu32 (__m64 __m1)
  221. {
  222.   return (__m64) __builtin_arm_wunpckehuw ((__v2si)__m1);
  223. }
  224. /* Add the 8-bit values in M1 to the 8-bit values in M2.  */
  225. static __inline __m64
  226. _mm_add_pi8 (__m64 __m1, __m64 __m2)
  227. {
  228.   return (__m64) __builtin_arm_waddb ((__v8qi)__m1, (__v8qi)__m2);
  229. }
  230. /* Add the 16-bit values in M1 to the 16-bit values in M2.  */
  231. static __inline __m64
  232. _mm_add_pi16 (__m64 __m1, __m64 __m2)
  233. {
  234.   return (__m64) __builtin_arm_waddh ((__v4hi)__m1, (__v4hi)__m2);
  235. }
  236. /* Add the 32-bit values in M1 to the 32-bit values in M2.  */
  237. static __inline __m64
  238. _mm_add_pi32 (__m64 __m1, __m64 __m2)
  239. {
  240.   return (__m64) __builtin_arm_waddw ((__v2si)__m1, (__v2si)__m2);
  241. }
  242. /* Add the 8-bit values in M1 to the 8-bit values in M2 using signed
  243.    saturated arithmetic.  */
  244. static __inline __m64
  245. _mm_adds_pi8 (__m64 __m1, __m64 __m2)
  246. {
  247.   return (__m64) __builtin_arm_waddbss ((__v8qi)__m1, (__v8qi)__m2);
  248. }
  249. /* Add the 16-bit values in M1 to the 16-bit values in M2 using signed
  250.    saturated arithmetic.  */
  251. static __inline __m64
  252. _mm_adds_pi16 (__m64 __m1, __m64 __m2)
  253. {
  254.   return (__m64) __builtin_arm_waddhss ((__v4hi)__m1, (__v4hi)__m2);
  255. }
  256. /* Add the 32-bit values in M1 to the 32-bit values in M2 using signed
  257.    saturated arithmetic.  */
  258. static __inline __m64
  259. _mm_adds_pi32 (__m64 __m1, __m64 __m2)
  260. {
  261.   return (__m64) __builtin_arm_waddwss ((__v2si)__m1, (__v2si)__m2);
  262. }
  263. /* Add the 8-bit values in M1 to the 8-bit values in M2 using unsigned
  264.    saturated arithmetic.  */
  265. static __inline __m64
  266. _mm_adds_pu8 (__m64 __m1, __m64 __m2)
  267. {
  268.   return (__m64) __builtin_arm_waddbus ((__v8qi)__m1, (__v8qi)__m2);
  269. }
  270. /* Add the 16-bit values in M1 to the 16-bit values in M2 using unsigned
  271.    saturated arithmetic.  */
  272. static __inline __m64
  273. _mm_adds_pu16 (__m64 __m1, __m64 __m2)
  274. {
  275.   return (__m64) __builtin_arm_waddhus ((__v4hi)__m1, (__v4hi)__m2);
  276. }
  277. /* Add the 32-bit values in M1 to the 32-bit values in M2 using unsigned
  278.    saturated arithmetic.  */
  279. static __inline __m64
  280. _mm_adds_pu32 (__m64 __m1, __m64 __m2)
  281. {
  282.   return (__m64) __builtin_arm_waddwus ((__v2si)__m1, (__v2si)__m2);
  283. }
  284. /* Subtract the 8-bit values in M2 from the 8-bit values in M1.  */
  285. static __inline __m64
  286. _mm_sub_pi8 (__m64 __m1, __m64 __m2)
  287. {
  288.   return (__m64) __builtin_arm_wsubb ((__v8qi)__m1, (__v8qi)__m2);
  289. }
  290. /* Subtract the 16-bit values in M2 from the 16-bit values in M1.  */
  291. static __inline __m64
  292. _mm_sub_pi16 (__m64 __m1, __m64 __m2)
  293. {
  294.   return (__m64) __builtin_arm_wsubh ((__v4hi)__m1, (__v4hi)__m2);
  295. }
  296. /* Subtract the 32-bit values in M2 from the 32-bit values in M1.  */
  297. static __inline __m64
  298. _mm_sub_pi32 (__m64 __m1, __m64 __m2)
  299. {
  300.   return (__m64) __builtin_arm_wsubw ((__v2si)__m1, (__v2si)__m2);
  301. }
  302. /* Subtract the 8-bit values in M2 from the 8-bit values in M1 using signed
  303.    saturating arithmetic.  */
  304. static __inline __m64
  305. _mm_subs_pi8 (__m64 __m1, __m64 __m2)
  306. {
  307.   return (__m64) __builtin_arm_wsubbss ((__v8qi)__m1, (__v8qi)__m2);
  308. }
  309. /* Subtract the 16-bit values in M2 from the 16-bit values in M1 using
  310.    signed saturating arithmetic.  */
  311. static __inline __m64
  312. _mm_subs_pi16 (__m64 __m1, __m64 __m2)
  313. {
  314.   return (__m64) __builtin_arm_wsubhss ((__v4hi)__m1, (__v4hi)__m2);
  315. }
  316. /* Subtract the 32-bit values in M2 from the 32-bit values in M1 using
  317.    signed saturating arithmetic.  */
  318. static __inline __m64
  319. _mm_subs_pi32 (__m64 __m1, __m64 __m2)
  320. {
  321.   return (__m64) __builtin_arm_wsubwss ((__v2si)__m1, (__v2si)__m2);
  322. }
  323. /* Subtract the 8-bit values in M2 from the 8-bit values in M1 using
  324.    unsigned saturating arithmetic.  */
  325. static __inline __m64
  326. _mm_subs_pu8 (__m64 __m1, __m64 __m2)
  327. {
  328.   return (__m64) __builtin_arm_wsubbus ((__v8qi)__m1, (__v8qi)__m2);
  329. }
  330. /* Subtract the 16-bit values in M2 from the 16-bit values in M1 using
  331.    unsigned saturating arithmetic.  */
  332. static __inline __m64
  333. _mm_subs_pu16 (__m64 __m1, __m64 __m2)
  334. {
  335.   return (__m64) __builtin_arm_wsubhus ((__v4hi)__m1, (__v4hi)__m2);
  336. }
  337. /* Subtract the 32-bit values in M2 from the 32-bit values in M1 using
  338.    unsigned saturating arithmetic.  */
  339. static __inline __m64
  340. _mm_subs_pu32 (__m64 __m1, __m64 __m2)
  341. {
  342.   return (__m64) __builtin_arm_wsubwus ((__v2si)__m1, (__v2si)__m2);
  343. }
  344. /* Multiply four 16-bit values in M1 by four 16-bit values in M2 producing
  345.    four 32-bit intermediate results, which are then summed by pairs to
  346.    produce two 32-bit results.  */
  347. static __inline __m64
  348. _mm_madd_pi16 (__m64 __m1, __m64 __m2)
  349. {
  350.   return (__m64) __builtin_arm_wmadds ((__v4hi)__m1, (__v4hi)__m2);
  351. }
  352. /* Multiply four 16-bit values in M1 by four 16-bit values in M2 producing
  353.    four 32-bit intermediate results, which are then summed by pairs to
  354.    produce two 32-bit results.  */
  355. static __inline __m64
  356. _mm_madd_pu16 (__m64 __m1, __m64 __m2)
  357. {
  358.   return (__m64) __builtin_arm_wmaddu ((__v4hi)__m1, (__v4hi)__m2);
  359. }
  360. /* Multiply four signed 16-bit values in M1 by four signed 16-bit values in
  361.    M2 and produce the high 16 bits of the 32-bit results.  */
  362. static __inline __m64
  363. _mm_mulhi_pi16 (__m64 __m1, __m64 __m2)
  364. {
  365.   return (__m64) __builtin_arm_wmulsh ((__v4hi)__m1, (__v4hi)__m2);
  366. }
  367. /* Multiply four signed 16-bit values in M1 by four signed 16-bit values in
  368.    M2 and produce the high 16 bits of the 32-bit results.  */
  369. static __inline __m64
  370. _mm_mulhi_pu16 (__m64 __m1, __m64 __m2)
  371. {
  372.   return (__m64) __builtin_arm_wmuluh ((__v4hi)__m1, (__v4hi)__m2);
  373. }
  374. /* Multiply four 16-bit values in M1 by four 16-bit values in M2 and produce
  375.    the low 16 bits of the results.  */
  376. static __inline __m64
  377. _mm_mullo_pi16 (__m64 __m1, __m64 __m2)
  378. {
  379.   return (__m64) __builtin_arm_wmulul ((__v4hi)__m1, (__v4hi)__m2);
  380. }
  381. /* Shift four 16-bit values in M left by COUNT.  */
  382. static __inline __m64
  383. _mm_sll_pi16 (__m64 __m, __m64 __count)
  384. {
  385.   return (__m64) __builtin_arm_wsllh ((__v4hi)__m, __count);
  386. }
  387. static __inline __m64
  388. _mm_slli_pi16 (__m64 __m, int __count)
  389. {
  390.   return (__m64) __builtin_arm_wsllhi ((__v4hi)__m, __count);
  391. }
  392. /* Shift two 32-bit values in M left by COUNT.  */
  393. static __inline __m64
  394. _mm_sll_pi32 (__m64 __m, __m64 __count)
  395. {
  396.   return (__m64) __builtin_arm_wsllw ((__v2si)__m, __count);
  397. }
  398. static __inline __m64
  399. _mm_slli_pi32 (__m64 __m, int __count)
  400. {
  401.   return (__m64) __builtin_arm_wsllwi ((__v2si)__m, __count);
  402. }
  403. /* Shift the 64-bit value in M left by COUNT.  */
  404. static __inline __m64
  405. _mm_sll_si64 (__m64 __m, __m64 __count)
  406. {
  407.   return (__m64) __builtin_arm_wslld (__m, __count);
  408. }
  409. static __inline __m64
  410. _mm_slli_si64 (__m64 __m, int __count)
  411. {
  412.   return (__m64) __builtin_arm_wslldi (__m, __count);
  413. }
  414. /* Shift four 16-bit values in M right by COUNT; shift in the sign bit.  */
  415. static __inline __m64
  416. _mm_sra_pi16 (__m64 __m, __m64 __count)
  417. {
  418.   return (__m64) __builtin_arm_wsrah ((__v4hi)__m, __count);
  419. }
  420. static __inline __m64
  421. _mm_srai_pi16 (__m64 __m, int __count)
  422. {
  423.   return (__m64) __builtin_arm_wsrahi ((__v4hi)__m, __count);
  424. }
  425. /* Shift two 32-bit values in M right by COUNT; shift in the sign bit.  */
  426. static __inline __m64
  427. _mm_sra_pi32 (__m64 __m, __m64 __count)
  428. {
  429.   return (__m64) __builtin_arm_wsraw ((__v2si)__m, __count);
  430. }
  431. static __inline __m64
  432. _mm_srai_pi32 (__m64 __m, int __count)
  433. {
  434.   return (__m64) __builtin_arm_wsrawi ((__v2si)__m, __count);
  435. }
  436. /* Shift the 64-bit value in M right by COUNT; shift in the sign bit.  */
  437. static __inline __m64
  438. _mm_sra_si64 (__m64 __m, __m64 __count)
  439. {
  440.   return (__m64) __builtin_arm_wsrad (__m, __count);
  441. }
  442. static __inline __m64
  443. _mm_srai_si64 (__m64 __m, int __count)
  444. {
  445.   return (__m64) __builtin_arm_wsradi (__m, __count);
  446. }
  447. /* Shift four 16-bit values in M right by COUNT; shift in zeros.  */
  448. static __inline __m64
  449. _mm_srl_pi16 (__m64 __m, __m64 __count)
  450. {
  451.   return (__m64) __builtin_arm_wsrlh ((__v4hi)__m, __count);
  452. }
  453. static __inline __m64
  454. _mm_srli_pi16 (__m64 __m, int __count)
  455. {
  456.   return (__m64) __builtin_arm_wsrlhi ((__v4hi)__m, __count);
  457. }
  458. /* Shift two 32-bit values in M right by COUNT; shift in zeros.  */
  459. static __inline __m64
  460. _mm_srl_pi32 (__m64 __m, __m64 __count)
  461. {
  462.   return (__m64) __builtin_arm_wsrlw ((__v2si)__m, __count);
  463. }
  464. static __inline __m64
  465. _mm_srli_pi32 (__m64 __m, int __count)
  466. {
  467.   return (__m64) __builtin_arm_wsrlwi ((__v2si)__m, __count);
  468. }
  469. /* Shift the 64-bit value in M left by COUNT; shift in zeros.  */
  470. static __inline __m64
  471. _mm_srl_si64 (__m64 __m, __m64 __count)
  472. {
  473.   return (__m64) __builtin_arm_wsrld (__m, __count);
  474. }
  475. static __inline __m64
  476. _mm_srli_si64 (__m64 __m, int __count)
  477. {
  478.   return (__m64) __builtin_arm_wsrldi (__m, __count);
  479. }
  480. /* Rotate four 16-bit values in M right by COUNT.  */
  481. static __inline __m64
  482. _mm_ror_pi16 (__m64 __m, __m64 __count)
  483. {
  484.   return (__m64) __builtin_arm_wrorh ((__v4hi)__m, __count);
  485. }
  486. static __inline __m64
  487. _mm_rori_pi16 (__m64 __m, int __count)
  488. {
  489.   return (__m64) __builtin_arm_wrorhi ((__v4hi)__m, __count);
  490. }
  491. /* Rotate two 32-bit values in M right by COUNT.  */
  492. static __inline __m64
  493. _mm_ror_pi32 (__m64 __m, __m64 __count)
  494. {
  495.   return (__m64) __builtin_arm_wrorw ((__v2si)__m, __count);
  496. }
  497. static __inline __m64
  498. _mm_rori_pi32 (__m64 __m, int __count)
  499. {
  500.   return (__m64) __builtin_arm_wrorwi ((__v2si)__m, __count);
  501. }
  502. /* Rotate two 64-bit values in M right by COUNT.  */
  503. static __inline __m64
  504. _mm_ror_si64 (__m64 __m, __m64 __count)
  505. {
  506.   return (__m64) __builtin_arm_wrord (__m, __count);
  507. }
  508. static __inline __m64
  509. _mm_rori_si64 (__m64 __m, int __count)
  510. {
  511.   return (__m64) __builtin_arm_wrordi (__m, __count);
  512. }
  513. /* Bit-wise AND the 64-bit values in M1 and M2.  */
  514. static __inline __m64
  515. _mm_and_si64 (__m64 __m1, __m64 __m2)
  516. {
  517.   return __builtin_arm_wand (__m1, __m2);
  518. }
  519. /* Bit-wise complement the 64-bit value in M1 and bit-wise AND it with the
  520.    64-bit value in M2.  */
  521. static __inline __m64
  522. _mm_andnot_si64 (__m64 __m1, __m64 __m2)
  523. {
  524.   return __builtin_arm_wandn (__m1, __m2);
  525. }
  526. /* Bit-wise inclusive OR the 64-bit values in M1 and M2.  */
  527. static __inline __m64
  528. _mm_or_si64 (__m64 __m1, __m64 __m2)
  529. {
  530.   return __builtin_arm_wor (__m1, __m2);
  531. }
  532. /* Bit-wise exclusive OR the 64-bit values in M1 and M2.  */
  533. static __inline __m64
  534. _mm_xor_si64 (__m64 __m1, __m64 __m2)
  535. {
  536.   return __builtin_arm_wxor (__m1, __m2);
  537. }
  538. /* Compare eight 8-bit values.  The result of the comparison is 0xFF if the
  539.    test is true and zero if false.  */
  540. static __inline __m64
  541. _mm_cmpeq_pi8 (__m64 __m1, __m64 __m2)
  542. {
  543.   return (__m64) __builtin_arm_wcmpeqb ((__v8qi)__m1, (__v8qi)__m2);
  544. }
  545. static __inline __m64
  546. _mm_cmpgt_pi8 (__m64 __m1, __m64 __m2)
  547. {
  548.   return (__m64) __builtin_arm_wcmpgtsb ((__v8qi)__m1, (__v8qi)__m2);
  549. }
  550. static __inline __m64
  551. _mm_cmpgt_pu8 (__m64 __m1, __m64 __m2)
  552. {
  553.   return (__m64) __builtin_arm_wcmpgtub ((__v8qi)__m1, (__v8qi)__m2);
  554. }
  555. /* Compare four 16-bit values.  The result of the comparison is 0xFFFF if
  556.    the test is true and zero if false.  */
  557. static __inline __m64
  558. _mm_cmpeq_pi16 (__m64 __m1, __m64 __m2)
  559. {
  560.   return (__m64) __builtin_arm_wcmpeqh ((__v4hi)__m1, (__v4hi)__m2);
  561. }
  562. static __inline __m64
  563. _mm_cmpgt_pi16 (__m64 __m1, __m64 __m2)
  564. {
  565.   return (__m64) __builtin_arm_wcmpgtsh ((__v4hi)__m1, (__v4hi)__m2);
  566. }
  567. static __inline __m64
  568. _mm_cmpgt_pu16 (__m64 __m1, __m64 __m2)
  569. {
  570.   return (__m64) __builtin_arm_wcmpgtuh ((__v4hi)__m1, (__v4hi)__m2);
  571. }
  572. /* Compare two 32-bit values.  The result of the comparison is 0xFFFFFFFF if
  573.    the test is true and zero if false.  */
  574. static __inline __m64
  575. _mm_cmpeq_pi32 (__m64 __m1, __m64 __m2)
  576. {
  577.   return (__m64) __builtin_arm_wcmpeqw ((__v2si)__m1, (__v2si)__m2);
  578. }
  579. static __inline __m64
  580. _mm_cmpgt_pi32 (__m64 __m1, __m64 __m2)
  581. {
  582.   return (__m64) __builtin_arm_wcmpgtsw ((__v2si)__m1, (__v2si)__m2);
  583. }
  584. static __inline __m64
  585. _mm_cmpgt_pu32 (__m64 __m1, __m64 __m2)
  586. {
  587.   return (__m64) __builtin_arm_wcmpgtuw ((__v2si)__m1, (__v2si)__m2);
  588. }
  589. /* Element-wise multiplication of unsigned 16-bit values __B and __C, followed
  590.    by accumulate across all elements and __A.  */
  591. static __inline __m64
  592. _mm_mac_pu16 (__m64 __A, __m64 __B, __m64 __C)
  593. {
  594.   return __builtin_arm_wmacu (__A, (__v4hi)__B, (__v4hi)__C);
  595. }
  596. /* Element-wise multiplication of signed 16-bit values __B and __C, followed
  597.    by accumulate across all elements and __A.  */
  598. static __inline __m64
  599. _mm_mac_pi16 (__m64 __A, __m64 __B, __m64 __C)
  600. {
  601.   return __builtin_arm_wmacs (__A, (__v4hi)__B, (__v4hi)__C);
  602. }
  603. /* Element-wise multiplication of unsigned 16-bit values __B and __C, followed
  604.    by accumulate across all elements.  */
  605. static __inline __m64
  606. _mm_macz_pu16 (__m64 __A, __m64 __B)
  607. {
  608.   return __builtin_arm_wmacuz ((__v4hi)__A, (__v4hi)__B);
  609. }
  610. /* Element-wise multiplication of signed 16-bit values __B and __C, followed
  611.    by accumulate across all elements.  */
  612. static __inline __m64
  613. _mm_macz_pi16 (__m64 __A, __m64 __B)
  614. {
  615.   return __builtin_arm_wmacsz ((__v4hi)__A, (__v4hi)__B);
  616. }
  617. /* Accumulate across all unsigned 8-bit values in __A.  */
  618. static __inline __m64
  619. _mm_acc_pu8 (__m64 __A)
  620. {
  621.   return __builtin_arm_waccb ((__v8qi)__A);
  622. }
  623. /* Accumulate across all unsigned 16-bit values in __A.  */
  624. static __inline __m64
  625. _mm_acc_pu16 (__m64 __A)
  626. {
  627.   return __builtin_arm_wacch ((__v4hi)__A);
  628. }
  629. /* Accumulate across all unsigned 32-bit values in __A.  */
  630. static __inline __m64
  631. _mm_acc_pu32 (__m64 __A)
  632. {
  633.   return __builtin_arm_waccw ((__v2si)__A);
  634. }
  635. static __inline __m64
  636. _mm_mia_si64 (__m64 __A, int __B, int __C)
  637. {
  638.   return __builtin_arm_tmia (__A, __B, __C);
  639. }
  640. static __inline __m64
  641. _mm_miaph_si64 (__m64 __A, int __B, int __C)
  642. {
  643.   return __builtin_arm_tmiaph (__A, __B, __C);
  644. }
  645. static __inline __m64
  646. _mm_miabb_si64 (__m64 __A, int __B, int __C)
  647. {
  648.   return __builtin_arm_tmiabb (__A, __B, __C);
  649. }
  650. static __inline __m64
  651. _mm_miabt_si64 (__m64 __A, int __B, int __C)
  652. {
  653.   return __builtin_arm_tmiabt (__A, __B, __C);
  654. }
  655. static __inline __m64
  656. _mm_miatb_si64 (__m64 __A, int __B, int __C)
  657. {
  658.   return __builtin_arm_tmiatb (__A, __B, __C);
  659. }
  660. static __inline __m64
  661. _mm_miatt_si64 (__m64 __A, int __B, int __C)
  662. {
  663.   return __builtin_arm_tmiatt (__A, __B, __C);
  664. }
  665. /* Extract one of the elements of A and sign extend.  The selector N must
  666.    be immediate.  */
  667. #define _mm_extract_pi8(A, N) __builtin_arm_textrmsb ((__v8qi)(A), (N))
  668. #define _mm_extract_pi16(A, N) __builtin_arm_textrmsh ((__v4hi)(A), (N))
  669. #define _mm_extract_pi32(A, N) __builtin_arm_textrmsw ((__v2si)(A), (N))
  670. /* Extract one of the elements of A and zero extend.  The selector N must
  671.    be immediate.  */
  672. #define _mm_extract_pu8(A, N) __builtin_arm_textrmub ((__v8qi)(A), (N))
  673. #define _mm_extract_pu16(A, N) __builtin_arm_textrmuh ((__v4hi)(A), (N))
  674. #define _mm_extract_pu32(A, N) __builtin_arm_textrmuw ((__v2si)(A), (N))
  675. /* Inserts word D into one of the elements of A.  The selector N must be
  676.    immediate.  */
  677. #define _mm_insert_pi8(A, D, N) 
  678.   ((__m64) __builtin_arm_tinsrb ((__v8qi)(A), (D), (N)))
  679. #define _mm_insert_pi16(A, D, N) 
  680.   ((__m64) __builtin_arm_tinsrh ((__v4hi)(A), (D), (N)))
  681. #define _mm_insert_pi32(A, D, N) 
  682.   ((__m64) __builtin_arm_tinsrw ((__v2si)(A), (D), (N)))
  683. /* Compute the element-wise maximum of signed 8-bit values.  */
  684. static __inline __m64
  685. _mm_max_pi8 (__m64 __A, __m64 __B)
  686. {
  687.   return (__m64) __builtin_arm_wmaxsb ((__v8qi)__A, (__v8qi)__B);
  688. }
  689. /* Compute the element-wise maximum of signed 16-bit values.  */
  690. static __inline __m64
  691. _mm_max_pi16 (__m64 __A, __m64 __B)
  692. {
  693.   return (__m64) __builtin_arm_wmaxsh ((__v4hi)__A, (__v4hi)__B);
  694. }
  695. /* Compute the element-wise maximum of signed 32-bit values.  */
  696. static __inline __m64
  697. _mm_max_pi32 (__m64 __A, __m64 __B)
  698. {
  699.   return (__m64) __builtin_arm_wmaxsw ((__v2si)__A, (__v2si)__B);
  700. }
  701. /* Compute the element-wise maximum of unsigned 8-bit values.  */
  702. static __inline __m64
  703. _mm_max_pu8 (__m64 __A, __m64 __B)
  704. {
  705.   return (__m64) __builtin_arm_wmaxub ((__v8qi)__A, (__v8qi)__B);
  706. }
  707. /* Compute the element-wise maximum of unsigned 16-bit values.  */
  708. static __inline __m64
  709. _mm_max_pu16 (__m64 __A, __m64 __B)
  710. {
  711.   return (__m64) __builtin_arm_wmaxuh ((__v4hi)__A, (__v4hi)__B);
  712. }
  713. /* Compute the element-wise maximum of unsigned 32-bit values.  */
  714. static __inline __m64
  715. _mm_max_pu32 (__m64 __A, __m64 __B)
  716. {
  717.   return (__m64) __builtin_arm_wmaxuw ((__v2si)__A, (__v2si)__B);
  718. }
  719. /* Compute the element-wise minimum of signed 16-bit values.  */
  720. static __inline __m64
  721. _mm_min_pi8 (__m64 __A, __m64 __B)
  722. {
  723.   return (__m64) __builtin_arm_wminsb ((__v8qi)__A, (__v8qi)__B);
  724. }
  725. /* Compute the element-wise minimum of signed 16-bit values.  */
  726. static __inline __m64
  727. _mm_min_pi16 (__m64 __A, __m64 __B)
  728. {
  729.   return (__m64) __builtin_arm_wminsh ((__v4hi)__A, (__v4hi)__B);
  730. }
  731. /* Compute the element-wise minimum of signed 32-bit values.  */
  732. static __inline __m64
  733. _mm_min_pi32 (__m64 __A, __m64 __B)
  734. {
  735.   return (__m64) __builtin_arm_wminsw ((__v2si)__A, (__v2si)__B);
  736. }
  737. /* Compute the element-wise minimum of unsigned 16-bit values.  */
  738. static __inline __m64
  739. _mm_min_pu8 (__m64 __A, __m64 __B)
  740. {
  741.   return (__m64) __builtin_arm_wminub ((__v8qi)__A, (__v8qi)__B);
  742. }
  743. /* Compute the element-wise minimum of unsigned 16-bit values.  */
  744. static __inline __m64
  745. _mm_min_pu16 (__m64 __A, __m64 __B)
  746. {
  747.   return (__m64) __builtin_arm_wminuh ((__v4hi)__A, (__v4hi)__B);
  748. }
  749. /* Compute the element-wise minimum of unsigned 32-bit values.  */
  750. static __inline __m64
  751. _mm_min_pu32 (__m64 __A, __m64 __B)
  752. {
  753.   return (__m64) __builtin_arm_wminuw ((__v2si)__A, (__v2si)__B);
  754. }
  755. /* Create an 8-bit mask of the signs of 8-bit values.  */
  756. static __inline int
  757. _mm_movemask_pi8 (__m64 __A)
  758. {
  759.   return __builtin_arm_tmovmskb ((__v8qi)__A);
  760. }
  761. /* Create an 8-bit mask of the signs of 16-bit values.  */
  762. static __inline int
  763. _mm_movemask_pi16 (__m64 __A)
  764. {
  765.   return __builtin_arm_tmovmskh ((__v4hi)__A);
  766. }
  767. /* Create an 8-bit mask of the signs of 32-bit values.  */
  768. static __inline int
  769. _mm_movemask_pi32 (__m64 __A)
  770. {
  771.   return __builtin_arm_tmovmskw ((__v2si)__A);
  772. }
  773. /* Return a combination of the four 16-bit values in A.  The selector
  774.    must be an immediate.  */
  775. #define _mm_shuffle_pi16(A, N) 
  776.   ((__m64) __builtin_arm_wshufh ((__v4hi)(A), (N)))
  777. /* Compute the rounded averages of the unsigned 8-bit values in A and B.  */
  778. static __inline __m64
  779. _mm_avg_pu8 (__m64 __A, __m64 __B)
  780. {
  781.   return (__m64) __builtin_arm_wavg2br ((__v8qi)__A, (__v8qi)__B);
  782. }
  783. /* Compute the rounded averages of the unsigned 16-bit values in A and B.  */
  784. static __inline __m64
  785. _mm_avg_pu16 (__m64 __A, __m64 __B)
  786. {
  787.   return (__m64) __builtin_arm_wavg2hr ((__v4hi)__A, (__v4hi)__B);
  788. }
  789. /* Compute the averages of the unsigned 8-bit values in A and B.  */
  790. static __inline __m64
  791. _mm_avg2_pu8 (__m64 __A, __m64 __B)
  792. {
  793.   return (__m64) __builtin_arm_wavg2b ((__v8qi)__A, (__v8qi)__B);
  794. }
  795. /* Compute the averages of the unsigned 16-bit values in A and B.  */
  796. static __inline __m64
  797. _mm_avg2_pu16 (__m64 __A, __m64 __B)
  798. {
  799.   return (__m64) __builtin_arm_wavg2h ((__v4hi)__A, (__v4hi)__B);
  800. }
  801. /* Compute the sum of the absolute differences of the unsigned 8-bit
  802.    values in A and B.  Return the value in the lower 16-bit word; the
  803.    upper words are cleared.  */
  804. static __inline __m64
  805. _mm_sad_pu8 (__m64 __A, __m64 __B)
  806. {
  807.   return (__m64) __builtin_arm_wsadb ((__v8qi)__A, (__v8qi)__B);
  808. }
  809. /* Compute the sum of the absolute differences of the unsigned 16-bit
  810.    values in A and B.  Return the value in the lower 32-bit word; the
  811.    upper words are cleared.  */
  812. static __inline __m64
  813. _mm_sad_pu16 (__m64 __A, __m64 __B)
  814. {
  815.   return (__m64) __builtin_arm_wsadh ((__v4hi)__A, (__v4hi)__B);
  816. }
  817. /* Compute the sum of the absolute differences of the unsigned 8-bit
  818.    values in A and B.  Return the value in the lower 16-bit word; the
  819.    upper words are cleared.  */
  820. static __inline __m64
  821. _mm_sadz_pu8 (__m64 __A, __m64 __B)
  822. {
  823.   return (__m64) __builtin_arm_wsadbz ((__v8qi)__A, (__v8qi)__B);
  824. }
  825. /* Compute the sum of the absolute differences of the unsigned 16-bit
  826.    values in A and B.  Return the value in the lower 32-bit word; the
  827.    upper words are cleared.  */
  828. static __inline __m64
  829. _mm_sadz_pu16 (__m64 __A, __m64 __B)
  830. {
  831.   return (__m64) __builtin_arm_wsadhz ((__v4hi)__A, (__v4hi)__B);
  832. }
  833. static __inline __m64
  834. _mm_align_si64 (__m64 __A, __m64 __B, int __C)
  835. {
  836.   return (__m64) __builtin_arm_walign ((__v8qi)__A, (__v8qi)__B, __C);
  837. }
  838. /* Creates a 64-bit zero.  */
  839. static __inline __m64
  840. _mm_setzero_si64 (void)
  841. {
  842.   return __builtin_arm_wzero ();
  843. }
  844. /* Set and Get arbitrary iWMMXt Control registers.
  845.    Note only registers 0-3 and 8-11 are currently defined,
  846.    the rest are reserved.  */
  847. static __inline void
  848. _mm_setwcx (const int __regno, const int __value)
  849. {
  850.   switch (__regno)
  851.     {
  852.     case 0:  __builtin_arm_setwcx (0, __value); break;
  853.     case 1:  __builtin_arm_setwcx (1, __value); break;
  854.     case 2:  __builtin_arm_setwcx (2, __value); break;
  855.     case 3:  __builtin_arm_setwcx (3, __value); break;
  856.     case 8:  __builtin_arm_setwcx (8, __value); break;
  857.     case 9:  __builtin_arm_setwcx (9, __value); break;
  858.     case 10: __builtin_arm_setwcx (10, __value); break;
  859.     case 11: __builtin_arm_setwcx (11, __value); break;
  860.     default: break;
  861.     }
  862. }
  863. static __inline int
  864. _mm_getwcx (const int __regno)
  865. {
  866.   switch (__regno)
  867.     {
  868.     case 0:  return __builtin_arm_getwcx (0);
  869.     case 1:  return __builtin_arm_getwcx (1);
  870.     case 2:  return __builtin_arm_getwcx (2);
  871.     case 3:  return __builtin_arm_getwcx (3);
  872.     case 8:  return __builtin_arm_getwcx (8);
  873.     case 9:  return __builtin_arm_getwcx (9);
  874.     case 10: return __builtin_arm_getwcx (10);
  875.     case 11: return __builtin_arm_getwcx (11);
  876.     default: return 0;
  877.     }
  878. }
  879. /* Creates a vector of two 32-bit values; I0 is least significant.  */
  880. static __inline __m64
  881. _mm_set_pi32 (int __i1, int __i0)
  882. {
  883.   union {
  884.     __m64 __q;
  885.     struct {
  886.       unsigned int __i0;
  887.       unsigned int __i1;
  888.     } __s;
  889.   } __u;
  890.   __u.__s.__i0 = __i0;
  891.   __u.__s.__i1 = __i1;
  892.   return __u.__q;
  893. }
  894. /* Creates a vector of four 16-bit values; W0 is least significant.  */
  895. static __inline __m64
  896. _mm_set_pi16 (short __w3, short __w2, short __w1, short __w0)
  897. {
  898.   unsigned int __i1 = (unsigned short)__w3 << 16 | (unsigned short)__w2;
  899.   unsigned int __i0 = (unsigned short)__w1 << 16 | (unsigned short)__w0;
  900.   return _mm_set_pi32 (__i1, __i0);
  901.        
  902. }
  903. /* Creates a vector of eight 8-bit values; B0 is least significant.  */
  904. static __inline __m64
  905. _mm_set_pi8 (char __b7, char __b6, char __b5, char __b4,
  906.      char __b3, char __b2, char __b1, char __b0)
  907. {
  908.   unsigned int __i1, __i0;
  909.   __i1 = (unsigned char)__b7;
  910.   __i1 = __i1 << 8 | (unsigned char)__b6;
  911.   __i1 = __i1 << 8 | (unsigned char)__b5;
  912.   __i1 = __i1 << 8 | (unsigned char)__b4;
  913.   __i0 = (unsigned char)__b3;
  914.   __i0 = __i0 << 8 | (unsigned char)__b2;
  915.   __i0 = __i0 << 8 | (unsigned char)__b1;
  916.   __i0 = __i0 << 8 | (unsigned char)__b0;
  917.   return _mm_set_pi32 (__i1, __i0);
  918. }
  919. /* Similar, but with the arguments in reverse order.  */
  920. static __inline __m64
  921. _mm_setr_pi32 (int __i0, int __i1)
  922. {
  923.   return _mm_set_pi32 (__i1, __i0);
  924. }
  925. static __inline __m64
  926. _mm_setr_pi16 (short __w0, short __w1, short __w2, short __w3)
  927. {
  928.   return _mm_set_pi16 (__w3, __w2, __w1, __w0);
  929. }
  930. static __inline __m64
  931. _mm_setr_pi8 (char __b0, char __b1, char __b2, char __b3,
  932.       char __b4, char __b5, char __b6, char __b7)
  933. {
  934.   return _mm_set_pi8 (__b7, __b6, __b5, __b4, __b3, __b2, __b1, __b0);
  935. }
  936. /* Creates a vector of two 32-bit values, both elements containing I.  */
  937. static __inline __m64
  938. _mm_set1_pi32 (int __i)
  939. {
  940.   return _mm_set_pi32 (__i, __i);
  941. }
  942. /* Creates a vector of four 16-bit values, all elements containing W.  */
  943. static __inline __m64
  944. _mm_set1_pi16 (short __w)
  945. {
  946.   unsigned int __i = (unsigned short)__w << 16 | (unsigned short)__w;
  947.   return _mm_set1_pi32 (__i);
  948. }
  949. /* Creates a vector of four 16-bit values, all elements containing B.  */
  950. static __inline __m64
  951. _mm_set1_pi8 (char __b)
  952. {
  953.   unsigned int __w = (unsigned char)__b << 8 | (unsigned char)__b;
  954.   unsigned int __i = __w << 16 | __w;
  955.   return _mm_set1_pi32 (__i);
  956. }
  957. /* Convert an integer to a __m64 object.  */
  958. static __inline __m64
  959. _m_from_int (int __a)
  960. {
  961.   return (__m64)__a;
  962. }
  963. #define _m_packsswb _mm_packs_pi16
  964. #define _m_packssdw _mm_packs_pi32
  965. #define _m_packuswb _mm_packs_pu16
  966. #define _m_packusdw _mm_packs_pu32
  967. #define _m_packssqd _mm_packs_pi64
  968. #define _m_packusqd _mm_packs_pu64
  969. #define _mm_packs_si64 _mm_packs_pi64
  970. #define _mm_packs_su64 _mm_packs_pu64
  971. #define _m_punpckhbw _mm_unpackhi_pi8
  972. #define _m_punpckhwd _mm_unpackhi_pi16
  973. #define _m_punpckhdq _mm_unpackhi_pi32
  974. #define _m_punpcklbw _mm_unpacklo_pi8
  975. #define _m_punpcklwd _mm_unpacklo_pi16
  976. #define _m_punpckldq _mm_unpacklo_pi32
  977. #define _m_punpckehsbw _mm_unpackeh_pi8
  978. #define _m_punpckehswd _mm_unpackeh_pi16
  979. #define _m_punpckehsdq _mm_unpackeh_pi32
  980. #define _m_punpckehubw _mm_unpackeh_pu8
  981. #define _m_punpckehuwd _mm_unpackeh_pu16
  982. #define _m_punpckehudq _mm_unpackeh_pu32
  983. #define _m_punpckelsbw _mm_unpackel_pi8
  984. #define _m_punpckelswd _mm_unpackel_pi16
  985. #define _m_punpckelsdq _mm_unpackel_pi32
  986. #define _m_punpckelubw _mm_unpackel_pu8
  987. #define _m_punpckeluwd _mm_unpackel_pu16
  988. #define _m_punpckeludq _mm_unpackel_pu32
  989. #define _m_paddb _mm_add_pi8
  990. #define _m_paddw _mm_add_pi16
  991. #define _m_paddd _mm_add_pi32
  992. #define _m_paddsb _mm_adds_pi8
  993. #define _m_paddsw _mm_adds_pi16
  994. #define _m_paddsd _mm_adds_pi32
  995. #define _m_paddusb _mm_adds_pu8
  996. #define _m_paddusw _mm_adds_pu16
  997. #define _m_paddusd _mm_adds_pu32
  998. #define _m_psubb _mm_sub_pi8
  999. #define _m_psubw _mm_sub_pi16
  1000. #define _m_psubd _mm_sub_pi32
  1001. #define _m_psubsb _mm_subs_pi8
  1002. #define _m_psubsw _mm_subs_pi16
  1003. #define _m_psubuw _mm_subs_pi32
  1004. #define _m_psubusb _mm_subs_pu8
  1005. #define _m_psubusw _mm_subs_pu16
  1006. #define _m_psubusd _mm_subs_pu32
  1007. #define _m_pmaddwd _mm_madd_pi16
  1008. #define _m_pmadduwd _mm_madd_pu16
  1009. #define _m_pmulhw _mm_mulhi_pi16
  1010. #define _m_pmulhuw _mm_mulhi_pu16
  1011. #define _m_pmullw _mm_mullo_pi16
  1012. #define _m_pmacsw _mm_mac_pi16
  1013. #define _m_pmacuw _mm_mac_pu16
  1014. #define _m_pmacszw _mm_macz_pi16
  1015. #define _m_pmacuzw _mm_macz_pu16
  1016. #define _m_paccb _mm_acc_pu8
  1017. #define _m_paccw _mm_acc_pu16
  1018. #define _m_paccd _mm_acc_pu32
  1019. #define _m_pmia _mm_mia_si64
  1020. #define _m_pmiaph _mm_miaph_si64
  1021. #define _m_pmiabb _mm_miabb_si64
  1022. #define _m_pmiabt _mm_miabt_si64
  1023. #define _m_pmiatb _mm_miatb_si64
  1024. #define _m_pmiatt _mm_miatt_si64
  1025. #define _m_psllw _mm_sll_pi16
  1026. #define _m_psllwi _mm_slli_pi16
  1027. #define _m_pslld _mm_sll_pi32
  1028. #define _m_pslldi _mm_slli_pi32
  1029. #define _m_psllq _mm_sll_si64
  1030. #define _m_psllqi _mm_slli_si64
  1031. #define _m_psraw _mm_sra_pi16
  1032. #define _m_psrawi _mm_srai_pi16
  1033. #define _m_psrad _mm_sra_pi32
  1034. #define _m_psradi _mm_srai_pi32
  1035. #define _m_psraq _mm_sra_si64
  1036. #define _m_psraqi _mm_srai_si64
  1037. #define _m_psrlw _mm_srl_pi16
  1038. #define _m_psrlwi _mm_srli_pi16
  1039. #define _m_psrld _mm_srl_pi32
  1040. #define _m_psrldi _mm_srli_pi32
  1041. #define _m_psrlq _mm_srl_si64
  1042. #define _m_psrlqi _mm_srli_si64
  1043. #define _m_prorw _mm_ror_pi16
  1044. #define _m_prorwi _mm_rori_pi16
  1045. #define _m_prord _mm_ror_pi32
  1046. #define _m_prordi _mm_rori_pi32
  1047. #define _m_prorq _mm_ror_si64
  1048. #define _m_prorqi _mm_rori_si64
  1049. #define _m_pand _mm_and_si64
  1050. #define _m_pandn _mm_andnot_si64
  1051. #define _m_por _mm_or_si64
  1052. #define _m_pxor _mm_xor_si64
  1053. #define _m_pcmpeqb _mm_cmpeq_pi8
  1054. #define _m_pcmpeqw _mm_cmpeq_pi16
  1055. #define _m_pcmpeqd _mm_cmpeq_pi32
  1056. #define _m_pcmpgtb _mm_cmpgt_pi8
  1057. #define _m_pcmpgtub _mm_cmpgt_pu8
  1058. #define _m_pcmpgtw _mm_cmpgt_pi16
  1059. #define _m_pcmpgtuw _mm_cmpgt_pu16
  1060. #define _m_pcmpgtd _mm_cmpgt_pi32
  1061. #define _m_pcmpgtud _mm_cmpgt_pu32
  1062. #define _m_pextrb _mm_extract_pi8
  1063. #define _m_pextrw _mm_extract_pi16
  1064. #define _m_pextrd _mm_extract_pi32
  1065. #define _m_pextrub _mm_extract_pu8
  1066. #define _m_pextruw _mm_extract_pu16
  1067. #define _m_pextrud _mm_extract_pu32
  1068. #define _m_pinsrb _mm_insert_pi8
  1069. #define _m_pinsrw _mm_insert_pi16
  1070. #define _m_pinsrd _mm_insert_pi32
  1071. #define _m_pmaxsb _mm_max_pi8
  1072. #define _m_pmaxsw _mm_max_pi16
  1073. #define _m_pmaxsd _mm_max_pi32
  1074. #define _m_pmaxub _mm_max_pu8
  1075. #define _m_pmaxuw _mm_max_pu16
  1076. #define _m_pmaxud _mm_max_pu32
  1077. #define _m_pminsb _mm_min_pi8
  1078. #define _m_pminsw _mm_min_pi16
  1079. #define _m_pminsd _mm_min_pi32
  1080. #define _m_pminub _mm_min_pu8
  1081. #define _m_pminuw _mm_min_pu16
  1082. #define _m_pminud _mm_min_pu32
  1083. #define _m_pmovmskb _mm_movemask_pi8
  1084. #define _m_pmovmskw _mm_movemask_pi16
  1085. #define _m_pmovmskd _mm_movemask_pi32
  1086. #define _m_pshufw _mm_shuffle_pi16
  1087. #define _m_pavgb _mm_avg_pu8
  1088. #define _m_pavgw _mm_avg_pu16
  1089. #define _m_pavg2b _mm_avg2_pu8
  1090. #define _m_pavg2w _mm_avg2_pu16
  1091. #define _m_psadbw _mm_sad_pu8
  1092. #define _m_psadwd _mm_sad_pu16
  1093. #define _m_psadzbw _mm_sadz_pu8
  1094. #define _m_psadzwd _mm_sadz_pu16
  1095. #define _m_paligniq _mm_align_si64
  1096. #define _m_cvt_si2pi _mm_cvtsi64_m64
  1097. #define _m_cvt_pi2si _mm_cvtm64_si64
  1098. #endif /* _MMINTRIN_H_INCLUDED */