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
|
from pypy.rpython.lltypesystem import lltype, llmemory, llarena
from pypy.rlib.debug import ll_assert
from pypy.rpython.memory.gcheader import GCHeaderBuilder
from pypy.rpython.memory.support import DEFAULT_CHUNK_SIZE
from pypy.rpython.memory.support import get_address_stack, get_address_deque
from pypy.rpython.memory.support import AddressDict
from pypy.rpython.lltypesystem.llmemory import NULL, raw_malloc_usage
TYPEID_MAP = lltype.GcStruct('TYPEID_MAP', ('count', lltype.Signed),
('size', lltype.Signed),
('links', lltype.Array(lltype.Signed)))
ARRAY_TYPEID_MAP = lltype.GcArray(lltype.Ptr(TYPEID_MAP))
class GCBase(object):
_alloc_flavor_ = "raw"
moving_gc = False
needs_write_barrier = False
malloc_zero_filled = False
prebuilt_gc_objects_are_static_roots = True
object_minimal_size = 0
gcflag_extra = 0 # or a real GC flag that is always 0 when not collecting
def __init__(self, config, chunk_size=DEFAULT_CHUNK_SIZE,
translated_to_c=True):
self.gcheaderbuilder = GCHeaderBuilder(self.HDR)
self.AddressStack = get_address_stack(chunk_size)
self.AddressDeque = get_address_deque(chunk_size)
self.AddressDict = AddressDict
self.config = config
assert isinstance(translated_to_c, bool)
self.translated_to_c = translated_to_c
def setup(self):
# all runtime mutable values' setup should happen here
# and in its overriden versions! for the benefit of test_transformed_gc
self.finalizer_lock_count = 0
self.run_finalizers = self.AddressDeque()
def post_setup(self):
# More stuff that needs to be initialized when the GC is already
# fully working. (Only called by gctransform/framework for now.)
from pypy.rpython.memory.gc import env
self.DEBUG = env.read_from_env('PYPY_GC_DEBUG')
def _teardown(self):
pass
def can_malloc_nonmovable(self):
return not self.moving_gc
def can_optimize_clean_setarrayitems(self):
return True # False in case of card marking
# The following flag enables costly consistency checks after each
# collection. It is automatically set to True by test_gc.py. The
# checking logic is translatable, so the flag can be set to True
# here before translation. At run-time, if PYPY_GC_DEBUG is set,
# then it is also set to True.
DEBUG = False
def set_query_functions(self, is_varsize, has_gcptr_in_varsize,
is_gcarrayofgcptr,
getfinalizer,
offsets_to_gc_pointers,
fixed_size, varsize_item_sizes,
varsize_offset_to_variable_part,
varsize_offset_to_length,
varsize_offsets_to_gcpointers_in_var_part,
weakpointer_offset,
member_index,
is_rpython_class):
self.getfinalizer = getfinalizer
self.is_varsize = is_varsize
self.has_gcptr_in_varsize = has_gcptr_in_varsize
self.is_gcarrayofgcptr = is_gcarrayofgcptr
self.offsets_to_gc_pointers = offsets_to_gc_pointers
self.fixed_size = fixed_size
self.varsize_item_sizes = varsize_item_sizes
self.varsize_offset_to_variable_part = varsize_offset_to_variable_part
self.varsize_offset_to_length = varsize_offset_to_length
self.varsize_offsets_to_gcpointers_in_var_part = varsize_offsets_to_gcpointers_in_var_part
self.weakpointer_offset = weakpointer_offset
self.member_index = member_index
self.is_rpython_class = is_rpython_class
def get_member_index(self, type_id):
return self.member_index(type_id)
def set_root_walker(self, root_walker):
self.root_walker = root_walker
def write_barrier(self, newvalue, addr_struct):
pass
def statistics(self, index):
return -1
def size_gc_header(self, typeid=0):
return self.gcheaderbuilder.size_gc_header
def header(self, addr):
addr -= self.gcheaderbuilder.size_gc_header
return llmemory.cast_adr_to_ptr(addr, lltype.Ptr(self.HDR))
def _get_size_for_typeid(self, obj, typeid):
size = self.fixed_size(typeid)
if self.is_varsize(typeid):
lenaddr = obj + self.varsize_offset_to_length(typeid)
length = lenaddr.signed[0]
size += length * self.varsize_item_sizes(typeid)
size = llarena.round_up_for_allocation(size)
# XXX maybe we should parametrize round_up_for_allocation()
# per GC; if we do, we also need to fix the call in
# gctypelayout.encode_type_shape()
return size
def get_size(self, obj):
return self._get_size_for_typeid(obj, self.get_type_id(obj))
def get_size_incl_hash(self, obj):
return self.get_size(obj)
def malloc(self, typeid, length=0, zero=False):
"""For testing. The interface used by the gctransformer is
the four malloc_[fixed,var]size[_clear]() functions.
"""
# Rules about fallbacks in case of missing malloc methods:
# * malloc_fixedsize_clear() and malloc_varsize_clear() are mandatory
# * malloc_fixedsize() and malloc_varsize() fallback to the above
# XXX: as of r49360, gctransformer.framework never inserts calls
# to malloc_varsize(), but always uses malloc_varsize_clear()
size = self.fixed_size(typeid)
needs_finalizer = bool(self.getfinalizer(typeid))
contains_weakptr = self.weakpointer_offset(typeid) >= 0
assert not (needs_finalizer and contains_weakptr)
if self.is_varsize(typeid):
assert not contains_weakptr
assert not needs_finalizer
itemsize = self.varsize_item_sizes(typeid)
offset_to_length = self.varsize_offset_to_length(typeid)
if zero or not hasattr(self, 'malloc_varsize'):
malloc_varsize = self.malloc_varsize_clear
else:
malloc_varsize = self.malloc_varsize
ref = malloc_varsize(typeid, length, size, itemsize,
offset_to_length, True)
else:
if zero or not hasattr(self, 'malloc_fixedsize'):
malloc_fixedsize = self.malloc_fixedsize_clear
else:
malloc_fixedsize = self.malloc_fixedsize
ref = malloc_fixedsize(typeid, size, True, needs_finalizer,
contains_weakptr)
# lots of cast and reverse-cast around...
return llmemory.cast_ptr_to_adr(ref)
def malloc_nonmovable(self, typeid, length=0, zero=False):
return self.malloc(typeid, length, zero)
def id(self, ptr):
return lltype.cast_ptr_to_int(ptr)
def can_move(self, addr):
return False
def set_max_heap_size(self, size):
raise NotImplementedError
def x_swap_pool(self, newpool):
return newpool
def x_clone(self, clonedata):
raise RuntimeError("no support for x_clone in the GC")
def trace(self, obj, callback, arg):
"""Enumerate the locations inside the given obj that can contain
GC pointers. For each such location, callback(pointer, arg) is
called, where 'pointer' is an address inside the object.
Typically, 'callback' is a bound method and 'arg' can be None.
"""
typeid = self.get_type_id(obj)
if self.is_gcarrayofgcptr(typeid):
# a performance shortcut for GcArray(gcptr)
length = (obj + llmemory.gcarrayofptr_lengthoffset).signed[0]
item = obj + llmemory.gcarrayofptr_itemsoffset
while length > 0:
if self.points_to_valid_gc_object(item):
callback(item, arg)
item += llmemory.gcarrayofptr_singleitemoffset
length -= 1
return
offsets = self.offsets_to_gc_pointers(typeid)
i = 0
while i < len(offsets):
item = obj + offsets[i]
if self.points_to_valid_gc_object(item):
callback(item, arg)
i += 1
if self.has_gcptr_in_varsize(typeid):
item = obj + self.varsize_offset_to_variable_part(typeid)
length = (obj + self.varsize_offset_to_length(typeid)).signed[0]
offsets = self.varsize_offsets_to_gcpointers_in_var_part(typeid)
itemlength = self.varsize_item_sizes(typeid)
while length > 0:
j = 0
while j < len(offsets):
itemobj = item + offsets[j]
if self.points_to_valid_gc_object(itemobj):
callback(itemobj, arg)
j += 1
item += itemlength
length -= 1
trace._annspecialcase_ = 'specialize:arg(2)'
def trace_partial(self, obj, start, stop, callback, arg):
"""Like trace(), but only walk the array part, for indices in
range(start, stop). Must only be called if has_gcptr_in_varsize().
"""
length = stop - start
typeid = self.get_type_id(obj)
if self.is_gcarrayofgcptr(typeid):
# a performance shortcut for GcArray(gcptr)
item = obj + llmemory.gcarrayofptr_itemsoffset
item += llmemory.gcarrayofptr_singleitemoffset * start
while length > 0:
if self.points_to_valid_gc_object(item):
callback(item, arg)
item += llmemory.gcarrayofptr_singleitemoffset
length -= 1
return
ll_assert(self.has_gcptr_in_varsize(typeid),
"trace_partial() on object without has_gcptr_in_varsize()")
item = obj + self.varsize_offset_to_variable_part(typeid)
offsets = self.varsize_offsets_to_gcpointers_in_var_part(typeid)
itemlength = self.varsize_item_sizes(typeid)
item += itemlength * start
while length > 0:
j = 0
while j < len(offsets):
itemobj = item + offsets[j]
if self.points_to_valid_gc_object(itemobj):
callback(itemobj, arg)
j += 1
item += itemlength
length -= 1
trace_partial._annspecialcase_ = 'specialize:arg(4)'
def points_to_valid_gc_object(self, addr):
return self.is_valid_gc_object(addr.address[0])
def is_valid_gc_object(self, addr):
return (addr != NULL and
(not self.config.taggedpointers or
llmemory.cast_adr_to_int(addr) & 1 == 0))
def enumerate_all_roots(self, callback, arg):
"""For each root object, invoke callback(obj, arg).
'callback' should not be a bound method.
Note that this method is not suitable for actually doing the
collection in a moving GC, because you cannot write back a
modified address. It is there only for inspection.
"""
# overridden in some subclasses, for GCs which have an additional
# list of last generation roots
callback2, attrname = _convert_callback_formats(callback) # :-/
setattr(self, attrname, arg)
self.root_walker.walk_roots(callback2, callback2, callback2)
self.run_finalizers.foreach(callback, arg)
enumerate_all_roots._annspecialcase_ = 'specialize:arg(1)'
def debug_check_consistency(self):
"""To use after a collection. If self.DEBUG is set, this
enumerates all roots and traces all objects to check if we didn't
accidentally free a reachable object or forgot to update a pointer
to an object that moved.
"""
if self.DEBUG:
from pypy.rlib.objectmodel import we_are_translated
from pypy.rpython.memory.support import AddressDict
self._debug_seen = AddressDict()
self._debug_pending = self.AddressStack()
if not we_are_translated():
self.root_walker._walk_prebuilt_gc(self._debug_record)
self.enumerate_all_roots(GCBase._debug_callback, self)
pending = self._debug_pending
while pending.non_empty():
obj = pending.pop()
self.trace(obj, self._debug_callback2, None)
self._debug_seen.delete()
self._debug_pending.delete()
def _debug_record(self, obj):
seen = self._debug_seen
if not seen.contains(obj):
seen.add(obj)
self.debug_check_object(obj)
self._debug_pending.append(obj)
@staticmethod
def _debug_callback(obj, self):
self._debug_record(obj)
def _debug_callback2(self, pointer, ignored):
obj = pointer.address[0]
ll_assert(bool(obj), "NULL address from self.trace()")
self._debug_record(obj)
def debug_check_object(self, obj):
pass
def execute_finalizers(self):
self.finalizer_lock_count += 1
try:
while self.run_finalizers.non_empty():
if self.finalizer_lock_count > 1:
# the outer invocation of execute_finalizers() will do it
break
obj = self.run_finalizers.popleft()
finalizer = self.getfinalizer(self.get_type_id(obj))
finalizer(obj)
finally:
self.finalizer_lock_count -= 1
class MovingGCBase(GCBase):
moving_gc = True
def setup(self):
GCBase.setup(self)
self.objects_with_id = self.AddressDict()
self.id_free_list = self.AddressStack()
self.next_free_id = 1
def can_move(self, addr):
return True
def id(self, ptr):
# Default implementation for id(), assuming that "external" objects
# never move. Overriden in the HybridGC.
obj = llmemory.cast_ptr_to_adr(ptr)
# is it a tagged pointer? or an external object?
if not self.is_valid_gc_object(obj) or self._is_external(obj):
return llmemory.cast_adr_to_int(obj)
# tagged pointers have ids of the form 2n + 1
# external objects have ids of the form 4n (due to word alignment)
# self._compute_id returns addresses of the form 2n + 1
# if we multiply by 2, we get ids of the form 4n + 2, thus we get no
# clashes
return llmemory.cast_adr_to_int(self._compute_id(obj)) * 2
def _next_id(self):
# return an id not currently in use (as an address instead of an int)
if self.id_free_list.non_empty():
result = self.id_free_list.pop() # reuse a dead id
else:
# make up a fresh id number
result = llmemory.cast_int_to_adr(self.next_free_id)
self.next_free_id += 2 # only odd numbers, to make lltype
# and llmemory happy and to avoid
# clashes with real addresses
return result
def _compute_id(self, obj):
# look if the object is listed in objects_with_id
result = self.objects_with_id.get(obj)
if not result:
result = self._next_id()
self.objects_with_id.setitem(obj, result)
return result
def update_objects_with_id(self):
old = self.objects_with_id
new_objects_with_id = self.AddressDict(old.length())
old.foreach(self._update_object_id_FAST, new_objects_with_id)
old.delete()
self.objects_with_id = new_objects_with_id
def _update_object_id(self, obj, id, new_objects_with_id):
# safe version (used by subclasses)
if self.surviving(obj):
newobj = self.get_forwarding_address(obj)
new_objects_with_id.setitem(newobj, id)
else:
self.id_free_list.append(id)
def _update_object_id_FAST(self, obj, id, new_objects_with_id):
# unsafe version, assumes that the new_objects_with_id is large enough
if self.surviving(obj):
newobj = self.get_forwarding_address(obj)
new_objects_with_id.insertclean(newobj, id)
else:
self.id_free_list.append(id)
def choose_gc_from_config(config):
"""Return a (GCClass, GC_PARAMS) from the given config object.
"""
if config.translation.gctransformer != "framework": # for tests
config.translation.gc = "marksweep" # crash if inconsistent
classes = {"marksweep": "marksweep.MarkSweepGC",
"statistics": "marksweep.PrintingMarkSweepGC",
"semispace": "semispace.SemiSpaceGC",
"generation": "generation.GenerationGC",
"hybrid": "hybrid.HybridGC",
"markcompact" : "markcompact.MarkCompactGC",
"minimark" : "minimark.MiniMarkGC",
}
try:
modulename, classname = classes[config.translation.gc].split('.')
except KeyError:
raise ValueError("unknown value for translation.gc: %r" % (
config.translation.gc,))
module = __import__("pypy.rpython.memory.gc." + modulename,
globals(), locals(), [classname])
GCClass = getattr(module, classname)
return GCClass, GCClass.TRANSLATION_PARAMS
def _convert_callback_formats(callback):
callback = getattr(callback, 'im_func', callback)
if callback not in _converted_callback_formats:
def callback2(gc, root):
obj = root.address[0]
ll_assert(bool(obj), "NULL address from walk_roots()")
callback(obj, getattr(gc, attrname))
attrname = '_callback2_arg%d' % len(_converted_callback_formats)
_converted_callback_formats[callback] = callback2, attrname
return _converted_callback_formats[callback]
_convert_callback_formats._annspecialcase_ = 'specialize:memo'
_converted_callback_formats = {}
|