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
|
import py
from rpython.annotator import model as annmodel
from rpython.rtyper.llannotation import SomePtr
from rpython.rtyper.lltypesystem import lltype
from rpython.rtyper.lltypesystem import ll2ctypes
from rpython.rtyper.lltypesystem.llmemory import cast_ptr_to_adr
from rpython.rtyper.lltypesystem.llmemory import itemoffsetof
from rpython.rtyper.llannotation import lltype_to_annotation
from rpython.tool.sourcetools import func_with_new_name
from rpython.rlib.objectmodel import Symbolic, specialize
from rpython.rlib.objectmodel import keepalive_until_here, enforceargs
from rpython.rlib import rarithmetic, rgc
from rpython.rtyper.extregistry import ExtRegistryEntry
from rpython.rlib.unroll import unrolling_iterable
from rpython.rtyper.tool.rfficache import platform, sizeof_c_type
from rpython.translator.tool.cbuild import ExternalCompilationInfo
from rpython.rtyper.annlowlevel import llhelper
from rpython.rlib.objectmodel import we_are_translated, we_are_translated_to_c
from rpython.rlib.rstring import StringBuilder, UnicodeBuilder, assert_str0
from rpython.rlib import jit
from rpython.rtyper.lltypesystem import llmemory
from rpython.rlib.rarithmetic import maxint, LONG_BIT
from rpython.translator.platform import CompilationError
import os, sys
class CConstant(Symbolic):
""" A C-level constant, maybe #define, rendered directly.
"""
def __init__(self, c_name, TP):
self.c_name = c_name
self.TP = TP
def __repr__(self):
return '%s(%r, %s)' % (self.__class__.__name__,
self.c_name, self.TP)
def annotation(self):
return lltype_to_annotation(self.TP)
def lltype(self):
return self.TP
def _isfunctype(TP):
""" Evil hack to get rid of flow objspace inability
to accept .TO when TP is not a pointer
"""
return isinstance(TP, lltype.Ptr) and isinstance(TP.TO, lltype.FuncType)
_isfunctype._annspecialcase_ = 'specialize:memo'
def _isllptr(p):
""" Second evil hack to detect if 'p' is a low-level pointer or not """
return isinstance(p, lltype._ptr)
class _IsLLPtrEntry(ExtRegistryEntry):
_about_ = _isllptr
def compute_result_annotation(self, s_p):
result = isinstance(s_p, SomePtr)
return self.bookkeeper.immutablevalue(result)
def specialize_call(self, hop):
hop.exception_cannot_occur()
return hop.inputconst(lltype.Bool, hop.s_result.const)
RFFI_SAVE_ERRNO = 1 # save the real errno after the call
RFFI_READSAVED_ERRNO = 2 # copy saved errno into real errno before call
RFFI_ZERO_ERRNO_BEFORE = 4 # copy the value 0 into real errno before call
RFFI_FULL_ERRNO = RFFI_SAVE_ERRNO | RFFI_READSAVED_ERRNO
RFFI_FULL_ERRNO_ZERO = RFFI_SAVE_ERRNO | RFFI_ZERO_ERRNO_BEFORE
RFFI_SAVE_LASTERROR = 8 # win32: save GetLastError() after the call
RFFI_READSAVED_LASTERROR = 16 # win32: call SetLastError() before the call
RFFI_SAVE_WSALASTERROR = 32 # win32: save WSAGetLastError() after the call
RFFI_FULL_LASTERROR = RFFI_SAVE_LASTERROR | RFFI_READSAVED_LASTERROR
RFFI_ERR_NONE = 0
RFFI_ERR_ALL = RFFI_FULL_ERRNO | RFFI_FULL_LASTERROR
RFFI_ALT_ERRNO = 64 # read, save using alt tl destination
def llexternal(name, args, result, _callable=None,
compilation_info=ExternalCompilationInfo(),
sandboxsafe=False, releasegil='auto',
_nowrapper=False, calling_conv=None,
elidable_function=False, macro=None,
random_effects_on_gcobjs='auto',
save_err=RFFI_ERR_NONE):
"""Build an external function that will invoke the C function 'name'
with the given 'args' types and 'result' type.
You get by default a wrapper that casts between number types as needed
to match the arguments. You can also pass an RPython string when a
CCHARP argument is expected, and the C function receives a 'const char*'
pointing to a read-only null-terminated character of arrays, as usual
for C.
The C function can have callbacks, but they must be specified explicitly
as constant RPython functions. We don't support yet C functions that
invoke callbacks passed otherwise (e.g. set by a previous C call).
releasegil: whether it's ok to release the GIL around the call.
Default is yes, unless sandboxsafe is set, in which case
we consider that the function is really short-running and
don't bother releasing the GIL. An explicit True or False
overrides this logic.
calling_conv: if 'unknown' or 'win', the C function is not directly seen
by the JIT. If 'c', it can be seen (depending on
releasegil=False). For tests only, or if _nowrapper,
it defaults to 'c'.
"""
if calling_conv is None:
if sys.platform == 'win32' and not _nowrapper:
calling_conv = 'unknown'
else:
calling_conv = 'c'
if _callable is not None:
assert callable(_callable)
ext_type = lltype.FuncType(args, result)
if _callable is None:
if macro is not None:
if macro is True:
macro = name
_callable = generate_macro_wrapper(
name, macro, ext_type, compilation_info)
else:
_callable = ll2ctypes.LL2CtypesCallable(ext_type,
'c' if calling_conv == 'unknown' else calling_conv)
else:
assert macro is None, "'macro' is useless if you specify '_callable'"
if elidable_function:
_callable._elidable_function_ = True
kwds = {}
has_callback = False
for ARG in args:
if _isfunctype(ARG):
has_callback = True
if has_callback:
kwds['_callbacks'] = callbackholder = CallbackHolder()
else:
callbackholder = None
if releasegil in (False, True):
# invoke the around-handlers, which release the GIL, if and only if
# the C function is thread-safe.
invoke_around_handlers = releasegil
else:
# default case:
# invoke the around-handlers only for "not too small" external calls;
# sandboxsafe is a hint for "too-small-ness" (e.g. math functions).
# Also, _nowrapper functions cannot release the GIL, by default.
invoke_around_handlers = not sandboxsafe and not _nowrapper
if _nowrapper and isinstance(_callable, ll2ctypes.LL2CtypesCallable):
kwds['_real_integer_addr'] = _callable.get_real_address
if random_effects_on_gcobjs not in (False, True):
random_effects_on_gcobjs = (
invoke_around_handlers or # because it can release the GIL
has_callback) # because the callback can do it
assert not (elidable_function and random_effects_on_gcobjs)
funcptr = lltype.functionptr(ext_type, name, external='C',
compilation_info=compilation_info,
_callable=_callable,
_safe_not_sandboxed=sandboxsafe,
_debugexc=True, # on top of llinterp
canraise=False,
random_effects_on_gcobjs=
random_effects_on_gcobjs,
calling_conv=calling_conv,
**kwds)
if isinstance(_callable, ll2ctypes.LL2CtypesCallable):
_callable.funcptr = funcptr
if _nowrapper:
assert save_err == RFFI_ERR_NONE
return funcptr
if invoke_around_handlers:
# The around-handlers are releasing the GIL in a threaded pypy.
# We need tons of care to ensure that no GC operation and no
# exception checking occurs while the GIL is released.
# The actual call is done by this small piece of non-inlinable
# generated code in order to avoid seeing any GC pointer:
# neither '*args' nor the GC objects originally passed in as
# argument to wrapper(), if any (e.g. RPython strings).
argnames = ', '.join(['a%d' % i for i in range(len(args))])
source = py.code.Source("""
from rpython.rlib import rgil
def call_external_function(%(argnames)s):
rgil.release()
# NB. it is essential that no exception checking occurs here!
if %(save_err)d:
from rpython.rlib import rposix
rposix._errno_before(%(save_err)d)
res = funcptr(%(argnames)s)
if %(save_err)d:
from rpython.rlib import rposix
rposix._errno_after(%(save_err)d)
rgil.acquire()
return res
""" % locals())
miniglobals = {'funcptr': funcptr,
'__name__': __name__, # for module name propagation
}
exec source.compile() in miniglobals
call_external_function = miniglobals['call_external_function']
call_external_function._dont_inline_ = True
call_external_function._annspecialcase_ = 'specialize:ll'
call_external_function._gctransformer_hint_close_stack_ = True
#
# '_call_aroundstate_target_' is used by the JIT to generate a
# CALL_RELEASE_GIL directly to 'funcptr'. This doesn't work if
# 'funcptr' might be a C macro, though.
if macro is None:
call_external_function._call_aroundstate_target_ = funcptr, save_err
#
call_external_function = func_with_new_name(call_external_function,
'ccall_' + name)
# don't inline, as a hack to guarantee that no GC pointer is alive
# anywhere in call_external_function
else:
# if we don't have to invoke the GIL handling, we can just call
# the low-level function pointer carelessly
# ...well, unless it's a macro, in which case we still have
# to hide it from the JIT...
need_wrapper = (macro is not None or save_err != RFFI_ERR_NONE)
# ...and unless we're on Windows and the calling convention is
# 'win' or 'unknown'
if calling_conv != 'c':
need_wrapper = True
#
if not need_wrapper:
call_external_function = funcptr
else:
argnames = ', '.join(['a%d' % i for i in range(len(args))])
source = py.code.Source("""
def call_external_function(%(argnames)s):
if %(save_err)d:
from rpython.rlib import rposix
rposix._errno_before(%(save_err)d)
res = funcptr(%(argnames)s)
if %(save_err)d:
from rpython.rlib import rposix
rposix._errno_after(%(save_err)d)
return res
""" % locals())
miniglobals = {'funcptr': funcptr,
'__name__': __name__,
}
exec source.compile() in miniglobals
call_external_function = miniglobals['call_external_function']
call_external_function = func_with_new_name(call_external_function,
'ccall_' + name)
call_external_function = jit.dont_look_inside(
call_external_function)
def _oops():
raise AssertionError("can't pass (any more) a unicode string"
" directly to a VOIDP argument")
_oops._annspecialcase_ = 'specialize:memo'
nb_args = len(args)
unrolling_arg_tps = unrolling_iterable(enumerate(args))
def wrapper(*args):
assert len(args) == nb_args
real_args = ()
# XXX 'to_free' leaks if an allocation fails with MemoryError
# and was not the first in this function
to_free = ()
for i, TARGET in unrolling_arg_tps:
arg = args[i]
if TARGET == CCHARP or TARGET is VOIDP:
if arg is None:
arg = lltype.nullptr(CCHARP.TO) # None => (char*)NULL
to_free = to_free + (arg, '\x04')
elif isinstance(arg, str):
tup = get_nonmovingbuffer_final_null(arg)
to_free = to_free + tup
arg = tup[0]
elif isinstance(arg, unicode):
_oops()
elif TARGET == CWCHARP:
if arg is None:
arg = lltype.nullptr(CWCHARP.TO) # None => (wchar_t*)NULL
to_free = to_free + (arg,)
elif isinstance(arg, unicode):
arg = unicode2wcharp(arg)
to_free = to_free + (arg,)
elif _isfunctype(TARGET) and not _isllptr(arg):
# XXX pass additional arguments
use_gil = invoke_around_handlers
arg = llhelper(TARGET, _make_wrapper_for(TARGET, arg,
callbackholder,
use_gil))
else:
SOURCE = lltype.typeOf(arg)
if SOURCE != TARGET:
if TARGET is lltype.Float:
arg = float(arg)
elif ((isinstance(SOURCE, lltype.Number)
or SOURCE is lltype.Bool)
and (isinstance(TARGET, lltype.Number)
or TARGET is lltype.Bool)):
arg = cast(TARGET, arg)
real_args = real_args + (arg,)
res = call_external_function(*real_args)
for i, TARGET in unrolling_arg_tps:
arg = args[i]
if TARGET == CCHARP or TARGET is VOIDP:
if arg is None:
to_free = to_free[2:]
elif isinstance(arg, str):
free_nonmovingbuffer(arg, to_free[0], to_free[1])
to_free = to_free[2:]
elif TARGET == CWCHARP:
if arg is None:
to_free = to_free[1:]
elif isinstance(arg, unicode):
free_wcharp(to_free[0])
to_free = to_free[1:]
assert len(to_free) == 0
if rarithmetic.r_int is not r_int:
if result is INT:
return cast(lltype.Signed, res)
elif result is UINT:
return cast(lltype.Unsigned, res)
return res
wrapper._annspecialcase_ = 'specialize:ll'
wrapper._always_inline_ = 'try'
# for debugging, stick ll func ptr to that
wrapper._ptr = funcptr
wrapper = func_with_new_name(wrapper, name)
return wrapper
class CallbackHolder:
def __init__(self):
self.callbacks = {}
def _make_wrapper_for(TP, callable, callbackholder, use_gil):
""" Function creating wrappers for callbacks. Note that this is
cheating as we assume constant callbacks and we just memoize wrappers
"""
from rpython.rtyper.lltypesystem import lltype
from rpython.rtyper.lltypesystem.lloperation import llop
if hasattr(callable, '_errorcode_'):
errorcode = callable._errorcode_
else:
errorcode = TP.TO.RESULT._defl()
callable_name = getattr(callable, '__name__', '?')
if callbackholder is not None:
callbackholder.callbacks[callable] = True
args = ', '.join(['a%d' % i for i in range(len(TP.TO.ARGS))])
source = py.code.Source(r"""
rgil = None
if use_gil:
from rpython.rlib import rgil
def wrapper(%(args)s): # no *args - no GIL for mallocing the tuple
if rgil is not None:
rgil.acquire()
# from now on we hold the GIL
stackcounter.stacks_counter += 1
llop.gc_stack_bottom(lltype.Void) # marker for trackgcroot.py
try:
result = callable(%(args)s)
except Exception, e:
os.write(2,
"Warning: uncaught exception in callback: %%s %%s\n" %%
(callable_name, str(e)))
if not we_are_translated():
import traceback
traceback.print_exc()
result = errorcode
stackcounter.stacks_counter -= 1
if rgil is not None:
rgil.release()
# here we don't hold the GIL any more. As in the wrapper() produced
# by llexternal, it is essential that no exception checking occurs
# after the call to rgil.release().
return result
""" % locals())
miniglobals = locals().copy()
miniglobals['Exception'] = Exception
miniglobals['os'] = os
miniglobals['we_are_translated'] = we_are_translated
miniglobals['stackcounter'] = stackcounter
exec source.compile() in miniglobals
return miniglobals['wrapper']
_make_wrapper_for._annspecialcase_ = 'specialize:memo'
AroundFnPtr = lltype.Ptr(lltype.FuncType([], lltype.Void))
class StackCounter:
def _cleanup_(self):
self.stacks_counter = 0 # number of "stack pieces": callbacks
# and threads increase it by one
stackcounter = StackCounter()
stackcounter._cleanup_()
def llexternal_use_eci(compilation_info):
"""Return a dummy function that, if called in a RPython program,
adds the given ExternalCompilationInfo to it."""
eci = ExternalCompilationInfo(post_include_bits=['#define PYPY_NO_OP()'])
eci = eci.merge(compilation_info)
return llexternal('PYPY_NO_OP', [], lltype.Void,
compilation_info=eci, sandboxsafe=True, _nowrapper=True,
_callable=lambda: None)
def generate_macro_wrapper(name, macro, functype, eci):
"""Wraps a function-like macro inside a real function, and expose
it with llexternal."""
# Generate the function call
from rpython.translator.c.database import LowLevelDatabase
from rpython.translator.c.support import cdecl
wrapper_name = 'pypy_macro_wrapper_%s' % (name,)
argnames = ['arg%d' % (i,) for i in range(len(functype.ARGS))]
db = LowLevelDatabase()
implementationtypename = db.gettype(functype, argnames=argnames)
if functype.RESULT is lltype.Void:
pattern = '%s%s { %s(%s); }'
else:
pattern = '%s%s { return %s(%s); }'
source = pattern % (
'RPY_EXTERN ',
cdecl(implementationtypename, wrapper_name),
macro, ', '.join(argnames))
# Now stuff this source into a "companion" eci that will be used
# by ll2ctypes. We replace eci._with_ctypes, so that only one
# shared library is actually compiled (when ll2ctypes calls the
# first function)
ctypes_eci = eci.merge(ExternalCompilationInfo(
separate_module_sources=[source],
))
if hasattr(eci, '_with_ctypes'):
ctypes_eci = eci._with_ctypes.merge(ctypes_eci)
eci._with_ctypes = ctypes_eci
func = llexternal(wrapper_name, functype.ARGS, functype.RESULT,
compilation_info=eci, _nowrapper=True)
# _nowrapper=True returns a pointer which is not hashable
return lambda *args: func(*args)
# ____________________________________________________________
# Few helpers for keeping callback arguments alive
# this makes passing opaque objects possible (they don't even pass
# through C, only integer specifying number passes)
_KEEPER_CACHE = {}
def _keeper_for_type(TP):
try:
return _KEEPER_CACHE[TP]
except KeyError:
tp_str = str(TP) # make annotator happy
class KeepaliveKeeper(object):
def __init__(self):
self.stuff_to_keepalive = []
self.free_positions = []
keeper = KeepaliveKeeper()
_KEEPER_CACHE[TP] = keeper
return keeper
_keeper_for_type._annspecialcase_ = 'specialize:memo'
def register_keepalive(obj):
""" Register object obj to be kept alive,
returns a position for that object
"""
keeper = _keeper_for_type(lltype.typeOf(obj))
if len(keeper.free_positions):
pos = keeper.free_positions.pop()
keeper.stuff_to_keepalive[pos] = obj
return pos
# we don't have any free positions
pos = len(keeper.stuff_to_keepalive)
keeper.stuff_to_keepalive.append(obj)
return pos
register_keepalive._annspecialcase_ = 'specialize:argtype(0)'
def get_keepalive_object(pos, TP):
keeper = _keeper_for_type(TP)
return keeper.stuff_to_keepalive[pos]
get_keepalive_object._annspecialcase_ = 'specialize:arg(1)'
def unregister_keepalive(pos, TP):
""" Unregister an object of type TP, stored at position
pos (position previously returned by register_keepalive)
"""
keeper = _keeper_for_type(TP)
keeper.stuff_to_keepalive[pos] = None
keeper.free_positions.append(pos)
unregister_keepalive._annspecialcase_ = 'specialize:arg(1)'
# ____________________________________________________________
TYPES = []
for _name in 'short int long'.split():
for name in (_name, 'unsigned ' + _name):
TYPES.append(name)
TYPES += ['signed char', 'unsigned char',
'long long', 'unsigned long long',
'size_t', 'time_t', 'wchar_t',
'uintptr_t', 'intptr_t', # C note: these two are _integer_ types
'void*'] # generic pointer type
# This is a bit of a hack since we can't use rffi_platform here.
try:
sizeof_c_type('__int128_t', ignore_errors=True)
TYPES += ['__int128_t']
except CompilationError:
pass
if os.name != 'nt':
TYPES.append('mode_t')
TYPES.append('pid_t')
TYPES.append('ssize_t')
# the types below are rare enough and not available on Windows
TYPES.extend(['ptrdiff_t',
'int_least8_t', 'uint_least8_t',
'int_least16_t', 'uint_least16_t',
'int_least32_t', 'uint_least32_t',
'int_least64_t', 'uint_least64_t',
'int_fast8_t', 'uint_fast8_t',
'int_fast16_t', 'uint_fast16_t',
'int_fast32_t', 'uint_fast32_t',
'int_fast64_t', 'uint_fast64_t',
'intmax_t', 'uintmax_t'])
else:
MODE_T = lltype.Signed
PID_T = lltype.Signed
SSIZE_T = lltype.Signed
def populate_inttypes():
names = []
populatelist = []
for name in TYPES:
c_name = name
if name.startswith('unsigned'):
name = 'u' + name[9:]
signed = False
elif name == 'size_t' or name.startswith('uint'):
signed = False
else:
signed = True
name = name.replace(' ', '')
names.append(name)
populatelist.append((name.upper(), c_name, signed))
platform.populate_inttypes(populatelist)
return names
def setup():
""" creates necessary c-level types
"""
names = populate_inttypes()
result = []
for name in names:
tp = platform.types[name.upper()]
globals()['r_' + name] = platform.numbertype_to_rclass[tp]
globals()[name.upper()] = tp
tpp = lltype.Ptr(lltype.Array(tp, hints={'nolength': True}))
globals()[name.upper()+'P'] = tpp
result.append(tp)
return result
NUMBER_TYPES = setup()
platform.numbertype_to_rclass[lltype.Signed] = int # avoid "r_long" for common cases
r_int_real = rarithmetic.build_int("r_int_real", r_int.SIGN, r_int.BITS, True)
INT_real = lltype.build_number("INT", r_int_real)
platform.numbertype_to_rclass[INT_real] = r_int_real
NUMBER_TYPES.append(INT_real)
# ^^^ this creates at least the following names:
# --------------------------------------------------------------------
# Type RPython integer class doing wrap-around
# --------------------------------------------------------------------
# SIGNEDCHAR r_signedchar
# UCHAR r_uchar
# SHORT r_short
# USHORT r_ushort
# INT r_int
# UINT r_uint
# LONG r_long
# ULONG r_ulong
# LONGLONG r_longlong
# ULONGLONG r_ulonglong
# WCHAR_T r_wchar_t
# SIZE_T r_size_t
# SSIZE_T r_ssize_t
# TIME_T r_time_t
# --------------------------------------------------------------------
# Note that rffi.r_int is not necessarily the same as
# rarithmetic.r_int, etc! rffi.INT/r_int correspond to the C-level
# 'int' type, whereas rarithmetic.r_int corresponds to the
# Python-level int type (which is a C long). Fun.
def CStruct(name, *fields, **kwds):
""" A small helper to create external C structure, not the
pypy one
"""
hints = kwds.get('hints', {})
hints = hints.copy()
kwds['hints'] = hints
hints['external'] = 'C'
hints['c_name'] = name
# Hack: prefix all attribute names with 'c_' to cope with names starting
# with '_'. The genc backend removes the 'c_' prefixes...
c_fields = [('c_' + key, value) for key, value in fields]
return lltype.Struct(name, *c_fields, **kwds)
def CStructPtr(*args, **kwds):
return lltype.Ptr(CStruct(*args, **kwds))
def CFixedArray(tp, size):
return lltype.FixedSizeArray(tp, size)
CFixedArray._annspecialcase_ = 'specialize:memo'
def CArray(tp):
return lltype.Array(tp, hints={'nolength': True})
CArray._annspecialcase_ = 'specialize:memo'
def CArrayPtr(tp):
return lltype.Ptr(CArray(tp))
CArrayPtr._annspecialcase_ = 'specialize:memo'
def CCallback(args, res):
return lltype.Ptr(lltype.FuncType(args, res))
CCallback._annspecialcase_ = 'specialize:memo'
def COpaque(name=None, ptr_typedef=None, hints=None, compilation_info=None):
if compilation_info is None:
compilation_info = ExternalCompilationInfo()
if hints is None:
hints = {}
else:
hints = hints.copy()
hints['external'] = 'C'
if name is not None:
hints['c_name'] = name
if ptr_typedef is not None:
hints['c_pointer_typedef'] = ptr_typedef
def lazy_getsize(cache={}):
from rpython.rtyper.tool import rffi_platform
try:
return cache[name]
except KeyError:
val = rffi_platform.sizeof(name, compilation_info)
cache[name] = val
return val
hints['getsize'] = lazy_getsize
return lltype.OpaqueType(name, hints)
def COpaquePtr(*args, **kwds):
typedef = kwds.pop('typedef', None)
return lltype.Ptr(COpaque(ptr_typedef=typedef, *args, **kwds))
def CExternVariable(TYPE, name, eci, _CConstantClass=CConstant,
sandboxsafe=False, _nowrapper=False,
c_type=None, getter_only=False,
declare_as_extern=(sys.platform != 'win32')):
"""Return a pair of functions - a getter and a setter - to access
the given global C variable.
"""
from rpython.translator.c.primitive import PrimitiveType
from rpython.translator.tool.cbuild import ExternalCompilationInfo
# XXX we cannot really enumerate all C types here, do it on a case-by-case
# basis
if c_type is None:
if TYPE == CCHARPP:
c_type = 'char **'
elif TYPE == CCHARP:
c_type = 'char *'
elif TYPE == INT or TYPE == LONG:
assert False, "ambiguous type on 32-bit machines: give a c_type"
else:
c_type = PrimitiveType[TYPE]
assert c_type.endswith(' @')
c_type = c_type[:-2] # cut the trailing ' @'
getter_name = 'get_' + name
setter_name = 'set_' + name
getter_prototype = (
"RPY_EXTERN %(c_type)s %(getter_name)s ();" % locals())
setter_prototype = (
"RPY_EXTERN void %(setter_name)s (%(c_type)s v);" % locals())
c_getter = "%(c_type)s %(getter_name)s () { return %(name)s; }" % locals()
c_setter = "void %(setter_name)s (%(c_type)s v) { %(name)s = v; }" % locals()
lines = ["#include <%s>" % i for i in eci.includes]
if declare_as_extern:
lines.append('extern %s %s;' % (c_type, name))
lines.append(c_getter)
if not getter_only:
lines.append(c_setter)
prototypes = [getter_prototype]
if not getter_only:
prototypes.append(setter_prototype)
sources = ('\n'.join(lines),)
new_eci = eci.merge(ExternalCompilationInfo(
separate_module_sources = sources,
post_include_bits = prototypes,
))
getter = llexternal(getter_name, [], TYPE, compilation_info=new_eci,
sandboxsafe=sandboxsafe, _nowrapper=_nowrapper)
if getter_only:
return getter
else:
setter = llexternal(setter_name, [TYPE], lltype.Void,
compilation_info=new_eci, sandboxsafe=sandboxsafe,
_nowrapper=_nowrapper)
return getter, setter
# char, represented as a Python character
# (use SIGNEDCHAR or UCHAR for the small integer types)
CHAR = lltype.Char
# double
DOUBLE = lltype.Float
LONGDOUBLE = lltype.LongFloat
# float - corresponds to rpython.rlib.rarithmetic.r_float, and supports no
# operation except rffi.cast() between FLOAT and DOUBLE
FLOAT = lltype.SingleFloat
r_singlefloat = rarithmetic.r_singlefloat
# void * - for now, represented as char *
VOIDP = lltype.Ptr(lltype.Array(lltype.Char, hints={'nolength': True, 'render_as_void': True}))
NULL = None
# void **
VOIDPP = CArrayPtr(VOIDP)
# char *
CCHARP = lltype.Ptr(lltype.Array(lltype.Char, hints={'nolength': True}))
# const char *
CONST_CCHARP = lltype.Ptr(lltype.Array(lltype.Char, hints={'nolength': True,
'render_as_const': True}))
# wchar_t *
CWCHARP = lltype.Ptr(lltype.Array(lltype.UniChar, hints={'nolength': True}))
# int *, unsigned int *, etc.
#INTP = ... see setup() above
# double *
DOUBLEP = lltype.Ptr(lltype.Array(DOUBLE, hints={'nolength': True}))
# float *
FLOATP = lltype.Ptr(lltype.Array(FLOAT, hints={'nolength': True}))
# long double *
LONGDOUBLEP = lltype.Ptr(lltype.Array(LONGDOUBLE, hints={'nolength': True}))
# Signed, Signed *
SIGNED = lltype.Signed
SIGNEDP = lltype.Ptr(lltype.Array(lltype.Signed, hints={'nolength': True}))
SIGNEDPP = lltype.Ptr(lltype.Array(SIGNEDP, hints={'nolength': True}))
# various type mapping
# conversions between str and char*
# conversions between unicode and wchar_t*
def make_string_mappings(strtype):
if strtype is str:
from rpython.rtyper.lltypesystem.rstr import (STR as STRTYPE,
copy_string_to_raw,
copy_raw_to_string,
copy_string_contents,
mallocstr as mallocfn)
from rpython.rtyper.annlowlevel import llstr as llstrtype
from rpython.rtyper.annlowlevel import hlstr as hlstrtype
TYPEP = CCHARP
ll_char_type = lltype.Char
lastchar = '\x00'
else:
from rpython.rtyper.lltypesystem.rstr import (
UNICODE as STRTYPE,
copy_unicode_to_raw as copy_string_to_raw,
copy_raw_to_unicode as copy_raw_to_string,
copy_unicode_contents as copy_string_contents,
mallocunicode as mallocfn)
from rpython.rtyper.annlowlevel import llunicode as llstrtype
from rpython.rtyper.annlowlevel import hlunicode as hlstrtype
TYPEP = CWCHARP
ll_char_type = lltype.UniChar
lastchar = u'\x00'
# str -> char*
def str2charp(s, track_allocation=True):
""" str -> char*
"""
if track_allocation:
array = lltype.malloc(TYPEP.TO, len(s) + 1, flavor='raw', track_allocation=True)
else:
array = lltype.malloc(TYPEP.TO, len(s) + 1, flavor='raw', track_allocation=False)
i = len(s)
ll_s = llstrtype(s)
copy_string_to_raw(ll_s, array, 0, i)
array[i] = lastchar
return array
str2charp._annenforceargs_ = [strtype, bool]
def free_charp(cp, track_allocation=True):
if track_allocation:
lltype.free(cp, flavor='raw', track_allocation=True)
else:
lltype.free(cp, flavor='raw', track_allocation=False)
free_charp._annenforceargs_ = [None, bool]
# str -> already-existing char[maxsize]
def str2chararray(s, array, maxsize):
length = min(len(s), maxsize)
ll_s = llstrtype(s)
copy_string_to_raw(ll_s, array, 0, length)
return length
str2chararray._annenforceargs_ = [strtype, None, int]
# s[start:start+length] -> already-existing char[],
# all characters including zeros
def str2rawmem(s, array, start, length):
ll_s = llstrtype(s)
copy_string_to_raw(ll_s, array, start, length)
# char* -> str
# doesn't free char*
def charp2str(cp):
size = 0
while cp[size] != lastchar:
size += 1
return assert_str0(charpsize2str(cp, size))
charp2str._annenforceargs_ = [lltype.SomePtr(TYPEP)]
# str -> char*, flag
# Can't inline this because of the raw address manipulation.
@jit.dont_look_inside
def get_nonmovingbuffer(data):
"""
Either returns a non-moving copy or performs neccessary pointer
arithmetic to return a pointer to the characters of a string if the
string is already nonmovable or could be pinned. Must be followed by a
free_nonmovingbuffer call.
Also returns a char:
* \4: no pinning, returned pointer is inside 'data' which is nonmovable
* \5: 'data' was pinned, returned pointer is inside
* \6: pinning failed, returned pointer is raw malloced
For strings (not unicodes), the len()th character of the resulting
raw buffer is available, but not initialized. Use
get_nonmovingbuffer_final_null() instead of get_nonmovingbuffer()
to get a regular null-terminated "char *".
"""
lldata = llstrtype(data)
count = len(data)
if rgc.must_split_gc_address_space():
flag = '\x06' # always make a copy in this case
elif we_are_translated_to_c() and not rgc.can_move(data):
flag = '\x04' # no copy needed
else:
if we_are_translated_to_c() and rgc.pin(data):
flag = '\x05' # successfully pinned
else:
flag = '\x06' # must still make a copy
if flag == '\x06':
buf = lltype.malloc(TYPEP.TO, count + (TYPEP is CCHARP),
flavor='raw')
copy_string_to_raw(lldata, buf, 0, count)
return buf, '\x06'
# ^^^ raw malloc used to get a nonmovable copy
#
# following code is executed after we're translated to C, if:
# - rgc.can_move(data) and rgc.pin(data) both returned true
# - rgc.can_move(data) returned false
data_start = cast_ptr_to_adr(lldata) + \
offsetof(STRTYPE, 'chars') + itemoffsetof(STRTYPE.chars, 0)
return cast(TYPEP, data_start), flag
# ^^^ already nonmovable. Therefore it's not raw allocated nor
# pinned.
get_nonmovingbuffer._always_inline_ = 'try' # get rid of the returned tuple
get_nonmovingbuffer._annenforceargs_ = [strtype]
@jit.dont_look_inside
def get_nonmovingbuffer_final_null(data):
tup = get_nonmovingbuffer(data)
buf, flag = tup
buf[len(data)] = lastchar
return tup
get_nonmovingbuffer_final_null._always_inline_ = 'try'
get_nonmovingbuffer_final_null._annenforceargs_ = [strtype]
# (str, char*, char) -> None
# Can't inline this because of the raw address manipulation.
@jit.dont_look_inside
def free_nonmovingbuffer(data, buf, flag):
"""
Keep 'data' alive and unpin it if it was pinned (flag==\5).
Otherwise free the non-moving copy (flag==\6).
"""
if flag == '\x05':
rgc.unpin(data)
if flag == '\x06':
lltype.free(buf, flavor='raw')
# if flag == '\x04': data was already nonmovable,
# we have nothing to clean up
keepalive_until_here(data)
free_nonmovingbuffer._annenforceargs_ = [strtype, None, None]
# int -> (char*, str, int)
# Can't inline this because of the raw address manipulation.
@jit.dont_look_inside
def alloc_buffer(count):
"""
Returns a (raw_buffer, gc_buffer, case_num) triple,
allocated with count bytes.
The raw_buffer can be safely passed to a native function which expects
it to not move. Call str_from_buffer with the returned values to get a
safe high-level string. When the garbage collector cooperates, this
allows for the process to be performed without an extra copy.
Make sure to call keep_buffer_alive_until_here on the returned values.
"""
new_buf = mallocfn(count)
pinned = 0
fallback = False
if rgc.must_split_gc_address_space():
fallback = True
elif rgc.can_move(new_buf):
if rgc.pin(new_buf):
pinned = 1
else:
fallback = True
if fallback:
raw_buf = lltype.malloc(TYPEP.TO, count, flavor='raw')
return raw_buf, new_buf, 2
#
# following code is executed if:
# - rgc.can_move(data) and rgc.pin(data) both returned true
# - rgc.can_move(data) returned false
data_start = cast_ptr_to_adr(new_buf) + \
offsetof(STRTYPE, 'chars') + itemoffsetof(STRTYPE.chars, 0)
return cast(TYPEP, data_start), new_buf, pinned
alloc_buffer._always_inline_ = 'try' # to get rid of the returned tuple
alloc_buffer._annenforceargs_ = [int]
# (char*, str, int, int) -> None
@jit.dont_look_inside
@enforceargs(None, None, int, int, int)
def str_from_buffer(raw_buf, gc_buf, case_num, allocated_size, needed_size):
"""
Converts from a pair returned by alloc_buffer to a high-level string.
The returned string will be truncated to needed_size.
"""
assert allocated_size >= needed_size
if allocated_size != needed_size:
from rpython.rtyper.lltypesystem.lloperation import llop
if llop.shrink_array(lltype.Bool, gc_buf, needed_size):
pass # now 'gc_buf' is smaller
else:
gc_buf = mallocfn(needed_size)
case_num = 2
if case_num == 2:
copy_raw_to_string(raw_buf, gc_buf, 0, needed_size)
return hlstrtype(gc_buf)
# (char*, str, int) -> None
@jit.dont_look_inside
def keep_buffer_alive_until_here(raw_buf, gc_buf, case_num):
"""
Keeps buffers alive or frees temporary buffers created by alloc_buffer.
This must be called after a call to alloc_buffer, usually in a
try/finally block.
"""
keepalive_until_here(gc_buf)
if case_num == 1:
rgc.unpin(gc_buf)
if case_num == 2:
lltype.free(raw_buf, flavor='raw')
# char* -> str, with an upper bound on the length in case there is no \x00
@enforceargs(None, int)
def charp2strn(cp, maxlen):
size = 0
while size < maxlen and cp[size] != lastchar:
size += 1
return assert_str0(charpsize2str(cp, size))
# char* and size -> str (which can contain null bytes)
def charpsize2str(cp, size):
ll_str = mallocfn(size)
copy_raw_to_string(cp, ll_str, 0, size)
result = hlstrtype(ll_str)
assert result is not None
return result
charpsize2str._annenforceargs_ = [None, int]
return (str2charp, free_charp, charp2str,
get_nonmovingbuffer, free_nonmovingbuffer,
get_nonmovingbuffer_final_null,
alloc_buffer, str_from_buffer, keep_buffer_alive_until_here,
charp2strn, charpsize2str, str2chararray, str2rawmem,
)
(str2charp, free_charp, charp2str,
get_nonmovingbuffer, free_nonmovingbuffer, get_nonmovingbuffer_final_null,
alloc_buffer, str_from_buffer, keep_buffer_alive_until_here,
charp2strn, charpsize2str, str2chararray, str2rawmem,
) = make_string_mappings(str)
(unicode2wcharp, free_wcharp, wcharp2unicode,
get_nonmoving_unicodebuffer, free_nonmoving_unicodebuffer, __not_usable,
alloc_unicodebuffer, unicode_from_buffer, keep_unicodebuffer_alive_until_here,
wcharp2unicoden, wcharpsize2unicode, unicode2wchararray, unicode2rawmem,
) = make_string_mappings(unicode)
# char**
CCHARPP = lltype.Ptr(lltype.Array(CCHARP, hints={'nolength': True}))
CWCHARPP = lltype.Ptr(lltype.Array(CWCHARP, hints={'nolength': True}))
def liststr2charpp(l):
""" list[str] -> char**, NULL terminated
"""
array = lltype.malloc(CCHARPP.TO, len(l) + 1, flavor='raw')
for i in range(len(l)):
array[i] = str2charp(l[i])
array[len(l)] = lltype.nullptr(CCHARP.TO)
return array
liststr2charpp._annenforceargs_ = [[annmodel.s_Str0]] # List of strings
# Make a copy for rposix.py
ll_liststr2charpp = func_with_new_name(liststr2charpp, 'll_liststr2charpp')
def free_charpp(ref):
""" frees list of char**, NULL terminated
"""
i = 0
while ref[i]:
free_charp(ref[i])
i += 1
lltype.free(ref, flavor='raw')
def charpp2liststr(p):
""" char** NULL terminated -> list[str]. No freeing is done.
"""
result = []
i = 0
while p[i]:
result.append(charp2str(p[i]))
i += 1
return result
cast = ll2ctypes.force_cast # a forced, no-checking cast
ptradd = ll2ctypes.force_ptradd # equivalent of "ptr + n" in C.
# the ptr must point to an array.
def size_and_sign(tp):
size = sizeof(tp)
try:
unsigned = not tp._type.SIGNED
except AttributeError:
if not isinstance(tp, lltype.Primitive):
unsigned = False
elif tp in (lltype.Signed, FLOAT, DOUBLE, llmemory.Address):
unsigned = False
elif tp in (lltype.Char, lltype.UniChar, lltype.Bool):
unsigned = True
else:
raise AssertionError("size_and_sign(%r)" % (tp,))
return size, unsigned
def sizeof(tp):
"""Similar to llmemory.sizeof() but tries hard to return a integer
instead of a symbolic value.
"""
if isinstance(tp, lltype.Typedef):
tp = tp.OF
if isinstance(tp, lltype.FixedSizeArray):
return sizeof(tp.OF) * tp.length
if isinstance(tp, lltype.Struct):
# the hint is present in structures probed by rffi_platform.
size = tp._hints.get('size')
if size is None:
size = llmemory.sizeof(tp) # a symbolic result in this case
return size
if (tp is lltype.Signed or isinstance(tp, lltype.Ptr)
or tp is llmemory.Address):
return LONG_BIT/8
if tp is lltype.Char or tp is lltype.Bool:
return 1
if tp is lltype.UniChar:
return r_wchar_t.BITS/8
if tp is lltype.Float:
return 8
if tp is lltype.SingleFloat:
return 4
if tp is lltype.LongFloat:
# :-/
return sizeof_c_type("long double")
assert isinstance(tp, lltype.Number)
return tp._type.BITS/8
sizeof._annspecialcase_ = 'specialize:memo'
def offsetof(STRUCT, fieldname):
"""Similar to llmemory.offsetof() but tries hard to return a integer
instead of a symbolic value.
"""
# the hint is present in structures probed by rffi_platform.
fieldoffsets = STRUCT._hints.get('fieldoffsets')
if fieldoffsets is not None:
# a numeric result when known
for index, name in enumerate(STRUCT._names):
if name == fieldname:
return fieldoffsets[index]
# a symbolic result as a fallback
return llmemory.offsetof(STRUCT, fieldname)
offsetof._annspecialcase_ = 'specialize:memo'
# check that we have a sane configuration
assert maxint == (1 << (8 * sizeof(llmemory.Address) - 1)) - 1, (
"Mixed configuration of the word size of the machine:\n\t"
"the underlying Python was compiled with maxint=%d,\n\t"
"but the C compiler says that 'void *' is %d bytes" % (
maxint, sizeof(llmemory.Address)))
assert sizeof(lltype.Signed) == sizeof(llmemory.Address), (
"Bad configuration: we should manage to get lltype.Signed "
"be an integer type of the same size as llmemory.Address, "
"but we got %s != %s" % (sizeof(lltype.Signed),
sizeof(llmemory.Address)))
# ********************** some helpers *******************
def make(STRUCT, **fields):
""" Malloc a structure and populate it's fields
"""
ptr = lltype.malloc(STRUCT, flavor='raw')
for name, value in fields.items():
setattr(ptr, name, value)
return ptr
class MakeEntry(ExtRegistryEntry):
_about_ = make
def compute_result_annotation(self, s_type, **s_fields):
TP = s_type.const
if not isinstance(TP, lltype.Struct):
raise TypeError("make called with %s instead of Struct as first argument" % TP)
return SomePtr(lltype.Ptr(TP))
def specialize_call(self, hop, **fields):
assert hop.args_s[0].is_constant()
vlist = [hop.inputarg(lltype.Void, arg=0)]
flags = {'flavor':'raw'}
vlist.append(hop.inputconst(lltype.Void, flags))
hop.has_implicit_exception(MemoryError) # record that we know about it
hop.exception_is_here()
v_ptr = hop.genop('malloc', vlist, resulttype=hop.r_result.lowleveltype)
for name, i in fields.items():
name = name[2:]
v_arg = hop.inputarg(hop.args_r[i], arg=i)
v_name = hop.inputconst(lltype.Void, name)
hop.genop('setfield', [v_ptr, v_name, v_arg])
return v_ptr
def structcopy(pdst, psrc):
"""Copy all the fields of the structure given by 'psrc'
into the structure given by 'pdst'.
"""
copy_fn = _get_structcopy_fn(lltype.typeOf(pdst), lltype.typeOf(psrc))
copy_fn(pdst, psrc)
structcopy._annspecialcase_ = 'specialize:ll'
def _get_structcopy_fn(PDST, PSRC):
assert PDST == PSRC
if isinstance(PDST.TO, lltype.Struct):
STRUCT = PDST.TO
padding = STRUCT._hints.get('padding', ())
fields = [(name, STRUCT._flds[name]) for name in STRUCT._names
if name not in padding]
unrollfields = unrolling_iterable(fields)
def copyfn(pdst, psrc):
for name, TYPE in unrollfields:
if isinstance(TYPE, lltype.ContainerType):
structcopy(getattr(pdst, name), getattr(psrc, name))
else:
setattr(pdst, name, getattr(psrc, name))
return copyfn
else:
raise NotImplementedError('structcopy: type %r' % (PDST.TO,))
_get_structcopy_fn._annspecialcase_ = 'specialize:memo'
def setintfield(pdst, fieldname, value):
"""Maybe temporary: a helper to set an integer field into a structure,
transparently casting between the various integer types.
"""
STRUCT = lltype.typeOf(pdst).TO
TSRC = lltype.typeOf(value)
TDST = getattr(STRUCT, fieldname)
assert isinstance(TSRC, lltype.Number)
assert isinstance(TDST, lltype.Number)
setattr(pdst, fieldname, cast(TDST, value))
setintfield._annspecialcase_ = 'specialize:ll_and_arg(1)'
def getintfield(pdst, fieldname):
"""As temporary as previous: get integer from a field in structure,
casting it to lltype.Signed
"""
return cast(lltype.Signed, getattr(pdst, fieldname))
getintfield._annspecialcase_ = 'specialize:ll_and_arg(1)'
class scoped_str2charp:
def __init__(self, value):
if value is not None:
self.buf = str2charp(value)
else:
self.buf = lltype.nullptr(CCHARP.TO)
__init__._annenforceargs_ = [None, annmodel.SomeString(can_be_None=True)]
def __enter__(self):
return self.buf
def __exit__(self, *args):
if self.buf:
free_charp(self.buf)
class scoped_unicode2wcharp:
def __init__(self, value):
if value is not None:
self.buf = unicode2wcharp(value)
else:
self.buf = lltype.nullptr(CWCHARP.TO)
__init__._annenforceargs_ = [None,
annmodel.SomeUnicodeString(can_be_None=True)]
def __enter__(self):
return self.buf
def __exit__(self, *args):
if self.buf:
free_wcharp(self.buf)
class scoped_nonmovingbuffer:
def __init__(self, data):
self.data = data
__init__._annenforceargs_ = [None, annmodel.SomeString(can_be_None=False)]
def __enter__(self):
self.buf, self.flag = get_nonmovingbuffer(self.data)
return self.buf
def __exit__(self, *args):
free_nonmovingbuffer(self.data, self.buf, self.flag)
__init__._always_inline_ = 'try'
__enter__._always_inline_ = 'try'
__exit__._always_inline_ = 'try'
class scoped_view_charp:
"""Returns a 'char *' that (tries to) point inside the given RPython
string (which must not be None). You can replace scoped_str2charp()
with scoped_view_charp() in all places that guarantee that the
content of the 'char[]' array will not be modified.
"""
def __init__(self, data):
self.data = data
__init__._annenforceargs_ = [None, annmodel.SomeString(can_be_None=False)]
def __enter__(self):
self.buf, self.flag = get_nonmovingbuffer_final_null(self.data)
return self.buf
def __exit__(self, *args):
free_nonmovingbuffer(self.data, self.buf, self.flag)
__init__._always_inline_ = 'try'
__enter__._always_inline_ = 'try'
__exit__._always_inline_ = 'try'
class scoped_nonmoving_unicodebuffer:
def __init__(self, data):
self.data = data
def __enter__(self):
self.buf, self.flag = get_nonmoving_unicodebuffer(self.data)
return self.buf
def __exit__(self, *args):
free_nonmoving_unicodebuffer(self.data, self.buf, self.flag)
__init__._always_inline_ = 'try'
__enter__._always_inline_ = 'try'
__exit__._always_inline_ = 'try'
class scoped_alloc_buffer:
def __init__(self, size):
self.size = size
def __enter__(self):
self.raw, self.gc_buf, self.case_num = alloc_buffer(self.size)
return self
def __exit__(self, *args):
keep_buffer_alive_until_here(self.raw, self.gc_buf, self.case_num)
def str(self, length):
return str_from_buffer(self.raw, self.gc_buf, self.case_num,
self.size, length)
class scoped_alloc_unicodebuffer:
def __init__(self, size):
self.size = size
def __enter__(self):
self.raw, self.gc_buf, self.case_num = alloc_unicodebuffer(self.size)
return self
def __exit__(self, *args):
keep_unicodebuffer_alive_until_here(self.raw, self.gc_buf, self.case_num)
def str(self, length):
return unicode_from_buffer(self.raw, self.gc_buf, self.case_num,
self.size, length)
# You would have to have a *huge* amount of data for this to block long enough
# to be worth it to release the GIL.
c_memcpy = llexternal("memcpy",
[VOIDP, VOIDP, SIZE_T],
lltype.Void,
releasegil=False,
calling_conv='c',
)
c_memset = llexternal("memset",
[VOIDP, lltype.Signed, SIZE_T],
lltype.Void,
releasegil=False,
calling_conv='c',
)
# NOTE: This is not a weak key dictionary, thus keeping a lot of stuff alive.
TEST_RAW_ADDR_KEEP_ALIVE = {}
@jit.dont_look_inside
def get_raw_address_of_string(string):
"""Returns a 'char *' that is valid as long as the rpython string object is alive.
Two calls to to this function, given the same string parameter,
are guaranteed to return the same pointer.
"""
assert isinstance(string, str)
from rpython.rtyper.annlowlevel import llstr
from rpython.rtyper.lltypesystem.rstr import STR
from rpython.rtyper.lltypesystem import llmemory
from rpython.rlib import rgc
if we_are_translated():
if rgc.must_split_gc_address_space():
return _get_raw_address_buf_from_string(string)
if rgc.can_move(string):
string = rgc.move_out_of_nursery(string)
if rgc.can_move(string):
return _get_raw_address_buf_from_string(string)
# string cannot move now! return the address
lldata = llstr(string)
data_start = (llmemory.cast_ptr_to_adr(lldata) +
offsetof(STR, 'chars') +
llmemory.itemoffsetof(STR.chars, 0))
data_start = cast(CCHARP, data_start)
data_start[len(string)] = '\x00' # write the final extra null
return data_start
else:
global TEST_RAW_ADDR_KEEP_ALIVE
if string in TEST_RAW_ADDR_KEEP_ALIVE:
return TEST_RAW_ADDR_KEEP_ALIVE[string]
result = str2charp(string, track_allocation=False)
TEST_RAW_ADDR_KEEP_ALIVE[string] = result
return result
class _StrFinalizerQueue(rgc.FinalizerQueue):
Class = None # to use GCREFs directly
print_debugging = False # set to True from test_rffi
def finalizer_trigger(self):
from rpython.rtyper.annlowlevel import hlstr
from rpython.rtyper.lltypesystem import rstr
from rpython.rlib import objectmodel
while True:
gcptr = self.next_dead()
if not gcptr:
break
ll_string = lltype.cast_opaque_ptr(lltype.Ptr(rstr.STR), gcptr)
string = hlstr(ll_string)
key = objectmodel.compute_unique_id(string)
ptr = self.raw_copies.get(key, lltype.nullptr(CCHARP.TO))
if ptr:
if self.print_debugging:
from rpython.rlib.debug import debug_print
debug_print("freeing str [", ptr, "]")
free_charp(ptr, track_allocation=False)
_fq_addr_from_string = _StrFinalizerQueue()
_fq_addr_from_string.raw_copies = {} # {GCREF: CCHARP}
def _get_raw_address_buf_from_string(string):
# Slowish but ok because it's not supposed to be used from a
# regular PyPy. It's only used with non-standard GCs like RevDB
from rpython.rtyper.annlowlevel import llstr
from rpython.rlib import objectmodel
key = objectmodel.compute_unique_id(string)
try:
ptr = _fq_addr_from_string.raw_copies[key]
except KeyError:
ptr = str2charp(string, track_allocation=False)
_fq_addr_from_string.raw_copies[key] = ptr
ll_string = llstr(string)
gcptr = lltype.cast_opaque_ptr(llmemory.GCREF, ll_string)
_fq_addr_from_string.register_finalizer(gcptr)
return ptr
|