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
|
-- Test cases for reference count insertion.
[case testReturnLiteral]
def f() -> int:
return 1
[out]
def f():
L0:
return 2
[case testReturnLocal]
def f() -> int:
x = 1
return x
[out]
def f():
x :: int
L0:
x = 2
return x
[case testLocalVars]
def f() -> int:
x = 1
y = x
x = y
return x
[out]
def f():
x, y :: int
L0:
x = 2
y = x
x = y
return x
[case testLocalVars2]
def f() -> int:
x = 1
y = x
z = x
return y + z
[out]
def f():
x, y, z, r0 :: int
L0:
x = 2
inc_ref x :: int
y = x
z = x
r0 = CPyTagged_Add(y, z)
dec_ref y :: int
dec_ref z :: int
return r0
[case testFreeAtReturn]
def f() -> int:
x = 1
y = 2
if x == 1:
return x
return y
[out]
def f():
x, y :: int
r0 :: bit
L0:
x = 2
y = 4
r0 = int_eq x, 2
if r0 goto L3 else goto L4 :: bool
L1:
return x
L2:
return y
L3:
dec_ref y :: int
goto L1
L4:
dec_ref x :: int
goto L2
[case testArgumentsInOps]
def f(a: int, b: int) -> int:
x = a + 1
y = x + a
return y
[out]
def f(a, b):
a, b, r0, x, r1, y :: int
L0:
r0 = CPyTagged_Add(a, 2)
x = r0
r1 = CPyTagged_Add(x, a)
dec_ref x :: int
y = r1
return y
[case testArgumentsInAssign]
def f(a: int) -> int:
x = a
y = a
x = 1
return x + y
[out]
def f(a):
a, x, y, r0 :: int
L0:
inc_ref a :: int
x = a
dec_ref x :: int
inc_ref a :: int
y = a
x = 2
r0 = CPyTagged_Add(x, y)
dec_ref x :: int
dec_ref y :: int
return r0
[case testAssignToArgument1]
def f(a: int) -> int:
a = 1
y = a
return y
[out]
def f(a):
a, y :: int
L0:
a = 2
y = a
return y
[case testAssignToArgument2]
def f(a: int) -> int:
a = 1
a = 2
a = 3
return a
[out]
def f(a):
a :: int
L0:
a = 2
dec_ref a :: int
a = 4
dec_ref a :: int
a = 6
return a
[case testAssignToArgument3]
def f(a: int) -> int:
x = 1
a = x
y = x
return a
[out]
def f(a):
a, x, y :: int
L0:
x = 2
inc_ref x :: int
a = x
y = x
dec_ref y :: int
return a
[case testReturnArgument]
def f(a: int) -> int:
return a
[out]
def f(a):
a :: int
L0:
inc_ref a :: int
return a
[case testConditionalAssignToArgument1]
def f(a: int) -> int:
if a == a:
a = 1
else:
x = 2
y = a + 1
return y
[out]
def f(a):
a :: int
r0 :: bit
x, r1, y :: int
L0:
r0 = int_eq a, a
if r0 goto L1 else goto L2 :: bool
L1:
a = 2
goto L3
L2:
x = 4
dec_ref x :: int
goto L4
L3:
r1 = CPyTagged_Add(a, 2)
dec_ref a :: int
y = r1
return y
L4:
inc_ref a :: int
goto L3
[case testConditionalAssignToArgument2]
def f(a: int) -> int:
if a == a:
x = 2
else:
a = 1
y = a + 1
return y
[out]
def f(a):
a :: int
r0 :: bit
x, r1, y :: int
L0:
r0 = int_eq a, a
if r0 goto L1 else goto L2 :: bool
L1:
x = 4
dec_ref x :: int
goto L4
L2:
a = 2
L3:
r1 = CPyTagged_Add(a, 2)
dec_ref a :: int
y = r1
return y
L4:
inc_ref a :: int
goto L3
[case testConditionalAssignToArgument3]
def f(a: int) -> int:
if a == a:
a = 1
return a
[out]
def f(a):
a :: int
r0 :: bit
L0:
r0 = int_eq a, a
if r0 goto L1 else goto L3 :: bool
L1:
a = 2
L2:
return a
L3:
inc_ref a :: int
goto L2
[case testAssignRegisterToItself]
def f(a: int) -> int:
a = a
x = 1
x = x
return x + a
-- This is correct but bad code
[out]
def f(a):
a, x, r0 :: int
L0:
inc_ref a :: int
a = a
x = 2
inc_ref x :: int
dec_ref x :: int
x = x
r0 = CPyTagged_Add(x, a)
dec_ref x :: int
dec_ref a :: int
return r0
[case testIncrement1]
def f(a: int) -> int:
a = a + 1
x = 1
x = x + 1
return a + x
[out]
def f(a):
a, r0, x, r1, r2 :: int
L0:
r0 = CPyTagged_Add(a, 2)
a = r0
x = 2
r1 = CPyTagged_Add(x, 2)
dec_ref x :: int
x = r1
r2 = CPyTagged_Add(a, x)
dec_ref a :: int
dec_ref x :: int
return r2
[case testIncrement2]
def f() -> None:
x = 1
x = x + 1
[out]
def f():
x, r0 :: int
L0:
x = 2
r0 = CPyTagged_Add(x, 2)
dec_ref x :: int
x = r0
dec_ref x :: int
return 1
[case testAdd1]
def f() -> None:
y = 1
x = y + 1
[out]
def f():
y, r0, x :: int
L0:
y = 2
r0 = CPyTagged_Add(y, 2)
dec_ref y :: int
x = r0
dec_ref x :: int
return 1
[case testAdd2]
def f(a: int) -> int:
a = a + a
x = a
x = x + x
return x
[out]
def f(a):
a, r0, x, r1 :: int
L0:
r0 = CPyTagged_Add(a, a)
a = r0
x = a
r1 = CPyTagged_Add(x, x)
dec_ref x :: int
x = r1
return x
[case testAdd3]
def f(a: int) -> int:
x = a + a
y = x + x
return y
[out]
def f(a):
a, r0, x, r1, y :: int
L0:
r0 = CPyTagged_Add(a, a)
x = r0
r1 = CPyTagged_Add(x, x)
dec_ref x :: int
y = r1
return y
[case testAdd4]
def f(a: int) -> None:
x = a + a
y = 1
z = y + y
[out]
def f(a):
a, r0, x, y, r1, z :: int
L0:
r0 = CPyTagged_Add(a, a)
x = r0
dec_ref x :: int
y = 2
r1 = CPyTagged_Add(y, y)
dec_ref y :: int
z = r1
dec_ref z :: int
return 1
[case testAdd5]
def f(a: int) -> None:
a = a + a
x = 1
x = x + x
[out]
def f(a):
a, r0, x, r1 :: int
L0:
r0 = CPyTagged_Add(a, a)
a = r0
dec_ref a :: int
x = 2
r1 = CPyTagged_Add(x, x)
dec_ref x :: int
x = r1
dec_ref x :: int
return 1
[case testReturnInMiddleOfFunction]
def f() -> int:
x = 1
y = 2
z = 3
if z == z:
return z
a = 1
return x + y - a
[out]
def f():
x, y, z :: int
r0 :: bit
a, r1, r2 :: int
L0:
x = 2
y = 4
z = 6
r0 = int_eq z, z
if r0 goto L3 else goto L4 :: bool
L1:
return z
L2:
a = 2
r1 = CPyTagged_Add(x, y)
dec_ref x :: int
dec_ref y :: int
r2 = CPyTagged_Subtract(r1, a)
dec_ref r1 :: int
dec_ref a :: int
return r2
L3:
dec_ref x :: int
dec_ref y :: int
goto L1
L4:
dec_ref z :: int
goto L2
[case testLoop]
def f(a: int) -> int:
sum = 0
i = 0
while i <= a:
sum = sum + i
i = i + 1
return sum
[out]
def f(a):
a, sum, i :: int
r0 :: bit
r1, r2 :: int
L0:
sum = 0
i = 0
L1:
r0 = int_le i, a
if r0 goto L2 else goto L4 :: bool
L2:
r1 = CPyTagged_Add(sum, i)
dec_ref sum :: int
sum = r1
r2 = CPyTagged_Add(i, 2)
dec_ref i :: int
i = r2
goto L1
L3:
return sum
L4:
dec_ref i :: int
goto L3
[case testCall]
def f(a: int) -> int:
return f(a + 1)
[out]
def f(a):
a, r0, r1 :: int
L0:
r0 = CPyTagged_Add(a, 2)
r1 = f(r0)
dec_ref r0 :: int
return r1
[case testError]
def f(x: List[int]) -> None: pass # E: Name "List" is not defined \
# N: Did you forget to import it from "typing"? (Suggestion: "from typing import List")
[case testNewList]
def f() -> int:
a = [0, 1]
return 0
[out]
def f():
r0 :: list
r1, r2 :: object
r3 :: ptr
a :: list
L0:
r0 = PyList_New(2)
r1 = object 0
r2 = object 1
r3 = list_items r0
inc_ref r1
buf_init_item r3, 0, r1
inc_ref r2
buf_init_item r3, 1, r2
a = r0
dec_ref a
return 0
[case testListSet]
from typing import List
def f(a: List[int], b: List[int]) -> None:
a[0] = b[0]
[out]
def f(a, b):
a, b :: list
r0 :: object
r1 :: int
r2 :: object
r3 :: bit
L0:
r0 = CPyList_GetItemShort(b, 0)
r1 = unbox(int, r0)
dec_ref r0
r2 = box(int, r1)
r3 = CPyList_SetItem(a, 0, r2)
return 1
[case testTupleRefcount]
from typing import Tuple
def f(x: Tuple[Tuple[int, bool], bool]) -> int:
return x[0][0]
[out]
def f(x):
x :: tuple[tuple[int, bool], bool]
r0 :: tuple[int, bool]
r1 :: int
L0:
r0 = x[0]
r1 = r0[0]
dec_ref r0
return r1
[case testUserClassRefCount]
class C:
x: 'C'
def f() -> None:
c = C()
c.x = C()
[out]
def f():
r0, c, r1 :: __main__.C
r2 :: bool
L0:
r0 = C()
c = r0
r1 = C()
c.x = r1; r2 = is_error
dec_ref c
return 1
[case testCastRefCount]
class C: pass
def f() -> None:
a = [C()]
d = a[0]
[out]
def f():
r0 :: __main__.C
r1 :: list
r2 :: ptr
a :: list
r3 :: object
r4, d :: __main__.C
L0:
r0 = C()
r1 = PyList_New(1)
r2 = list_items r1
buf_init_item r2, 0, r0
a = r1
r3 = CPyList_GetItemShort(a, 0)
dec_ref a
r4 = cast(__main__.C, r3)
d = r4
dec_ref d
return 1
[case testUnaryBranchSpecialCase]
def f(x: bool) -> int:
if x:
return 1
return 2
[out]
def f(x):
x :: bool
L0:
if x goto L1 else goto L2 :: bool
L1:
return 2
L2:
return 4
[case testReturnTuple]
from typing import Tuple
class C: pass
def f() -> Tuple[C, C]:
a = C()
b = C()
return a, b
[out]
def f():
r0, a, r1, b :: __main__.C
r2 :: tuple[__main__.C, __main__.C]
L0:
r0 = C()
a = r0
r1 = C()
b = r1
r2 = (a, b)
return r2
[case testDecomposeTuple]
from typing import Tuple
class C:
a: int
def f() -> int:
x, y = g()
return x.a + y.a
def g() -> Tuple[C, C]:
return C(), C()
[out]
def f():
r0 :: tuple[__main__.C, __main__.C]
r1, r2, r3, x, r4, y :: __main__.C
r5, r6, r7 :: int
L0:
r0 = g()
r1 = borrow r0[0]
r2 = borrow r0[1]
r3 = unborrow r1
x = r3
r4 = unborrow r2
y = r4
r5 = borrow x.a
r6 = borrow y.a
r7 = CPyTagged_Add(r5, r6)
dec_ref x
dec_ref y
return r7
def g():
r0, r1 :: __main__.C
r2 :: tuple[__main__.C, __main__.C]
L0:
r0 = C()
r1 = C()
r2 = (r0, r1)
return r2
[case testUnicodeLiteral]
def f() -> str:
return "some string"
[out]
def f():
r0 :: str
L0:
r0 = 'some string'
inc_ref r0
return r0
[case testPyMethodCall]
def g(x: str) -> int:
return int(x, base=2)
[out]
def g(x):
x :: str
r0, r1 :: object
r2 :: object[2]
r3 :: object_ptr
r4, r5 :: object
r6 :: int
L0:
r0 = load_address PyLong_Type
r1 = object 2
r2 = [x, r1]
r3 = load_address r2
r4 = ('base',)
r5 = PyObject_Vectorcall(r0, r3, 1, r4)
r6 = unbox(int, r5)
dec_ref r5
return r6
[case testListAppend]
from typing import List
def f(a: List[int], x: int) -> None:
a.append(x)
[out]
def f(a, x):
a :: list
x :: int
r0 :: object
r1 :: i32
r2 :: bit
L0:
inc_ref x :: int
r0 = box(int, x)
r1 = PyList_Append(a, r0)
dec_ref r0
r2 = r1 >= 0 :: signed
return 1
[case testForDict]
from typing import Dict
def f(d: Dict[int, int]) -> None:
for key in d:
d[key]
[out]
def f(d):
d :: dict
r0 :: short_int
r1 :: native_int
r2 :: object
r3 :: tuple[bool, short_int, object]
r4 :: short_int
r5 :: bool
r6 :: object
r7, key :: int
r8, r9 :: object
r10 :: int
r11, r12 :: bit
L0:
r0 = 0
r1 = PyDict_Size(d)
r2 = CPyDict_GetKeysIter(d)
L1:
r3 = CPyDict_NextKey(r2, r0)
r4 = r3[1]
r0 = r4
r5 = r3[0]
if r5 goto L2 else goto L6 :: bool
L2:
r6 = r3[2]
dec_ref r3
r7 = unbox(int, r6)
dec_ref r6
key = r7
r8 = box(int, key)
r9 = CPyDict_GetItem(d, r8)
dec_ref r8
r10 = unbox(int, r9)
dec_ref r9
dec_ref r10 :: int
L3:
r11 = CPyDict_CheckSize(d, r1)
goto L1
L4:
r12 = CPy_NoErrOccurred()
L5:
return 1
L6:
dec_ref r2
dec_ref r3
goto L4
[case testBorrowRefs]
def make_garbage(arg: object) -> None:
b = True
while b:
arg = None
b = False
[out]
def make_garbage(arg):
arg :: object
b :: bool
r0 :: object
L0:
b = 1
L1:
if b goto L2 else goto L3 :: bool
L2:
r0 = box(None, 1)
inc_ref r0
arg = r0
dec_ref arg
b = 0
goto L1
L3:
return 1
[case testTupleUnpackUnused]
from typing import Tuple
def f(x: Tuple[str, int]) -> int:
a, xi = x
return 0
[out]
def f(x):
x :: tuple[str, int]
r0 :: str
r1 :: int
r2, a :: str
r3, xi :: int
L0:
r0 = borrow x[0]
r1 = borrow x[1]
inc_ref x
r2 = unborrow r0
a = r2
dec_ref a
r3 = unborrow r1
xi = r3
dec_ref xi :: int
return 0
[case testGetElementPtrLifeTime]
from typing import List
def f() -> int:
x: List[str] = []
return len(x)
[out]
def f():
r0, x :: list
r1 :: native_int
r2 :: short_int
L0:
r0 = PyList_New(0)
x = r0
r1 = var_object_size x
dec_ref x
r2 = r1 << 1
return r2
[case testSometimesUninitializedVariable]
def f(x: bool) -> int:
if x:
y = 1
else:
z = 2
return y + z
[out]
def f(x):
x :: bool
r0, y, r1, z :: int
r2, r3 :: bool
r4 :: int
L0:
r0 = <error> :: int
y = r0
r1 = <error> :: int
z = r1
if x goto L8 else goto L9 :: bool
L1:
y = 2
goto L3
L2:
z = 4
L3:
if is_error(y) goto L10 else goto L5
L4:
r2 = raise UnboundLocalError('local variable "y" referenced before assignment')
unreachable
L5:
if is_error(z) goto L11 else goto L7
L6:
r3 = raise UnboundLocalError('local variable "z" referenced before assignment')
unreachable
L7:
r4 = CPyTagged_Add(y, z)
xdec_ref y :: int
xdec_ref z :: int
return r4
L8:
xdec_ref y :: int
goto L1
L9:
xdec_ref z :: int
goto L2
L10:
xdec_ref z :: int
goto L4
L11:
xdec_ref y :: int
goto L6
[case testVectorcall]
from typing import Any
def call(f: Any, x: int) -> int:
return f(x)
[out]
def call(f, x):
f :: object
x :: int
r0 :: object
r1 :: object[1]
r2 :: object_ptr
r3 :: object
r4 :: int
L0:
inc_ref x :: int
r0 = box(int, x)
r1 = [r0]
r2 = load_address r1
r3 = PyObject_Vectorcall(f, r2, 1, 0)
dec_ref r0
r4 = unbox(int, r3)
dec_ref r3
return r4
[case testVectorcallMethod_64bit]
from typing import Any
def call(o: Any, x: int) -> int:
return o.m(x)
[out]
def call(o, x):
o :: object
x :: int
r0 :: str
r1 :: object
r2 :: object[2]
r3 :: object_ptr
r4 :: object
r5 :: int
L0:
r0 = 'm'
inc_ref x :: int
r1 = box(int, x)
r2 = [o, r1]
r3 = load_address r2
r4 = PyObject_VectorcallMethod(r0, r3, 9223372036854775810, 0)
dec_ref r1
r5 = unbox(int, r4)
dec_ref r4
return r5
[case testBorrowAttribute]
def g() -> int:
d = D()
return d.c.x
def f(d: D) -> int:
return d.c.x
class C:
x: int
class D:
c: C
[out]
def g():
r0, d :: __main__.D
r1 :: __main__.C
r2 :: int
L0:
r0 = D()
d = r0
r1 = borrow d.c
r2 = r1.x
dec_ref d
return r2
def f(d):
d :: __main__.D
r0 :: __main__.C
r1 :: int
L0:
r0 = borrow d.c
r1 = r0.x
return r1
[case testBorrowAttributeTwice]
def f(e: E) -> int:
return e.d.c.x
class C:
x: int
class D:
c: C
class E:
d: D
[out]
def f(e):
e :: __main__.E
r0 :: __main__.D
r1 :: __main__.C
r2 :: int
L0:
r0 = borrow e.d
r1 = borrow r0.c
r2 = r1.x
return r2
[case testBorrowAttributeIsNone]
from typing import Optional
def f(c: C) -> bool:
return c.x is not None
def g(c: C) -> bool:
return c.x is None
class C:
x: Optional[str]
[out]
def f(c):
c :: __main__.C
r0 :: union[str, None]
r1 :: object
r2 :: bit
L0:
r0 = borrow c.x
r1 = load_address _Py_NoneStruct
r2 = r0 != r1
return r2
def g(c):
c :: __main__.C
r0 :: union[str, None]
r1 :: object
r2 :: bit
L0:
r0 = borrow c.x
r1 = load_address _Py_NoneStruct
r2 = r0 == r1
return r2
[case testBorrowAttributeNarrowOptional]
from typing import Optional
def f(c: C) -> bool:
if c.x is not None:
return c.x.b
return False
class C:
x: Optional[D]
class D:
b: bool
[out]
def f(c):
c :: __main__.C
r0 :: union[__main__.D, None]
r1 :: object
r2 :: bit
r3 :: union[__main__.D, None]
r4 :: __main__.D
r5 :: bool
L0:
r0 = borrow c.x
r1 = load_address _Py_NoneStruct
r2 = r0 != r1
if r2 goto L1 else goto L2 :: bool
L1:
r3 = borrow c.x
r4 = borrow cast(__main__.D, r3)
r5 = r4.b
return r5
L2:
return 0
[case testBorrowLenArgument]
from typing import List
def f(x: C) -> int:
return len(x.a)
class C:
a: List[str]
[out]
def f(x):
x :: __main__.C
r0 :: list
r1 :: native_int
r2 :: short_int
L0:
r0 = borrow x.a
r1 = var_object_size r0
r2 = r1 << 1
return r2
[case testBorrowIsinstanceArgument]
from typing import List
def f(x: C) -> bool:
if isinstance(x.a, D):
return x.a.b
else:
return True
class C:
a: object
class D:
b: bool
[out]
def f(x):
x :: __main__.C
r0, r1 :: object
r2 :: ptr
r3 :: object
r4 :: bit
r5 :: object
r6 :: __main__.D
r7 :: bool
L0:
r0 = borrow x.a
r1 = __main__.D :: type
r2 = get_element_ptr r0 ob_type :: PyObject
r3 = borrow load_mem r2 :: builtins.object*
r4 = r3 == r1
if r4 goto L1 else goto L2 :: bool
L1:
r5 = borrow x.a
r6 = borrow cast(__main__.D, r5)
r7 = r6.b
return r7
L2:
return 1
[case testBorrowListGetItem1]
from typing import List
def literal_index(x: C) -> str:
return x.a[0]
def negative_index(x: C) -> str:
return x.a[-1]
def lvar_index(x: C, n: int) -> str:
return x.a[n]
class C:
a: List[str]
[out]
def literal_index(x):
x :: __main__.C
r0 :: list
r1 :: object
r2 :: str
L0:
r0 = borrow x.a
r1 = CPyList_GetItemShort(r0, 0)
r2 = cast(str, r1)
return r2
def negative_index(x):
x :: __main__.C
r0 :: list
r1 :: object
r2 :: str
L0:
r0 = borrow x.a
r1 = CPyList_GetItemShort(r0, -2)
r2 = cast(str, r1)
return r2
def lvar_index(x, n):
x :: __main__.C
n :: int
r0 :: list
r1 :: object
r2 :: str
L0:
r0 = borrow x.a
r1 = CPyList_GetItem(r0, n)
r2 = cast(str, r1)
return r2
[case testBorrowListGetItem2]
from typing import List
def attr_before_index(x: C) -> str:
return x.a[x.n]
def attr_after_index(a: List[C], i: int) -> int:
return a[i].n
def attr_after_index_literal(a: List[C]) -> int:
return a[0].n
class C:
a: List[str]
n: int
[out]
def attr_before_index(x):
x :: __main__.C
r0 :: list
r1 :: int
r2 :: object
r3 :: str
L0:
r0 = borrow x.a
r1 = borrow x.n
r2 = CPyList_GetItem(r0, r1)
r3 = cast(str, r2)
return r3
def attr_after_index(a, i):
a :: list
i :: int
r0 :: object
r1 :: __main__.C
r2 :: int
L0:
r0 = CPyList_GetItemBorrow(a, i)
r1 = borrow cast(__main__.C, r0)
r2 = r1.n
return r2
def attr_after_index_literal(a):
a :: list
r0 :: object
r1 :: __main__.C
r2 :: int
L0:
r0 = CPyList_GetItemShortBorrow(a, 0)
r1 = borrow cast(__main__.C, r0)
r2 = r1.n
return r2
[case testCannotBorrowListGetItem]
from typing import List
def func_index(x: C) -> str:
return x.a[f()]
def f() -> int: return 0
class C:
a: List[str]
[out]
def func_index(x):
x :: __main__.C
r0 :: list
r1 :: int
r2 :: object
r3 :: str
L0:
r0 = x.a
r1 = f()
r2 = CPyList_GetItem(r0, r1)
dec_ref r0
dec_ref r1 :: int
r3 = cast(str, r2)
return r3
def f():
L0:
return 0
[case testBorrowListGetItemKeepAlive]
from typing import List
def f() -> str:
a = [C()]
return a[0].s
class C:
s: str
[out]
def f():
r0 :: __main__.C
r1 :: list
r2 :: ptr
a :: list
r3 :: object
r4 :: __main__.C
r5 :: str
L0:
r0 = C()
r1 = PyList_New(1)
r2 = list_items r1
buf_init_item r2, 0, r0
a = r1
r3 = CPyList_GetItemShortBorrow(a, 0)
r4 = borrow cast(__main__.C, r3)
r5 = r4.s
dec_ref a
return r5
[case testBorrowSetAttrObject]
from typing import Optional
def f(x: Optional[C]) -> None:
if x is not None:
x.b = True
def g(x: D) -> None:
x.c.b = False
class C:
b: bool
class D:
c: C
[out]
def f(x):
x :: union[__main__.C, None]
r0 :: object
r1 :: bit
r2 :: __main__.C
r3 :: bool
L0:
r0 = load_address _Py_NoneStruct
r1 = x != r0
if r1 goto L1 else goto L2 :: bool
L1:
r2 = borrow cast(__main__.C, x)
r2.b = 1; r3 = is_error
L2:
return 1
def g(x):
x :: __main__.D
r0 :: __main__.C
r1 :: bool
L0:
r0 = borrow x.c
r0.b = 0; r1 = is_error
return 1
[case testBorrowIntEquality]
def add(c: C) -> bool:
return c.x == c.y
class C:
x: int
y: int
[out]
def add(c):
c :: __main__.C
r0, r1 :: int
r2 :: bit
L0:
r0 = borrow c.x
r1 = borrow c.y
r2 = int_eq r0, r1
return r2
[case testBorrowIntLessThan]
def add(c: C) -> bool:
return c.x < c.y
class C:
x: int
y: int
[out]
def add(c):
c :: __main__.C
r0, r1 :: int
r2 :: bit
L0:
r0 = borrow c.x
r1 = borrow c.y
r2 = int_lt r0, r1
return r2
[case testBorrowIntCompareFinal]
from typing import Final
X: Final = 10
def add(c: C) -> bool:
return c.x == X
class C:
x: int
[out]
def add(c):
c :: __main__.C
r0 :: int
r1 :: bit
L0:
r0 = borrow c.x
r1 = int_eq r0, 20
return r1
[case testBorrowIntArithmetic]
def add(c: C) -> int:
return c.x + c.y
def sub(c: C) -> int:
return c.x - c.y
class C:
x: int
y: int
[out]
def add(c):
c :: __main__.C
r0, r1, r2 :: int
L0:
r0 = borrow c.x
r1 = borrow c.y
r2 = CPyTagged_Add(r0, r1)
return r2
def sub(c):
c :: __main__.C
r0, r1, r2 :: int
L0:
r0 = borrow c.x
r1 = borrow c.y
r2 = CPyTagged_Subtract(r0, r1)
return r2
[case testBorrowIntComparisonInIf]
def add(c: C, n: int) -> bool:
if c.x == c.y:
return True
return False
class C:
x: int
y: int
[out]
def add(c, n):
c :: __main__.C
n, r0, r1 :: int
r2 :: bit
L0:
r0 = borrow c.x
r1 = borrow c.y
r2 = int_eq r0, r1
if r2 goto L1 else goto L2 :: bool
L1:
return 1
L2:
return 0
[case testBorrowIntInPlaceOp]
def add(c: C, n: int) -> None:
c.x += n
def sub(c: C, n: int) -> None:
c.x -= c.y
class C:
x: int
y: int
[out]
def add(c, n):
c :: __main__.C
n, r0, r1 :: int
r2 :: bool
L0:
r0 = borrow c.x
r1 = CPyTagged_Add(r0, n)
c.x = r1; r2 = is_error
return 1
def sub(c, n):
c :: __main__.C
n, r0, r1, r2 :: int
r3 :: bool
L0:
r0 = borrow c.x
r1 = borrow c.y
r2 = CPyTagged_Subtract(r0, r1)
c.x = r2; r3 = is_error
return 1
[case testCoerceIntToI64_64bit]
from mypy_extensions import i64
def f(x: int) -> i64:
# TODO: On the fast path we shouldn't have a decref. Once we have high-level IR,
# coercion from int to i64 can be a single op, which makes it easier to
# generate optimal refcount handling for this case.
return x + 1
[out]
def f(x):
x, r0 :: int
r1 :: native_int
r2 :: bit
r3, r4 :: i64
r5 :: ptr
r6 :: c_ptr
r7 :: i64
L0:
r0 = CPyTagged_Add(x, 2)
r1 = r0 & 1
r2 = r1 == 0
if r2 goto L1 else goto L2 :: bool
L1:
r3 = r0 >> 1
dec_ref r0 :: int
r4 = r3
goto L3
L2:
r5 = r0 ^ 1
r6 = r5
r7 = CPyLong_AsInt64(r6)
r4 = r7
dec_ref r0 :: int
L3:
return r4
|