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
|
import py
from rpython.rtyper.lltypesystem import lltype, llmemory
from rpython.rtyper.lltypesystem.lloperation import llop
from rpython.rtyper.lltypesystem.rstr import STR
from rpython.rtyper.lltypesystem.rlist import LIST_OF
from rpython.translator.translator import TranslationContext, graphof
from rpython.translator.backendopt.writeanalyze import WriteAnalyzer, top_set
from rpython.translator.backendopt.writeanalyze import ReadWriteAnalyzer
from rpython.translator.backendopt.all import backend_optimizations
from rpython.conftest import option
class BaseTest(object):
Analyzer = WriteAnalyzer
def translate(self, func, sig):
t = TranslationContext()
t.buildannotator().build_types(func, sig)
t.buildrtyper().specialize()
if option.view:
t.view()
return t, self.Analyzer(t)
class TestWriteAnalyze(BaseTest):
def test_writes_simple(self):
def g(x):
return True
def f(x):
return g(x - 1)
t, wa = self.translate(f, [int])
fgraph = graphof(t, f)
result = wa.analyze(fgraph.startblock.operations[0])
assert not result
def test_writes_recursive(self):
from rpython.translator.transform import insert_ll_stackcheck
def g(x):
return f(x)
def f(x):
if x:
return g(x - 1)
return 1
t, wa = self.translate(f, [int])
insert_ll_stackcheck(t)
ggraph = graphof(t, g)
result = wa.analyze(ggraph.startblock.operations[-1])
assert not result
def test_write_to_new_struct(self):
class A(object):
pass
def f(x):
a = A()
a.baz = x # writes to a fresh new struct are ignored
return a
t, wa = self.translate(f, [int])
fgraph = graphof(t, f)
result = wa.analyze_direct_call(fgraph)
assert not result
def test_write_to_new_struct_2(self):
class A(object):
pass
def f(x):
a = A()
# a few extra blocks
i = 10
while i > 0:
i -= 1
# done
a.baz = x # writes to a fresh new struct are ignored
return a
t, wa = self.translate(f, [int])
fgraph = graphof(t, f)
result = wa.analyze_direct_call(fgraph)
assert not result
def test_write_to_new_struct_3(self):
class A(object):
pass
prebuilt = A()
def f(x):
if x > 5:
a = A()
else:
a = A()
a.baz = x
return a
t, wa = self.translate(f, [int])
fgraph = graphof(t, f)
result = wa.analyze_direct_call(fgraph)
assert not result
def test_write_to_new_struct_4(self):
class A(object):
pass
prebuilt = A()
def f(x):
if x > 5:
a = A()
else:
a = prebuilt
a.baz = x
return a
t, wa = self.translate(f, [int])
fgraph = graphof(t, f)
result = wa.analyze_direct_call(fgraph)
assert len(result) == 1 and 'baz' in list(result)[0][-1]
def test_write_to_new_struct_5(self):
class A(object):
baz = 123
def f(x):
if x:
a = A()
else:
a = A()
a.baz += 1
t, wa = self.translate(f, [int])
fgraph = graphof(t, f)
result = wa.analyze_direct_call(fgraph)
assert not result
def test_method(self):
class A(object):
def f(self):
self.x = 1
return 1
def m(self):
raise ValueError
class B(A):
def f(self):
return 2
def m(self):
return 3
def f(a):
return a.f()
def m(a):
return a.m()
def h(flag):
if flag:
obj = A()
else:
obj = B()
f(obj)
m(obj)
t, wa = self.translate(h, [int])
hgraph = graphof(t, h)
# fiiiish :-(
block = hgraph.startblock.exits[0].target.exits[0].target
op_call_f = block.operations[0]
op_call_m = block.operations[1]
# check that we fished the expected ops
def check_call(op, fname):
assert op.opname == "direct_call"
assert op.args[0].value._obj._name == fname
check_call(op_call_f, "f")
check_call(op_call_m, "m")
result = wa.analyze(op_call_f)
assert len(result) == 1
(struct, T, name), = result
assert struct == "struct"
assert name.endswith("x")
assert not wa.analyze(op_call_m)
def test_instantiate(self):
from rpython.rlib.objectmodel import instantiate
class A:
pass
class B(A):
pass
def g(x):
if x:
C = A
else:
C = B
a = instantiate(C)
def f(x):
return g(x)
t, wa = self.translate(f, [int])
fgraph = graphof(t, f)
result = wa.analyze(fgraph.startblock.operations[0])
assert not result
def test_llexternal(self):
from rpython.rtyper.lltypesystem.rffi import llexternal
z = llexternal('z', [lltype.Signed], lltype.Signed)
def f(x):
return z(x)
t, wa = self.translate(f, [int])
fgraph = graphof(t, f)
backend_optimizations(t)
assert fgraph.startblock.operations[0].opname == 'direct_call'
result = wa.analyze(fgraph.startblock.operations[0])
assert not result
def test_contains(self):
def g(x, y, z):
l = [x]
return f(l, y, z)
def f(x, y, z):
return y in x
t, wa = self.translate(g, [int, int, int])
ggraph = graphof(t, g)
assert ggraph.startblock.operations[-1].opname == 'direct_call'
result = wa.analyze(ggraph.startblock.operations[-1])
assert not result
def test_list(self):
def g(x, y, z):
return f(x, y, z)
def f(x, y, z):
l = [0] * x
l.append(y)
return len(l) + z
t, wa = self.translate(g, [int, int, int])
ggraph = graphof(t, g)
assert ggraph.startblock.operations[0].opname == 'direct_call'
result = sorted(wa.analyze(ggraph.startblock.operations[0]))
array, A = result[0]
assert array == "array"
assert A.TO.OF == lltype.Signed
struct, S1, name = result[1]
assert struct == "struct"
assert S1.TO.items == A
assert S1.TO.length == lltype.Signed
assert name == "items"
struct, S2, name = result[2]
assert struct == "struct"
assert name == "length"
assert S1 is S2
def test_llexternal_with_callback(self):
from rpython.rtyper.lltypesystem.rffi import llexternal
from rpython.rtyper.lltypesystem import lltype
class Abc:
pass
abc = Abc()
FUNC = lltype.FuncType([lltype.Signed], lltype.Signed)
z = llexternal('z', [lltype.Ptr(FUNC)], lltype.Signed)
def g(n):
abc.foobar = n
return n + 1
def f(x):
return z(g)
t, wa = self.translate(f, [int])
fgraph = graphof(t, f)
backend_optimizations(t)
assert fgraph.startblock.operations[0].opname == 'direct_call'
result = wa.analyze(fgraph.startblock.operations[0])
assert len(result) == 1
(struct, T, name), = result
assert struct == "struct"
assert name.endswith("foobar")
class TestLLtypeReadWriteAnalyze(BaseTest):
Analyzer = ReadWriteAnalyzer
def test_read_simple(self):
def g(x):
return True
def f(x):
return g(x - 1)
t, wa = self.translate(f, [int])
fgraph = graphof(t, f)
result = wa.analyze(fgraph.startblock.operations[0])
assert not result
def test_read_really(self):
class A(object):
def __init__(self, y):
self.y = y
def f(self):
self.x = 1
return self.y
def h(flag):
obj = A(flag)
return obj.f()
t, wa = self.translate(h, [int])
hgraph = graphof(t, h)
op_call_f = hgraph.startblock.operations[-1]
# check that we fished the expected ops
assert op_call_f.opname == "direct_call"
assert op_call_f.args[0].value._obj._name == 'A.f'
result = wa.analyze(op_call_f)
assert len(result) == 2
result = list(result)
result.sort()
[(struct1, T1, name1), (struct2, T2, name2)] = result
assert struct1 == "readstruct"
assert name1.endswith("y")
assert struct2 == "struct"
assert name2.endswith("x")
assert T1 == T2
def test_cutoff(self):
py.test.skip("cutoff: disabled")
from rpython.rlib.unroll import unrolling_iterable
cutoff = 20
attrs = unrolling_iterable(["s%s" % i for i in range(cutoff + 5)])
class A(object):
def __init__(self, y):
for attr in attrs:
setattr(self, attr, y)
def f(self):
self.x = 1
res = 0
for attr in attrs:
res += getattr(self, attr)
return res
def h(flag):
obj = A(flag)
return obj.f()
t, wa = self.translate(h, [int])
wa.cutoff = cutoff
hgraph = graphof(t, h)
op_call_f = hgraph.startblock.operations[-1]
# check that we fished the expected ops
assert op_call_f.opname == "direct_call"
assert op_call_f.args[0].value._obj._name == 'A.f'
result = wa.analyze(op_call_f)
assert result is top_set
def test_contains(self):
def g(x, y, z):
l = [x]
return f(l, y, z)
def f(x, y, z):
return y in x
t, wa = self.translate(g, [int, int, int])
ggraph = graphof(t, g)
assert ggraph.startblock.operations[-1].opname == 'direct_call'
result = wa.analyze(ggraph.startblock.operations[-1])
ARRAYPTR = list(result)[0][1]
assert list(result) == [("readarray", ARRAYPTR)]
assert isinstance(ARRAYPTR.TO, lltype.GcArray)
def test_adt_method(self):
def ll_callme(n):
return n
ll_callme = lltype.staticAdtMethod(ll_callme)
S = lltype.GcStruct('S', ('x', lltype.Signed),
adtmeths = {'yep': True,
'callme': ll_callme})
def g(p, x, y, z):
p.x = x
if p.yep:
z *= p.callme(y)
return z
def f(x, y, z):
p = lltype.malloc(S)
return g(p, x, y, z)
t, wa = self.translate(f, [int, int, int])
fgraph = graphof(t, f)
assert fgraph.startblock.operations[-1].opname == 'direct_call'
result = wa.analyze(fgraph.startblock.operations[-1])
assert list(result) == [("struct", lltype.Ptr(S), "x")]
def test_interiorfield(self):
A = lltype.GcArray(lltype.Struct('x', ('x', lltype.Signed),
('y', lltype.Signed)))
def g(x):
a = lltype.malloc(A, 1)
a[0].y = 3
return f(a, x)
def f(a, x):
a[0].x = x
return a[0].y
t, wa = self.translate(g, [int])
ggraph = graphof(t, g)
result = wa.analyze(ggraph.startblock.operations[-1])
res = list(result)
assert ('readinteriorfield', lltype.Ptr(A), 'y') in res
assert ('interiorfield', lltype.Ptr(A), 'x') in res
class TestGcLoadStoreIndexed(BaseTest):
Analyzer = ReadWriteAnalyzer
def _analyze_graph(self, t, wa, fn):
graph = graphof(t, fn)
result = wa.analyze(graph.startblock.operations[-1])
return result
def _filter_reads(self, effects):
result = [item for item in effects if not item[0].startswith('read')]
return frozenset(result)
def test_gc_load_indexed_str(self):
from rpython.rlib.buffer import StringBuffer
def typed_read(buf):
return buf.typed_read(lltype.Signed, 0)
def direct_read(buf):
return buf.value[0]
def f(x):
buf = StringBuffer(x)
return direct_read(buf), typed_read(buf)
t, wa = self.translate(f, [str])
# check that the effect of direct_read
direct_effects = self._analyze_graph(t, wa, direct_read)
assert direct_effects == frozenset([
('readinteriorfield', lltype.Ptr(STR), 'chars')
])
#
# typed_read contains many effects because it reads the vtable etc.,
# but we want to check that it contains also the same effect as
# direct_read
typed_effects = self._analyze_graph(t, wa, typed_read)
assert direct_effects.issubset(typed_effects)
def test_gc_load_indexed_list_of_chars(self):
from rpython.rlib.buffer import ByteBuffer
def typed_read(buf):
return buf.typed_read(lltype.Signed, 0)
def direct_read(buf):
return buf.data[0]
def f(x):
buf = ByteBuffer(8)
return direct_read(buf), typed_read(buf)
t, wa = self.translate(f, [str])
# check that the effect of direct_read
LIST = LIST_OF(lltype.Char)
PLIST = lltype.Ptr(LIST)
direct_effects = self._analyze_graph(t, wa, direct_read)
assert direct_effects == frozenset([
('readstruct', PLIST, 'length'),
('readstruct', PLIST, 'items'),
('readarray', LIST.items),
])
# typed_read contains many effects because it reads the vtable etc.,
# but we want to check that it contains also the expected effects
typed_effects = self._analyze_graph(t, wa, typed_read)
expected = frozenset([
('readstruct', PLIST, 'items'),
('readarray', LIST.items),
])
assert expected.issubset(typed_effects)
def test_gc_store_indexed_str(self):
from rpython.rlib.mutbuffer import MutableStringBuffer
def typed_write(buf):
return buf.typed_write(lltype.Signed, 0, 42)
def direct_write(buf):
return buf.setitem(0, 'A')
def f(x):
buf = MutableStringBuffer(8)
return direct_write(buf), typed_write(buf)
t, wa = self.translate(f, [str])
# check that the effect of direct_write
direct_effects = self._analyze_graph(t, wa, direct_write)
direct_effects = self._filter_reads(direct_effects)
assert direct_effects == frozenset([
('interiorfield', lltype.Ptr(STR), 'chars')
])
#
typed_effects = self._analyze_graph(t, wa, typed_write)
typed_effects = self._filter_reads(typed_effects)
assert typed_effects == direct_effects
def test_gc_store_indexed_list_of_chars(self):
from rpython.rlib.buffer import ByteBuffer
def typed_write(buf):
return buf.typed_write(lltype.Signed, 0, 42)
def direct_write(buf):
return buf.setitem(0, 'A')
def f(x):
buf = ByteBuffer(8)
return direct_write(buf), typed_write(buf)
t, wa = self.translate(f, [str])
# check that the effect of direct_write
LIST = LIST_OF(lltype.Char)
direct_effects = self._analyze_graph(t, wa, direct_write)
direct_effects = self._filter_reads(direct_effects)
assert direct_effects == frozenset([
('array', LIST.items),
])
#
typed_effects = self._analyze_graph(t, wa, typed_write)
typed_effects = self._filter_reads(typed_effects)
assert typed_effects == direct_effects
def test_explanation(self):
class A(object):
def methodname(self):
self.x = 1
return 1
def m(self):
raise ValueError
class B(A):
def methodname(self):
return 2
def m(self):
return 3
def fancyname(a):
return a.methodname()
def m(a):
return a.m()
def h(flag):
if flag:
obj = A()
else:
obj = B()
fancyname(obj)
m(obj)
t, wa = self.translate(h, [int])
hgraph = graphof(t, h)
# fiiiish :-(
block = hgraph.startblock.exits[0].target.exits[0].target
op_call_fancyname = block.operations[0]
explanation = wa.explain_analyze_slowly(op_call_fancyname)
assert "fancyname" in explanation[0]
assert "methodname" in explanation[1]
|