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
|
#
# See documentation in pypy/doc/discussion/rawrefcount.rst
#
# This is meant for pypy's cpyext module, but is a generally
# useful interface over our GC. XXX "pypy" should be removed here
#
import sys, weakref
from rpython.rtyper.lltypesystem import lltype, llmemory
from rpython.rlib.objectmodel import we_are_translated, specialize
from rpython.rtyper.extregistry import ExtRegistryEntry
from rpython.rlib import rgc
REFCNT_FROM_PYPY = sys.maxint // 4 + 1
REFCNT_FROM_PYPY_LIGHT = REFCNT_FROM_PYPY + (sys.maxint // 2 + 1)
RAWREFCOUNT_DEALLOC_TRIGGER = lltype.Ptr(lltype.FuncType([], lltype.Void))
def _build_pypy_link(p):
res = len(_adr2pypy)
_adr2pypy.append(p)
return res
def init(dealloc_trigger_callback=None):
"""NOT_RPYTHON: set up rawrefcount with the GC. This is only used
for tests; it should not be called at all during translation.
"""
global _p_list, _o_list, _adr2pypy, _pypy2ob, _pypy2ob_rev
global _d_list, _dealloc_trigger_callback
_p_list = []
_o_list = []
_adr2pypy = [None]
_pypy2ob = {}
_pypy2ob_rev = {}
_d_list = []
_dealloc_trigger_callback = dealloc_trigger_callback
def create_link_pypy(p, ob):
"NOT_RPYTHON: a link where the PyPy object contains some or all the data"
#print 'create_link_pypy\n\t%s\n\t%s' % (p, ob)
assert p not in _pypy2ob
assert ob._obj not in _pypy2ob_rev
assert not ob.c_ob_pypy_link
ob.c_ob_pypy_link = _build_pypy_link(p)
_pypy2ob[p] = ob
_pypy2ob_rev[ob._obj] = p
_p_list.append(ob)
def create_link_pyobj(p, ob):
"""NOT_RPYTHON: a link where the PyObject contains all the data.
from_obj() will not work on this 'p'."""
#print 'create_link_pyobj\n\t%s\n\t%s' % (p, ob)
assert p not in _pypy2ob
assert ob._obj not in _pypy2ob_rev
assert not ob.c_ob_pypy_link
ob.c_ob_pypy_link = _build_pypy_link(p)
_o_list.append(ob)
def from_obj(OB_PTR_TYPE, p):
"NOT_RPYTHON"
ob = _pypy2ob.get(p)
if ob is None:
return lltype.nullptr(OB_PTR_TYPE.TO)
assert lltype.typeOf(ob) == OB_PTR_TYPE
assert _pypy2ob_rev[ob._obj] is p
return ob
def to_obj(Class, ob):
"NOT_RPYTHON"
link = ob.c_ob_pypy_link
if link == 0:
return None
p = _adr2pypy[link]
assert isinstance(p, Class)
return p
def next_dead(OB_PTR_TYPE):
"""NOT_RPYTHON. When the GC runs, it finds some pyobjs to be dead
but cannot immediately dispose of them (it doesn't know how to call
e.g. tp_dealloc(), and anyway calling it immediately would cause all
sorts of bugs). So instead, it stores them in an internal list,
initially with refcnt == 1. This pops the next item off this list.
"""
if len(_d_list) == 0:
return lltype.nullptr(OB_PTR_TYPE.TO)
ob = _d_list.pop()
assert lltype.typeOf(ob) == OB_PTR_TYPE
return ob
def _collect(track_allocation=True):
"""NOT_RPYTHON: for tests only. Emulates a GC collection.
Will invoke dealloc_trigger_callback() once if there are objects
whose _Py_Dealloc() should be called.
"""
def detach(ob, wr_list):
assert ob.c_ob_refcnt >= REFCNT_FROM_PYPY
assert ob.c_ob_pypy_link
p = _adr2pypy[ob.c_ob_pypy_link]
assert p is not None
_adr2pypy[ob.c_ob_pypy_link] = None
wr_list.append((ob, weakref.ref(p)))
return p
global _p_list, _o_list
wr_p_list = []
new_p_list = []
for ob in reversed(_p_list):
if ob.c_ob_refcnt not in (REFCNT_FROM_PYPY, REFCNT_FROM_PYPY_LIGHT):
new_p_list.append(ob)
else:
p = detach(ob, wr_p_list)
ob_test = _pypy2ob.pop(p)
p_test = _pypy2ob_rev.pop(ob_test._obj)
assert p_test is p
del p, p_test
ob = None
_p_list = Ellipsis
wr_o_list = []
for ob in reversed(_o_list):
detach(ob, wr_o_list)
_o_list = Ellipsis
rgc.collect() # forces the cycles to be resolved and the weakrefs to die
rgc.collect()
rgc.collect()
def attach(ob, wr, final_list):
assert ob.c_ob_refcnt >= REFCNT_FROM_PYPY
p = wr()
if p is not None:
assert ob.c_ob_pypy_link
_adr2pypy[ob.c_ob_pypy_link] = p
final_list.append(ob)
return p
else:
ob.c_ob_pypy_link = 0
if ob.c_ob_refcnt >= REFCNT_FROM_PYPY_LIGHT:
ob.c_ob_refcnt -= REFCNT_FROM_PYPY_LIGHT
ob.c_ob_pypy_link = 0
if ob.c_ob_refcnt == 0:
lltype.free(ob, flavor='raw',
track_allocation=track_allocation)
else:
assert ob.c_ob_refcnt >= REFCNT_FROM_PYPY
assert ob.c_ob_refcnt < int(REFCNT_FROM_PYPY_LIGHT * 0.99)
ob.c_ob_refcnt -= REFCNT_FROM_PYPY
ob.c_ob_pypy_link = 0
if ob.c_ob_refcnt == 0:
ob.c_ob_refcnt = 1
_d_list.append(ob)
return None
_p_list = new_p_list
for ob, wr in wr_p_list:
p = attach(ob, wr, _p_list)
if p is not None:
_pypy2ob[p] = ob
_pypy2ob_rev.clear() # rebuild this dict from scratch
for p, ob in _pypy2ob.items():
assert ob._obj not in _pypy2ob_rev
_pypy2ob_rev[ob._obj] = p
_o_list = []
for ob, wr in wr_o_list:
attach(ob, wr, _o_list)
if _d_list:
res = _dealloc_trigger_callback()
if res == "RETRY":
_collect(track_allocation=track_allocation)
_keepalive_forever = set()
def _dont_free_any_more():
"Make sure that any object still referenced won't be freed any more."
for ob in _p_list + _o_list:
_keepalive_forever.add(to_obj(object, ob))
del _d_list[:]
# ____________________________________________________________
def _unspec_p(hop, v_p):
assert isinstance(v_p.concretetype, lltype.Ptr)
assert v_p.concretetype.TO._gckind == 'gc'
return hop.genop('cast_opaque_ptr', [v_p], resulttype=llmemory.GCREF)
def _unspec_ob(hop, v_ob):
assert isinstance(v_ob.concretetype, lltype.Ptr)
assert v_ob.concretetype.TO._gckind == 'raw'
return hop.genop('cast_ptr_to_adr', [v_ob], resulttype=llmemory.Address)
def _spec_p(hop, v_p):
assert v_p.concretetype == llmemory.GCREF
return hop.genop('cast_opaque_ptr', [v_p],
resulttype=hop.r_result.lowleveltype)
def _spec_ob(hop, v_ob):
assert v_ob.concretetype == llmemory.Address
return hop.genop('cast_adr_to_ptr', [v_ob],
resulttype=hop.r_result.lowleveltype)
class Entry(ExtRegistryEntry):
_about_ = init
def compute_result_annotation(self, s_dealloc_callback):
from rpython.rtyper.llannotation import SomePtr
assert isinstance(s_dealloc_callback, SomePtr) # ll-ptr-to-function
def specialize_call(self, hop):
hop.exception_cannot_occur()
[v_dealloc_callback] = hop.inputargs(hop.args_r[0])
hop.genop('gc_rawrefcount_init', [v_dealloc_callback])
class Entry(ExtRegistryEntry):
_about_ = (create_link_pypy, create_link_pyobj)
def compute_result_annotation(self, s_p, s_ob):
pass
def specialize_call(self, hop):
if self.instance is create_link_pypy:
name = 'gc_rawrefcount_create_link_pypy'
elif self.instance is create_link_pyobj:
name = 'gc_rawrefcount_create_link_pyobj'
v_p, v_ob = hop.inputargs(*hop.args_r)
hop.exception_cannot_occur()
hop.genop(name, [_unspec_p(hop, v_p), _unspec_ob(hop, v_ob)])
class Entry(ExtRegistryEntry):
_about_ = from_obj
def compute_result_annotation(self, s_OB_PTR_TYPE, s_p):
from rpython.annotator import model as annmodel
from rpython.rtyper.llannotation import lltype_to_annotation
assert (isinstance(s_p, annmodel.SomeInstance) or
annmodel.s_None.contains(s_p))
assert s_OB_PTR_TYPE.is_constant()
return lltype_to_annotation(s_OB_PTR_TYPE.const)
def specialize_call(self, hop):
hop.exception_cannot_occur()
v_p = hop.inputarg(hop.args_r[1], arg=1)
v_ob = hop.genop('gc_rawrefcount_from_obj', [_unspec_p(hop, v_p)],
resulttype = llmemory.Address)
return _spec_ob(hop, v_ob)
class Entry(ExtRegistryEntry):
_about_ = to_obj
def compute_result_annotation(self, s_Class, s_ob):
from rpython.annotator import model as annmodel
from rpython.rtyper.llannotation import SomePtr
assert isinstance(s_ob, SomePtr)
assert s_Class.is_constant()
classdef = self.bookkeeper.getuniqueclassdef(s_Class.const)
return annmodel.SomeInstance(classdef, can_be_None=True)
def specialize_call(self, hop):
hop.exception_cannot_occur()
v_ob = hop.inputarg(hop.args_r[1], arg=1)
v_p = hop.genop('gc_rawrefcount_to_obj', [_unspec_ob(hop, v_ob)],
resulttype = llmemory.GCREF)
return _spec_p(hop, v_p)
class Entry(ExtRegistryEntry):
_about_ = next_dead
def compute_result_annotation(self, s_OB_PTR_TYPE):
from rpython.annotator import model as annmodel
from rpython.rtyper.llannotation import lltype_to_annotation
assert s_OB_PTR_TYPE.is_constant()
return lltype_to_annotation(s_OB_PTR_TYPE.const)
def specialize_call(self, hop):
hop.exception_cannot_occur()
v_ob = hop.genop('gc_rawrefcount_next_dead', [],
resulttype = llmemory.Address)
return _spec_ob(hop, v_ob)
|