typed_arch 0.1.1

typed std::arch intrinsics
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
//! Streaming SIMD Extensions 2 (SSE2)

pub use arch::{_mm_clflush, _mm_lfence, _mm_mfence, _mm_pause, _mm_add_si64,
               _mm_and_si128, _mm_andnot_si128, _mm_bslli_si128,
               _mm_bsrli_si128, _mm_load_si128, _mm_loadu_si128,
               _mm_or_si128, _mm_setzero_si128, _mm_slli_si128,
               _mm_srli_si128, _mm_store_si128, _mm_storeu_si128,
               _mm_stream_si128, _mm_stream_si32, _mm_sub_si64,
               _mm_undefined_si128, _mm_xor_si128};
use mem::transmute;
use simd::*;

/// Add
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_add_epi8(a: i8x16, b: i8x16) -> i8x16 {
    transmute(::arch::_mm_add_epi8(transmute(a), transmute(b)))
}

/// Add
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_add_epi16(a: i16x8, b: i16x8) -> i16x8 {
    transmute(::arch::_mm_add_epi16(
        transmute(a),
        transmute(b),
    ))
}

/// Add
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_add_epi32(a: i32x4, b: i32x4) -> i32x4 {
    transmute(::arch::_mm_add_epi32(
        transmute(a),
        transmute(b),
    ))
}

/// Add
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_add_epi64(a: i64x2, b: i64x2) -> i64x2 {
    transmute(::arch::_mm_add_epi64(
        transmute(a),
        transmute(b),
    ))
}

/// Saturated add
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_adds_epi8(a: i8x16, b: i8x16) -> i8x16 {
    transmute(::arch::_mm_adds_epi8(
        transmute(a),
        transmute(b),
    ))
}

/// Saturated add
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_adds_epi16(a: i16x8, b: i16x8) -> i16x8 {
    transmute(::arch::_mm_adds_epi16(
        transmute(a),
        transmute(b),
    ))
}

/// Saturated add
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_adds_epu8(a: u8x16, b: u8x16) -> u8x16 {
    transmute(::arch::_mm_adds_epu8(
        transmute(a),
        transmute(b),
    ))
}

/// Saturated add
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_adds_epu16(a: u16x8, b: u16x8) -> u16x8 {
    transmute(::arch::_mm_adds_epu16(
        transmute(a),
        transmute(b),
    ))
}

/// Average
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_avg_epu8(a: u8x16, b: u8x16) -> u8x16 {
    transmute(::arch::_mm_avg_epu8(transmute(a), transmute(b)))
}

/// Average
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_avg_epu16(a: u16x8, b: u16x8) -> u16x8 {
    transmute(::arch::_mm_avg_epu16(
        transmute(a),
        transmute(b),
    ))
}

/// Multiply and horizontally add
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_madd_epi16(a: i16x8, b: i16x8) -> i32x4 {
    transmute(::arch::_mm_madd_epi16(
        transmute(a),
        transmute(b),
    ))
}

/// Max
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_max_epi16(a: i16x8, b: i16x8) -> i16x8 {
    transmute(::arch::_mm_max_epi16(
        transmute(a),
        transmute(b),
    ))
}

/// Max
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_max_epu8(a: u8x16, b: u8x16) -> u8x16 {
    transmute(::arch::_mm_max_epu8(transmute(a), transmute(b)))
}

/// Min
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_min_epi16(a: i16x8, b: i16x8) -> i16x8 {
    transmute(::arch::_mm_min_epi16(
        transmute(a),
        transmute(b),
    ))
}

/// Min
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_min_epu8(a: u8x16, b: u8x16) -> u8x16 {
    transmute(::arch::_mm_min_epu8(transmute(a), transmute(b)))
}

/// Multiply returning high 16 bits of the result.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_mulhi_epi16(a: i16x8, b: i16x8) -> i16x8 {
    transmute(::arch::_mm_mulhi_epi16(
        transmute(a),
        transmute(b),
    ))
}

/// Multiply returning high 16 bits of the result.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_mulhi_epu16(a: u16x8, b: u16x8) -> u16x8 {
    transmute(::arch::_mm_mulhi_epu16(
        transmute(a),
        transmute(b),
    ))
}

/// Multiply returning low 16 bits of the result.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_mullo_epi16(a: i16x8, b: i16x8) -> i16x8 {
    transmute(::arch::_mm_mullo_epi16(
        transmute(a),
        transmute(b),
    ))
}

/// Multiply the low unsigned 32-bit integers from each packed 64-bit element
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_mul_epu32(a: u32x4, b: u32x4) -> u64x2 {
    transmute(::arch::_mm_mul_epu32(
        transmute(a),
        transmute(b),
    ))
}

/// Sum absolute differences
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_sad_epu8(a: u8x16, b: u8x16) -> u64x2 {
    transmute(::arch::_mm_sad_epu8(transmute(a), transmute(b)))
}

/// Subtract
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_sub_epi8(a: i8x16, b: i8x16) -> i8x16 {
    transmute(::arch::_mm_sub_epi8(transmute(a), transmute(b)))
}

/// Subtract
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_sub_epi16(a: i16x8, b: i16x8) -> i16x8 {
    transmute(::arch::_mm_sub_epi16(
        transmute(a),
        transmute(b),
    ))
}

/// Subtract
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_sub_epi32(a: i32x4, b: i32x4) -> i32x4 {
    transmute(::arch::_mm_sub_epi32(
        transmute(a),
        transmute(b),
    ))
}

/// Subtract
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_sub_epi64(a: i64x2, b: i64x2) -> i64x2 {
    transmute(::arch::_mm_sub_epi64(
        transmute(a),
        transmute(b),
    ))
}

/// Saturated subtract
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_subs_epi8(a: i8x16, b: i8x16) -> i8x16 {
    transmute(::arch::_mm_subs_epi8(
        transmute(a),
        transmute(b),
    ))
}

/// Saturated subtract
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_subs_epi16(a: i16x8, b: i16x8) -> i16x8 {
    transmute(::arch::_mm_subs_epi16(
        transmute(a),
        transmute(b),
    ))
}

/// Saturated subtract
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_subs_epu8(a: u8x16, b: u8x16) -> u8x16 {
    transmute(::arch::_mm_subs_epu8(
        transmute(a),
        transmute(b),
    ))
}

/// Saturated subtract
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_subs_epu16(a: u16x8, b: u16x8) -> u16x8 {
    transmute(::arch::_mm_subs_epu16(
        transmute(a),
        transmute(b),
    ))
}

/// Left shift by `n` while shifting in zeros.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_slli_epi16(a: i16x8, n: i32) -> i16x8 {
    let a: ::arch::__m128i = transmute(a);
    let v = match n {
        0 => ::arch::_mm_slli_epi16(a, 0),
        1 => ::arch::_mm_slli_epi16(a, 1),
        2 => ::arch::_mm_slli_epi16(a, 2),
        3 => ::arch::_mm_slli_epi16(a, 3),
        4 => ::arch::_mm_slli_epi16(a, 4),
        5 => ::arch::_mm_slli_epi16(a, 5),
        6 => ::arch::_mm_slli_epi16(a, 6),
        7 => ::arch::_mm_slli_epi16(a, 7),
        _ => ::arch::_mm_slli_epi16(a, 8),
    };
    transmute(v)
}

/// Left shift by `n` while shifting in zeros.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_slli_epi32(a: i32x4, n: i32) -> i32x4 {
    let a: ::arch::__m128i = transmute(a);
    let v = match n {
        0 => ::arch::_mm_slli_epi32(a, 0),
        1 => ::arch::_mm_slli_epi32(a, 1),
        2 => ::arch::_mm_slli_epi32(a, 2),
        3 => ::arch::_mm_slli_epi32(a, 3),
        _ => ::arch::_mm_slli_epi32(a, 4),
    };
    transmute(v)
}

/// Left shift by `n` while shifting in zeros.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_slli_epi64(a: i64x2, n: i32) -> i64x2 {
    let a: ::arch::__m128i = transmute(a);
    let v = match n {
        0 => ::arch::_mm_slli_epi64(a, 0),
        1 => ::arch::_mm_slli_epi64(a, 1),
        _ => ::arch::_mm_slli_epi64(a, 2),
    };
    transmute(v)
}

/// Left shift (shifting in zeros).
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_sll_epi16(a: i16x8, b: i16x8) -> i16x8 {
    transmute(::arch::_mm_sll_epi16(
        transmute(a),
        transmute(b),
    ))
}

/// Left shift (shifting in zeros).
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_sll_epi32(a: i32x4, b: i32x4) -> i32x4 {
    transmute(::arch::_mm_sll_epi32(
        transmute(a),
        transmute(b),
    ))
}

/// Left shift (shifting in zeros).
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_sll_epi64(a: i64x2, b: i64x2) -> i64x2 {
    transmute(::arch::_mm_sll_epi64(
        transmute(a),
        transmute(b),
    ))
}

/// Right shift by `n` while shifting in sign bits.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_srai_epi16(a: i16x8, n: u8) -> i16x8 {
    let a: ::arch::__m128i = transmute(a);
    let v = match n {
        0 => ::arch::_mm_srai_epi16(a, 0),
        1 => ::arch::_mm_srai_epi16(a, 1),
        2 => ::arch::_mm_srai_epi16(a, 2),
        3 => ::arch::_mm_srai_epi16(a, 3),
        4 => ::arch::_mm_srai_epi16(a, 4),
        5 => ::arch::_mm_srai_epi16(a, 5),
        6 => ::arch::_mm_srai_epi16(a, 6),
        7 => ::arch::_mm_srai_epi16(a, 7),
        _ => ::arch::_mm_srai_epi16(a, 8),
    };
    transmute(v)
}

/// Right shift by `n` while shifting in sign bits.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_srai_epi32(a: i32x4, n: u8) -> i32x4 {
    let a: ::arch::__m128i = transmute(a);
    let v = match n {
        0 => ::arch::_mm_srai_epi32(a, 0),
        1 => ::arch::_mm_srai_epi32(a, 1),
        2 => ::arch::_mm_srai_epi32(a, 2),
        3 => ::arch::_mm_srai_epi32(a, 3),
        _ => ::arch::_mm_srai_epi32(a, 4),
    };
    transmute(v)
}

/// Right shift (shifting in sign bits).
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_sra_epi16(a: i16x8, b: i16x8) -> i16x8 {
    transmute(::arch::_mm_sra_epi16(
        transmute(a),
        transmute(b),
    ))
}

/// Right shift (shifting in sign bits).
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_sra_epi32(a: i32x4, b: i32x4) -> i32x4 {
    transmute(::arch::_mm_sra_epi32(
        transmute(a),
        transmute(b),
    ))
}

/// Right shift (shifting in zeros).
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_srl_epi16(a: i16x8, b: i16x8) -> i16x8 {
    transmute(::arch::_mm_srl_epi16(
        transmute(a),
        transmute(b),
    ))
}

/// Right shift (shifting in zeros).
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_srl_epi32(a: i32x4, b: i32x4) -> i32x4 {
    transmute(::arch::_mm_srl_epi32(
        transmute(a),
        transmute(b),
    ))
}

/// Right shift (shifting in zeros).
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_srl_epi64(a: i64x2, b: i64x2) -> i64x2 {
    transmute(::arch::_mm_srl_epi64(
        transmute(a),
        transmute(b),
    ))
}

/// Right shift by `n` while shifting in zeros.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_srli_epi16(a: i16x8, n: u8) -> i16x8 {
    let a: ::arch::__m128i = transmute(a);
    let v = match n {
        0 => ::arch::_mm_srli_epi16(a, 0),
        1 => ::arch::_mm_srli_epi16(a, 1),
        2 => ::arch::_mm_srli_epi16(a, 2),
        3 => ::arch::_mm_srli_epi16(a, 3),
        4 => ::arch::_mm_srli_epi16(a, 4),
        5 => ::arch::_mm_srli_epi16(a, 5),
        6 => ::arch::_mm_srli_epi16(a, 6),
        7 => ::arch::_mm_srli_epi16(a, 7),
        _ => ::arch::_mm_srli_epi16(a, 8),
    };
    transmute(v)
}

/// Right shift by `n` while shifting in zeros.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_srli_epi32(a: i32x4, n: u8) -> i32x4 {
    let a: ::arch::__m128i = transmute(a);
    let v = match n {
        0 => ::arch::_mm_srli_epi32(a, 0),
        1 => ::arch::_mm_srli_epi32(a, 1),
        2 => ::arch::_mm_srli_epi32(a, 2),
        3 => ::arch::_mm_srli_epi32(a, 3),
        _ => ::arch::_mm_srli_epi32(a, 4),
    };
    transmute(v)
}

/// Right shift by `n` while shifting in zeros.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_srli_epi64(a: i64x2, n: u8) -> i64x2 {
    let a: ::arch::__m128i = transmute(a);
    let v = match n {
        0 => ::arch::_mm_srli_epi64(a, 0),
        1 => ::arch::_mm_srli_epi64(a, 1),
        _ => ::arch::_mm_srli_epi64(a, 2),
    };
    transmute(v)
}

/// Equal
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_cmpeq_epi8(a: i8x16, b: i8x16) -> i8x16 {
    transmute(::arch::_mm_cmpeq_epi8(
        transmute(a),
        transmute(b),
    ))
}

/// Equal
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_cmpeq_epi16(a: i16x8, b: i16x8) -> i16x8 {
    transmute(::arch::_mm_cmpeq_epi16(
        transmute(a),
        transmute(b),
    ))
}

/// Equal
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_cmpeq_epi32(a: i32x4, b: i32x4) -> i32x4 {
    transmute(::arch::_mm_cmpeq_epi32(
        transmute(a),
        transmute(b),
    ))
}

/// Greater-than
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_cmpgt_epi8(a: i8x16, b: i8x16) -> i8x16 {
    transmute(::arch::_mm_cmpgt_epi8(
        transmute(a),
        transmute(b),
    ))
}

/// Greater-than
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_cmpgt_epi16(a: i16x8, b: i16x8) -> i16x8 {
    transmute(::arch::_mm_cmpgt_epi16(
        transmute(a),
        transmute(b),
    ))
}

/// Greater-than
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_cmpgt_epi32(a: i32x4, b: i32x4) -> i32x4 {
    transmute(::arch::_mm_cmpgt_epi32(
        transmute(a),
        transmute(b),
    ))
}

/// Less-than
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_cmplt_epi8(a: i8x16, b: i8x16) -> i8x16 {
    transmute(::arch::_mm_cmplt_epi8(
        transmute(a),
        transmute(b),
    ))
}

/// Less-than
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_cmplt_epi16(a: i16x8, b: i16x8) -> i16x8 {
    transmute(::arch::_mm_cmplt_epi16(
        transmute(a),
        transmute(b),
    ))
}

/// Less-than
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_cmplt_epi32(a: i32x4, b: i32x4) -> i32x4 {
    transmute(::arch::_mm_cmplt_epi32(
        transmute(a),
        transmute(b),
    ))
}

/// Converts lower two packed 32-bit integers in `a` to `f64`s.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_cvtepi32_pd(a: i32x4) -> f64x2 {
    transmute(::arch::_mm_cvtepi32_pd(transmute(a)))
}

/// Replaces lower element of `a` with `b`.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_cvtsi32_sd(a: f64x2, b: i32) -> f64x2 {
    transmute(::arch::_mm_cvtsi32_sd(transmute(a), b))
}

/// Conversion
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_cvtepi32_ps(a: i32x4) -> f32x4 {
    transmute(::arch::_mm_cvtepi32_ps(transmute(a)))
}

/// Conversion
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_cvtps_epi32(a: f32x4) -> i32x4 {
    transmute(::arch::_mm_cvtps_epi32(transmute(a)))
}

/// Instantiates `[a, 0, 0, 0]`
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_cvtsi32_si128(a: i32) -> i32x4 {
    transmute(::arch::_mm_cvtsi32_si128(transmute(a)))
}

/// Extracts lowest element of `a`.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_cvtsi128_si32(a: i32x4) -> i32 {
    ::arch::_mm_cvtsi128_si32(transmute(a))
}

/// Instantiate
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_set_epi64x(e1: i64, e0: i64) -> i64x2 {
    transmute(::arch::_mm_set_epi64x(e0, e1))
}

/// Instantiate
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_set_epi32(e3: i32, e2: i32, e1: i32, e0: i32) -> i32x4 {
    transmute(::arch::_mm_set_epi32(e0, e1, e2, e3))
}

/// Instantiate
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_set_epi16(
    e7: i16, e6: i16, e5: i16, e4: i16, e3: i16, e2: i16, e1: i16, e0: i16
) -> i16x8 {
    #[cfg_attr(rustfmt, rustfmt_skip)]
    transmute(::arch::_mm_set_epi16(
        e0, e1, e2, e3, e4, e5, e6, e7,
    ))
}

/// Instantiate
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_set_epi8(
    e15: i8, e14: i8, e13: i8, e12: i8, e11: i8, e10: i8, e9: i8, e8: i8,
    e7: i8, e6: i8, e5: i8, e4: i8, e3: i8, e2: i8, e1: i8, e0: i8,
) -> i8x16 {
    #[cfg_attr(rustfmt, rustfmt_skip)]
    transmute(::arch::_mm_set_epi8(
        e0, e1, e2, e3, e4, e5, e6, e7, e8, e9, e10, e11, e12, e13, e14, e15,
    ))
}

/// Broadcast `a` to all elements.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_set1_epi64x(a: i64) -> i64x2 {
    transmute(::arch::_mm_set1_epi64x(a))
}

/// Broadcast `a` to all elements.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_set1_epi32(a: i32) -> i32x4 {
    transmute(::arch::_mm_set1_epi32(a))
}

/// Broadcast `a` to all elements.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_set1_epi16(a: i16) -> i16x8 {
    transmute(::arch::_mm_set1_epi16(a))
}

/// Broadcast `a` to all elements.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_set1_epi8(a: i8) -> i8x16 {
    transmute(::arch::_mm_set1_epi8(a))
}

/// Instantiate with values in reverse order
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_setr_epi32(e3: i32, e2: i32, e1: i32, e0: i32) -> i32x4 {
    transmute(::arch::_mm_setr_epi32(e0, e1, e2, e3))
}

/// Instantiate with values in reverse order
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_setr_epi16(
    e7: i16, e6: i16, e5: i16, e4: i16, e3: i16, e2: i16, e1: i16, e0: i16
) -> i16x8 {
    #[cfg_attr(rustfmt, rustfmt_skip)]
    transmute(::arch::_mm_setr_epi16(
        e0, e1, e2, e3, e4, e5, e6, e7,
    ))
}

/// Instantiate with values in reverse order
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_setr_epi8(
    e15: i8, e14: i8, e13: i8, e12: i8, e11: i8, e10: i8, e9: i8, e8: i8,
    e7: i8, e6: i8, e5: i8, e4: i8, e3: i8, e2: i8, e1: i8, e0: i8,
) -> i8x16 {
    #[cfg_attr(rustfmt, rustfmt_skip)]
    transmute(::arch::_mm_setr_epi8(
        e0, e1, e2, e3, e4, e5, e6, e7, e8, e9, e10, e11, e12, e13, e14, e15,
    ))
}

/// Load 64-bit integer from memory into first element of returned vector.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_loadl_epi64(mem_addr: *const i64x2) -> i64x2 {
    transmute(::arch::_mm_loadl_epi64(
        mem_addr as *const ::arch::__m128i,
    ))
}

/// Conditionally store elements from `a` into memory using `mask`.
///
/// Elements are not stored when the highest bit is not set in the
/// corresponding element.
///
/// `mem_addr` should correspond to a 128-bit memory location and does not need
/// to be aligned on any particular boundary.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_maskmoveu_si128(
    // FIXME: mask should be of type m8x16
    a: i8x16,
    mask: i8x16,
    mem_addr: *mut i8,
) {
    transmute(::arch::_mm_maskmoveu_si128(
        transmute(a),
        transmute(mask),
        mem_addr,
    ))
}

/// Store the lower integer of `a` to a memory location.
///
/// `mem_addr` does not need to be aligned on any particular boundary.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_storel_epi64(mem_addr: *mut i64x2, a: i64x2) {
    transmute(::arch::_mm_storel_epi64(
        transmute(mem_addr),
        transmute(a),
    ))
}

/// Instantiate vector with the low element extracted from `a` and its upper
/// element is zero.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_move_epi64(a: i64x2) -> i64x2 {
    transmute(::arch::_mm_move_epi64(transmute(a)))
}

/// Convert elements of `a` and `b` to 8-bit integers using signed saturation.
///
/// The converted elements of `a` and `b` are stored to the lower and upper
/// halves of the result, respectively.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_packs_epi16(a: i16x8, b: i16x8) -> i8x16 {
    transmute(::arch::_mm_packs_epi16(
        transmute(a),
        transmute(b),
    ))
}

/// Convert elements of `a` and `b` to 16-bit integers using signed saturation.
///
/// The converted elements of `a` and `b` are stored to the lower and upper
/// halves of the result, respectively.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_packs_epi32(a: i32x4, b: i32x4) -> i16x8 {
    transmute(::arch::_mm_packs_epi32(
        transmute(a),
        transmute(b),
    ))
}

/// Convert elements of `a` and `b` to 8-bit integers using unsigned saturation.
///
/// The converted elements of `a` and `b` are stored to the lower and upper
/// halves of the result, respectively.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_packus_epi16(a: i16x8, b: i16x8) -> u8x16 {
    transmute(::arch::_mm_packus_epi16(
        transmute(a),
        transmute(b),
    ))
}

/// Return the `i`-th element of `a`.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_extract_epi16(a: i16x8, i: u8) -> i16 {
    let a = transmute(a);
    let v = match i {
        0 => ::arch::_mm_extract_epi16(a, 0),
        1 => ::arch::_mm_extract_epi16(a, 1),
        2 => ::arch::_mm_extract_epi16(a, 2),
        3 => ::arch::_mm_extract_epi16(a, 3),
        4 => ::arch::_mm_extract_epi16(a, 4),
        5 => ::arch::_mm_extract_epi16(a, 5),
        6 => ::arch::_mm_extract_epi16(a, 6),
        7 => ::arch::_mm_extract_epi16(a, 7),
        _ => unreachable!(),
    };
    v as i16
}

/// Return a new vector where the `i`-th element of `a` is replaced with `v`.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_insert_epi16(a: i16x8, v: i16, i: u8) -> i16x8 {
    let a = transmute(a);
    let v = v as i32;
    let v = match i {
        0 => ::arch::_mm_insert_epi16(a, v, 0),
        1 => ::arch::_mm_insert_epi16(a, v, 1),
        2 => ::arch::_mm_insert_epi16(a, v, 2),
        3 => ::arch::_mm_insert_epi16(a, v, 3),
        4 => ::arch::_mm_insert_epi16(a, v, 4),
        5 => ::arch::_mm_insert_epi16(a, v, 5),
        6 => ::arch::_mm_insert_epi16(a, v, 6),
        7 => ::arch::_mm_insert_epi16(a, v, 7),
        _ => unreachable!(),
    };
    transmute(v)
}

/// Return a mask of the most significant bit of each element in `a`.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_movemask_epi8(a: i8x16) -> i16 {
    // FIXME: use m1x16
    ::arch::_mm_movemask_epi8(transmute(a)) as i16
}

/// Shuffle `a` using the `control`.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_shuffle_epi32(a: i32x4, control: u8) -> i32x4 {
    let a = transmute(a);
    macro_rules! call {
        ($i:expr) => {
            ::arch::_mm_shuffle_epi32(a, $i)
        };
    }
    let v = constify_imm8!(control, call);
    transmute(v)
}

/// Shuffle integers in the high 64 bits of `a` using the `control`
///
/// Put the results in the high 64 bits of the returned vector, with the low 64
/// bits being copied from from `a`.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_shufflehi_epi16(a: i16x8, control: u8) -> i16x8 {
    let a = transmute(a);
    macro_rules! call {
        ($i:expr) => {
            ::arch::_mm_shufflehi_epi16(a, $i)
        };
    }
    let v = constify_imm8!(control, call);
    transmute(v)
}

/// Shuffle integers in the low 64 bits of `a` using the `control`
///
/// Put the results in the low 64 bits of the returned vector, with the high 64
/// bits being copied from from `a`.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_shufflelo_epi16(a: i16x8, control: u8) -> i16x8 {
    let a = transmute(a);
    macro_rules! call {
        ($i:expr) => {
            ::arch::_mm_shufflelo_epi16(a, $i)
        };
    }
    let v = constify_imm8!(control, call);
    transmute(v)
}

/// Unpack and interleave integers from the high half of `a` and `b`.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_unpackhi_epi8(a: i8x16, b: i8x16) -> i8x16 {
    transmute(::arch::_mm_unpackhi_epi8(
        transmute(a),
        transmute(b),
    ))
}

/// Unpack and interleave integers from the high half of `a` and `b`.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_unpackhi_epi16(a: i16x8, b: i16x8) -> i16x8 {
    transmute(::arch::_mm_unpackhi_epi16(
        transmute(a),
        transmute(b),
    ))
}

/// Unpack and interleave integers from the high half of `a` and `b`.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_unpackhi_epi32(a: i32x4, b: i32x4) -> i32x4 {
    transmute(::arch::_mm_unpackhi_epi32(
        transmute(a),
        transmute(b),
    ))
}

/// Unpack and interleave integers from the high half of `a` and `b`.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_unpackhi_epi64(a: i64x2, b: i64x2) -> i64x2 {
    transmute(::arch::_mm_unpackhi_epi64(
        transmute(a),
        transmute(b),
    ))
}

/// Unpack and interleave integers from the low half of `a` and `b`.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_unpacklo_epi8(a: i8x16, b: i8x16) -> i8x16 {
    transmute(::arch::_mm_unpacklo_epi8(
        transmute(a),
        transmute(b),
    ))
}

/// Unpack and interleave integers from the low half of `a` and `b`.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_unpacklo_epi16(a: i16x8, b: i16x8) -> i16x8 {
    transmute(::arch::_mm_unpacklo_epi16(
        transmute(a),
        transmute(b),
    ))
}

/// Unpack and interleave integers from the low half of `a` and `b`.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_unpacklo_epi32(a: i32x4, b: i32x4) -> i32x4 {
    transmute(::arch::_mm_unpacklo_epi32(
        transmute(a),
        transmute(b),
    ))
}

/// Unpack and interleave integers from the low half of `a` and `b`.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_unpacklo_epi64(a: i64x2, b: i64x2) -> i64x2 {
    transmute(::arch::_mm_unpacklo_epi64(
        transmute(a),
        transmute(b),
    ))
}

/// Return a new vector with the low element of `a` replaced by the sum of the
/// low elements of `a` and `b`.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_add_sd(a: f64x2, b: f64x2) -> f64x2 {
    transmute(::arch::_mm_add_sd(transmute(a), transmute(b)))
}

/// Add packed double-precision (64-bit) floating-point elements in `a` and
/// `b`.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_add_pd(a: f64x2, b: f64x2) -> f64x2 {
    transmute(::arch::_mm_add_pd(transmute(a), transmute(b)))
}

/// Return a new vector with the low element of `a` replaced by the result of
/// diving the lower element of `a` by the lower element of `b`.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_div_sd(a: f64x2, b: f64x2) -> f64x2 {
    transmute(::arch::_mm_div_sd(transmute(a), transmute(b)))
}

/// Divide packed double-precision (64-bit) floating-point elements in `a` by
/// packed elements in `b`.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_div_pd(a: f64x2, b: f64x2) -> f64x2 {
    transmute(::arch::_mm_div_pd(transmute(a), transmute(b)))
}

/// Return a new vector with the low element of `a` replaced by the maximum
/// of the lower elements of `a` and `b`.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_max_sd(a: f64x2, b: f64x2) -> f64x2 {
    transmute(::arch::_mm_max_sd(transmute(a), transmute(b)))
}

/// Return a new vector with the maximum values from corresponding elements in
/// `a` and `b`.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_max_pd(a: f64x2, b: f64x2) -> f64x2 {
    transmute(::arch::_mm_max_pd(transmute(a), transmute(b)))
}

/// Return a new vector with the low element of `a` replaced by the minimum
/// of the lower elements of `a` and `b`.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_min_sd(a: f64x2, b: f64x2) -> f64x2 {
    transmute(::arch::_mm_min_sd(transmute(a), transmute(b)))
}

/// Return a new vector with the minimum values from corresponding elements in
/// `a` and `b`.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_min_pd(a: f64x2, b: f64x2) -> f64x2 {
    transmute(::arch::_mm_min_pd(transmute(a), transmute(b)))
}

/// Return a new vector with the low element of `a` replaced by multiplying the
/// low elements of `a` and `b`.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_mul_sd(a: f64x2, b: f64x2) -> f64x2 {
    transmute(::arch::_mm_mul_sd(transmute(a), transmute(b)))
}

/// Multiply packed double-precision (64-bit) floating-point elements in `a`
/// and `b`.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_mul_pd(a: f64x2, b: f64x2) -> f64x2 {
    transmute(::arch::_mm_mul_pd(transmute(a), transmute(b)))
}

/// Return a new vector with the low element of `a` replaced by the square
/// root of the lower element `b`.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_sqrt_sd(a: f64x2, b: f64x2) -> f64x2 {
    transmute(::arch::_mm_sqrt_sd(transmute(a), transmute(b)))
}

/// Return a new vector with the square root of each of the values in `a`.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_sqrt_pd(a: f64x2) -> f64x2 {
    transmute(::arch::_mm_sqrt_pd(transmute(a)))
}

/// Return a new vector with the low element of `a` replaced by subtracting the
/// low element by `b` from the low element of `a`.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_sub_sd(a: f64x2, b: f64x2) -> f64x2 {
    transmute(::arch::_mm_sub_sd(transmute(a), transmute(b)))
}

/// Subtract packed double-precision (64-bit) floating-point elements in `b`
/// from `a`.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_sub_pd(a: f64x2, b: f64x2) -> f64x2 {
    transmute(::arch::_mm_sub_pd(transmute(a), transmute(b)))
}

/// Compute the bitwise AND of packed double-precision (64-bit) floating-point
/// elements in `a` and `b`.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_and_pd(a: f64x2, b: f64x2) -> f64x2 {
    transmute(::arch::_mm_and_pd(transmute(a), transmute(b)))
}

/// Compute the bitwise NOT of `a` and then AND with `b`.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_andnot_pd(a: f64x2, b: f64x2) -> f64x2 {
    transmute(::arch::_mm_andnot_pd(
        transmute(a),
        transmute(b),
    ))
}

/// Compute the bitwise OR of `a` and `b`.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_or_pd(a: f64x2, b: f64x2) -> f64x2 {
    transmute(::arch::_mm_or_pd(transmute(a), transmute(b)))
}

/// Compute the bitwise OR of `a` and `b`.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_xor_pd(a: f64x2, b: f64x2) -> f64x2 {
    transmute(::arch::_mm_xor_pd(transmute(a), transmute(b)))
}

/// Return a new vector with the low element of `a` replaced by the equality
/// comparison of the lower elements of `a` and `b`.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_cmpeq_sd(a: f64x2, b: f64x2) -> f64x2 {
    transmute(::arch::_mm_cmpeq_sd(transmute(a), transmute(b)))
}

/// Return a new vector with the low element of `a` replaced by the less-than
/// comparison of the lower elements of `a` and `b`.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_cmplt_sd(a: f64x2, b: f64x2) -> f64x2 {
    transmute(::arch::_mm_cmplt_sd(transmute(a), transmute(b)))
}

/// Return a new vector with the low element of `a` replaced by the
/// less-than-or-equal comparison of the lower elements of `a` and `b`.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_cmple_sd(a: f64x2, b: f64x2) -> f64x2 {
    transmute(::arch::_mm_cmple_sd(transmute(a), transmute(b)))
}

/// Return a new vector with the low element of `a` replaced by the
/// greater-than comparison of the lower elements of `a` and `b`.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_cmpgt_sd(a: f64x2, b: f64x2) -> f64x2 {
    transmute(::arch::_mm_cmpgt_sd(transmute(a), transmute(b)))
}

/// Return a new vector with the low element of `a` replaced by the
/// greater-than-or-equal comparison of the lower elements of `a` and `b`.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_cmpge_sd(a: f64x2, b: f64x2) -> f64x2 {
    transmute(::arch::_mm_cmpge_sd(transmute(a), transmute(b)))
}

/// Return a new vector with the low element of `a` replaced by the result
/// of comparing both of the lower elements of `a` and `b` to `NaN`. If
/// neither are equal to `NaN` then `0xFFFFFFFFFFFFFFFF` is used and `0`
/// otherwise.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_cmpord_sd(a: f64x2, b: f64x2) -> f64x2 {
    transmute(::arch::_mm_cmpord_sd(
        transmute(a),
        transmute(b),
    ))
}

/// Return a new vector with the low element of `a` replaced by the result of
/// comparing both of the lower elements of `a` and `b` to `NaN`. If either is
/// equal to `NaN` then `0xFFFFFFFFFFFFFFFF` is used and `0` otherwise.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_cmpunord_sd(a: f64x2, b: f64x2) -> f64x2 {
    transmute(::arch::_mm_cmpunord_sd(
        transmute(a),
        transmute(b),
    ))
}

/// Return a new vector with the low element of `a` replaced by the not-equal
/// comparison of the lower elements of `a` and `b`.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_cmpneq_sd(a: f64x2, b: f64x2) -> f64x2 {
    transmute(::arch::_mm_cmpneq_sd(
        transmute(a),
        transmute(b),
    ))
}

/// Return a new vector with the low element of `a` replaced by the
/// not-less-than comparison of the lower elements of `a` and `b`.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_cmpnlt_sd(a: f64x2, b: f64x2) -> f64x2 {
    transmute(::arch::_mm_cmpnlt_sd(
        transmute(a),
        transmute(b),
    ))
}

/// Return a new vector with the low element of `a` replaced by the
/// not-less-than-or-equal comparison of the lower elements of `a` and `b`.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_cmpnle_sd(a: f64x2, b: f64x2) -> f64x2 {
    transmute(::arch::_mm_cmpnle_sd(
        transmute(a),
        transmute(b),
    ))
}

/// Return a new vector with the low element of `a` replaced by the
/// not-greater-than comparison of the lower elements of `a` and `b`.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_cmpngt_sd(a: f64x2, b: f64x2) -> f64x2 {
    transmute(::arch::_mm_cmpngt_sd(
        transmute(a),
        transmute(b),
    ))
}

/// Return a new vector with the low element of `a` replaced by the
/// not-greater-than-or-equal comparison of the lower elements of `a` and `b`.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_cmpnge_sd(a: f64x2, b: f64x2) -> f64x2 {
    transmute(::arch::_mm_cmpnge_sd(
        transmute(a),
        transmute(b),
    ))
}

/// Compare corresponding elements in `a` and `b` for equality.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_cmpeq_pd(a: f64x2, b: f64x2) -> f64x2 {
    transmute(::arch::_mm_cmpeq_pd(transmute(a), transmute(b)))
}

/// Compare corresponding elements in `a` and `b` for less-than.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_cmplt_pd(a: f64x2, b: f64x2) -> f64x2 {
    transmute(::arch::_mm_cmplt_pd(transmute(a), transmute(b)))
}

/// Compare corresponding elements in `a` and `b` for less-than-or-equal
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_cmple_pd(a: f64x2, b: f64x2) -> f64x2 {
    transmute(::arch::_mm_cmple_pd(transmute(a), transmute(b)))
}

/// Compare corresponding elements in `a` and `b` for greater-than.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_cmpgt_pd(a: f64x2, b: f64x2) -> f64x2 {
    transmute(::arch::_mm_cmpgt_pd(transmute(a), transmute(b)))
}

/// Compare corresponding elements in `a` and `b` for greater-than-or-equal.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_cmpge_pd(a: f64x2, b: f64x2) -> f64x2 {
    transmute(::arch::_mm_cmpge_pd(transmute(a), transmute(b)))
}

/// Compare corresponding elements in `a` and `b` to see if neither is `NaN`.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_cmpord_pd(a: f64x2, b: f64x2) -> f64x2 {
    transmute(::arch::_mm_cmpord_pd(
        transmute(a),
        transmute(b),
    ))
}

/// Compare corresponding elements in `a` and `b` to see if either is `NaN`.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_cmpunord_pd(a: f64x2, b: f64x2) -> f64x2 {
    transmute(::arch::_mm_cmpunord_pd(
        transmute(a),
        transmute(b),
    ))
}

/// Compare corresponding elements in `a` and `b` for not-equal.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_cmpneq_pd(a: f64x2, b: f64x2) -> f64x2 {
    transmute(::arch::_mm_cmpneq_pd(
        transmute(a),
        transmute(b),
    ))
}

/// Compare corresponding elements in `a` and `b` for not-less-than.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_cmpnlt_pd(a: f64x2, b: f64x2) -> f64x2 {
    transmute(::arch::_mm_cmpnlt_pd(
        transmute(a),
        transmute(b),
    ))
}

/// Compare corresponding elements in `a` and `b` for not-less-than-or-equal.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_cmpnle_pd(a: f64x2, b: f64x2) -> f64x2 {
    transmute(::arch::_mm_cmpnle_pd(
        transmute(a),
        transmute(b),
    ))
}

/// Compare corresponding elements in `a` and `b` for not-greater-than.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_cmpngt_pd(a: f64x2, b: f64x2) -> f64x2 {
    transmute(::arch::_mm_cmpngt_pd(
        transmute(a),
        transmute(b),
    ))
}

/// Compare corresponding elements in `a` and `b` for
/// not-greater-than-or-equal.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_cmpnge_pd(a: f64x2, b: f64x2) -> f64x2 {
    transmute(::arch::_mm_cmpnge_pd(
        transmute(a),
        transmute(b),
    ))
}

/// Compare the lower element of `a` and `b` for equality.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_comieq_sd(a: f64x2, b: f64x2) -> bool {
    ::arch::_mm_comieq_sd(transmute(a), transmute(b)) != 0
}

/// Compare the lower element of `a` and `b` for less-than.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_comilt_sd(a: f64x2, b: f64x2) -> bool {
    ::arch::_mm_comilt_sd(transmute(a), transmute(b)) != 0
}

/// Compare the lower element of `a` and `b` for less-than-or-equal.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_comile_sd(a: f64x2, b: f64x2) -> bool {
    ::arch::_mm_comile_sd(transmute(a), transmute(b)) != 0
}

/// Compare the lower element of `a` and `b` for greater-than.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_comigt_sd(a: f64x2, b: f64x2) -> bool {
    ::arch::_mm_comigt_sd(transmute(a), transmute(b)) != 0
}

/// Compare the lower element of `a` and `b` for greater-than-or-equal.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_comige_sd(a: f64x2, b: f64x2) -> bool {
    ::arch::_mm_comige_sd(transmute(a), transmute(b)) != 0
}

/// Compare the lower element of `a` and `b` for not-equal.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_comineq_sd(a: f64x2, b: f64x2) -> bool {
    ::arch::_mm_comineq_sd(transmute(a), transmute(b)) != 0
}

/// Compare the lower element of `a` and `b` for equality.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_ucomieq_sd(a: f64x2, b: f64x2) -> bool {
    ::arch::_mm_ucomieq_sd(transmute(a), transmute(b)) != 0
}

/// Compare the lower element of `a` and `b` for less-than.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_ucomilt_sd(a: f64x2, b: f64x2) -> bool {
    ::arch::_mm_ucomilt_sd(transmute(a), transmute(b)) != 0
}

/// Compare the lower element of `a` and `b` for less-than-or-equal.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_ucomile_sd(a: f64x2, b: f64x2) -> bool {
    ::arch::_mm_ucomile_sd(transmute(a), transmute(b)) != 0
}

/// Compare the lower element of `a` and `b` for greater-than.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_ucomigt_sd(a: f64x2, b: f64x2) -> bool {
    ::arch::_mm_ucomigt_sd(transmute(a), transmute(b)) != 0
}

/// Compare the lower element of `a` and `b` for greater-than-or-equal.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_ucomige_sd(a: f64x2, b: f64x2) -> bool {
    ::arch::_mm_ucomige_sd(transmute(a), transmute(b)) != 0
}

/// Compare the lower element of `a` and `b` for not-equal.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_ucomineq_sd(a: f64x2, b: f64x2) -> bool {
    ::arch::_mm_ucomineq_sd(transmute(a), transmute(b)) != 0
}

/// Convert packed double-precision (64-bit) floating-point elements in "a" to
/// packed single-precision (32-bit) floating-point elements
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_cvtpd_ps(a: f64x2) -> f32x4 {
    transmute(::arch::_mm_cvtpd_ps(transmute(a)))
}

/// Convert packed single-precision (32-bit) floating-point elements in `a` to
/// packed double-precision (64-bit) floating-point elements.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_cvtps_pd(a: f32x4) -> f64x2 {
    transmute(::arch::_mm_cvtps_pd(transmute(a)))
}

/// Convert packed double-precision (64-bit) floating-point elements in `a` to
/// packed 32-bit integers.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_cvtpd_epi32(a: f64x2) -> i32x4 {
    transmute(::arch::_mm_cvtpd_epi32(transmute(a)))
}

/// Convert the lower double-precision (64-bit) floating-point element in a to
/// a 32-bit integer.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_cvtsd_si32(a: f64x2) -> i32 {
    transmute(::arch::_mm_cvtsd_si32(transmute(a)))
}

/// Convert the lower double-precision (64-bit) floating-point element in `b`
/// to a single-precision (32-bit) floating-point element, store the result in
/// the lower element of the return value, and copy the upper element from `a`
/// to the upper element the return value.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_cvtsd_ss(a: f32x4, b: f64x2) -> f32x4 {
    transmute(::arch::_mm_cvtsd_ss(transmute(a), transmute(b)))
}

/// Return the lower double-precision (64-bit) floating-point element of "a".
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_cvtsd_f64(a: f64x2) -> f64 {
    transmute(::arch::_mm_cvtsd_f64(transmute(a)))
}

/// Convert the lower single-precision (32-bit) floating-point element in `b`
/// to a double-precision (64-bit) floating-point element, store the result in
/// the lower element of the return value, and copy the upper element from `a`
/// to the upper element the return value.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_cvtss_sd(a: f64x2, b: f32x4) -> f64x2 {
    transmute(::arch::_mm_cvtss_sd(transmute(a), transmute(b)))
}

/// Convert packed double-precision (64-bit) floating-point elements in `a` to
/// packed 32-bit integers with truncation.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_cvttpd_epi32(a: f64x2) -> i32x4 {
    transmute(::arch::_mm_cvttpd_epi32(transmute(a)))
}

/// Convert the lower double-precision (64-bit) floating-point element in `a`
/// to a 32-bit integer with truncation.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_cvttsd_si32(a: f64x2) -> i32 {
    transmute(::arch::_mm_cvttsd_si32(transmute(a)))
}

/// Convert packed single-precision (32-bit) floating-point elements in `a` to
/// packed 32-bit integers with truncation.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_cvttps_epi32(a: f32x4) -> i32x4 {
    transmute(::arch::_mm_cvttps_epi32(transmute(a)))
}

/// Copy double-precision (64-bit) floating-point element `a` to the lower
/// element of the packed 64-bit return value.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_set_sd(a: f64) -> f64x2 {
    transmute(::arch::_mm_set_sd(a))
}

/// Broadcast double-precision (64-bit) floating-point value a to all elements
/// of the return value.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_set1_pd(a: f64) -> f64x2 {
    transmute(::arch::_mm_set1_pd(a))
}

/// Broadcast double-precision (64-bit) floating-point value a to all elements
/// of the return value.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_set_pd1(a: f64) -> f64x2 {
    transmute(::arch::_mm_set_pd1(a))
}

/// Set packed double-precision (64-bit) floating-point elements in the return
/// value with the supplied values.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_set_pd(a: f64, b: f64) -> f64x2 {
    transmute(::arch::_mm_set_pd(a, b))
}

/// Set packed double-precision (64-bit) floating-point elements in the return
/// value with the supplied values in reverse order.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_setr_pd(a: f64, b: f64) -> f64x2 {
    transmute(::arch::_mm_setr_pd(a, b))
}

/// Returns packed double-precision (64-bit) floating-point elements with all
/// zeros.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_setzero_pd() -> f64x2 {
    transmute(::arch::_mm_setzero_pd())
}

/// Return a mask of the most significant bit of each element in `a`.
///
/// The mask is stored in the 2 least significant bits of the return value.
/// All other bits are set to `0`.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_movemask_pd(a: f64x2) -> i32 {
    transmute(::arch::_mm_movemask_pd(transmute(a)))
}

/// Load 128-bits (composed of 2 packed double-precision (64-bit)
/// floating-point elements) from memory into the returned vector.
/// `mem_addr` must be aligned on a 16-byte boundary or a general-protection
/// exception may be generated.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_load_pd(mem_addr: *const f64x2) -> f64x2 {
    transmute(::arch::_mm_load_pd(transmute(mem_addr)))
}

/// Loads a 64-bit double-precision value to the low element of a
/// 128-bit integer vector and clears the upper element.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_load_sd(mem_addr: *const f64) -> f64x2 {
    transmute(::arch::_mm_load_pd(mem_addr))
}

/// Loads a double-precision value into the high-order bits of a 128-bit
/// vector of [2 x double]. The low-order bits are copied from the low-order
/// bits of the first operand.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_loadh_pd(a: f64x2, mem_addr: *const f64) -> f64x2 {
    transmute(::arch::_mm_loadh_pd(transmute(a), mem_addr))
}

/// Loads a double-precision value into the low-order bits of a 128-bit
/// vector of [2 x double]. The high-order bits are copied from the
/// high-order bits of the first operand.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_loadl_pd(a: f64x2, mem_addr: *const f64) -> f64x2 {
    transmute(::arch::_mm_loadl_pd(transmute(a), mem_addr))
}

/// Stores a 128-bit floating point vector of [2 x double] to a 128-bit
/// aligned memory location.
/// To minimize caching, the data is flagged as non-temporal (unlikely to be
/// used again soon).
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_stream_pd(mem_addr: *mut f64x2, a: f64x2) {
    ::arch::_mm_stream_pd(transmute(mem_addr), transmute(a))
}

/// Stores the lower 64 bits of a 128-bit vector of [2 x double] to a
/// memory location.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_store_sd(mem_addr: *mut f64, a: f64x2) {
    ::arch::_mm_store_sd(mem_addr, transmute(a))
}

/// Store 128-bits (composed of 2 packed double-precision (64-bit)
/// floating-point elements) from `a` into memory. `mem_addr` must be aligned
/// on a 16-byte boundary or a general-protection exception may be generated.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_store_pd(mem_addr: *mut f64x2, a: f64x2) {
    ::arch::_mm_store_pd(transmute(mem_addr), transmute(a))
}

/// Store 128-bits (composed of 2 packed double-precision (64-bit)
/// floating-point elements) from `a` into memory.
/// `mem_addr` does not need to be aligned on any particular boundary.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_storeu_pd(mem_addr: *mut f64, a: f64x2) {
    ::arch::_mm_storeu_pd(mem_addr, transmute(a))
}

/// Store the lower double-precision (64-bit) floating-point element from `a`
/// into 2 contiguous elements in memory. `mem_addr` must be aligned on a
/// 16-byte boundary or a general-protection exception may be generated.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_store1_pd(mem_addr: *mut f64x2, a: f64x2) {
    ::arch::_mm_store1_pd(transmute(mem_addr), transmute(a))
}

/// Store the lower double-precision (64-bit) floating-point element from `a`
/// into 2 contiguous elements in memory. `mem_addr` must be aligned on a
/// 16-byte boundary or a general-protection exception may be generated.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_store_pd1(mem_addr: *mut f64x2, a: f64x2) {
    ::arch::_mm_store1_pd(transmute(mem_addr), transmute(a))
}

/// Store 2 double-precision (64-bit) floating-point elements from `a` into
/// memory in reverse order.
/// `mem_addr` must be aligned on a 16-byte boundary or a general-protection
/// exception may be generated.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_storer_pd(mem_addr: *mut f64x2, a: f64x2) {
    ::arch::_mm_storer_pd(transmute(mem_addr), transmute(a))
}

/// Stores the upper 64 bits of a 128-bit vector of [2 x double] to a
/// memory location.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_storeh_pd(mem_addr: *mut f64, a: f64x2) {
    ::arch::_mm_storeh_pd(mem_addr, transmute(a))
}

/// Stores the lower 64 bits of a 128-bit vector of [2 x double] to a
/// memory location.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_storel_pd(mem_addr: *mut f64, a: f64x2) {
    ::arch::_mm_storel_pd(mem_addr, transmute(a))
}

/// Load a double-precision (64-bit) floating-point element from memory
/// into both elements of returned vector.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_load1_pd(mem_addr: *const f64) -> f64x2 {
    transmute(::arch::_mm_load1_pd(mem_addr))
}

/// Load a double-precision (64-bit) floating-point element from memory
/// into both elements of returned vector.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_load_pd1(mem_addr: *const f64) -> f64x2 {
    transmute(::arch::_mm_load_pd1(mem_addr))
}

/// Load 2 double-precision (64-bit) floating-point elements from memory into
/// the returned vector in reverse order. `mem_addr` must be aligned on a
/// 16-byte boundary or a general-protection exception may be generated.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_loadr_pd(mem_addr: *const f64x2) -> f64x2 {
    transmute(::arch::_mm_loadr_pd(transmute(mem_addr)))
}

/// Load 128-bits (composed of 2 packed double-precision (64-bit)
/// floating-point elements) from memory into the returned vector.
/// `mem_addr` does not need to be aligned on any particular boundary.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_loadu_pd(mem_addr: *const f64) -> f64x2 {
    transmute(::arch::_mm_loadu_pd(mem_addr))
}

/// Constructs a 128-bit floating-point vector of [2 x double] from two
/// 128-bit vector parameters of [2 x double], using the `control`.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_shuffle_pd(a: f64x2, b: f64x2, control: u8) -> f64x2 {
    let a = transmute(a);
    let b = transmute(b);
    let v = match control & 0b11 {
        0b00 => ::arch::_mm_shuffle_pd(a, b, 0b00),
        0b01 => ::arch::_mm_shuffle_pd(a, b, 0b01),
        0b10 => ::arch::_mm_shuffle_pd(a, b, 0b10),
        0b11 => ::arch::_mm_shuffle_pd(a, b, 0b11),
        _ => unreachable!(),
    };
    transmute(v)
}

/// Constructs a 128-bit floating-point vector of [2 x double]. The lower
/// 64 bits are set to the lower 64 bits of the second parameter. The upper
/// 64 bits are set to the upper 64 bits of the first parameter.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_move_sd(a: f64x2, b: f64x2) -> f64x2 {
    transmute(::arch::_mm_move_sd(transmute(a), transmute(b)))
}

/// Casts a 128-bit floating-point vector of [2 x double] into a 128-bit
/// floating-point vector of [4 x float].
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_castpd_ps(a: f64x2) -> f32x4 {
    transmute(::arch::_mm_castpd_ps(transmute(a)))
}

/// Casts a 128-bit floating-point vector of [2 x double] into a 128-bit
/// integer vector.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_castpd_si128(a: f64x2) -> ::arch::__m128i {
    ::arch::_mm_castpd_si128(transmute(a))
}

/// Casts a 128-bit floating-point vector of [4 x float] into a 128-bit
/// floating-point vector of [2 x double].
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_castps_pd(a: f32x4) -> f64x2 {
    transmute(::arch::_mm_castps_pd(transmute(a)))
}

/// Casts a 128-bit floating-point vector of [4 x float] into a 128-bit
/// integer vector.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_castps_si128(a: f32x4) -> ::arch::__m128i {
    ::arch::_mm_castps_si128(transmute(a))
}

/// Casts a 128-bit integer vector into a 128-bit floating-point vector
/// of [2 x double].
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_castsi128_pd(a: ::arch::__m128i) -> f64x2 {
    transmute(::arch::_mm_castsi128_pd(a))
}

/// Casts a 128-bit integer vector into a 128-bit floating-point vector
/// of [4 x float].
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_castsi128_ps(a: ::arch::__m128i) -> f32x4 {
    transmute(::arch::_mm_castsi128_ps(a))
}

/// Return vector of type f64x2 with undefined elements.
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_undefined_pd() -> f64x2 {
    transmute(::arch::_mm_undefined_pd())
}

/// The resulting `f64x2` element is composed by the low-order values of
/// the two `f64x2` interleaved input elements, i.e.:
///
/// * The [127:64] bits are copied from the [127:64] bits of the second input
/// * The [63:0] bits are copied from the [127:64] bits of the first input
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_unpackhi_pd(a: f64x2, b: f64x2) -> f64x2 {
    transmute(::arch::_mm_unpackhi_pd(
        transmute(a),
        transmute(b),
    ))
}

/// The resulting `f64x2` element is composed by the high-order values of
/// the two `f64x2` interleaved input elements, i.e.:
///
/// * The [127:64] bits are copied from the [63:0] bits of the second input
/// * The [63:0] bits are copied from the [63:0] bits of the first input
#[inline]
#[target_feature(enable = "sse2")]
pub unsafe fn _mm_unpacklo_pd(a: f64x2, b: f64x2) -> f64x2 {
    transmute(::arch::_mm_unpacklo_pd(
        transmute(a),
        transmute(b),
    ))
}

/// Multiplies 32-bit unsigned integer values contained in the lower bits
/// of the two 64-bit integer vectors and returns the 64-bit unsigned
/// product.
#[inline]
#[target_feature(enable = "sse2,mmx")]
pub unsafe fn _mm_mul_su32(a: u32x2, b: u32x2) -> u64 {
    transmute(::arch::_mm_mul_su32(transmute(a), transmute(b)))
}

/// Converts the two signed 32-bit integer elements of a 64-bit vector of
/// [2 x i32] into two double-precision floating-point values, returned in a
/// 128-bit vector of [2 x double].
#[inline]
#[target_feature(enable = "sse2,mmx")]
pub unsafe fn _mm_cvtpi32_pd(a: i32x2) -> f64x2 {
    transmute(::arch::_mm_cvtpi32_pd(transmute(a)))
}

/// Initializes both 64-bit values in a 128-bit vector of [2 x i64] with
/// the specified 64-bit integer values.
#[inline]
#[target_feature(enable = "sse2,mmx")]
pub unsafe fn _mm_set_epi64(e1: i64, e0: i64) -> i64x2 {
    transmute(::arch::_mm_set_epi64(
        transmute(e1),
        transmute(e0),
    ))
}

/// Initializes both values in a 128-bit vector of [2 x i64] with the
/// specified 64-bit value.
#[inline]
#[target_feature(enable = "sse2,mmx")]
pub unsafe fn _mm_set1_epi64(a: i64) -> i64x2 {
    transmute(::arch::_mm_set1_epi64(transmute(a)))
}

/// Constructs a 128-bit integer vector, initialized in reverse order
/// with the specified 64-bit integral values.
#[inline]
#[target_feature(enable = "sse2,mmx")]
pub unsafe fn _mm_setr_epi64(e1: i64, e0: i64) -> i64x2 {
    transmute(::arch::_mm_setr_epi64(
        transmute(e1),
        transmute(e0),
    ))
}

/// Returns the lower 64 bits of a 128-bit integer vector as a 64-bit
/// integer.
#[inline]
#[target_feature(enable = "sse2,mmx")]
pub unsafe fn _mm_movepi64_pi64(a: i64x2) -> i64 {
    transmute(::arch::_mm_movepi64_pi64(transmute(a)))
}

/// Moves the 64-bit operand to a 128-bit integer vector, zeroing the
/// upper bits.
#[inline]
#[target_feature(enable = "sse2,mmx")]
pub unsafe fn _mm_movpi64_epi64(a: i64) -> i64x2 {
    transmute(::arch::_mm_movpi64_epi64(transmute(a)))
}

/// Converts the two double-precision floating-point elements of a
/// 128-bit vector of [2 x double] into two signed 32-bit integer values,
/// returned in a 64-bit vector of [2 x i32].
#[inline]
#[target_feature(enable = "sse2,mmx")]
pub unsafe fn _mm_cvtpd_pi32(a: f64x2) -> i32x2 {
    transmute(::arch::_mm_cvtpd_pi32(transmute(a)))
}

/// Converts the two double-precision floating-point elements of a
/// 128-bit vector of [2 x double] into two signed 32-bit integer values,
/// returned in a 64-bit vector of [2 x i32].
/// If the result of either conversion is inexact, the result is truncated
/// (rounded towards zero) regardless of the current MXCSR setting.
#[inline]
#[target_feature(enable = "sse2,mmx")]
pub unsafe fn _mm_cvttpd_pi32(a: f64x2) -> i32x2 {
    transmute(::arch::_mm_cvttpd_pi32(transmute(a)))
}