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
// Copyright 2016 Eli Friedman.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.

#![allow(unused_variables)]

use conversions::Convert128;
use simd::x86::sse2::{Sse2I8x16, Sse2U8x16, Sse2I16x8, Sse2U16x8, Sse2F32x4, Sse2F64x2};
use simd::x86::sse2::Sse2U32x4;
use simd::x86::sse2::Sse2I32x4;
use __m128;
use __m128i;
use __m128d;
use simd::i32x4;
use simd::i16x8;
use simd::i8x16;
use simd::x86::sse2::bool64fx2;
use std::ptr::copy_nonoverlapping;
use std::mem::transmute;
use std::mem::uninitialized;
use simd_shuffle2;
use simd_shuffle4;
use simd_shuffle8;
use simd_shuffle16;

// Declarations copied from the llvmint crate.
#[allow(improper_ctypes)]
extern {
    #[link_name = "llvm.x86.sse2.sqrt.sd"]
    pub fn sse2_sqrt_sd(a: __m128d) -> __m128d;
    #[link_name = "llvm.x86.sse2.cvtsd2si"]
    pub fn sse2_cvtsd2si(a: __m128d) -> i32;
    #[link_name = "llvm.x86.sse2.cvttsd2si"]
    pub fn sse2_cvttsd2si(a: __m128d) -> i32;
    #[link_name = "llvm.x86.sse2.cvtsd2si64"]
    pub fn sse2_cvtsd2si64(a: __m128d) -> i64;
    #[link_name = "llvm.x86.sse2.cvttsd2si64"]
    pub fn sse2_cvttsd2si64(a: __m128d) -> i64;
    #[link_name = "llvm.x86.sse2.cvtpd2ps"]
    pub fn sse2_cvtpd2ps(a: __m128d) -> __m128;
    #[link_name = "llvm.x86.sse2.cvtps2dq"]
    pub fn sse2_cvtps2dq(a: __m128) -> i32x4;
    #[link_name = "llvm.x86.sse2.cvttps2dq"]
    pub fn sse2_cvttps2dq(a: __m128) -> i32x4;
    #[link_name = "llvm.x86.sse2.mfence"]
    pub fn sse2_mfence() ->();
    #[link_name = "llvm.x86.sse2.min.sd"]
    pub fn sse2_min_sd(a: __m128d, b: __m128d) -> __m128d;
    #[link_name = "llvm.x86.sse2.max.sd"]
    pub fn sse2_max_sd(a: __m128d, b: __m128d) -> __m128d;
    #[link_name = "llvm.x86.sse2.cmp.sd"]
    pub fn sse2_cmp_sd(a: __m128d, b: __m128d, c: i8) -> __m128d;
    #[link_name = "llvm.x86.sse2.comieq.sd"]
    pub fn sse2_comieq_sd(a: __m128d, b: __m128d) -> i32;
    #[link_name = "llvm.x86.sse2.comilt.sd"]
    pub fn sse2_comilt_sd(a: __m128d, b: __m128d) -> i32;
    #[link_name = "llvm.x86.sse2.comile.sd"]
    pub fn sse2_comile_sd(a: __m128d, b: __m128d) -> i32;
    #[link_name = "llvm.x86.sse2.comigt.sd"]
    pub fn sse2_comigt_sd(a: __m128d, b: __m128d) -> i32;
    #[link_name = "llvm.x86.sse2.comige.sd"]
    pub fn sse2_comige_sd(a: __m128d, b: __m128d) -> i32;
    #[link_name = "llvm.x86.sse2.comineq.sd"]
    pub fn sse2_comineq_sd(a: __m128d, b: __m128d) -> i32;
    #[link_name = "llvm.x86.sse2.ucomieq.sd"]
    pub fn sse2_ucomieq_sd(a: __m128d, b: __m128d) -> i32;
    #[link_name = "llvm.x86.sse2.ucomilt.sd"]
    pub fn sse2_ucomilt_sd(a: __m128d, b: __m128d) -> i32;
    #[link_name = "llvm.x86.sse2.ucomile.sd"]
    pub fn sse2_ucomile_sd(a: __m128d, b: __m128d) -> i32;
    #[link_name = "llvm.x86.sse2.ucomigt.sd"]
    pub fn sse2_ucomigt_sd(a: __m128d, b: __m128d) -> i32;
    #[link_name = "llvm.x86.sse2.ucomige.sd"]
    pub fn sse2_ucomige_sd(a: __m128d, b: __m128d) -> i32;
    #[link_name = "llvm.x86.sse2.ucomineq.sd"]
    pub fn sse2_ucomineq_sd(a: __m128d, b: __m128d) -> i32;
    #[link_name = "llvm.x86.sse2.cvtsi2sd"]
    pub fn sse2_cvtsi2sd(a: __m128d, b: i32) -> __m128d;
    #[link_name = "llvm.x86.sse2.cvtsi642sd"]
    pub fn sse2_cvtsi642sd(a: __m128d, b: i64) -> __m128d;
    #[link_name = "llvm.x86.sse2.pslli.w"]
    pub fn sse2_pslli_w(a: i16x8, b: i32) -> i16x8;
    #[link_name = "llvm.x86.sse2.pslli.d"]
    pub fn sse2_pslli_d(a: i32x4, b: i32) -> i32x4;
    #[link_name = "llvm.x86.sse2.pslli.q"]
    pub fn sse2_pslli_q(a: __m128i, b: i32) -> __m128i;
    #[link_name = "llvm.x86.sse2.psrli.w"]
    pub fn sse2_psrli_w(a: i16x8, b: i32) -> i16x8;
    #[link_name = "llvm.x86.sse2.psrli.d"]
    pub fn sse2_psrli_d(a: i32x4, b: i32) -> i32x4;
    #[link_name = "llvm.x86.sse2.psrli.q"]
    pub fn sse2_psrli_q(a: __m128i, b: i32) -> __m128i;
    #[link_name = "llvm.x86.sse2.psrai.w"]
    pub fn sse2_psrai_w(a: i16x8, b: i32) -> i16x8;
    #[link_name = "llvm.x86.sse2.psrai.d"]
    pub fn sse2_psrai_d(a: i32x4, b: i32) -> i32x4;
    #[link_name = "llvm.x86.sse2.psll.dq"]
    pub fn sse2_psll_dq(a: __m128i, b: i32) -> __m128i;
    #[link_name = "llvm.x86.sse2.psrl.dq"]
    pub fn sse2_psrl_dq(a: __m128i, b: i32) -> __m128i;
    #[link_name = "llvm.x86.sse2.psll.w"]
    pub fn sse2_psll_w(a: i16x8, b: i16x8) -> i16x8;
    #[link_name = "llvm.x86.sse2.psll.d"]
    pub fn sse2_psll_d(a: i32x4, b: i32x4) -> i32x4;
    #[link_name = "llvm.x86.sse2.psll.q"]
    pub fn sse2_psll_q(a: __m128i, b: __m128i) -> __m128i;
    #[link_name = "llvm.x86.sse2.psrl.w"]
    pub fn sse2_psrl_w(a: i16x8, b: i16x8) -> i16x8;
    #[link_name = "llvm.x86.sse2.psrl.d"]
    pub fn sse2_psrl_d(a: i32x4, b: i32x4) -> i32x4;
    #[link_name = "llvm.x86.sse2.psrl.q"]
    pub fn sse2_psrl_q(a: __m128i, b: __m128i) -> __m128i;
    #[link_name = "llvm.x86.sse2.psra.w"]
    pub fn sse2_psra_w(a: i16x8, b: i16x8) -> i16x8;
    #[link_name = "llvm.x86.sse2.psra.d"]
    pub fn sse2_psra_d(a: i32x4, b: i32x4) -> i32x4;
    #[link_name = "llvm.x86.sse2.clflush"]
    pub fn sse2_clflush(a: *mut i8) -> ();
    #[link_name = "llvm.x86.sse2.cvtdq2pd"]
    pub fn sse2_cvtdq2pd(a: i32x4) -> __m128d;
    #[link_name = "llvm.x86.sse2.cvtpd2dq"]
    pub fn sse2_cvtpd2dq(a: __m128d) -> i32x4;
    #[link_name = "llvm.x86.sse2.cvttpd2dq"]
    pub fn sse2_cvttpd2dq(a: __m128d) -> i32x4;
    #[link_name = "llvm.x86.sse2.cvtsd2ss"]
    pub fn sse2_cvtsd2ss(a: __m128, b: __m128d) -> __m128;
    #[link_name = "llvm.x86.sse2.cvtss2sd"]
    pub fn sse2_cvtss2sd(a: __m128d, b: __m128) -> __m128d;
    #[link_name = "llvm.x86.sse2.lfence"]
    pub fn sse2_lfence() -> ();
    #[link_name = "llvm.x86.sse2.pause"]
    pub fn sse2_pause() -> ();
    #[link_name = "llvm.x86.sse2.maskmov.dqu"]
    pub fn sse2_maskmov_dqu(a: i8x16, b: i8x16, c: *mut i8) -> ();
}

fn convert_bool64fx2_to_m128d(a: bool64fx2) -> __m128d {
    unsafe { transmute(a) }
}

/// paddw
#[inline]
pub fn _mm_add_epi16(a: __m128i, b: __m128i) -> __m128i {
    (a.as_i16x8() + b.as_i16x8()).as_i64x2()
}
/// paddd
#[inline]
pub fn _mm_add_epi32(a: __m128i, b: __m128i) -> __m128i {
    (a.as_i32x4() + b.as_i32x4()).as_i64x2()
}
/// paddq
#[inline]
pub fn _mm_add_epi64(a: __m128i, b: __m128i) -> __m128i {
    a + b
}
/// paddb
#[inline]
pub fn _mm_add_epi8(a: __m128i, b: __m128i) -> __m128i {
    (a.as_i8x16() + b.as_i8x16()).as_i64x2()
}
/// addpd
#[inline]
pub fn _mm_add_pd(a: __m128d, b: __m128d) -> __m128d {
    a + b
}
/// addsd
#[inline]
pub fn _mm_add_sd(a: __m128d, b: __m128d) -> __m128d {
    a.replace(0, a.extract(0) + b.extract(0))
}
/// paddsw
#[inline]
pub fn _mm_adds_epi16(a: __m128i, b: __m128i) -> __m128i {
    a.as_i16x8().adds(b.as_i16x8()).as_i64x2()
}
/// paddsb
#[inline]
pub fn _mm_adds_epi8(a: __m128i, b: __m128i) -> __m128i {
    a.as_i8x16().adds(b.as_i8x16()).as_i64x2()
}
/// paddusw
#[inline]
pub fn _mm_adds_epu16(a: __m128i, b: __m128i) -> __m128i {
    a.as_u16x8().adds(b.as_u16x8()).as_i64x2()
}
/// paddusb
#[inline]
pub fn _mm_adds_epu8(a: __m128i, b: __m128i) -> __m128i {
    a.as_u8x16().adds(b.as_u8x16()).as_i64x2()
}
/// andpd
#[inline]
pub fn _mm_and_pd(a: __m128d, b: __m128d) -> __m128d {
    (a.as_i64x2() & b.as_i64x2()).as_f64x2()
}
/// pand
#[inline]
pub fn _mm_and_si128(a: __m128i, b: __m128i) -> __m128i {
    a & b
}
/// andnpd
#[inline]
pub fn _mm_andnot_pd(a: __m128d, b: __m128d) -> __m128d {
    // FIXME: Not operator from simd doesn't get inlined?!
    ((a.as_i64x2() ^ __m128i::splat(!0)) & b.as_i64x2()).as_f64x2()
}
/// pandn
#[inline]
pub fn _mm_andnot_si128(a: __m128i, b: __m128i) -> __m128i {
    // FIXME: Not operator from simd doesn't get inlined?!
    (a ^ __m128i::splat(!0)) & b
}
/// pavgw
#[inline]
pub fn _mm_avg_epu16(a: __m128i, b: __m128i) -> __m128i {
    a.as_u16x8().avg(b.as_u16x8()).as_i64x2()
}
/// pavgb
#[inline]
pub fn _mm_avg_epu8(a: __m128i, b: __m128i) -> __m128i {
    a.as_u8x16().avg(b.as_u8x16()).as_i64x2()
}
/// pslldq
#[inline]
pub fn _mm_bslli_si128(a: __m128i, imm8: i32) -> __m128i {
    _mm_slli_si128(a, imm8)
}
/// psrldq
#[inline]
pub fn _mm_bsrli_si128(a: __m128i, imm8: i32) -> __m128i {
    _mm_srli_si128(a, imm8)
}
#[inline]
pub fn _mm_castpd_ps(a: __m128d) -> __m128 {
    a.as_f32x4()
}
#[inline]
pub fn _mm_castpd_si128(a: __m128d) -> __m128i {
    a.as_i64x2()
}
#[inline]
pub fn _mm_castps_pd(a: __m128) -> __m128d {
    a.as_f64x2()
}
#[inline]
pub fn _mm_castps_si128(a: __m128) -> __m128i {
    a.as_i64x2()
}
#[inline]
pub fn _mm_castsi128_pd(a: __m128i) -> __m128d {
    a.as_f64x2()
}
#[inline]
pub fn _mm_castsi128_ps(a: __m128i) -> __m128 {
    a.as_f32x4()
}
/// clflush
#[inline]
pub fn _mm_clflush(p: *const u8) {
    unsafe { sse2_clflush(p as *mut i8) }
}
/// pcmpeqw
#[inline]
pub fn _mm_cmpeq_epi16(a: __m128i, b: __m128i) -> __m128i {
    a.as_i16x8().eq(b.as_i16x8()).to_repr().as_i64x2()
}
/// pcmpeqd
#[inline]
pub fn _mm_cmpeq_epi32(a: __m128i, b: __m128i) -> __m128i {
    a.as_i32x4().eq(b.as_i32x4()).to_repr().as_i64x2()
}
/// pcmpeqb
#[inline]
pub fn _mm_cmpeq_epi8(a: __m128i, b: __m128i) -> __m128i {
    a.as_i8x16().eq(b.as_i8x16()).to_repr().as_i64x2()
}
/// cmppd
#[inline]
pub fn _mm_cmpeq_pd(a: __m128d, b: __m128d) -> __m128d {
    convert_bool64fx2_to_m128d(a.eq(b))
}
/// cmpsd
#[inline]
pub fn _mm_cmpeq_sd(a: __m128d, b: __m128d) -> __m128d {
    unsafe { sse2_cmp_sd(a, b, 0) }
}
/// cmppd
#[inline]
pub fn _mm_cmpge_pd(a: __m128d, b: __m128d) -> __m128d {
    convert_bool64fx2_to_m128d(a.ge(b))
}
/// cmpsd
#[inline]
pub fn _mm_cmpge_sd(a: __m128d, b: __m128d) -> __m128d {
    _mm_move_sd(a, _mm_cmple_sd(b, a))
}
/// pcmpgtw
#[inline]
pub fn _mm_cmpgt_epi16(a: __m128i, b: __m128i) -> __m128i {
    a.as_i16x8().gt(b.as_i16x8()).to_repr().as_i64x2()
}
/// pcmpgtd
#[inline]
pub fn _mm_cmpgt_epi32(a: __m128i, b: __m128i) -> __m128i {
    a.as_i32x4().gt(b.as_i32x4()).to_repr().as_i64x2()
}
/// pcmpgtb
#[inline]
pub fn _mm_cmpgt_epi8(a: __m128i, b: __m128i) -> __m128i {
    a.as_i8x16().gt(b.as_i8x16()).to_repr().as_i64x2()
}
/// cmppd
#[inline]
pub fn _mm_cmpgt_pd(a: __m128d, b: __m128d) -> __m128d {
    convert_bool64fx2_to_m128d(a.gt(b))
}
/// cmpsd
#[inline]
pub fn _mm_cmpgt_sd(a: __m128d, b: __m128d) -> __m128d {
    _mm_move_sd(a, _mm_cmplt_sd(b, a))
}
/// cmppd
#[inline]
pub fn _mm_cmple_pd(a: __m128d, b: __m128d) -> __m128d {
    convert_bool64fx2_to_m128d(a.le(b))
}
/// cmpsd
#[inline]
pub fn _mm_cmple_sd(a: __m128d, b: __m128d) -> __m128d {
    unsafe { sse2_cmp_sd(a, b, 2) }
}
/// pcmpgtw
#[inline]
pub fn _mm_cmplt_epi16(a: __m128i, b: __m128i) -> __m128i {
    _mm_cmpgt_epi16(b, a)
}
/// pcmpgtd
#[inline]
pub fn _mm_cmplt_epi32(a: __m128i, b: __m128i) -> __m128i {
    _mm_cmpgt_epi32(b, a)
}
/// pcmpgtb
#[inline]
pub fn _mm_cmplt_epi8(a: __m128i, b: __m128i) -> __m128i {
    _mm_cmpgt_epi8(b, a)
}
/// cmppd
#[inline]
pub fn _mm_cmplt_pd(a: __m128d, b: __m128d) -> __m128d {
    convert_bool64fx2_to_m128d(a.lt(b))
}
/// cmpsd
#[inline]
pub fn _mm_cmplt_sd(a: __m128d, b: __m128d) -> __m128d {
    unsafe { sse2_cmp_sd(a, b, 1) }
}
/// cmppd
#[inline]
pub fn _mm_cmpneq_pd(a: __m128d, b: __m128d) -> __m128d {
    convert_bool64fx2_to_m128d(a.ne(b))
}
/// cmpsd
#[inline]
pub fn _mm_cmpneq_sd(a: __m128d, b: __m128d) -> __m128d {
    unsafe { sse2_cmp_sd(a, b, 4) }
}
/// cmppd
#[inline]
pub fn _mm_cmpnge_pd(a: __m128d, b: __m128d) -> __m128d {
    convert_bool64fx2_to_m128d(a.lt(b) | (a.ne(a) | b.ne(b)))
}
/// cmpsd
#[inline]
pub fn _mm_cmpnge_sd(a: __m128d, b: __m128d) -> __m128d {
    _mm_move_sd(a, _mm_cmpnle_sd(b, a))
}
/// cmppd
#[inline]
pub fn _mm_cmpngt_pd(a: __m128d, b: __m128d) -> __m128d {
    convert_bool64fx2_to_m128d(a.le(b) | (a.ne(a) | b.ne(b)))
}
/// cmpsd
#[inline]
pub fn _mm_cmpngt_sd(a: __m128d, b: __m128d) -> __m128d {
    _mm_move_sd(a, _mm_cmpnlt_sd(b, a))
}
/// cmppd
#[inline]
pub fn _mm_cmpnle_pd(a: __m128d, b: __m128d) -> __m128d {
    convert_bool64fx2_to_m128d(a.gt(b) | (a.ne(a) | b.ne(b)))
}
/// cmpsd
#[inline]
pub fn _mm_cmpnle_sd(a: __m128d, b: __m128d) -> __m128d {
    unsafe { sse2_cmp_sd(a, b, 6) }
}
/// cmppd
#[inline]
pub fn _mm_cmpnlt_pd(a: __m128d, b: __m128d) -> __m128d {
    convert_bool64fx2_to_m128d(a.ge(b) | (a.ne(a) | b.ne(b)))
}
/// cmpsd
#[inline]
pub fn _mm_cmpnlt_sd(a: __m128d, b: __m128d) -> __m128d {
    unsafe { sse2_cmp_sd(a, b, 5) }
}
/// cmppd
#[inline]
pub fn _mm_cmpord_pd(a: __m128d, b: __m128d) -> __m128d {
    convert_bool64fx2_to_m128d(a.eq(a) & b.eq(b))
}
/// cmpsd
#[inline]
pub fn _mm_cmpord_sd(a: __m128d, b: __m128d) -> __m128d {
    unsafe { sse2_cmp_sd(a, b, 7) }
}
/// cmppd
#[inline]
pub fn _mm_cmpunord_pd(a: __m128d, b: __m128d) -> __m128d {
    convert_bool64fx2_to_m128d(a.ne(a) | b.ne(b))
}
/// cmpsd
#[inline]
pub fn _mm_cmpunord_sd(a: __m128d, b: __m128d) -> __m128d {
    unsafe { sse2_cmp_sd(a, b, 3) }
}
/// comisd
#[inline]
pub fn _mm_comieq_sd(a: __m128d, b: __m128d) -> i32 {
    unsafe { sse2_comieq_sd(a, b) }
}
/// comisd
#[inline]
pub fn _mm_comige_sd(a: __m128d, b: __m128d) -> i32 {
    unsafe { sse2_comige_sd(a, b) }
}
/// comisd
#[inline]
pub fn _mm_comigt_sd(a: __m128d, b: __m128d) -> i32 {
    unsafe { sse2_comigt_sd(a, b) }
}
/// comisd
#[inline]
pub fn _mm_comile_sd(a: __m128d, b: __m128d) -> i32 {
    unsafe { sse2_comile_sd(a, b) }
}
/// comisd
#[inline]
pub fn _mm_comilt_sd(a: __m128d, b: __m128d) -> i32 {
    unsafe { sse2_comilt_sd(a, b) }
}
/// comisd
#[inline]
pub fn _mm_comineq_sd(a: __m128d, b: __m128d) -> i32 {
    unsafe { sse2_comineq_sd(a, b) }
}
/// cvtdq2pd
#[inline]
pub fn _mm_cvtepi32_pd(a: __m128i) -> __m128d {
    unsafe { sse2_cvtdq2pd(a.as_i32x4()) }
}
/// cvtdq2ps
#[inline]
pub fn _mm_cvtepi32_ps(a: __m128i) -> __m128 {
    a.as_i32x4().to_f32()
}
/// cvtpd2dq
#[inline]
pub fn _mm_cvtpd_epi32(a: __m128d) -> __m128i {
    unsafe { sse2_cvtpd2dq(a).as_i64x2() }
}
/// cvtpd2ps
#[inline]
pub fn _mm_cvtpd_ps(a: __m128d) -> __m128 {
    unsafe { sse2_cvtpd2ps(a) }
}
/// cvtps2dq
#[inline]
pub fn _mm_cvtps_epi32(a: __m128) -> __m128i {
    unsafe { sse2_cvtps2dq(a).as_i64x2() }
}
/// cvtps2pd
#[inline]
pub fn _mm_cvtps_pd(a: __m128) -> __m128d {
    a.to_f64()
}
/// movsd
#[inline]
pub fn _mm_cvtsd_f64(a: __m128d) -> f64 {
    a.extract(0)
}
/// cvtsd2si
#[inline]
pub fn _mm_cvtsd_si32(a: __m128d) -> i32 {
    unsafe { sse2_cvtsd2si(a) }
}
/// cvtsd2si
#[inline]
#[cfg(target_pointer_width = "64")]
pub fn _mm_cvtsd_si64(a: __m128d) -> i64 {
    unsafe { sse2_cvtsd2si64(a) }
}
/// cvtsd2si
#[inline]
#[cfg(target_pointer_width = "64")]
pub fn _mm_cvtsd_si64x(a: __m128d) -> i64 {
    _mm_cvtsd_si64(a)
}
/// cvtsd2ss
#[inline]
pub fn _mm_cvtsd_ss(a: __m128, b: __m128d) -> __m128 {
    unsafe { sse2_cvtsd2ss(a, b) }
}
/// movd
#[inline]
pub fn _mm_cvtsi128_si32(a: __m128i) -> i32 {
    a.as_i32x4().extract(0)
}
/// movq
#[inline]
pub fn _mm_cvtsi128_si64(a: __m128i) -> i64 {
    a.extract(0)
}
/// movq
#[inline]
pub fn _mm_cvtsi128_si64x(a: __m128i) -> i64 {
    _mm_cvtsi128_si64(a)
}
/// cvtsi2sd
#[inline]
pub fn _mm_cvtsi32_sd(a: __m128d, b: i32) -> __m128d {
    unsafe { sse2_cvtsi2sd(a, b) }
}
/// movd
#[inline]
pub fn _mm_cvtsi32_si128(a: i32) -> __m128i {
    i32x4::new(a, 0, 0, 0).as_i64x2()
}
/// cvtsi2sd
#[inline]
#[cfg(target_pointer_width = "64")]
pub fn _mm_cvtsi64_sd(a: __m128d, b: i64) -> __m128d {
    unsafe { sse2_cvtsi642sd(a, b) }
}
/// movq
#[inline]
pub fn _mm_cvtsi64_si128(a: i64) -> __m128i {
    __m128i::new(a, 0)
}
/// cvtsi2sd
#[inline]
#[cfg(target_pointer_width = "64")]
pub fn _mm_cvtsi64x_sd(a: __m128d, b: i64) -> __m128d {
    _mm_cvtsi64_sd(a, b)
}
/// movq
#[inline]
pub fn _mm_cvtsi64x_si128(a: i64) -> __m128i {
    _mm_cvtsi64_si128(a)
}
/// cvtss2sd
#[inline]
pub fn _mm_cvtss_sd(a: __m128d, b: __m128) -> __m128d {
    unsafe { sse2_cvtss2sd(a, b) }
}
/// cvttpd2dq
#[inline]
pub fn _mm_cvttpd_epi32(a: __m128d) -> __m128i {
    unsafe { sse2_cvttpd2dq(a).as_i64x2() }
}
/// cvttps2dq
#[inline]
pub fn _mm_cvttps_epi32(a: __m128) -> __m128i {
    unsafe { sse2_cvttps2dq(a).as_i64x2() }
}
/// cvttsd2si
#[inline]
pub fn _mm_cvttsd_si32(a: __m128d) -> i32 {
    unsafe { sse2_cvttsd2si(a) }
}
/// cvttsd2si
#[inline]
#[cfg(target_pointer_width = "64")]
pub fn _mm_cvttsd_si64(a: __m128d) -> i64 {
    unsafe { sse2_cvttsd2si64(a) }
}
/// cvttsd2si
#[inline]
#[cfg(target_pointer_width = "64")]
pub fn _mm_cvttsd_si64x(a: __m128d) -> i64 {
    _mm_cvttsd_si64(a)
}
/// divpd
#[inline]
pub fn _mm_div_pd(a: __m128d, b: __m128d) -> __m128d {
    a / b
}
/// divsd
#[inline]
pub fn _mm_div_sd(a: __m128d, b: __m128d) -> __m128d {
    a.replace(0, a.extract(0) / b.extract(0))
}
/// pextrw
#[inline]
pub fn _mm_extract_epi16(a: __m128i, imm8: i32) -> i32 {
    a.as_i16x8().extract(imm8 as u32) as i32
}
/// pinsrw
#[inline]
pub fn _mm_insert_epi16(a: __m128i, i: i32, imm8: i32) -> __m128i {
    a.as_i16x8().replace(imm8 as u32, i as i16).as_i64x2()
}
/// lfence
#[inline]
pub fn _mm_lfence() {
    unsafe { sse2_lfence() }
}
/// movapd
#[inline]
pub unsafe fn _mm_load_pd(mem_addr: *const f64) -> __m128d {
    *(mem_addr as *const __m128d)
}
#[inline]
pub unsafe fn _mm_load_pd1(mem_addr: *const f64) -> __m128d {
    _mm_load1_pd(mem_addr)
}
/// movsd
#[inline]
pub unsafe fn _mm_load_sd(mem_addr: *const f64) -> __m128d {
    let mut r: f64 = uninitialized();
    copy_nonoverlapping(mem_addr as *const u8, &mut r as *mut f64 as *mut u8, 8);
    __m128d::new(r, 0.0)
}

/// movdqa
#[inline]
pub unsafe fn _mm_load_si128(mem_addr: *const __m128i) -> __m128i {
    *mem_addr
}
#[inline]
pub unsafe fn _mm_load1_pd(mem_addr: *const f64) -> __m128d {
    let mut r: f64 = uninitialized();
    copy_nonoverlapping(mem_addr as *const u8, &mut r as *mut f64 as *mut u8, 8);
    __m128d::splat(r)
}
/// movhpd
#[inline]
pub unsafe fn _mm_loadh_pd(a: __m128d, mem_addr: *const f64) -> __m128d {
    let mut r: f64 = uninitialized();
    copy_nonoverlapping(mem_addr as *const u8, &mut r as *mut f64 as *mut u8, 8);
    __m128d::new(a.extract(0), r)
}
/// movq
#[inline]
pub unsafe fn _mm_loadl_epi64(mem_addr: *const __m128i) -> __m128i {
    let mut r: i64 = uninitialized();
    copy_nonoverlapping(mem_addr as *const u8, &mut r as *mut i64 as *mut u8, 8);
    __m128i::new(r, 0)
}
/// movlpd
#[inline]
pub unsafe fn _mm_loadl_pd(a: __m128d, mem_addr: *const f64) -> __m128d {
    let mut r: f64 = uninitialized();
    copy_nonoverlapping(mem_addr as *const u8, &mut r as *mut f64 as *mut u8, 8);
    __m128d::new(r, 0.0)
}
#[inline]
pub unsafe fn _mm_loadr_pd(mem_addr: *const f64) -> __m128d {
    let r = _mm_load_pd(mem_addr);
    simd_shuffle2(r, r, [1, 0])
}
/// movupd
#[inline]
pub unsafe fn _mm_loadu_pd(mem_addr: *const f64) -> __m128d {
    let mut r: __m128d = uninitialized();
    copy_nonoverlapping(mem_addr as *const u8, &mut r as *mut __m128d as *mut u8, 16);
    r
}
/// movdqu
#[inline]
pub unsafe fn _mm_loadu_si128(mem_addr: *const __m128i) -> __m128i {
    let mut r: __m128i = uninitialized();
    copy_nonoverlapping(mem_addr as *const u8, &mut r as *mut __m128i as *mut u8, 16);
    r
}
/// pmaddwd
#[inline]
pub fn _mm_madd_epi16(a: __m128i, b: __m128i) -> __m128i {
    a.as_i16x8().madd(b.as_i16x8()).as_i64x2()
}
/// maskmovdqu
#[inline]
pub unsafe fn _mm_maskmoveu_si128(a: __m128i, mask: __m128i, mem_addr: *mut i8) {
    sse2_maskmov_dqu(a.as_i8x16(), mask.as_i8x16(), mem_addr)
}
/// pmaxsw
#[inline]
pub fn _mm_max_epi16(a: __m128i, b: __m128i) -> __m128i {
    a.as_i16x8().max(b.as_i16x8()).as_i64x2()
}
/// pmaxub
#[inline]
pub fn _mm_max_epu8(a: __m128i, b: __m128i) -> __m128i {
    a.as_u8x16().max(b.as_u8x16()).as_i64x2()
}
/// maxpd
#[inline]
pub fn _mm_max_pd(a: __m128d, b: __m128d) -> __m128d {
    a.max(b)
}
/// maxsd
#[inline]
pub fn _mm_max_sd(a: __m128d, b: __m128d) -> __m128d {
    unsafe { sse2_max_sd(a, b) }
}
/// mfence
#[inline]
pub fn _mm_mfence() {
    unsafe { sse2_mfence() }
}
/// pminsw
#[inline]
pub fn _mm_min_epi16(a: __m128i, b: __m128i) -> __m128i {
    a.as_i16x8().min(b.as_i16x8()).as_i64x2()
}
/// pminub
#[inline]
pub fn _mm_min_epu8(a: __m128i, b: __m128i) -> __m128i {
    a.as_u8x16().min(b.as_u8x16()).as_i64x2()
}
/// minpd
#[inline]
pub fn _mm_min_pd(a: __m128d, b: __m128d) -> __m128d {
    a.min(b)
}
/// minsd
#[inline]
pub fn _mm_min_sd(a: __m128d, b: __m128d) -> __m128d {
    unsafe { sse2_min_sd(a, b) }
}
/// movq
#[inline]
pub fn _mm_move_epi64(a: __m128i) -> __m128i {
    __m128i::new(a.extract(0), 0)
}
/// movsd
#[inline]
pub fn _mm_move_sd(a: __m128d, b: __m128d) -> __m128d {
    a.replace(0, b.extract(0))
}
/// pmovmskb
#[inline]
pub fn _mm_movemask_epi8(a: __m128i) -> i32 {
    a.as_u8x16().move_mask() as i32
}
/// movmskpd
#[inline]
pub fn _mm_movemask_pd(a: __m128d) -> i32 {
    a.move_mask() as i32
}
/// pmuludq
#[inline]
pub fn _mm_mul_epu32(a: __m128i, b: __m128i) -> __m128i {
    a.as_u32x4().low_mul(b.as_u32x4()).as_i64x2()
}
/// mulpd
#[inline]
pub fn _mm_mul_pd(a: __m128d, b: __m128d) -> __m128d {
    a * b
}
/// mulsd
#[inline]
pub fn _mm_mul_sd(a: __m128d, b: __m128d) -> __m128d {
    a.replace(0, a.extract(0) * b.extract(0))
}
/// pmulhw
#[inline]
pub fn _mm_mulhi_epi16(a: __m128i, b: __m128i) -> __m128i {
    a.as_i16x8().mulhi(b.as_i16x8()).as_i64x2()
}
/// pmulhuw
#[inline]
pub fn _mm_mulhi_epu16(a: __m128i, b: __m128i) -> __m128i {
    a.as_u16x8().mulhi(b.as_u16x8()).as_i64x2()
}
/// pmullw
#[inline]
pub fn _mm_mullo_epi16(a: __m128i, b: __m128i) -> __m128i {
    (a.as_i16x8() * b.as_i16x8()).as_i64x2()
}
/// orpd
#[inline]
pub fn _mm_or_pd(a: __m128d, b: __m128d) -> __m128d {
    (a.as_i64x2() | b.as_i64x2()).as_f64x2()
}
/// por
#[inline]
pub fn _mm_or_si128(a: __m128i, b: __m128i) -> __m128i {
    a | b
}
/// packsswb
#[inline]
pub fn _mm_packs_epi16(a: __m128i, b: __m128i) -> __m128i {
    a.as_i16x8().packs(b.as_i16x8()).as_i64x2()
}
/// packssdw
#[inline]
pub fn _mm_packs_epi32(a: __m128i, b: __m128i) -> __m128i {
    a.as_i32x4().packs(b.as_i32x4()).as_i64x2()
}
/// packuswb
#[inline]
pub fn _mm_packus_epi16(a: __m128i, b: __m128i) -> __m128i {
    a.as_i16x8().packus(b.as_i16x8()).as_i64x2()
}
/// pause
#[inline]
pub fn _mm_pause() {
    unsafe { sse2_pause() }
}
/// psadbw
#[inline]
pub fn _mm_sad_epu8(a: __m128i, b: __m128i) -> __m128i {
    a.as_u8x16().sad(b.as_u8x16()).as_i64x2()
}
#[inline]
pub fn _mm_set_epi16(e7: i16, e6: i16, e5: i16, e4: i16, e3: i16, e2: i16, e1: i16, e0: i16) -> __m128i {
    i16x8::new(e0, e1, e2, e3, e4, e5, e6, e7).as_i64x2()
}
#[inline]
pub fn _mm_set_epi32(e3: i32, e2: i32, e1: i32, e0: i32) -> __m128i {
    i32x4::new(e0, e1, e2, e3).as_i64x2()
}
#[inline]
pub fn _mm_set_epi64x(e1: i64, e0: i64) -> __m128i {
    __m128i::new(e0, e1)
}
#[inline]
pub 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) -> __m128i {
    i8x16::new(e0, e1, e2, e3, e4, e5, e6, e7, e8, e9, e10, e11, e12, e13, e14, e15).as_i64x2()
}
#[inline]
pub fn _mm_set_pd(e1: f64, e0: f64) -> __m128d {
    __m128d::new(e0, e1)
}
#[inline]
pub fn _mm_set_pd1(a: f64) -> __m128d {
    __m128d::new(a, a)
}
#[inline]
pub fn _mm_set_sd(a: f64) -> __m128d {
    __m128d::new(a, 0.)
}
#[inline]
pub fn _mm_set1_epi16(a: i16) -> __m128i {
    i16x8::splat(a).as_i64x2()
}
#[inline]
pub fn _mm_set1_epi32(a: i32) -> __m128i {
    i32x4::splat(a).as_i64x2()
}
#[inline]
pub fn _mm_set1_epi64x(a: i64) -> __m128i {
    __m128i::splat(a)
}
#[inline]
pub fn _mm_set1_epi8(a: i8) -> __m128i {
    i8x16::splat(a).as_i64x2()
}
#[inline]
pub fn _mm_set1_pd(a: f64) -> __m128d {
    __m128d::splat(a)
}
#[inline]
pub fn _mm_setr_epi16(e7: i16, e6: i16, e5: i16, e4: i16, e3: i16, e2: i16, e1: i16, e0: i16) -> __m128i {
    i16x8::new(e7, e6, e5, e4, e3, e2, e1, e0).as_i64x2()
}
#[inline]
pub fn _mm_setr_epi32(e3: i32, e2: i32, e1: i32, e0: i32) -> __m128i {
    i32x4::new(e3, e2, e1, e0).as_i64x2()
}
#[inline]
pub 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) -> __m128i {
    i8x16::new(e15, e14, e13, e12, e11, e10, e9, e8, e7, e6, e5, e4, e3, e2, e1, e0).as_i64x2()
}
#[inline]
pub fn _mm_setr_pd(e1: f64, e0: f64) -> __m128d {
    __m128d::new(e1, e0)
}
/// xorpd
#[inline]
pub fn _mm_setzero_pd() -> __m128d {
    __m128d::splat(0.)
}
/// pxor
#[inline]
pub fn _mm_setzero_si128() -> __m128i {
    __m128i::splat(0)
}
/// pshufd
#[inline]
pub fn _mm_shuffle_epi32(a: __m128i, imm8: i32) -> __m128i {
    // FIXME: We really want some way to enforce that the immediate
    // is actually a constant.
    // FIXME: Maybe it would be better to implement this on top of insert/extract?
    // FIXME: Mess with the macros a bit so we end up with a single match
    macro_rules! shuffle {
        ($a:expr, $b:expr, $c:expr, $d:expr) => {
            unsafe {
                simd_shuffle4(a.as_i32x4(), a.as_i32x4(), [$a, $b, $c, $d])
            }
        }
    }
    macro_rules! shuffle1 {
        ($a:expr, $b: expr, $c: expr) => {
            match (imm8 >> 6) & 3 {
                0 => shuffle!($a, $b, $c, 0),
                1 => shuffle!($a, $b, $c, 1),
                2 => shuffle!($a, $b, $c, 2),
                _ => shuffle!($a, $b, $c, 3),
            }
        }
    }
    macro_rules! shuffle2 {
        ($a:expr, $b:expr) => {
            match (imm8 >> 4) & 3 {
                0 => shuffle1!($a, $b, 0),
                1 => shuffle1!($a, $b, 1),
                2 => shuffle1!($a, $b, 2),
                _ => shuffle1!($a, $b, 3),
            }
        }
    }
    macro_rules! shuffle3 {
        ($a:expr) => {
            match (imm8 >> 2) & 3 {
                0 => shuffle2!($a, 0),
                1 => shuffle2!($a, 1),
                2 => shuffle2!($a, 2),
                _ => shuffle2!($a, 3),
            }
        }
    }
    macro_rules! shuffle4 {
        () => {
            match (imm8 >> 0) & 3 {
                0 => shuffle3!(0),
                1 => shuffle3!(1),
                2 => shuffle3!(2),
                _ => shuffle3!(3),
            }
        }
    }
    let r : i32x4 = shuffle4!();
    r.as_i64x2()
}
/// shufpd
#[inline]
pub fn _mm_shuffle_pd(a: __m128d, b: __m128d, imm8: i32) -> __m128d {
    unsafe {
        match imm8 {
            0 => simd_shuffle2(a, b, [0, 2]),
            1 => simd_shuffle2(a, b, [1, 2]),
            2 => simd_shuffle2(a, b, [0, 3]),
            _ => simd_shuffle2(a, b, [1, 3]),
        }
    }
}
/// pshufhw
#[inline]
pub fn _mm_shufflehi_epi16(a: __m128i, imm8: i32) -> __m128i {
    // FIXME: We really want some way to enforce that the immediate
    // is actually a constant.
    // FIXME: Maybe it would be better to implement this on top of insert/extract?
    // FIXME: Mess with the macros a bit so we end up with a single match
    macro_rules! shuffle {
        ($a:expr, $b:expr, $c:expr, $d:expr) => {
            unsafe {
                simd_shuffle8(a.as_i16x8(), a.as_i16x8(), [0, 1, 2, 3, $a+4, $b+4, $c+4, $d+4])
            }
        }
    }
    macro_rules! shuffle1 {
        ($a:expr, $b: expr, $c: expr) => {
            match (imm8 >> 6) & 3 {
                0 => shuffle!($a, $b, $c, 0),
                1 => shuffle!($a, $b, $c, 1),
                2 => shuffle!($a, $b, $c, 2),
                _ => shuffle!($a, $b, $c, 3),
            }
        }
    }
    macro_rules! shuffle2 {
        ($a:expr, $b:expr) => {
            match (imm8 >> 4) & 3 {
                0 => shuffle1!($a, $b, 0),
                1 => shuffle1!($a, $b, 1),
                2 => shuffle1!($a, $b, 2),
                _ => shuffle1!($a, $b, 3),
            }
        }
    }
    macro_rules! shuffle3 {
        ($a:expr) => {
            match (imm8 >> 2) & 3 {
                0 => shuffle2!($a, 0),
                1 => shuffle2!($a, 1),
                2 => shuffle2!($a, 2),
                _ => shuffle2!($a, 3),
            }
        }
    }
    macro_rules! shuffle4 {
        () => {
            match (imm8 >> 0) & 3 {
                0 => shuffle3!(0),
                1 => shuffle3!(1),
                2 => shuffle3!(2),
                _ => shuffle3!(3),
            }
        }
    }
    let r : i16x8 = shuffle4!();
    r.as_i64x2()
}
/// pshuflw
#[inline]
pub fn _mm_shufflelo_epi16(a: __m128i, imm8: i32) -> __m128i {
    // FIXME: We really want some way to enforce that the immediate
    // is actually a constant.
    // FIXME: Maybe it would be better to implement this on top of insert/extract?
    // FIXME: Mess with the macros a bit so we end up with a single match
    macro_rules! shuffle {
        ($a:expr, $b:expr, $c:expr, $d:expr) => {
            unsafe {
                simd_shuffle8(a.as_i16x8(), a.as_i16x8(), [$a, $b, $c, $d, 4, 5, 6, 7])
            }
        }
    }
    macro_rules! shuffle1 {
        ($a:expr, $b: expr, $c: expr) => {
            match (imm8 >> 6) & 3 {
                0 => shuffle!($a, $b, $c, 0),
                1 => shuffle!($a, $b, $c, 1),
                2 => shuffle!($a, $b, $c, 2),
                _ => shuffle!($a, $b, $c, 3),
            }
        }
    }
    macro_rules! shuffle2 {
        ($a:expr, $b:expr) => {
            match (imm8 >> 4) & 3 {
                0 => shuffle1!($a, $b, 0),
                1 => shuffle1!($a, $b, 1),
                2 => shuffle1!($a, $b, 2),
                _ => shuffle1!($a, $b, 3),
            }
        }
    }
    macro_rules! shuffle3 {
        ($a:expr) => {
            match (imm8 >> 2) & 3 {
                0 => shuffle2!($a, 0),
                1 => shuffle2!($a, 1),
                2 => shuffle2!($a, 2),
                _ => shuffle2!($a, 3),
            }
        }
    }
    macro_rules! shuffle4 {
        () => {
            match (imm8 >> 0) & 3 {
                0 => shuffle3!(0),
                1 => shuffle3!(1),
                2 => shuffle3!(2),
                _ => shuffle3!(3),
            }
        }
    }
    let r : i16x8 = shuffle4!();
    r.as_i64x2()
}
/// psllw
#[inline]
pub fn _mm_sll_epi16(a: __m128i, count: __m128i) -> __m128i {
    unsafe { sse2_psll_w(a.as_i16x8(), count.as_i16x8()).as_i64x2() }
}
/// pslld
#[inline]
pub fn _mm_sll_epi32(a: __m128i, count: __m128i) -> __m128i {
    unsafe { sse2_psll_d(a.as_i32x4(), count.as_i32x4()).as_i64x2() }
}
/// psllq
#[inline]
pub fn _mm_sll_epi64(a: __m128i, count: __m128i) -> __m128i {
    unsafe { sse2_psll_q(a, count) }
}
/// psllw
#[inline]
pub fn _mm_slli_epi16(a: __m128i, imm8: i32) -> __m128i {
    unsafe { sse2_pslli_w(a.as_i16x8(), imm8).as_i64x2() }
}
/// pslld
#[inline]
pub fn _mm_slli_epi32(a: __m128i, imm8: i32) -> __m128i {
    unsafe { sse2_pslli_d(a.as_i32x4(), imm8).as_i64x2() }
}
/// psllq
#[inline]
pub fn _mm_slli_epi64(a: __m128i, imm8: i32) -> __m128i {
    unsafe { sse2_pslli_q(a, imm8) }
}
/// pslldq
#[inline]
pub fn _mm_slli_si128(a: __m128i, imm8: i32) -> __m128i {
    // FIXME: We really want some way to enforce that the immediate
    // is actually a constant.
    let a = a.as_i8x16();
    let zero = i8x16::splat(0);
    macro_rules! slli_shift {
        ($n:expr) => {
            simd_shuffle16(zero, a, [16 - $n, 17 - $n, 18 - $n, 19 - $n,
                                     20 - $n, 21 - $n, 22 - $n, 23 - $n,
                                     24 - $n, 25 - $n, 26 - $n, 27 - $n,
                                     28 - $n, 29 - $n, 30 - $n, 31 - $n])
        }
    }
    let r: i8x16 = unsafe { match imm8 {
        0 => slli_shift!(0),
        1 => slli_shift!(1),
        2 => slli_shift!(2),
        3 => slli_shift!(3),
        4 => slli_shift!(4),
        5 => slli_shift!(5),
        6 => slli_shift!(6),
        7 => slli_shift!(7),
        8 => slli_shift!(8),
        9 => slli_shift!(9),
        10 => slli_shift!(10),
        11 => slli_shift!(11),
        12 => slli_shift!(12),
        13 => slli_shift!(13),
        14 => slli_shift!(14),
        15 => slli_shift!(15),
        _ => slli_shift!(16),
    }};
    r.as_i64x2()
}
/// sqrtpd
#[inline]
pub fn _mm_sqrt_pd(a: __m128d) -> __m128d {
    a.sqrt()
}
/// sqrtsd
#[inline]
pub fn _mm_sqrt_sd(a: __m128d, b: __m128d) -> __m128d {
    unsafe { sse2_sqrt_sd(a) }
}
/// psraw
#[inline]
pub fn _mm_sra_epi16(a: __m128i, count: __m128i) -> __m128i {
    unsafe { sse2_psra_w(a.as_i16x8(), count.as_i16x8()).as_i64x2() }
}
/// psrad
#[inline]
pub fn _mm_sra_epi32(a: __m128i, count: __m128i) -> __m128i {
    unsafe { sse2_psra_d(a.as_i32x4(), count.as_i32x4()).as_i64x2() }
}
/// psraw
#[inline]
pub fn _mm_srai_epi16(a: __m128i, imm8: i32) -> __m128i {
    unsafe { sse2_psrai_w(a.as_i16x8(), imm8).as_i64x2() }
}
/// psrad
#[inline]
pub fn _mm_srai_epi32(a: __m128i, imm8: i32) -> __m128i {
    unsafe { sse2_psrai_d(a.as_i32x4(), imm8).as_i64x2() }
}
/// psrlw
#[inline]
pub fn _mm_srl_epi16(a: __m128i, count: __m128i) -> __m128i {
    unsafe { sse2_psrl_w(a.as_i16x8(), count.as_i16x8()).as_i64x2() }
}
/// psrld
#[inline]
pub fn _mm_srl_epi32(a: __m128i, count: __m128i) -> __m128i {
    unsafe { sse2_psrl_d(a.as_i32x4(), count.as_i32x4()).as_i64x2() }
}
/// psrlq
#[inline]
pub fn _mm_srl_epi64(a: __m128i, count: __m128i) -> __m128i {
    unsafe { sse2_psrl_q(a, count) }
}
/// psrlw
#[inline]
pub fn _mm_srli_epi16(a: __m128i, imm8: i32) -> __m128i {
    unsafe { sse2_psrli_w(a.as_i16x8(), imm8).as_i64x2() }
}
/// psrld
#[inline]
pub fn _mm_srli_epi32(a: __m128i, imm8: i32) -> __m128i {
    unsafe { sse2_psrli_d(a.as_i32x4(), imm8).as_i64x2() }
}
/// psrlq
#[inline]
pub fn _mm_srli_epi64(a: __m128i, imm8: i32) -> __m128i {
    unsafe { sse2_psrli_q(a, imm8) }
}
/// psrldq
#[inline]
pub fn _mm_srli_si128(a: __m128i, imm8: i32) -> __m128i {
    // FIXME: We really want some way to enforce that the immediate
    // is actually a constant.
    let a = a.as_i8x16();
    let zero = i8x16::splat(0);
    macro_rules! srli_shift {
        ($n:expr) => {
            simd_shuffle16(a, zero, [$n + 0,  $n + 1,  $n + 2,  $n + 3,
                                     $n + 4,  $n + 5,  $n + 6,  $n + 7,
                                     $n + 8,  $n + 9,  $n + 10, $n + 11,
                                     $n + 12, $n + 13, $n + 14, $n + 15])
        }
    }
    let r: i8x16 = unsafe { match imm8 {
        0 => srli_shift!(0),
        1 => srli_shift!(1),
        2 => srli_shift!(2),
        3 => srli_shift!(3),
        4 => srli_shift!(4),
        5 => srli_shift!(5),
        6 => srli_shift!(6),
        7 => srli_shift!(7),
        8 => srli_shift!(8),
        9 => srli_shift!(9),
        10 => srli_shift!(10),
        11 => srli_shift!(11),
        12 => srli_shift!(12),
        13 => srli_shift!(13),
        14 => srli_shift!(14),
        15 => srli_shift!(15),
        _ => srli_shift!(16),
    }};
    r.as_i64x2()
}
/// movapd
#[inline]
pub unsafe fn _mm_store_pd(mem_addr: *mut f64, a: __m128d) {
    let mem_addr = mem_addr as *mut __m128d;
    *mem_addr = a;
}
#[inline]
pub unsafe fn _mm_store_pd1(mem_addr: *mut f64, a: __m128d) {
    _mm_store1_pd(mem_addr, a)
}
/// movsd
#[inline]
pub unsafe fn _mm_store_sd(mem_addr: *mut f64, a: __m128d) {
    // Cast to u8 to avoid assumptions about alignment.
    let mem_addr = mem_addr as *mut u8;
    let pa = &a as *const __m128d as *const u8;
    copy_nonoverlapping(pa, mem_addr, 8)
}
/// movdqa
#[inline]
pub unsafe fn _mm_store_si128(mem_addr: *mut __m128i, a: __m128i) {
    *mem_addr = a;
}
#[inline]
pub unsafe fn _mm_store1_pd(mem_addr: *mut f64, a: __m128d) {
    _mm_store_pd(mem_addr, __m128d::new(a.extract(0), a.extract(0)))
}
/// movhpd
#[inline]
pub unsafe fn _mm_storeh_pd(mem_addr: *mut f64, a: __m128d) {
    // Cast to u8 to avoid assumptions about alignment.
    let mem_addr = mem_addr as *mut u8;
    let pa = &a as *const __m128d as *const u8;
    copy_nonoverlapping(pa.offset(0), mem_addr, 8)
}
/// movq
#[inline]
pub unsafe fn _mm_storel_epi64(mem_addr: *mut __m128i, a: __m128i) {
    // Cast to u8 to avoid assumptions about alignment.
    let mem_addr = mem_addr as *mut u8;
    let pa = &a as *const __m128i as *const u8;
    copy_nonoverlapping(pa, mem_addr, 8)
}
/// movlpd
#[inline]
pub unsafe fn _mm_storel_pd(mem_addr: *mut f64, a: __m128d) {
    // Cast to u8 to avoid assumptions about alignment.
    let mem_addr = mem_addr as *mut u8;
    let pa = &a as *const __m128d as *const u8;
    copy_nonoverlapping(pa, mem_addr, 8)
}
#[inline]
pub unsafe fn _mm_storer_pd(mem_addr: *mut f64, a: __m128d) {
    _mm_store_pd(mem_addr, __m128d::new(a.extract(1), a.extract(0)));
}
/// movupd
#[inline]
pub unsafe fn _mm_storeu_pd(mem_addr: *mut f64, a: __m128d) {
    // Cast to u8 to avoid assumptions about alignment.
    let mem_addr = mem_addr as *mut u8;
    let pa = &a as *const __m128d as *const u8;
    copy_nonoverlapping(pa, mem_addr, 16)
}
/// movdqu
#[inline]
pub unsafe fn _mm_storeu_si128(mem_addr: *mut __m128i, a: __m128i) {
    // Cast to u8 to avoid assumptions about alignment.
    let mem_addr = mem_addr as *mut u8;
    let pa = &a as *const __m128i as *const u8;
    copy_nonoverlapping(pa, mem_addr, 16)
}
/// psubw
#[inline]
pub fn _mm_sub_epi16(a: __m128i, b: __m128i) -> __m128i {
    (a.as_i16x8() + b.as_i16x8()).as_i64x2()
}
/// psubd
#[inline]
pub fn _mm_sub_epi32(a: __m128i, b: __m128i) -> __m128i {
    (a.as_i32x4() - b.as_i32x4()).as_i64x2()
}
/// psubq
#[inline]
pub fn _mm_sub_epi64(a: __m128i, b: __m128i) -> __m128i {
    a - b
}
/// psubb
#[inline]
pub fn _mm_sub_epi8(a: __m128i, b: __m128i) -> __m128i {
    (a.as_i8x16() + b.as_i8x16()).as_i64x2()
}
/// subpd
#[inline]
pub fn _mm_sub_pd(a: __m128d, b: __m128d) -> __m128d {
    a - b
}
/// subsd
#[inline]
pub fn _mm_sub_sd(a: __m128d, b: __m128d) -> __m128d {
    a.replace(0, a.extract(0) - b.extract(0))
}
/// psubsw
#[inline]
pub fn _mm_subs_epi16(a: __m128i, b: __m128i) -> __m128i {
    a.as_i16x8().subs(b.as_i16x8()).as_i64x2()
}
/// psubsb
#[inline]
pub fn _mm_subs_epi8(a: __m128i, b: __m128i) -> __m128i {
    a.as_i8x16().subs(b.as_i8x16()).as_i64x2()
}
/// psubusw
#[inline]
pub fn _mm_subs_epu16(a: __m128i, b: __m128i) -> __m128i {
    a.as_u16x8().subs(b.as_u16x8()).as_i64x2()
}
/// psubusb
#[inline]
pub fn _mm_subs_epu8(a: __m128i, b: __m128i) -> __m128i {
    a.as_u8x16().subs(b.as_u8x16()).as_i64x2()
}
/// ucomisd
#[inline]
pub fn _mm_ucomieq_sd(a: __m128d, b: __m128d) -> i32 {
    unsafe { sse2_ucomieq_sd(a, b) }
}
/// ucomisd
#[inline]
pub fn _mm_ucomige_sd(a: __m128d, b: __m128d) -> i32 {
    unsafe { sse2_ucomige_sd(a, b) }
}
/// ucomisd
#[inline]
pub fn _mm_ucomigt_sd(a: __m128d, b: __m128d) -> i32 {
    unsafe { sse2_ucomigt_sd(a, b) }
}
/// ucomisd
#[inline]
pub fn _mm_ucomile_sd(a: __m128d, b: __m128d) -> i32 {
    unsafe { sse2_ucomile_sd(a, b) }
}
/// ucomisd
#[inline]
pub fn _mm_ucomilt_sd(a: __m128d, b: __m128d) -> i32 {
    unsafe { sse2_ucomilt_sd(a, b) }
}
/// ucomisd
#[inline]
pub fn _mm_ucomineq_sd(a: __m128d, b: __m128d) -> i32 {
    unsafe { sse2_ucomineq_sd(a, b) }
}
/// punpckhwd
#[inline]
pub fn _mm_unpackhi_epi16(a: __m128i, b: __m128i) -> __m128i {
    let a = a.as_i16x8();
    let b = b.as_i16x8();
    let r: i16x8 = unsafe { simd_shuffle8(a, b, [4, 12, 5, 13, 6, 14, 7, 15]) };
    r.as_i64x2()
}
/// punpckhdq
#[inline]
pub fn _mm_unpackhi_epi32(a: __m128i, b: __m128i) -> __m128i {
    let r: i32x4 = unsafe { simd_shuffle4(a.as_i32x4(), b.as_i32x4(), [2, 6, 3, 7]) };
    r.as_i64x2()
}
/// punpckhqdq
#[inline]
pub fn _mm_unpackhi_epi64(a: __m128i, b: __m128i) -> __m128i {
    unsafe { simd_shuffle2(a, b, [1, 3]) }
}
/// punpckhbw
#[inline]
pub fn _mm_unpackhi_epi8(a: __m128i, b: __m128i) -> __m128i {
    let a = a.as_i8x16();
    let b = b.as_i8x16();
    let r: i8x16 = unsafe { simd_shuffle16(a, b, [ 8, 24,  9, 25,
                                                  10, 26, 11, 27,
                                                  12, 28, 13, 29,
                                                  14, 30, 15, 31]) };
    r.as_i64x2()
}
/// unpckhpd
#[inline]
pub fn _mm_unpackhi_pd(a: __m128d, b: __m128d) -> __m128d {
    __m128d::new(a.extract(1), b.extract(1))
}
/// punpcklwd
#[inline]
pub fn _mm_unpacklo_epi16(a: __m128i, b: __m128i) -> __m128i {
    let a = a.as_i16x8();
    let b = b.as_i16x8();
    let r: i16x8 = unsafe { simd_shuffle8(a, b, [0, 8, 1, 9, 2, 10, 3, 11]) };
    r.as_i64x2()
}
/// punpckldq
#[inline]
pub fn _mm_unpacklo_epi32(a: __m128i, b: __m128i) -> __m128i {
    let r: i32x4 = unsafe { simd_shuffle4(a.as_i32x4(), b.as_i32x4(), [0, 4, 1, 5]) };
    r.as_i64x2()
}
/// punpcklqdq
#[inline]
pub fn _mm_unpacklo_epi64(a: __m128i, b: __m128i) -> __m128i {
    unsafe { simd_shuffle2(a, b, [0, 2]) }
}
/// punpcklbw
#[inline]
pub fn _mm_unpacklo_epi8(a: __m128i, b: __m128i) -> __m128i {
    let a = a.as_i8x16();
    let b = b.as_i8x16();
    let r: i8x16 = unsafe { simd_shuffle16(a, b, [0, 16, 1, 17,
                                                  2, 18, 3, 19,
                                                  4, 20, 5, 21,
                                                  6, 22, 7, 23]) };
    r.as_i64x2()
}
/// unpcklpd
#[inline]
pub fn _mm_unpacklo_pd(a: __m128d, b: __m128d) -> __m128d {
    __m128d::new(a.extract(0), b.extract(0))
}
/// xorpd
#[inline]
pub fn _mm_xor_pd(a: __m128d, b: __m128d) -> __m128d {
    (a.as_i64x2() ^ b.as_i64x2()).as_f64x2()
}
/// pxor
#[inline]
pub fn _mm_xor_si128(a: __m128i, b: __m128i) -> __m128i {
    a ^ b
}

/// The methods in this module can't be implemented because Rust doesn't
/// expose nontemporal loads.
pub mod unimplemented_nontemporal {
    use __m128d;
    use __m128i;

    /// movntpd
    ///
    /// Not yet implemented.
    #[inline]
    pub fn _mm_stream_pd(mem_addr: *mut f64, a: __m128d) {
        unimplemented!()
    }
    /// movntdq
    ///
    /// Not yet implemented.
    #[inline]
    pub fn _mm_stream_si128(mem_addr: *mut __m128i, a: __m128i) {
        unimplemented!()
    }
    /// movnti
    ///
    /// Not yet implemented.
    #[inline]
    pub fn _mm_stream_si32(mem_addr: *mut i32, a: i32) {
        unimplemented!()
    }
    /// movnti
    ///
    /// Not yet implemented.
    #[inline]
    pub fn _mm_stream_si64(mem_addr: *mut i64, a: i64) {
        unimplemented!()
    }
}

/// The methods in this module can't be implemented because Rust doesn't
/// expose the LLVM x86_mmx type.
pub mod unimplemented_mmx {
    use __m64;
    use __m128i;
    use __m128d;

    /// paddq
    ///
    /// Not yet implemented.
    #[inline]
    pub fn _mm_add_si64(a: __m64, b: __m64) -> __m64 {
        unimplemented!()
    }
    /// cvtpd2pi
    ///
    /// Not yet implemented.
    #[inline]
    pub fn _mm_cvtpd_pi32(a: __m128d) -> __m64 {
        unimplemented!()
    }
    /// cvtpi2pd
    ///
    /// Not yet implemented.
    #[inline]
    pub fn _mm_cvtpi32_pd(a: __m64) -> __m128d {
        unimplemented!()
    }
    /// cvttpd2pi
    ///
    /// Not yet implemented.
    #[inline]
    pub fn _mm_cvttpd_pi32(a: __m128d) -> __m64 {
        unimplemented!()
    }
    /// movdq2q
    ///
    /// Not yet implemented.
    #[inline]
    pub fn _mm_movepi64_pi64(a: __m128i) -> __m64 {
        unimplemented!()
    }
    /// movq2dq
    ///
    /// Not yet implemented.
    #[inline]
    pub fn _mm_movpi64_epi64(a: __m64) -> __m128i {
        unimplemented!()
    }
    /// pmuludq
    ///
    /// Not yet implemented.
    #[inline]
    pub fn _mm_mul_su32(a: __m64, b: __m64) -> __m64 {
        unimplemented!()
    }
    /// Not yet implemented.
    #[inline]
    pub fn _mm_set_epi64(e1: __m64, e0: __m64) -> __m128i {
        unimplemented!()
    }
    /// Not yet implemented.
    #[inline]
    pub fn _mm_set1_epi64(a: __m64) -> __m128i {
        unimplemented!()
    }
    /// Not yet implemented.
    #[inline]
    pub fn _mm_setr_epi64(e1: __m64, e0: __m64) -> __m128i {
        unimplemented!()
    }
    /// psubq
    ///
    /// Not yet implemented.
    #[inline]
    pub fn _mm_sub_si64(a: __m64, b: __m64) -> __m64 {
        unimplemented!()
    }
}