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
|
from pypy.rpython.lltypesystem import lltype, llmemory
from pypy.rlib.objectmodel import free_non_gc_object, we_are_translated
from pypy.rlib.rarithmetic import r_uint, LONG_BIT
from pypy.rlib.debug import ll_assert
from pypy.tool.identity_dict import identity_dict
DEFAULT_CHUNK_SIZE = 1019
def get_chunk_manager(chunk_size=DEFAULT_CHUNK_SIZE, cache={}):
try:
return cache[chunk_size]
except KeyError:
pass
CHUNK = lltype.ForwardReference()
CHUNK.become(lltype.Struct('AddressChunk',
('next', lltype.Ptr(CHUNK)),
('items', lltype.FixedSizeArray(
llmemory.Address, chunk_size))))
null_chunk = lltype.nullptr(CHUNK)
class FreeList(object):
_alloc_flavor_ = "raw"
def __init__(self):
self.free_list = null_chunk
def get(self):
if not self.free_list:
# we zero-initialize the chunks to make the translation
# backends happy, but we don't need to do it at run-time.
zero = not we_are_translated()
return lltype.malloc(CHUNK, flavor="raw", zero=zero,
track_allocation=False)
result = self.free_list
self.free_list = result.next
return result
def put(self, chunk):
if we_are_translated():
chunk.next = self.free_list
self.free_list = chunk
else:
# Don't cache the old chunks but free them immediately.
# Helps debugging, and avoids that old chunks full of
# addresses left behind by a test end up in genc...
lltype.free(chunk, flavor="raw", track_allocation=False)
unused_chunks = FreeList()
cache[chunk_size] = unused_chunks, null_chunk
return unused_chunks, null_chunk
def get_address_stack(chunk_size=DEFAULT_CHUNK_SIZE, cache={}):
try:
return cache[chunk_size]
except KeyError:
pass
unused_chunks, null_chunk = get_chunk_manager(chunk_size)
class AddressStack(object):
_alloc_flavor_ = "raw"
def __init__(self):
self.chunk = unused_chunks.get()
self.chunk.next = null_chunk
self.used_in_last_chunk = 0
# invariant: self.used_in_last_chunk == 0 if and only if
# the AddressStack is empty
def enlarge(self):
new = unused_chunks.get()
new.next = self.chunk
self.chunk = new
self.used_in_last_chunk = 0
enlarge._dont_inline_ = True
def shrink(self):
old = self.chunk
self.chunk = old.next
unused_chunks.put(old)
self.used_in_last_chunk = chunk_size
shrink._dont_inline_ = True
def append(self, addr):
used = self.used_in_last_chunk
if used == chunk_size:
self.enlarge()
used = 0
self.chunk.items[used] = addr
self.used_in_last_chunk = used + 1 # always > 0 here
def non_empty(self):
return self.used_in_last_chunk != 0
def pop(self):
used = self.used_in_last_chunk - 1
ll_assert(used >= 0, "pop on empty AddressStack")
result = self.chunk.items[used]
self.used_in_last_chunk = used
if used == 0 and self.chunk.next:
self.shrink()
return result
def delete(self):
cur = self.chunk
while cur:
next = cur.next
unused_chunks.put(cur)
cur = next
free_non_gc_object(self)
def _length_estimate(self):
chunk = self.chunk
count = self.used_in_last_chunk
while chunk:
chunk = chunk.next
count += chunk_size
return count
def foreach(self, callback, arg):
"""Invoke 'callback(address, arg)' for all addresses in the stack.
Typically, 'callback' is a bound method and 'arg' can be None.
"""
chunk = self.chunk
count = self.used_in_last_chunk
while chunk:
while count > 0:
count -= 1
callback(chunk.items[count], arg)
chunk = chunk.next
count = chunk_size
foreach._annspecialcase_ = 'specialize:arg(1)'
def stack2dict(self):
result = AddressDict(self._length_estimate())
self.foreach(_add_in_dict, result)
return result
def remove(self, addr):
"""Remove 'addr' from the stack. The addr *must* be in the list,
and preferrably near the top.
"""
got = self.pop()
chunk = self.chunk
count = self.used_in_last_chunk
while got != addr:
count -= 1
if count < 0:
chunk = chunk.next
count = chunk_size - 1
next = chunk.items[count]
chunk.items[count] = got
got = next
cache[chunk_size] = AddressStack
return AddressStack
def _add_in_dict(item, d):
d.add(item)
def get_address_deque(chunk_size=DEFAULT_CHUNK_SIZE, cache={}):
try:
return cache[chunk_size]
except KeyError:
pass
unused_chunks, null_chunk = get_chunk_manager(chunk_size)
class AddressDeque(object):
_alloc_flavor_ = "raw"
def __init__(self):
chunk = unused_chunks.get()
chunk.next = null_chunk
self.oldest_chunk = self.newest_chunk = chunk
self.index_in_oldest = 0
self.index_in_newest = 0
def enlarge(self):
new = unused_chunks.get()
new.next = null_chunk
self.newest_chunk.next = new
self.newest_chunk = new
self.index_in_newest = 0
enlarge._dont_inline_ = True
def shrink(self):
old = self.oldest_chunk
self.oldest_chunk = old.next
unused_chunks.put(old)
self.index_in_oldest = 0
shrink._dont_inline_ = True
def append(self, addr):
index = self.index_in_newest
if index == chunk_size:
self.enlarge()
index = 0
self.newest_chunk.items[index] = addr
self.index_in_newest = index + 1
def non_empty(self):
return (self.oldest_chunk != self.newest_chunk
or self.index_in_oldest < self.index_in_newest)
def popleft(self):
ll_assert(self.non_empty(), "pop on empty AddressDeque")
index = self.index_in_oldest
if index == chunk_size:
self.shrink()
index = 0
result = self.oldest_chunk.items[index]
self.index_in_oldest = index + 1
return result
def foreach(self, callback, arg):
"""Invoke 'callback(address, arg)' for all addresses in the deque.
Typically, 'callback' is a bound method and 'arg' can be None.
"""
chunk = self.oldest_chunk
index = self.index_in_oldest
while chunk is not self.newest_chunk:
while index < chunk_size:
callback(chunk.items[index], arg)
index += 1
chunk = chunk.next
index = 0
limit = self.index_in_newest
while index < limit:
callback(chunk.items[index], arg)
index += 1
foreach._annspecialcase_ = 'specialize:arg(1)'
def delete(self):
cur = self.oldest_chunk
while cur:
next = cur.next
unused_chunks.put(cur)
cur = next
free_non_gc_object(self)
cache[chunk_size] = AddressDeque
return AddressDeque
# ____________________________________________________________
def AddressDict(length_estimate=0):
if we_are_translated():
from pypy.rpython.memory import lldict
return lldict.newdict(length_estimate)
else:
return BasicAddressDict()
def null_address_dict():
from pypy.rpython.memory import lldict
return lltype.nullptr(lldict.DICT)
class BasicAddressDict(object):
def __init__(self):
self.data = identity_dict() # {_key(addr): value}
def _key(self, addr):
"NOT_RPYTHON: prebuilt AddressDicts are not supported"
return addr._fixup().ptr._obj
def _wrapkey(self, obj):
return llmemory.cast_ptr_to_adr(obj._as_ptr())
def delete(self):
pass
def length(self):
return len(self.data)
def contains(self, keyaddr):
return self._key(keyaddr) in self.data
def get(self, keyaddr, default=llmemory.NULL):
return self.data.get(self._key(keyaddr), default)
def setitem(self, keyaddr, valueaddr):
assert keyaddr
self.data[self._key(keyaddr)] = valueaddr
def insertclean(self, keyaddr, valueaddr):
assert keyaddr
key = self._key(keyaddr)
assert key not in self.data
self.data[key] = valueaddr
def add(self, keyaddr):
self.setitem(keyaddr, llmemory.NULL)
def clear(self):
self.data.clear()
def foreach(self, callback, arg):
"""Invoke 'callback(key, value, arg)' for all items in the dict.
Typically, 'callback' is a bound method and 'arg' can be None."""
for key, value in self.data.iteritems():
callback(self._wrapkey(key), value, arg)
def copy_and_update(dict, surviving, updated_address):
"""Make a copy of 'dict' in which the keys are updated as follows:
* if surviving(key) returns False, the item is removed
* otherwise, updated_address(key) is inserted in the copy.
"""
newdict = AddressDict
if not we_are_translated():
# when not translated, return a dict of the same kind as 'dict'
if not isinstance(dict, BasicAddressDict):
from pypy.rpython.memory.lldict import newdict
result = newdict(dict.length())
dict.foreach(_get_updater(surviving, updated_address), result)
return result
copy_and_update._annspecialcase_ = 'specialize:arg(1,2)'
def _get_updater(surviving, updated_address):
def callback(key, value, arg):
if surviving(key):
newkey = updated_address(key)
arg.setitem(newkey, value)
return callback
_get_updater._annspecialcase_ = 'specialize:memo'
def copy_without_null_values(dict):
"""Make a copy of 'dict' without the key/value pairs where value==NULL."""
newdict = AddressDict
if not we_are_translated():
# when not translated, return a dict of the same kind as 'dict'
if not isinstance(dict, BasicAddressDict):
from pypy.rpython.memory.lldict import newdict
result = newdict()
dict.foreach(_null_value_checker, result)
return result
def _null_value_checker(key, value, arg):
if value:
arg.setitem(key, value)
|