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
|
from rpython.memory.gctransform.transform import BaseGCTransformer
from rpython.flowspace.model import Variable
from rpython.translator.backendopt.support import var_needsgc
from rpython.translator.translator import TranslationContext, graphof
from rpython.translator.exceptiontransform import ExceptionTransformer
from rpython.rtyper.lltypesystem import lltype
from rpython.conftest import option
from rpython.rtyper.rtyper import llinterp_backend
class LLInterpedTranformerTests:
def llinterpreter_for_transformed_graph(self, f, args_s):
from rpython.rtyper.llinterp import LLInterpreter
from rpython.translator.c.genc import CStandaloneBuilder
t = rtype(f, args_s)
# XXX we shouldn't need an actual gcpolicy here.
cbuild = CStandaloneBuilder(t, f, t.config, gcpolicy=self.gcpolicy)
cbuild.make_entrypoint_wrapper = False
cbuild.build_database()
graph = cbuild.getentrypointptr()._obj.graph
# arguments cannot be GC objects because nobody would put a
# proper header on them
for v in graph.getargs():
if isinstance(v.concretetype, lltype.Ptr):
assert v.concretetype.TO._gckind != 'gc', "fix the test!"
llinterp = LLInterpreter(t.rtyper)
if option.view:
t.view()
return llinterp, graph
def test_simple(self):
from rpython.annotator.model import SomeInteger
class C:
pass
c = C()
c.x = 1
def g(x):
if x:
return c
else:
d = C()
d.x = 2
return d
def f(x):
return g(x).x
llinterp, graph = self.llinterpreter_for_transformed_graph(f, [SomeInteger()])
res = llinterp.eval_graph(graph, [0])
assert res == f(0)
res = llinterp.eval_graph(graph, [1])
assert res == f(1)
def test_simple_varsize(self):
from rpython.annotator.model import SomeInteger
def f(x):
r = []
for i in range(x):
if i % 2:
r.append(x)
return len(r)
llinterp, graph = self.llinterpreter_for_transformed_graph(f, [SomeInteger()])
res = llinterp.eval_graph(graph, [0])
assert res == f(0)
res = llinterp.eval_graph(graph, [10])
assert res == f(10)
def test_str(self):
from rpython.annotator.model import SomeBool
def f(flag):
if flag:
x = 'a'
else:
x = 'brrrrrrr'
return len(x + 'a')
llinterp, graph = self.llinterpreter_for_transformed_graph(f, [SomeBool()])
res = llinterp.eval_graph(graph, [True])
assert res == f(True)
res = llinterp.eval_graph(graph, [False])
assert res == f(False)
class _TestGCTransformer(BaseGCTransformer):
def push_alive(self, var, llops):
llops.genop("gc_push_alive", [var])
def pop_alive(self, var, llops):
llops.genop("gc_pop_alive", [var])
def checkblock(block, is_borrowed, is_start_block):
if block.operations == ():
# a return/exception block -- don't want to think about them
# (even though the test passes for somewhat accidental reasons)
return
if is_start_block:
refs_in = 0
else:
refs_in = len([v for v in block.inputargs if isinstance(v, Variable)
and var_needsgc(v)
and not is_borrowed(v)])
push_alives = len([op for op in block.operations
if op.opname == 'gc_push_alive'])
gc_returning_calls = len([op for op in block.operations
if op.opname in ('direct_call', 'indirect_call')
and var_needsgc(op.result)])
pop_alives = len([op for op in block.operations
if op.opname == 'gc_pop_alive'])
if pop_alives == len(block.operations):
# it's a block we inserted
return
assert not block.canraise
for link in block.exits:
refs_out = 0
for v2 in link.target.inputargs:
if var_needsgc(v2) and not is_borrowed(v2):
refs_out += 1
pushes = push_alives + gc_returning_calls
assert refs_in + pushes == pop_alives + refs_out
def rtype(func, inputtypes, specialize=True):
t = TranslationContext()
t.buildannotator().build_types(func, inputtypes)
rtyper = t.buildrtyper()
rtyper.backend = llinterp_backend
if specialize:
rtyper.specialize()
if option.view:
t.view()
return t
def rtype_and_transform(func, inputtypes, transformcls, specialize=True, check=True):
t = rtype(func, inputtypes, specialize)
transformer = transformcls(t)
etrafo = ExceptionTransformer(t)
etrafo.transform_completely()
graphs_borrowed = {}
for graph in t.graphs[:]:
graphs_borrowed[graph] = transformer.transform_graph(graph)
if option.view:
t.view()
t.checkgraphs()
if check:
for graph, is_borrowed in graphs_borrowed.iteritems():
for block in graph.iterblocks():
checkblock(block, is_borrowed, block is graph.startblock)
return t, transformer
def getops(graph):
ops = {}
for block in graph.iterblocks():
for op in block.operations:
ops.setdefault(op.opname, []).append(op)
return ops
def test_simple():
def f():
return 1
rtype_and_transform(f, [], _TestGCTransformer)
def test_fairly_simple():
class C:
pass
def f():
c = C()
c.x = 1
return c.x
t, transformer = rtype_and_transform(f, [], _TestGCTransformer)
def test_return_gcpointer():
class C:
pass
def f():
c = C()
c.x = 1
return c
t, transformer = rtype_and_transform(f, [], _TestGCTransformer)
def test_call_function():
class C:
pass
def f():
c = C()
c.x = 1
return c
def g():
return f().x
t, transformer = rtype_and_transform(g, [], _TestGCTransformer)
ggraph = graphof(t, g)
for i, op in enumerate(ggraph.startblock.operations):
if op.opname == "direct_call":
break
else:
assert False, "direct_call not found!"
assert ggraph.startblock.operations[i + 1].opname != 'gc_push_alive'
def test_multiply_passed_var():
S = lltype.GcStruct("S", ('x', lltype.Signed))
def f(x):
if x:
a = lltype.malloc(S)
a.x = 1
b = a
else:
a = lltype.malloc(S)
a.x = 1
b = lltype.malloc(S)
b.x = 2
return a.x + b.x
t, transformer = rtype_and_transform(f, [int], _TestGCTransformer)
def test_pass_gc_pointer():
S = lltype.GcStruct("S", ('x', lltype.Signed))
def f(s):
s.x = 1
def g():
s = lltype.malloc(S)
f(s)
return s.x
t, transformer = rtype_and_transform(g, [], _TestGCTransformer)
def test_except_block():
S = lltype.GcStruct("S", ('x', lltype.Signed))
def f(a, n):
if n == 0:
raise ValueError
a.x = 1
return a
def g(n):
a = lltype.malloc(S)
try:
return f(a, n).x
except ValueError:
return 0
t, transformer = rtype_and_transform(g, [int], _TestGCTransformer)
def test_except_block2():
# the difference here is that f() returns Void, not a GcStruct
S = lltype.GcStruct("S", ('x', lltype.Signed))
def f(a, n):
if n == 0:
raise ValueError
a.x = 1
def g(n):
a = lltype.malloc(S)
try:
f(a, n)
return a.x
except ValueError:
return 0
t, transformer = rtype_and_transform(g, [int], _TestGCTransformer)
def test_no_livevars_with_exception():
def g():
raise TypeError
def f():
try:
g()
except TypeError:
return 0
return 1
t, transformer = rtype_and_transform(f, [], _TestGCTransformer)
def test_bare_setfield():
from rpython.rtyper.lltypesystem.lloperation import llop
class A:
def __init__(self, obj):
self.x = obj
class B:
def __init__(self, i):
self.i = i
def f(i):
v = B(i)
inst = A(v)
llop.setfield(lltype.Void, inst, 'x', v)
llop.bare_setfield(lltype.Void, inst, 'x', v)
t, transformer = rtype_and_transform(f, [int], _TestGCTransformer,
check=False)
ops = getops(graphof(t, f))
# xxx no checking done any more
|