1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711
|
from rpython.jit.codewriter import heaptracker, longlong
from rpython.jit.codewriter.jitcode import JitCode, SwitchDictDescr
from rpython.jit.metainterp.compile import ResumeAtPositionDescr
from rpython.jit.metainterp.jitexc import get_llexception, reraise
from rpython.jit.metainterp import jitexc
from rpython.jit.metainterp.history import MissingValue
from rpython.rlib import longlong2float
from rpython.rlib.debug import ll_assert, make_sure_not_resized
from rpython.rlib.objectmodel import we_are_translated
from rpython.rlib.rarithmetic import intmask, LONG_BIT, r_uint, ovfcheck
from rpython.rlib.unroll import unrolling_iterable
from rpython.rtyper.lltypesystem import lltype, llmemory, rffi
from rpython.rtyper import rclass
from rpython.rtyper.lltypesystem.lloperation import llop
from rpython.rlib.jit_libffi import CIF_DESCRIPTION_P
def arguments(*argtypes, **kwds):
resulttype = kwds.pop('returns', None)
assert not kwds
def decorate(function):
function.argtypes = argtypes
function.resulttype = resulttype
return function
return decorate
LONGLONG_TYPECODE = 'i' if longlong.is_64_bit else 'f'
class LeaveFrame(jitexc.JitException):
pass
def signedord(c):
value = ord(c)
value = intmask(value << (LONG_BIT-8)) >> (LONG_BIT-8)
return value
NULL = lltype.nullptr(llmemory.GCREF.TO)
# ____________________________________________________________
class BlackholeInterpBuilder(object):
verbose = True
def __init__(self, codewriter, metainterp_sd=None):
self.cpu = codewriter.cpu
asm = codewriter.assembler
self.setup_insns(asm.insns)
self.setup_descrs(asm.descrs)
self.metainterp_sd = metainterp_sd
self.num_interpreters = 0
self.blackholeinterps = []
def _cleanup_(self):
# XXX don't assign a different list to blackholeinterp here,
# it confuses the annotator a lot
del self.blackholeinterps[:]
def setup_insns(self, insns):
assert len(insns) <= 256, "too many instructions!"
self._insns = [None] * len(insns)
for key, value in insns.items():
assert self._insns[value] is None
self._insns[value] = key
self.op_catch_exception = insns.get('catch_exception/L', -1)
self.op_rvmprof_code = insns.get('rvmprof_code/ii', -1)
#
all_funcs = []
for key in self._insns:
assert key.count('/') == 1, "bad key: %r" % (key,)
name, argcodes = key.split('/')
all_funcs.append(self._get_method(name, argcodes))
all_funcs = unrolling_iterable(enumerate(all_funcs))
#
def dispatch_loop(self, code, position):
assert position >= 0
while True:
if (not we_are_translated()
and self.jitcode._startpoints is not None):
assert position in self.jitcode._startpoints, (
"the current position %d is in the middle of "
"an instruction!" % position)
opcode = ord(code[position])
position += 1
for i, func in all_funcs:
if opcode == i:
position = func(self, code, position)
break
else:
raise AssertionError("bad opcode")
dispatch_loop._dont_inline_ = True
self.dispatch_loop = dispatch_loop
def setup_descrs(self, descrs):
self.descrs = descrs
def _get_method(self, name, argcodes):
#
def handler(self, code, position):
assert position >= 0
args = ()
next_argcode = 0
for argtype in argtypes:
if argtype == 'i' or argtype == 'r' or argtype == 'f':
# if argtype is 'i', then argcode can be 'i' or 'c';
# 'c' stands for a single signed byte that gives the
# value of a small constant.
argcode = argcodes[next_argcode]
next_argcode = next_argcode + 1
if argcode == 'i':
assert argtype == 'i'
value = self.registers_i[ord(code[position])]
elif argcode == 'c':
assert argtype == 'i'
value = signedord(code[position])
elif argcode == 'r':
assert argtype == 'r'
value = self.registers_r[ord(code[position])]
elif argcode == 'f':
assert argtype == 'f'
value = self.registers_f[ord(code[position])]
else:
raise AssertionError("bad argcode")
position += 1
elif argtype == 'L':
# argcode should be 'L' too
assert argcodes[next_argcode] == 'L'
next_argcode = next_argcode + 1
value = ord(code[position]) | (ord(code[position+1])<<8)
position += 2
elif argtype == 'I' or argtype == 'R' or argtype == 'F':
assert argcodes[next_argcode] == argtype
next_argcode = next_argcode + 1
length = ord(code[position])
position += 1
value = []
for i in range(length):
index = ord(code[position+i])
if argtype == 'I': reg = self.registers_i[index]
elif argtype == 'R': reg = self.registers_r[index]
elif argtype == 'F': reg = self.registers_f[index]
if not we_are_translated():
assert not isinstance(reg, MissingValue), (
name, self.jitcode, position)
value.append(reg)
make_sure_not_resized(value)
position += length
elif argtype == 'self':
value = self
elif argtype == 'cpu':
value = self.cpu
elif argtype == 'pc':
value = position
elif argtype == 'd' or argtype == 'j':
assert argcodes[next_argcode] == 'd'
next_argcode = next_argcode + 1
index = ord(code[position]) | (ord(code[position+1])<<8)
value = self.descrs[index]
if argtype == 'j':
assert isinstance(value, JitCode)
position += 2
else:
raise AssertionError("bad argtype: %r" % (argtype,))
if not we_are_translated():
assert not isinstance(value, MissingValue), (
name, self.jitcode, position)
args = args + (value,)
if verbose and not we_are_translated():
print '\tbh:', name, list(args),
# call the method bhimpl_xxx()
try:
result = unboundmethod(*args)
except Exception as e:
if verbose and not we_are_translated():
print '-> %s!' % (e.__class__.__name__,)
if resulttype == 'i' or resulttype == 'r' or resulttype == 'f':
position += 1
self.position = position
raise
if verbose and not we_are_translated():
if result is None:
print
else:
print '->', result
if resulttype == 'i':
# argcode should be 'i' too
assert argcodes[next_argcode] == '>'
assert argcodes[next_argcode + 1] == 'i'
next_argcode = next_argcode + 2
if lltype.typeOf(result) is lltype.Bool:
result = int(result)
assert lltype.typeOf(result) is lltype.Signed
self.registers_i[ord(code[position])] = result
position += 1
elif resulttype == 'r':
# argcode should be 'r' too
assert argcodes[next_argcode] == '>'
assert argcodes[next_argcode + 1] == 'r'
next_argcode = next_argcode + 2
assert lltype.typeOf(result) == llmemory.GCREF
self.registers_r[ord(code[position])] = result
position += 1
elif resulttype == 'f':
# argcode should be 'f' too
assert argcodes[next_argcode] == '>'
assert argcodes[next_argcode + 1] == 'f'
next_argcode = next_argcode + 2
assert lltype.typeOf(result) is longlong.FLOATSTORAGE
self.registers_f[ord(code[position])] = result
position += 1
elif resulttype == "iL":
result, new_position = result
if new_position != -1:
position = new_position
next_argcode = next_argcode + 2
else:
assert argcodes[next_argcode] == '>'
assert argcodes[next_argcode + 1] == 'i'
next_argcode = next_argcode + 2
if lltype.typeOf(result) is lltype.Bool:
result = int(result)
assert lltype.typeOf(result) is lltype.Signed
self.registers_i[ord(code[position])] = result
position += 1
elif resulttype == 'L':
assert result >= 0
position = result
else:
assert resulttype is None
assert result is None
assert next_argcode == len(argcodes)
return position
#
# Get the bhimpl_xxx method. If we get an AttributeError here,
# it means that either the implementation is missing, or that it
# should not appear here at all but instead be transformed away
# by codewriter/jtransform.py.
unboundmethod = getattr(BlackholeInterpreter, 'bhimpl_' + name).im_func
verbose = self.verbose
argtypes = unrolling_iterable(unboundmethod.argtypes)
resulttype = unboundmethod.resulttype
handler.func_name = 'handler_' + name
return handler
def acquire_interp(self):
if len(self.blackholeinterps) > 0:
return self.blackholeinterps.pop()
else:
self.num_interpreters += 1
return BlackholeInterpreter(self, self.num_interpreters)
def release_interp(self, interp):
interp.cleanup_registers()
self.blackholeinterps.append(interp)
def check_shift_count(b):
if not we_are_translated():
if b < 0 or b >= LONG_BIT:
raise ValueError("Shift count, %d, not in valid range, 0 .. %d." % (b, LONG_BIT-1))
class BlackholeInterpreter(object):
def __init__(self, builder, count_interpreter):
self.builder = builder
self.cpu = builder.cpu
self.dispatch_loop = builder.dispatch_loop
self.descrs = builder.descrs
self.op_catch_exception = builder.op_catch_exception
self.op_rvmprof_code = builder.op_rvmprof_code
self.count_interpreter = count_interpreter
#
if we_are_translated():
default_i = 0
default_r = NULL
default_f = longlong.ZEROF
else:
default_i = MissingValue()
default_r = MissingValue()
default_f = MissingValue()
self.registers_i = [default_i] * 256
self.registers_r = [default_r] * 256
self.registers_f = [default_f] * 256
self.tmpreg_i = default_i
self.tmpreg_r = default_r
self.tmpreg_f = default_f
self.jitcode = None
def __repr__(self):
return '<BHInterp #%d>' % self.count_interpreter
def setposition(self, jitcode, position):
if jitcode is not self.jitcode:
# the real performance impact of the following code is unclear,
# but it should be minimized by the fact that a given
# BlackholeInterpreter instance is likely to be reused with
# exactly the same jitcode, so we don't do the copy again.
self.copy_constants(self.registers_i, jitcode.constants_i)
self.copy_constants(self.registers_r, jitcode.constants_r)
self.copy_constants(self.registers_f, jitcode.constants_f)
self.jitcode = jitcode
self.position = position
def setarg_i(self, index, value):
assert lltype.typeOf(value) is lltype.Signed
self.registers_i[index] = value
def setarg_r(self, index, value):
assert lltype.typeOf(value) == llmemory.GCREF
self.registers_r[index] = value
def setarg_f(self, index, value):
assert lltype.typeOf(value) is longlong.FLOATSTORAGE
self.registers_f[index] = value
def run(self):
while True:
try:
self.dispatch_loop(self, self.jitcode.code, self.position)
except LeaveFrame:
break
except jitexc.JitException:
raise # go through
except Exception as e:
lle = get_llexception(self.cpu, e)
self.handle_exception_in_frame(lle)
def get_tmpreg_i(self):
return self.tmpreg_i
def get_tmpreg_r(self):
result = self.tmpreg_r
if we_are_translated():
self.tmpreg_r = NULL
else:
del self.tmpreg_r
return result
def get_tmpreg_f(self):
return self.tmpreg_f
def _final_result_anytype(self):
"NOT_RPYTHON"
if self._return_type == 'i': return self.get_tmpreg_i()
if self._return_type == 'r': return self.get_tmpreg_r()
if self._return_type == 'f': return self.get_tmpreg_f()
if self._return_type == 'v': return None
raise ValueError(self._return_type)
def cleanup_registers(self):
# To avoid keeping references alive, this cleans up the registers_r.
# It does not clear the references set by copy_constants(), but
# these are all prebuilt constants anyway.
for i in range(self.jitcode.num_regs_r()):
self.registers_r[i] = NULL
self.exception_last_value = lltype.nullptr(rclass.OBJECT)
def get_current_position_info(self):
return self.jitcode.get_live_vars_info(self.position)
def handle_exception_in_frame(self, e):
# This frame raises an exception. First try to see if
# the exception is handled in the frame itself.
code = self.jitcode.code
position = self.position
if position < len(code):
opcode = ord(code[position])
if opcode == self.op_catch_exception:
# store the exception on 'self', and jump to the handler
self.exception_last_value = e
target = ord(code[position+1]) | (ord(code[position+2])<<8)
self.position = target
return
if opcode == self.op_rvmprof_code:
# call the 'jit_rvmprof_code(1)' for rvmprof, but then
# continue popping frames. Decode the 'rvmprof_code' insn
# manually here.
from rpython.rlib.rvmprof import cintf
arg1 = self.registers_i[ord(code[position + 1])]
arg2 = self.registers_i[ord(code[position + 2])]
assert arg1 == 1
cintf.jit_rvmprof_code(arg1, arg2)
# no 'catch_exception' insn follows: just reraise
reraise(e)
def handle_rvmprof_enter(self):
code = self.jitcode.code
position = self.position
opcode = ord(code[position])
if opcode == self.op_rvmprof_code:
arg1 = self.registers_i[ord(code[position + 1])]
arg2 = self.registers_i[ord(code[position + 2])]
if arg1 == 1:
# we are resuming at a position that will do a
# jit_rvmprof_code(1), when really executed. That's a
# hint for the need for a jit_rvmprof_code(0).
from rpython.rlib.rvmprof import cintf
cintf.jit_rvmprof_code(0, arg2)
def copy_constants(self, registers, constants):
"""Copy jitcode.constants[0] to registers[255],
jitcode.constants[1] to registers[254],
jitcode.constants[2] to registers[253], etc."""
make_sure_not_resized(registers)
make_sure_not_resized(constants)
i = len(constants) - 1
while i >= 0:
j = 255 - i
assert j >= 0
registers[j] = constants[i]
i -= 1
copy_constants._annspecialcase_ = 'specialize:arglistitemtype(1)'
# ----------
@arguments("i", returns="i")
def bhimpl_int_same_as(a):
return a
@arguments("i", "i", returns="i")
def bhimpl_int_add(a, b):
return intmask(a + b)
@arguments("i", "i", returns="i")
def bhimpl_int_sub(a, b):
return intmask(a - b)
@arguments("i", "i", returns="i")
def bhimpl_int_mul(a, b):
return intmask(a * b)
@arguments("i", "i", returns="i")
def bhimpl_uint_mul_high(a, b):
from rpython.jit.metainterp.optimizeopt import intdiv
a = r_uint(a)
b = r_uint(b)
c = intdiv.unsigned_mul_high(a, b)
return intmask(c)
@arguments("L", "i", "i", returns="iL")
def bhimpl_int_add_jump_if_ovf(label, a, b):
try:
return ovfcheck(a + b), -1
except OverflowError:
return 0, label
@arguments("L", "i", "i", returns="iL")
def bhimpl_int_sub_jump_if_ovf(label, a, b):
try:
return ovfcheck(a - b), -1
except OverflowError:
return 0, label
@arguments("L", "i", "i", returns="iL")
def bhimpl_int_mul_jump_if_ovf(label, a, b):
try:
return ovfcheck(a * b), -1
except OverflowError:
return 0, label
@arguments("i", "i", returns="i")
def bhimpl_int_and(a, b):
return a & b
@arguments("i", "i", returns="i")
def bhimpl_int_or(a, b):
return a | b
@arguments("i", "i", returns="i")
def bhimpl_int_xor(a, b):
return a ^ b
@arguments("i", "i", returns="i")
def bhimpl_int_rshift(a, b):
check_shift_count(b)
return a >> b
@arguments("i", "i", returns="i")
def bhimpl_int_lshift(a, b):
check_shift_count(b)
return intmask(a << b)
@arguments("i", "i", returns="i")
def bhimpl_uint_rshift(a, b):
check_shift_count(b)
c = r_uint(a) >> r_uint(b)
return intmask(c)
@arguments("i", returns="i")
def bhimpl_int_neg(a):
return intmask(-a)
@arguments("i", returns="i")
def bhimpl_int_invert(a):
return intmask(~a)
@arguments("i", "i", returns="i")
def bhimpl_int_lt(a, b):
return a < b
@arguments("i", "i", returns="i")
def bhimpl_int_le(a, b):
return a <= b
@arguments("i", "i", returns="i")
def bhimpl_int_eq(a, b):
return a == b
@arguments("i", "i", returns="i")
def bhimpl_int_ne(a, b):
return a != b
@arguments("i", "i", returns="i")
def bhimpl_int_gt(a, b):
return a > b
@arguments("i", "i", returns="i")
def bhimpl_int_ge(a, b):
return a >= b
@arguments("i", returns="i")
def bhimpl_int_is_zero(a):
return not a
@arguments("i", returns="i")
def bhimpl_int_is_true(a):
return bool(a)
@arguments("i", "i", "i", returns="i")
def bhimpl_int_between(a, b, c):
return a <= b < c
@arguments("i", returns="i")
def bhimpl_int_force_ge_zero(i):
if i < 0:
return 0
return i
@arguments("i", "i", returns="i")
def bhimpl_int_signext(a, b):
return heaptracker.int_signext(a, b)
@arguments("i", "i", returns="i")
def bhimpl_uint_lt(a, b):
return r_uint(a) < r_uint(b)
@arguments("i", "i", returns="i")
def bhimpl_uint_le(a, b):
return r_uint(a) <= r_uint(b)
@arguments("i", "i", returns="i")
def bhimpl_uint_gt(a, b):
return r_uint(a) > r_uint(b)
@arguments("i", "i", returns="i")
def bhimpl_uint_ge(a, b):
return r_uint(a) >= r_uint(b)
@arguments("r", "r", returns="i")
def bhimpl_ptr_eq(a, b):
return a == b
@arguments("r", "r", returns="i")
def bhimpl_ptr_ne(a, b):
return a != b
@arguments("r", returns="i")
def bhimpl_ptr_iszero(a):
return not a
@arguments("r", returns="i")
def bhimpl_ptr_nonzero(a):
return bool(a)
@arguments("r", "r", returns="i")
def bhimpl_instance_ptr_eq(a, b):
return a == b
@arguments("r", "r", returns="i")
def bhimpl_instance_ptr_ne(a, b):
return a != b
@arguments("r", returns="i")
def bhimpl_cast_ptr_to_int(a):
i = lltype.cast_ptr_to_int(a)
ll_assert((i & 1) == 1, "bhimpl_cast_ptr_to_int: not an odd int")
return i
@arguments("i", returns="r")
def bhimpl_cast_int_to_ptr(i):
ll_assert((i & 1) == 1, "bhimpl_cast_int_to_ptr: not an odd int")
return lltype.cast_int_to_ptr(llmemory.GCREF, i)
@arguments("r", "i")
def bhimpl_record_exact_class(a, b):
pass
@arguments("i", returns="i")
def bhimpl_int_copy(a):
return a
@arguments("r", returns="r")
def bhimpl_ref_copy(a):
return a
@arguments("f", returns="f")
def bhimpl_float_copy(a):
return a
@arguments("i")
def bhimpl_int_guard_value(a):
pass
@arguments("r")
def bhimpl_ref_guard_value(a):
pass
@arguments("f")
def bhimpl_float_guard_value(a):
pass
@arguments("r", "i", "d", returns="r")
def bhimpl_str_guard_value(a, i, d):
return a
@arguments("self", "i")
def bhimpl_int_push(self, a):
self.tmpreg_i = a
@arguments("self", "r")
def bhimpl_ref_push(self, a):
self.tmpreg_r = a
@arguments("self", "f")
def bhimpl_float_push(self, a):
self.tmpreg_f = a
@arguments("self", returns="i")
def bhimpl_int_pop(self):
return self.get_tmpreg_i()
@arguments("self", returns="r")
def bhimpl_ref_pop(self):
return self.get_tmpreg_r()
@arguments("self", returns="f")
def bhimpl_float_pop(self):
return self.get_tmpreg_f()
# ----------
# float operations
@arguments("f", returns="f")
def bhimpl_float_neg(a):
a = longlong.getrealfloat(a)
x = -a
return longlong.getfloatstorage(x)
@arguments("f", returns="f")
def bhimpl_float_abs(a):
a = longlong.getrealfloat(a)
x = abs(a)
return longlong.getfloatstorage(x)
@arguments("f", "f", returns="f")
def bhimpl_float_add(a, b):
a = longlong.getrealfloat(a)
b = longlong.getrealfloat(b)
x = a + b
return longlong.getfloatstorage(x)
@arguments("f", "f", returns="f")
def bhimpl_float_sub(a, b):
a = longlong.getrealfloat(a)
b = longlong.getrealfloat(b)
x = a - b
return longlong.getfloatstorage(x)
@arguments("f", "f", returns="f")
def bhimpl_float_mul(a, b):
a = longlong.getrealfloat(a)
b = longlong.getrealfloat(b)
x = a * b
return longlong.getfloatstorage(x)
@arguments("f", "f", returns="f")
def bhimpl_float_truediv(a, b):
a = longlong.getrealfloat(a)
b = longlong.getrealfloat(b)
x = a / b
return longlong.getfloatstorage(x)
@arguments("f", "f", returns="i")
def bhimpl_float_lt(a, b):
a = longlong.getrealfloat(a)
b = longlong.getrealfloat(b)
return a < b
@arguments("f", "f", returns="i")
def bhimpl_float_le(a, b):
a = longlong.getrealfloat(a)
b = longlong.getrealfloat(b)
return a <= b
@arguments("f", "f", returns="i")
def bhimpl_float_eq(a, b):
a = longlong.getrealfloat(a)
b = longlong.getrealfloat(b)
return a == b
@arguments("f", "f", returns="i")
def bhimpl_float_ne(a, b):
a = longlong.getrealfloat(a)
b = longlong.getrealfloat(b)
return a != b
@arguments("f", "f", returns="i")
def bhimpl_float_gt(a, b):
a = longlong.getrealfloat(a)
b = longlong.getrealfloat(b)
return a > b
@arguments("f", "f", returns="i")
def bhimpl_float_ge(a, b):
a = longlong.getrealfloat(a)
b = longlong.getrealfloat(b)
return a >= b
@arguments("f", "f", "L", "pc", returns="L")
def bhimpl_goto_if_not_float_lt(a, b, target, pc):
a = longlong.getrealfloat(a)
b = longlong.getrealfloat(b)
if a < b:
return pc
else:
return target
@arguments("f", "f", "L", "pc", returns="L")
def bhimpl_goto_if_not_float_le(a, b, target, pc):
a = longlong.getrealfloat(a)
b = longlong.getrealfloat(b)
if a <= b:
return pc
else:
return target
@arguments("f", "f", "L", "pc", returns="L")
def bhimpl_goto_if_not_float_eq(a, b, target, pc):
a = longlong.getrealfloat(a)
b = longlong.getrealfloat(b)
if a == b:
return pc
else:
return target
@arguments("f", "f", "L", "pc", returns="L")
def bhimpl_goto_if_not_float_ne(a, b, target, pc):
a = longlong.getrealfloat(a)
b = longlong.getrealfloat(b)
if a != b:
return pc
else:
return target
@arguments("f", "f", "L", "pc", returns="L")
def bhimpl_goto_if_not_float_gt(a, b, target, pc):
a = longlong.getrealfloat(a)
b = longlong.getrealfloat(b)
if a > b:
return pc
else:
return target
@arguments("f", "f", "L", "pc", returns="L")
def bhimpl_goto_if_not_float_ge(a, b, target, pc):
a = longlong.getrealfloat(a)
b = longlong.getrealfloat(b)
if a >= b:
return pc
else:
return target
@arguments("f", returns="i")
def bhimpl_cast_float_to_int(a):
a = longlong.getrealfloat(a)
# note: we need to call int() twice to care for the fact that
# int(-2147483648.0) returns a long :-(
# we could also call intmask() instead of the outermost int(), but
# it's probably better to explicitly crash (by getting a long) if a
# non-translated version tries to cast a too large float to an int.
return int(int(a))
@arguments("i", returns="f")
def bhimpl_cast_int_to_float(a):
x = float(a)
return longlong.getfloatstorage(x)
@arguments("f", returns="i")
def bhimpl_cast_float_to_singlefloat(a):
from rpython.rlib.rarithmetic import r_singlefloat
a = longlong.getrealfloat(a)
a = r_singlefloat(a)
return longlong.singlefloat2int(a)
@arguments("i", returns="f")
def bhimpl_cast_singlefloat_to_float(a):
a = longlong.int2singlefloat(a)
a = float(a)
return longlong.getfloatstorage(a)
@arguments("f", returns=LONGLONG_TYPECODE)
def bhimpl_convert_float_bytes_to_longlong(a):
a = longlong.getrealfloat(a)
return longlong2float.float2longlong(a)
@arguments(LONGLONG_TYPECODE, returns="f")
def bhimpl_convert_longlong_bytes_to_float(a):
a = longlong2float.longlong2float(a)
return longlong.getfloatstorage(a)
# ----------
# control flow operations
@arguments("self", "i")
def bhimpl_int_return(self, a):
self.tmpreg_i = a
self._return_type = 'i'
raise LeaveFrame
@arguments("self", "r")
def bhimpl_ref_return(self, a):
self.tmpreg_r = a
self._return_type = 'r'
raise LeaveFrame
@arguments("self", "f")
def bhimpl_float_return(self, a):
self.tmpreg_f = a
self._return_type = 'f'
raise LeaveFrame
@arguments("self")
def bhimpl_void_return(self):
self._return_type = 'v'
raise LeaveFrame
@arguments("i", "L", "pc", returns="L")
def bhimpl_goto_if_not(a, target, pc):
if a:
return pc
else:
return target
@arguments("i", "i", "L", "pc", returns="L")
def bhimpl_goto_if_not_int_lt(a, b, target, pc):
if a < b:
return pc
else:
return target
@arguments("i", "i", "L", "pc", returns="L")
def bhimpl_goto_if_not_int_le(a, b, target, pc):
if a <= b:
return pc
else:
return target
@arguments("i", "i", "L", "pc", returns="L")
def bhimpl_goto_if_not_int_eq(a, b, target, pc):
if a == b:
return pc
else:
return target
@arguments("i", "i", "L", "pc", returns="L")
def bhimpl_goto_if_not_int_ne(a, b, target, pc):
if a != b:
return pc
else:
return target
@arguments("i", "i", "L", "pc", returns="L")
def bhimpl_goto_if_not_int_gt(a, b, target, pc):
if a > b:
return pc
else:
return target
@arguments("i", "i", "L", "pc", returns="L")
def bhimpl_goto_if_not_int_ge(a, b, target, pc):
if a >= b:
return pc
else:
return target
bhimpl_goto_if_not_int_is_true = bhimpl_goto_if_not
@arguments("i", "L", "pc", returns="L")
def bhimpl_goto_if_not_int_is_zero(a, target, pc):
if not a:
return pc
else:
return target
@arguments("r", "r", "L", "pc", returns="L")
def bhimpl_goto_if_not_ptr_eq(a, b, target, pc):
if a == b:
return pc
else:
return target
@arguments("r", "r", "L", "pc", returns="L")
def bhimpl_goto_if_not_ptr_ne(a, b, target, pc):
if a != b:
return pc
else:
return target
@arguments("r", "L", "pc", returns="L")
def bhimpl_goto_if_not_ptr_iszero(a, target, pc):
if not a:
return pc
else:
return target
@arguments("r", "L", "pc", returns="L")
def bhimpl_goto_if_not_ptr_nonzero(a, target, pc):
if a:
return pc
else:
return target
@arguments("L", returns="L")
def bhimpl_goto(target):
return target
@arguments("i", "d", "pc", returns="L")
def bhimpl_switch(switchvalue, switchdict, pc):
assert isinstance(switchdict, SwitchDictDescr)
try:
return switchdict.dict[switchvalue]
except KeyError:
return pc
@arguments()
def bhimpl_unreachable():
raise AssertionError("unreachable")
# ----------
# exception handling operations
@arguments("L")
def bhimpl_catch_exception(target):
"""This is a no-op when run normally. When an exception occurs
and the instruction that raised is immediately followed by a
catch_exception, then the code in handle_exception_in_frame()
will capture the exception and jump to 'target'."""
@arguments("self", "i", "L", "pc", returns="L")
def bhimpl_goto_if_exception_mismatch(self, vtable, target, pc):
adr = heaptracker.int2adr(vtable)
bounding_class = llmemory.cast_adr_to_ptr(adr, rclass.CLASSTYPE)
real_instance = self.exception_last_value
assert real_instance
if rclass.ll_issubclass(real_instance.typeptr, bounding_class):
return pc
else:
return target
@arguments("self", returns="i")
def bhimpl_last_exception(self):
real_instance = self.exception_last_value
assert real_instance
adr = llmemory.cast_ptr_to_adr(real_instance.typeptr)
return heaptracker.adr2int(adr)
@arguments("self", returns="r")
def bhimpl_last_exc_value(self):
real_instance = self.exception_last_value
assert real_instance
return lltype.cast_opaque_ptr(llmemory.GCREF, real_instance)
@arguments("self", "r")
def bhimpl_raise(self, excvalue):
e = lltype.cast_opaque_ptr(rclass.OBJECTPTR, excvalue)
assert e
reraise(e)
@arguments("self")
def bhimpl_reraise(self):
e = self.exception_last_value
assert e
reraise(e)
@arguments("r")
def bhimpl_debug_fatalerror(msg):
from rpython.rtyper.lltypesystem import rstr
msg = lltype.cast_opaque_ptr(lltype.Ptr(rstr.STR), msg)
llop.debug_fatalerror(lltype.Void, msg)
@arguments("r", "i", "i", "i", "i")
def bhimpl_jit_debug(string, arg1=0, arg2=0, arg3=0, arg4=0):
pass
@arguments("i")
def bhimpl_jit_enter_portal_frame(x):
pass
@arguments()
def bhimpl_jit_leave_portal_frame():
pass
@arguments("i")
def bhimpl_int_assert_green(x):
pass
@arguments("r")
def bhimpl_ref_assert_green(x):
pass
@arguments("f")
def bhimpl_float_assert_green(x):
pass
@arguments(returns="i")
def bhimpl_current_trace_length():
return -1
@arguments("i", returns="i")
def bhimpl_int_isconstant(x):
return False
@arguments("f", returns="i")
def bhimpl_float_isconstant(x):
return False
@arguments("r", returns="i")
def bhimpl_ref_isconstant(x):
return False
@arguments("r", returns="i")
def bhimpl_ref_isvirtual(x):
return False
# ----------
# the main hints and recursive calls
@arguments("i")
def bhimpl_loop_header(jdindex):
pass
@arguments("self", "i", "I", "R", "F", "I", "R", "F")
def bhimpl_jit_merge_point(self, jdindex, *args):
if self.nextblackholeinterp is None: # we are the last level
raise jitexc.ContinueRunningNormally(*args)
# Note that the case above is an optimization: the case
# below would work too. But it keeps unnecessary stuff on
# the stack; the solution above first gets rid of the blackhole
# interpreter completely.
else:
# This occurs when we reach 'jit_merge_point' in the portal
# function called by recursion. In this case, we can directly
# call the interpreter main loop from here, and just return its
# result.
sd = self.builder.metainterp_sd
result_type = sd.jitdrivers_sd[jdindex].result_type
if result_type == 'v':
self.bhimpl_recursive_call_v(jdindex, *args)
self.bhimpl_void_return()
elif result_type == 'i':
x = self.bhimpl_recursive_call_i(jdindex, *args)
self.bhimpl_int_return(x)
elif result_type == 'r':
x = self.bhimpl_recursive_call_r(jdindex, *args)
self.bhimpl_ref_return(x)
elif result_type == 'f':
x = self.bhimpl_recursive_call_f(jdindex, *args)
self.bhimpl_float_return(x)
assert False
def get_portal_runner(self, jdindex):
jitdriver_sd = self.builder.metainterp_sd.jitdrivers_sd[jdindex]
fnptr = heaptracker.adr2int(jitdriver_sd.portal_runner_adr)
calldescr = jitdriver_sd.mainjitcode.calldescr
return fnptr, calldescr
@arguments("self", "i", "I", "R", "F", "I", "R", "F", returns="i")
def bhimpl_recursive_call_i(self, jdindex, greens_i, greens_r, greens_f,
reds_i, reds_r, reds_f):
fnptr, calldescr = self.get_portal_runner(jdindex)
return self.cpu.bh_call_i(fnptr,
greens_i + reds_i,
greens_r + reds_r,
greens_f + reds_f, calldescr)
@arguments("self", "i", "I", "R", "F", "I", "R", "F", returns="r")
def bhimpl_recursive_call_r(self, jdindex, greens_i, greens_r, greens_f,
reds_i, reds_r, reds_f):
fnptr, calldescr = self.get_portal_runner(jdindex)
return self.cpu.bh_call_r(fnptr,
greens_i + reds_i,
greens_r + reds_r,
greens_f + reds_f, calldescr)
@arguments("self", "i", "I", "R", "F", "I", "R", "F", returns="f")
def bhimpl_recursive_call_f(self, jdindex, greens_i, greens_r, greens_f,
reds_i, reds_r, reds_f):
fnptr, calldescr = self.get_portal_runner(jdindex)
return self.cpu.bh_call_f(fnptr,
greens_i + reds_i,
greens_r + reds_r,
greens_f + reds_f, calldescr)
@arguments("self", "i", "I", "R", "F", "I", "R", "F")
def bhimpl_recursive_call_v(self, jdindex, greens_i, greens_r, greens_f,
reds_i, reds_r, reds_f):
fnptr, calldescr = self.get_portal_runner(jdindex)
return self.cpu.bh_call_v(fnptr,
greens_i + reds_i,
greens_r + reds_r,
greens_f + reds_f, calldescr)
# ----------
# virtual refs
@arguments("r", returns="r")
def bhimpl_virtual_ref(a):
return a
@arguments("r")
def bhimpl_virtual_ref_finish(a):
pass
# ----------
# list operations
@arguments("cpu", "r", "i", "d", returns="i")
def bhimpl_check_neg_index(cpu, array, index, arraydescr):
if index < 0:
index += cpu.bh_arraylen_gc(array, arraydescr)
return index
@arguments("cpu", "r", "i", "d", returns="i")
def bhimpl_check_resizable_neg_index(cpu, lst, index, lengthdescr):
if index < 0:
index += cpu.bh_getfield_gc_i(lst, lengthdescr)
return index
@arguments("cpu", "i", "d", "d", "d", "d", returns="r")
def bhimpl_newlist(cpu, length, structdescr, lengthdescr,
itemsdescr, arraydescr):
result = cpu.bh_new(structdescr)
cpu.bh_setfield_gc_i(result, length, lengthdescr)
if (arraydescr.is_array_of_structs() or
arraydescr.is_array_of_pointers()):
items = cpu.bh_new_array_clear(length, arraydescr)
else:
items = cpu.bh_new_array(length, arraydescr)
cpu.bh_setfield_gc_r(result, items, itemsdescr)
return result
@arguments("cpu", "i", "d", "d", "d", "d", returns="r")
def bhimpl_newlist_clear(cpu, length, structdescr, lengthdescr,
itemsdescr, arraydescr):
result = cpu.bh_new(structdescr)
cpu.bh_setfield_gc_i(result, length, lengthdescr)
items = cpu.bh_new_array_clear(length, arraydescr)
cpu.bh_setfield_gc_r(result, items, itemsdescr)
return result
@arguments("cpu", "i", "d", "d", "d", "d", returns="r")
def bhimpl_newlist_hint(cpu, lengthhint, structdescr, lengthdescr,
itemsdescr, arraydescr):
result = cpu.bh_new(structdescr)
cpu.bh_setfield_gc_i(result, 0, lengthdescr)
if (arraydescr.is_array_of_structs() or
arraydescr.is_array_of_pointers()):
items = cpu.bh_new_array_clear(lengthhint, arraydescr)
else:
items = cpu.bh_new_array(lengthhint, arraydescr)
cpu.bh_setfield_gc_r(result, items, itemsdescr)
return result
@arguments("cpu", "r", "i", "d", "d", returns="i")
def bhimpl_getlistitem_gc_i(cpu, lst, index, itemsdescr, arraydescr):
items = cpu.bh_getfield_gc_r(lst, itemsdescr)
return cpu.bh_getarrayitem_gc_i(items, index, arraydescr)
@arguments("cpu", "r", "i", "d", "d", returns="r")
def bhimpl_getlistitem_gc_r(cpu, lst, index, itemsdescr, arraydescr):
items = cpu.bh_getfield_gc_r(lst, itemsdescr)
return cpu.bh_getarrayitem_gc_r(items, index, arraydescr)
@arguments("cpu", "r", "i", "d", "d", returns="f")
def bhimpl_getlistitem_gc_f(cpu, lst, index, itemsdescr, arraydescr):
items = cpu.bh_getfield_gc_r(lst, itemsdescr)
return cpu.bh_getarrayitem_gc_f(items, index, arraydescr)
@arguments("cpu", "r", "i", "i", "d", "d")
def bhimpl_setlistitem_gc_i(cpu, lst, index, nval, itemsdescr, arraydescr):
items = cpu.bh_getfield_gc_r(lst, itemsdescr)
cpu.bh_setarrayitem_gc_i(items, index, nval, arraydescr)
@arguments("cpu", "r", "i", "r", "d", "d")
def bhimpl_setlistitem_gc_r(cpu, lst, index, nval, itemsdescr, arraydescr):
items = cpu.bh_getfield_gc_r(lst, itemsdescr)
cpu.bh_setarrayitem_gc_r(items, index, nval, arraydescr)
@arguments("cpu", "r", "i", "f", "d", "d")
def bhimpl_setlistitem_gc_f(cpu, lst, index, nval, itemsdescr, arraydescr):
items = cpu.bh_getfield_gc_r(lst, itemsdescr)
cpu.bh_setarrayitem_gc_f(items, index, nval, arraydescr)
# ----------
# the following operations are directly implemented by the backend
@arguments("cpu", "i", "R", "d", returns="i")
def bhimpl_residual_call_r_i(cpu, func, args_r, calldescr):
return cpu.bh_call_i(func, None, args_r, None, calldescr)
@arguments("cpu", "i", "R", "d", returns="r")
def bhimpl_residual_call_r_r(cpu, func, args_r, calldescr):
return cpu.bh_call_r(func, None, args_r, None, calldescr)
@arguments("cpu", "i", "R", "d")
def bhimpl_residual_call_r_v(cpu, func, args_r, calldescr):
return cpu.bh_call_v(func, None, args_r, None, calldescr)
@arguments("cpu", "i", "I", "R", "d", returns="i")
def bhimpl_residual_call_ir_i(cpu, func, args_i, args_r, calldescr):
return cpu.bh_call_i(func, args_i, args_r, None, calldescr)
@arguments("cpu", "i", "I", "R", "d", returns="r")
def bhimpl_residual_call_ir_r(cpu, func, args_i, args_r, calldescr):
return cpu.bh_call_r(func, args_i, args_r, None, calldescr)
@arguments("cpu", "i", "I", "R", "d")
def bhimpl_residual_call_ir_v(cpu, func, args_i, args_r, calldescr):
return cpu.bh_call_v(func, args_i, args_r, None, calldescr)
@arguments("cpu", "i", "I", "R", "F", "d", returns="i")
def bhimpl_residual_call_irf_i(cpu, func, args_i,args_r,args_f,calldescr):
return cpu.bh_call_i(func, args_i, args_r, args_f, calldescr)
@arguments("cpu", "i", "I", "R", "F", "d", returns="r")
def bhimpl_residual_call_irf_r(cpu, func, args_i,args_r,args_f,calldescr):
return cpu.bh_call_r(func, args_i, args_r, args_f, calldescr)
@arguments("cpu", "i", "I", "R", "F", "d", returns="f")
def bhimpl_residual_call_irf_f(cpu, func, args_i,args_r,args_f,calldescr):
return cpu.bh_call_f(func, args_i, args_r, args_f, calldescr)
@arguments("cpu", "i", "I", "R", "F", "d")
def bhimpl_residual_call_irf_v(cpu, func, args_i,args_r,args_f,calldescr):
return cpu.bh_call_v(func, args_i, args_r, args_f, calldescr)
# conditional calls - note that they cannot return stuff
@arguments("cpu", "i", "i", "I", "R", "d")
def bhimpl_conditional_call_ir_v(cpu, condition, func, args_i, args_r,
calldescr):
if condition:
cpu.bh_call_v(func, args_i, args_r, None, calldescr)
@arguments("cpu", "j", "R", returns="i")
def bhimpl_inline_call_r_i(cpu, jitcode, args_r):
return cpu.bh_call_i(jitcode.get_fnaddr_as_int(),
None, args_r, None, jitcode.calldescr)
@arguments("cpu", "j", "R", returns="r")
def bhimpl_inline_call_r_r(cpu, jitcode, args_r):
return cpu.bh_call_r(jitcode.get_fnaddr_as_int(),
None, args_r, None, jitcode.calldescr)
@arguments("cpu", "j", "R")
def bhimpl_inline_call_r_v(cpu, jitcode, args_r):
return cpu.bh_call_v(jitcode.get_fnaddr_as_int(),
None, args_r, None, jitcode.calldescr)
@arguments("cpu", "j", "I", "R", returns="i")
def bhimpl_inline_call_ir_i(cpu, jitcode, args_i, args_r):
return cpu.bh_call_i(jitcode.get_fnaddr_as_int(),
args_i, args_r, None, jitcode.calldescr)
@arguments("cpu", "j", "I", "R", returns="r")
def bhimpl_inline_call_ir_r(cpu, jitcode, args_i, args_r):
return cpu.bh_call_r(jitcode.get_fnaddr_as_int(),
args_i, args_r, None, jitcode.calldescr)
@arguments("cpu", "j", "I", "R")
def bhimpl_inline_call_ir_v(cpu, jitcode, args_i, args_r):
return cpu.bh_call_v(jitcode.get_fnaddr_as_int(),
args_i, args_r, None, jitcode.calldescr)
@arguments("cpu", "j", "I", "R", "F", returns="i")
def bhimpl_inline_call_irf_i(cpu, jitcode, args_i, args_r, args_f):
return cpu.bh_call_i(jitcode.get_fnaddr_as_int(),
args_i, args_r, args_f, jitcode.calldescr)
@arguments("cpu", "j", "I", "R", "F", returns="r")
def bhimpl_inline_call_irf_r(cpu, jitcode, args_i, args_r, args_f):
return cpu.bh_call_r(jitcode.get_fnaddr_as_int(),
args_i, args_r, args_f, jitcode.calldescr)
@arguments("cpu", "j", "I", "R", "F", returns="f")
def bhimpl_inline_call_irf_f(cpu, jitcode, args_i, args_r, args_f):
return cpu.bh_call_f(jitcode.get_fnaddr_as_int(),
args_i, args_r, args_f, jitcode.calldescr)
@arguments("cpu", "j", "I", "R", "F")
def bhimpl_inline_call_irf_v(cpu, jitcode, args_i, args_r, args_f):
return cpu.bh_call_v(jitcode.get_fnaddr_as_int(),
args_i, args_r, args_f, jitcode.calldescr)
@arguments("cpu", "i", "d", returns="r")
def bhimpl_new_array(cpu, length, arraydescr):
return cpu.bh_new_array(length, arraydescr)
@arguments("cpu", "i", "d", returns="r")
def bhimpl_new_array_clear(cpu, length, arraydescr):
return cpu.bh_new_array_clear(length, arraydescr)
@arguments("cpu", "r", "i", "d", returns="i")
def bhimpl_getarrayitem_gc_i(cpu, array, index, arraydescr):
return cpu.bh_getarrayitem_gc_i(array, index, arraydescr)
@arguments("cpu", "r", "i", "d", returns="r")
def bhimpl_getarrayitem_gc_r(cpu, array, index, arraydescr):
return cpu.bh_getarrayitem_gc_r(array, index, arraydescr)
@arguments("cpu", "r", "i", "d", returns="f")
def bhimpl_getarrayitem_gc_f(cpu, array, index, arraydescr):
return cpu.bh_getarrayitem_gc_f(array, index, arraydescr)
bhimpl_getarrayitem_gc_i_pure = bhimpl_getarrayitem_gc_i
bhimpl_getarrayitem_gc_r_pure = bhimpl_getarrayitem_gc_r
bhimpl_getarrayitem_gc_f_pure = bhimpl_getarrayitem_gc_f
@arguments("cpu", "i", "i", "d", returns="i")
def bhimpl_getarrayitem_raw_i(cpu, array, index, arraydescr):
return cpu.bh_getarrayitem_raw_i(array, index, arraydescr)
@arguments("cpu", "i", "i", "d", returns="f")
def bhimpl_getarrayitem_raw_f(cpu, array, index, arraydescr):
return cpu.bh_getarrayitem_raw_f(array, index, arraydescr)
@arguments("cpu", "r", "i", "i", "d")
def bhimpl_setarrayitem_gc_i(cpu, array, index, newvalue, arraydescr):
cpu.bh_setarrayitem_gc_i(array, index, newvalue, arraydescr)
@arguments("cpu", "r", "i", "r", "d")
def bhimpl_setarrayitem_gc_r(cpu, array, index, newvalue, arraydescr):
cpu.bh_setarrayitem_gc_r(array, index, newvalue, arraydescr)
@arguments("cpu", "r", "i", "f", "d")
def bhimpl_setarrayitem_gc_f(cpu, array, index, newvalue, arraydescr):
cpu.bh_setarrayitem_gc_f(array, index, newvalue, arraydescr)
@arguments("cpu", "i", "i", "i", "d")
def bhimpl_setarrayitem_raw_i(cpu, array, index, newvalue, arraydescr):
cpu.bh_setarrayitem_raw_i(array, index, newvalue, arraydescr)
@arguments("cpu", "i", "i", "f", "d")
def bhimpl_setarrayitem_raw_f(cpu, array, index, newvalue, arraydescr):
cpu.bh_setarrayitem_raw_f(array, index, newvalue, arraydescr)
# note, there is no 'r' here, since it can't happen
@arguments("cpu", "r", "d", returns="i")
def bhimpl_arraylen_gc(cpu, array, arraydescr):
return cpu.bh_arraylen_gc(array, arraydescr)
@arguments("cpu", "r", "i", "d", "d", returns="i")
def bhimpl_getarrayitem_vable_i(cpu, vable, index, fielddescr, arraydescr):
fielddescr.get_vinfo().clear_vable_token(vable)
array = cpu.bh_getfield_gc_r(vable, fielddescr)
return cpu.bh_getarrayitem_gc_i(array, index, arraydescr)
@arguments("cpu", "r", "i", "d", "d", returns="r")
def bhimpl_getarrayitem_vable_r(cpu, vable, index, fielddescr, arraydescr):
fielddescr.get_vinfo().clear_vable_token(vable)
array = cpu.bh_getfield_gc_r(vable, fielddescr)
return cpu.bh_getarrayitem_gc_r(array, index, arraydescr)
@arguments("cpu", "r", "i", "d", "d", returns="f")
def bhimpl_getarrayitem_vable_f(cpu, vable, index, fielddescr, arraydescr):
fielddescr.get_vinfo().clear_vable_token(vable)
array = cpu.bh_getfield_gc_r(vable, fielddescr)
return cpu.bh_getarrayitem_gc_f(array, index, arraydescr)
@arguments("cpu", "r", "i", "i", "d", "d")
def bhimpl_setarrayitem_vable_i(cpu, vable, index, newval, fdescr, adescr):
fdescr.get_vinfo().clear_vable_token(vable)
array = cpu.bh_getfield_gc_r(vable, fdescr)
cpu.bh_setarrayitem_gc_i(array, index, newval, adescr)
@arguments("cpu", "r", "i", "r", "d", "d")
def bhimpl_setarrayitem_vable_r(cpu, vable, index, newval, fdescr, adescr):
fdescr.get_vinfo().clear_vable_token(vable)
array = cpu.bh_getfield_gc_r(vable, fdescr)
cpu.bh_setarrayitem_gc_r(array, index, newval, adescr)
@arguments("cpu", "r", "i", "f", "d", "d")
def bhimpl_setarrayitem_vable_f(cpu, vable, index, newval, fdescr, adescr):
fdescr.get_vinfo().clear_vable_token(vable)
array = cpu.bh_getfield_gc_r(vable, fdescr)
cpu.bh_setarrayitem_gc_f(array, index, newval, adescr)
@arguments("cpu", "r", "d", "d", returns="i")
def bhimpl_arraylen_vable(cpu, vable, fdescr, adescr):
fdescr.get_vinfo().clear_vable_token(vable)
array = cpu.bh_getfield_gc_r(vable, fdescr)
return cpu.bh_arraylen_gc(array, adescr)
@arguments("cpu", "r", "i", "d", returns="i")
def bhimpl_getinteriorfield_gc_i(cpu, array, index, descr):
return cpu.bh_getinteriorfield_gc_i(array, index, descr)
@arguments("cpu", "r", "i", "d", returns="r")
def bhimpl_getinteriorfield_gc_r(cpu, array, index, descr):
return cpu.bh_getinteriorfield_gc_r(array, index, descr)
@arguments("cpu", "r", "i", "d", returns="f")
def bhimpl_getinteriorfield_gc_f(cpu, array, index, descr):
return cpu.bh_getinteriorfield_gc_f(array, index, descr)
@arguments("cpu", "r", "i", "i", "d")
def bhimpl_setinteriorfield_gc_i(cpu, array, index, value, descr):
cpu.bh_setinteriorfield_gc_i(array, index, value, descr)
@arguments("cpu", "r", "i", "r", "d")
def bhimpl_setinteriorfield_gc_r(cpu, array, index, value, descr):
cpu.bh_setinteriorfield_gc_r(array, index, value, descr)
@arguments("cpu", "r", "i", "f", "d")
def bhimpl_setinteriorfield_gc_f(cpu, array, index, value, descr):
cpu.bh_setinteriorfield_gc_f(array, index, value, descr)
@arguments("cpu", "r", "d", returns="i")
def bhimpl_getfield_gc_i(cpu, struct, fielddescr):
return cpu.bh_getfield_gc_i(struct, fielddescr)
@arguments("cpu", "r", "d", returns="r")
def bhimpl_getfield_gc_r(cpu, struct, fielddescr):
return cpu.bh_getfield_gc_r(struct, fielddescr)
@arguments("cpu", "r", "d", returns="f")
def bhimpl_getfield_gc_f(cpu, struct, fielddescr):
return cpu.bh_getfield_gc_f(struct, fielddescr)
bhimpl_getfield_gc_i_pure = bhimpl_getfield_gc_i
bhimpl_getfield_gc_r_pure = bhimpl_getfield_gc_r
bhimpl_getfield_gc_f_pure = bhimpl_getfield_gc_f
@arguments("cpu", "r", "d", returns="i")
def bhimpl_getfield_vable_i(cpu, struct, fielddescr):
fielddescr.get_vinfo().clear_vable_token(struct)
return cpu.bh_getfield_gc_i(struct, fielddescr)
@arguments("cpu", "r", "d", returns="r")
def bhimpl_getfield_vable_r(cpu, struct, fielddescr):
fielddescr.get_vinfo().clear_vable_token(struct)
return cpu.bh_getfield_gc_r(struct, fielddescr)
@arguments("cpu", "r", "d", returns="f")
def bhimpl_getfield_vable_f(cpu, struct, fielddescr):
fielddescr.get_vinfo().clear_vable_token(struct)
return cpu.bh_getfield_gc_f(struct, fielddescr)
bhimpl_getfield_gc_i_greenfield = bhimpl_getfield_gc_i
bhimpl_getfield_gc_r_greenfield = bhimpl_getfield_gc_r
bhimpl_getfield_gc_f_greenfield = bhimpl_getfield_gc_f
@arguments("cpu", "i", "d", returns="i")
def bhimpl_getfield_raw_i(cpu, struct, fielddescr):
return cpu.bh_getfield_raw_i(struct, fielddescr)
@arguments("cpu", "i", "d", returns="r")
def bhimpl_getfield_raw_r(cpu, struct, fielddescr): # for pure only
return cpu.bh_getfield_raw_r(struct, fielddescr)
@arguments("cpu", "i", "d", returns="f")
def bhimpl_getfield_raw_f(cpu, struct, fielddescr):
return cpu.bh_getfield_raw_f(struct, fielddescr)
@arguments("cpu", "r", "i", "d")
def bhimpl_setfield_gc_i(cpu, struct, newvalue, fielddescr):
cpu.bh_setfield_gc_i(struct, newvalue, fielddescr)
@arguments("cpu", "r", "r", "d")
def bhimpl_setfield_gc_r(cpu, struct, newvalue, fielddescr):
cpu.bh_setfield_gc_r(struct, newvalue, fielddescr)
@arguments("cpu", "r", "f", "d")
def bhimpl_setfield_gc_f(cpu, struct, newvalue, fielddescr):
cpu.bh_setfield_gc_f(struct, newvalue, fielddescr)
@arguments("cpu", "r", "i", "d")
def bhimpl_setfield_vable_i(cpu, struct, newvalue, fielddescr):
fielddescr.get_vinfo().clear_vable_token(struct)
cpu.bh_setfield_gc_i(struct, newvalue, fielddescr)
@arguments("cpu", "r", "r", "d")
def bhimpl_setfield_vable_r(cpu, struct, newvalue, fielddescr):
fielddescr.get_vinfo().clear_vable_token(struct)
cpu.bh_setfield_gc_r(struct, newvalue, fielddescr)
@arguments("cpu", "r", "f", "d")
def bhimpl_setfield_vable_f(cpu, struct, newvalue, fielddescr):
fielddescr.get_vinfo().clear_vable_token(struct)
cpu.bh_setfield_gc_f(struct, newvalue, fielddescr)
@arguments("cpu", "i", "i", "d")
def bhimpl_setfield_raw_i(cpu, struct, newvalue, fielddescr):
cpu.bh_setfield_raw_i(struct, newvalue, fielddescr)
@arguments("cpu", "i", "f", "d")
def bhimpl_setfield_raw_f(cpu, struct, newvalue, fielddescr):
cpu.bh_setfield_raw_f(struct, newvalue, fielddescr)
@arguments("cpu", "i", "i", "i", "d")
def bhimpl_raw_store_i(cpu, addr, offset, newvalue, arraydescr):
cpu.bh_raw_store_i(addr, offset, newvalue, arraydescr)
@arguments("cpu", "i", "i", "f", "d")
def bhimpl_raw_store_f(cpu, addr, offset, newvalue, arraydescr):
cpu.bh_raw_store_f(addr, offset, newvalue, arraydescr)
@arguments("cpu", "i", "i", "d", returns="i")
def bhimpl_raw_load_i(cpu, addr, offset, arraydescr):
return cpu.bh_raw_load_i(addr, offset, arraydescr)
@arguments("cpu", "i", "i", "d", returns="f")
def bhimpl_raw_load_f(cpu, addr, offset, arraydescr):
return cpu.bh_raw_load_f(addr, offset, arraydescr)
@arguments("cpu", "r", "i", "i", "i", "i", returns="i")
def bhimpl_gc_load_indexed_i(cpu, addr, index, scale, base_ofs, bytes):
return cpu.bh_gc_load_indexed_i(addr, index,scale,base_ofs, bytes)
@arguments("cpu", "r", "i", "i", "i", "i", returns="f")
def bhimpl_gc_load_indexed_f(cpu, addr, index, scale, base_ofs, bytes):
return cpu.bh_gc_load_indexed_f(addr, index,scale,base_ofs, bytes)
@arguments("r", "d", "d")
def bhimpl_record_quasiimmut_field(struct, fielddescr, mutatefielddescr):
pass
@arguments("cpu", "r", "d")
def bhimpl_jit_force_quasi_immutable(cpu, struct, mutatefielddescr):
from rpython.jit.metainterp import quasiimmut
quasiimmut.do_force_quasi_immutable(cpu, struct, mutatefielddescr)
@arguments("r")
def bhimpl_hint_force_virtualizable(r):
pass
@arguments("cpu", "d", returns="r")
def bhimpl_new(cpu, descr):
return cpu.bh_new(descr)
@arguments("cpu", "d", returns="r")
def bhimpl_new_with_vtable(cpu, descr):
return cpu.bh_new_with_vtable(descr)
@arguments("cpu", "r", returns="i")
def bhimpl_guard_class(cpu, struct):
return cpu.bh_classof(struct)
@arguments("cpu", "i", returns="r")
def bhimpl_newstr(cpu, length):
return cpu.bh_newstr(length)
@arguments("cpu", "r", returns="i")
def bhimpl_strlen(cpu, string):
return cpu.bh_strlen(string)
@arguments("cpu", "r", "i", returns="i")
def bhimpl_strgetitem(cpu, string, index):
return cpu.bh_strgetitem(string, index)
@arguments("cpu", "r", "i", "i")
def bhimpl_strsetitem(cpu, string, index, newchr):
cpu.bh_strsetitem(string, index, newchr)
@arguments("cpu", "r", "r", "i", "i", "i")
def bhimpl_copystrcontent(cpu, src, dst, srcstart, dststart, length):
cpu.bh_copystrcontent(src, dst, srcstart, dststart, length)
@arguments("cpu", "i", returns="r")
def bhimpl_newunicode(cpu, length):
return cpu.bh_newunicode(length)
@arguments("cpu", "r", returns="i")
def bhimpl_unicodelen(cpu, unicode):
return cpu.bh_unicodelen(unicode)
@arguments("cpu", "r", "i", returns="i")
def bhimpl_unicodegetitem(cpu, unicode, index):
return cpu.bh_unicodegetitem(unicode, index)
@arguments("cpu", "r", "i", "i")
def bhimpl_unicodesetitem(cpu, unicode, index, newchr):
cpu.bh_unicodesetitem(unicode, index, newchr)
@arguments("cpu", "r", "r", "i", "i", "i")
def bhimpl_copyunicodecontent(cpu, src, dst, srcstart, dststart, length):
cpu.bh_copyunicodecontent(src, dst, srcstart, dststart, length)
@arguments("i", "i")
def bhimpl_rvmprof_code(leaving, unique_id):
from rpython.rlib.rvmprof import cintf
cintf.jit_rvmprof_code(leaving, unique_id)
# ----------
# helpers to resume running in blackhole mode when a guard failed
def _resume_mainloop(self, current_exc):
assert lltype.typeOf(current_exc) == rclass.OBJECTPTR
try:
# if there is a current exception, raise it now
# (it may be caught by a catch_operation in this frame)
if current_exc:
self.handle_exception_in_frame(current_exc)
# unless the call above raised again the exception,
# we now proceed to interpret the bytecode in this frame
self.run()
#
except jitexc.JitException as e:
raise # go through
except Exception as e:
# if we get an exception, return it to the caller frame
current_exc = get_llexception(self.cpu, e)
if not self.nextblackholeinterp:
self._exit_frame_with_exception(current_exc)
return current_exc
#
# pass the frame's return value to the caller
caller = self.nextblackholeinterp
if not caller:
self._done_with_this_frame()
kind = self._return_type
if kind == 'i':
caller._setup_return_value_i(self.get_tmpreg_i())
elif kind == 'r':
caller._setup_return_value_r(self.get_tmpreg_r())
elif kind == 'f':
caller._setup_return_value_f(self.get_tmpreg_f())
else:
assert kind == 'v'
return lltype.nullptr(rclass.OBJECTPTR.TO)
def _prepare_resume_from_failure(self, deadframe):
return lltype.cast_opaque_ptr(rclass.OBJECTPTR,
self.cpu.grab_exc_value(deadframe))
# connect the return of values from the called frame to the
# 'xxx_call_yyy' instructions from the caller frame
def _setup_return_value_i(self, result):
assert lltype.typeOf(result) is lltype.Signed
self.registers_i[ord(self.jitcode.code[self.position-1])] = result
def _setup_return_value_r(self, result):
assert lltype.typeOf(result) == llmemory.GCREF
self.registers_r[ord(self.jitcode.code[self.position-1])] = result
def _setup_return_value_f(self, result):
assert lltype.typeOf(result) is longlong.FLOATSTORAGE
self.registers_f[ord(self.jitcode.code[self.position-1])] = result
def _done_with_this_frame(self):
# rare case: we only get there if the blackhole interps all returned
# normally (in general we get a ContinueRunningNormally exception).
kind = self._return_type
if kind == 'v':
raise jitexc.DoneWithThisFrameVoid()
elif kind == 'i':
raise jitexc.DoneWithThisFrameInt(self.get_tmpreg_i())
elif kind == 'r':
raise jitexc.DoneWithThisFrameRef(self.cpu, self.get_tmpreg_r())
elif kind == 'f':
raise jitexc.DoneWithThisFrameFloat(self.get_tmpreg_f())
else:
assert False
def _exit_frame_with_exception(self, e):
sd = self.builder.metainterp_sd
e = lltype.cast_opaque_ptr(llmemory.GCREF, e)
raise jitexc.ExitFrameWithExceptionRef(self.cpu, e)
def _handle_jitexception_in_portal(self, e):
# This case is really rare, but can occur if
# convert_and_run_from_pyjitpl() gets called in this situation:
#
# [function 1] <---- top BlackholeInterpreter()
# [recursive portal jit code]
# ...
# [bottom portal jit code] <---- bottom BlackholeInterpreter()
#
# and then "function 1" contains a call to "function 2", which
# calls "can_enter_jit". The latter can terminate by raising a
# JitException. In that case, the JitException is not supposed
# to fall through the whole chain of BlackholeInterpreters, but
# be caught and handled just below the level "recursive portal
# jit code". The present function is called to handle the case
# of recursive portal jit codes.
for jd in self.builder.metainterp_sd.jitdrivers_sd:
if jd.mainjitcode is self.jitcode:
break
else:
assert 0, "portal jitcode not found??"
# call the helper in warmspot.py. It might either raise a
# regular exception (which should then be propagated outside
# of 'self', not caught inside), or return (the return value
# gets stored in nextblackholeinterp).
jd.handle_jitexc_from_bh(self.nextblackholeinterp, e)
def _copy_data_from_miframe(self, miframe):
self.setposition(miframe.jitcode, miframe.pc)
for i in range(self.jitcode.num_regs_i()):
box = miframe.registers_i[i]
if not we_are_translated() and isinstance(box, MissingValue):
continue
if box is not None:
self.setarg_i(i, box.getint())
for i in range(self.jitcode.num_regs_r()):
box = miframe.registers_r[i]
if not we_are_translated() and isinstance(box, MissingValue):
continue
if box is not None:
self.setarg_r(i, box.getref_base())
for i in range(self.jitcode.num_regs_f()):
box = miframe.registers_f[i]
if not we_are_translated() and isinstance(box, MissingValue):
continue
if box is not None:
self.setarg_f(i, box.getfloatstorage())
# ____________________________________________________________
def _run_forever(blackholeinterp, current_exc):
while True:
try:
current_exc = blackholeinterp._resume_mainloop(current_exc)
except jitexc.JitException as e:
blackholeinterp, current_exc = _handle_jitexception(
blackholeinterp, e)
blackholeinterp.builder.release_interp(blackholeinterp)
blackholeinterp = blackholeinterp.nextblackholeinterp
def _handle_jitexception(blackholeinterp, exc):
# See comments in _handle_jitexception_in_portal().
while blackholeinterp.jitcode.jitdriver_sd is None:
blackholeinterp.builder.release_interp(blackholeinterp)
blackholeinterp = blackholeinterp.nextblackholeinterp
if blackholeinterp.nextblackholeinterp is None:
blackholeinterp.builder.release_interp(blackholeinterp)
raise exc # bottommost entry: go through
# We have reached a recursive portal level.
try:
blackholeinterp._handle_jitexception_in_portal(exc)
except Exception as e:
# It raised a general exception (it should not be a JitException here).
lle = get_llexception(blackholeinterp.cpu, e)
else:
# It set up the nextblackholeinterp to contain the return value.
lle = lltype.nullptr(rclass.OBJECTPTR.TO)
# We will continue to loop in _run_forever() from the parent level.
return blackholeinterp, lle
def resume_in_blackhole(metainterp_sd, jitdriver_sd, resumedescr, deadframe,
all_virtuals=None):
from rpython.jit.metainterp.resume import blackhole_from_resumedata
#debug_start('jit-blackhole')
blackholeinterp = blackhole_from_resumedata(
metainterp_sd.blackholeinterpbuilder,
metainterp_sd.jitcodes,
jitdriver_sd,
resumedescr,
deadframe,
all_virtuals)
current_exc = blackholeinterp._prepare_resume_from_failure(deadframe)
_run_forever(blackholeinterp, current_exc)
resume_in_blackhole._dont_inline_ = True
def convert_and_run_from_pyjitpl(metainterp, raising_exception=False):
# Get a chain of blackhole interpreters and fill them by copying
# 'metainterp.framestack'.
#debug_start('jit-blackhole')
metainterp_sd = metainterp.staticdata
nextbh = None
for frame in metainterp.framestack:
curbh = metainterp_sd.blackholeinterpbuilder.acquire_interp()
curbh._copy_data_from_miframe(frame)
curbh.nextblackholeinterp = nextbh
nextbh = curbh
firstbh = nextbh
#
if metainterp.last_exc_value:
current_exc = metainterp.last_exc_value
else:
current_exc = lltype.nullptr(rclass.OBJECTPTR.TO)
if not raising_exception:
firstbh.exception_last_value = current_exc
current_exc = lltype.nullptr(rclass.OBJECTPTR.TO)
#
_run_forever(firstbh, current_exc)
convert_and_run_from_pyjitpl._dont_inline_ = True
|