Author: Tobias Pape <[email protected]>
Branch:
Changeset: r24:dd401696209d
Date: 2013-02-14 14:38 +0100
http://bitbucket.org/pypy/lang-smalltalk/changeset/dd401696209d/
Log: step by step
diff --git a/spyvm/fixedstack.py b/spyvm/fixedstack.py
--- a/spyvm/fixedstack.py
+++ b/spyvm/fixedstack.py
@@ -7,7 +7,7 @@
from rpython.rlib.rarithmetic import r_uint
class FixedStack(object):
- _annspecialcase_ = "specialize:ctr_location" # polymorphic
+ # _annspecialcase_ = "specialize:ctr_location" # polymorphic
def __init__(self):
pass
diff --git a/spyvm/test/jit.py b/spyvm/test/jit.py
--- a/spyvm/test/jit.py
+++ b/spyvm/test/jit.py
@@ -79,7 +79,8 @@
try:
while True:
counter += 1
- interp.bytecode_step_translated()
+ s_active_context = interp.s_active_context()
+ interp.bytecode_step_translated(s_active_context)
if counter == 100000:
counter = 0
except interpreter.ReturnFromTopLevel, e:
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit