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
|
// RUN: %target-sil-opt -enforce-exclusivity=none -enable-sil-verify-all %s -licm | %FileCheck %s
// REQUIRES: swift_in_compiler
// Declare this SIL to be canonical because some tests break raw SIL
// conventions. e.g. address-type block args. -enforce-exclusivity=none is also
// required to allow address-type block args in canonical SIL.
sil_stage canonical
import Builtin
import Swift
class Storage {
init()
}
// globalArray
sil_global @globalArray : $Storage
// CHECK-LABEL: @memset
// CHECK: bb0
// CHECK: load %0
// CHECK: br bb2
// CHECK: bb2({{.*}}):
// CHECK-NOT: load
// CHECK-NOT: fix_lifetime
// CHECK: cond_br
sil @memset : $@convention(thin) (@inout Builtin.NativeObject, Int) -> () {
bb0(%0 : $*Builtin.NativeObject, %1 : $Int):
%5 = integer_literal $Builtin.Int1, -1
%46 = integer_literal $Builtin.Word, 0
br bb2(%46 : $Builtin.Word)
bb1:
%52 = tuple ()
return %52 : $()
bb2(%54 : $Builtin.Word):
%55 = integer_literal $Builtin.Word, 1
%57 = builtin "sadd_with_overflow_Word"(%54 : $Builtin.Word, %55 : $Builtin.Word, %5 : $Builtin.Int1) : $(Builtin.Word, Builtin.Int1)
%58 = tuple_extract %57 : $(Builtin.Word, Builtin.Int1), 0
%59 = load %0 : $*Builtin.NativeObject
%60 = integer_literal $Builtin.Word, 100
%96 = ref_to_raw_pointer %59 : $Builtin.NativeObject to $Builtin.RawPointer
%97 = index_raw_pointer %96 : $Builtin.RawPointer, %58 : $Builtin.Word
%98 = pointer_to_address %97 : $Builtin.RawPointer to [strict] $*Int
%99 = index_addr %98 : $*Int, %54 : $Builtin.Word
fix_lifetime %59: $Builtin.NativeObject
store %1 to %99 : $*Int
%101 = builtin "cmp_eq_Word"(%58 : $Builtin.Word, %60 : $Builtin.Word) : $Builtin.Int1
cond_br %101, bb1, bb2(%58 : $Builtin.Word)
}
// CHECK-LABEL: @must_move_condfail
// CHECK: bb0
// CHECK: load %0
// CHECK: cond_fail
// CHECK: [[INVARIANTADDR:%.*]] = pointer_to_address
// CHECK: load [[INVARIANTADDR]]
// CHECK: br bb2
// CHECK: bb2({{.*}}):
// The address computation of the load was guarded by the cond_fail. If we hoist
// the load we must also hoist the cond_fail.
// CHECK-NOT: cond_fail
// CHECK-NOT: load
// CHECK: cond_br
sil @must_move_condfail : $@convention(thin) (@inout Builtin.NativeObject, Int, Builtin.Word) -> () {
bb0(%0 : $*Builtin.NativeObject, %1 : $Int, %2: $Builtin.Word):
%5 = integer_literal $Builtin.Int1, -1
%6 = load %0 : $*Builtin.NativeObject
%46 = integer_literal $Builtin.Word, 0
br bb2(%46 : $Builtin.Word)
bb1:
%102 = tuple ()
return %102 : $()
bb2(%48 : $Builtin.Word):
%51 = builtin "sadd_with_overflow_Word"(%2 : $Builtin.Word, %46 : $Builtin.Word, %5 : $Builtin.Int1) : $(Builtin.Word, Builtin.Int1)
%52 = tuple_extract %51 : $(Builtin.Word, Builtin.Int1), 0
%53 = tuple_extract %51 : $(Builtin.Word, Builtin.Int1), 1
cond_fail %53 : $Builtin.Int1
%55 = integer_literal $Builtin.Word, 1
%57 = builtin "sadd_with_overflow_Word"(%48 : $Builtin.Word, %55 : $Builtin.Word, %5 : $Builtin.Int1) : $(Builtin.Word, Builtin.Int1)
%58 = tuple_extract %57 : $(Builtin.Word, Builtin.Int1), 0
%60 = integer_literal $Builtin.Word, 100
%61 = ref_to_raw_pointer %6 : $Builtin.NativeObject to $Builtin.RawPointer
%62 = index_raw_pointer %61 : $Builtin.RawPointer, %52 : $Builtin.Word
%63 = pointer_to_address %62 : $Builtin.RawPointer to [strict] $*Builtin.NativeObject
%64 = load %63 : $*Builtin.NativeObject
%96 = ref_to_raw_pointer %64 : $Builtin.NativeObject to $Builtin.RawPointer
%97 = index_raw_pointer %96 : $Builtin.RawPointer, %58 : $Builtin.Word
%98 = pointer_to_address %97 : $Builtin.RawPointer to [strict] $*Int
%99 = index_addr %98 : $*Int, %48 : $Builtin.Word
store %1 to %99 : $*Int
%101 = builtin "cmp_eq_Word"(%58 : $Builtin.Word, %60 : $Builtin.Word) : $Builtin.Int1
cond_br %101, bb1, bb2(%58 : $Builtin.Word)
}
// CHECK-LABEL: sil @hoist_outer_loop
// CHECK: bb0([[ADDR:%.*]] : $*Builtin.Int1
// CHECK: load [[ADDR]]
// CHECK: integer_literal $Builtin.Word, 101
// CHECK: br bb1
// CHECK: return
sil @hoist_outer_loop : $@convention(thin) (@inout Builtin.Int1, Int) -> () {
bb0(%0 : $*Builtin.Int1, %1 : $Int):
%2 = integer_literal $Builtin.Int1, -1
%3 = integer_literal $Builtin.Word, 0
br bb1
// Outer loop.
bb1:
%5 = load %0 : $*Builtin.Int1
%6 = integer_literal $Builtin.Word, 101
cond_br %5, bb2, bb3
bb2:
cond_br %5, bb4, bb1
// Inner loop.
bb3:
cond_br %5, bb2, bb3
bb4:
%10 = tuple ()
return %10 : $()
}
// CHECK-LABEL: sil @dont_hoist_outer_loop
// CHECK: bb0([[ADDR:%.*]] : $*Builtin.Int1
// CHECK: integer_literal $Builtin.Word, 101
// CHECK: br bb1
// CHECK: bb1:
// CHECK: load [[ADDR]]
// CHECK: return
sil @dont_hoist_outer_loop : $@convention(thin) (@inout Builtin.Int1, Int) -> () {
bb0(%0 : $*Builtin.Int1, %1 : $Int):
%2 = integer_literal $Builtin.Int1, -1
%3 = integer_literal $Builtin.Word, 0
br bb1
// Outer loop.
bb1:
%5 = load %0 : $*Builtin.Int1
%6 = integer_literal $Builtin.Word, 101
cond_br %5, bb2, bb3
bb2:
cond_br %5, bb4, bb1
// Inner loop.
bb3:
store %2 to %0 : $*Builtin.Int1
cond_br %5, bb2, bb3
bb4:
%10 = tuple ()
return %10 : $()
}
sil [_semantics "array.get_count"] @getCount : $@convention(method) (@guaranteed Array<Int>) -> Int
sil @user : $@convention(thin) (Int) -> ()
// CHECK-LABEL: sil @dont_hoist_get_count_on_low_level_sil
// CHECK: {{^}}bb1:
// CHECK: apply
// CHECK: apply
// CHECK: {{^}}bb2:
// CHECK: return
sil @dont_hoist_get_count_on_low_level_sil : $@convention(thin) (@guaranteed Array<Int>) -> () {
bb0(%0 : $Array<Int>):
br bb1
bb1:
%f1 = function_ref @getCount : $@convention(method) (@guaranteed Array<Int>) -> Int
%f2 = function_ref @user : $@convention(thin) (Int) -> ()
%c1 = apply %f1(%0) : $@convention(method) (@guaranteed Array<Int>) -> Int
%c2 = apply %f2(%c1) : $@convention(thin) (Int) -> ()
cond_br undef, bb1, bb2
bb2:
%r1 = tuple ()
return %r1 : $()
}
sil @use_addr : $@convention(thin) (@inout Int32) -> ()
// CHECK-LABEL: sil @dont_hoist_aliased_stack_location
// CHECK: {{^}}bb0
// CHECK-NOT: load
// CHECK: {{^}}bb1:
// CHECK: store
// CHECK: apply
// CHECK: {{^}}bb2:
// CHECK: return
sil @dont_hoist_aliased_stack_location : $@convention(thin) (Int32) -> () {
bb0(%0 : $Int32):
%313 = alloc_stack $Int32
br bb1
bb1:
store %0 to %313 : $*Int32
%f = function_ref @use_addr : $@convention(thin) (@inout Int32) -> ()
%a = apply %f(%313) : $@convention(thin) (@inout Int32) -> ()
cond_br undef, bb1, bb2
bb2:
dealloc_stack %313 : $*Int32
%52 = tuple ()
return %52 : $()
}
public protocol P : class {
func foo() -> Int32
func boo() -> Int32
}
// Check that LICM does not hoist a metatype instruction before
// the open_existential instruction which creates the archtype,
// because this would break the dominance relation between them.
// CHECK-LABEL: sil @dont_hoist_metatype
// CHECK-NOT: metatype
// CHECK-NOT: witness_method
// CHECK: bb1({{%.*}} : $any P)
// CHECK-NOT: metatype
// CHECK-NOT: witness_method
// CHECK: open_existential_ref
// CHECK: metatype
// CHECK: witness_method
// CHECK: cond_br
sil @dont_hoist_metatype : $@convention(thin) (@inout Builtin.Int1, @owned P) -> () {
bb0(%0 : $*Builtin.Int1, %1 : $P):
br bb1(%1 : $P)
// Loop
bb1(%existential : $P):
%2 = open_existential_ref %existential : $P to $@opened("C4960DBA-02C5-11E6-BE1B-B8E856428C60", P) Self
%3 = metatype $@thick (@opened("C4960DBA-02C5-11E6-BE1B-B8E856428C60", P) Self).Type
%4 = witness_method $@opened("C4960DBA-02C5-11E6-BE1B-B8E856428C60", P) Self, #P.foo, %2 : $@opened("C4960DBA-02C5-11E6-BE1B-B8E856428C60", P) Self : $@convention(witness_method: P) <τ_0_0 where τ_0_0 : P> (@guaranteed τ_0_0) -> Int32
%5 = apply %4<@opened("C4960DBA-02C5-11E6-BE1B-B8E856428C60", P) Self>(%2) : $@convention(witness_method: P) <τ_0_0 where τ_0_0 : P> (@guaranteed τ_0_0) -> Int32
%6 = load %0 : $*Builtin.Int1
cond_br %6, bb3, bb1(%existential : $P)
bb3:
br bb4
bb4:
strong_release %1 : $P
%10 = tuple ()
return %10 : $()
}
// CHECK-LABEL: dont_hoist_existential_meta_type
// CHECK: bb0({{.*}}:
// CHECK-NOT: existential_metatype
// CHECK: bb1:
// CHECK: existential_metatype
// CHECK: cond_br
// CHECK: bb2:
sil @dont_hoist_existential_meta_type : $@convention(thin) (@in P) -> () {
bb0(%0 : $*P):
%1 = alloc_stack $P
br bb1
bb1:
copy_addr %0 to [init] %1 : $*P
%2 = existential_metatype $@thick P.Type, %1 : $*P
cond_br undef, bb1, bb2
bb2:
dealloc_stack %1 : $*P
destroy_addr %0 : $*P
%52 = tuple ()
return %52 : $()
}
sil @get_unknown_value : $@convention(thin) () -> Builtin.Int32
sil @get_unknown_value2 : $@convention(thin) () -> Builtin.Int32
sil @callee : $@convention(thin) (@inout Builtin.Int32) -> () {
bb0(%0 : $*Builtin.Int32):
%1 = function_ref @get_unknown_value : $@convention(thin) () -> Builtin.Int32
%2 = apply %1() : $@convention(thin) () -> Builtin.Int32
store %2 to %0 : $*Builtin.Int32
%9999 = tuple()
return %9999 : $()
}
sil @use_value : $@convention(thin) (Builtin.Int32) -> ()
// Check if escape analysis figures out that the alloc_stack escapes to callee.
//
// CHECK-LABEL: sil @dont_hoist_aliased_load
// CHECK: bb2:
// CHECK-NEXT: apply
// CHECK-NEXT: load
// CHECK-NEXT: apply
sil @dont_hoist_aliased_load : $@convention(thin) () -> () {
bb0:
%0 = alloc_stack $Builtin.Int32
%1 = integer_literal $Builtin.Int32, 0
%3 = function_ref @callee : $@convention(thin) (@inout Builtin.Int32) -> ()
%5 = function_ref @use_value : $@convention(thin) (Builtin.Int32) -> ()
%unknown_value_fn = function_ref @get_unknown_value2 : $@convention(thin) () -> Builtin.Int32
store %1 to %0 : $*Builtin.Int32
br bb1
bb1:
br bb2
bb2:
apply %3(%0) : $@convention(thin) (@inout Builtin.Int32) -> ()
%4 = load %0 : $*Builtin.Int32
%6 = apply %unknown_value_fn() : $@convention(thin) () -> Builtin.Int32
%33 = builtin "cmp_eq_Int32"(%4 : $Builtin.Int32, %6 : $Builtin.Int32) : $Builtin.Int1
cond_br %33, bb2, bb3
bb3:
%9999 = tuple()
dealloc_stack %0 : $*Builtin.Int32
return %9999 : $()
}
class RefElemClass {
var x : Int32
init()
}
// Check hoisting of ref_element_addr in conditional control flow (for exclusivity)
//
// CHECK-LABEL: sil @hoist_ref_elem
// CHECK: bb0(%0 : $RefElemClass):
// CHECK-NEXT: ref_element_addr %0 : $RefElemClass, #RefElemClass.x
// CHECK-NEXT: br bb1
sil @hoist_ref_elem : $@convention(thin) (RefElemClass) -> () {
bb0(%0 : $RefElemClass):
br bb1
// loop.
bb1:
cond_br undef, bb2, bb3
bb2:
cond_br undef, bb4, bb1
bb3:
%x = ref_element_addr %0 : $RefElemClass, #RefElemClass.x
br bb1
bb4:
%10 = tuple ()
return %10 : $()
}
sil @potential_escape : $@convention(thin) (@guaranteed RefElemClass) -> ()
// CHECK-LABEL: sil @dont_hoist_begin_cow_mutation
// CHECK: bb1:
// CHECK-NEXT: begin_cow_mutation
// CHECK-NEXT: end_cow_mutation
// CHECK-NEXT: apply
sil @dont_hoist_begin_cow_mutation : $@convention(thin) (@owned RefElemClass) -> @owned RefElemClass {
bb0(%0 : $RefElemClass):
br bb1
bb1:
(%u, %m) = begin_cow_mutation %0 : $RefElemClass
%b = end_cow_mutation %m : $RefElemClass
%f = function_ref @potential_escape : $@convention(thin) (@guaranteed RefElemClass) -> ()
%a = apply %f(%b) : $@convention(thin) (@guaranteed RefElemClass) -> ()
cond_br undef, bb1, bb2
bb2:
return %b : $RefElemClass
}
// CHECK-LABEL: sil @hoist_load_and_store
// CHECK: [[V1:%[0-9]+]] = load %0
// CHECK: br bb1([[V1]] : $Int32)
// CHECK: bb1([[V2:%[0-9]+]] : $Int32):
// CHECK-NOT: load
// CHECK: [[E:%[0-9]+]] = struct_extract [[V2]]
// CHECK: "sadd_with_overflow_Int64"([[E]]
// CHECK: [[V3:%[0-9]+]] = struct $Int32
// CHECK-NOT: store
// CHECK: bb2:
// CHECK: br bb1([[V3]] : $Int32)
// CHECK: bb3:
// CHECK: store [[V3]] to %0
// CHECK: } // end sil function 'hoist_load_and_store'
sil @hoist_load_and_store : $@convention(thin) (@inout Int32, Int32) -> () {
bb0(%0 : $*Int32, %1 : $Int32):
%8 = struct_element_addr %0 : $*Int32, #Int32._value
%9 = struct_extract %1 : $Int32, #Int32._value
%10 = integer_literal $Builtin.Int1, 0
br bb1
bb1:
%17 = load %8 : $*Builtin.Int32
%18 = builtin "sadd_with_overflow_Int64"(%17 : $Builtin.Int32, %9 : $Builtin.Int32, %10 : $Builtin.Int1) : $(Builtin.Int32, Builtin.Int1)
%19 = tuple_extract %18 : $(Builtin.Int32, Builtin.Int1), 0
%20 = struct $Int32 (%19 : $Builtin.Int32)
store %20 to %0 : $*Int32
cond_br undef, bb2, bb3
bb2:
br bb1
bb3:
%12 = tuple ()
return %12 : $()
}
// Just make sure the optimizer does not crash in case the operand of the
// store is the load itself.
sil @hoist_load_and_redundant_store : $@convention(thin) (@inout Int32) -> () {
bb0(%0 : $*Int32):
br bb1
bb1:
%1 = load %0 : $*Int32
store %1 to %0 : $*Int32
cond_br undef, bb2, bb3
bb2:
br bb1
bb3:
%12 = tuple ()
return %12 : $()
}
// CHECK-LABEL: sil @hoist_load_and_two_stores
// CHECK: [[V1:%[0-9]+]] = load %0
// CHECK: br bb1([[V1]] : $Int32)
// CHECK: bb1([[V2:%[0-9]+]] : $Int32):
// CHECK-NOT: load
// CHECK: [[E:%[0-9]+]] = struct_extract [[V2]]
// CHECK: "sadd_with_overflow_Int64"([[E]]
// CHECK: [[V3:%[0-9]+]] = struct $Int32
// CHECK: bb2:
// CHECK-NOT: store
// CHECK: br bb4
// CHECK: bb3:
// CHECK-NOT: store
// CHECK: br bb4
// CHECK: bb4:
// CHECK: cond_br
// CHECK: bb5:
// CHECK: br bb1([[V3]] : $Int32)
// CHECK: bb6:
// CHECK: store [[V3]] to %0
// CHECK: } // end sil function 'hoist_load_and_two_stores'
sil @hoist_load_and_two_stores : $@convention(thin) (@inout Int32, Int32) -> () {
bb0(%0 : $*Int32, %1 : $Int32):
%8 = struct_element_addr %0 : $*Int32, #Int32._value
%9 = struct_extract %1 : $Int32, #Int32._value
%10 = integer_literal $Builtin.Int1, 0
br bb1
bb1:
%17 = load %8 : $*Builtin.Int32
%18 = builtin "sadd_with_overflow_Int64"(%17 : $Builtin.Int32, %9 : $Builtin.Int32, %10 : $Builtin.Int1) : $(Builtin.Int32, Builtin.Int1)
%19 = tuple_extract %18 : $(Builtin.Int32, Builtin.Int1), 0
%20 = struct $Int32 (%19 : $Builtin.Int32)
cond_br undef, bb2, bb3
bb2:
store %20 to %0 : $*Int32
br bb4
bb3:
store %20 to %0 : $*Int32
br bb4
bb4:
cond_br undef, bb5, bb6
bb5:
br bb1
bb6:
%12 = tuple ()
return %12 : $()
}
// CHECK-LABEL: sil @dont_hoist_stores_not_dominating_exit
// CHECK: bb0(%0 : $*Int32, %1 : $Int32):
// CHECK-NOT: load
// CHECK: bb1:
// CHECK: load
// CHECK: bb3:
// CHECK: store
// CHECK: bb4:
// CHECK: bb6:
// CHECK-NOT: store
// CHECK: } // end sil function 'dont_hoist_stores_not_dominating_exit'
sil @dont_hoist_stores_not_dominating_exit : $@convention(thin) (@inout Int32, Int32) -> () {
bb0(%0 : $*Int32, %1 : $Int32):
%8 = struct_element_addr %0 : $*Int32, #Int32._value
%9 = struct_extract %1 : $Int32, #Int32._value
%10 = integer_literal $Builtin.Int1, 0
br bb1
bb1:
%17 = load %8 : $*Builtin.Int32
%18 = builtin "sadd_with_overflow_Int64"(%17 : $Builtin.Int32, %9 : $Builtin.Int32, %10 : $Builtin.Int1) : $(Builtin.Int32, Builtin.Int1)
%19 = tuple_extract %18 : $(Builtin.Int32, Builtin.Int1), 0
%20 = struct $Int32 (%19 : $Builtin.Int32)
cond_br undef, bb2, bb3
bb2:
br bb4
bb3:
store %20 to %0 : $*Int32
br bb4
bb4:
cond_br undef, bb5, bb6
bb5:
br bb1
bb6:
%12 = tuple ()
return %12 : $()
}
// CHECK-LABEL: sil @hoist_when_store_is_in_preheader
// CHECK: bb0(%0 : $*Int32, %1 : $Int32):
// CHECK: store
// CHECK: load
// CHECK: bb1(%{{[0-9]+}} : $Int32):
// CHECK-NOT: load
// CHECK-NOT: store
// CHECK: bb4([[P:%[0-9]+]] : $Int32):
// CHECK: bb6:
// CHECK: store [[P]] to %0
// CHECK: } // end sil function 'hoist_when_store_is_in_preheader'
sil @hoist_when_store_is_in_preheader : $@convention(thin) (@inout Int32, Int32) -> () {
bb0(%0 : $*Int32, %1 : $Int32):
%8 = struct_element_addr %0 : $*Int32, #Int32._value
%9 = struct_extract %1 : $Int32, #Int32._value
%10 = integer_literal $Builtin.Int1, 0
store %1 to %0 : $*Int32
br bb1
bb1:
%17 = load %8 : $*Builtin.Int32
%18 = builtin "sadd_with_overflow_Int64"(%17 : $Builtin.Int32, %9 : $Builtin.Int32, %10 : $Builtin.Int1) : $(Builtin.Int32, Builtin.Int1)
%19 = tuple_extract %18 : $(Builtin.Int32, Builtin.Int1), 0
%20 = struct $Int32 (%19 : $Builtin.Int32)
cond_br undef, bb2, bb3
bb2:
br bb4
bb3:
store %20 to %0 : $*Int32
br bb4
bb4:
cond_br undef, bb5, bb6
bb5:
br bb1
bb6:
%12 = tuple ()
return %12 : $()
}
// CHECK-LABEL: sil @hoist_loads_and_stores_multiple_exits
// CHECK: [[V1:%[0-9]+]] = load %0
// CHECK: br bb1([[V1]] : $Int32)
// CHECK: bb1([[V2:%[0-9]+]] : $Int32):
// CHECK-NOT: load
// CHECK: [[E:%[0-9]+]] = struct_extract [[V2]]
// CHECK: "sadd_with_overflow_Int64"([[E]]
// CHECK: [[V3:%[0-9]+]] = struct $Int32
// CHECK: bb2:
// CHECK-NOT: store
// CHECK: cond_br undef, bb1([[V3]] : $Int32), bb3
// CHECK: bb3:
// CHECK: store [[V3]] to %0
// CHECK: br bb6
// CHECK: bb4:
// CHECK-NOT: store
// CHECK: cond_br undef, bb1([[V3]] : $Int32), bb5
// CHECK: bb5:
// CHECK: store [[V3]] to %0
// CHECK: br bb6
// CHECK: bb6:
// CHECK: } // end sil function 'hoist_loads_and_stores_multiple_exits'
sil @hoist_loads_and_stores_multiple_exits : $@convention(thin) (@inout Int32, Int32) -> () {
// %0 // users: %14, %17, %5, %2
// %1 // user: %3
bb0(%0 : $*Int32, %1 : $Int32):
%2 = struct_element_addr %0 : $*Int32, #Int32._value
%3 = struct_extract %1 : $Int32, #Int32._value // user: %9
%4 = integer_literal $Builtin.Int1, 0 // user: %9
%5 = load %0 : $*Int32 // user: %6
br bb1(%5 : $Int32) // id: %6
// %7 // user: %8
bb1(%7 : $Int32): // Preds: bb0 bb2 bb4
%8 = struct_extract %7 : $Int32, #Int32._value // user: %9
%9 = builtin "sadd_with_overflow_Int64"(%8 : $Builtin.Int32, %3 : $Builtin.Int32, %4 : $Builtin.Int1) : $(Builtin.Int32, Builtin.Int1) // user: %10
%10 = tuple_extract %9 : $(Builtin.Int32, Builtin.Int1), 0 // user: %11
%11 = struct $Int32 (%10 : $Builtin.Int32) // users: %14, %17, %13, %16
cond_br undef, bb2, bb4 // id: %12
bb2: // Preds: bb1
cond_br undef, bb1(%11 : $Int32), bb3 // id: %13
bb3: // Preds: bb2
store %11 to %0 : $*Int32 // id: %14
br bb6 // id: %15
bb4: // Preds: bb1
cond_br undef, bb1(%11 : $Int32), bb5 // id: %16
bb5: // Preds: bb4
store %11 to %0 : $*Int32 // id: %17
br bb6 // id: %18
bb6: // Preds: bb3 bb5
%19 = tuple () // user: %20
return %19 : $() // id: %20
} // end sil function 'hoist_loads_and_stores'
// ==================================================================
// Test combined load/store hoisting/sinking with aliases
struct Index {
@_hasStorage var value: Int64 { get set }
}
// -----------------------------------------------------------------------------
// Test combined load/store hoisting/sinking with obvious aliasing loads
// The loop contains loads and stores to the same accesspath: %3 alloc_stack -> #0 -> #0
// However, they don't share the same projection instructions.
// LICM should still hoist the loads and sink the stores in a combined transformation.
//
// CHECK-LABEL: sil shared @testCombinedLdStAliasingLoad : $@convention(method) (Int64) -> Int64 {
// CHECK: bb0(%0 : $Int64):
// CHECK: store {{.*}} to %{{.*}} : $*Int64
// CHECK: load %{{.*}} : $*Int64
// CHECK: br bb1
// CHECK-NOT: {{(load|store)}}
// CHECK: bb3:
// CHECK-NOT: {{(load|store)}}
// CHECK: store %{{.*}} to %{{.*}} : $*Int64
// CHECK-NOT: {{(load|store)}}
// CHECK-LABEL: } // end sil function 'testCombinedLdStAliasingLoad'
sil shared @testCombinedLdStAliasingLoad : $@convention(method) (Int64) -> Int64 {
bb0(%0 : $Int64):
%zero = integer_literal $Builtin.Int64, 0
%intz = struct $Int64(%zero : $Builtin.Int64)
%stackAddr = alloc_stack $Index
%outerAddr1 = struct_element_addr %stackAddr : $*Index, #Index.value
store %intz to %outerAddr1 : $*Int64
%innerAddr1 = struct_element_addr %outerAddr1 : $*Int64, #Int64._value
%outerAddr2 = struct_element_addr %stackAddr : $*Index, #Index.value
%innerAddr2 = struct_element_addr %outerAddr2 : $*Int64, #Int64._value
br bb1
bb1:
%val = load %innerAddr2 : $*Builtin.Int64
%intv = struct $Int64(%zero : $Builtin.Int64)
store %intv to %outerAddr2 : $*Int64
%val2 = load %innerAddr1 : $*Builtin.Int64
cond_br undef, bb2, bb3
bb2:
br bb1
bb3:
dealloc_stack %stackAddr : $*Index
%result = struct $Int64(%val2 : $Builtin.Int64)
return %result : $Int64
}
// -----------------------------------------------------------------------------
// Test combined load/store hoisting/sinking with obvious aliasing stores
// CHECK-LABEL: sil shared @testCombinedLdStAliasingStore : $@convention(method) (Int64) -> Int64 {
// CHECK: bb0(%0 : $Int64):
// CHECK: store
// CHECK-NOT: {{(load|store)}}
// CHECK: bb1:
// CHECK-NEXT: load %{{.*}} : $*Builtin.Int64
// CHECK-NEXT: store %{{.*}} to %{{.*}} : $*Int64
// CHECK-NEXT: store %{{.*}} to %{{.*}} : $*Builtin.Int64
// CHECK-NEXT: cond_br
// CHECK-NOT: {{(load|store)}}
// CHECK: load
// CHECK-NOT: {{(load|store)}}
// CHECK-LABEL: } // end sil function 'testCombinedLdStAliasingStore'
sil shared @testCombinedLdStAliasingStore : $@convention(method) (Int64) -> Int64 {
bb0(%0 : $Int64):
%zero = integer_literal $Builtin.Int64, 0
%intz = struct $Int64(%zero : $Builtin.Int64)
%stackAddr = alloc_stack $Index
%outerAddr1 = struct_element_addr %stackAddr : $*Index, #Index.value
store %intz to %outerAddr1 : $*Int64
%innerAddr1 = struct_element_addr %outerAddr1 : $*Int64, #Int64._value
%outerAddr2 = struct_element_addr %stackAddr : $*Index, #Index.value
%innerAddr2 = struct_element_addr %outerAddr2 : $*Int64, #Int64._value
br bb1
bb1:
%val = load %innerAddr2 : $*Builtin.Int64
%intv = struct $Int64(%zero : $Builtin.Int64)
store %intv to %outerAddr2 : $*Int64
store %val to %innerAddr1 : $*Builtin.Int64
cond_br undef, bb2, bb3
bb2:
br bb1
bb3:
dealloc_stack %stackAddr : $*Index
%final = load %innerAddr2 : $*Builtin.Int64
%result = struct $Int64(%final : $Builtin.Int64)
return %result : $Int64
}
// -----------------------------------------------------------------------------
// Test combined load/store hoisting/sinking with unknown aliasing loads
// CHECK-LABEL: sil shared @testCombinedLdStUnknownLoad : $@convention(method) (Int64, Builtin.RawPointer, Builtin.RawPointer) -> Int64 {
// CHECK: bb0(%0 : $Int64, %1 : $Builtin.RawPointer, %2 : $Builtin.RawPointer):
// CHECK-NOT: {{(load|store)}}
// CHECK: bb1:
// CHECK-NEXT: load %{{.*}} : $*Builtin.Int64
// CHECK-NEXT: store %{{.*}} to %{{.*}} : $*Int64
// CHECK-NEXT: load %{{.*}} : $*Builtin.Int64
// CHECK-NEXT: cond_br
// CHECK-NOT: {{(load|store)}}
// CHECK-LABEL: } // end sil function 'testCombinedLdStUnknownLoad'
sil shared @testCombinedLdStUnknownLoad : $@convention(method) (Int64, Builtin.RawPointer, Builtin.RawPointer) -> Int64 {
bb0(%0 : $Int64, %1 : $Builtin.RawPointer, %2 : $Builtin.RawPointer):
%addr1 = pointer_to_address %1 : $Builtin.RawPointer to $*Index
%addr2 = pointer_to_address %2 : $Builtin.RawPointer to $*Index
%outerAddr1 = struct_element_addr %addr1 : $*Index, #Index.value
%outerAddr2 = struct_element_addr %addr2 : $*Index, #Index.value
%innerAddr1 = struct_element_addr %outerAddr1 : $*Int64, #Int64._value
%innerAddr2 = struct_element_addr %outerAddr2 : $*Int64, #Int64._value
br bb1
bb1:
%val = load %innerAddr2 : $*Builtin.Int64
store %0 to %outerAddr2 : $*Int64
%val2 = load %innerAddr1 : $*Builtin.Int64
cond_br undef, bb2, bb3
bb2:
br bb1
bb3:
%result = struct $Int64(%val2 : $Builtin.Int64)
return %result : $Int64
}
// -----------------------------------------------------------------------------
// Reduced test case from rdar://61246061
//
// Test miscompilation of BidirectionalCollection<IndexSet>._distance with
// combined load/store hoisting/sinking with multiple loads from
// aliasing addresses.
// getRange
sil @getRange : $@convention(thin) () -> Range<Int64>
// CHECK-LABEL: sil shared @testLICMReducedCombinedLdStExtraProjection : $@convention(method) (Int64) -> Int64 {
// CHECK: bb0(%0 : $Int64):
// CHECK: store %0 to %{{.*}} : $*Int64
// CHECK: load %{{.*}} : $*Int64
// CHECK-NOT: {{(load|store)}}
// CHECK: bb7:
// CHECK-NEXT: store %{{.*}} to %{{.*}} : $*Int64
// CHECK-NOT: {{(load|store)}}
// CHECK-LABEL: } // end sil function 'testLICMReducedCombinedLdStExtraProjection'
sil shared @testLICMReducedCombinedLdStExtraProjection : $@convention(method) (Int64) -> Int64 {
// %0 // users: %5, %1
bb0(%0 : $Int64):
%1 = struct_extract %0 : $Int64, #Int64._value // users: %35, %20
%2 = integer_literal $Builtin.Int64, 0 // user: %9
%3 = alloc_stack $Index // users: %41, %13, %4
%4 = struct_element_addr %3 : $*Index, #Index.value // users: %8, %5
store %0 to %4 : $*Int64 // id: %5
%6 = integer_literal $Builtin.Int64, 1 // user: %11
%7 = integer_literal $Builtin.Int1, -1 // user: %11
%8 = struct_element_addr %4 : $*Int64, #Int64._value // user: %34
br bb1(%2 : $Builtin.Int64) // id: %9
// %10 // user: %11
bb1(%10 : $Builtin.Int64): // Preds: bb8 bb0
%11 = builtin "sadd_with_overflow_Int64"(%10 : $Builtin.Int64, %6 : $Builtin.Int64, %7 : $Builtin.Int1) : $(Builtin.Int64, Builtin.Int1) // user: %12
%12 = tuple_extract %11 : $(Builtin.Int64, Builtin.Int1), 0 // users: %38, %37
%13 = struct_element_addr %3 : $*Index, #Index.value // users: %32, %27, %24, %14
%14 = struct_element_addr %13 : $*Int64, #Int64._value // user: %15
%15 = load %14 : $*Builtin.Int64 // user: %18
%16 = integer_literal $Builtin.Int64, 1 // user: %18
%17 = integer_literal $Builtin.Int1, -1 // user: %18
%18 = builtin "sadd_with_overflow_Int64"(%15 : $Builtin.Int64, %16 : $Builtin.Int64, %17 : $Builtin.Int1) : $(Builtin.Int64, Builtin.Int1) // user: %19
%19 = tuple_extract %18 : $(Builtin.Int64, Builtin.Int1), 0 // users: %26, %23, %20
%20 = builtin "cmp_eq_Int64"(%19 : $Builtin.Int64, %1 : $Builtin.Int64) : $Builtin.Int1 // user: %21
cond_br %20, bb2, bb3 // id: %21
bb2: // Preds: bb1
cond_br undef, bb4, bb5 // id: %22
bb3: // Preds: bb1
%23 = struct $Int64 (%19 : $Builtin.Int64) // user: %24
store %23 to %13 : $*Int64 // id: %24
br bb6 // id: %25
bb4: // Preds: bb2
%26 = struct $Int64 (%19 : $Builtin.Int64) // user: %27
store %26 to %13 : $*Int64 // id: %27
br bb6 // id: %28
bb5: // Preds: bb2
// function_ref getRange
%29 = function_ref @getRange : $@convention(thin) () -> Range<Int64> // user: %30
%30 = apply %29() : $@convention(thin) () -> Range<Int64> // user: %31
%31 = struct_extract %30 : $Range<Int64>, #Range.lowerBound // user: %32
store %31 to %13 : $*Int64 // id: %32
br bb6 // id: %33
bb6: // Preds: bb5 bb4 bb3
%34 = load %8 : $*Builtin.Int64 // user: %35
%35 = builtin "cmp_eq_Int64"(%34 : $Builtin.Int64, %1 : $Builtin.Int64) : $Builtin.Int1 // user: %36
cond_br %35, bb7, bb8 // id: %36
bb7: // Preds: bb6
br bb9(%12 : $Builtin.Int64) // id: %37
bb8: // Preds: bb6
br bb1(%12 : $Builtin.Int64) // id: %38
// %39 // user: %40
bb9(%39 : $Builtin.Int64): // Preds: bb7
%40 = struct $Int64 (%39 : $Builtin.Int64) // user: %42
dealloc_stack %3 : $*Index // id: %41
return %40 : $Int64 // id: %42
}
// testConditionalTrapInInfiniteSyncLoop and
// testConditionalTrapDominatingSyncLoopExit
//
// It's legal for the optimizer to consider code after the loop as
// always reachable, but when a loop has no exits, or when the loops
// exits are dominated by a conditional statement we should not
// consider conditional statements within the loop as dominating all
// possible execution paths through the loop. At least not when there
// is at least one path through the loop that contains a
// "synchronization point", such as a function that may contain a
// memory barrier, perform I/O, or exit the program.
sil @mayExit : $@convention(thin) () -> ()
// CHECK-LABEL: sil @testConditionalTrapInInfiniteSyncLoop : $@convention(thin) (Builtin.Int1, Builtin.Int1) -> () {
// CHECK: bb0
// CHECK-NOT: cond_fail
// CHECK: br bb1
// CHECK: bb1:
// CHECK: cond_br %0, bb2, bb3
// CHECK: bb2:
// CHECK: cond_fail %1 : $Builtin.Int1, "arithmetic overflow"
// CHECK-LABEL: } // end sil function 'testConditionalTrapInInfiniteSyncLoop'
sil @testConditionalTrapInInfiniteSyncLoop : $@convention(thin) (Builtin.Int1, Builtin.Int1) -> () {
bb0(%0 : $Builtin.Int1, %1 : $Builtin.Int1):
br bb1
bb1: // loop head
cond_br %0, bb2, bb3
bb2: // maybe never executed
cond_fail %1 : $Builtin.Int1, "arithmetic overflow"
br bb4
bb3:
// synchronization point: has "real" side-effects that we can't
// reorder with traps
%f = function_ref @mayExit : $@convention(thin) () -> ()
apply %f() : $@convention(thin) () -> ()
br bb4
bb4: // latch
br bb1
}
// CHECK-LABEL: sil @testConditionalTrapDominatingSyncLoopExit : $@convention(thin) (Builtin.Int1, Builtin.Int1, Builtin.Int1) -> () {
// CHECK: bb0
// CHECK-NOT: cond_fail
// CHECK: br bb1
// CHECK: bb1:
// CHECK: cond_br %0, bb2, bb4
// CHECK: bb2:
// CHECK: cond_fail %1 : $Builtin.Int1, "arithmetic overflow"
// CHECK-LABEL: } // end sil function 'testConditionalTrapDominatingSyncLoopExit'
sil @testConditionalTrapDominatingSyncLoopExit : $@convention(thin) (Builtin.Int1, Builtin.Int1, Builtin.Int1) -> () {
bb0(%0 : $Builtin.Int1, %1 : $Builtin.Int1, %2 : $Builtin.Int1):
br bb1
bb1: // loop head
cond_br %0, bb2, bb4
bb2: // maybe never executed
cond_fail %1 : $Builtin.Int1, "arithmetic overflow"
cond_br %2, bb3, bb5
bb3: // tail
br bb1
bb4:
// synchronization point: has "real" side-effects that we can't
// reorder with traps
%f = function_ref @mayExit : $@convention(thin) () -> ()
apply %f() : $@convention(thin) () -> ()
br bb1
bb5:
%99 = tuple ()
return %99 : $()
}
// Test load splitting with a loop-invariant stored value. The loop
// will be empty after combined load/store hoisting/sinking.
//
// TODO: sink a struct_extract (or other non-side-effect instructions)
// with no uses in the loop.
//
// CHECK-LABEL: sil shared @testLoadSplit : $@convention(method) (Int64, Builtin.RawPointer) -> (Index, Int64, Builtin.Int64) {
// CHECK: [[PRELOAD:%.*]] = load %{{.*}} : $*Int64
// CHECK: [[STOREDVAL:%.*]] = struct_extract %0 : $Int64, #Int64._value
// CHECK: br bb1([[PRELOAD]] : $Int64)
// CHECK: bb1([[PHI:%.*]] : $Int64):
// CHECK-NEXT: [[OUTERVAL:%.*]] = struct $Index ([[PHI]] : $Int64)
// CHECK-NEXT: cond_br undef, bb2, bb3
// CHECK: bb2:
// CHECK-NEXT: br bb1(%0 : $Int64)
// CHECK: bb3:
// CHECK-NEXT: store %0 to %{{.*}} : $*Int64
// CHECK-NEXT: tuple ([[OUTERVAL]] : $Index, [[PHI]] : $Int64, [[STOREDVAL]] : $Builtin.Int64)
// CHECK-LABEL: } // end sil function 'testLoadSplit'
sil shared @testLoadSplit : $@convention(method) (Int64, Builtin.RawPointer) -> (Index, Int64, Builtin.Int64) {
bb0(%0 : $Int64, %1 : $Builtin.RawPointer):
%outerAddr1 = pointer_to_address %1 : $Builtin.RawPointer to $*Index
%middleAddr1 = struct_element_addr %outerAddr1 : $*Index, #Index.value
br bb1
bb1:
%val1 = load %outerAddr1 : $*Index
%val2 = load %middleAddr1 : $*Int64
%outerAddr2 = pointer_to_address %1 : $Builtin.RawPointer to $*Index
%middleAddr2 = struct_element_addr %outerAddr2 : $*Index, #Index.value
store %0 to %middleAddr2 : $*Int64
%innerAddr1 = struct_element_addr %middleAddr1 : $*Int64, #Int64._value
%val3 = load %innerAddr1 : $*Builtin.Int64
cond_br undef, bb2, bb3
bb2:
br bb1
bb3:
%result = tuple (%val1 : $Index, %val2 : $Int64, %val3 : $Builtin.Int64)
return %result : $(Index, Int64, Builtin.Int64)
}
// Test load splitting with a loop-varying stored value.
// CHECK-LABEL: sil shared @testLoadSplitPhi : $@convention(method) (Int64, Builtin.RawPointer) -> (Index, Int64, Builtin.Int64) {
// CHECK: [[PRELOAD:%.*]] = load %{{.*}} : $*Int64
// CHECK: br bb1(%4 : $Int64)
// CHECK: bb1([[PHI:%.*]] : $Int64):
// CHECK-NEXT: [[OUTERVAL:%.*]] = struct $Index ([[PHI]] : $Int64)
// CHECK-NEXT: [[EXTRACT:%.*]] = struct_extract [[PHI]] : $Int64, #Int64._value
// CHECK-NEXT: builtin "uadd_with_overflow_Int32"([[EXTRACT]] : $Builtin.Int64
// CHECK-NEXT: tuple_extract
// CHECK-NEXT: [[ADD:%.*]] = struct $Int64
// CHECK-NEXT: cond_br undef, bb2, bb3
// CHECK: bb2:
// CHECK-NEXT: br bb1([[ADD]] : $Int64)
// CHECK: bb3:
// CHECK-NEXT: store [[ADD]] to %{{.*}} : $*Int64
// CHECK-NEXT: tuple ([[OUTERVAL]] : $Index, [[ADD]] : $Int64, [[EXTRACT]] : $Builtin.Int64)
// CHECK-LABEL: } // end sil function 'testLoadSplitPhi'
sil shared @testLoadSplitPhi : $@convention(method) (Int64, Builtin.RawPointer) -> (Index, Int64, Builtin.Int64) {
bb0(%0 : $Int64, %1 : $Builtin.RawPointer):
%outerAddr1 = pointer_to_address %1 : $Builtin.RawPointer to $*Index
%middleAddr1 = struct_element_addr %outerAddr1 : $*Index, #Index.value
%innerAddr1 = struct_element_addr %middleAddr1 : $*Int64, #Int64._value
br bb1
bb1:
%outerVal = load %outerAddr1 : $*Index
%innerVal = load %innerAddr1 : $*Builtin.Int64
%one = integer_literal $Builtin.Int64, 1
%zero = integer_literal $Builtin.Int1, 0
%add = builtin "uadd_with_overflow_Int32"(%innerVal : $Builtin.Int64, %one : $Builtin.Int64, %zero : $Builtin.Int1) : $(Builtin.Int64, Builtin.Int1)
%inc = tuple_extract %add : $(Builtin.Int64, Builtin.Int1), 0
%outerAddr2 = pointer_to_address %1 : $Builtin.RawPointer to $*Index
%middleAddr2 = struct_element_addr %outerAddr2 : $*Index, #Index.value
%newVal = struct $Int64 (%inc : $Builtin.Int64)
store %newVal to %middleAddr2 : $*Int64
%middleVal = load %middleAddr1 : $*Int64
cond_br undef, bb2, bb3
bb2:
br bb1
bb3:
%result = tuple (%outerVal : $Index, %middleVal : $Int64, %innerVal : $Builtin.Int64)
return %result : $(Index, Int64, Builtin.Int64)
}
struct State {
@_hasStorage var valueSet: (Int64, Int64, Int64) { get set }
@_hasStorage var singleValue: Int64 { get set }
}
// Test the we can remove a store to an individual tuple element when
// the struct containing the tuple is used within the loop.
// The optimized loop should only contain the add operation and a phi, with no memory access.
//
// CHECK-LABEL: sil shared @testTupleSplit : $@convention(method) (Builtin.RawPointer) -> State {
// CHECK: bb0(%0 : $Builtin.RawPointer):
// CHECK: [[HOISTADR:%.*]] = tuple_element_addr %{{.*}} : $*(Int64, Int64, Int64), 0
// ...Preload stored element #1
// CHECK: [[PRELOADADR:%.*]] = tuple_element_addr %{{.*}} : $*(Int64, Int64, Int64), 1
// CHECK: [[PRELOAD:%.*]] = load [[PRELOADADR]] : $*Int64
// ...Split element 0
// CHECK: [[SPLIT0:%.*]] = tuple_element_addr %{{.*}} : $*(Int64, Int64, Int64), 0
// CHECK: [[ELT0:%.*]] = load [[SPLIT0]] : $*Int64
// ...Split element 2
// CHECK: [[SPLIT2:%.*]] = tuple_element_addr %{{.*}} : $*(Int64, Int64, Int64), 2
// CHECK: [[ELT2:%.*]] = load [[SPLIT2]] : $*Int64
// ...Split State.singlevalue
// CHECK: [[SINGLEADR:%.*]] = struct_element_addr %{{.*}} : $*State, #State.singleValue
// CHECK: [[SINGLEVAL:%.*]] = load [[SINGLEADR]] : $*Int64
// ...Hoisted element 0
// CHECK: [[HOISTLOAD:%.*]] = load [[HOISTADR]] : $*Int64
// CHECK: [[HOISTVAL:%.*]] = struct_extract [[HOISTLOAD]] : $Int64, #Int64._value
// CHECK: br bb1([[PRELOAD]] : $Int64)
// ...Loop
// CHECK: bb1([[PHI:%.*]] : $Int64):
// CHECK-NEXT: [[TUPLE:%.*]] = tuple ([[ELT0]] : $Int64, [[PHI]] : $Int64, [[ELT2]] : $Int64)
// CHECK-NEXT: [[STRUCT:%.*]] = struct $State ([[TUPLE]] : $(Int64, Int64, Int64), [[SINGLEVAL]] : $Int64)
// CHECK-NEXT: [[ADDEND:%.*]] = struct_extract [[PHI]] : $Int64, #Int64._value
// CHECK-NEXT: [[UADD:%.*]] = builtin "uadd_with_overflow_Int32"([[HOISTVAL]] : $Builtin.Int64, [[ADDEND]] : $Builtin.Int64, %{{.*}} : $Builtin.Int1) : $(Builtin.Int64, Builtin.Int1)
// CHECK-NEXT: [[ADDVAL:%.*]] = tuple_extract [[UADD]] : $(Builtin.Int64, Builtin.Int1), 0
// CHECK-NEXT: [[ADDINT:%.*]] = struct $Int64 ([[ADDVAL]] : $Builtin.Int64)
// CHECK-NEXT: cond_br undef, bb2, bb3
// CHECK: bb2:
// CHECK-NEXT: br bb1([[ADDINT]] : $Int64)
// CHECK: bb3:
// CHECK-NEXT: store [[ADDINT]] to [[PRELOADADR]] : $*Int64
// CHECK-NEXT: return [[STRUCT]] : $State
// CHECK-LABEL: } // end sil function 'testTupleSplit'
sil shared @testTupleSplit : $@convention(method) (Builtin.RawPointer) -> State {
bb0(%0 : $Builtin.RawPointer):
%stateAddr = pointer_to_address %0 : $Builtin.RawPointer to $*State
%tupleAddr0 = struct_element_addr %stateAddr : $*State, #State.valueSet
%elementAddr0 = tuple_element_addr %tupleAddr0 : $*(Int64, Int64, Int64), 0
%tupleAddr1 = struct_element_addr %stateAddr : $*State, #State.valueSet
%elementAddr1 = tuple_element_addr %tupleAddr1 : $*(Int64, Int64, Int64), 1
%tupleAddr11 = struct_element_addr %stateAddr : $*State, #State.valueSet
%elementAddr11 = tuple_element_addr %tupleAddr11 : $*(Int64, Int64, Int64), 1
br bb1
bb1:
%state = load %stateAddr : $*State
%element0 = load %elementAddr0 : $*Int64
%val0 = struct_extract %element0 : $Int64, #Int64._value
%element1 = load %elementAddr1 : $*Int64
%val1 = struct_extract %element1 : $Int64, #Int64._value
%zero = integer_literal $Builtin.Int1, 0
%add = builtin "uadd_with_overflow_Int32"(%val0 : $Builtin.Int64, %val1 : $Builtin.Int64, %zero : $Builtin.Int1) : $(Builtin.Int64, Builtin.Int1)
%addVal = tuple_extract %add : $(Builtin.Int64, Builtin.Int1), 0
%addInt = struct $Int64 (%addVal : $Builtin.Int64)
store %addInt to %elementAddr11 : $*Int64
cond_br undef, bb2, bb3
bb2:
br bb1
bb3:
return %state : $State
}
// Test multiple stores to disjoint access paths with a single load
// that spans both of them. The load should be split and hosited and
// and the stores be sunk.
// testCommonSplitLoad
// CHECK-LABEL: sil shared @testCommonSplitLoad : $@convention(method) (Int64, Builtin.RawPointer) -> (Int64, Int64, Int64) {
// CHECK: bb0(%0 : $Int64, %1 : $Builtin.RawPointer):
// CHECK: [[ELT0:%.*]] = tuple_element_addr %{{.*}} : $*(Int64, Int64, Int64), 0
// CHECK: [[V0:%.*]] = load [[ELT0]] : $*Int64
// CHECK: [[ELT2:%.*]] = tuple_element_addr %{{.*}} : $*(Int64, Int64, Int64), 2
// CHECK: [[V2:%.*]] = load [[ELT2]] : $*Int64
// CHECK: [[ELT1:%.*]] = tuple_element_addr %{{.*}} : $*(Int64, Int64, Int64), 1
// CHECK: [[V1:%.*]] = load [[ELT1]] : $*Int64
// CHECK: br bb1([[V0]] : $Int64, [[V2]] : $Int64)
//
// Nothing in this loop except phis...
// CHECK: bb1([[PHI0:%.*]] : $Int64, [[PHI2:%.*]] : $Int64):
// CHECK-NEXT: [[RESULT:%.*]] = tuple ([[PHI0]] : $Int64, [[V1]] : $Int64, [[PHI2]] : $Int64)
// CHECK-NEXT: cond_br undef, bb2, bb3
// CHECK: bb2:
// CHECK-NEXT: br bb1(%0 : $Int64, %0 : $Int64)
//
// Stores are all sunk...
// CHECK: bb3:
// CHECK: store %0 to [[ELT2]] : $*Int64
// CHECK: store %0 to [[ELT0]] : $*Int64
// CHECK: return [[RESULT]] : $(Int64, Int64, Int64)
// CHECK-LABEL: } // end sil function 'testCommonSplitLoad'
sil shared @testCommonSplitLoad : $@convention(method) (Int64, Builtin.RawPointer) -> (Int64, Int64, Int64) {
bb0(%0 : $Int64, %1 : $Builtin.RawPointer):
%outerAddr1 = pointer_to_address %1 : $Builtin.RawPointer to $*(Int64, Int64, Int64)
br bb1
bb1:
%val1 = load %outerAddr1 : $*(Int64, Int64, Int64)
%elementAddr0 = tuple_element_addr %outerAddr1 : $*(Int64, Int64, Int64), 0
store %0 to %elementAddr0 : $*Int64
%elementAddr2 = tuple_element_addr %outerAddr1 : $*(Int64, Int64, Int64), 2
store %0 to %elementAddr2 : $*Int64
cond_br undef, bb2, bb3
bb2:
br bb1
bb3:
return %val1 : $(Int64, Int64, Int64)
}
// Two stores, one to the outer tuple and one to the inner tuple. This
// results in two access paths that are only loaded/stored to. First
// split the outer tuple when processing the outer access path, then
// the inner tuple when processing the inner access path. All loads
// should be hoisted and all stores should be sunk.
//
// CHECK-LABEL: sil shared @testResplit : $@convention(method) (Int64, Builtin.RawPointer) -> (Int64, (Int64, Int64)) {
// CHECK: bb0(%0 : $Int64, %1 : $Builtin.RawPointer):
// CHECK: [[ELT_0:%.*]] = tuple_element_addr %{{.*}} : $*(Int64, (Int64, Int64)), 0
// CHECK: [[V0:%.*]] = load [[ELT_0]] : $*Int64
// CHECK: [[ELT_1a:%.*]] = tuple_element_addr %{{.*}} : $*(Int64, (Int64, Int64)), 1
// CHECK: [[ELT_1_0:%.*]] = tuple_element_addr %{{.*}} : $*(Int64, Int64), 0
// CHECK: [[V_1_0:%.*]] = load [[ELT_1_0]] : $*Int64
// CHECK: [[ELT_1b:%.*]] = tuple_element_addr %{{.*}} : $*(Int64, (Int64, Int64)), 1
// CHECK: [[ELT_1_1:%.*]] = tuple_element_addr %{{.*}} : $*(Int64, Int64), 1
// CHECK: [[V_1_1:%.*]] = load [[ELT_1_1]] : $*Int64
// CHECK: br bb1([[V_0:%.*]] : $Int64, [[V_1_0]] : $Int64)
//
// Nothing in this loop except phis and tuple reconstruction...
// CHECK: bb1([[PHI_0:%.*]] : $Int64, [[PHI_1_0:%.*]] : $Int64):
// CHECK: [[INNER:%.*]] = tuple ([[PHI_1_0]] : $Int64, [[V_1_1]] : $Int64)
// CHECK: [[OUTER:%.*]] = tuple ([[PHI_0]] : $Int64, [[INNER]] : $(Int64, Int64))
// CHECK: cond_br undef, bb2, bb3
// CHECK: bb2:
// CHECK: br bb1(%0 : $Int64, %0 : $Int64)
//
// The two stores are sunk...
// CHECK: bb3:
// CHECK: store %0 to [[ELT_1_0]] : $*Int64
// CHECK: store %0 to [[ELT_0]] : $*Int64
// CHECK: return [[OUTER]] : $(Int64, (Int64, Int64))
// CHECK-LABEL: } // end sil function 'testResplit'
sil shared @testResplit : $@convention(method) (Int64, Builtin.RawPointer) -> (Int64, (Int64, Int64)) {
bb0(%0 : $Int64, %1 : $Builtin.RawPointer):
%outerAddr1 = pointer_to_address %1 : $Builtin.RawPointer to $*(Int64, (Int64, Int64))
br bb1
bb1:
%val1 = load %outerAddr1 : $*(Int64, (Int64, Int64))
%elementAddr0 = tuple_element_addr %outerAddr1 : $*(Int64, (Int64, Int64)), 0
store %0 to %elementAddr0 : $*Int64
%elementAddr1 = tuple_element_addr %outerAddr1 : $*(Int64, (Int64, Int64)), 1
%elementAddr10 = tuple_element_addr %elementAddr1 : $*(Int64, Int64), 0
store %0 to %elementAddr10 : $*Int64
cond_br undef, bb2, bb3
bb2:
br bb1
bb3:
return %val1 : $(Int64, (Int64, Int64))
}
// Two stores to overlapping accesspaths. Combined load/store hoisting
// cannot currently handle stores to overlapping accesspaths, so
// nothing is optimized.
// CHECK-LABEL: sil shared @testTwoStores : $@convention(method) (Int64, Int64, Builtin.RawPointer) -> (Int64, (Int64, Int64)) {
// CHECK-LABEL: bb0(%0 : $Int64, %1 : $Int64, %2 : $Builtin.RawPointer):
// CHECK-NOT: load
// CHECK: br bb1
// CHECK: bb1:
// CHECK: load %{{.*}} : $*(Int64, (Int64, Int64))
// CHECK: store {{.*}} : $*(Int64, Int64)
// CHECK: store {{.*}} : $*Int64
// CHECK: cond_br undef, bb2, bb3
// CHECK-NOT: store
// CHECK-LABEL: } // end sil function 'testTwoStores'
sil shared @testTwoStores : $@convention(method) (Int64, Int64, Builtin.RawPointer) -> (Int64, (Int64, Int64)) {
bb0(%0 : $Int64, %1: $Int64, %2 : $Builtin.RawPointer):
%outerAddr1 = pointer_to_address %2 : $Builtin.RawPointer to $*(Int64, (Int64, Int64))
br bb1
bb1:
%val1 = load %outerAddr1 : $*(Int64, (Int64, Int64))
%elementAddr1 = tuple_element_addr %outerAddr1 : $*(Int64, (Int64, Int64)), 1
%tuple = tuple (%0 : $Int64, %1: $Int64)
store %tuple to %elementAddr1 : $*(Int64, Int64)
%elementAddr10 = tuple_element_addr %elementAddr1 : $*(Int64, Int64), 0
store %1 to %elementAddr10 : $*Int64
cond_br undef, bb2, bb3
bb2:
br bb1
bb3:
return %val1 : $(Int64, (Int64, Int64))
}
// Two wide loads. The first can be successfully split and the second
// half hoisted. The second cannot be split because of a pointer
// cast. Make sure two remaining loads and the store are still in the loop.
//
// CHECK-LABEL: sil hidden @testSplitNonStandardProjection : $@convention(method) (Int64, Builtin.RawPointer) -> ((Int64, (Int64, Int64)), (Int64, Int64)) {
// CHECK: bb0(%0 : $Int64, %1 : $Builtin.RawPointer):
//
// The first load was split, so one half is hoisted.
// CHECK: [[V1:%.*]] = load %{{.*}} : $*Int64
// CHECK: br bb1
// CHECK: bb1:
// CHECK: [[V0:%.*]] = load %{{.*}} : $*Int64
// CHECK: [[INNER:%.*]] = tuple ([[V0]] : $Int64, [[V1]] : $Int64)
// CHECK: store %0 to %{{.*}} : $*Int64
// CHECK: [[OUTER:%.*]] = load %{{.*}} : $*(Int64, (Int64, Int64))
// CHECK: cond_br undef, bb2, bb3
// CHECK: bb2:
// CHECK: br bb1
// CHECK: bb3:
// CHECK: [[RESULT:%.*]] = tuple ([[OUTER]] : $(Int64, (Int64, Int64)), [[INNER]] : $(Int64, Int64))
// CHECK: return [[RESULT]] : $((Int64, (Int64, Int64)), (Int64, Int64))
// CHECK-LABEL: } // end sil function 'testSplitNonStandardProjection'
sil hidden @testSplitNonStandardProjection : $@convention(method) (Int64, Builtin.RawPointer) -> ((Int64, (Int64, Int64)), (Int64, Int64)) {
bb0(%0 : $Int64, %1 : $Builtin.RawPointer):
%outerAddr1 = pointer_to_address %1 : $Builtin.RawPointer to $*(Int64, (Int64, Int64))
br bb1
bb1:
%elt1 = tuple_element_addr %outerAddr1 : $*(Int64, (Int64, Int64)), 1
%ptr = address_to_pointer %elt1 : $*(Int64, Int64) to $Builtin.RawPointer
%ptrAdr = pointer_to_address %ptr : $Builtin.RawPointer to [strict] $*(Int64, Int64)
%val2 = load %ptrAdr : $*(Int64, Int64)
%eltptr0 = tuple_element_addr %ptrAdr : $*(Int64, Int64), 0
store %0 to %eltptr0 : $*Int64
// Process the outermost load after splitting the inner load
%val1 = load %outerAddr1 : $*(Int64, (Int64, Int64))
cond_br undef, bb2, bb3
bb2:
br bb1
bb3:
%result = tuple (%val1 : $(Int64, (Int64, Int64)), %val2 : $(Int64, Int64))
return %result : $((Int64, (Int64, Int64)), (Int64, Int64))
}
// CHECK-LABEL: sil shared @testSameTwoStores : $@convention(method) (Int64, Int64, Builtin.RawPointer) -> (Int64, (Int64, Int64)) {
// CHECK: bb0(%0 : $Int64, %1 : $Int64, %2 : $Builtin.RawPointer):
// CHECK: [[ELT_1:%.*]] = tuple_element_addr %3 : $*(Int64, (Int64, Int64)), 1
// CHECK: [[V1:%.*]] = load %4 : $*(Int64, Int64)
// CHECK: [[ELT_0:%.*]] = tuple_element_addr %3 : $*(Int64, (Int64, Int64)), 0
// CHECK: [[V0:%.*]] = load %6 : $*Int64
// CHECK: [[ARG0:%.*]] = tuple (%0 : $Int64, %0 : $Int64)
// CHECK: [[ARG0_0:%.*]] = tuple_extract %8 : $(Int64, Int64), 0
// CHECK: [[ARG1:%.*]] = tuple (%1 : $Int64, %1 : $Int64)
// CHECK: br bb1([[V1]] : $(Int64, Int64))
// CHECK: bb1([[PHI:%.*]] : $(Int64, Int64)):
// CHECK: [[LOOPVAL:%.*]] = tuple ([[V0]] : $Int64, [[PHI]] : $(Int64, Int64))
// CHECK: cond_br undef, bb2, bb3
// CHECK: bb2:
// CHECK: br bb1([[ARG1]] : $(Int64, Int64))
// CHECK: bb3:
// CHECK: store [[ARG1]] to [[ELT_1]] : $*(Int64, Int64)
// CHECK: [[EXTRACT0:%.*]] = tuple_extract [[LOOPVAL]] : $(Int64, (Int64, Int64)), 0
// CHECK: [[EXTRACT1:%.*]] = tuple_extract [[LOOPVAL]] : $(Int64, (Int64, Int64)), 1
// CHECK: [[EXTRACT1_1:%.*]] = tuple_extract [[EXTRACT1]] : $(Int64, Int64), 1
// CHECK: [[TUPLE1:%.*]] = tuple ([[ARG0_0]] : $Int64, [[EXTRACT1_1]] : $Int64)
// CHECK: [[RESULT:%.*]] = tuple ([[EXTRACT0]] : $Int64, [[TUPLE1]] : $(Int64, Int64))
// CHECK: return [[RESULT]] : $(Int64, (Int64, Int64))
// CHECK-LABEL: } // end sil function 'testSameTwoStores'
sil shared @testSameTwoStores : $@convention(method) (Int64, Int64, Builtin.RawPointer) -> (Int64, (Int64, Int64)) {
bb0(%0 : $Int64, %1: $Int64, %2 : $Builtin.RawPointer):
%outerAddr1 = pointer_to_address %2 : $Builtin.RawPointer to $*(Int64, (Int64, Int64))
br bb1
bb1:
%val = load %outerAddr1 : $*(Int64, (Int64, Int64))
%elementAddr1 = tuple_element_addr %outerAddr1 : $*(Int64, (Int64, Int64)), 1
%tupleA = tuple (%0 : $Int64, %0: $Int64)
store %tupleA to %elementAddr1 : $*(Int64, Int64)
%elementAddr10 = tuple_element_addr %elementAddr1 : $*(Int64, Int64), 0
%val10 = load %elementAddr10 : $*Int64
%tupleB = tuple (%1 : $Int64, %1: $Int64)
store %tupleB to %elementAddr1 : $*(Int64, Int64)
cond_br undef, bb2, bb3
bb2:
br bb1
bb3:
%extract0 = tuple_extract %val : $(Int64, (Int64, Int64)), 0
%extract1 = tuple_extract %val : $(Int64, (Int64, Int64)), 1
%extract11 = tuple_extract %extract1 : $(Int64, Int64), 1
%inner = tuple (%val10 : $Int64, %extract11: $Int64)
%outer = tuple (%extract0 : $Int64, %inner: $(Int64, Int64))
return %outer : $(Int64, (Int64, Int64))
}
class C {}
// This won't be hoisted because we can't find a base to check if it is invariant
// CHECK-LABEL: sil @testLoopInvariantStoreNoBase1 :
// CHECK: bb6:
// CHECK-NOT: store
// CHECK-LABEL: } // end sil function 'testLoopInvariantStoreNoBase1'
sil @testLoopInvariantStoreNoBase1 : $@convention(thin) (Builtin.BridgeObject, Double) -> () {
bb0(%0 : $Builtin.BridgeObject, %1 : $Double):
cond_br undef, bb1, bb2
bb1:
%2 = unchecked_ref_cast %0 : $Builtin.BridgeObject to $C
%3 = ref_tail_addr [immutable] %2 : $C, $Double
%4 = address_to_pointer %3 : $*Double to $Builtin.RawPointer
br bb3(%4 : $Builtin.RawPointer)
bb2:
%6 = unchecked_ref_cast %0 : $Builtin.BridgeObject to $C
%7 = ref_tail_addr [immutable] %6 : $C, $Double
%8 = address_to_pointer %7 : $*Double to $Builtin.RawPointer
br bb3(%8 : $Builtin.RawPointer)
bb3(%9 : $Builtin.RawPointer):
br bb4
bb4:
%11 = pointer_to_address %9 : $Builtin.RawPointer to [strict] $*Double
store %1 to %11 : $*Double
cond_br undef, bb5, bb6
bb5:
br bb4
bb6:
%15 = tuple ()
return %15 : $()
}
// This won't be hoisted because we can't find a base to check if it is invariant
// CHECK-LABEL: sil @testLoopInvariantStoreNoBase2 :
// CHECK: bb6:
// CHECK-NOT: store
// CHECK-LABEL: } // end sil function 'testLoopInvariantStoreNoBase2'
sil @testLoopInvariantStoreNoBase2 : $@convention(thin) (Builtin.BridgeObject, Double) -> () {
bb0(%0 : $Builtin.BridgeObject, %1 : $Double):
cond_br undef, bb1, bb2
bb1:
%2 = unchecked_ref_cast %0 : $Builtin.BridgeObject to $C
%3 = ref_tail_addr [immutable] %2 : $C, $Double
%4 = address_to_pointer %3 : $*Double to $Builtin.RawPointer
br bb3(%4 : $Builtin.RawPointer)
bb2:
%6 = unchecked_ref_cast %0 : $Builtin.BridgeObject to $C
%7 = ref_tail_addr [immutable] %6 : $C, $Double
%8 = address_to_pointer %7 : $*Double to $Builtin.RawPointer
br bb3(%8 : $Builtin.RawPointer)
bb3(%9 : $Builtin.RawPointer):
br bb4
bb4:
%11 = pointer_to_address %9 : $Builtin.RawPointer to [strict] $*Double
%12 = integer_literal $Builtin.Word, 1
%13 = index_addr %11 : $*Double, %12 : $Builtin.Word
store %1 to %13 : $*Double
cond_br undef, bb5, bb6
bb5:
br bb4
bb6:
%15 = tuple ()
return %15 : $()
}
struct UInt64 {
@_hasStorage var _value: Builtin.Int64 { get set }
init(_value: Builtin.Int64)
}
public struct UInt64Wrapper {
@_hasStorage public var rawValue: UInt64 { get set }
private init(_ rawValue: UInt64)
public init()
}
// rdar://92191909 (LICM assertion: isSubObjectProjection(), MemAccessUtils.h, line 1069)
//
// projectLoadValue needs to rematerialize a loaded value within the
// loop using projections and the loop-invariant address is an
// index_addr.
//
// The store inside the loop is deleted, and the load is hoisted such
// that it now loads the UInt64Wrapper instead of Builtin.Int64
// CHECK-LABEL: sil @testTailProjection : $@convention(thin) () -> () {
// CHECK: bb0:
// CHECK: [[A:%.*]] = index_addr %4 : $*UInt64Wrapper, %1 : $Builtin.Word
// CHECK: store %{{.*}} to [[A]] : $*UInt64Wrapper
// CHECK: load %5 : $*UInt64Wrapper
// CHECK: br bb1
// CHECK: bb1(%{{.*}} : $Builtin.Int64, %{{.*}} : $UInt64Wrapper, [[PHI:%.*]] : $UInt64Wrapper):
// CHECK: cond_br undef, bb3, bb2
// CHECK: bb2:
// CHECK-NOT: (load|store)
// CHECK: struct_extract [[PHI]] : $UInt64Wrapper, #UInt64Wrapper.rawValue
// CHECK: struct_extract
// CHECK: struct $UInt64
// CHECK: struct $UInt64Wrapper
// CHECK-NOT: (load|store)
// CHECK: br bb1
// CHECK: bb3:
// CHECK: store [[PHI]] to [[A]] : $*UInt64Wrapper
// CHECK-LABEL: } // end sil function 'testTailProjection'
sil @testTailProjection : $@convention(thin) () -> () {
bb0:
%0 = integer_literal $Builtin.Int64, 0
%1 = integer_literal $Builtin.Word, 1
%2 = integer_literal $Builtin.Word, 2
%3 = alloc_ref [tail_elems $UInt64Wrapper * %2 : $Builtin.Word] $Storage
%4 = ref_tail_addr %3 : $Storage, $UInt64Wrapper
%5 = index_addr %4 : $*UInt64Wrapper, %1 : $Builtin.Word
%6 = struct $UInt64 (%0 : $Builtin.Int64)
%7 = struct $UInt64Wrapper (%6 : $UInt64)
store %7 to %5 : $*UInt64Wrapper
%9 = load %5 : $*UInt64Wrapper
br bb1(%0 : $Builtin.Int64, %9 : $UInt64Wrapper)
bb1(%11 : $Builtin.Int64, %12 : $UInt64Wrapper):
cond_br undef, bb3, bb2
bb2:
%14 = struct_element_addr %5 : $*UInt64Wrapper, #UInt64Wrapper.rawValue
%15 = struct_element_addr %14 : $*UInt64, #UInt64._value
%16 = load %15 : $*Builtin.Int64
%17 = struct $UInt64 (%16 : $Builtin.Int64)
%18 = struct $UInt64Wrapper (%17 : $UInt64)
store %18 to %5 : $*UInt64Wrapper
br bb1(%16 : $Builtin.Int64, %18 : $UInt64Wrapper)
bb3:
%21 = tuple ()
return %21 : $()
}
sil_global private @g_token : $Builtin.Word
sil_global @gi : $Int
sil @g_init : $@convention(c) () -> ()
// CHECK-LABEL: sil @hoist_builtin_once :
// CHECK: function_ref
// CHECK: builtin "once"
// CHECK: br bb1
// CHECK: bb1:
// CHECK-NOT: builtin
// CHECK: cond_br
// CHECK: } // end sil function 'hoist_builtin_once'
sil @hoist_builtin_once : $@convention(thin) () -> () {
bb0:
br bb1
bb1:
%1 = global_addr @g_token : $*Builtin.Word
%2 = address_to_pointer %1 : $*Builtin.Word to $Builtin.RawPointer
%3 = function_ref @g_init : $@convention(c) () -> ()
%4 = builtin "once"(%2 : $Builtin.RawPointer, %3 : $@convention(c) () -> ()) : $()
cond_br undef, bb1, bb2
bb2:
%r1 = tuple ()
return %r1 : $()
}
// CHECK-LABEL: sil @dont_hoist_builtin_once_memory_conflict :
// CHECK: function_ref
// CHECK: br bb1
// CHECK: bb1:
// CHECK: builtin "once"
// CHECK: cond_br
// CHECK: } // end sil function 'dont_hoist_builtin_once_memory_conflict'
sil @dont_hoist_builtin_once_memory_conflict : $@convention(thin) (Int) -> () {
bb0(%0 : $Int):
br bb1
bb1:
%1 = global_addr @gi : $*Int
store %0 to %1 : $*Int
%3 = global_addr @g_token : $*Builtin.Word
%4 = address_to_pointer %3 : $*Builtin.Word to $Builtin.RawPointer
%5 = function_ref @g_init : $@convention(c) () -> ()
%6 = builtin "once"(%4 : $Builtin.RawPointer, %5 : $@convention(c) () -> ()) : $()
cond_br undef, bb1, bb2
bb2:
%r1 = tuple ()
return %r1 : $()
}
|