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
|
// RUN: %clang_cc1 %s -triple=x86_64-apple-darwin -target-feature +avx -emit-llvm -o - -Werror | FileCheck %s
// RUN: %clang_cc1 %s -triple=x86_64-apple-darwin -target-feature +avx -fno-signed-char -emit-llvm -o - -Werror | FileCheck %s
// Don't include mm_malloc.h, it's system specific.
#define __MM_MALLOC_H
#include <x86intrin.h>
// NOTE: This should match the tests in llvm/test/CodeGen/X86/sse-intrinsics-fast-isel.ll
__m256d test_mm256_add_pd(__m256d A, __m256d B) {
// CHECK-LABEL: test_mm256_add_pd
// CHECK: fadd <4 x double>
return _mm256_add_pd(A, B);
}
__m256 test_mm256_add_ps(__m256 A, __m256 B) {
// CHECK-LABEL: test_mm256_add_ps
// CHECK: fadd <8 x float>
return _mm256_add_ps(A, B);
}
__m256d test_mm256_addsub_pd(__m256d A, __m256d B) {
// CHECK-LABEL: test_mm256_addsub_pd
// CHECK: call <4 x double> @llvm.x86.avx.addsub.pd.256(<4 x double> %{{.*}}, <4 x double> %{{.*}})
return _mm256_addsub_pd(A, B);
}
__m256 test_mm256_addsub_ps(__m256 A, __m256 B) {
// CHECK-LABEL: test_mm256_addsub_ps
// CHECK: call <8 x float> @llvm.x86.avx.addsub.ps.256(<8 x float> %{{.*}}, <8 x float> %{{.*}})
return _mm256_addsub_ps(A, B);
}
__m256d test_mm256_and_pd(__m256d A, __m256d B) {
// CHECK-LABEL: test_mm256_and_pd
// CHECK: and <4 x i64>
return _mm256_and_pd(A, B);
}
__m256 test_mm256_and_ps(__m256 A, __m256 B) {
// CHECK-LABEL: test_mm256_and_ps
// CHECK: and <8 x i32>
return _mm256_and_ps(A, B);
}
__m256d test_mm256_andnot_pd(__m256d A, __m256d B) {
// CHECK-LABEL: test_mm256_andnot_pd
// CHECK: xor <4 x i64> %{{.*}}, <i64 -1, i64 -1, i64 -1, i64 -1>
// CHECK: and <4 x i64>
return _mm256_andnot_pd(A, B);
}
__m256 test_mm256_andnot_ps(__m256 A, __m256 B) {
// CHECK-LABEL: test_mm256_andnot_ps
// CHECK: xor <8 x i32> %{{.*}}, <i32 -1, i32 -1, i32 -1, i32 -1, i32 -1, i32 -1, i32 -1, i32 -1>
// CHECK: and <8 x i32>
return _mm256_andnot_ps(A, B);
}
__m256d test_mm256_blend_pd(__m256d A, __m256d B) {
// CHECK-LABEL: test_mm256_blend_pd
// CHECK: shufflevector <4 x double> %{{.*}}, <4 x double> %{{.*}}, <4 x i32> <i32 4, i32 1, i32 6, i32 3>
return _mm256_blend_pd(A, B, 0x35);
}
__m256 test_mm256_blend_ps(__m256 A, __m256 B) {
// CHECK-LABEL: test_mm256_blend_ps
// CHECK: shufflevector <8 x float> %{{.*}}, <8 x float> %{{.*}}, <8 x i32> <i32 8, i32 1, i32 10, i32 3, i32 12, i32 13, i32 6, i32 7>
return _mm256_blend_ps(A, B, 0x35);
}
__m256d test_mm256_blendv_pd(__m256d V1, __m256d V2, __m256d V3) {
// CHECK-LABEL: test_mm256_blendv_pd
// CHECK: call <4 x double> @llvm.x86.avx.blendv.pd.256(<4 x double> %{{.*}}, <4 x double> %{{.*}}, <4 x double> %{{.*}})
return _mm256_blendv_pd(V1, V2, V3);
}
__m256 test_mm256_blendv_ps(__m256 V1, __m256 V2, __m256 V3) {
// CHECK-LABEL: test_mm256_blendv_ps
// CHECK: call <8 x float> @llvm.x86.avx.blendv.ps.256(<8 x float> %{{.*}}, <8 x float> %{{.*}}, <8 x float> %{{.*}})
return _mm256_blendv_ps(V1, V2, V3);
}
__m256d test_mm256_broadcast_pd(__m128d* A) {
// CHECK-LABEL: test_mm256_broadcast_pd
// CHECK: call <4 x double> @llvm.x86.avx.vbroadcastf128.pd.256(i8* %{{.*}})
return _mm256_broadcast_pd(A);
}
__m256 test_mm256_broadcast_ps(__m128* A) {
// CHECK-LABEL: test_mm256_broadcast_ps
// CHECK: call <8 x float> @llvm.x86.avx.vbroadcastf128.ps.256(i8* %{{.*}})
return _mm256_broadcast_ps(A);
}
__m256d test_mm256_broadcast_sd(double* A) {
// CHECK-LABEL: test_mm256_broadcast_sd
// CHECK: load double, double* %{{.*}}
// CHECK: insertelement <4 x double> undef, double %{{.*}}, i32 0
// CHECK: insertelement <4 x double> %{{.*}}, double %{{.*}}, i32 1
// CHECK: insertelement <4 x double> %{{.*}}, double %{{.*}}, i32 2
// CHECK: insertelement <4 x double> %{{.*}}, double %{{.*}}, i32 3
return _mm256_broadcast_sd(A);
}
__m128d test_mm_broadcast_ss(float* A) {
// CHECK-LABEL: test_mm_broadcast_ss
// CHECK: load float, float* %{{.*}}
// CHECK: insertelement <4 x float> undef, float %{{.*}}, i32 0
// CHECK: insertelement <4 x float> %{{.*}}, float %{{.*}}, i32 1
// CHECK: insertelement <4 x float> %{{.*}}, float %{{.*}}, i32 2
// CHECK: insertelement <4 x float> %{{.*}}, float %{{.*}}, i32 3
return _mm_broadcast_ss(A);
}
__m256d test_mm256_broadcast_ss(float* A) {
// CHECK-LABEL: test_mm256_broadcast_ss
// CHECK: load float, float* %{{.*}}
// CHECK: insertelement <8 x float> undef, float %{{.*}}, i32 0
// CHECK: insertelement <8 x float> %{{.*}}, float %{{.*}}, i32 1
// CHECK: insertelement <8 x float> %{{.*}}, float %{{.*}}, i32 2
// CHECK: insertelement <8 x float> %{{.*}}, float %{{.*}}, i32 3
// CHECK: insertelement <8 x float> %{{.*}}, float %{{.*}}, i32 4
// CHECK: insertelement <8 x float> %{{.*}}, float %{{.*}}, i32 5
// CHECK: insertelement <8 x float> %{{.*}}, float %{{.*}}, i32 6
// CHECK: insertelement <8 x float> %{{.*}}, float %{{.*}}, i32 7
return _mm256_broadcast_ss(A);
}
__m256 test_mm256_castpd_ps(__m256d A) {
// CHECK-LABEL: test_mm256_castpd_ps
// CHECK: bitcast <4 x double> %{{.*}} to <8 x float>
return _mm256_castpd_ps(A);
}
__m256i test_mm256_castpd_si256(__m256d A) {
// CHECK-LABEL: test_mm256_castpd_si256
// CHECK: bitcast <4 x double> %{{.*}} to <4 x i64>
return _mm256_castpd_si256(A);
}
__m256d test_mm256_castpd128_pd256(__m128d A) {
// CHECK-LABEL: test_mm256_castpd128_pd256
// CHECK: shufflevector <2 x double> %{{.*}}, <2 x double> %{{.*}}, <4 x i32> <i32 0, i32 1, i32 undef, i32 undef>
return _mm256_castpd128_pd256(A);
}
__m128d test_mm256_castpd256_pd128(__m256d A) {
// CHECK-LABEL: test_mm256_castpd256_pd128
// CHECK: shufflevector <4 x double> %{{.*}}, <4 x double> %{{.*}}, <2 x i32> <i32 0, i32 1>
return _mm256_castpd256_pd128(A);
}
__m256d test_mm256_castps_pd(__m256 A) {
// CHECK-LABEL: test_mm256_castps_pd
// CHECK: bitcast <8 x float> %{{.*}} to <4 x double>
return _mm256_castps_pd(A);
}
__m256i test_mm256_castps_si256(__m256 A) {
// CHECK-LABEL: test_mm256_castps_si256
// CHECK: bitcast <8 x float> %{{.*}} to <4 x i64>
return _mm256_castps_si256(A);
}
__m256 test_mm256_castps128_ps256(__m128 A) {
// CHECK-LABEL: test_mm256_castps128_ps256
// CHECK: shufflevector <4 x float> %{{.*}}, <4 x float> %{{.*}}, <8 x i32> <i32 0, i32 1, i32 2, i32 3, i32 undef, i32 undef, i32 undef, i32 undef>
return _mm256_castps128_ps256(A);
}
__m128 test_mm256_castps256_ps128(__m256 A) {
// CHECK-LABEL: test_mm256_castps256_ps128
// CHECK: shufflevector <8 x float> %{{.*}}, <8 x float> %{{.*}}, <4 x i32> <i32 0, i32 1, i32 2, i32 3>
return _mm256_castps256_ps128(A);
}
__m256i test_mm256_castsi128_si256(__m128i A) {
// CHECK-LABEL: test_mm256_castsi128_si256
// CHECK: shufflevector <2 x i64> %{{.*}}, <2 x i64> %{{.*}}, <4 x i32> <i32 0, i32 1, i32 undef, i32 undef>
return _mm256_castsi128_si256(A);
}
__m256d test_mm256_castsi256_pd(__m256i A) {
// CHECK-LABEL: test_mm256_castsi256_pd
// CHECK: bitcast <4 x i64> %{{.*}} to <4 x double>
return _mm256_castsi256_pd(A);
}
__m256 test_mm256_castsi256_ps(__m256i A) {
// CHECK-LABEL: test_mm256_castsi256_ps
// CHECK: bitcast <4 x i64> %{{.*}} to <8 x float>
return _mm256_castsi256_ps(A);
}
__m128i test_mm256_castsi256_si128(__m256i A) {
// CHECK-LABEL: test_mm256_castsi256_si128
// CHECK: shufflevector <4 x i64> %{{.*}}, <4 x i64> %{{.*}}, <2 x i32> <i32 0, i32 1>
return _mm256_castsi256_si128(A);
}
__m256d test_mm256_ceil_pd(__m256d x) {
// CHECK-LABEL: test_mm256_ceil_pd
// CHECK: call <4 x double> @llvm.x86.avx.round.pd.256(<4 x double> %{{.*}}, i32 2)
return _mm256_ceil_pd(x);
}
__m256 test_mm_ceil_ps(__m256 x) {
// CHECK-LABEL: test_mm_ceil_ps
// CHECK: call <8 x float> @llvm.x86.avx.round.ps.256(<8 x float> %{{.*}}, i32 2)
return _mm256_ceil_ps(x);
}
__m128d test_mm_cmp_pd(__m128d A, __m128d B) {
// CHECK-LABEL: test_mm_cmp_pd
// CHECK: call <2 x double> @llvm.x86.sse2.cmp.pd(<2 x double> %{{.*}}, <2 x double> %{{.*}}, i8 13)
return _mm_cmp_pd(A, B, _CMP_GE_OS);
}
__m256d test_mm256_cmp_pd(__m256d A, __m256d B) {
// CHECK-LABEL: test_mm256_cmp_pd
// CHECK: call <4 x double> @llvm.x86.avx.cmp.pd.256(<4 x double> %{{.*}}, <4 x double> %{{.*}}, i8 13)
return _mm256_cmp_pd(A, B, _CMP_GE_OS);
}
__m128 test_mm_cmp_ps(__m128 A, __m128 B) {
// CHECK-LABEL: test_mm_cmp_ps
// CHECK: call <4 x float> @llvm.x86.sse.cmp.ps(<4 x float> %{{.*}}, <4 x float> %{{.*}}, i8 13)
return _mm_cmp_ps(A, B, _CMP_GE_OS);
}
__m256 test_mm256_cmp_ps(__m256d A, __m256d B) {
// CHECK-LABEL: test_mm256_cmp_ps
// CHECK: call <8 x float> @llvm.x86.avx.cmp.ps.256(<8 x float> %{{.*}}, <8 x float> %{{.*}}, i8 13)
return _mm256_cmp_ps(A, B, _CMP_GE_OS);
}
__m128d test_mm_cmp_sd(__m128d A, __m128d B) {
// CHECK-LABEL: test_mm_cmp_sd
// CHECK: call <2 x double> @llvm.x86.sse2.cmp.sd(<2 x double> %{{.*}}, <2 x double> %{{.*}}, i8 13)
return _mm_cmp_sd(A, B, _CMP_GE_OS);
}
__m128 test_mm_cmp_ss(__m128 A, __m128 B) {
// CHECK-LABEL: test_mm_cmp_ss
// CHECK: call <4 x float> @llvm.x86.sse.cmp.ss(<4 x float> %{{.*}}, <4 x float> %{{.*}}, i8 13)
return _mm_cmp_ss(A, B, _CMP_GE_OS);
}
__m256d test_mm256_cvtepi32_pd(__m128i A) {
// CHECK-LABEL: test_mm256_cvtepi32_pd
// CHECK: sitofp <4 x i32> %{{.*}} to <4 x double>
return _mm256_cvtepi32_pd(A);
}
__m256 test_mm256_cvtepi32_ps(__m256i A) {
// CHECK-LABEL: test_mm256_cvtepi32_ps
// CHECK: call <8 x float> @llvm.x86.avx.cvtdq2.ps.256(<8 x i32> %{{.*}})
return _mm256_cvtepi32_ps(A);
}
__m128i test_mm256_cvtpd_epi32(__m256d A) {
// CHECK-LABEL: test_mm256_cvtpd_epi32
// CHECK: call <4 x i32> @llvm.x86.avx.cvt.pd2dq.256(<4 x double> %{{.*}})
return _mm256_cvtpd_epi32(A);
}
__m128 test_mm256_cvtpd_ps(__m256d A) {
// CHECK-LABEL: test_mm256_cvtpd_ps
// CHECK: call <4 x float> @llvm.x86.avx.cvt.pd2.ps.256(<4 x double> %{{.*}})
return _mm256_cvtpd_ps(A);
}
__m256i test_mm256_cvtps_epi32(__m256 A) {
// CHECK-LABEL: test_mm256_cvtps_epi32
// CHECK: call <8 x i32> @llvm.x86.avx.cvt.ps2dq.256(<8 x float> %{{.*}})
return _mm256_cvtps_epi32(A);
}
__m256d test_mm256_cvtps_pd(__m128 A) {
// CHECK-LABEL: test_mm256_cvtps_pd
// CHECK: fpext <4 x float> %{{.*}} to <4 x double>
return _mm256_cvtps_pd(A);
}
__m128i test_mm256_cvttpd_epi32(__m256d A) {
// CHECK-LABEL: test_mm256_cvttpd_epi32
// CHECK: call <4 x i32> @llvm.x86.avx.cvtt.pd2dq.256(<4 x double> %{{.*}})
return _mm256_cvttpd_epi32(A);
}
__m256i test_mm256_cvttps_epi32(__m256 A) {
// CHECK-LABEL: test_mm256_cvttps_epi32
// CHECK: call <8 x i32> @llvm.x86.avx.cvtt.ps2dq.256(<8 x float> %{{.*}})
return _mm256_cvttps_epi32(A);
}
__m256d test_mm256_div_pd(__m256d A, __m256d B) {
// CHECK-LABEL: test_mm256_div_pd
// CHECK: fdiv <4 x double>
return _mm256_div_pd(A, B);
}
__m256 test_mm256_div_ps(__m256 A, __m256 B) {
// CHECK-LABEL: test_mm256_div_ps
// CHECK: fdiv <8 x float>
return _mm256_div_ps(A, B);
}
__m256 test_mm256_dp_ps(__m256 A, __m256 B) {
// CHECK-LABEL: test_mm256_dp_ps
// CHECK: call <8 x float> @llvm.x86.avx.dp.ps.256(<8 x float> {{.*}}, <8 x float> {{.*}}, i8 7)
return _mm256_dp_ps(A, B, 7);
}
int test_mm256_extract_epi8(__m256i A) {
// CHECK-LABEL: test_mm256_extract_epi8
// CHECK: and i32 %{{.*}}, 31
// CHECK: extractelement <32 x i8> %{{.*}}, i32 %{{.*}}
// CHECK: zext i8 %{{.*}} to i32
return _mm256_extract_epi8(A, 32);
}
int test_mm256_extract_epi16(__m256i A) {
// CHECK-LABEL: test_mm256_extract_epi16
// CHECK: and i32 %{{.*}}, 15
// CHECK: extractelement <16 x i16> %{{.*}}, i32 %{{.*}}
// CHECK: zext i16 %{{.*}} to i32
return _mm256_extract_epi16(A, 16);
}
int test_mm256_extract_epi32(__m256i A) {
// CHECK-LABEL: test_mm256_extract_epi32
// CHECK: and i32 %{{.*}}, 7
// CHECK: extractelement <8 x i32> %{{.*}}, i32 %{{.*}}
return _mm256_extract_epi32(A, 8);
}
long long test_mm256_extract_epi64(__m256i A) {
// CHECK-LABEL: test_mm256_extract_epi64
// CHECK: and i32 %{{.*}}, 3
// CHECK: extractelement <4 x i64> %{{.*}}, i32 %{{.*}}
return _mm256_extract_epi64(A, 5);
}
__m128d test_mm256_extractf128_pd(__m256d A) {
// CHECK-LABEL: test_mm256_extractf128_pd
// CHECK: shufflevector <4 x double> %{{.*}}, <4 x double> undef, <2 x i32> <i32 2, i32 3>
return _mm256_extractf128_pd(A, 1);
}
__m128 test_mm256_extractf128_ps(__m256 A) {
// CHECK-LABEL: test_mm256_extractf128_ps
// CHECK: shufflevector <8 x float> %{{.*}}, <8 x float> undef, <4 x i32> <i32 4, i32 5, i32 6, i32 7>
return _mm256_extractf128_ps(A, 1);
}
__m128i test_mm256_extractf128_si256(__m256i A) {
// CHECK-LABEL: test_mm256_extractf128_si256
// CHECK: shufflevector <4 x i64> %{{.*}}, <4 x i64> undef, <2 x i32> <i32 2, i32 3>
return _mm256_extractf128_si256(A, 1);
}
__m256d test_mm256_floor_pd(__m256d x) {
// CHECK-LABEL: test_mm256_floor_pd
// CHECK: call <4 x double> @llvm.x86.avx.round.pd.256(<4 x double> %{{.*}}, i32 1)
return _mm256_floor_pd(x);
}
__m256 test_mm_floor_ps(__m256 x) {
// CHECK-LABEL: test_mm_floor_ps
// CHECK: call <8 x float> @llvm.x86.avx.round.ps.256(<8 x float> %{{.*}}, i32 1)
return _mm256_floor_ps(x);
}
__m256d test_mm256_hadd_pd(__m256d A, __m256d B) {
// CHECK-LABEL: test_mm256_hadd_pd
// CHECK: call <4 x double> @llvm.x86.avx.hadd.pd.256(<4 x double> %{{.*}}, <4 x double> %{{.*}})
return _mm256_hadd_pd(A, B);
}
__m256 test_mm256_hadd_ps(__m256 A, __m256 B) {
// CHECK-LABEL: test_mm256_hadd_ps
// CHECK: call <8 x float> @llvm.x86.avx.hadd.ps.256(<8 x float> %{{.*}}, <8 x float> %{{.*}})
return _mm256_hadd_ps(A, B);
}
__m256d test_mm256_hsub_pd(__m256d A, __m256d B) {
// CHECK-LABEL: test_mm256_hsub_pd
// CHECK: call <4 x double> @llvm.x86.avx.hsub.pd.256(<4 x double> %{{.*}}, <4 x double> %{{.*}})
return _mm256_hsub_pd(A, B);
}
__m256 test_mm256_hsub_ps(__m256 A, __m256 B) {
// CHECK-LABEL: test_mm256_hsub_ps
// CHECK: call <8 x float> @llvm.x86.avx.hsub.ps.256(<8 x float> %{{.*}}, <8 x float> %{{.*}})
return _mm256_hsub_ps(A, B);
}
__m256i test_mm256_insert_epi8(__m256i x, char b) {
// CHECK-LABEL: test_mm256_insert_epi8
// CHECK: and i32 %{{.*}}, 31
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 %{{.*}}
return _mm256_insert_epi8(x, b, 17);
}
__m256i test_mm256_insert_epi16(__m256i x, int b) {
// CHECK-LABEL: test_mm256_insert_epi16
// CHECK: and i32 %{{.*}}, 15
// CHECK: insertelement <16 x i16> %{{.*}}, i16 %{{.*}}, i32 %{{.*}}
return _mm256_insert_epi16(x, b, 4);
}
__m256i test_mm256_insert_epi32(__m256i x, int b) {
// CHECK-LABEL: test_mm256_insert_epi32
// CHECK: and i32 %{{.*}}, 7
// CHECK: insertelement <8 x i32> %{{.*}}, i32 %{{.*}}, i32 %{{.*}}
return _mm256_insert_epi32(x, b, 5);
}
__m256i test_mm256_insert_epi64(__m256i x, long long b) {
// CHECK-LABEL: test_mm256_insert_epi64
// CHECK: and i32 %{{.*}}, 3
// CHECK: insertelement <4 x i64> %{{.*}}, i64 %{{.*}}, i32 %{{.*}}
return _mm256_insert_epi64(x, b, 2);
}
__m256d test_mm256_insertf128_pd(__m256d A, __m128d B) {
// CHECK-LABEL: test_mm256_insertf128_pd
// CHECK: shufflevector <2 x double> %{{.*}}, <2 x double> %{{.*}}, <4 x i32> <i32 0, i32 1, i32 undef, i32 undef>
// CHECK: shufflevector <4 x double> %{{.*}}, <4 x double> %{{.*}}, <4 x i32> <i32 4, i32 5, i32 2, i32 3>
return _mm256_insertf128_pd(A, B, 0);
}
__m256 test_mm256_insertf128_ps(__m256 A, __m128 B) {
// CHECK-LABEL: test_mm256_insertf128_ps
// CHECK: shufflevector <4 x float> %{{.*}}, <4 x float> %{{.*}}, <8 x i32> <i32 0, i32 1, i32 2, i32 3, i32 undef, i32 undef, i32 undef, i32 undef>
// CHECK: shufflevector <8 x float> %{{.*}}, <8 x float> %{{.*}}, <8 x i32> <i32 0, i32 1, i32 2, i32 3, i32 8, i32 9, i32 10, i32 11>
return _mm256_insertf128_ps(A, B, 1);
}
__m256i test_mm256_insertf128_si256(__m256i A, __m128i B) {
// CHECK-LABEL: test_mm256_insertf128_si256
// CHECK: shufflevector <2 x i64> %{{.*}}, <2 x i64> %{{.*}}, <4 x i32> <i32 0, i32 1, i32 undef, i32 undef>
// CHECK: shufflevector <4 x i64> %{{.*}}, <4 x i64> %{{.*}}, <4 x i32> <i32 4, i32 5, i32 2, i32 3>
return _mm256_insertf128_si256(A, B, 0);
}
__m256i test_mm256_lddqu_si256(__m256i* A) {
// CHECK-LABEL: test_mm256_lddqu_si256
// CHECK: call <32 x i8> @llvm.x86.avx.ldu.dq.256(i8* %{{.*}})
return _mm256_lddqu_si256(A);
}
__m256d test_mm256_load_pd(double* A) {
// CHECK-LABEL: test_mm256_load_pd
// CHECK: load <4 x double>, <4 x double>* %{{.*}}, align 32
return _mm256_load_pd(A);
}
__m256 test_mm256_load_ps(float* A) {
// CHECK-LABEL: test_mm256_load_ps
// CHECK: load <8 x float>, <8 x float>* %{{.*}}, align 32
return _mm256_load_ps(A);
}
__m256i test_mm256_load_si256(__m256i* A) {
// CHECK-LABEL: test_mm256_load_si256
// CHECK: load <4 x i64>, <4 x i64>* %{{.*}}, align 32
return _mm256_load_si256(A);
}
__m256d test_mm256_loadu_pd(double* A) {
// CHECK-LABEL: test_mm256_loadu_pd
// CHECK: load <4 x double>, <4 x double>* %{{.*}}, align 1{{$}}
return _mm256_loadu_pd(A);
}
__m256 test_mm256_loadu_ps(float* A) {
// CHECK-LABEL: test_mm256_loadu_ps
// CHECK: load <8 x float>, <8 x float>* %{{.*}}, align 1{{$}}
return _mm256_loadu_ps(A);
}
__m256i test_mm256_loadu_si256(__m256i* A) {
// CHECK-LABEL: test_mm256_loadu_si256
// CHECK: load <4 x i64>, <4 x i64>* %{{.+}}, align 1{{$}}
return _mm256_loadu_si256(A);
}
__m256 test_mm256_loadu2_m128(float* A, float* B) {
// CHECK-LABEL: test_mm256_loadu2_m128
// CHECK: load <4 x float>, <4 x float>* %{{.*}}, align 1{{$}}
// CHECK: shufflevector <4 x float> %{{.*}}, <4 x float> %{{.*}}, <8 x i32> <i32 0, i32 1, i32 2, i32 3, i32 undef, i32 undef, i32 undef, i32 undef>
// CHECK: load <4 x float>, <4 x float>* %{{.*}}, align 1{{$}}
// CHECK: shufflevector <4 x float> %{{.*}}, <4 x float> %{{.*}}, <8 x i32> <i32 0, i32 1, i32 2, i32 3, i32 undef, i32 undef, i32 undef, i32 undef>
// CHECK: shufflevector <8 x float> %{{.*}}, <8 x float> %{{.*}}, <8 x i32> <i32 0, i32 1, i32 2, i32 3, i32 8, i32 9, i32 10, i32 11>
return _mm256_loadu2_m128(A, B);
}
__m256d test_mm256_loadu2_m128d(double* A, double* B) {
// CHECK-LABEL: test_mm256_loadu2_m128d
// CHECK: load <2 x double>, <2 x double>* %{{.*}}, align 1{{$}}
// CHECK: shufflevector <2 x double> %{{.*}}, <2 x double> %{{.*}}, <4 x i32> <i32 0, i32 1, i32 undef, i32 undef>
// CHECK: load <2 x double>, <2 x double>* %{{.*}}, align 1{{$}}
// CHECK: shufflevector <2 x double> %{{.*}}, <2 x double> %{{.*}}, <4 x i32> <i32 0, i32 1, i32 undef, i32 undef>
// CHECK: shufflevector <4 x double> %{{.*}}, <4 x double> %{{.*}}, <4 x i32> <i32 0, i32 1, i32 4, i32 5>
return _mm256_loadu2_m128d(A, B);
}
__m256i test_mm256_loadu2_m128i(__m128i* A, __m128i* B) {
// CHECK-LABEL: test_mm256_loadu2_m128i
// CHECK: load <2 x i64>, <2 x i64>* %{{.*}}, align 1{{$}}
// CHECK: shufflevector <2 x i64> %{{.*}}, <2 x i64> %{{.*}}, <4 x i32> <i32 0, i32 1, i32 undef, i32 undef>
// CHECK: load <2 x i64>, <2 x i64>* %{{.*}}, align 1{{$}}
// CHECK: shufflevector <2 x i64> %{{.*}}, <2 x i64> %{{.*}}, <4 x i32> <i32 0, i32 1, i32 undef, i32 undef>
// CHECK: shufflevector <4 x i64> %{{.*}}, <4 x i64> %{{.*}}, <4 x i32> <i32 0, i32 1, i32 4, i32 5>
return _mm256_loadu2_m128i(A, B);
}
__m128d test_mm_maskload_pd(double* A, __m128i B) {
// CHECK-LABEL: test_mm_maskload_pd
// CHECK: call <2 x double> @llvm.x86.avx.maskload.pd(i8* %{{.*}}, <2 x i64> %{{.*}})
return _mm_maskload_pd(A, B);
}
__m256d test_mm256_maskload_pd(double* A, __m256i B) {
// CHECK-LABEL: test_mm256_maskload_pd
// CHECK: call <4 x double> @llvm.x86.avx.maskload.pd.256(i8* %{{.*}}, <4 x i64> %{{.*}})
return _mm256_maskload_pd(A, B);
}
__m128 test_mm_maskload_ps(float* A, __m128i B) {
// CHECK-LABEL: test_mm_maskload_ps
// CHECK: call <4 x float> @llvm.x86.avx.maskload.ps(i8* %{{.*}}, <4 x i32> %{{.*}})
return _mm_maskload_ps(A, B);
}
__m256d test_mm256_maskload_ps(float* A, __m256i B) {
// CHECK-LABEL: test_mm256_maskload_ps
// CHECK: call <8 x float> @llvm.x86.avx.maskload.ps.256(i8* %{{.*}}, <8 x i32> %{{.*}})
return _mm256_maskload_ps(A, B);
}
void test_mm_maskstore_pd(double* A, __m128i B, __m128d C) {
// CHECK-LABEL: test_mm_maskstore_pd
// CHECK: call void @llvm.x86.avx.maskstore.pd(i8* %{{.*}}, <2 x i64> %{{.*}}, <2 x double> %{{.*}})
_mm_maskstore_pd(A, B, C);
}
void test_mm256_maskstore_pd(double* A, __m256i B, __m256d C) {
// CHECK-LABEL: test_mm256_maskstore_pd
// CHECK: call void @llvm.x86.avx.maskstore.pd.256(i8* %{{.*}}, <4 x i64> %{{.*}}, <4 x double> %{{.*}})
_mm256_maskstore_pd(A, B, C);
}
void test_mm_maskstore_ps(float* A, __m128i B, __m128 C) {
// CHECK-LABEL: test_mm_maskstore_ps
// CHECK: call void @llvm.x86.avx.maskstore.ps(i8* %{{.*}}, <4 x i32> %{{.*}}, <4 x float> %{{.*}})
_mm_maskstore_ps(A, B, C);
}
void test_mm256_maskstore_ps(float* A, __m256i B, __m256 C) {
// CHECK-LABEL: test_mm256_maskstore_ps
// CHECK: call void @llvm.x86.avx.maskstore.ps.256(i8* %{{.*}}, <8 x i32> %{{.*}}, <8 x float> %{{.*}})
_mm256_maskstore_ps(A, B, C);
}
__m256d test_mm256_max_pd(__m256d A, __m256d B) {
// CHECK-LABEL: test_mm256_max_pd
// CHECK: call <4 x double> @llvm.x86.avx.max.pd.256(<4 x double> %{{.*}}, <4 x double> %{{.*}})
return _mm256_max_pd(A, B);
}
__m256 test_mm256_max_ps(__m256 A, __m256 B) {
// CHECK-LABEL: test_mm256_max_ps
// CHECK: call <8 x float> @llvm.x86.avx.max.ps.256(<8 x float> %{{.*}}, <8 x float> %{{.*}})
return _mm256_max_ps(A, B);
}
__m256d test_mm256_min_pd(__m256d A, __m256d B) {
// CHECK-LABEL: test_mm256_min_pd
// CHECK: call <4 x double> @llvm.x86.avx.min.pd.256(<4 x double> %{{.*}}, <4 x double> %{{.*}})
return _mm256_min_pd(A, B);
}
__m256 test_mm256_min_ps(__m256 A, __m256 B) {
// CHECK-LABEL: test_mm256_min_ps
// CHECK: call <8 x float> @llvm.x86.avx.min.ps.256(<8 x float> %{{.*}}, <8 x float> %{{.*}})
return _mm256_min_ps(A, B);
}
__m256d test_mm256_movedup_pd(__m256d A) {
// CHECK-LABEL: test_mm256_movedup_pd
// CHECK: shufflevector <4 x double> %{{.*}}, <4 x double> %{{.*}}, <4 x i32> <i32 0, i32 0, i32 2, i32 2>
return _mm256_movedup_pd(A);
}
__m256 test_mm256_movehdup_ps(__m256 A) {
// CHECK-LABEL: test_mm256_movehdup_ps
// CHECK: shufflevector <8 x float> %{{.*}}, <8 x float> %{{.*}}, <8 x i32> <i32 1, i32 1, i32 3, i32 3, i32 5, i32 5, i32 7, i32 7>
return _mm256_movehdup_ps(A);
}
__m256 test_mm256_moveldup_ps(__m256 A) {
// CHECK-LABEL: test_mm256_moveldup_ps
// CHECK: shufflevector <8 x float> %{{.*}}, <8 x float> %{{.*}}, <8 x i32> <i32 0, i32 0, i32 2, i32 2, i32 4, i32 4, i32 6, i32 6>
return _mm256_moveldup_ps(A);
}
int test_mm256_movemask_pd(__m256d A) {
// CHECK-LABEL: test_mm256_movemask_pd
// CHECK: call i32 @llvm.x86.avx.movmsk.pd.256(<4 x double> %{{.*}})
return _mm256_movemask_pd(A);
}
int test_mm256_movemask_ps(__m256 A) {
// CHECK-LABEL: test_mm256_movemask_ps
// CHECK: call i32 @llvm.x86.avx.movmsk.ps.256(<8 x float> %{{.*}})
return _mm256_movemask_ps(A);
}
__m256d test_mm256_mul_pd(__m256d A, __m256d B) {
// CHECK-LABEL: test_mm256_mul_pd
// CHECK: fmul <4 x double>
return _mm256_mul_pd(A, B);
}
__m256 test_mm256_mul_ps(__m256 A, __m256 B) {
// CHECK-LABEL: test_mm256_mul_ps
// CHECK: fmul <8 x float>
return _mm256_mul_ps(A, B);
}
__m256d test_mm256_or_pd(__m256d A, __m256d B) {
// CHECK-LABEL: test_mm256_or_pd
// CHECK: or <4 x i64>
return _mm256_or_pd(A, B);
}
__m256 test_mm256_or_ps(__m256 A, __m256 B) {
// CHECK-LABEL: test_mm256_or_ps
// CHECK: or <8 x i32>
return _mm256_or_ps(A, B);
}
__m128d test_mm_permute_pd(__m128d A) {
// CHECK-LABEL: test_mm_permute_pd
// CHECK: shufflevector <2 x double> %{{.*}}, <2 x double> undef, <2 x i32> <i32 1, i32 0>
return _mm_permute_pd(A, 1);
}
__m256d test_mm256_permute_pd(__m256d A) {
// CHECK-LABEL: test_mm256_permute_pd
// CHECK: shufflevector <4 x double> %{{.*}}, <4 x double> undef, <4 x i32> <i32 1, i32 0, i32 3, i32 2>
return _mm256_permute_pd(A, 5);
}
__m128 test_mm_permute_ps(__m128 A) {
// CHECK-LABEL: test_mm_permute_ps
// CHECK: shufflevector <4 x float> %{{.*}}, <4 x float> undef, <4 x i32> <i32 3, i32 2, i32 1, i32 0>
return _mm_permute_ps(A, 0x1b);
}
// Test case for PR12401
__m128 test2_mm_permute_ps(__m128 a) {
// CHECK-LABEL: test2_mm_permute_ps
// CHECK: shufflevector <4 x float> %{{.*}}, <4 x float> undef, <4 x i32> <i32 2, i32 1, i32 2, i32 3>
return _mm_permute_ps(a, 0xe6);
}
__m256 test_mm256_permute_ps(__m256 A) {
// CHECK-LABEL: test_mm256_permute_ps
// CHECK: shufflevector <8 x float> %{{.*}}, <8 x float> undef, <8 x i32> <i32 3, i32 2, i32 1, i32 0, i32 7, i32 6, i32 5, i32 4>
return _mm256_permute_ps(A, 0x1b);
}
__m256d test_mm256_permute2f128_pd(__m256d A, __m256d B) {
// CHECK-LABEL: test_mm256_permute2f128_pd
// CHECK: call <4 x double> @llvm.x86.avx.vperm2f128.pd.256(<4 x double> %{{.*}}, <4 x double> %{{.*}}, i8 49)
return _mm256_permute2f128_pd(A, B, 0x31);
}
__m256 test_mm256_permute2f128_ps(__m256 A, __m256 B) {
// CHECK-LABEL: test_mm256_permute2f128_ps
// CHECK: call <8 x float> @llvm.x86.avx.vperm2f128.ps.256(<8 x float> %{{.*}}, <8 x float> %{{.*}}, i8 19)
return _mm256_permute2f128_ps(A, B, 0x13);
}
__m256i test_mm256_permute2f128_si256(__m256i A, __m256i B) {
// CHECK-LABEL: test_mm256_permute2f128_si256
// CHECK: call <8 x i32> @llvm.x86.avx.vperm2f128.si.256(<8 x i32> %{{.*}}, <8 x i32> %{{.*}}, i8 32)
return _mm256_permute2f128_si256(A, B, 0x20);
}
__m128d test_mm_permutevar_pd(__m128d A, __m128i B) {
// CHECK-LABEL: test_mm_permutevar_pd
// CHECK: call <2 x double> @llvm.x86.avx.vpermilvar.pd(<2 x double> %{{.*}}, <2 x i64> %{{.*}})
return _mm_permutevar_pd(A, B);
}
__m256d test_mm256_permutevar_pd(__m256d A, __m256i B) {
// CHECK-LABEL: test_mm256_permutevar_pd
// CHECK: call <4 x double> @llvm.x86.avx.vpermilvar.pd.256(<4 x double> %{{.*}}, <4 x i64> %{{.*}})
return _mm256_permutevar_pd(A, B);
}
__m128 test_mm_permutevar_ps(__m128 A, __m128i B) {
// CHECK-LABEL: test_mm_permutevar_ps
// CHECK: call <4 x float> @llvm.x86.avx.vpermilvar.ps(<4 x float> %{{.*}}, <4 x i32> %{{.*}})
return _mm_permutevar_ps(A, B);
}
__m256 test_mm256_permutevar_ps(__m256 A, __m256i B) {
// CHECK-LABEL: test_mm256_permutevar_ps
// CHECK: call <8 x float> @llvm.x86.avx.vpermilvar.ps.256(<8 x float> %{{.*}}, <8 x i32> %{{.*}})
return _mm256_permutevar_ps(A, B);
}
__m256 test_mm256_rcp_ps(__m256 A) {
// CHECK-LABEL: test_mm256_rcp_ps
// CHECK: call <8 x float> @llvm.x86.avx.rcp.ps.256(<8 x float> %{{.*}})
return _mm256_rcp_ps(A);
}
__m256d test_mm256_round_pd(__m256d x) {
// CHECK-LABEL: test_mm256_round_pd
// CHECK: call <4 x double> @llvm.x86.avx.round.pd.256(<4 x double> %{{.*}}, i32 4)
return _mm256_round_pd(x, 4);
}
__m256 test_mm256_round_ps(__m256 x) {
// CHECK-LABEL: test_mm256_round_ps
// CHECK: call <8 x float> @llvm.x86.avx.round.ps.256(<8 x float> %{{.*}}, i32 4)
return _mm256_round_ps(x, 4);
}
__m256 test_mm256_rsqrt_ps(__m256 A) {
// CHECK-LABEL: test_mm256_rsqrt_ps
// CHECK: call <8 x float> @llvm.x86.avx.rsqrt.ps.256(<8 x float> %{{.*}})
return _mm256_rsqrt_ps(A);
}
__m256i test_mm256_set_epi8(char A0, char A1, char A2, char A3, char A4, char A5, char A6, char A7,
char A8, char A9, char A10, char A11, char A12, char A13, char A14, char A15,
char A16, char A17, char A18, char A19, char A20, char A21, char A22, char A23,
char A24, char A25, char A26, char A27, char A28, char A29, char A30, char A31) {
// CHECK-LABEL: test_mm256_set_epi8
// CHECK: insertelement <32 x i8> undef, i8 %{{.*}}, i32 0
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 1
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 2
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 3
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 4
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 5
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 6
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 7
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 8
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 9
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 10
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 11
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 12
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 13
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 14
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 15
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 16
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 17
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 18
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 19
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 20
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 21
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 22
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 23
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 24
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 25
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 26
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 27
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 28
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 29
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 30
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 31
return _mm256_set_epi8(A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21, A22, A23, A24, A25, A26, A27, A28, A29, A30, A31);
}
__m256i test_mm256_set_epi16(short A0, short A1, short A2, short A3, short A4, short A5, short A6, short A7,
short A8, short A9, short A10, short A11, short A12, short A13, short A14, short A15) {
// CHECK-LABEL: test_mm256_set_epi16
// CHECK: insertelement <16 x i16> undef, i16 %{{.*}}, i32 0
// CHECK: insertelement <16 x i16> %{{.*}}, i16 %{{.*}}, i32 1
// CHECK: insertelement <16 x i16> %{{.*}}, i16 %{{.*}}, i32 2
// CHECK: insertelement <16 x i16> %{{.*}}, i16 %{{.*}}, i32 3
// CHECK: insertelement <16 x i16> %{{.*}}, i16 %{{.*}}, i32 4
// CHECK: insertelement <16 x i16> %{{.*}}, i16 %{{.*}}, i32 5
// CHECK: insertelement <16 x i16> %{{.*}}, i16 %{{.*}}, i32 6
// CHECK: insertelement <16 x i16> %{{.*}}, i16 %{{.*}}, i32 7
// CHECK: insertelement <16 x i16> %{{.*}}, i16 %{{.*}}, i32 8
// CHECK: insertelement <16 x i16> %{{.*}}, i16 %{{.*}}, i32 9
// CHECK: insertelement <16 x i16> %{{.*}}, i16 %{{.*}}, i32 10
// CHECK: insertelement <16 x i16> %{{.*}}, i16 %{{.*}}, i32 11
// CHECK: insertelement <16 x i16> %{{.*}}, i16 %{{.*}}, i32 12
// CHECK: insertelement <16 x i16> %{{.*}}, i16 %{{.*}}, i32 13
// CHECK: insertelement <16 x i16> %{{.*}}, i16 %{{.*}}, i32 14
// CHECK: insertelement <16 x i16> %{{.*}}, i16 %{{.*}}, i32 15
return _mm256_set_epi16(A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15);
}
__m256i test_mm256_set_epi32(int A0, int A1, int A2, int A3, int A4, int A5, int A6, int A7) {
// CHECK-LABEL: test_mm256_set_epi32
// CHECK: insertelement <8 x i32> undef, i32 %{{.*}}, i32 0
// CHECK: insertelement <8 x i32> %{{.*}}, i32 %{{.*}}, i32 1
// CHECK: insertelement <8 x i32> %{{.*}}, i32 %{{.*}}, i32 2
// CHECK: insertelement <8 x i32> %{{.*}}, i32 %{{.*}}, i32 3
// CHECK: insertelement <8 x i32> %{{.*}}, i32 %{{.*}}, i32 4
// CHECK: insertelement <8 x i32> %{{.*}}, i32 %{{.*}}, i32 5
// CHECK: insertelement <8 x i32> %{{.*}}, i32 %{{.*}}, i32 6
// CHECK: insertelement <8 x i32> %{{.*}}, i32 %{{.*}}, i32 7
return _mm256_set_epi32(A0, A1, A2, A3, A4, A5, A6, A7);
}
__m256i test_mm256_set_epi64x(long long A0, long long A1, long long A2, long long A3) {
// CHECK-LABEL: test_mm256_set_epi64x
// CHECK: insertelement <4 x i64> undef, i64 %{{.*}}, i32 0
// CHECK: insertelement <4 x i64> %{{.*}}, i64 %{{.*}}, i32 1
// CHECK: insertelement <4 x i64> %{{.*}}, i64 %{{.*}}, i32 2
// CHECK: insertelement <4 x i64> %{{.*}}, i64 %{{.*}}, i32 3
return _mm256_set_epi64x(A0, A1, A2, A3);
}
__m256 test_mm256_set_m128(__m128 A, __m128 B) {
// CHECK-LABEL: test_mm256_set_m128
// CHECK: shufflevector <4 x float> %{{.*}}, <4 x float> %{{.*}}, <8 x i32> <i32 0, i32 1, i32 2, i32 3, i32 4, i32 5, i32 6, i32 7>
return _mm256_set_m128(A, B);
}
__m256d test_mm256_set_m128d(__m128d A, __m128d B) {
// CHECK-LABEL: test_mm256_set_m128d
// CHECK: shufflevector <4 x float> %{{.*}}, <4 x float> %{{.*}}, <8 x i32> <i32 0, i32 1, i32 2, i32 3, i32 4, i32 5, i32 6, i32 7>
return _mm256_set_m128d(A, B);
}
__m256i test_mm256_set_m128i(__m128i A, __m128i B) {
// CHECK-LABEL: test_mm256_set_m128i
// CHECK: shufflevector <4 x float> %{{.*}}, <4 x float> %{{.*}}, <8 x i32> <i32 0, i32 1, i32 2, i32 3, i32 4, i32 5, i32 6, i32 7>
return _mm256_set_m128i(A, B);
}
__m256d test_mm256_set_pd(double A0, double A1, double A2, double A3) {
// CHECK-LABEL: test_mm256_set_pd
// CHECK: insertelement <4 x double> undef, double %{{.*}}, i32 0
// CHECK: insertelement <4 x double> %{{.*}}, double %{{.*}}, i32 1
// CHECK: insertelement <4 x double> %{{.*}}, double %{{.*}}, i32 2
// CHECK: insertelement <4 x double> %{{.*}}, double %{{.*}}, i32 3
return _mm256_set_pd(A0, A1, A2, A3);
}
__m256 test_mm256_set_ps(float A0, float A1, float A2, float A3, float A4, float A5, float A6, float A7) {
// CHECK-LABEL: test_mm256_set_ps
// CHECK: insertelement <8 x float> undef, float %{{.*}}, i32 0
// CHECK: insertelement <8 x float> %{{.*}}, float %{{.*}}, i32 1
// CHECK: insertelement <8 x float> %{{.*}}, float %{{.*}}, i32 2
// CHECK: insertelement <8 x float> %{{.*}}, float %{{.*}}, i32 3
// CHECK: insertelement <8 x float> %{{.*}}, float %{{.*}}, i32 4
// CHECK: insertelement <8 x float> %{{.*}}, float %{{.*}}, i32 5
// CHECK: insertelement <8 x float> %{{.*}}, float %{{.*}}, i32 6
// CHECK: insertelement <8 x float> %{{.*}}, float %{{.*}}, i32 7
return _mm256_set_ps(A0, A1, A2, A3, A4, A5, A6, A7);
}
__m256i test_mm256_set1_epi8(char A) {
// CHECK-LABEL: test_mm256_set1_epi8
// CHECK: insertelement <32 x i8> undef, i8 %{{.*}}, i32 0
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 1
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 2
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 3
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 4
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 5
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 6
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 7
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 8
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 9
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 10
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 11
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 12
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 13
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 14
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 15
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 16
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 17
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 18
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 19
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 20
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 21
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 22
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 23
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 24
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 25
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 26
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 27
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 28
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 29
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 30
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 31
return _mm256_set1_epi8(A);
}
__m256i test_mm256_set1_epi16(short A) {
// CHECK-LABEL: test_mm256_set1_epi16
// CHECK: insertelement <16 x i16> undef, i16 %{{.*}}, i32 0
// CHECK: insertelement <16 x i16> %{{.*}}, i16 %{{.*}}, i32 1
// CHECK: insertelement <16 x i16> %{{.*}}, i16 %{{.*}}, i32 2
// CHECK: insertelement <16 x i16> %{{.*}}, i16 %{{.*}}, i32 3
// CHECK: insertelement <16 x i16> %{{.*}}, i16 %{{.*}}, i32 4
// CHECK: insertelement <16 x i16> %{{.*}}, i16 %{{.*}}, i32 5
// CHECK: insertelement <16 x i16> %{{.*}}, i16 %{{.*}}, i32 6
// CHECK: insertelement <16 x i16> %{{.*}}, i16 %{{.*}}, i32 7
// CHECK: insertelement <16 x i16> %{{.*}}, i16 %{{.*}}, i32 8
// CHECK: insertelement <16 x i16> %{{.*}}, i16 %{{.*}}, i32 9
// CHECK: insertelement <16 x i16> %{{.*}}, i16 %{{.*}}, i32 10
// CHECK: insertelement <16 x i16> %{{.*}}, i16 %{{.*}}, i32 11
// CHECK: insertelement <16 x i16> %{{.*}}, i16 %{{.*}}, i32 12
// CHECK: insertelement <16 x i16> %{{.*}}, i16 %{{.*}}, i32 13
// CHECK: insertelement <16 x i16> %{{.*}}, i16 %{{.*}}, i32 14
// CHECK: insertelement <16 x i16> %{{.*}}, i16 %{{.*}}, i32 15
return _mm256_set1_epi16(A);
}
__m256i test_mm256_set1_epi32(int A) {
// CHECK-LABEL: test_mm256_set1_epi32
// CHECK: insertelement <8 x i32> undef, i32 %{{.*}}, i32 0
// CHECK: insertelement <8 x i32> %{{.*}}, i32 %{{.*}}, i32 1
// CHECK: insertelement <8 x i32> %{{.*}}, i32 %{{.*}}, i32 2
// CHECK: insertelement <8 x i32> %{{.*}}, i32 %{{.*}}, i32 3
// CHECK: insertelement <8 x i32> %{{.*}}, i32 %{{.*}}, i32 4
// CHECK: insertelement <8 x i32> %{{.*}}, i32 %{{.*}}, i32 5
// CHECK: insertelement <8 x i32> %{{.*}}, i32 %{{.*}}, i32 6
// CHECK: insertelement <8 x i32> %{{.*}}, i32 %{{.*}}, i32 7
return _mm256_set1_epi32(A);
}
__m256i test_mm256_set1_epi64x(long long A) {
// CHECK-LABEL: test_mm256_set1_epi64x
// CHECK: insertelement <4 x i64> undef, i64 %{{.*}}, i32 0
// CHECK: insertelement <4 x i64> %{{.*}}, i64 %{{.*}}, i32 1
// CHECK: insertelement <4 x i64> %{{.*}}, i64 %{{.*}}, i32 2
// CHECK: insertelement <4 x i64> %{{.*}}, i64 %{{.*}}, i32 3
return _mm256_set1_epi64x(A);
}
__m256d test_mm256_set1_pd(double A) {
// CHECK-LABEL: test_mm256_set1_pd
// CHECK: insertelement <4 x double> undef, double %{{.*}}, i32 0
// CHECK: insertelement <4 x double> %{{.*}}, double %{{.*}}, i32 1
// CHECK: insertelement <4 x double> %{{.*}}, double %{{.*}}, i32 2
// CHECK: insertelement <4 x double> %{{.*}}, double %{{.*}}, i32 3
return _mm256_set1_pd(A);
}
__m256 test_mm256_set1_ps(float A) {
// CHECK-LABEL: test_mm256_set1_ps
// CHECK: insertelement <8 x float> undef, float %{{.*}}, i32 0
// CHECK: insertelement <8 x float> %{{.*}}, float %{{.*}}, i32 1
// CHECK: insertelement <8 x float> %{{.*}}, float %{{.*}}, i32 2
// CHECK: insertelement <8 x float> %{{.*}}, float %{{.*}}, i32 3
// CHECK: insertelement <8 x float> %{{.*}}, float %{{.*}}, i32 4
// CHECK: insertelement <8 x float> %{{.*}}, float %{{.*}}, i32 5
// CHECK: insertelement <8 x float> %{{.*}}, float %{{.*}}, i32 6
// CHECK: insertelement <8 x float> %{{.*}}, float %{{.*}}, i32 7
return _mm256_set1_ps(A);
}
__m256i test_mm256_setr_epi8(char A0, char A1, char A2, char A3, char A4, char A5, char A6, char A7,
char A8, char A9, char A10, char A11, char A12, char A13, char A14, char A15,
char A16, char A17, char A18, char A19, char A20, char A21, char A22, char A23,
char A24, char A25, char A26, char A27, char A28, char A29, char A30, char A31) {
// CHECK-LABEL: test_mm256_setr_epi8
// CHECK: insertelement <32 x i8> undef, i8 %{{.*}}, i32 0
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 1
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 2
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 3
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 4
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 5
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 6
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 7
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 8
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 9
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 10
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 11
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 12
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 13
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 14
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 15
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 16
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 17
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 18
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 19
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 20
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 21
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 22
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 23
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 24
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 25
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 26
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 27
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 28
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 29
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 30
// CHECK: insertelement <32 x i8> %{{.*}}, i8 %{{.*}}, i32 31
return _mm256_setr_epi8(A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21, A22, A23, A24, A25, A26, A27, A28, A29, A30, A31);
}
__m256i test_mm256_setr_epi16(short A0, short A1, short A2, short A3, short A4, short A5, short A6, short A7,
short A8, short A9, short A10, short A11, short A12, short A13, short A14, short A15) {
// CHECK-LABEL: test_mm256_setr_epi16
// CHECK: insertelement <16 x i16> undef, i16 %{{.*}}, i32 0
// CHECK: insertelement <16 x i16> %{{.*}}, i16 %{{.*}}, i32 1
// CHECK: insertelement <16 x i16> %{{.*}}, i16 %{{.*}}, i32 2
// CHECK: insertelement <16 x i16> %{{.*}}, i16 %{{.*}}, i32 3
// CHECK: insertelement <16 x i16> %{{.*}}, i16 %{{.*}}, i32 4
// CHECK: insertelement <16 x i16> %{{.*}}, i16 %{{.*}}, i32 5
// CHECK: insertelement <16 x i16> %{{.*}}, i16 %{{.*}}, i32 6
// CHECK: insertelement <16 x i16> %{{.*}}, i16 %{{.*}}, i32 7
// CHECK: insertelement <16 x i16> %{{.*}}, i16 %{{.*}}, i32 8
// CHECK: insertelement <16 x i16> %{{.*}}, i16 %{{.*}}, i32 9
// CHECK: insertelement <16 x i16> %{{.*}}, i16 %{{.*}}, i32 10
// CHECK: insertelement <16 x i16> %{{.*}}, i16 %{{.*}}, i32 11
// CHECK: insertelement <16 x i16> %{{.*}}, i16 %{{.*}}, i32 12
// CHECK: insertelement <16 x i16> %{{.*}}, i16 %{{.*}}, i32 13
// CHECK: insertelement <16 x i16> %{{.*}}, i16 %{{.*}}, i32 14
// CHECK: insertelement <16 x i16> %{{.*}}, i16 %{{.*}}, i32 15
return _mm256_setr_epi16(A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15);
}
__m256i test_mm256_setr_epi32(int A0, int A1, int A2, int A3, int A4, int A5, int A6, int A7) {
// CHECK-LABEL: test_mm256_setr_epi32
// CHECK: insertelement <8 x i32> undef, i32 %{{.*}}, i32 0
// CHECK: insertelement <8 x i32> %{{.*}}, i32 %{{.*}}, i32 1
// CHECK: insertelement <8 x i32> %{{.*}}, i32 %{{.*}}, i32 2
// CHECK: insertelement <8 x i32> %{{.*}}, i32 %{{.*}}, i32 3
// CHECK: insertelement <8 x i32> %{{.*}}, i32 %{{.*}}, i32 4
// CHECK: insertelement <8 x i32> %{{.*}}, i32 %{{.*}}, i32 5
// CHECK: insertelement <8 x i32> %{{.*}}, i32 %{{.*}}, i32 6
// CHECK: insertelement <8 x i32> %{{.*}}, i32 %{{.*}}, i32 7
return _mm256_setr_epi32(A0, A1, A2, A3, A4, A5, A6, A7);
}
__m256i test_mm256_setr_epi64x(long long A0, long long A1, long long A2, long long A3) {
// CHECK-LABEL: test_mm256_setr_epi64x
// CHECK: insertelement <4 x i64> undef, i64 %{{.*}}, i32 0
// CHECK: insertelement <4 x i64> %{{.*}}, i64 %{{.*}}, i32 1
// CHECK: insertelement <4 x i64> %{{.*}}, i64 %{{.*}}, i32 2
// CHECK: insertelement <4 x i64> %{{.*}}, i64 %{{.*}}, i32 3
return _mm256_setr_epi64x(A0, A1, A2, A3);
}
__m256 test_mm256_setr_m128(__m128 A, __m128 B) {
// CHECK-LABEL: test_mm256_setr_m128
// CHECK: shufflevector <4 x float> %{{.*}}, <4 x float> %{{.*}}, <8 x i32> <i32 0, i32 1, i32 2, i32 3, i32 4, i32 5, i32 6, i32 7>
return _mm256_setr_m128(A, B);
}
__m256d test_mm256_setr_m128d(__m128d A, __m128d B) {
// CHECK-LABEL: test_mm256_setr_m128d
// CHECK: shufflevector <4 x float> %{{.*}}, <4 x float> %{{.*}}, <8 x i32> <i32 0, i32 1, i32 2, i32 3, i32 4, i32 5, i32 6, i32 7>
return _mm256_setr_m128d(A, B);
}
__m256i test_mm256_setr_m128i(__m128i A, __m128i B) {
// CHECK-LABEL: test_mm256_setr_m128i
// CHECK: shufflevector <4 x float> %{{.*}}, <4 x float> %{{.*}}, <8 x i32> <i32 0, i32 1, i32 2, i32 3, i32 4, i32 5, i32 6, i32 7>
return _mm256_setr_m128i(A, B);
}
__m256d test_mm256_setr_pd(double A0, double A1, double A2, double A3) {
// CHECK-LABEL: test_mm256_setr_pd
// CHECK: insertelement <4 x double> undef, double %{{.*}}, i32 0
// CHECK: insertelement <4 x double> %{{.*}}, double %{{.*}}, i32 1
// CHECK: insertelement <4 x double> %{{.*}}, double %{{.*}}, i32 2
// CHECK: insertelement <4 x double> %{{.*}}, double %{{.*}}, i32 3
return _mm256_setr_pd(A0, A1, A2, A3);
}
__m256 test_mm256_setr_ps(float A0, float A1, float A2, float A3, float A4, float A5, float A6, float A7) {
// CHECK-LABEL: test_mm256_setr_ps
// CHECK: insertelement <8 x float> undef, float %{{.*}}, i32 0
// CHECK: insertelement <8 x float> %{{.*}}, float %{{.*}}, i32 1
// CHECK: insertelement <8 x float> %{{.*}}, float %{{.*}}, i32 2
// CHECK: insertelement <8 x float> %{{.*}}, float %{{.*}}, i32 3
// CHECK: insertelement <8 x float> %{{.*}}, float %{{.*}}, i32 4
// CHECK: insertelement <8 x float> %{{.*}}, float %{{.*}}, i32 5
// CHECK: insertelement <8 x float> %{{.*}}, float %{{.*}}, i32 6
// CHECK: insertelement <8 x float> %{{.*}}, float %{{.*}}, i32 7
return _mm256_setr_ps(A0, A1, A2, A3, A4, A5, A6, A7);
}
__m256d test_mm256_setzero_pd() {
// CHECK-LABEL: test_mm256_setzero_pd
// CHECK: store <4 x double> zeroinitializer
return _mm256_setzero_pd();
}
__m256 test_mm256_setzero_ps() {
// CHECK-LABEL: test_mm256_setzero_ps
// CHECK: store <8 x float> zeroinitializer
return _mm256_setzero_ps();
}
__m256i test_mm256_setzero_si256() {
// CHECK-LABEL: test_mm256_setzero_si256
// CHECK: store <4 x i64> zeroinitializer
return _mm256_setzero_si256();
}
__m256d test_mm256_shuffle_pd(__m256d A, __m256d B) {
// CHECK-LABEL: test_mm256_shuffle_pd
// CHECK: shufflevector <4 x double> %{{.*}}, <4 x double> %{{.*}}, <4 x i32> <i32 0, i32 4, i32 2, i32 6>
return _mm256_shuffle_pd(A, B, 0);
}
__m256 test_mm256_shuffle_ps(__m256 A, __m256 B) {
// CHECK-LABEL: test_mm256_shuffle_ps
// CHECK: shufflevector <8 x float> %{{.*}}, <8 x float> %{{.*}}, <8 x i32> <i32 0, i32 0, i32 8, i32 8, i32 4, i32 4, i32 12, i32 12>
return _mm256_shuffle_ps(A, B, 0);
}
__m256d test_mm256_sqrt_pd(__m256d A) {
// CHECK-LABEL: test_mm256_sqrt_pd
// CHECK: call <4 x double> @llvm.x86.avx.sqrt.pd.256(<4 x double> %{{.*}})
return _mm256_sqrt_pd(A);
}
__m256 test_mm256_sqrt_ps(__m256 A) {
// CHECK-LABEL: test_mm256_sqrt_ps
// CHECK: call <8 x float> @llvm.x86.avx.sqrt.ps.256(<8 x float> %{{.*}})
return _mm256_sqrt_ps(A);
}
void test_mm256_store_pd(double* A, __m256d B) {
// CHECK-LABEL: test_mm256_store_pd
// CHECK: store <4 x double> %{{.*}}, <4 x double>* %{{.*}}, align 32
_mm256_store_pd(A, B);
}
void test_mm256_store_ps(float* A, __m256 B) {
// CHECK-LABEL: test_mm256_store_ps
// CHECK: store <8 x float> %{{.*}}, <8 x float>* %{{.*}}, align 32
_mm256_store_ps(A, B);
}
void test_mm256_store_si256(__m256i* A, __m256i B) {
// CHECK-LABEL: test_mm256_store_si256
// CHECK: store <4 x i64> %{{.*}}, <4 x i64>* %{{.*}}, align 32
_mm256_store_si256(A, B);
}
void test_mm256_storeu_pd(double* A, __m256d B) {
// CHECK-LABEL: test_mm256_storeu_pd
// CHECK: store <4 x double> %{{.*}}, <4 x double>* %{{.*}}, align 1{{$}}
// CHECK-NEXT: ret void
_mm256_storeu_pd(A, B);
}
void test_mm256_storeu_ps(float* A, __m256 B) {
// CHECK-LABEL: test_mm256_storeu_ps
// CHECK: store <8 x float> %{{.*}}, <8 x float>* %{{.*}}, align 1{{$}}
// CHECk-NEXT: ret void
_mm256_storeu_ps(A, B);
}
void test_mm256_storeu_si256(__m256i* A, __m256i B) {
// CHECK-LABEL: test_mm256_storeu_si256
// CHECK: store <4 x i64> %{{.*}}, <4 x i64>* %{{.*}}, align 1{{$}}
// CHECk-NEXT: ret void
_mm256_storeu_si256(A, B);
}
void test_mm256_storeu2_m128(float* A, float* B, __m256 C) {
// CHECK-LABEL: test_mm256_storeu2_m128
// CHECK: shufflevector <8 x float> %{{.*}}, <8 x float> %{{.*}}, <4 x i32> <i32 0, i32 1, i32 2, i32 3>
// CHECK: store <4 x float> %{{.*}}, <4 x float>* %{{.*}}, align 1{{$}}
// CHECK: shufflevector <8 x float> %{{.*}}, <8 x float> undef, <4 x i32> <i32 4, i32 5, i32 6, i32 7>
// CHECK: store <4 x float> %{{.*}}, <4 x float>* %{{.*}}, align 1{{$}}
_mm256_storeu2_m128(A, B, C);
}
void test_mm256_storeu2_m128d(double* A, double* B, __m256d C) {
// CHECK-LABEL: test_mm256_storeu2_m128d
// CHECK: shufflevector <4 x double> %{{.*}}, <4 x double> %{{.*}}, <2 x i32> <i32 0, i32 1>
// CHECK: store <2 x double> %{{.*}}, <2 x double>* %{{.*}}, align 1{{$}}
// CHECK: shufflevector <4 x double> %{{.*}}, <4 x double> undef, <2 x i32> <i32 2, i32 3>
// CHECK: store <2 x double> %{{.*}}, <2 x double>* %{{.*}}, align 1{{$}}
_mm256_storeu2_m128d(A, B, C);
}
void test_mm256_storeu2_m128i(__m128i* A, __m128i* B, __m256i C) {
// CHECK-LABEL: test_mm256_storeu2_m128i
// CHECK: shufflevector <4 x i64> %{{.*}}, <4 x i64> %{{.*}}, <2 x i32> <i32 0, i32 1>
// CHECK: store <2 x i64> %{{.*}}, <2 x i64>* %{{.*}}, align 1{{$}}
// CHECK: shufflevector <4 x i64> %{{.*}}, <4 x i64> undef, <2 x i32> <i32 2, i32 3>
// CHECK: store <2 x i64> %{{.*}}, <2 x i64>* %{{.*}}, align 1{{$}}
_mm256_storeu2_m128i(A, B, C);
}
void test_mm256_stream_pd(double* A, __m256d B) {
// CHECK-LABEL: test_mm256_stream_pd
// CHECK: store <4 x double> %{{.*}}, <4 x double>* %{{.*}}, align 32, !nontemporal
_mm256_stream_pd(A, B);
}
void test_mm256_stream_ps(float* A, __m256 B) {
// CHECK-LABEL: test_mm256_stream_ps
// CHECK: store <8 x float> %{{.*}}, <8 x float>* %{{.*}}, align 32, !nontemporal
_mm256_stream_ps(A, B);
}
void test_mm256_stream_si256(__m256i* A, __m256i B) {
// CHECK-LABEL: test_mm256_stream_si256
// CHECK: store <4 x i64> %{{.*}}, <4 x i64>* %{{.*}}, align 32, !nontemporal
_mm256_stream_si256(A, B);
}
__m256d test_mm256_sub_pd(__m256d A, __m256d B) {
// CHECK-LABEL: test_mm256_sub_pd
// CHECK: fsub <4 x double>
return _mm256_sub_pd(A, B);
}
__m256 test_mm256_sub_ps(__m256 A, __m256 B) {
// CHECK-LABEL: test_mm256_sub_ps
// CHECK: fsub <8 x float>
return _mm256_sub_ps(A, B);
}
int test_mm_testc_pd(__m128d A, __m128d B) {
// CHECK-LABEL: test_mm_testc_pd
// CHECK: call i32 @llvm.x86.avx.vtestc.pd(<2 x double> %{{.*}}, <2 x double> %{{.*}})
return _mm_testc_pd(A, B);
}
int test_mm256_testc_pd(__m256d A, __m256d B) {
// CHECK-LABEL: test_mm256_testc_pd
// CHECK: call i32 @llvm.x86.avx.vtestc.pd.256(<4 x double> %{{.*}}, <4 x double> %{{.*}})
return _mm256_testc_pd(A, B);
}
int test_mm_testc_ps(__m128 A, __m128 B) {
// CHECK-LABEL: test_mm_testc_ps
// CHECK: call i32 @llvm.x86.avx.vtestc.ps(<4 x float> %{{.*}}, <4 x float> %{{.*}})
return _mm_testc_ps(A, B);
}
int test_mm256_testc_ps(__m256 A, __m256 B) {
// CHECK-LABEL: test_mm256_testc_ps
// CHECK: call i32 @llvm.x86.avx.vtestc.ps.256(<8 x float> %{{.*}}, <8 x float> %{{.*}})
return _mm256_testc_ps(A, B);
}
int test_mm256_testc_si256(__m256 A, __m256 B) {
// CHECK-LABEL: test_mm256_testc_si256
// CHECK: call i32 @llvm.x86.avx.ptestc.256(<4 x i64> %{{.*}}, <4 x i64> %{{.*}})
return _mm256_testc_si256(A, B);
}
int test_mm_testnzc_pd(__m128d A, __m128d B) {
// CHECK-LABEL: test_mm_testnzc_pd
// CHECK: call i32 @llvm.x86.avx.vtestnzc.pd(<2 x double> %{{.*}}, <2 x double> %{{.*}})
return _mm_testnzc_pd(A, B);
}
int test_mm256_testnzc_pd(__m256d A, __m256d B) {
// CHECK-LABEL: test_mm256_testnzc_pd
// CHECK: call i32 @llvm.x86.avx.vtestnzc.pd.256(<4 x double> %{{.*}}, <4 x double> %{{.*}})
return _mm256_testnzc_pd(A, B);
}
int test_mm_testnzc_ps(__m128 A, __m128 B) {
// CHECK-LABEL: test_mm_testnzc_ps
// CHECK: call i32 @llvm.x86.avx.vtestnzc.ps(<4 x float> %{{.*}}, <4 x float> %{{.*}})
return _mm_testnzc_ps(A, B);
}
int test_mm256_testnzc_ps(__m256 A, __m256 B) {
// CHECK-LABEL: test_mm256_testnzc_ps
// CHECK: call i32 @llvm.x86.avx.vtestnzc.ps.256(<8 x float> %{{.*}}, <8 x float> %{{.*}})
return _mm256_testnzc_ps(A, B);
}
int test_mm256_testnzc_si256(__m256 A, __m256 B) {
// CHECK-LABEL: test_mm256_testnzc_si256
// CHECK: call i32 @llvm.x86.avx.ptestnzc.256(<4 x i64> %{{.*}}, <4 x i64> %{{.*}})
return _mm256_testnzc_si256(A, B);
}
int test_mm_testz_pd(__m128d A, __m128d B) {
// CHECK-LABEL: test_mm_testz_pd
// CHECK: call i32 @llvm.x86.avx.vtestz.pd(<2 x double> %{{.*}}, <2 x double> %{{.*}})
return _mm_testz_pd(A, B);
}
int test_mm256_testz_pd(__m256d A, __m256d B) {
// CHECK-LABEL: test_mm256_testz_pd
// CHECK: call i32 @llvm.x86.avx.vtestz.pd.256(<4 x double> %{{.*}}, <4 x double> %{{.*}})
return _mm256_testz_pd(A, B);
}
int test_mm_testz_ps(__m128 A, __m128 B) {
// CHECK-LABEL: test_mm_testz_ps
// CHECK: call i32 @llvm.x86.avx.vtestz.ps(<4 x float> %{{.*}}, <4 x float> %{{.*}})
return _mm_testz_ps(A, B);
}
int test_mm256_testz_ps(__m256 A, __m256 B) {
// CHECK-LABEL: test_mm256_testz_ps
// CHECK: call i32 @llvm.x86.avx.vtestz.ps.256(<8 x float> %{{.*}}, <8 x float> %{{.*}})
return _mm256_testz_ps(A, B);
}
int test_mm256_testz_si256(__m256 A, __m256 B) {
// CHECK-LABEL: test_mm256_testz_si256
// CHECK: call i32 @llvm.x86.avx.ptestz.256(<4 x i64> %{{.*}}, <4 x i64> %{{.*}})
return _mm256_testz_si256(A, B);
}
__m256 test_mm256_undefined_ps() {
// CHECK-LABEL: @test_mm256_undefined_ps
// CHECK: ret <8 x float> undef
return _mm256_undefined_ps();
}
__m256d test_mm256_undefined_pd() {
// CHECK-LABEL: @test_mm256_undefined_pd
// CHECK: ret <4 x double> undef
return _mm256_undefined_pd();
}
__m256i test_mm256_undefined_si256() {
// CHECK-LABEL: @test_mm256_undefined_si256
// CHECK: ret <4 x i64> undef
return _mm256_undefined_si256();
}
__m256d test_mm256_unpackhi_pd(__m256d A, __m256d B) {
// CHECK-LABEL: test_mm256_unpackhi_pd
// CHECK: shufflevector <4 x double> %{{.*}}, <4 x double> %{{.*}}, <4 x i32> <i32 1, i32 5, i32 3, i32 7>
return _mm256_unpackhi_pd(A, B);
}
__m256 test_mm256_unpackhi_ps(__m256 A, __m256 B) {
// CHECK-LABEL: test_mm256_unpackhi_ps
// CHECK: shufflevector <8 x float> %{{.*}}, <8 x float> %{{.*}}, <8 x i32> <i32 2, i32 10, i32 3, i32 11, i32 6, i32 14, i32 7, i32 15>
return _mm256_unpackhi_ps(A, B);
}
__m256d test_mm256_unpacklo_pd(__m256d A, __m256d B) {
// CHECK-LABEL: test_mm256_unpacklo_pd
// CHECK: shufflevector <4 x double> %{{.*}}, <4 x double> %{{.*}}, <4 x i32> <i32 0, i32 4, i32 2, i32 6>
return _mm256_unpacklo_pd(A, B);
}
__m256 test_mm256_unpacklo_ps(__m256 A, __m256 B) {
// CHECK-LABEL: test_mm256_unpacklo_ps
// CHECK: shufflevector <8 x float> %{{.*}}, <8 x float> %{{.*}}, <8 x i32> <i32 0, i32 8, i32 1, i32 9, i32 4, i32 12, i32 5, i32 13>
return _mm256_unpacklo_ps(A, B);
}
__m256d test_mm256_xor_pd(__m256d A, __m256d B) {
// CHECK-LABEL: test_mm256_xor_pd
// CHECK: xor <4 x i64>
return _mm256_xor_pd(A, B);
}
__m256 test_mm256_xor_ps(__m256 A, __m256 B) {
// CHECK-LABEL: test_mm256_xor_ps
// CHECK: xor <8 x i32>
return _mm256_xor_ps(A, B);
}
void test_mm256_zeroall() {
// CHECK-LABEL: test_mm256_zeroall
// CHECK: call void @llvm.x86.avx.vzeroall()
return _mm256_zeroall();
}
void test_mm256_zeroupper() {
// CHECK-LABEL: test_mm256_zeroupper
// CHECK: call void @llvm.x86.avx.vzeroupper()
return _mm256_zeroupper();
}
double test_mm256_cvtsd_f64(__m256d __a)
{
// CHECK-LABEL: @test_mm256_cvtsd_f64
// CHECK: extractelement <4 x double> %{{.*}}, i32 0
return _mm256_cvtsd_f64(__a);
}
int test_mm256_cvtsi256_si32(__m256i __a)
{
// CHECK-LABEL: @test_mm256_cvtsi256_si32
// CHECK: extractelement <8 x i32> %{{.*}}, i32 0
return _mm256_cvtsi256_si32(__a);
}
float test_mm256_cvtss_f32(__m256 __a)
{
// CHECK-LABEL: @test_mm256_cvtss_f32
// CHECK: extractelement <8 x float> %{{.*}}, i32 0
return _mm256_cvtss_f32(__a);
}
|